]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge branch 'next/dt' into for-next
[karo-tx-linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      http://linuxtv.org/
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 ACENIC DRIVER
244 M:      Jes Sorensen <jes@trained-monkey.org>
245 L:      linux-acenic@sunsite.dk
246 S:      Maintained
247 F:      drivers/net/ethernet/alteon/acenic*
248
249 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
250 M:      Peter Feuerer <peter@piie.net>
251 L:      platform-driver-x86@vger.kernel.org
252 W:      http://piie.net/?section=acerhdf
253 S:      Maintained
254 F:      drivers/platform/x86/acerhdf.c
255
256 ACER WMI LAPTOP EXTRAS
257 M:      "Lee, Chun-Yi" <jlee@suse.com>
258 L:      platform-driver-x86@vger.kernel.org
259 S:      Maintained
260 F:      drivers/platform/x86/acer-wmi.c
261
262 ACPI
263 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
264 M:      Len Brown <lenb@kernel.org>
265 L:      linux-acpi@vger.kernel.org
266 W:      https://01.org/linux-acpi
267 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
269 S:      Supported
270 F:      drivers/acpi/
271 F:      drivers/pnp/pnpacpi/
272 F:      include/linux/acpi.h
273 F:      include/acpi/
274 F:      Documentation/acpi/
275 F:      Documentation/ABI/testing/sysfs-bus-acpi
276 F:      drivers/pci/*acpi*
277 F:      drivers/pci/*/*acpi*
278 F:      drivers/pci/*/*/*acpi*
279 F:      tools/power/acpi/
280
281 ACPI COMPONENT ARCHITECTURE (ACPICA)
282 M:      Robert Moore <robert.moore@intel.com>
283 M:      Lv Zheng <lv.zheng@intel.com>
284 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
285 L:      linux-acpi@vger.kernel.org
286 L:      devel@acpica.org
287 W:      https://acpica.org/
288 W:      https://github.com/acpica/acpica/
289 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
291 S:      Supported
292 F:      drivers/acpi/acpica/
293 F:      include/acpi/
294 F:      tools/power/acpi/
295
296 ACPI FAN DRIVER
297 M:      Zhang Rui <rui.zhang@intel.com>
298 L:      linux-acpi@vger.kernel.org
299 W:      https://01.org/linux-acpi
300 S:      Supported
301 F:      drivers/acpi/fan.c
302
303 ACPI THERMAL DRIVER
304 M:      Zhang Rui <rui.zhang@intel.com>
305 L:      linux-acpi@vger.kernel.org
306 W:      https://01.org/linux-acpi
307 S:      Supported
308 F:      drivers/acpi/*thermal*
309
310 ACPI VIDEO DRIVER
311 M:      Zhang Rui <rui.zhang@intel.com>
312 L:      linux-acpi@vger.kernel.org
313 W:      https://01.org/linux-acpi
314 S:      Supported
315 F:      drivers/acpi/video.c
316
317 ACPI WMI DRIVER
318 L:      platform-driver-x86@vger.kernel.org
319 S:      Orphan
320 F:      drivers/platform/x86/wmi.c
321
322 AD1889 ALSA SOUND DRIVER
323 M:      Thibaut Varene <T-Bone@parisc-linux.org>
324 W:      http://wiki.parisc-linux.org/AD1889
325 L:      linux-parisc@vger.kernel.org
326 S:      Maintained
327 F:      sound/pci/ad1889.*
328
329 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
330 M:      Michael Hennerich <michael.hennerich@analog.com>
331 W:      http://wiki.analog.com/AD5254
332 W:      http://ez.analog.com/community/linux-device-drivers
333 S:      Supported
334 F:      drivers/misc/ad525x_dpot.c
335
336 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
337 M:      Michael Hennerich <michael.hennerich@analog.com>
338 W:      http://wiki.analog.com/AD5398
339 W:      http://ez.analog.com/community/linux-device-drivers
340 S:      Supported
341 F:      drivers/regulator/ad5398.c
342
343 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
344 M:      Michael Hennerich <michael.hennerich@analog.com>
345 W:      http://wiki.analog.com/AD7142
346 W:      http://ez.analog.com/community/linux-device-drivers
347 S:      Supported
348 F:      drivers/input/misc/ad714x.c
349
350 AD7877 TOUCHSCREEN DRIVER
351 M:      Michael Hennerich <michael.hennerich@analog.com>
352 W:      http://wiki.analog.com/AD7877
353 W:      http://ez.analog.com/community/linux-device-drivers
354 S:      Supported
355 F:      drivers/input/touchscreen/ad7877.c
356
357 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
358 M:      Michael Hennerich <michael.hennerich@analog.com>
359 W:      http://wiki.analog.com/AD7879
360 W:      http://ez.analog.com/community/linux-device-drivers
361 S:      Supported
362 F:      drivers/input/touchscreen/ad7879.c
363
364 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
365 M:      Jiri Kosina <jikos@kernel.org>
366 S:      Maintained
367
368 ADM1025 HARDWARE MONITOR DRIVER
369 M:      Jean Delvare <jdelvare@suse.com>
370 L:      lm-sensors@lm-sensors.org
371 S:      Maintained
372 F:      Documentation/hwmon/adm1025
373 F:      drivers/hwmon/adm1025.c
374
375 ADM1029 HARDWARE MONITOR DRIVER
376 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
377 L:      lm-sensors@lm-sensors.org
378 S:      Maintained
379 F:      drivers/hwmon/adm1029.c
380
381 ADM8211 WIRELESS DRIVER
382 L:      linux-wireless@vger.kernel.org
383 W:      http://wireless.kernel.org/
384 S:      Orphan
385 F:      drivers/net/wireless/adm8211.*
386
387 ADP1653 FLASH CONTROLLER DRIVER
388 M:      Sakari Ailus <sakari.ailus@iki.fi>
389 L:      linux-media@vger.kernel.org
390 S:      Maintained
391 F:      drivers/media/i2c/adp1653.c
392 F:      include/media/adp1653.h
393
394 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
395 M:      Michael Hennerich <michael.hennerich@analog.com>
396 W:      http://wiki.analog.com/ADP5520
397 W:      http://ez.analog.com/community/linux-device-drivers
398 S:      Supported
399 F:      drivers/mfd/adp5520.c
400 F:      drivers/video/backlight/adp5520_bl.c
401 F:      drivers/leds/leds-adp5520.c
402 F:      drivers/gpio/gpio-adp5520.c
403 F:      drivers/input/keyboard/adp5520-keys.c
404
405 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
406 M:      Michael Hennerich <michael.hennerich@analog.com>
407 W:      http://wiki.analog.com/ADP5588
408 W:      http://ez.analog.com/community/linux-device-drivers
409 S:      Supported
410 F:      drivers/input/keyboard/adp5588-keys.c
411 F:      drivers/gpio/gpio-adp5588.c
412
413 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
414 M:      Michael Hennerich <michael.hennerich@analog.com>
415 W:      http://wiki.analog.com/ADP8860
416 W:      http://ez.analog.com/community/linux-device-drivers
417 S:      Supported
418 F:      drivers/video/backlight/adp8860_bl.c
419
420 ADS1015 HARDWARE MONITOR DRIVER
421 M:      Dirk Eibach <eibach@gdsys.de>
422 L:      lm-sensors@lm-sensors.org
423 S:      Maintained
424 F:      Documentation/hwmon/ads1015
425 F:      drivers/hwmon/ads1015.c
426 F:      include/linux/i2c/ads1015.h
427
428 ADT746X FAN DRIVER
429 M:      Colin Leroy <colin@colino.net>
430 S:      Maintained
431 F:      drivers/macintosh/therm_adt746x.c
432
433 ADT7475 HARDWARE MONITOR DRIVER
434 M:      Jean Delvare <jdelvare@suse.com>
435 L:      lm-sensors@lm-sensors.org
436 S:      Maintained
437 F:      Documentation/hwmon/adt7475
438 F:      drivers/hwmon/adt7475.c
439
440 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
441 M:      Michael Hennerich <michael.hennerich@analog.com>
442 W:      http://wiki.analog.com/ADXL345
443 W:      http://ez.analog.com/community/linux-device-drivers
444 S:      Supported
445 F:      drivers/input/misc/adxl34x.c
446
447 ADVANSYS SCSI DRIVER
448 M:      Matthew Wilcox <matthew@wil.cx>
449 M:      Hannes Reinecke <hare@suse.com>
450 L:      linux-scsi@vger.kernel.org
451 S:      Maintained
452 F:      Documentation/scsi/advansys.txt
453 F:      drivers/scsi/advansys.c
454
455 AEDSP16 DRIVER
456 M:      Riccardo Facchetti <fizban@tin.it>
457 S:      Maintained
458 F:      sound/oss/aedsp16.c
459
460 AF9013 MEDIA DRIVER
461 M:      Antti Palosaari <crope@iki.fi>
462 L:      linux-media@vger.kernel.org
463 W:      http://linuxtv.org/
464 W:      http://palosaari.fi/linux/
465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
466 T:      git git://linuxtv.org/anttip/media_tree.git
467 S:      Maintained
468 F:      drivers/media/dvb-frontends/af9013*
469
470 AF9033 MEDIA DRIVER
471 M:      Antti Palosaari <crope@iki.fi>
472 L:      linux-media@vger.kernel.org
473 W:      http://linuxtv.org/
474 W:      http://palosaari.fi/linux/
475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
476 T:      git git://linuxtv.org/anttip/media_tree.git
477 S:      Maintained
478 F:      drivers/media/dvb-frontends/af9033*
479
480 AFFS FILE SYSTEM
481 L:      linux-fsdevel@vger.kernel.org
482 S:      Orphan
483 F:      Documentation/filesystems/affs.txt
484 F:      fs/affs/
485
486 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
487 M:      David Howells <dhowells@redhat.com>
488 L:      linux-afs@lists.infradead.org
489 S:      Supported
490 F:      fs/afs/
491 F:      include/net/af_rxrpc.h
492 F:      net/rxrpc/af_rxrpc.c
493
494 AGPGART DRIVER
495 M:      David Airlie <airlied@linux.ie>
496 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
497 S:      Maintained
498 F:      drivers/char/agp/
499 F:      include/linux/agp*
500 F:      include/uapi/linux/agp*
501
502 AHA152X SCSI DRIVER
503 M:      "Juergen E. Fischer" <fischer@norbit.de>
504 L:      linux-scsi@vger.kernel.org
505 S:      Maintained
506 F:      drivers/scsi/aha152x*
507 F:      drivers/scsi/pcmcia/aha152x*
508
509 AIC7XXX / AIC79XX SCSI DRIVER
510 M:      Hannes Reinecke <hare@suse.com>
511 L:      linux-scsi@vger.kernel.org
512 S:      Maintained
513 F:      drivers/scsi/aic7xxx/
514
515 AIMSLAB FM RADIO RECEIVER DRIVER
516 M:      Hans Verkuil <hverkuil@xs4all.nl>
517 L:      linux-media@vger.kernel.org
518 T:      git git://linuxtv.org/media_tree.git
519 W:      http://linuxtv.org
520 S:      Maintained
521 F:      drivers/media/radio/radio-aimslab*
522
523 AIO
524 M:      Benjamin LaHaise <bcrl@kvack.org>
525 L:      linux-aio@kvack.org
526 S:      Supported
527 F:      fs/aio.c
528 F:      include/linux/*aio*.h
529
530 AIRSPY MEDIA DRIVER
531 M:      Antti Palosaari <crope@iki.fi>
532 L:      linux-media@vger.kernel.org
533 W:      http://linuxtv.org/
534 W:      http://palosaari.fi/linux/
535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
536 T:      git git://linuxtv.org/anttip/media_tree.git
537 S:      Maintained
538 F:      drivers/media/usb/airspy/
539
540 ALCATEL SPEEDTOUCH USB DRIVER
541 M:      Duncan Sands <duncan.sands@free.fr>
542 L:      linux-usb@vger.kernel.org
543 W:      http://www.linux-usb.org/SpeedTouch/
544 S:      Maintained
545 F:      drivers/usb/atm/speedtch.c
546 F:      drivers/usb/atm/usbatm.c
547
548 ALCHEMY AU1XX0 MMC DRIVER
549 M:      Manuel Lauss <manuel.lauss@gmail.com>
550 S:      Maintained
551 F:      drivers/mmc/host/au1xmmc.c
552
553 ALI1563 I2C DRIVER
554 M:      Rudolf Marek <r.marek@assembler.cz>
555 L:      linux-i2c@vger.kernel.org
556 S:      Maintained
557 F:      Documentation/i2c/busses/i2c-ali1563
558 F:      drivers/i2c/busses/i2c-ali1563.c
559
560 ALLWINNER SECURITY SYSTEM
561 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
562 L:      linux-crypto@vger.kernel.org
563 S:      Maintained
564 F:      drivers/crypto/sunxi-ss/
565
566 ALPHA PORT
567 M:      Richard Henderson <rth@twiddle.net>
568 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
569 M:      Matt Turner <mattst88@gmail.com>
570 S:      Odd Fixes
571 L:      linux-alpha@vger.kernel.org
572 F:      arch/alpha/
573
574 ALTERA MAILBOX DRIVER
575 M:      Ley Foon Tan <lftan@altera.com>
576 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
577 S:      Maintained
578 F:      drivers/mailbox/mailbox-altera.c
579
580 ALTERA PIO DRIVER
581 M:      Tien Hock Loh <thloh@altera.com>
582 L:      linux-gpio@vger.kernel.org
583 S:      Maintained
584 F:      drivers/gpio/gpio-altera.c
585
586 ALTERA TRIPLE SPEED ETHERNET DRIVER
587 M:      Vince Bridgers <vbridger@opensource.altera.com>
588 L:      netdev@vger.kernel.org
589 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
590 S:      Maintained
591 F:      drivers/net/ethernet/altera/
592
593 ALTERA UART/JTAG UART SERIAL DRIVERS
594 M:      Tobias Klauser <tklauser@distanz.ch>
595 L:      linux-serial@vger.kernel.org
596 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
597 S:      Maintained
598 F:      drivers/tty/serial/altera_uart.c
599 F:      drivers/tty/serial/altera_jtaguart.c
600 F:      include/linux/altera_uart.h
601 F:      include/linux/altera_jtaguart.h
602
603 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
604 M:      Tom Lendacky <thomas.lendacky@amd.com>
605 L:      linux-crypto@vger.kernel.org
606 S:      Supported
607 F:      drivers/crypto/ccp/
608 F:      include/linux/ccp.h
609
610 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
611 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
612 L:      lm-sensors@lm-sensors.org
613 S:      Maintained
614 F:      Documentation/hwmon/fam15h_power
615 F:      drivers/hwmon/fam15h_power.c
616
617 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
618 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
619 S:      Orphan
620 F:      drivers/usb/gadget/udc/amd5536udc.*
621
622 AMD GEODE PROCESSOR/CHIPSET SUPPORT
623 P:      Andres Salomon <dilinger@queued.net>
624 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
625 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
626 S:      Supported
627 F:      drivers/char/hw_random/geode-rng.c
628 F:      drivers/crypto/geode*
629 F:      drivers/video/fbdev/geode/
630 F:      arch/x86/include/asm/geode.h
631
632 AMD IOMMU (AMD-VI)
633 M:      Joerg Roedel <joro@8bytes.org>
634 L:      iommu@lists.linux-foundation.org
635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
636 S:      Maintained
637 F:      drivers/iommu/amd_iommu*.[ch]
638 F:      include/linux/amd-iommu.h
639
640 AMD KFD
641 M:      Oded Gabbay <oded.gabbay@gmail.com>
642 L:      dri-devel@lists.freedesktop.org
643 T:      git git://people.freedesktop.org/~gabbayo/linux.git
644 S:      Supported
645 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
646 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
647 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
648 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
649 F:      drivers/gpu/drm/amd/amdkfd/
650 F:      drivers/gpu/drm/amd/include/cik_structs.h
651 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
652 F:      drivers/gpu/drm/amd/include/vi_structs.h
653 F:      drivers/gpu/drm/radeon/radeon_kfd.c
654 F:      drivers/gpu/drm/radeon/radeon_kfd.h
655 F:      include/uapi/linux/kfd_ioctl.h
656
657 AMD 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 DEVICE TREE SUPPORT
792 M:      Duc Dang <dhdang@apm.com>
793 S:      Supported
794 F:      arch/arm64/boot/dts/apm/
795
796 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
797 M:      Iyappan Subramanian <isubramanian@apm.com>
798 M:      Keyur Chudgar <kchudgar@apm.com>
799 S:      Supported
800 F:      drivers/net/ethernet/apm/xgene/
801 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
802
803 APTINA CAMERA SENSOR PLL
804 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
805 L:      linux-media@vger.kernel.org
806 S:      Maintained
807 F:      drivers/media/i2c/aptina-pll.*
808
809 ARC FRAMEBUFFER DRIVER
810 M:      Jaya Kumar <jayalk@intworks.biz>
811 S:      Maintained
812 F:      drivers/video/fbdev/arcfb.c
813 F:      drivers/video/fbdev/core/fb_defio.c
814
815 ARCNET NETWORK LAYER
816 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
817 L:      netdev@vger.kernel.org
818 S:      Maintained
819 F:      drivers/net/arcnet/
820 F:      include/uapi/linux/if_arcnet.h
821
822 ARM MFM AND FLOPPY DRIVERS
823 M:      Ian Molton <spyro@f2s.com>
824 S:      Maintained
825 F:      arch/arm/lib/floppydma.S
826 F:      arch/arm/include/asm/floppy.h
827
828 ARM PMU PROFILING AND DEBUGGING
829 M:      Will Deacon <will.deacon@arm.com>
830 S:      Maintained
831 F:      arch/arm/kernel/perf_*
832 F:      arch/arm/oprofile/common.c
833 F:      arch/arm/kernel/hw_breakpoint.c
834 F:      arch/arm/include/asm/hw_breakpoint.h
835 F:      arch/arm/include/asm/perf_event.h
836 F:      drivers/perf/arm_pmu.c
837 F:      include/linux/perf/arm_pmu.h
838
839 ARM PORT
840 M:      Russell King <linux@arm.linux.org.uk>
841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
842 W:      http://www.arm.linux.org.uk/
843 S:      Maintained
844 F:      arch/arm/
845
846 ARM SUB-ARCHITECTURES
847 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
848 S:      Maintained
849 F:      arch/arm/mach-*/
850 F:      arch/arm/plat-*/
851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
852
853 ARM PRIMECELL AACI PL041 DRIVER
854 M:      Russell King <linux@arm.linux.org.uk>
855 S:      Maintained
856 F:      sound/arm/aaci.*
857
858 ARM PRIMECELL CLCD PL110 DRIVER
859 M:      Russell King <linux@arm.linux.org.uk>
860 S:      Maintained
861 F:      drivers/video/fbdev/amba-clcd.*
862
863 ARM PRIMECELL KMI PL050 DRIVER
864 M:      Russell King <linux@arm.linux.org.uk>
865 S:      Maintained
866 F:      drivers/input/serio/ambakmi.*
867 F:      include/linux/amba/kmi.h
868
869 ARM PRIMECELL MMCI PL180/1 DRIVER
870 M:      Russell King <linux@arm.linux.org.uk>
871 S:      Maintained
872 F:      drivers/mmc/host/mmci.*
873 F:      include/linux/amba/mmci.h
874
875 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
876 M:      Russell King <linux@arm.linux.org.uk>
877 S:      Maintained
878 F:      drivers/tty/serial/amba-pl01*.c
879 F:      include/linux/amba/serial.h
880
881 ARM PRIMECELL BUS SUPPORT
882 M:      Russell King <linux@arm.linux.org.uk>
883 S:      Maintained
884 F:      drivers/amba/
885 F:      include/linux/amba/bus.h
886
887 ARM/ADS SPHERE MACHINE SUPPORT
888 M:      Lennert Buytenhek <kernel@wantstofly.org>
889 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
890 S:      Maintained
891
892 ARM/AFEB9260 MACHINE SUPPORT
893 M:      Sergey Lapin <slapin@ossfans.org>
894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
895 S:      Maintained
896
897 ARM/AJECO 1ARM MACHINE SUPPORT
898 M:      Lennert Buytenhek <kernel@wantstofly.org>
899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
900 S:      Maintained
901
902 ARM/Allwinner sunXi SoC support
903 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
904 M:      Chen-Yu Tsai <wens@csie.org>
905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
906 S:      Maintained
907 N:      sun[x456789]i
908
909 ARM/Allwinner SoC Clock Support
910 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
911 S:      Maintained
912 F:      drivers/clk/sunxi/
913
914 ARM/Amlogic MesonX SoC support
915 M:      Carlo Caione <carlo@caione.org>
916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917 S:      Maintained
918 F:      drivers/media/rc/meson-ir.c
919 N:      meson[x68]
920
921 ARM/Annapurna Labs ALPINE ARCHITECTURE
922 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
923 S:      Maintained
924 F:      arch/arm/mach-alpine/
925
926 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
927 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
928 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
929 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
931 W:      http://www.linux4sam.org
932 S:      Supported
933 F:      arch/arm/mach-at91/
934 F:      include/soc/at91/
935 F:      arch/arm/boot/dts/at91*.dts
936 F:      arch/arm/boot/dts/at91*.dtsi
937 F:      arch/arm/boot/dts/sama*.dts
938 F:      arch/arm/boot/dts/sama*.dtsi
939 F:      arch/arm/include/debug/at91.S
940
941 ARM/ATMEL AT91 Clock Support
942 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
943 S:      Maintained
944 F:      drivers/clk/at91
945
946 ARM/CALXEDA HIGHBANK ARCHITECTURE
947 M:      Rob Herring <robh@kernel.org>
948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
949 S:      Maintained
950 F:      arch/arm/mach-highbank/
951
952 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
953 M:      Krzysztof Halasa <khalasa@piap.pl>
954 S:      Maintained
955 F:      arch/arm/mach-cns3xxx/
956
957 ARM/CAVIUM THUNDER NETWORK DRIVER
958 M:      Sunil Goutham <sgoutham@cavium.com>
959 M:      Robert Richter <rric@kernel.org>
960 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
961 S:      Supported
962 F:      drivers/net/ethernet/cavium/thunder/
963
964 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
965 M:      Alexander Shiyan <shc_work@mail.ru>
966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
967 S:      Odd Fixes
968 N:      clps711x
969
970 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
971 M:      Hartley Sweeten <hsweeten@visionengravers.com>
972 M:      Ryan Mallon <rmallon@gmail.com>
973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
974 S:      Maintained
975 F:      arch/arm/mach-ep93xx/
976 F:      arch/arm/mach-ep93xx/include/mach/
977
978 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
979 M:      Lennert Buytenhek <kernel@wantstofly.org>
980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
981 S:      Maintained
982
983 ARM/CLKDEV SUPPORT
984 M:      Russell King <linux@arm.linux.org.uk>
985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
986 S:      Maintained
987 F:      arch/arm/include/asm/clkdev.h
988 F:      drivers/clk/clkdev.c
989
990 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
991 M:      Mike Rapoport <mike@compulab.co.il>
992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
993 S:      Maintained
994
995 ARM/CONTEC MICRO9 MACHINE SUPPORT
996 M:      Hubert Feurstein <hubert.feurstein@contec.at>
997 S:      Maintained
998 F:      arch/arm/mach-ep93xx/micro9.c
999
1000 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1001 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1002 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1003 S:      Maintained
1004 F:      drivers/hwtracing/coresight/*
1005 F:      Documentation/trace/coresight.txt
1006 F:      Documentation/devicetree/bindings/arm/coresight.txt
1007 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1008
1009 ARM/CORGI MACHINE SUPPORT
1010 M:      Richard Purdie <rpurdie@rpsys.net>
1011 S:      Maintained
1012
1013 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1014 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1016 T:      git git://github.com/ulli-kroll/linux.git
1017 S:      Maintained
1018 F:      arch/arm/mach-gemini/
1019 F:      drivers/rtc/rtc-gemini.c
1020
1021 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1022 M:      Barry Song <baohua@kernel.org>
1023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1025 S:      Maintained
1026 F:      arch/arm/mach-prima2/
1027 F:      drivers/clk/sirf/
1028 F:      drivers/clocksource/timer-prima2.c
1029 F:      drivers/clocksource/timer-atlas7.c
1030 N:      [^a-z]sirf
1031
1032 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1033 M:      Baruch Siach <baruch@tkos.co.il>
1034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1035 S:      Maintained
1036 F:      arch/arm/boot/dts/cx92755*
1037 N:      digicolor
1038
1039 ARM/EBSA110 MACHINE SUPPORT
1040 M:      Russell King <linux@arm.linux.org.uk>
1041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1042 W:      http://www.arm.linux.org.uk/
1043 S:      Maintained
1044 F:      arch/arm/mach-ebsa110/
1045 F:      drivers/net/ethernet/amd/am79c961a.*
1046
1047 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1048 M:      Uwe Kleine-König <kernel@pengutronix.de>
1049 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1050 S:      Maintained
1051 N:      efm32
1052
1053 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1054 M:      Daniel Ribeiro <drwyrm@gmail.com>
1055 M:      Stefan Schmidt <stefan@openezx.org>
1056 M:      Harald Welte <laforge@openezx.org>
1057 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1058 W:      http://www.openezx.org/
1059 S:      Maintained
1060 T:      topgit git://git.openezx.org/openezx.git
1061 F:      arch/arm/mach-pxa/ezx.c
1062
1063 ARM/FARADAY FA526 PORT
1064 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1065 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1066 S:      Maintained
1067 T:      git git://git.berlios.de/gemini-board
1068 F:      arch/arm/mm/*-fa*
1069
1070 ARM/FOOTBRIDGE ARCHITECTURE
1071 M:      Russell King <linux@arm.linux.org.uk>
1072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1073 W:      http://www.arm.linux.org.uk/
1074 S:      Maintained
1075 F:      arch/arm/include/asm/hardware/dec21285.h
1076 F:      arch/arm/mach-footbridge/
1077
1078 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1079 M:      Shawn Guo <shawnguo@kernel.org>
1080 M:      Sascha Hauer <kernel@pengutronix.de>
1081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1082 S:      Maintained
1083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1084 F:      arch/arm/mach-imx/
1085 F:      arch/arm/mach-mxs/
1086 F:      arch/arm/boot/dts/imx*
1087 F:      arch/arm/configs/imx*_defconfig
1088 F:      drivers/clk/imx/
1089 F:      include/soc/imx/
1090
1091 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1092 M:      Shawn Guo <shawnguo@kernel.org>
1093 M:      Sascha Hauer <kernel@pengutronix.de>
1094 R:      Stefan Agner <stefan@agner.ch>
1095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1096 S:      Maintained
1097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1098 F:      arch/arm/mach-imx/*vf610*
1099 F:      arch/arm/boot/dts/vf*
1100
1101 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1102 M:      Lennert Buytenhek <kernel@wantstofly.org>
1103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1104 S:      Maintained
1105
1106 ARM/GUMSTIX MACHINE SUPPORT
1107 M:      Steve Sakoman <sakoman@gmail.com>
1108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1109 S:      Maintained
1110
1111 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1112 M:      Philipp Zabel <philipp.zabel@gmail.com>
1113 M:      Paul Parsons <lost.distance@yahoo.com>
1114 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1115 S:      Maintained
1116 F:      arch/arm/mach-pxa/hx4700.c
1117 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1118 F:      sound/soc/pxa/hx4700.c
1119
1120 ARM/HISILICON SOC SUPPORT
1121 M:      Wei Xu <xuwei5@hisilicon.com>
1122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1123 W:      http://www.hisilicon.com
1124 S:      Supported
1125 T:      git git://github.com/hisilicon/linux-hisi.git
1126 F:      arch/arm/mach-hisi/
1127
1128 ARM/HP JORNADA 7XX MACHINE SUPPORT
1129 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1130 W:      www.jlime.com
1131 S:      Maintained
1132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1133 F:      arch/arm/mach-sa1100/jornada720.c
1134 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1135
1136 ARM/IGEP MACHINE SUPPORT
1137 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1138 M:      Javier Martinez Canillas <javier@dowhile0.org>
1139 L:      linux-omap@vger.kernel.org
1140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1141 S:      Maintained
1142 F:      arch/arm/boot/dts/omap3-igep*
1143
1144 ARM/INCOME PXA270 SUPPORT
1145 M:      Marek Vasut <marek.vasut@gmail.com>
1146 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1147 S:      Maintained
1148 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1149
1150 ARM/INTEL IOP32X ARM ARCHITECTURE
1151 M:      Lennert Buytenhek <kernel@wantstofly.org>
1152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1153 S:      Maintained
1154
1155 ARM/INTEL IOP33X ARM ARCHITECTURE
1156 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1157 S:      Orphan
1158
1159 ARM/INTEL IOP13XX ARM ARCHITECTURE
1160 M:      Lennert Buytenhek <kernel@wantstofly.org>
1161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1162 S:      Maintained
1163
1164 ARM/INTEL IQ81342EX MACHINE SUPPORT
1165 M:      Lennert Buytenhek <kernel@wantstofly.org>
1166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1167 S:      Maintained
1168
1169 ARM/INTEL IXDP2850 MACHINE SUPPORT
1170 M:      Lennert Buytenhek <kernel@wantstofly.org>
1171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1172 S:      Maintained
1173
1174 ARM/INTEL IXP4XX ARM ARCHITECTURE
1175 M:      Imre Kaloz <kaloz@openwrt.org>
1176 M:      Krzysztof Halasa <khalasa@piap.pl>
1177 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1178 S:      Maintained
1179 F:      arch/arm/mach-ixp4xx/
1180
1181 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1182 M:      Jonathan Cameron <jic23@cam.ac.uk>
1183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1184 S:      Maintained
1185 F:      arch/arm/mach-pxa/stargate2.c
1186 F:      drivers/pcmcia/pxa2xx_stargate2.c
1187
1188 ARM/INTEL XSC3 (MANZANO) ARM CORE
1189 M:      Lennert Buytenhek <kernel@wantstofly.org>
1190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1191 S:      Maintained
1192
1193 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1194 M:      Lennert Buytenhek <kernel@wantstofly.org>
1195 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1196 S:      Maintained
1197
1198 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1199 M:      Santosh Shilimkar <ssantosh@kernel.org>
1200 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1201 S:      Maintained
1202 F:      arch/arm/mach-keystone/
1203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1204
1205 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1206 M:      Santosh Shilimkar <ssantosh@kernel.org>
1207 L:      linux-kernel@vger.kernel.org
1208 S:      Maintained
1209 F:      drivers/clk/keystone/
1210
1211 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1212 M:      Santosh Shilimkar <ssantosh@kernel.org>
1213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1214 L:      linux-kernel@vger.kernel.org
1215 S:      Maintained
1216 F:      drivers/clocksource/timer-keystone.c
1217
1218 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1219 M:      Santosh Shilimkar <ssantosh@kernel.org>
1220 L:      linux-kernel@vger.kernel.org
1221 S:      Maintained
1222 F:      drivers/power/reset/keystone-reset.c
1223
1224 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1225 M:      Santosh Shilimkar <ssantosh@kernel.org>
1226 L:      linux-kernel@vger.kernel.org
1227 S:      Maintained
1228 F:      drivers/memory/*emif*
1229
1230 ARM/LOGICPD PXA270 MACHINE SUPPORT
1231 M:      Lennert Buytenhek <kernel@wantstofly.org>
1232 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1233 S:      Maintained
1234
1235 ARM/LPC18XX ARCHITECTURE
1236 M:      Joachim Eastwood <manabian@gmail.com>
1237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1238 S:      Maintained
1239 F:      arch/arm/boot/dts/lpc43*
1240 F:      drivers/clk/nxp/clk-lpc18xx*
1241 F:      drivers/clocksource/time-lpc32xx.c
1242 F:      drivers/i2c/busses/i2c-lpc2k.c
1243 F:      drivers/memory/pl172.c
1244 F:      drivers/mtd/spi-nor/nxp-spifi.c
1245 F:      drivers/rtc/rtc-lpc24xx.c
1246 N:      lpc18xx
1247
1248 ARM/MAGICIAN MACHINE SUPPORT
1249 M:      Philipp Zabel <philipp.zabel@gmail.com>
1250 S:      Maintained
1251
1252 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1253 M:      Jason Cooper <jason@lakedaemon.net>
1254 M:      Andrew Lunn <andrew@lunn.ch>
1255 M:      Gregory Clement <gregory.clement@free-electrons.com>
1256 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1258 S:      Maintained
1259 F:      arch/arm/mach-mvebu/
1260 F:      drivers/rtc/rtc-armada38x.c
1261 F:      arch/arm/boot/dts/armada*
1262 F:      arch/arm/boot/dts/kirkwood*
1263
1264
1265 ARM/Marvell Berlin SoC support
1266 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1268 S:      Maintained
1269 F:      arch/arm/mach-berlin/
1270 F:      arch/arm/boot/dts/berlin*
1271
1272
1273 ARM/Marvell Dove/MV78xx0/Orion SOC support
1274 M:      Jason Cooper <jason@lakedaemon.net>
1275 M:      Andrew Lunn <andrew@lunn.ch>
1276 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1277 M:      Gregory Clement <gregory.clement@free-electrons.com>
1278 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1279 S:      Maintained
1280 F:      arch/arm/mach-dove/
1281 F:      arch/arm/mach-mv78xx0/
1282 F:      arch/arm/mach-orion5x/
1283 F:      arch/arm/plat-orion/
1284 F:      arch/arm/boot/dts/dove*
1285 F:      arch/arm/boot/dts/orion5x*
1286
1287
1288 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1289 M:      Alexander Clouter <alex@digriz.org.uk>
1290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1291 W:      http://www.digriz.org.uk/ts78xx/kernel
1292 S:      Maintained
1293 F:      arch/arm/mach-orion5x/ts78xx-*
1294
1295 ARM/Mediatek RTC DRIVER
1296 M:      Eddie Huang <eddie.huang@mediatek.com>
1297 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1298 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1299 S:      Maintained
1300 F:      drivers/rtc/rtc-mt6397.c
1301
1302 ARM/Mediatek SoC support
1303 M:      Matthias Brugger <matthias.bgg@gmail.com>
1304 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1305 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1306 S:      Maintained
1307 F:      arch/arm/boot/dts/mt6*
1308 F:      arch/arm/boot/dts/mt8*
1309 F:      arch/arm/mach-mediatek/
1310 N:      mtk
1311 K:      mediatek
1312
1313 ARM/MICREL KS8695 ARCHITECTURE
1314 M:      Greg Ungerer <gerg@uclinux.org>
1315 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1316 F:      arch/arm/mach-ks8695/
1317 S:      Odd Fixes
1318
1319 ARM/MIOA701 MACHINE SUPPORT
1320 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1322 F:      arch/arm/mach-pxa/mioa701.c
1323 S:      Maintained
1324
1325 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1326 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1327 S:      Maintained
1328
1329 ARM/NOMADIK ARCHITECTURE
1330 M:      Alessandro Rubini <rubini@unipv.it>
1331 M:      Linus Walleij <linus.walleij@linaro.org>
1332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1333 S:      Maintained
1334 F:      arch/arm/mach-nomadik/
1335 F:      drivers/pinctrl/nomadik/
1336 F:      drivers/i2c/busses/i2c-nomadik.c
1337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1338
1339 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1340 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1341 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1342 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1343 S:      Supported
1344
1345 ARM/TOSA MACHINE SUPPORT
1346 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1347 M:      Dirk Opfer <dirk@opfer-online.de>
1348 S:      Maintained
1349
1350 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1351 M:      Marek Vasut <marek.vasut@gmail.com>
1352 L:      linux-arm-kernel@lists.infradead.org
1353 W:      http://hackndev.com
1354 S:      Maintained
1355 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1356 F:      arch/arm/mach-pxa/palmtx.c
1357 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1358 F:      arch/arm/mach-pxa/palmt5.c
1359 F:      arch/arm/mach-pxa/include/mach/palmld.h
1360 F:      arch/arm/mach-pxa/palmld.c
1361 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1362 F:      arch/arm/mach-pxa/palmte2.c
1363 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1364 F:      arch/arm/mach-pxa/palmtc.c
1365
1366 ARM/PALM TREO SUPPORT
1367 M:      Tomas Cech <sleep_walker@suse.com>
1368 L:      linux-arm-kernel@lists.infradead.org
1369 W:      http://hackndev.com
1370 S:      Maintained
1371 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1372 F:      arch/arm/mach-pxa/palmtreo.c
1373
1374 ARM/PALMZ72 SUPPORT
1375 M:      Sergey Lapin <slapin@ossfans.org>
1376 L:      linux-arm-kernel@lists.infradead.org
1377 W:      http://hackndev.com
1378 S:      Maintained
1379 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1380 F:      arch/arm/mach-pxa/palmz72.c
1381
1382 ARM/PLEB SUPPORT
1383 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1384 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1385 S:      Maintained
1386
1387 ARM/PT DIGITAL BOARD PORT
1388 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1390 W:      http://www.arm.linux.org.uk/
1391 S:      Maintained
1392
1393 ARM/QUALCOMM SUPPORT
1394 M:      Kumar Gala <galak@codeaurora.org>
1395 M:      Andy Gross <agross@codeaurora.org>
1396 M:      David Brown <davidb@codeaurora.org>
1397 L:      linux-arm-msm@vger.kernel.org
1398 L:      linux-soc@vger.kernel.org
1399 S:      Maintained
1400 F:      arch/arm/mach-qcom/
1401 F:      drivers/soc/qcom/
1402 F:      drivers/tty/serial/msm_serial.h
1403 F:      drivers/tty/serial/msm_serial.c
1404 F:      drivers/*/pm8???-*
1405 F:      drivers/mfd/ssbi.c
1406 F:      drivers/firmware/qcom_scm.c
1407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1408
1409 ARM/RADISYS ENP2611 MACHINE SUPPORT
1410 M:      Lennert Buytenhek <kernel@wantstofly.org>
1411 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1412 S:      Maintained
1413
1414 ARM/RISCPC ARCHITECTURE
1415 M:      Russell King <linux@arm.linux.org.uk>
1416 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1417 W:      http://www.arm.linux.org.uk/
1418 S:      Maintained
1419 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1420 F:      arch/arm/include/asm/hardware/ioc.h
1421 F:      arch/arm/include/asm/hardware/iomd.h
1422 F:      arch/arm/include/asm/hardware/memc.h
1423 F:      arch/arm/mach-rpc/
1424 F:      drivers/net/ethernet/8390/etherh.c
1425 F:      drivers/net/ethernet/i825xx/ether1*
1426 F:      drivers/net/ethernet/seeq/ether3*
1427 F:      drivers/scsi/arm/
1428
1429 ARM/Rockchip SoC support
1430 M:      Heiko Stuebner <heiko@sntech.de>
1431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1432 L:      linux-rockchip@lists.infradead.org
1433 S:      Maintained
1434 F:      arch/arm/boot/dts/rk3*
1435 F:      arch/arm/mach-rockchip/
1436 F:      drivers/clk/rockchip/
1437 F:      drivers/i2c/busses/i2c-rk3x.c
1438 F:      drivers/*/*rockchip*
1439 F:      drivers/*/*/*rockchip*
1440 F:      sound/soc/rockchip/
1441 N:      rockchip
1442
1443 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1444 M:      Kukjin Kim <kgene@kernel.org>
1445 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1447 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1448 S:      Maintained
1449 F:      arch/arm/boot/dts/s3c*
1450 F:      arch/arm/boot/dts/exynos*
1451 F:      arch/arm64/boot/dts/exynos/
1452 F:      arch/arm/plat-samsung/
1453 F:      arch/arm/mach-s3c24*/
1454 F:      arch/arm/mach-s3c64xx/
1455 F:      arch/arm/mach-s5p*/
1456 F:      arch/arm/mach-exynos*/
1457 F:      drivers/*/*s3c2410*
1458 F:      drivers/*/*/*s3c2410*
1459 F:      drivers/spi/spi-s3c*
1460 F:      sound/soc/samsung/*
1461 F:      Documentation/arm/Samsung/
1462 F:      Documentation/devicetree/bindings/arm/samsung/
1463 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1464 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1465 N:      exynos
1466
1467 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1468 M:      Kyungmin Park <kyungmin.park@samsung.com>
1469 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1470 S:      Maintained
1471 F:      arch/arm/mach-s5pv210/
1472
1473 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1474 M:      Kyungmin Park <kyungmin.park@samsung.com>
1475 M:      Kamil Debski <k.debski@samsung.com>
1476 L:      linux-arm-kernel@lists.infradead.org
1477 L:      linux-media@vger.kernel.org
1478 S:      Maintained
1479 F:      drivers/media/platform/s5p-g2d/
1480
1481 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1482 M:      Kyungmin Park <kyungmin.park@samsung.com>
1483 M:      Kamil Debski <k.debski@samsung.com>
1484 M:      Jeongtae Park <jtp.park@samsung.com>
1485 L:      linux-arm-kernel@lists.infradead.org
1486 L:      linux-media@vger.kernel.org
1487 S:      Maintained
1488 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1489 F:      drivers/media/platform/s5p-mfc/
1490
1491 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1492 M:      Kyungmin Park <kyungmin.park@samsung.com>
1493 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1494 L:      linux-arm-kernel@lists.infradead.org
1495 L:      linux-media@vger.kernel.org
1496 S:      Maintained
1497 F:      drivers/media/platform/s5p-tv/
1498
1499 ARM/SHMOBILE ARM ARCHITECTURE
1500 M:      Simon Horman <horms@verge.net.au>
1501 M:      Magnus Damm <magnus.damm@gmail.com>
1502 L:      linux-sh@vger.kernel.org
1503 W:      http://oss.renesas.com
1504 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1506 S:      Supported
1507 F:      arch/arm/boot/dts/emev2*
1508 F:      arch/arm/boot/dts/r7s*
1509 F:      arch/arm/boot/dts/r8a*
1510 F:      arch/arm/boot/dts/sh*
1511 F:      arch/arm/configs/shmobile_defconfig
1512 F:      arch/arm/include/debug/renesas-scif.S
1513 F:      arch/arm/mach-shmobile/
1514 F:      drivers/sh/
1515
1516 ARM/SOCFPGA ARCHITECTURE
1517 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1518 S:      Maintained
1519 F:      arch/arm/mach-socfpga/
1520 F:      arch/arm/boot/dts/socfpga*
1521 F:      arch/arm/configs/socfpga_defconfig
1522 W:      http://www.rocketboards.org
1523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1524
1525 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1526 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1527 S:      Maintained
1528 F:      drivers/clk/socfpga/
1529
1530 ARM/SOCFPGA EDAC SUPPORT
1531 M:      Thor Thayer <tthayer@opensource.altera.com>
1532 S:      Maintained
1533 F:      drivers/edac/altera_edac.
1534
1535 ARM/STI ARCHITECTURE
1536 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1537 M:      Maxime Coquelin <maxime.coquelin@st.com>
1538 M:      Patrice Chotard <patrice.chotard@st.com>
1539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1540 L:      kernel@stlinux.com
1541 W:      http://www.stlinux.com
1542 S:      Maintained
1543 F:      arch/arm/mach-sti/
1544 F:      arch/arm/boot/dts/sti*
1545 F:      drivers/clocksource/arm_global_timer.c
1546 F:      drivers/clocksource/clksrc_st_lpc.c
1547 F:      drivers/i2c/busses/i2c-st.c
1548 F:      drivers/media/rc/st_rc.c
1549 F:      drivers/media/platform/sti/c8sectpfe/
1550 F:      drivers/mmc/host/sdhci-st.c
1551 F:      drivers/phy/phy-miphy28lp.c
1552 F:      drivers/phy/phy-miphy365x.c
1553 F:      drivers/phy/phy-stih407-usb.c
1554 F:      drivers/phy/phy-stih41x-usb.c
1555 F:      drivers/pinctrl/pinctrl-st.c
1556 F:      drivers/reset/sti/
1557 F:      drivers/rtc/rtc-st-lpc.c
1558 F:      drivers/tty/serial/st-asc.c
1559 F:      drivers/usb/dwc3/dwc3-st.c
1560 F:      drivers/usb/host/ehci-st.c
1561 F:      drivers/usb/host/ohci-st.c
1562 F:      drivers/watchdog/st_lpc_wdt.c
1563 F:      drivers/ata/ahci_st.c
1564
1565 ARM/STM32 ARCHITECTURE
1566 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 S:      Maintained
1569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1570 N:      stm32
1571 F:      drivers/clocksource/armv7m_systick.c
1572
1573 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1574 M:      Lennert Buytenhek <kernel@wantstofly.org>
1575 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1576 S:      Maintained
1577
1578 ARM/TETON BGA MACHINE SUPPORT
1579 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 S:      Maintained
1582
1583 ARM/THECUS N2100 MACHINE SUPPORT
1584 M:      Lennert Buytenhek <kernel@wantstofly.org>
1585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1586 S:      Maintained
1587
1588 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1589 M:      Wan ZongShun <mcuos.com@gmail.com>
1590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1591 W:      http://www.mcuos.com
1592 S:      Maintained
1593 F:      arch/arm/mach-w90x900/
1594 F:      drivers/input/keyboard/w90p910_keypad.c
1595 F:      drivers/input/touchscreen/w90p910_ts.c
1596 F:      drivers/watchdog/nuc900_wdt.c
1597 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1598 F:      drivers/mtd/nand/nuc900_nand.c
1599 F:      drivers/rtc/rtc-nuc900.c
1600 F:      drivers/spi/spi-nuc900.c
1601 F:      drivers/usb/host/ehci-w90x900.c
1602 F:      drivers/video/fbdev/nuc900fb.c
1603
1604 ARM/U300 MACHINE SUPPORT
1605 M:      Linus Walleij <linus.walleij@linaro.org>
1606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1607 S:      Supported
1608 F:      arch/arm/mach-u300/
1609 F:      drivers/clocksource/timer-u300.c
1610 F:      drivers/i2c/busses/i2c-stu300.c
1611 F:      drivers/rtc/rtc-coh901331.c
1612 F:      drivers/watchdog/coh901327_wdt.c
1613 F:      drivers/dma/coh901318*
1614 F:      drivers/mfd/ab3100*
1615 F:      drivers/rtc/rtc-ab3100.c
1616 F:      drivers/rtc/rtc-coh901331.c
1617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1618
1619 ARM/UNIPHIER ARCHITECTURE
1620 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1622 S:      Maintained
1623 F:      arch/arm/boot/dts/uniphier*
1624 F:      arch/arm/mach-uniphier/
1625 F:      drivers/pinctrl/uniphier/
1626 F:      drivers/tty/serial/8250/8250_uniphier.c
1627 N:      uniphier
1628
1629 ARM/Ux500 ARM ARCHITECTURE
1630 M:      Linus Walleij <linus.walleij@linaro.org>
1631 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1632 S:      Maintained
1633 F:      arch/arm/mach-ux500/
1634 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1635 F:      drivers/dma/ste_dma40*
1636 F:      drivers/hwspinlock/u8500_hsem.c
1637 F:      drivers/mfd/abx500*
1638 F:      drivers/mfd/ab8500*
1639 F:      drivers/mfd/dbx500*
1640 F:      drivers/mfd/db8500*
1641 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1642 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1643 F:      drivers/rtc/rtc-ab8500.c
1644 F:      drivers/rtc/rtc-pl031.c
1645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1646
1647 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1648 M:      Ulf Hansson <ulf.hansson@linaro.org>
1649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 T:      git git://git.linaro.org/people/ulfh/clk.git
1651 S:      Maintained
1652 F:      drivers/clk/ux500/
1653 F:      include/linux/platform_data/clk-ux500.h
1654
1655 ARM/VERSATILE EXPRESS PLATFORM
1656 M:      Liviu Dudau <liviu.dudau@arm.com>
1657 M:      Sudeep Holla <sudeep.holla@arm.com>
1658 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1660 S:      Maintained
1661 F:      arch/arm/boot/dts/vexpress*
1662 F:      arch/arm64/boot/dts/arm/vexpress*
1663 F:      arch/arm/mach-vexpress/
1664 F:      */*/vexpress*
1665 F:      */*/*/vexpress*
1666 F:      drivers/clk/versatile/clk-vexpress-osc.c
1667 F:      drivers/clocksource/versatile.c
1668
1669 ARM/VFP SUPPORT
1670 M:      Russell King <linux@arm.linux.org.uk>
1671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1672 W:      http://www.arm.linux.org.uk/
1673 S:      Maintained
1674 F:      arch/arm/vfp/
1675
1676 ARM/VOIPAC PXA270 SUPPORT
1677 M:      Marek Vasut <marek.vasut@gmail.com>
1678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1679 S:      Maintained
1680 F:      arch/arm/mach-pxa/vpac270.c
1681 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1682
1683 ARM/VT8500 ARM ARCHITECTURE
1684 M:      Tony Prisk <linux@prisktech.co.nz>
1685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1686 S:      Maintained
1687 F:      arch/arm/mach-vt8500/
1688 F:      drivers/clocksource/vt8500_timer.c
1689 F:      drivers/i2c/busses/i2c-wmt.c
1690 F:      drivers/mmc/host/wmt-sdmmc.c
1691 F:      drivers/pwm/pwm-vt8500.c
1692 F:      drivers/rtc/rtc-vt8500.c
1693 F:      drivers/tty/serial/vt8500_serial.c
1694 F:      drivers/usb/host/ehci-platform.c
1695 F:      drivers/usb/host/uhci-platform.c
1696 F:      drivers/video/fbdev/vt8500lcdfb.*
1697 F:      drivers/video/fbdev/wm8505fb*
1698 F:      drivers/video/fbdev/wmt_ge_rops.*
1699
1700 ARM/ZIPIT Z2 SUPPORT
1701 M:      Marek Vasut <marek.vasut@gmail.com>
1702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1703 S:      Maintained
1704 F:      arch/arm/mach-pxa/z2.c
1705 F:      arch/arm/mach-pxa/include/mach/z2.h
1706
1707 ARM/ZTE ARCHITECTURE
1708 M:      Jun Nie <jun.nie@linaro.org>
1709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1710 S:      Maintained
1711 F:      arch/arm/mach-zx/
1712 F:      drivers/clk/zte/
1713 F:      Documentation/devicetree/bindings/arm/zte.txt
1714 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1715
1716 ARM/ZYNQ ARCHITECTURE
1717 M:      Michal Simek <michal.simek@xilinx.com>
1718 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1719 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1720 W:      http://wiki.xilinx.com
1721 T:      git https://github.com/Xilinx/linux-xlnx.git
1722 S:      Supported
1723 F:      arch/arm/mach-zynq/
1724 F:      drivers/cpuidle/cpuidle-zynq.c
1725 F:      drivers/block/xsysace.c
1726 N:      zynq
1727 N:      xilinx
1728 F:      drivers/clocksource/cadence_ttc_timer.c
1729 F:      drivers/i2c/busses/i2c-cadence.c
1730 F:      drivers/mmc/host/sdhci-of-arasan.c
1731 F:      drivers/edac/synopsys_edac.c
1732
1733 ARM SMMU DRIVERS
1734 M:      Will Deacon <will.deacon@arm.com>
1735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1736 S:      Maintained
1737 F:      drivers/iommu/arm-smmu.c
1738 F:      drivers/iommu/arm-smmu-v3.c
1739 F:      drivers/iommu/io-pgtable-arm.c
1740
1741 ARM64 PORT (AARCH64 ARCHITECTURE)
1742 M:      Catalin Marinas <catalin.marinas@arm.com>
1743 M:      Will Deacon <will.deacon@arm.com>
1744 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1745 S:      Maintained
1746 F:      arch/arm64/
1747 F:      Documentation/arm64/
1748
1749 AS3645A LED FLASH CONTROLLER DRIVER
1750 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1751 L:      linux-media@vger.kernel.org
1752 T:      git git://linuxtv.org/media_tree.git
1753 S:      Maintained
1754 F:      drivers/media/i2c/as3645a.c
1755 F:      include/media/as3645a.h
1756
1757 ASC7621 HARDWARE MONITOR DRIVER
1758 M:      George Joseph <george.joseph@fairview5.com>
1759 L:      lm-sensors@lm-sensors.org
1760 S:      Maintained
1761 F:      Documentation/hwmon/asc7621
1762 F:      drivers/hwmon/asc7621.c
1763
1764 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1765 M:      Corentin Chary <corentin.chary@gmail.com>
1766 L:      acpi4asus-user@lists.sourceforge.net
1767 L:      platform-driver-x86@vger.kernel.org
1768 W:      http://acpi4asus.sf.net
1769 S:      Maintained
1770 F:      drivers/platform/x86/asus*.c
1771 F:      drivers/platform/x86/eeepc*.c
1772
1773 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1774 R:      Dan Williams <dan.j.williams@intel.com>
1775 W:      http://sourceforge.net/projects/xscaleiop
1776 S:      Odd fixes
1777 F:      Documentation/crypto/async-tx-api.txt
1778 F:      crypto/async_tx/
1779 F:      drivers/dma/
1780 F:      include/linux/dmaengine.h
1781 F:      include/linux/async_tx.h
1782
1783 AT24 EEPROM DRIVER
1784 M:      Wolfram Sang <wsa@the-dreams.de>
1785 L:      linux-i2c@vger.kernel.org
1786 S:      Maintained
1787 F:      drivers/misc/eeprom/at24.c
1788 F:      include/linux/platform_data/at24.h
1789
1790 ATA OVER ETHERNET (AOE) DRIVER
1791 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1792 W:      http://www.openaoe.org/
1793 S:      Supported
1794 F:      Documentation/aoe/
1795 F:      drivers/block/aoe/
1796
1797 ATHEROS ATH GENERIC UTILITIES
1798 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1799 L:      linux-wireless@vger.kernel.org
1800 S:      Supported
1801 F:      drivers/net/wireless/ath/*
1802
1803 ATHEROS ATH5K WIRELESS DRIVER
1804 M:      Jiri Slaby <jirislaby@gmail.com>
1805 M:      Nick Kossifidis <mickflemm@gmail.com>
1806 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1807 L:      linux-wireless@vger.kernel.org
1808 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1809 S:      Maintained
1810 F:      drivers/net/wireless/ath/ath5k/
1811
1812 ATHEROS ATH6KL WIRELESS DRIVER
1813 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1814 L:      linux-wireless@vger.kernel.org
1815 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1816 T:      git git://github.com/kvalo/ath.git
1817 S:      Supported
1818 F:      drivers/net/wireless/ath/ath6kl/
1819
1820 WILOCITY WIL6210 WIRELESS DRIVER
1821 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1822 L:      linux-wireless@vger.kernel.org
1823 L:      wil6210@qca.qualcomm.com
1824 S:      Supported
1825 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1826 F:      drivers/net/wireless/ath/wil6210/
1827 F:      include/uapi/linux/wil6210_uapi.h
1828
1829 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1830 M:      Christian Lamparter <chunkeey@googlemail.com>
1831 L:      linux-wireless@vger.kernel.org
1832 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1833 S:      Maintained
1834 F:      drivers/net/wireless/ath/carl9170/
1835
1836 ATK0110 HWMON DRIVER
1837 M:      Luca Tettamanti <kronos.it@gmail.com>
1838 L:      lm-sensors@lm-sensors.org
1839 S:      Maintained
1840 F:      drivers/hwmon/asus_atk0110.c
1841
1842 ATI_REMOTE2 DRIVER
1843 M:      Ville Syrjala <syrjala@sci.fi>
1844 S:      Maintained
1845 F:      drivers/input/misc/ati_remote2.c
1846
1847 ATLX ETHERNET DRIVERS
1848 M:      Jay Cliburn <jcliburn@gmail.com>
1849 M:      Chris Snook <chris.snook@gmail.com>
1850 L:      netdev@vger.kernel.org
1851 W:      http://sourceforge.net/projects/atl1
1852 W:      http://atl1.sourceforge.net
1853 S:      Maintained
1854 F:      drivers/net/ethernet/atheros/
1855
1856 ATM
1857 M:      Chas Williams <3chas3@gmail.com>
1858 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1859 L:      netdev@vger.kernel.org
1860 W:      http://linux-atm.sourceforge.net
1861 S:      Maintained
1862 F:      drivers/atm/
1863 F:      include/linux/atm*
1864 F:      include/uapi/linux/atm*
1865
1866 ATMEL AT91 / AT32 MCI DRIVER
1867 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1868 S:      Maintained
1869 F:      drivers/mmc/host/atmel-mci.c
1870 F:      drivers/mmc/host/atmel-mci-regs.h
1871
1872 ATMEL AT91 / AT32 SERIAL DRIVER
1873 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1874 S:      Supported
1875 F:      drivers/tty/serial/atmel_serial.c
1876
1877 ATMEL Audio ALSA driver
1878 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1879 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1880 S:      Supported
1881 F:      sound/soc/atmel
1882
1883 ATMEL DMA DRIVER
1884 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 S:      Supported
1887 F:      drivers/dma/at_hdmac.c
1888 F:      drivers/dma/at_hdmac_regs.h
1889 F:      include/linux/platform_data/dma-atmel.h
1890
1891 ATMEL XDMA DRIVER
1892 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1893 L:      linux-arm-kernel@lists.infradead.org
1894 L:      dmaengine@vger.kernel.org
1895 S:      Supported
1896 F:      drivers/dma/at_xdmac.c
1897
1898 ATMEL I2C DRIVER
1899 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1900 L:      linux-i2c@vger.kernel.org
1901 S:      Supported
1902 F:      drivers/i2c/busses/i2c-at91.c
1903
1904 ATMEL ISI DRIVER
1905 M:      Josh Wu <josh.wu@atmel.com>
1906 L:      linux-media@vger.kernel.org
1907 S:      Supported
1908 F:      drivers/media/platform/soc_camera/atmel-isi.c
1909 F:      include/media/atmel-isi.h
1910
1911 ATMEL LCDFB DRIVER
1912 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1913 L:      linux-fbdev@vger.kernel.org
1914 S:      Maintained
1915 F:      drivers/video/fbdev/atmel_lcdfb.c
1916 F:      include/video/atmel_lcdc.h
1917
1918 ATMEL MACB ETHERNET DRIVER
1919 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1920 S:      Supported
1921 F:      drivers/net/ethernet/cadence/
1922
1923 ATMEL NAND DRIVER
1924 M:      Josh Wu <josh.wu@atmel.com>
1925 L:      linux-mtd@lists.infradead.org
1926 S:      Supported
1927 F:      drivers/mtd/nand/atmel_nand*
1928
1929 ATMEL SDMMC DRIVER
1930 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1931 L:      linux-mmc@vger.kernel.org
1932 S:      Supported
1933 F:      drivers/mmc/host/sdhci-of-at91.c
1934
1935 ATMEL SPI DRIVER
1936 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1937 S:      Supported
1938 F:      drivers/spi/spi-atmel.*
1939
1940 ATMEL SSC DRIVER
1941 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1943 S:      Supported
1944 F:      drivers/misc/atmel-ssc.c
1945 F:      include/linux/atmel-ssc.h
1946
1947 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1948 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1950 S:      Supported
1951 F:      drivers/misc/atmel_tclib.c
1952 F:      drivers/clocksource/tcb_clksrc.c
1953
1954 ATMEL USBA UDC DRIVER
1955 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1957 S:      Supported
1958 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1959
1960 ATMEL WIRELESS DRIVER
1961 M:      Simon Kelley <simon@thekelleys.org.uk>
1962 L:      linux-wireless@vger.kernel.org
1963 W:      http://www.thekelleys.org.uk/atmel
1964 W:      http://atmelwlandriver.sourceforge.net/
1965 S:      Maintained
1966 F:      drivers/net/wireless/atmel*
1967
1968 ATMEL MAXTOUCH DRIVER
1969 M:      Nick Dyer <nick.dyer@itdev.co.uk>
1970 T:      git git://github.com/atmel-maxtouch/linux.git
1971 S:      Supported
1972 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1973 F:      drivers/input/touchscreen/atmel_mxt_ts.c
1974 F:      include/linux/platform_data/atmel_mxt_ts.h
1975
1976 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1977 M:      Bradley Grove <linuxdrivers@attotech.com>
1978 L:      linux-scsi@vger.kernel.org
1979 W:      http://www.attotech.com
1980 S:      Supported
1981 F:      drivers/scsi/esas2r
1982
1983 ATUSB IEEE 802.15.4 RADIO DRIVER
1984 M:      Stefan Schmidt <stefan@osg.samsung.com>
1985 L:      linux-wpan@vger.kernel.org
1986 S:      Maintained
1987 F:      drivers/net/ieee802154/atusb.c
1988 F:      drivers/net/ieee802154/atusb.h
1989 F:      drivers/net/ieee802154/at86rf230.h
1990
1991 AUDIT SUBSYSTEM
1992 M:      Paul Moore <paul@paul-moore.com>
1993 M:      Eric Paris <eparis@redhat.com>
1994 L:      linux-audit@redhat.com (moderated for non-subscribers)
1995 W:      http://people.redhat.com/sgrubb/audit/
1996 T:      git git://git.infradead.org/users/pcmoore/audit
1997 S:      Maintained
1998 F:      include/linux/audit.h
1999 F:      include/uapi/linux/audit.h
2000 F:      kernel/audit*
2001
2002 AUXILIARY DISPLAY DRIVERS
2003 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2004 W:      http://miguelojeda.es/auxdisplay.htm
2005 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2006 S:      Maintained
2007 F:      drivers/auxdisplay/
2008 F:      include/linux/cfag12864b.h
2009
2010 AVR32 ARCHITECTURE
2011 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2012 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2013 W:      http://www.atmel.com/products/AVR32/
2014 W:      http://mirror.egtvedt.no/avr32linux.org/
2015 W:      http://avrfreaks.net/
2016 S:      Maintained
2017 F:      arch/avr32/
2018
2019 AVR32/AT32AP MACHINE SUPPORT
2020 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2021 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2022 S:      Maintained
2023 F:      arch/avr32/mach-at32ap/
2024
2025 AX.25 NETWORK LAYER
2026 M:      Ralf Baechle <ralf@linux-mips.org>
2027 L:      linux-hams@vger.kernel.org
2028 W:      http://www.linux-ax25.org/
2029 S:      Maintained
2030 F:      include/uapi/linux/ax25.h
2031 F:      include/net/ax25.h
2032 F:      net/ax25/
2033
2034 AZ6007 DVB DRIVER
2035 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2036 L:      linux-media@vger.kernel.org
2037 W:      http://linuxtv.org
2038 T:      git git://linuxtv.org/media_tree.git
2039 S:      Maintained
2040 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2041
2042 AZTECH FM RADIO RECEIVER DRIVER
2043 M:      Hans Verkuil <hverkuil@xs4all.nl>
2044 L:      linux-media@vger.kernel.org
2045 T:      git git://linuxtv.org/media_tree.git
2046 W:      http://linuxtv.org
2047 S:      Maintained
2048 F:      drivers/media/radio/radio-aztech*
2049
2050 B43 WIRELESS DRIVER
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:      Odd Fixes
2055 F:      drivers/net/wireless/b43/
2056
2057 B43LEGACY WIRELESS DRIVER
2058 M:      Larry Finger <Larry.Finger@lwfinger.net>
2059 L:      linux-wireless@vger.kernel.org
2060 L:      b43-dev@lists.infradead.org
2061 W:      http://wireless.kernel.org/en/users/Drivers/b43
2062 S:      Maintained
2063 F:      drivers/net/wireless/b43legacy/
2064
2065 BACKLIGHT CLASS/SUBSYSTEM
2066 M:      Jingoo Han <jingoohan1@gmail.com>
2067 M:      Lee Jones <lee.jones@linaro.org>
2068 S:      Maintained
2069 F:      drivers/video/backlight/
2070 F:      include/linux/backlight.h
2071
2072 BATMAN ADVANCED
2073 M:      Marek Lindner <mareklindner@neomailbox.ch>
2074 M:      Simon Wunderlich <sw@simonwunderlich.de>
2075 M:      Antonio Quartulli <antonio@meshcoding.com>
2076 L:      b.a.t.m.a.n@lists.open-mesh.org
2077 W:      http://www.open-mesh.org/
2078 S:      Maintained
2079 F:      net/batman-adv/
2080
2081 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2082 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2083 L:      linux-hams@vger.kernel.org
2084 W:      http://www.baycom.org/~tom/ham/ham.html
2085 S:      Maintained
2086 F:      drivers/net/hamradio/baycom*
2087
2088 BCACHE (BLOCK LAYER CACHE)
2089 M:      Kent Overstreet <kent.overstreet@gmail.com>
2090 L:      linux-bcache@vger.kernel.org
2091 W:      http://bcache.evilpiepirate.org
2092 S:      Maintained
2093 F:      drivers/md/bcache/
2094
2095 BDISP ST MEDIA DRIVER
2096 M:      Fabien Dessenne <fabien.dessenne@st.com>
2097 L:      linux-media@vger.kernel.org
2098 T:      git git://linuxtv.org/media_tree.git
2099 W:      http://linuxtv.org
2100 S:      Supported
2101 F:      drivers/media/platform/sti/bdisp
2102
2103 BEFS FILE SYSTEM
2104 S:      Orphan
2105 F:      Documentation/filesystems/befs.txt
2106 F:      fs/befs/
2107
2108 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2109 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2110 L:      netdev@vger.kernel.org
2111 S:      Maintained
2112 F:      drivers/net/ethernet/ec_bhf.c
2113
2114 BFS FILE SYSTEM
2115 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2116 S:      Maintained
2117 F:      Documentation/filesystems/bfs.txt
2118 F:      fs/bfs/
2119 F:      include/uapi/linux/bfs_fs.h
2120
2121 BLACKFIN ARCHITECTURE
2122 M:      Steven Miao <realmz6@gmail.com>
2123 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2124 T:      git git://git.code.sf.net/p/adi-linux/code
2125 W:      http://blackfin.uclinux.org
2126 S:      Supported
2127 F:      arch/blackfin/
2128
2129 BLACKFIN EMAC DRIVER
2130 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2131 W:      http://blackfin.uclinux.org
2132 S:      Supported
2133 F:      drivers/net/ethernet/adi/
2134
2135 BLACKFIN RTC DRIVER
2136 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2137 W:      http://blackfin.uclinux.org
2138 S:      Supported
2139 F:      drivers/rtc/rtc-bfin.c
2140
2141 BLACKFIN SDH DRIVER
2142 M:      Sonic Zhang <sonic.zhang@analog.com>
2143 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2144 W:      http://blackfin.uclinux.org
2145 S:      Supported
2146 F:      drivers/mmc/host/bfin_sdh.c
2147
2148 BLACKFIN SERIAL DRIVER
2149 M:      Sonic Zhang <sonic.zhang@analog.com>
2150 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2151 W:      http://blackfin.uclinux.org
2152 S:      Supported
2153 F:      drivers/tty/serial/bfin_uart.c
2154
2155 BLACKFIN WATCHDOG DRIVER
2156 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2157 W:      http://blackfin.uclinux.org
2158 S:      Supported
2159 F:      drivers/watchdog/bfin_wdt.c
2160
2161 BLACKFIN I2C TWI DRIVER
2162 M:      Sonic Zhang <sonic.zhang@analog.com>
2163 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2164 W:      http://blackfin.uclinux.org/
2165 S:      Supported
2166 F:      drivers/i2c/busses/i2c-bfin-twi.c
2167
2168 BLACKFIN MEDIA DRIVER
2169 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2170 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2171 W:      http://blackfin.uclinux.org/
2172 S:      Supported
2173 F:      drivers/media/platform/blackfin/
2174 F:      drivers/media/i2c/adv7183*
2175 F:      drivers/media/i2c/vs6624*
2176
2177 BLINKM RGB LED DRIVER
2178 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2179 S:      Maintained
2180 F:      drivers/leds/leds-blinkm.c
2181
2182 BLOCK LAYER
2183 M:      Jens Axboe <axboe@kernel.dk>
2184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2185 S:      Maintained
2186 F:      block/
2187 F:      kernel/trace/blktrace.c
2188
2189 BLOCK2MTD DRIVER
2190 M:      Joern Engel <joern@lazybastard.org>
2191 L:      linux-mtd@lists.infradead.org
2192 S:      Maintained
2193 F:      drivers/mtd/devices/block2mtd.c
2194
2195 BLUETOOTH DRIVERS
2196 M:      Marcel Holtmann <marcel@holtmann.org>
2197 M:      Gustavo Padovan <gustavo@padovan.org>
2198 M:      Johan Hedberg <johan.hedberg@gmail.com>
2199 L:      linux-bluetooth@vger.kernel.org
2200 W:      http://www.bluez.org/
2201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2203 S:      Maintained
2204 F:      drivers/bluetooth/
2205
2206 BLUETOOTH SUBSYSTEM
2207 M:      Marcel Holtmann <marcel@holtmann.org>
2208 M:      Gustavo Padovan <gustavo@padovan.org>
2209 M:      Johan Hedberg <johan.hedberg@gmail.com>
2210 L:      linux-bluetooth@vger.kernel.org
2211 W:      http://www.bluez.org/
2212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2214 S:      Maintained
2215 F:      net/bluetooth/
2216 F:      include/net/bluetooth/
2217
2218 BONDING DRIVER
2219 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2220 M:      Veaceslav Falico <vfalico@gmail.com>
2221 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2222 L:      netdev@vger.kernel.org
2223 W:      http://sourceforge.net/projects/bonding/
2224 S:      Supported
2225 F:      drivers/net/bonding/
2226 F:      include/uapi/linux/if_bonding.h
2227
2228 BPF (Safe dynamic programs and tools)
2229 M:      Alexei Starovoitov <ast@kernel.org>
2230 L:      netdev@vger.kernel.org
2231 L:      linux-kernel@vger.kernel.org
2232 S:      Supported
2233 F:      kernel/bpf/
2234
2235 BROADCOM B44 10/100 ETHERNET DRIVER
2236 M:      Gary Zambrano <zambrano@broadcom.com>
2237 L:      netdev@vger.kernel.org
2238 S:      Supported
2239 F:      drivers/net/ethernet/broadcom/b44.*
2240
2241 BROADCOM GENET ETHERNET DRIVER
2242 M:      Florian Fainelli <f.fainelli@gmail.com>
2243 L:      netdev@vger.kernel.org
2244 S:      Supported
2245 F:      drivers/net/ethernet/broadcom/genet/
2246
2247 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2248 M:      Sony Chacko <sony.chacko@qlogic.com>
2249 M:      Dept-HSGLinuxNICDev@qlogic.com
2250 L:      netdev@vger.kernel.org
2251 S:      Supported
2252 F:      drivers/net/ethernet/broadcom/bnx2.*
2253 F:      drivers/net/ethernet/broadcom/bnx2_*
2254
2255 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2256 M:      Ariel Elior <ariel.elior@qlogic.com>
2257 L:      netdev@vger.kernel.org
2258 S:      Supported
2259 F:      drivers/net/ethernet/broadcom/bnx2x/
2260
2261 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2262 M:      Florian Fainelli <f.fainelli@gmail.com>
2263 M:      Ray Jui <rjui@broadcom.com>
2264 M:      Scott Branden <sbranden@broadcom.com>
2265 L:      bcm-kernel-feedback-list@broadcom.com
2266 T:      git git://github.com/broadcom/mach-bcm
2267 S:      Maintained
2268 F:      arch/arm/mach-bcm/
2269 F:      arch/arm/boot/dts/bcm113*
2270 F:      arch/arm/boot/dts/bcm216*
2271 F:      arch/arm/boot/dts/bcm281*
2272 F:      arch/arm/configs/bcm_defconfig
2273 F:      drivers/mmc/host/sdhci-bcm-kona.c
2274 F:      drivers/clocksource/bcm_kona_timer.c
2275
2276 BROADCOM BCM2835 ARM ARCHITECTURE
2277 M:      Stephen Warren <swarren@wwwdotorg.org>
2278 M:      Lee Jones <lee@kernel.org>
2279 M:      Eric Anholt <eric@anholt.net>
2280 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2281 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2283 S:      Maintained
2284 N:      bcm2835
2285
2286 BROADCOM BCM33XX MIPS ARCHITECTURE
2287 M:      Kevin Cernekee <cernekee@gmail.com>
2288 L:      linux-mips@linux-mips.org
2289 S:      Maintained
2290 F:      arch/mips/bcm3384/*
2291 F:      arch/mips/include/asm/mach-bcm3384/*
2292 F:      arch/mips/kernel/*bmips*
2293
2294 BROADCOM BCM47XX MIPS ARCHITECTURE
2295 M:      Hauke Mehrtens <hauke@hauke-m.de>
2296 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2297 L:      linux-mips@linux-mips.org
2298 S:      Maintained
2299 F:      arch/mips/bcm47xx/*
2300 F:      arch/mips/include/asm/mach-bcm47xx/*
2301
2302 BROADCOM BCM5301X ARM ARCHITECTURE
2303 M:      Hauke Mehrtens <hauke@hauke-m.de>
2304 L:      linux-arm-kernel@lists.infradead.org
2305 S:      Maintained
2306 F:      arch/arm/mach-bcm/bcm_5301x.c
2307 F:      arch/arm/boot/dts/bcm5301x.dtsi
2308 F:      arch/arm/boot/dts/bcm470*
2309
2310 BROADCOM BCM63XX ARM ARCHITECTURE
2311 M:      Florian Fainelli <f.fainelli@gmail.com>
2312 L:      linux-arm-kernel@lists.infradead.org
2313 T:      git git://github.com/broadcom/arm-bcm63xx.git
2314 S:      Maintained
2315 F:      arch/arm/mach-bcm/bcm63xx.c
2316 F:      arch/arm/include/debug/bcm63xx.S
2317
2318 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2319 M:      Kevin Cernekee <cernekee@gmail.com>
2320 L:      linux-usb@vger.kernel.org
2321 S:      Maintained
2322 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2323
2324 BROADCOM BCM7XXX ARM ARCHITECTURE
2325 M:      Brian Norris <computersforpeace@gmail.com>
2326 M:      Gregory Fong <gregory.0xf0@gmail.com>
2327 M:      Florian Fainelli <f.fainelli@gmail.com>
2328 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2329 T:      git git://github.com/broadcom/stblinux.git
2330 S:      Maintained
2331 F:      arch/arm/mach-bcm/*brcmstb*
2332 F:      arch/arm/boot/dts/bcm7*.dts*
2333 F:      drivers/bus/brcmstb_gisb.c
2334 N:      brcmstb
2335
2336 BROADCOM BMIPS MIPS ARCHITECTURE
2337 M:      Kevin Cernekee <cernekee@gmail.com>
2338 M:      Florian Fainelli <f.fainelli@gmail.com>
2339 L:      linux-mips@linux-mips.org
2340 T:      git git://github.com/broadcom/stblinux.git
2341 S:      Maintained
2342 F:      arch/mips/bmips/*
2343 F:      arch/mips/include/asm/mach-bmips/*
2344 F:      arch/mips/kernel/*bmips*
2345 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2346 F:      drivers/irqchip/irq-bcm7*
2347 F:      drivers/irqchip/irq-brcmstb*
2348
2349 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2350 M:      Prashant Sreedharan <prashant@broadcom.com>
2351 M:      Michael Chan <mchan@broadcom.com>
2352 L:      netdev@vger.kernel.org
2353 S:      Supported
2354 F:      drivers/net/ethernet/broadcom/tg3.*
2355
2356 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2357 M:      Brett Rudley <brudley@broadcom.com>
2358 M:      Arend van Spriel <arend@broadcom.com>
2359 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2360 M:      Hante Meuleman <meuleman@broadcom.com>
2361 L:      linux-wireless@vger.kernel.org
2362 L:      brcm80211-dev-list@broadcom.com
2363 S:      Supported
2364 F:      drivers/net/wireless/brcm80211/
2365
2366 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2367 M:      QLogic-Storage-Upstream@qlogic.com
2368 L:      linux-scsi@vger.kernel.org
2369 S:      Supported
2370 F:      drivers/scsi/bnx2fc/
2371
2372 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2373 M:      QLogic-Storage-Upstream@qlogic.com
2374 L:      linux-scsi@vger.kernel.org
2375 S:      Supported
2376 F:      drivers/scsi/bnx2i/
2377
2378 BROADCOM IPROC ARM ARCHITECTURE
2379 M:      Ray Jui <rjui@broadcom.com>
2380 M:      Scott Branden <sbranden@broadcom.com>
2381 M:      Jon Mason <jonmason@broadcom.com>
2382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2383 L:      bcm-kernel-feedback-list@broadcom.com
2384 T:      git git://github.com/broadcom/cygnus-linux.git
2385 S:      Maintained
2386 N:      iproc
2387 N:      cygnus
2388 N:      nsp
2389 N:      bcm9113*
2390 N:      bcm9583*
2391 N:      bcm9585*
2392 N:      bcm9586*
2393 N:      bcm988312
2394 N:      bcm113*
2395 N:      bcm583*
2396 N:      bcm585*
2397 N:      bcm586*
2398 N:      bcm88312
2399
2400 BROADCOM BRCMSTB GPIO DRIVER
2401 M:      Gregory Fong <gregory.0xf0@gmail.com>
2402 L:      bcm-kernel-feedback-list@broadcom.com>
2403 S:      Supported
2404 F:      drivers/gpio/gpio-brcmstb.c
2405 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2406
2407 BROADCOM KONA GPIO DRIVER
2408 M:      Ray Jui <rjui@broadcom.com>
2409 L:      bcm-kernel-feedback-list@broadcom.com
2410 S:      Supported
2411 F:      drivers/gpio/gpio-bcm-kona.c
2412 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2413
2414 BROADCOM NVRAM DRIVER
2415 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2416 L:      linux-mips@linux-mips.org
2417 S:      Maintained
2418 F:      drivers/firmware/broadcom/*
2419
2420 BROADCOM STB NAND FLASH DRIVER
2421 M:      Brian Norris <computersforpeace@gmail.com>
2422 L:      linux-mtd@lists.infradead.org
2423 S:      Maintained
2424 F:      drivers/mtd/nand/brcmnand/
2425
2426 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2427 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2428 L:      linux-wireless@vger.kernel.org
2429 S:      Maintained
2430 F:      drivers/bcma/
2431 F:      include/linux/bcma/
2432
2433 BROADCOM SYSTEMPORT ETHERNET DRIVER
2434 M:      Florian Fainelli <f.fainelli@gmail.com>
2435 L:      netdev@vger.kernel.org
2436 S:      Supported
2437 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2438
2439 BROCADE BFA FC SCSI DRIVER
2440 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2441 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2442 L:      linux-scsi@vger.kernel.org
2443 S:      Supported
2444 F:      drivers/scsi/bfa/
2445
2446 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2447 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2448 L:      netdev@vger.kernel.org
2449 S:      Supported
2450 F:      drivers/net/ethernet/brocade/bna/
2451
2452 BSG (block layer generic sg v4 driver)
2453 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2454 L:      linux-scsi@vger.kernel.org
2455 S:      Supported
2456 F:      block/bsg.c
2457 F:      include/linux/bsg.h
2458 F:      include/uapi/linux/bsg.h
2459
2460 BT87X AUDIO DRIVER
2461 M:      Clemens Ladisch <clemens@ladisch.de>
2462 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2463 T:      git git://git.alsa-project.org/alsa-kernel.git
2464 S:      Maintained
2465 F:      Documentation/sound/alsa/Bt87x.txt
2466 F:      sound/pci/bt87x.c
2467
2468 BT8XXGPIO DRIVER
2469 M:      Michael Buesch <m@bues.ch>
2470 W:      http://bu3sch.de/btgpio.php
2471 S:      Maintained
2472 F:      drivers/gpio/gpio-bt8xx.c
2473
2474 BTRFS FILE SYSTEM
2475 M:      Chris Mason <clm@fb.com>
2476 M:      Josef Bacik <jbacik@fb.com>
2477 M:      David Sterba <dsterba@suse.com>
2478 L:      linux-btrfs@vger.kernel.org
2479 W:      http://btrfs.wiki.kernel.org/
2480 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2482 S:      Maintained
2483 F:      Documentation/filesystems/btrfs.txt
2484 F:      fs/btrfs/
2485
2486 BTTV VIDEO4LINUX DRIVER
2487 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2488 L:      linux-media@vger.kernel.org
2489 W:      http://linuxtv.org
2490 T:      git git://linuxtv.org/media_tree.git
2491 S:      Odd fixes
2492 F:      Documentation/video4linux/bttv/
2493 F:      drivers/media/pci/bt8xx/bttv*
2494
2495 BUSLOGIC SCSI DRIVER
2496 M:      Khalid Aziz <khalid@gonehiking.org>
2497 L:      linux-scsi@vger.kernel.org
2498 S:      Maintained
2499 F:      drivers/scsi/BusLogic.*
2500 F:      drivers/scsi/FlashPoint.*
2501
2502 C-MEDIA CMI8788 DRIVER
2503 M:      Clemens Ladisch <clemens@ladisch.de>
2504 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2505 T:      git git://git.alsa-project.org/alsa-kernel.git
2506 S:      Maintained
2507 F:      sound/pci/oxygen/
2508
2509 C6X ARCHITECTURE
2510 M:      Mark Salter <msalter@redhat.com>
2511 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2512 L:      linux-c6x-dev@linux-c6x.org
2513 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2514 S:      Maintained
2515 F:      arch/c6x/
2516
2517 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2518 M:      David Howells <dhowells@redhat.com>
2519 L:      linux-cachefs@redhat.com
2520 S:      Supported
2521 F:      Documentation/filesystems/caching/cachefiles.txt
2522 F:      fs/cachefiles/
2523
2524 CADET FM/AM RADIO RECEIVER DRIVER
2525 M:      Hans Verkuil <hverkuil@xs4all.nl>
2526 L:      linux-media@vger.kernel.org
2527 T:      git git://linuxtv.org/media_tree.git
2528 W:      http://linuxtv.org
2529 S:      Maintained
2530 F:      drivers/media/radio/radio-cadet*
2531
2532 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2533 M:      Jonathan Corbet <corbet@lwn.net>
2534 L:      linux-media@vger.kernel.org
2535 T:      git git://linuxtv.org/media_tree.git
2536 S:      Maintained
2537 F:      Documentation/video4linux/cafe_ccic
2538 F:      drivers/media/platform/marvell-ccic/
2539
2540 CAIF NETWORK LAYER
2541 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2542 L:      netdev@vger.kernel.org
2543 S:      Supported
2544 F:      Documentation/networking/caif/
2545 F:      drivers/net/caif/
2546 F:      include/uapi/linux/caif/
2547 F:      include/net/caif/
2548 F:      net/caif/
2549
2550 CALGARY x86-64 IOMMU
2551 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2552 M:      "Jon D. Mason" <jdmason@kudzu.us>
2553 L:      discuss@x86-64.org
2554 S:      Maintained
2555 F:      arch/x86/kernel/pci-calgary_64.c
2556 F:      arch/x86/kernel/tce_64.c
2557 F:      arch/x86/include/asm/calgary.h
2558 F:      arch/x86/include/asm/tce.h
2559
2560 CAN NETWORK LAYER
2561 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2562 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2563 L:      linux-can@vger.kernel.org
2564 W:      https://github.com/linux-can
2565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2567 S:      Maintained
2568 F:      Documentation/networking/can.txt
2569 F:      net/can/
2570 F:      include/linux/can/core.h
2571 F:      include/uapi/linux/can.h
2572 F:      include/uapi/linux/can/bcm.h
2573 F:      include/uapi/linux/can/raw.h
2574 F:      include/uapi/linux/can/gw.h
2575
2576 CAN NETWORK DRIVERS
2577 M:      Wolfgang Grandegger <wg@grandegger.com>
2578 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2579 L:      linux-can@vger.kernel.org
2580 W:      https://github.com/linux-can
2581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2583 S:      Maintained
2584 F:      drivers/net/can/
2585 F:      include/linux/can/dev.h
2586 F:      include/linux/can/platform/
2587 F:      include/uapi/linux/can/error.h
2588 F:      include/uapi/linux/can/netlink.h
2589
2590 CAPABILITIES
2591 M:      Serge Hallyn <serge.hallyn@canonical.com>
2592 L:      linux-security-module@vger.kernel.org
2593 S:      Supported
2594 F:      include/linux/capability.h
2595 F:      include/uapi/linux/capability.h
2596 F:      security/commoncap.c
2597 F:      kernel/capability.c
2598
2599 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2600 M:      Kevin Tsai <ktsai@capellamicro.com>
2601 S:      Maintained
2602 F:      drivers/iio/light/cm*
2603 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2604
2605 CAVIUM LIQUIDIO NETWORK DRIVER
2606 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2607 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2608 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2609 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2610 L:     netdev@vger.kernel.org
2611 W:     http://www.cavium.com
2612 S:     Supported
2613 F:     drivers/net/ethernet/cavium/liquidio/
2614
2615 CC2520 IEEE-802.15.4 RADIO DRIVER
2616 M:      Varka Bhadram <varkabhadram@gmail.com>
2617 L:      linux-wpan@vger.kernel.org
2618 S:      Maintained
2619 F:      drivers/net/ieee802154/cc2520.c
2620 F:      include/linux/spi/cc2520.h
2621 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2622
2623 CELL BROADBAND ENGINE ARCHITECTURE
2624 M:      Arnd Bergmann <arnd@arndb.de>
2625 L:      linuxppc-dev@lists.ozlabs.org
2626 W:      http://www.ibm.com/developerworks/power/cell/
2627 S:      Supported
2628 F:      arch/powerpc/include/asm/cell*.h
2629 F:      arch/powerpc/include/asm/spu*.h
2630 F:      arch/powerpc/include/uapi/asm/spu*.h
2631 F:      arch/powerpc/oprofile/*cell*
2632 F:      arch/powerpc/platforms/cell/
2633
2634 CEPH COMMON CODE (LIBCEPH)
2635 M:      Ilya Dryomov <idryomov@gmail.com>
2636 M:      "Yan, Zheng" <zyan@redhat.com>
2637 M:      Sage Weil <sage@redhat.com>
2638 L:      ceph-devel@vger.kernel.org
2639 W:      http://ceph.com/
2640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2641 T:      git git://github.com/ceph/ceph-client.git
2642 S:      Supported
2643 F:      net/ceph/
2644 F:      include/linux/ceph/
2645 F:      include/linux/crush/
2646
2647 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2648 M:      "Yan, Zheng" <zyan@redhat.com>
2649 M:      Sage Weil <sage@redhat.com>
2650 M:      Ilya Dryomov <idryomov@gmail.com>
2651 L:      ceph-devel@vger.kernel.org
2652 W:      http://ceph.com/
2653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2654 T:      git git://github.com/ceph/ceph-client.git
2655 S:      Supported
2656 F:      Documentation/filesystems/ceph.txt
2657 F:      fs/ceph/
2658
2659 CERTIFICATE HANDLING:
2660 M:      David Howells <dhowells@redhat.com>
2661 M:      David Woodhouse <dwmw2@infradead.org>
2662 L:      keyrings@linux-nfs.org
2663 S:      Maintained
2664 F:      Documentation/module-signing.txt
2665 F:      certs/
2666 F:      scripts/extract-cert.c
2667
2668 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2669 L:      linux-usb@vger.kernel.org
2670 S:      Orphan
2671 F:      Documentation/usb/WUSB-Design-overview.txt
2672 F:      Documentation/usb/wusb-cbaf
2673 F:      drivers/usb/host/hwa-hc.c
2674 F:      drivers/usb/host/whci/
2675 F:      drivers/usb/wusbcore/
2676 F:      include/linux/usb/wusb*
2677
2678 CFAG12864B LCD 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/cfag12864b.c
2684 F:      include/linux/cfag12864b.h
2685
2686 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2687 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2688 W:      http://miguelojeda.es/auxdisplay.htm
2689 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2690 S:      Maintained
2691 F:      drivers/auxdisplay/cfag12864bfb.c
2692 F:      include/linux/cfag12864b.h
2693
2694 CFG80211 and NL80211
2695 M:      Johannes Berg <johannes@sipsolutions.net>
2696 L:      linux-wireless@vger.kernel.org
2697 W:      http://wireless.kernel.org/
2698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2700 S:      Maintained
2701 F:      include/uapi/linux/nl80211.h
2702 F:      include/net/cfg80211.h
2703 F:      net/wireless/*
2704 X:      net/wireless/wext*
2705
2706 CHAR and MISC DRIVERS
2707 M:      Arnd Bergmann <arnd@arndb.de>
2708 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2710 S:      Supported
2711 F:      drivers/char/*
2712 F:      drivers/misc/*
2713 F:      include/linux/miscdevice.h
2714
2715 CHECKPATCH
2716 M:      Andy Whitcroft <apw@canonical.com>
2717 M:      Joe Perches <joe@perches.com>
2718 S:      Maintained
2719 F:      scripts/checkpatch.pl
2720
2721 CHINESE DOCUMENTATION
2722 M:      Harry Wei <harryxiyou@gmail.com>
2723 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2724 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2725 S:      Maintained
2726 F:      Documentation/zh_CN/
2727
2728 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2729 M:      Peter Chen <Peter.Chen@freescale.com>
2730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2731 L:      linux-usb@vger.kernel.org
2732 S:      Maintained
2733 F:      drivers/usb/chipidea/
2734
2735 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2736 M:      Hans de Goede <hdegoede@redhat.com>
2737 L:      linux-input@vger.kernel.org
2738 S:      Maintained
2739 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2740 F:      drivers/input/touchscreen/chipone_icn8318.c
2741
2742 CHROME HARDWARE PLATFORM SUPPORT
2743 M:      Olof Johansson <olof@lixom.net>
2744 S:      Maintained
2745 F:      drivers/platform/chrome/
2746
2747 CISCO VIC ETHERNET NIC DRIVER
2748 M:      Christian Benvenuti <benve@cisco.com>
2749 M:      Sujith Sankar <ssujith@cisco.com>
2750 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2751 M:      Neel Patel <neepatel@cisco.com>
2752 S:      Supported
2753 F:      drivers/net/ethernet/cisco/enic/
2754
2755 CISCO VIC LOW LATENCY NIC DRIVER
2756 M:      Upinder Malhi <umalhi@cisco.com>
2757 S:      Supported
2758 F:      drivers/infiniband/hw/usnic
2759
2760 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2761 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2762 L:      netdev@vger.kernel.org
2763 S:      Maintained
2764 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2765
2766 CIRRUS LOGIC AUDIO CODEC DRIVERS
2767 M:      Brian Austin <brian.austin@cirrus.com>
2768 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2769 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2770 S:      Maintained
2771 F:      sound/soc/codecs/cs*
2772
2773 CLEANCACHE API
2774 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2775 L:      linux-kernel@vger.kernel.org
2776 S:      Maintained
2777 F:      mm/cleancache.c
2778 F:      include/linux/cleancache.h
2779
2780 CLK API
2781 M:      Russell King <linux@arm.linux.org.uk>
2782 L:      linux-clk@vger.kernel.org
2783 S:      Maintained
2784 F:      include/linux/clk.h
2785
2786 CLOCKSOURCE, CLOCKEVENT DRIVERS
2787 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2788 M:      Thomas Gleixner <tglx@linutronix.de>
2789 L:      linux-kernel@vger.kernel.org
2790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2791 S:      Supported
2792 F:      drivers/clocksource
2793
2794 CISCO FCOE HBA DRIVER
2795 M:      Hiral Patel <hiralpat@cisco.com>
2796 M:      Suma Ramars <sramars@cisco.com>
2797 M:      Brian Uchino <buchino@cisco.com>
2798 L:      linux-scsi@vger.kernel.org
2799 S:      Supported
2800 F:      drivers/scsi/fnic/
2801
2802 CISCO SCSI HBA DRIVER
2803 M:      Narsimhulu Musini <nmusini@cisco.com>
2804 M:      Sesidhar Baddela <sebaddel@cisco.com>
2805 L:      linux-scsi@vger.kernel.org
2806 S:      Supported
2807 F:      drivers/scsi/snic/
2808
2809 CMPC ACPI DRIVER
2810 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2811 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2812 L:      platform-driver-x86@vger.kernel.org
2813 S:      Supported
2814 F:      drivers/platform/x86/classmate-laptop.c
2815
2816 COBALT MEDIA DRIVER
2817 M:      Hans Verkuil <hans.verkuil@cisco.com>
2818 L:      linux-media@vger.kernel.org
2819 T:      git git://linuxtv.org/media_tree.git
2820 W:      http://linuxtv.org
2821 S:      Supported
2822 F:      drivers/media/pci/cobalt/
2823
2824 COCCINELLE/Semantic Patches (SmPL)
2825 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2826 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2827 M:      Nicolas Palix <nicolas.palix@imag.fr>
2828 M:      Michal Marek <mmarek@suse.com>
2829 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2831 W:      http://coccinelle.lip6.fr/
2832 S:      Supported
2833 F:      Documentation/coccinelle.txt
2834 F:      scripts/coccinelle/
2835 F:      scripts/coccicheck
2836
2837 CODA FILE SYSTEM
2838 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2839 M:      coda@cs.cmu.edu
2840 L:      codalist@coda.cs.cmu.edu
2841 W:      http://www.coda.cs.cmu.edu/
2842 S:      Maintained
2843 F:      Documentation/filesystems/coda.txt
2844 F:      fs/coda/
2845 F:      include/linux/coda*.h
2846 F:      include/uapi/linux/coda*.h
2847
2848 CODA V4L2 MEM2MEM DRIVER
2849 M:      Philipp Zabel <p.zabel@pengutronix.de>
2850 L:      linux-media@vger.kernel.org
2851 S:      Maintained
2852 F:      Documentation/devicetree/bindings/media/coda.txt
2853 F:      drivers/media/platform/coda/
2854
2855 COMMON CLK FRAMEWORK
2856 M:      Michael Turquette <mturquette@baylibre.com>
2857 M:      Stephen Boyd <sboyd@codeaurora.org>
2858 L:      linux-clk@vger.kernel.org
2859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2860 S:      Maintained
2861 F:      drivers/clk/
2862 X:      drivers/clk/clkdev.c
2863 F:      include/linux/clk-pr*
2864 F:      include/linux/clk/
2865
2866 COMMON INTERNET FILE SYSTEM (CIFS)
2867 M:      Steve French <sfrench@samba.org>
2868 L:      linux-cifs@vger.kernel.org
2869 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2870 W:      http://linux-cifs.samba.org/
2871 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2872 S:      Supported
2873 F:      Documentation/filesystems/cifs/
2874 F:      fs/cifs/
2875
2876 COMPACTPCI HOTPLUG CORE
2877 M:      Scott Murray <scott@spiteful.org>
2878 L:      linux-pci@vger.kernel.org
2879 S:      Maintained
2880 F:      drivers/pci/hotplug/cpci_hotplug*
2881
2882 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2883 M:      Scott Murray <scott@spiteful.org>
2884 L:      linux-pci@vger.kernel.org
2885 S:      Maintained
2886 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2887
2888 COMPACTPCI HOTPLUG GENERIC DRIVER
2889 M:      Scott Murray <scott@spiteful.org>
2890 L:      linux-pci@vger.kernel.org
2891 S:      Maintained
2892 F:      drivers/pci/hotplug/cpcihp_generic.c
2893
2894 COMPAL LAPTOP SUPPORT
2895 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2896 L:      platform-driver-x86@vger.kernel.org
2897 S:      Maintained
2898 F:      drivers/platform/x86/compal-laptop.c
2899
2900 CONEXANT ACCESSRUNNER USB DRIVER
2901 M:      Simon Arlott <cxacru@fire.lp0.eu>
2902 L:      accessrunner-general@lists.sourceforge.net
2903 W:      http://accessrunner.sourceforge.net/
2904 S:      Maintained
2905 F:      drivers/usb/atm/cxacru.c
2906
2907 CONFIGFS
2908 M:      Joel Becker <jlbec@evilplan.org>
2909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2910 S:      Supported
2911 F:      fs/configfs/
2912 F:      include/linux/configfs.h
2913
2914 CONNECTOR
2915 M:      Evgeniy Polyakov <zbr@ioremap.net>
2916 L:      netdev@vger.kernel.org
2917 S:      Maintained
2918 F:      drivers/connector/
2919
2920 CONTROL GROUP (CGROUP)
2921 M:      Tejun Heo <tj@kernel.org>
2922 M:      Li Zefan <lizefan@huawei.com>
2923 M:      Johannes Weiner <hannes@cmpxchg.org>
2924 L:      cgroups@vger.kernel.org
2925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2926 S:      Maintained
2927 F:      Documentation/cgroups/
2928 F:      include/linux/cgroup*
2929 F:      kernel/cgroup*
2930
2931 CONTROL GROUP - CPUSET
2932 M:      Li Zefan <lizefan@huawei.com>
2933 L:      cgroups@vger.kernel.org
2934 W:      http://www.bullopensource.org/cpuset/
2935 W:      http://oss.sgi.com/projects/cpusets/
2936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2937 S:      Maintained
2938 F:      Documentation/cgroups/cpusets.txt
2939 F:      include/linux/cpuset.h
2940 F:      kernel/cpuset.c
2941
2942 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2943 M:      Johannes Weiner <hannes@cmpxchg.org>
2944 M:      Michal Hocko <mhocko@kernel.org>
2945 L:      cgroups@vger.kernel.org
2946 L:      linux-mm@kvack.org
2947 S:      Maintained
2948 F:      mm/memcontrol.c
2949 F:      mm/swap_cgroup.c
2950
2951 CORETEMP HARDWARE MONITORING DRIVER
2952 M:      Fenghua Yu <fenghua.yu@intel.com>
2953 L:      lm-sensors@lm-sensors.org
2954 S:      Maintained
2955 F:      Documentation/hwmon/coretemp
2956 F:      drivers/hwmon/coretemp.c
2957
2958 COSA/SRP SYNC SERIAL DRIVER
2959 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2960 W:      http://www.fi.muni.cz/~kas/cosa/
2961 S:      Maintained
2962 F:      drivers/net/wan/cosa*
2963
2964 CPMAC ETHERNET DRIVER
2965 M:      Florian Fainelli <florian@openwrt.org>
2966 L:      netdev@vger.kernel.org
2967 S:      Maintained
2968 F:      drivers/net/ethernet/ti/cpmac.c
2969
2970 CPU FREQUENCY DRIVERS
2971 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2972 M:      Viresh Kumar <viresh.kumar@linaro.org>
2973 L:      linux-pm@vger.kernel.org
2974 S:      Maintained
2975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2976 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2977 F:      drivers/cpufreq/
2978 F:      include/linux/cpufreq.h
2979
2980 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2981 M:      Viresh Kumar <viresh.kumar@linaro.org>
2982 M:      Sudeep Holla <sudeep.holla@arm.com>
2983 L:      linux-pm@vger.kernel.org
2984 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2985 S:      Maintained
2986 F:      drivers/cpufreq/arm_big_little.h
2987 F:      drivers/cpufreq/arm_big_little.c
2988 F:      drivers/cpufreq/arm_big_little_dt.c
2989
2990 CPUIDLE DRIVER - ARM BIG LITTLE
2991 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2992 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2993 L:      linux-pm@vger.kernel.org
2994 L:      linux-arm-kernel@lists.infradead.org
2995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2996 S:      Maintained
2997 F:      drivers/cpuidle/cpuidle-big_little.c
2998
2999 CPUIDLE DRIVER - ARM EXYNOS
3000 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3001 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3002 M:      Kukjin Kim <kgene@kernel.org>
3003 L:      linux-pm@vger.kernel.org
3004 L:      linux-samsung-soc@vger.kernel.org
3005 S:      Supported
3006 F:      drivers/cpuidle/cpuidle-exynos.c
3007 F:      arch/arm/mach-exynos/pm.c
3008
3009 CPUIDLE DRIVERS
3010 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3011 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3012 L:      linux-pm@vger.kernel.org
3013 S:      Maintained
3014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3015 F:      drivers/cpuidle/*
3016 F:      include/linux/cpuidle.h
3017
3018 CPUID/MSR DRIVER
3019 M:      "H. Peter Anvin" <hpa@zytor.com>
3020 S:      Maintained
3021 F:      arch/x86/kernel/cpuid.c
3022 F:      arch/x86/kernel/msr.c
3023
3024 CPU POWER MONITORING SUBSYSTEM
3025 M:      Thomas Renninger <trenn@suse.com>
3026 L:      linux-pm@vger.kernel.org
3027 S:      Maintained
3028 F:      tools/power/cpupower/
3029
3030 CRAMFS FILESYSTEM
3031 W:      http://sourceforge.net/projects/cramfs/
3032 S:      Orphan / Obsolete
3033 F:      Documentation/filesystems/cramfs.txt
3034 F:      fs/cramfs/
3035
3036 CRIS PORT
3037 M:      Mikael Starvik <starvik@axis.com>
3038 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3039 L:      linux-cris-kernel@axis.com
3040 W:      http://developer.axis.com
3041 S:      Maintained
3042 F:      arch/cris/
3043 F:      drivers/tty/serial/crisv10.*
3044
3045 CRYPTO API
3046 M:      Herbert Xu <herbert@gondor.apana.org.au>
3047 M:      "David S. Miller" <davem@davemloft.net>
3048 L:      linux-crypto@vger.kernel.org
3049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3050 S:      Maintained
3051 F:      Documentation/crypto/
3052 F:      Documentation/DocBook/crypto-API.tmpl
3053 F:      arch/*/crypto/
3054 F:      crypto/
3055 F:      drivers/crypto/
3056 F:      include/crypto/
3057
3058 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3059 M:      Neil Horman <nhorman@tuxdriver.com>
3060 L:      linux-crypto@vger.kernel.org
3061 S:      Maintained
3062 F:      crypto/ansi_cprng.c
3063 F:      crypto/rng.c
3064
3065 CS5535 Audio ALSA driver
3066 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3067 S:      Maintained
3068 F:      sound/pci/cs5535audio/
3069
3070 CW1200 WLAN driver
3071 M:      Solomon Peachy <pizza@shaftnet.org>
3072 S:      Maintained
3073 F:      drivers/net/wireless/cw1200/
3074
3075 CX18 VIDEO4LINUX DRIVER
3076 M:      Andy Walls <awalls@md.metrocast.net>
3077 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3078 L:      linux-media@vger.kernel.org
3079 T:      git git://linuxtv.org/media_tree.git
3080 W:      http://linuxtv.org
3081 W:      http://www.ivtvdriver.org/index.php/Cx18
3082 S:      Maintained
3083 F:      Documentation/video4linux/cx18.txt
3084 F:      drivers/media/pci/cx18/
3085 F:      include/uapi/linux/ivtv*
3086
3087 CX2341X MPEG ENCODER HELPER MODULE
3088 M:      Hans Verkuil <hverkuil@xs4all.nl>
3089 L:      linux-media@vger.kernel.org
3090 T:      git git://linuxtv.org/media_tree.git
3091 W:      http://linuxtv.org
3092 S:      Maintained
3093 F:      drivers/media/common/cx2341x*
3094 F:      include/media/cx2341x*
3095
3096 CX24120 MEDIA DRIVER
3097 M:      Jemma Denson <jdenson@gmail.com>
3098 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3099 L:      linux-media@vger.kernel.org
3100 W:      http://linuxtv.org/
3101 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3102 S:      Maintained
3103 F:      drivers/media/dvb-frontends/cx24120*
3104
3105 CX88 VIDEO4LINUX DRIVER
3106 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3107 L:      linux-media@vger.kernel.org
3108 W:      http://linuxtv.org
3109 T:      git git://linuxtv.org/media_tree.git
3110 S:      Odd fixes
3111 F:      Documentation/video4linux/cx88/
3112 F:      drivers/media/pci/cx88/
3113
3114 CXD2820R MEDIA DRIVER
3115 M:      Antti Palosaari <crope@iki.fi>
3116 L:      linux-media@vger.kernel.org
3117 W:      http://linuxtv.org/
3118 W:      http://palosaari.fi/linux/
3119 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3120 T:      git git://linuxtv.org/anttip/media_tree.git
3121 S:      Maintained
3122 F:      drivers/media/dvb-frontends/cxd2820r*
3123
3124 CXGB3 ETHERNET DRIVER (CXGB3)
3125 M:      Santosh Raspatur <santosh@chelsio.com>
3126 L:      netdev@vger.kernel.org
3127 W:      http://www.chelsio.com
3128 S:      Supported
3129 F:      drivers/net/ethernet/chelsio/cxgb3/
3130
3131 CXGB3 ISCSI DRIVER (CXGB3I)
3132 M:      Karen Xie <kxie@chelsio.com>
3133 L:      linux-scsi@vger.kernel.org
3134 W:      http://www.chelsio.com
3135 S:      Supported
3136 F:      drivers/scsi/cxgbi/cxgb3i
3137
3138 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3139 M:      Steve Wise <swise@chelsio.com>
3140 L:      linux-rdma@vger.kernel.org
3141 W:      http://www.openfabrics.org
3142 S:      Supported
3143 F:      drivers/infiniband/hw/cxgb3/
3144
3145 CXGB4 ETHERNET DRIVER (CXGB4)
3146 M:      Hariprasad S <hariprasad@chelsio.com>
3147 L:      netdev@vger.kernel.org
3148 W:      http://www.chelsio.com
3149 S:      Supported
3150 F:      drivers/net/ethernet/chelsio/cxgb4/
3151
3152 CXGB4 ISCSI DRIVER (CXGB4I)
3153 M:      Karen Xie <kxie@chelsio.com>
3154 L:      linux-scsi@vger.kernel.org
3155 W:      http://www.chelsio.com
3156 S:      Supported
3157 F:      drivers/scsi/cxgbi/cxgb4i
3158
3159 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3160 M:      Steve Wise <swise@chelsio.com>
3161 L:      linux-rdma@vger.kernel.org
3162 W:      http://www.openfabrics.org
3163 S:      Supported
3164 F:      drivers/infiniband/hw/cxgb4/
3165
3166 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3167 M:      Casey Leedom <leedom@chelsio.com>
3168 L:      netdev@vger.kernel.org
3169 W:      http://www.chelsio.com
3170 S:      Supported
3171 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3172
3173 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3174 M:      Ian Munsie <imunsie@au1.ibm.com>
3175 M:      Michael Neuling <mikey@neuling.org>
3176 L:      linuxppc-dev@lists.ozlabs.org
3177 S:      Supported
3178 F:      drivers/misc/cxl/
3179 F:      include/misc/cxl*
3180 F:      include/uapi/misc/cxl.h
3181 F:      Documentation/powerpc/cxl.txt
3182 F:      Documentation/powerpc/cxl.txt
3183 F:      Documentation/ABI/testing/sysfs-class-cxl
3184
3185 STMMAC ETHERNET DRIVER
3186 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3187 L:      netdev@vger.kernel.org
3188 W:      http://www.stlinux.com
3189 S:      Supported
3190 F:      drivers/net/ethernet/stmicro/stmmac/
3191
3192 CYBERPRO FB DRIVER
3193 M:      Russell King <linux@arm.linux.org.uk>
3194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3195 W:      http://www.arm.linux.org.uk/
3196 S:      Maintained
3197 F:      drivers/video/fbdev/cyber2000fb.*
3198
3199 CYCLADES ASYNC MUX DRIVER
3200 W:      http://www.cyclades.com/
3201 S:      Orphan
3202 F:      drivers/tty/cyclades.c
3203 F:      include/linux/cyclades.h
3204 F:      include/uapi/linux/cyclades.h
3205
3206 CYCLADES PC300 DRIVER
3207 W:      http://www.cyclades.com/
3208 S:      Orphan
3209 F:      drivers/net/wan/pc300*
3210
3211 CYPRESS_FIRMWARE MEDIA DRIVER
3212 M:      Antti Palosaari <crope@iki.fi>
3213 L:      linux-media@vger.kernel.org
3214 W:      http://linuxtv.org/
3215 W:      http://palosaari.fi/linux/
3216 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3217 T:      git git://linuxtv.org/anttip/media_tree.git
3218 S:      Maintained
3219 F:      drivers/media/common/cypress_firmware*
3220
3221 CYTTSP TOUCHSCREEN DRIVER
3222 M:      Ferruh Yigit <fery@cypress.com>
3223 L:      linux-input@vger.kernel.org
3224 S:      Supported
3225 F:      drivers/input/touchscreen/cyttsp*
3226 F:      include/linux/input/cyttsp.h
3227
3228 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3229 M:      Joshua Kinard <kumba@gentoo.org>
3230 S:      Maintained
3231 F:      drivers/rtc/rtc-ds1685.c
3232 F:      include/linux/rtc/ds1685.h
3233
3234 DAMA SLAVE for AX.25
3235 M:      Joerg Reuter <jreuter@yaina.de>
3236 W:      http://yaina.de/jreuter/
3237 W:      http://www.qsl.net/dl1bke/
3238 L:      linux-hams@vger.kernel.org
3239 S:      Maintained
3240 F:      net/ax25/af_ax25.c
3241 F:      net/ax25/ax25_dev.c
3242 F:      net/ax25/ax25_ds_*
3243 F:      net/ax25/ax25_in.c
3244 F:      net/ax25/ax25_out.c
3245 F:      net/ax25/ax25_timer.c
3246 F:      net/ax25/sysctl_net_ax25.c
3247
3248 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3249 L:      netdev@vger.kernel.org
3250 S:      Orphan
3251 F:      Documentation/networking/dmfe.txt
3252 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3253
3254 DC390/AM53C974 SCSI driver
3255 M:      Hannes Reinecke <hare@suse.com>
3256 L:      linux-scsi@vger.kernel.org
3257 S:      Maintained
3258 F:      drivers/scsi/am53c974.c
3259
3260 DC395x SCSI driver
3261 M:      Oliver Neukum <oliver@neukum.org>
3262 M:      Ali Akcaagac <aliakc@web.de>
3263 M:      Jamie Lenehan <lenehan@twibble.org>
3264 L:      dc395x@twibble.org
3265 W:      http://twibble.org/dist/dc395x/
3266 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3267 S:      Maintained
3268 F:      Documentation/scsi/dc395x.txt
3269 F:      drivers/scsi/dc395x.*
3270
3271 DCCP PROTOCOL
3272 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3273 L:      dccp@vger.kernel.org
3274 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3275 S:      Maintained
3276 F:      include/linux/dccp.h
3277 F:      include/uapi/linux/dccp.h
3278 F:      include/linux/tfrc.h
3279 F:      net/dccp/
3280
3281 DECnet NETWORK LAYER
3282 W:      http://linux-decnet.sourceforge.net
3283 L:      linux-decnet-user@lists.sourceforge.net
3284 S:      Orphan
3285 F:      Documentation/networking/decnet.txt
3286 F:      net/decnet/
3287
3288 DECSTATION PLATFORM SUPPORT
3289 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3290 L:      linux-mips@linux-mips.org
3291 W:      http://www.linux-mips.org/wiki/DECstation
3292 S:      Maintained
3293 F:      arch/mips/dec/
3294 F:      arch/mips/include/asm/dec/
3295 F:      arch/mips/include/asm/mach-dec/
3296
3297 DEFXX FDDI NETWORK DRIVER
3298 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3299 S:      Maintained
3300 F:      drivers/net/fddi/defxx.*
3301
3302 DELL LAPTOP DRIVER
3303 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3304 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3305 L:      platform-driver-x86@vger.kernel.org
3306 S:      Maintained
3307 F:      drivers/platform/x86/dell-laptop.c
3308
3309 DELL LAPTOP RBTN DRIVER
3310 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3311 S:      Maintained
3312 F:      drivers/platform/x86/dell-rbtn.*
3313
3314 DELL LAPTOP FREEFALL DRIVER
3315 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3316 S:      Maintained
3317 F:      drivers/platform/x86/dell-smo8800.c
3318
3319 DELL LAPTOP SMM DRIVER
3320 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3321 S:      Maintained
3322 F:      drivers/hwmon/dell-smm-hwmon.c
3323 F:      include/uapi/linux/i8k.h
3324
3325 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3326 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3327 S:      Maintained
3328 F:      Documentation/dcdbas.txt
3329 F:      drivers/firmware/dcdbas.*
3330
3331 DELL WMI EXTRAS DRIVER
3332 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3333 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3334 S:      Maintained
3335 F:      drivers/platform/x86/dell-wmi.c
3336
3337 DESIGNWARE USB2 DRD IP DRIVER
3338 M:      John Youn <johnyoun@synopsys.com>
3339 L:      linux-usb@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/dwc2/
3343
3344 DESIGNWARE USB3 DRD IP DRIVER
3345 M:      Felipe Balbi <balbi@ti.com>
3346 L:      linux-usb@vger.kernel.org
3347 L:      linux-omap@vger.kernel.org
3348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3349 S:      Maintained
3350 F:      drivers/usb/dwc3/
3351
3352 DEVICE COREDUMP (DEV_COREDUMP)
3353 M:      Johannes Berg <johannes@sipsolutions.net>
3354 L:      linux-kernel@vger.kernel.org
3355 S:      Maintained
3356 F:      drivers/base/devcoredump.c
3357 F:      include/linux/devcoredump.h
3358
3359 DEVICE FREQUENCY (DEVFREQ)
3360 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3361 M:      Kyungmin Park <kyungmin.park@samsung.com>
3362 L:      linux-pm@vger.kernel.org
3363 S:      Maintained
3364 F:      drivers/devfreq/
3365
3366 DEVICE NUMBER REGISTRY
3367 M:      Torben Mathiasen <device@lanana.org>
3368 W:      http://lanana.org/docs/device-list/index.html
3369 S:      Maintained
3370
3371 DEVICE-MAPPER  (LVM)
3372 M:      Alasdair Kergon <agk@redhat.com>
3373 M:      Mike Snitzer <snitzer@redhat.com>
3374 M:      dm-devel@redhat.com
3375 L:      dm-devel@redhat.com
3376 W:      http://sources.redhat.com/dm
3377 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3379 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3380 S:      Maintained
3381 F:      Documentation/device-mapper/
3382 F:      drivers/md/dm*
3383 F:      drivers/md/persistent-data/
3384 F:      include/linux/device-mapper.h
3385 F:      include/linux/dm-*.h
3386 F:      include/uapi/linux/dm-*.h
3387
3388 DIALOG SEMICONDUCTOR DRIVERS
3389 M:      Support Opensource <support.opensource@diasemi.com>
3390 W:      http://www.dialog-semiconductor.com/products
3391 S:      Supported
3392 F:      Documentation/hwmon/da90??
3393 F:      drivers/gpio/gpio-da90??.c
3394 F:      drivers/hwmon/da90??-hwmon.c
3395 F:      drivers/iio/adc/da91??-*.c
3396 F:      drivers/input/misc/da90??_onkey.c
3397 F:      drivers/input/touchscreen/da9052_tsi.c
3398 F:      drivers/leds/leds-da90??.c
3399 F:      drivers/mfd/da903x.c
3400 F:      drivers/mfd/da90??-*.c
3401 F:      drivers/mfd/da91??-*.c
3402 F:      drivers/power/da9052-battery.c
3403 F:      drivers/power/da91??-*.c
3404 F:      drivers/regulator/da903x.c
3405 F:      drivers/regulator/da9???-regulator.[ch]
3406 F:      drivers/rtc/rtc-da90??.c
3407 F:      drivers/video/backlight/da90??_bl.c
3408 F:      drivers/watchdog/da90??_wdt.c
3409 F:      include/linux/mfd/da903x.h
3410 F:      include/linux/mfd/da9052/
3411 F:      include/linux/mfd/da9055/
3412 F:      include/linux/mfd/da9063/
3413 F:      include/linux/mfd/da9150/
3414 F:      include/sound/da[79]*.h
3415 F:      sound/soc/codecs/da[79]*.[ch]
3416
3417 DIGI NEO AND CLASSIC PCI PRODUCTS
3418 M:      Lidza Louina <lidza.louina@gmail.com>
3419 M:      Mark Hounschell <markh@compro.net>
3420 L:      driverdev-devel@linuxdriverproject.org
3421 S:      Maintained
3422 F:      drivers/staging/dgnc/
3423
3424 DIGI EPCA PCI PRODUCTS
3425 M:      Lidza Louina <lidza.louina@gmail.com>
3426 M:      Daeseok Youn <daeseok.youn@gmail.com>
3427 L:      driverdev-devel@linuxdriverproject.org
3428 S:      Maintained
3429 F:      drivers/staging/dgap/
3430
3431 DIOLAN U2C-12 I2C DRIVER
3432 M:      Guenter Roeck <linux@roeck-us.net>
3433 L:      linux-i2c@vger.kernel.org
3434 S:      Maintained
3435 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3436
3437 DIRECT ACCESS (DAX)
3438 M:      Matthew Wilcox <willy@linux.intel.com>
3439 L:      linux-fsdevel@vger.kernel.org
3440 S:      Supported
3441 F:      fs/dax.c
3442
3443 DIRECTORY NOTIFICATION (DNOTIFY)
3444 M:      Eric Paris <eparis@parisplace.org>
3445 S:      Maintained
3446 F:      Documentation/filesystems/dnotify.txt
3447 F:      fs/notify/dnotify/
3448 F:      include/linux/dnotify.h
3449
3450 DISK GEOMETRY AND PARTITION HANDLING
3451 M:      Andries Brouwer <aeb@cwi.nl>
3452 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3453 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3454 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3455 S:      Maintained
3456
3457 DISKQUOTA
3458 M:      Jan Kara <jack@suse.com>
3459 S:      Maintained
3460 F:      Documentation/filesystems/quota.txt
3461 F:      fs/quota/
3462 F:      include/linux/quota*.h
3463 F:      include/uapi/linux/quota*.h
3464
3465 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3466 M:      Bernie Thompson <bernie@plugable.com>
3467 L:      linux-fbdev@vger.kernel.org
3468 S:      Maintained
3469 W:      http://plugable.com/category/projects/udlfb/
3470 F:      drivers/video/fbdev/udlfb.c
3471 F:      include/video/udlfb.h
3472 F:      Documentation/fb/udlfb.txt
3473
3474 DISTRIBUTED LOCK MANAGER (DLM)
3475 M:      Christine Caulfield <ccaulfie@redhat.com>
3476 M:      David Teigland <teigland@redhat.com>
3477 L:      cluster-devel@redhat.com
3478 W:      http://sources.redhat.com/cluster/
3479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3480 S:      Supported
3481 F:      fs/dlm/
3482
3483 DMA BUFFER SHARING FRAMEWORK
3484 M:      Sumit Semwal <sumit.semwal@linaro.org>
3485 S:      Maintained
3486 L:      linux-media@vger.kernel.org
3487 L:      dri-devel@lists.freedesktop.org
3488 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3489 F:      drivers/dma-buf/
3490 F:      include/linux/dma-buf*
3491 F:      include/linux/reservation.h
3492 F:      include/linux/*fence.h
3493 F:      Documentation/dma-buf-sharing.txt
3494 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3495
3496 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3497 M:      Vinod Koul <vinod.koul@intel.com>
3498 L:      dmaengine@vger.kernel.org
3499 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3500 S:      Maintained
3501 F:      drivers/dma/
3502 F:      include/linux/dmaengine.h
3503 F:      Documentation/dmaengine/
3504 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3505
3506 DME1737 HARDWARE MONITOR DRIVER
3507 M:      Juerg Haefliger <juergh@gmail.com>
3508 L:      lm-sensors@lm-sensors.org
3509 S:      Maintained
3510 F:      Documentation/hwmon/dme1737
3511 F:      drivers/hwmon/dme1737.c
3512
3513 DMI/SMBIOS SUPPORT
3514 M:      Jean Delvare <jdelvare@suse.com>
3515 S:      Maintained
3516 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3517 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3518 F:      drivers/firmware/dmi-id.c
3519 F:      drivers/firmware/dmi_scan.c
3520 F:      include/linux/dmi.h
3521
3522 DOCUMENTATION
3523 M:      Jonathan Corbet <corbet@lwn.net>
3524 L:      linux-doc@vger.kernel.org
3525 S:      Maintained
3526 F:      Documentation/
3527 X:      Documentation/ABI/
3528 X:      Documentation/devicetree/
3529 X:      Documentation/acpi
3530 X:      Documentation/power
3531 X:      Documentation/spi
3532 X:      Documentation/DocBook/media
3533 T:      git git://git.lwn.net/linux-2.6.git docs-next
3534
3535 DOUBLETALK DRIVER
3536 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3537 L:      blinux-list@redhat.com
3538 S:      Maintained
3539 F:      drivers/char/dtlk.c
3540 F:      include/linux/dtlk.h
3541
3542 DPT_I2O SCSI RAID DRIVER
3543 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3544 L:      linux-scsi@vger.kernel.org
3545 W:      http://www.adaptec.com/
3546 S:      Maintained
3547 F:      drivers/scsi/dpt*
3548 F:      drivers/scsi/dpt/
3549
3550 DRBD DRIVER
3551 P:      Philipp Reisner
3552 P:      Lars Ellenberg
3553 M:      drbd-dev@lists.linbit.com
3554 L:      drbd-user@lists.linbit.com
3555 W:      http://www.drbd.org
3556 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3557 T:      git git://git.drbd.org/drbd-8.3.git
3558 S:      Supported
3559 F:      drivers/block/drbd/
3560 F:      lib/lru_cache.c
3561 F:      Documentation/blockdev/drbd/
3562
3563 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3564 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3566 S:      Supported
3567 F:      Documentation/kobject.txt
3568 F:      drivers/base/
3569 F:      fs/debugfs/
3570 F:      fs/kernfs/
3571 F:      fs/sysfs/
3572 F:      include/linux/debugfs.h
3573 F:      include/linux/kobj*
3574 F:      lib/kobj*
3575
3576 DRM DRIVERS
3577 M:      David Airlie <airlied@linux.ie>
3578 L:      dri-devel@lists.freedesktop.org
3579 T:      git git://people.freedesktop.org/~airlied/linux
3580 S:      Maintained
3581 F:      drivers/gpu/drm/
3582 F:      drivers/gpu/vga/
3583 F:      include/drm/
3584 F:      include/uapi/drm/
3585
3586 RADEON DRM DRIVERS
3587 M:      Alex Deucher <alexander.deucher@amd.com>
3588 M:      Christian König <christian.koenig@amd.com>
3589 L:      dri-devel@lists.freedesktop.org
3590 T:      git git://people.freedesktop.org/~agd5f/linux
3591 S:      Supported
3592 F:      drivers/gpu/drm/radeon/
3593 F:      include/uapi/drm/radeon*
3594
3595 DRM PANEL DRIVERS
3596 M:      Thierry Reding <thierry.reding@gmail.com>
3597 L:      dri-devel@lists.freedesktop.org
3598 T:      git git://anongit.freedesktop.org/tegra/linux.git
3599 S:      Maintained
3600 F:      drivers/gpu/drm/drm_panel.c
3601 F:      drivers/gpu/drm/panel/
3602 F:      include/drm/drm_panel.h
3603 F:      Documentation/devicetree/bindings/panel/
3604
3605 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3606 M:      Daniel Vetter <daniel.vetter@intel.com>
3607 M:      Jani Nikula <jani.nikula@linux.intel.com>
3608 L:      intel-gfx@lists.freedesktop.org
3609 L:      dri-devel@lists.freedesktop.org
3610 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3611 T:      git git://anongit.freedesktop.org/drm-intel
3612 S:      Supported
3613 F:      drivers/gpu/drm/i915/
3614 F:      include/drm/i915*
3615 F:      include/uapi/drm/i915*
3616
3617 DRM DRIVERS FOR EXYNOS
3618 M:      Inki Dae <inki.dae@samsung.com>
3619 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3620 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3621 M:      Kyungmin Park <kyungmin.park@samsung.com>
3622 L:      dri-devel@lists.freedesktop.org
3623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3624 S:      Supported
3625 F:      drivers/gpu/drm/exynos/
3626 F:      include/drm/exynos*
3627 F:      include/uapi/drm/exynos*
3628
3629 DRM DRIVERS FOR FREESCALE DCU
3630 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3631 M:      Alison Wang <alison.wang@freescale.com>
3632 L:      dri-devel@lists.freedesktop.org
3633 S:      Supported
3634 F:      drivers/gpu/drm/fsl-dcu/
3635 F:      Documentation/devicetree/bindings/video/fsl,dcu.txt
3636 F:      Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3637
3638 DRM DRIVERS FOR FREESCALE IMX
3639 M:      Philipp Zabel <p.zabel@pengutronix.de>
3640 L:      dri-devel@lists.freedesktop.org
3641 S:      Maintained
3642 F:      drivers/gpu/drm/imx/
3643 F:      Documentation/devicetree/bindings/drm/imx/
3644
3645 DRM DRIVERS FOR NVIDIA TEGRA
3646 M:      Thierry Reding <thierry.reding@gmail.com>
3647 M:      Terje Bergström <tbergstrom@nvidia.com>
3648 L:      dri-devel@lists.freedesktop.org
3649 L:      linux-tegra@vger.kernel.org
3650 T:      git git://anongit.freedesktop.org/tegra/linux.git
3651 S:      Supported
3652 F:      drivers/gpu/drm/tegra/
3653 F:      drivers/gpu/host1x/
3654 F:      include/linux/host1x.h
3655 F:      include/uapi/drm/tegra_drm.h
3656 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3657
3658 DRM DRIVERS FOR RENESAS
3659 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3660 L:      dri-devel@lists.freedesktop.org
3661 L:      linux-sh@vger.kernel.org
3662 T:      git git://people.freedesktop.org/~airlied/linux
3663 S:      Supported
3664 F:      drivers/gpu/drm/rcar-du/
3665 F:      drivers/gpu/drm/shmobile/
3666 F:      include/linux/platform_data/shmob_drm.h
3667
3668 DRM DRIVERS FOR ROCKCHIP
3669 M:      Mark Yao <mark.yao@rock-chips.com>
3670 L:      dri-devel@lists.freedesktop.org
3671 S:      Maintained
3672 F:      drivers/gpu/drm/rockchip/
3673 F:      Documentation/devicetree/bindings/video/rockchip*
3674
3675 DRM DRIVERS FOR STI
3676 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3677 M:      Vincent Abriou <vincent.abriou@st.com>
3678 L:      dri-devel@lists.freedesktop.org
3679 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3680 S:      Maintained
3681 F:      drivers/gpu/drm/sti
3682 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3683
3684 DSBR100 USB FM RADIO DRIVER
3685 M:      Alexey Klimov <klimov.linux@gmail.com>
3686 L:      linux-media@vger.kernel.org
3687 T:      git git://linuxtv.org/media_tree.git
3688 S:      Maintained
3689 F:      drivers/media/radio/dsbr100.c
3690
3691 DSCC4 DRIVER
3692 M:      Francois Romieu <romieu@fr.zoreil.com>
3693 L:      netdev@vger.kernel.org
3694 S:      Maintained
3695 F:      drivers/net/wan/dscc4.c
3696
3697 DT3155 MEDIA DRIVER
3698 M:      Hans Verkuil <hverkuil@xs4all.nl>
3699 L:      linux-media@vger.kernel.org
3700 T:      git git://linuxtv.org/media_tree.git
3701 W:      http://linuxtv.org
3702 S:      Odd Fixes
3703 F:      drivers/media/pci/dt3155/
3704
3705 DVB_USB_AF9015 MEDIA DRIVER
3706 M:      Antti Palosaari <crope@iki.fi>
3707 L:      linux-media@vger.kernel.org
3708 W:      http://linuxtv.org/
3709 W:      http://palosaari.fi/linux/
3710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3711 T:      git git://linuxtv.org/anttip/media_tree.git
3712 S:      Maintained
3713 F:      drivers/media/usb/dvb-usb-v2/af9015*
3714
3715 DVB_USB_AF9035 MEDIA DRIVER
3716 M:      Antti Palosaari <crope@iki.fi>
3717 L:      linux-media@vger.kernel.org
3718 W:      http://linuxtv.org/
3719 W:      http://palosaari.fi/linux/
3720 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3721 T:      git git://linuxtv.org/anttip/media_tree.git
3722 S:      Maintained
3723 F:      drivers/media/usb/dvb-usb-v2/af9035*
3724
3725 DVB_USB_ANYSEE MEDIA DRIVER
3726 M:      Antti Palosaari <crope@iki.fi>
3727 L:      linux-media@vger.kernel.org
3728 W:      http://linuxtv.org/
3729 W:      http://palosaari.fi/linux/
3730 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3731 T:      git git://linuxtv.org/anttip/media_tree.git
3732 S:      Maintained
3733 F:      drivers/media/usb/dvb-usb-v2/anysee*
3734
3735 DVB_USB_AU6610 MEDIA DRIVER
3736 M:      Antti Palosaari <crope@iki.fi>
3737 L:      linux-media@vger.kernel.org
3738 W:      http://linuxtv.org/
3739 W:      http://palosaari.fi/linux/
3740 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3741 T:      git git://linuxtv.org/anttip/media_tree.git
3742 S:      Maintained
3743 F:      drivers/media/usb/dvb-usb-v2/au6610*
3744
3745 DVB_USB_CE6230 MEDIA DRIVER
3746 M:      Antti Palosaari <crope@iki.fi>
3747 L:      linux-media@vger.kernel.org
3748 W:      http://linuxtv.org/
3749 W:      http://palosaari.fi/linux/
3750 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3751 T:      git git://linuxtv.org/anttip/media_tree.git
3752 S:      Maintained
3753 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3754
3755 DVB_USB_CXUSB MEDIA DRIVER
3756 M:      Michael Krufky <mkrufky@linuxtv.org>
3757 L:      linux-media@vger.kernel.org
3758 W:      http://linuxtv.org/
3759 W:      http://github.com/mkrufky
3760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3761 T:      git git://linuxtv.org/media_tree.git
3762 S:      Maintained
3763 F:      drivers/media/usb/dvb-usb/cxusb*
3764
3765 DVB_USB_EC168 MEDIA DRIVER
3766 M:      Antti Palosaari <crope@iki.fi>
3767 L:      linux-media@vger.kernel.org
3768 W:      http://linuxtv.org/
3769 W:      http://palosaari.fi/linux/
3770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3771 T:      git git://linuxtv.org/anttip/media_tree.git
3772 S:      Maintained
3773 F:      drivers/media/usb/dvb-usb-v2/ec168*
3774
3775 DVB_USB_GL861 MEDIA DRIVER
3776 M:      Antti Palosaari <crope@iki.fi>
3777 L:      linux-media@vger.kernel.org
3778 W:      http://linuxtv.org/
3779 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3780 T:      git git://linuxtv.org/anttip/media_tree.git
3781 S:      Maintained
3782 F:      drivers/media/usb/dvb-usb-v2/gl861*
3783
3784 DVB_USB_MXL111SF MEDIA DRIVER
3785 M:      Michael Krufky <mkrufky@linuxtv.org>
3786 L:      linux-media@vger.kernel.org
3787 W:      http://linuxtv.org/
3788 W:      http://github.com/mkrufky
3789 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3790 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3791 S:      Maintained
3792 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3793
3794 DVB_USB_RTL28XXU MEDIA DRIVER
3795 M:      Antti Palosaari <crope@iki.fi>
3796 L:      linux-media@vger.kernel.org
3797 W:      http://linuxtv.org/
3798 W:      http://palosaari.fi/linux/
3799 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3800 T:      git git://linuxtv.org/anttip/media_tree.git
3801 S:      Maintained
3802 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3803
3804 DVB_USB_V2 MEDIA DRIVER
3805 M:      Antti Palosaari <crope@iki.fi>
3806 L:      linux-media@vger.kernel.org
3807 W:      http://linuxtv.org/
3808 W:      http://palosaari.fi/linux/
3809 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3810 T:      git git://linuxtv.org/anttip/media_tree.git
3811 S:      Maintained
3812 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3813 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3814
3815 DYNAMIC DEBUG
3816 M:      Jason Baron <jbaron@akamai.com>
3817 S:      Maintained
3818 F:      lib/dynamic_debug.c
3819 F:      include/linux/dynamic_debug.h
3820
3821 DZ DECSTATION DZ11 SERIAL DRIVER
3822 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3823 S:      Maintained
3824 F:      drivers/tty/serial/dz.*
3825
3826 E3X0 POWER BUTTON DRIVER
3827 M:      Moritz Fischer <moritz.fischer@ettus.com>
3828 L:      usrp-users@lists.ettus.com
3829 W:      http://www.ettus.com
3830 S:      Supported
3831 F:      drivers/input/misc/e3x0-button.c
3832 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3833
3834 E4000 MEDIA DRIVER
3835 M:      Antti Palosaari <crope@iki.fi>
3836 L:      linux-media@vger.kernel.org
3837 W:      http://linuxtv.org/
3838 W:      http://palosaari.fi/linux/
3839 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3840 T:      git git://linuxtv.org/anttip/media_tree.git
3841 S:      Maintained
3842 F:      drivers/media/tuners/e4000*
3843
3844 EATA ISA/EISA/PCI SCSI DRIVER
3845 M:      Dario Ballabio <ballabio_dario@emc.com>
3846 L:      linux-scsi@vger.kernel.org
3847 S:      Maintained
3848 F:      drivers/scsi/eata.c
3849
3850 EC100 MEDIA DRIVER
3851 M:      Antti Palosaari <crope@iki.fi>
3852 L:      linux-media@vger.kernel.org
3853 W:      http://linuxtv.org/
3854 W:      http://palosaari.fi/linux/
3855 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3856 T:      git git://linuxtv.org/anttip/media_tree.git
3857 S:      Maintained
3858 F:      drivers/media/dvb-frontends/ec100*
3859
3860 ECRYPT FILE SYSTEM
3861 M:      Tyler Hicks <tyhicks@canonical.com>
3862 L:      ecryptfs@vger.kernel.org
3863 W:      http://ecryptfs.org
3864 W:      https://launchpad.net/ecryptfs
3865 S:      Supported
3866 F:      Documentation/filesystems/ecryptfs.txt
3867 F:      fs/ecryptfs/
3868
3869 EDAC-CORE
3870 M:      Doug Thompson <dougthompson@xmission.com>
3871 M:      Borislav Petkov <bp@alien8.de>
3872 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3873 L:      linux-edac@vger.kernel.org
3874 W:      bluesmoke.sourceforge.net
3875 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3876 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3877 S:      Supported
3878 F:      Documentation/edac.txt
3879 F:      drivers/edac/
3880 F:      include/linux/edac.h
3881
3882 EDAC-AMD64
3883 M:      Doug Thompson <dougthompson@xmission.com>
3884 M:      Borislav Petkov <bp@alien8.de>
3885 L:      linux-edac@vger.kernel.org
3886 W:      bluesmoke.sourceforge.net
3887 S:      Maintained
3888 F:      drivers/edac/amd64_edac*
3889
3890 EDAC-CALXEDA
3891 M:      Doug Thompson <dougthompson@xmission.com>
3892 M:      Robert Richter <rric@kernel.org>
3893 L:      linux-edac@vger.kernel.org
3894 W:      bluesmoke.sourceforge.net
3895 S:      Maintained
3896 F:      drivers/edac/highbank*
3897
3898 EDAC-CAVIUM
3899 M:      Ralf Baechle <ralf@linux-mips.org>
3900 M:      David Daney <david.daney@cavium.com>
3901 L:      linux-edac@vger.kernel.org
3902 L:      linux-mips@linux-mips.org
3903 W:      bluesmoke.sourceforge.net
3904 S:      Supported
3905 F:      drivers/edac/octeon_edac*
3906
3907 EDAC-E752X
3908 M:      Mark Gross <mark.gross@intel.com>
3909 M:      Doug Thompson <dougthompson@xmission.com>
3910 L:      linux-edac@vger.kernel.org
3911 W:      bluesmoke.sourceforge.net
3912 S:      Maintained
3913 F:      drivers/edac/e752x_edac.c
3914
3915 EDAC-E7XXX
3916 M:      Doug Thompson <dougthompson@xmission.com>
3917 L:      linux-edac@vger.kernel.org
3918 W:      bluesmoke.sourceforge.net
3919 S:      Maintained
3920 F:      drivers/edac/e7xxx_edac.c
3921
3922 EDAC-GHES
3923 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3924 L:      linux-edac@vger.kernel.org
3925 W:      bluesmoke.sourceforge.net
3926 S:      Maintained
3927 F:      drivers/edac/ghes_edac.c
3928
3929 EDAC-I82443BXGX
3930 M:      Tim Small <tim@buttersideup.com>
3931 L:      linux-edac@vger.kernel.org
3932 W:      bluesmoke.sourceforge.net
3933 S:      Maintained
3934 F:      drivers/edac/i82443bxgx_edac.c
3935
3936 EDAC-I3000
3937 M:      Jason Uhlenkott <juhlenko@akamai.com>
3938 L:      linux-edac@vger.kernel.org
3939 W:      bluesmoke.sourceforge.net
3940 S:      Maintained
3941 F:      drivers/edac/i3000_edac.c
3942
3943 EDAC-I5000
3944 M:      Doug Thompson <dougthompson@xmission.com>
3945 L:      linux-edac@vger.kernel.org
3946 W:      bluesmoke.sourceforge.net
3947 S:      Maintained
3948 F:      drivers/edac/i5000_edac.c
3949
3950 EDAC-I5400
3951 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3952 L:      linux-edac@vger.kernel.org
3953 W:      bluesmoke.sourceforge.net
3954 S:      Maintained
3955 F:      drivers/edac/i5400_edac.c
3956
3957 EDAC-I7300
3958 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3959 L:      linux-edac@vger.kernel.org
3960 W:      bluesmoke.sourceforge.net
3961 S:      Maintained
3962 F:      drivers/edac/i7300_edac.c
3963
3964 EDAC-I7CORE
3965 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3966 L:      linux-edac@vger.kernel.org
3967 W:      bluesmoke.sourceforge.net
3968 S:      Maintained
3969 F:      drivers/edac/i7core_edac.c
3970
3971 EDAC-I82975X
3972 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3973 M:      "Arvind R." <arvino55@gmail.com>
3974 L:      linux-edac@vger.kernel.org
3975 W:      bluesmoke.sourceforge.net
3976 S:      Maintained
3977 F:      drivers/edac/i82975x_edac.c
3978
3979 EDAC-IE31200
3980 M:      Jason Baron <jbaron@akamai.com>
3981 L:      linux-edac@vger.kernel.org
3982 W:      bluesmoke.sourceforge.net
3983 S:      Maintained
3984 F:      drivers/edac/ie31200_edac.c
3985
3986 EDAC-MPC85XX
3987 M:      Johannes Thumshirn <morbidrsa@gmail.com>
3988 L:      linux-edac@vger.kernel.org
3989 W:      bluesmoke.sourceforge.net
3990 S:      Maintained
3991 F:      drivers/edac/mpc85xx_edac.[ch]
3992
3993 EDAC-PASEMI
3994 M:      Egor Martovetsky <egor@pasemi.com>
3995 L:      linux-edac@vger.kernel.org
3996 W:      bluesmoke.sourceforge.net
3997 S:      Maintained
3998 F:      drivers/edac/pasemi_edac.c
3999
4000 EDAC-R82600
4001 M:      Tim Small <tim@buttersideup.com>
4002 L:      linux-edac@vger.kernel.org
4003 W:      bluesmoke.sourceforge.net
4004 S:      Maintained
4005 F:      drivers/edac/r82600_edac.c
4006
4007 EDAC-SBRIDGE
4008 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4009 L:      linux-edac@vger.kernel.org
4010 W:      bluesmoke.sourceforge.net
4011 S:      Maintained
4012 F:      drivers/edac/sb_edac.c
4013
4014 EDAC-XGENE
4015 APPLIED MICRO (APM) X-GENE SOC EDAC
4016 M:     Loc Ho <lho@apm.com>
4017 S:     Supported
4018 F:     drivers/edac/xgene_edac.c
4019 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4020
4021 EDIROL UA-101/UA-1000 DRIVER
4022 M:      Clemens Ladisch <clemens@ladisch.de>
4023 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4024 T:      git git://git.alsa-project.org/alsa-kernel.git
4025 S:      Maintained
4026 F:      sound/usb/misc/ua101.c
4027
4028 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4029 M:      Matt Fleming <matt@codeblueprint.co.uk>
4030 L:      linux-efi@vger.kernel.org
4031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4032 S:      Maintained
4033 F:      Documentation/efi-stub.txt
4034 F:      arch/ia64/kernel/efi.c
4035 F:      arch/x86/boot/compressed/eboot.[ch]
4036 F:      arch/x86/include/asm/efi.h
4037 F:      arch/x86/platform/efi/*
4038 F:      drivers/firmware/efi/*
4039 F:      include/linux/efi*.h
4040
4041 EFI VARIABLE FILESYSTEM
4042 M:      Matthew Garrett <matthew.garrett@nebula.com>
4043 M:      Jeremy Kerr <jk@ozlabs.org>
4044 M:      Matt Fleming <matt@codeblueprint.co.uk>
4045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4046 L:      linux-efi@vger.kernel.org
4047 S:      Maintained
4048 F:      fs/efivarfs/
4049
4050 EFIFB FRAMEBUFFER DRIVER
4051 L:      linux-fbdev@vger.kernel.org
4052 M:      Peter Jones <pjones@redhat.com>
4053 S:      Maintained
4054 F:      drivers/video/fbdev/efifb.c
4055
4056 EFS FILESYSTEM
4057 W:      http://aeschi.ch.eu.org/efs/
4058 S:      Orphan
4059 F:      fs/efs/
4060
4061 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4062 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4063 M:      Christoph Raisch <raisch@de.ibm.com>
4064 L:      linux-rdma@vger.kernel.org
4065 S:      Supported
4066 F:      drivers/infiniband/hw/ehca/
4067
4068 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4069 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4070 L:      netdev@vger.kernel.org
4071 S:      Maintained
4072 F:      drivers/net/ethernet/ibm/ehea/
4073
4074 EM28XX VIDEO4LINUX DRIVER
4075 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4076 L:      linux-media@vger.kernel.org
4077 W:      http://linuxtv.org
4078 T:      git git://linuxtv.org/media_tree.git
4079 S:      Maintained
4080 F:      drivers/media/usb/em28xx/
4081
4082 EMBEDDED LINUX
4083 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4084 M:      Matt Mackall <mpm@selenic.com>
4085 M:      David Woodhouse <dwmw2@infradead.org>
4086 L:      linux-embedded@vger.kernel.org
4087 S:      Maintained
4088
4089 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4090 M:      James Smart <james.smart@avagotech.com>
4091 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4092 L:      linux-scsi@vger.kernel.org
4093 W:      http://www.avagotech.com
4094 S:      Supported
4095 F:      drivers/scsi/lpfc/
4096
4097 ENE CB710 FLASH CARD READER DRIVER
4098 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4099 S:      Maintained
4100 F:      drivers/misc/cb710/
4101 F:      drivers/mmc/host/cb710-mmc.*
4102 F:      include/linux/cb710.h
4103
4104 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4105 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4106 S:      Maintained
4107 F:      drivers/media/rc/ene_ir.*
4108
4109 ENHANCED ERROR HANDLING (EEH)
4110 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4111 L:      linuxppc-dev@lists.ozlabs.org
4112 S:      Supported
4113 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4114 F:      arch/powerpc/kernel/eeh*.c
4115
4116 EPSON S1D13XXX FRAMEBUFFER DRIVER
4117 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4118 S:      Maintained
4119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4120 F:      drivers/video/fbdev/s1d13xxxfb.c
4121 F:      include/video/s1d13xxxfb.h
4122
4123 ET131X NETWORK DRIVER
4124 M:      Mark Einon <mark.einon@gmail.com>
4125 S:      Odd Fixes
4126 F:      drivers/net/ethernet/agere/
4127
4128 ETHERNET BRIDGE
4129 M:      Stephen Hemminger <stephen@networkplumber.org>
4130 L:      bridge@lists.linux-foundation.org
4131 L:      netdev@vger.kernel.org
4132 W:      http://www.linuxfoundation.org/en/Net:Bridge
4133 S:      Maintained
4134 F:      include/linux/netfilter_bridge/
4135 F:      net/bridge/
4136
4137 ETHERNET PHY LIBRARY
4138 M:      Florian Fainelli <f.fainelli@gmail.com>
4139 L:      netdev@vger.kernel.org
4140 S:      Maintained
4141 F:      include/linux/phy.h
4142 F:      include/linux/phy_fixed.h
4143 F:      drivers/net/phy/
4144 F:      Documentation/networking/phy.txt
4145 F:      drivers/of/of_mdio.c
4146 F:      drivers/of/of_net.c
4147
4148 EXT2 FILE SYSTEM
4149 M:      Jan Kara <jack@suse.com>
4150 L:      linux-ext4@vger.kernel.org
4151 S:      Maintained
4152 F:      Documentation/filesystems/ext2.txt
4153 F:      fs/ext2/
4154 F:      include/linux/ext2*
4155
4156 EXT4 FILE SYSTEM
4157 M:      "Theodore Ts'o" <tytso@mit.edu>
4158 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4159 L:      linux-ext4@vger.kernel.org
4160 W:      http://ext4.wiki.kernel.org
4161 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4162 S:      Maintained
4163 F:      Documentation/filesystems/ext4.txt
4164 F:      fs/ext4/
4165
4166 Extended Verification Module (EVM)
4167 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4168 L:      linux-ima-devel@lists.sourceforge.net
4169 L:      linux-security-module@vger.kernel.org
4170 S:      Supported
4171 F:      security/integrity/evm/
4172
4173 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4174 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4175 M:      Chanwoo Choi <cw00.choi@samsung.com>
4176 L:      linux-kernel@vger.kernel.org
4177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4178 S:      Maintained
4179 F:      drivers/extcon/
4180 F:      Documentation/extcon/
4181
4182 EXYNOS DP DRIVER
4183 M:      Jingoo Han <jingoohan1@gmail.com>
4184 L:      dri-devel@lists.freedesktop.org
4185 S:      Maintained
4186 F:      drivers/gpu/drm/exynos/exynos_dp*
4187
4188 EXYNOS MIPI DISPLAY DRIVERS
4189 M:      Inki Dae <inki.dae@samsung.com>
4190 M:      Donghwa Lee <dh09.lee@samsung.com>
4191 M:      Kyungmin Park <kyungmin.park@samsung.com>
4192 L:      linux-fbdev@vger.kernel.org
4193 S:      Maintained
4194 F:      drivers/video/fbdev/exynos/exynos_mipi*
4195 F:      include/video/exynos_mipi*
4196
4197 F71805F HARDWARE MONITORING DRIVER
4198 M:      Jean Delvare <jdelvare@suse.com>
4199 L:      lm-sensors@lm-sensors.org
4200 S:      Maintained
4201 F:      Documentation/hwmon/f71805f
4202 F:      drivers/hwmon/f71805f.c
4203
4204 FC0011 TUNER DRIVER
4205 M:      Michael Buesch <m@bues.ch>
4206 L:      linux-media@vger.kernel.org
4207 S:      Maintained
4208 F:      drivers/media/tuners/fc0011.h
4209 F:      drivers/media/tuners/fc0011.c
4210
4211 FC2580 MEDIA DRIVER
4212 M:      Antti Palosaari <crope@iki.fi>
4213 L:      linux-media@vger.kernel.org
4214 W:      http://linuxtv.org/
4215 W:      http://palosaari.fi/linux/
4216 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4217 T:      git git://linuxtv.org/anttip/media_tree.git
4218 S:      Maintained
4219 F:      drivers/media/tuners/fc2580*
4220
4221 FANOTIFY
4222 M:      Eric Paris <eparis@redhat.com>
4223 S:      Maintained
4224 F:      fs/notify/fanotify/
4225 F:      include/linux/fanotify.h
4226 F:      include/uapi/linux/fanotify.h
4227
4228 FARSYNC SYNCHRONOUS DRIVER
4229 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4230 W:      http://www.farsite.co.uk/
4231 S:      Supported
4232 F:      drivers/net/wan/farsync.*
4233
4234 FAULT INJECTION SUPPORT
4235 M:      Akinobu Mita <akinobu.mita@gmail.com>
4236 S:      Supported
4237 F:      Documentation/fault-injection/
4238 F:      lib/fault-inject.c
4239
4240 FBTFT Framebuffer drivers
4241 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4242 M:      Noralf Trønnes <noralf@tronnes.org>
4243 S:      Maintained
4244 F:      drivers/staging/fbtft/
4245
4246 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4247 M:      Vasu Dev <vasu.dev@intel.com>
4248 L:      fcoe-devel@open-fcoe.org
4249 W:      www.Open-FCoE.org
4250 S:      Supported
4251 F:      drivers/scsi/libfc/
4252 F:      drivers/scsi/fcoe/
4253 F:      include/scsi/fc/
4254 F:      include/scsi/libfc.h
4255 F:      include/scsi/libfcoe.h
4256 F:      include/uapi/scsi/fc/
4257
4258 FILE LOCKING (flock() and fcntl()/lockf())
4259 M:      Jeff Layton <jlayton@poochiereds.net>
4260 M:      "J. Bruce Fields" <bfields@fieldses.org>
4261 L:      linux-fsdevel@vger.kernel.org
4262 S:      Maintained
4263 F:      include/linux/fcntl.h
4264 F:      include/linux/fs.h
4265 F:      include/uapi/linux/fcntl.h
4266 F:      include/uapi/linux/fs.h
4267 F:      fs/fcntl.c
4268 F:      fs/locks.c
4269
4270 FILESYSTEMS (VFS and infrastructure)
4271 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4272 L:      linux-fsdevel@vger.kernel.org
4273 S:      Maintained
4274 F:      fs/*
4275
4276 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4277 M:      Riku Voipio <riku.voipio@iki.fi>
4278 L:      lm-sensors@lm-sensors.org
4279 S:      Maintained
4280 F:      drivers/hwmon/f75375s.c
4281 F:      include/linux/f75375s.h
4282
4283 FIREWIRE AUDIO DRIVERS
4284 M:      Clemens Ladisch <clemens@ladisch.de>
4285 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4286 T:      git git://git.alsa-project.org/alsa-kernel.git
4287 S:      Maintained
4288 F:      sound/firewire/
4289
4290 FIREWIRE MEDIA DRIVERS (firedtv)
4291 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4292 L:      linux-media@vger.kernel.org
4293 L:      linux1394-devel@lists.sourceforge.net
4294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4295 S:      Maintained
4296 F:      drivers/media/firewire/
4297
4298 FIREWIRE SBP-2 TARGET
4299 M:      Chris Boot <bootc@bootc.net>
4300 L:      linux-scsi@vger.kernel.org
4301 L:      target-devel@vger.kernel.org
4302 L:      linux1394-devel@lists.sourceforge.net
4303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4304 S:      Maintained
4305 F:      drivers/target/sbp/
4306
4307 FIREWIRE SUBSYSTEM
4308 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4309 L:      linux1394-devel@lists.sourceforge.net
4310 W:      http://ieee1394.wiki.kernel.org/
4311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4312 S:      Maintained
4313 F:      drivers/firewire/
4314 F:      include/linux/firewire.h
4315 F:      include/uapi/linux/firewire*.h
4316 F:      tools/firewire/
4317
4318 FIRMWARE LOADER (request_firmware)
4319 M:      Ming Lei <ming.lei@canonical.com>
4320 L:      linux-kernel@vger.kernel.org
4321 S:      Maintained
4322 F:      Documentation/firmware_class/
4323 F:      drivers/base/firmware*.c
4324 F:      include/linux/firmware.h
4325
4326 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4327 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4328 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4329 S:      Maintained
4330 F:      drivers/block/rsxx/
4331
4332 FLOPPY DRIVER
4333 M:      Jiri Kosina <jikos@kernel.org>
4334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4335 S:      Odd fixes
4336 F:      drivers/block/floppy.c
4337
4338 FMC SUBSYSTEM
4339 M:      Alessandro Rubini <rubini@gnudd.com>
4340 W:      http://www.ohwr.org/projects/fmc-bus
4341 S:      Supported
4342 F:      drivers/fmc/
4343 F:      include/linux/fmc*.h
4344 F:      include/linux/ipmi-fru.h
4345 K:      fmc_d.*register
4346
4347 FPU EMULATOR
4348 M:      Bill Metzenthen <billm@melbpc.org.au>
4349 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4350 S:      Maintained
4351 F:      arch/x86/math-emu/
4352
4353 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4354 L:      netdev@vger.kernel.org
4355 S:      Orphan
4356 F:      drivers/net/wan/dlci.c
4357 F:      drivers/net/wan/sdla.c
4358
4359 FRAMEBUFFER LAYER
4360 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4361 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4362 L:      linux-fbdev@vger.kernel.org
4363 W:      http://linux-fbdev.sourceforge.net/
4364 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4366 S:      Maintained
4367 F:      Documentation/fb/
4368 F:      Documentation/devicetree/bindings/fb/
4369 F:      drivers/video/
4370 F:      include/video/
4371 F:      include/linux/fb.h
4372 F:      include/uapi/video/
4373 F:      include/uapi/linux/fb.h
4374
4375 FREESCALE DIU FRAMEBUFFER DRIVER
4376 M:      Timur Tabi <timur@tabi.org>
4377 L:      linux-fbdev@vger.kernel.org
4378 S:      Maintained
4379 F:      drivers/video/fbdev/fsl-diu-fb.*
4380
4381 FREESCALE DMA DRIVER
4382 M:      Li Yang <leoli@freescale.com>
4383 M:      Zhang Wei <zw@zh-kernel.org>
4384 L:      linuxppc-dev@lists.ozlabs.org
4385 S:      Maintained
4386 F:      drivers/dma/fsldma.*
4387
4388 FREESCALE I2C CPM DRIVER
4389 M:      Jochen Friedrich <jochen@scram.de>
4390 L:      linuxppc-dev@lists.ozlabs.org
4391 L:      linux-i2c@vger.kernel.org
4392 S:      Maintained
4393 F:      drivers/i2c/busses/i2c-cpm.c
4394
4395 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4396 M:      Sascha Hauer <kernel@pengutronix.de>
4397 L:      linux-fbdev@vger.kernel.org
4398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4399 S:      Maintained
4400 F:      include/linux/platform_data/video-imxfb.h
4401 F:      drivers/video/fbdev/imxfb.c
4402
4403 FREESCALE QUAD SPI DRIVER
4404 M:      Han Xu <han.xu@freescale.com>
4405 L:      linux-mtd@lists.infradead.org
4406 S:      Maintained
4407 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4408
4409 FREESCALE SOC FS_ENET DRIVER
4410 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4411 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4412 L:      linuxppc-dev@lists.ozlabs.org
4413 L:      netdev@vger.kernel.org
4414 S:      Maintained
4415 F:      drivers/net/ethernet/freescale/fs_enet/
4416 F:      include/linux/fs_enet_pd.h
4417
4418 FREESCALE QUICC ENGINE LIBRARY
4419 L:      linuxppc-dev@lists.ozlabs.org
4420 S:      Orphan
4421 F:      arch/powerpc/sysdev/qe_lib/
4422 F:      arch/powerpc/include/asm/*qe.h
4423
4424 FREESCALE USB PERIPHERAL DRIVERS
4425 M:      Li Yang <leoli@freescale.com>
4426 L:      linux-usb@vger.kernel.org
4427 L:      linuxppc-dev@lists.ozlabs.org
4428 S:      Maintained
4429 F:      drivers/usb/gadget/udc/fsl*
4430
4431 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4432 M:      Li Yang <leoli@freescale.com>
4433 L:      netdev@vger.kernel.org
4434 L:      linuxppc-dev@lists.ozlabs.org
4435 S:      Maintained
4436 F:      drivers/net/ethernet/freescale/ucc_geth*
4437
4438 FREESCALE QUICC ENGINE UCC UART DRIVER
4439 M:      Timur Tabi <timur@tabi.org>
4440 L:      linuxppc-dev@lists.ozlabs.org
4441 S:      Maintained
4442 F:      drivers/tty/serial/ucc_uart.c
4443
4444 FREESCALE SOC SOUND DRIVERS
4445 M:      Timur Tabi <timur@tabi.org>
4446 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4447 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4448 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4449 L:      linuxppc-dev@lists.ozlabs.org
4450 S:      Maintained
4451 F:      sound/soc/fsl/fsl*
4452 F:      sound/soc/fsl/imx*
4453 F:      sound/soc/fsl/mpc8610_hpcd.c
4454
4455 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4456 M:      "J. German Rivera" <German.Rivera@freescale.com>
4457 L:      linux-kernel@vger.kernel.org
4458 S:      Maintained
4459 F:      drivers/staging/fsl-mc/
4460
4461 FREEVXFS FILESYSTEM
4462 M:      Christoph Hellwig <hch@infradead.org>
4463 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4464 S:      Maintained
4465 F:      fs/freevxfs/
4466
4467 FREEZER
4468 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4469 M:      Pavel Machek <pavel@ucw.cz>
4470 L:      linux-pm@vger.kernel.org
4471 S:      Supported
4472 F:      Documentation/power/freezing-of-tasks.txt
4473 F:      include/linux/freezer.h
4474 F:      kernel/freezer.c
4475
4476 FRONTSWAP API
4477 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4478 L:      linux-kernel@vger.kernel.org
4479 S:      Maintained
4480 F:      mm/frontswap.c
4481 F:      include/linux/frontswap.h
4482
4483 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4484 M:      David Howells <dhowells@redhat.com>
4485 L:      linux-cachefs@redhat.com
4486 S:      Supported
4487 F:      Documentation/filesystems/caching/
4488 F:      fs/fscache/
4489 F:      include/linux/fscache*.h
4490
4491 F2FS FILE SYSTEM
4492 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4493 M:      Changman Lee <cm224.lee@samsung.com>
4494 R:      Chao Yu <chao2.yu@samsung.com>
4495 L:      linux-f2fs-devel@lists.sourceforge.net
4496 W:      http://en.wikipedia.org/wiki/F2FS
4497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4498 S:      Maintained
4499 F:      Documentation/filesystems/f2fs.txt
4500 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4501 F:      fs/f2fs/
4502 F:      include/linux/f2fs_fs.h
4503 F:      include/trace/events/f2fs.h
4504
4505 FUJITSU FR-V (FRV) PORT
4506 M:      David Howells <dhowells@redhat.com>
4507 S:      Maintained
4508 F:      arch/frv/
4509
4510 FUJITSU LAPTOP EXTRAS
4511 M:      Jonathan Woithe <jwoithe@just42.net>
4512 L:      platform-driver-x86@vger.kernel.org
4513 S:      Maintained
4514 F:      drivers/platform/x86/fujitsu-laptop.c
4515
4516 FUJITSU M-5MO LS CAMERA ISP DRIVER
4517 M:      Kyungmin Park <kyungmin.park@samsung.com>
4518 M:      Heungjun Kim <riverful.kim@samsung.com>
4519 L:      linux-media@vger.kernel.org
4520 S:      Maintained
4521 F:      drivers/media/i2c/m5mols/
4522 F:      include/media/m5mols.h
4523
4524 FUJITSU TABLET EXTRAS
4525 M:      Robert Gerlach <khnz@gmx.de>
4526 L:      platform-driver-x86@vger.kernel.org
4527 S:      Maintained
4528 F:      drivers/platform/x86/fujitsu-tablet.c
4529
4530 FUSE: FILESYSTEM IN USERSPACE
4531 M:      Miklos Szeredi <miklos@szeredi.hu>
4532 L:      fuse-devel@lists.sourceforge.net
4533 W:      http://fuse.sourceforge.net/
4534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4535 S:      Maintained
4536 F:      fs/fuse/
4537 F:      include/uapi/linux/fuse.h
4538 F:      Documentation/filesystems/fuse.txt
4539
4540 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4541 M:      Rik Faith <faith@cs.unc.edu>
4542 L:      linux-scsi@vger.kernel.org
4543 S:      Odd Fixes (e.g., new signatures)
4544 F:      drivers/scsi/fdomain.*
4545
4546 GCOV BASED KERNEL PROFILING
4547 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4548 S:      Maintained
4549 F:      kernel/gcov/
4550 F:      Documentation/gcov.txt
4551
4552 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4553 M:      Achim Leubner <achim_leubner@adaptec.com>
4554 L:      linux-scsi@vger.kernel.org
4555 W:      http://www.icp-vortex.com/
4556 S:      Supported
4557 F:      drivers/scsi/gdt*
4558
4559 GDB KERNEL DEBUGGING HELPER SCRIPTS
4560 M:      Jan Kiszka <jan.kiszka@siemens.com>
4561 S:      Supported
4562 F:      scripts/gdb/
4563
4564 GEMTEK FM RADIO RECEIVER DRIVER
4565 M:      Hans Verkuil <hverkuil@xs4all.nl>
4566 L:      linux-media@vger.kernel.org
4567 T:      git git://linuxtv.org/media_tree.git
4568 W:      http://linuxtv.org
4569 S:      Maintained
4570 F:      drivers/media/radio/radio-gemtek*
4571
4572 GENERIC GPIO I2C DRIVER
4573 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4574 S:      Supported
4575 F:      drivers/i2c/busses/i2c-gpio.c
4576 F:      include/linux/i2c-gpio.h
4577
4578 GENERIC GPIO I2C MULTIPLEXER DRIVER
4579 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4580 L:      linux-i2c@vger.kernel.org
4581 S:      Supported
4582 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4583 F:      include/linux/i2c-mux-gpio.h
4584 F:      Documentation/i2c/muxes/i2c-mux-gpio
4585
4586 GENERIC HDLC (WAN) DRIVERS
4587 M:      Krzysztof Halasa <khc@pm.waw.pl>
4588 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4589 S:      Maintained
4590 F:      drivers/net/wan/c101.c
4591 F:      drivers/net/wan/hd6457*
4592 F:      drivers/net/wan/hdlc*
4593 F:      drivers/net/wan/n2.c
4594 F:      drivers/net/wan/pc300too.c
4595 F:      drivers/net/wan/pci200syn.c
4596 F:      drivers/net/wan/wanxl*
4597
4598 GENERIC INCLUDE/ASM HEADER FILES
4599 M:      Arnd Bergmann <arnd@arndb.de>
4600 L:      linux-arch@vger.kernel.org
4601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4602 S:      Maintained
4603 F:      include/asm-generic/
4604 F:      include/uapi/asm-generic/
4605
4606 GENERIC PHY FRAMEWORK
4607 M:      Kishon Vijay Abraham I <kishon@ti.com>
4608 L:      linux-kernel@vger.kernel.org
4609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4610 S:      Supported
4611 F:      drivers/phy/
4612 F:      include/linux/phy/
4613
4614 GENERIC PM DOMAINS
4615 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4616 M:      Kevin Hilman <khilman@kernel.org>
4617 M:      Ulf Hansson <ulf.hansson@linaro.org>
4618 L:      linux-pm@vger.kernel.org
4619 S:      Supported
4620 F:      drivers/base/power/domain*.c
4621 F:      include/linux/pm_domain.h
4622
4623 GENERIC UIO DRIVER FOR PCI DEVICES
4624 M:      "Michael S. Tsirkin" <mst@redhat.com>
4625 L:      kvm@vger.kernel.org
4626 S:      Supported
4627 F:      drivers/uio/uio_pci_generic.c
4628
4629 GET_MAINTAINER SCRIPT
4630 M:      Joe Perches <joe@perches.com>
4631 S:      Maintained
4632 F:      scripts/get_maintainer.pl
4633
4634 GFS2 FILE SYSTEM
4635 M:      Steven Whitehouse <swhiteho@redhat.com>
4636 M:      Bob Peterson <rpeterso@redhat.com>
4637 L:      cluster-devel@redhat.com
4638 W:      http://sources.redhat.com/cluster/
4639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4640 S:      Supported
4641 F:      Documentation/filesystems/gfs2*.txt
4642 F:      fs/gfs2/
4643 F:      include/uapi/linux/gfs2_ondisk.h
4644
4645 GIGASET ISDN DRIVERS
4646 M:      Paul Bolle <pebolle@tiscali.nl>
4647 L:      gigaset307x-common@lists.sourceforge.net
4648 W:      http://gigaset307x.sourceforge.net/
4649 S:      Odd Fixes
4650 F:      Documentation/isdn/README.gigaset
4651 F:      drivers/isdn/gigaset/
4652 F:      include/uapi/linux/gigaset_dev.h
4653
4654 GO7007 MPEG CODEC
4655 M:      Hans Verkuil <hans.verkuil@cisco.com>
4656 L:      linux-media@vger.kernel.org
4657 S:      Maintained
4658 F:      drivers/media/usb/go7007/
4659
4660 GOODIX TOUCHSCREEN
4661 M:      Bastien Nocera <hadess@hadess.net>
4662 L:      linux-input@vger.kernel.org
4663 S:      Maintained
4664 F:      drivers/input/touchscreen/goodix.c
4665
4666 GPIO SUBSYSTEM
4667 M:      Linus Walleij <linus.walleij@linaro.org>
4668 M:      Alexandre Courbot <gnurou@gmail.com>
4669 L:      linux-gpio@vger.kernel.org
4670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4671 S:      Maintained
4672 F:      Documentation/gpio/
4673 F:      drivers/gpio/
4674 F:      include/linux/gpio/
4675 F:      include/linux/gpio.h
4676 F:      include/asm-generic/gpio.h
4677
4678 GRE DEMULTIPLEXER DRIVER
4679 M:      Dmitry Kozlov <xeb@mail.ru>
4680 L:      netdev@vger.kernel.org
4681 S:      Maintained
4682 F:      net/ipv4/gre_demux.c
4683 F:      net/ipv4/gre_offload.c
4684 F:      include/net/gre.h
4685
4686 GRETH 10/100/1G Ethernet MAC device driver
4687 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4688 L:      netdev@vger.kernel.org
4689 S:      Maintained
4690 F:      drivers/net/ethernet/aeroflex/
4691
4692 GSPCA FINEPIX SUBDRIVER
4693 M:      Frank Zago <frank@zago.net>
4694 L:      linux-media@vger.kernel.org
4695 T:      git git://linuxtv.org/media_tree.git
4696 S:      Maintained
4697 F:      drivers/media/usb/gspca/finepix.c
4698
4699 GSPCA GL860 SUBDRIVER
4700 M:      Olivier Lorin <o.lorin@laposte.net>
4701 L:      linux-media@vger.kernel.org
4702 T:      git git://linuxtv.org/media_tree.git
4703 S:      Maintained
4704 F:      drivers/media/usb/gspca/gl860/
4705
4706 GSPCA M5602 SUBDRIVER
4707 M:      Erik Andren <erik.andren@gmail.com>
4708 L:      linux-media@vger.kernel.org
4709 T:      git git://linuxtv.org/media_tree.git
4710 S:      Maintained
4711 F:      drivers/media/usb/gspca/m5602/
4712
4713 GSPCA PAC207 SONIXB SUBDRIVER
4714 M:      Hans de Goede <hdegoede@redhat.com>
4715 L:      linux-media@vger.kernel.org
4716 T:      git git://linuxtv.org/media_tree.git
4717 S:      Maintained
4718 F:      drivers/media/usb/gspca/pac207.c
4719
4720 GSPCA SN9C20X SUBDRIVER
4721 M:      Brian Johnson <brijohn@gmail.com>
4722 L:      linux-media@vger.kernel.org
4723 T:      git git://linuxtv.org/media_tree.git
4724 S:      Maintained
4725 F:      drivers/media/usb/gspca/sn9c20x.c
4726
4727 GSPCA T613 SUBDRIVER
4728 M:      Leandro Costantino <lcostantino@gmail.com>
4729 L:      linux-media@vger.kernel.org
4730 T:      git git://linuxtv.org/media_tree.git
4731 S:      Maintained
4732 F:      drivers/media/usb/gspca/t613.c
4733
4734 GSPCA USB WEBCAM DRIVER
4735 M:      Hans de Goede <hdegoede@redhat.com>
4736 L:      linux-media@vger.kernel.org
4737 T:      git git://linuxtv.org/media_tree.git
4738 S:      Maintained
4739 F:      drivers/media/usb/gspca/
4740
4741 GUID PARTITION TABLE (GPT)
4742 M:      Davidlohr Bueso <dave@stgolabs.net>
4743 L:      linux-efi@vger.kernel.org
4744 S:      Maintained
4745 F:      block/partitions/efi.*
4746
4747 STK1160 USB VIDEO CAPTURE DRIVER
4748 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4749 L:      linux-media@vger.kernel.org
4750 T:      git git://linuxtv.org/media_tree.git
4751 S:      Maintained
4752 F:      drivers/media/usb/stk1160/
4753
4754 H8/300 ARCHITECTURE
4755 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4756 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4757 W:      http://uclinux-h8.sourceforge.jp
4758 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4759 S:      Maintained
4760 F:      arch/h8300/
4761 F:      drivers/clocksource/h8300_*.c
4762 F:      drivers/clk/h8300/
4763 F:      drivers/irqchip/irq-renesas-h8*.c
4764
4765 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4766 M:      Frank Seidel <frank@f-seidel.de>
4767 L:      platform-driver-x86@vger.kernel.org
4768 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4769 S:      Maintained
4770 F:      drivers/platform/x86/hdaps.c
4771
4772 HDPVR USB VIDEO ENCODER DRIVER
4773 M:      Hans Verkuil <hverkuil@xs4all.nl>
4774 L:      linux-media@vger.kernel.org
4775 T:      git git://linuxtv.org/media_tree.git
4776 W:      http://linuxtv.org
4777 S:      Odd Fixes
4778 F:      drivers/media/usb/hdpvr/
4779
4780 HWPOISON MEMORY FAILURE HANDLING
4781 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4782 L:      linux-mm@kvack.org
4783 S:      Maintained
4784 F:      mm/memory-failure.c
4785 F:      mm/hwpoison-inject.c
4786
4787 HYPERVISOR VIRTUAL CONSOLE DRIVER
4788 L:      linuxppc-dev@lists.ozlabs.org
4789 S:      Odd Fixes
4790 F:      drivers/tty/hvc/
4791
4792 HACKRF MEDIA DRIVER
4793 M:      Antti Palosaari <crope@iki.fi>
4794 L:      linux-media@vger.kernel.org
4795 W:      http://linuxtv.org/
4796 W:      http://palosaari.fi/linux/
4797 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4798 T:      git git://linuxtv.org/anttip/media_tree.git
4799 S:      Maintained
4800 F:      drivers/media/usb/hackrf/
4801
4802 HARDWARE MONITORING
4803 M:      Jean Delvare <jdelvare@suse.com>
4804 M:      Guenter Roeck <linux@roeck-us.net>
4805 L:      lm-sensors@lm-sensors.org
4806 W:      http://www.lm-sensors.org/
4807 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4809 S:      Maintained
4810 F:      Documentation/hwmon/
4811 F:      drivers/hwmon/
4812 F:      include/linux/hwmon*.h
4813
4814 HARDWARE RANDOM NUMBER GENERATOR CORE
4815 M:      Matt Mackall <mpm@selenic.com>
4816 M:      Herbert Xu <herbert@gondor.apana.org.au>
4817 L:      linux-crypto@vger.kernel.org
4818 S:      Odd fixes
4819 F:      Documentation/hw_random.txt
4820 F:      drivers/char/hw_random/
4821 F:      include/linux/hw_random.h
4822
4823 HARDWARE SPINLOCK CORE
4824 M:      Ohad Ben-Cohen <ohad@wizery.com>
4825 S:      Maintained
4826 F:      Documentation/hwspinlock.txt
4827 F:      drivers/hwspinlock/hwspinlock_*
4828 F:      include/linux/hwspinlock.h
4829
4830 HARMONY SOUND DRIVER
4831 L:      linux-parisc@vger.kernel.org
4832 S:      Maintained
4833 F:      sound/parisc/harmony.*
4834
4835 HD29L2 MEDIA DRIVER
4836 M:      Antti Palosaari <crope@iki.fi>
4837 L:      linux-media@vger.kernel.org
4838 W:      http://linuxtv.org/
4839 W:      http://palosaari.fi/linux/
4840 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4841 T:      git git://linuxtv.org/anttip/media_tree.git
4842 S:      Maintained
4843 F:      drivers/media/dvb-frontends/hd29l2*
4844
4845 HEWLETT-PACKARD SMART2 RAID DRIVER
4846 L:      iss_storagedev@hp.com
4847 S:      Orphan
4848 F:      Documentation/blockdev/cpqarray.txt
4849 F:      drivers/block/cpqarray.*
4850
4851 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4852 M:      Don Brace <don.brace@pmcs.com>
4853 L:      iss_storagedev@hp.com
4854 L:      storagedev@pmcs.com
4855 L:      linux-scsi@vger.kernel.org
4856 S:      Supported
4857 F:      Documentation/scsi/hpsa.txt
4858 F:      drivers/scsi/hpsa*.[ch]
4859 F:      include/linux/cciss*.h
4860 F:      include/uapi/linux/cciss*.h
4861
4862 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4863 M:      Don Brace <don.brace@pmcs.com>
4864 L:      iss_storagedev@hp.com
4865 L:      storagedev@pmcs.com
4866 L:      linux-scsi@vger.kernel.org
4867 S:      Supported
4868 F:      Documentation/blockdev/cciss.txt
4869 F:      drivers/block/cciss*
4870 F:      include/linux/cciss_ioctl.h
4871 F:      include/uapi/linux/cciss_ioctl.h
4872
4873 HFS FILESYSTEM
4874 L:      linux-fsdevel@vger.kernel.org
4875 S:      Orphan
4876 F:      Documentation/filesystems/hfs.txt
4877 F:      fs/hfs/
4878
4879 HFSPLUS FILESYSTEM
4880 L:      linux-fsdevel@vger.kernel.org
4881 S:      Orphan
4882 F:      Documentation/filesystems/hfsplus.txt
4883 F:      fs/hfsplus/
4884
4885 HGA FRAMEBUFFER DRIVER
4886 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4887 L:      linux-nvidia@lists.surfsouth.com
4888 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4889 S:      Maintained
4890 F:      drivers/video/fbdev/hgafb.c
4891
4892 HIBERNATION (aka Software Suspend, aka swsusp)
4893 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4894 M:      Pavel Machek <pavel@ucw.cz>
4895 L:      linux-pm@vger.kernel.org
4896 S:      Supported
4897 F:      arch/x86/power/
4898 F:      drivers/base/power/
4899 F:      kernel/power/
4900 F:      include/linux/suspend.h
4901 F:      include/linux/freezer.h
4902 F:      include/linux/pm.h
4903 F:      arch/*/include/asm/suspend*.h
4904
4905 HID CORE LAYER
4906 M:      Jiri Kosina <jikos@kernel.org>
4907 L:      linux-input@vger.kernel.org
4908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4909 S:      Maintained
4910 F:      drivers/hid/
4911 F:      include/linux/hid*
4912 F:      include/uapi/linux/hid*
4913
4914 HID SENSOR HUB DRIVERS
4915 M:      Jiri Kosina <jikos@kernel.org>
4916 M:      Jonathan Cameron <jic23@kernel.org>
4917 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4918 L:      linux-input@vger.kernel.org
4919 L:      linux-iio@vger.kernel.org
4920 S:      Maintained
4921 F:      Documentation/hid/hid-sensor*
4922 F:      drivers/hid/hid-sensor-*
4923 F:      drivers/iio/*/hid-*
4924 F:      include/linux/hid-sensor-*
4925
4926 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4927 M:      Thomas Gleixner <tglx@linutronix.de>
4928 L:      linux-kernel@vger.kernel.org
4929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4930 S:      Maintained
4931 F:      Documentation/timers/
4932 F:      kernel/time/hrtimer.c
4933 F:      kernel/time/clockevents.c
4934 F:      kernel/time/tick*.*
4935 F:      kernel/time/timer_*.c
4936 F:      include/linux/clockchips.h
4937 F:      include/linux/hrtimer.h
4938
4939 HIGH-SPEED SCC DRIVER FOR AX.25
4940 L:      linux-hams@vger.kernel.org
4941 S:      Orphan
4942 F:      drivers/net/hamradio/dmascc.c
4943 F:      drivers/net/hamradio/scc.c
4944
4945 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4946 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4947 W:      http://www.highpoint-tech.com
4948 S:      Supported
4949 F:      Documentation/scsi/hptiop.txt
4950 F:      drivers/scsi/hptiop.c
4951
4952 HIPPI
4953 M:      Jes Sorensen <jes@trained-monkey.org>
4954 L:      linux-hippi@sunsite.dk
4955 S:      Maintained
4956 F:      include/linux/hippidevice.h
4957 F:      include/uapi/linux/if_hippi.h
4958 F:      net/802/hippi.c
4959 F:      drivers/net/hippi/
4960
4961 HOST AP DRIVER
4962 M:      Jouni Malinen <j@w1.fi>
4963 L:      hostap@shmoo.com (subscribers-only)
4964 L:      linux-wireless@vger.kernel.org
4965 W:      http://hostap.epitest.fi/
4966 S:      Maintained
4967 F:      drivers/net/wireless/hostap/
4968
4969 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4970 L:      platform-driver-x86@vger.kernel.org
4971 S:      Orphan
4972 F:      drivers/platform/x86/tc1100-wmi.c
4973
4974 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4975 M:      Jaroslav Kysela <perex@perex.cz>
4976 S:      Maintained
4977 F:      drivers/net/ethernet/hp/hp100.*
4978
4979 HPET:   High Precision Event Timers driver
4980 M:      Clemens Ladisch <clemens@ladisch.de>
4981 S:      Maintained
4982 F:      Documentation/timers/hpet.txt
4983 F:      drivers/char/hpet.c
4984 F:      include/linux/hpet.h
4985 F:      include/uapi/linux/hpet.h
4986
4987 HPET:   x86
4988 S:      Orphan
4989 F:      arch/x86/kernel/hpet.c
4990 F:      arch/x86/include/asm/hpet.h
4991
4992 HPFS FILESYSTEM
4993 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4994 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4995 S:      Maintained
4996 F:      fs/hpfs/
4997
4998 HSI SUBSYSTEM
4999 M:      Sebastian Reichel <sre@kernel.org>
5000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5001 S:      Maintained
5002 F:      Documentation/ABI/testing/sysfs-bus-hsi
5003 F:      Documentation/hsi.txt
5004 F:      drivers/hsi/
5005 F:      include/linux/hsi/
5006 F:      include/uapi/linux/hsi/
5007
5008 HSO 3G MODEM DRIVER
5009 M:      Jan Dumon <j.dumon@option.com>
5010 W:      http://www.pharscape.org
5011 S:      Maintained
5012 F:      drivers/net/usb/hso.c
5013
5014 HSR NETWORK PROTOCOL
5015 M:      Arvid Brodin <arvid.brodin@alten.se>
5016 L:      netdev@vger.kernel.org
5017 S:      Maintained
5018 F:      net/hsr/
5019
5020 HTCPEN TOUCHSCREEN DRIVER
5021 M:      Pau Oliva Fora <pof@eslack.org>
5022 L:      linux-input@vger.kernel.org
5023 S:      Maintained
5024 F:      drivers/input/touchscreen/htcpen.c
5025
5026 HUGETLB FILESYSTEM
5027 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5028 S:      Maintained
5029 F:      fs/hugetlbfs/
5030
5031 Hyper-V CORE AND DRIVERS
5032 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5033 M:      Haiyang Zhang <haiyangz@microsoft.com>
5034 L:      devel@linuxdriverproject.org
5035 S:      Maintained
5036 F:      arch/x86/include/asm/mshyperv.h
5037 F:      arch/x86/include/uapi/asm/hyperv.h
5038 F:      arch/x86/kernel/cpu/mshyperv.c
5039 F:      drivers/hid/hid-hyperv.c
5040 F:      drivers/hv/
5041 F:      drivers/input/serio/hyperv-keyboard.c
5042 F:      drivers/net/hyperv/
5043 F:      drivers/scsi/storvsc_drv.c
5044 F:      drivers/video/fbdev/hyperv_fb.c
5045 F:      include/linux/hyperv.h
5046 F:      tools/hv/
5047 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5048
5049 I2C OVER PARALLEL PORT
5050 M:      Jean Delvare <jdelvare@suse.com>
5051 L:      linux-i2c@vger.kernel.org
5052 S:      Maintained
5053 F:      Documentation/i2c/busses/i2c-parport
5054 F:      Documentation/i2c/busses/i2c-parport-light
5055 F:      drivers/i2c/busses/i2c-parport.c
5056 F:      drivers/i2c/busses/i2c-parport-light.c
5057
5058 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5059 M:      Jean Delvare <jdelvare@suse.com>
5060 L:      linux-i2c@vger.kernel.org
5061 S:      Maintained
5062 F:      Documentation/i2c/busses/i2c-ali1535
5063 F:      Documentation/i2c/busses/i2c-ali1563
5064 F:      Documentation/i2c/busses/i2c-ali15x3
5065 F:      Documentation/i2c/busses/i2c-amd756
5066 F:      Documentation/i2c/busses/i2c-amd8111
5067 F:      Documentation/i2c/busses/i2c-i801
5068 F:      Documentation/i2c/busses/i2c-nforce2
5069 F:      Documentation/i2c/busses/i2c-piix4
5070 F:      Documentation/i2c/busses/i2c-sis5595
5071 F:      Documentation/i2c/busses/i2c-sis630
5072 F:      Documentation/i2c/busses/i2c-sis96x
5073 F:      Documentation/i2c/busses/i2c-via
5074 F:      Documentation/i2c/busses/i2c-viapro
5075 F:      drivers/i2c/busses/i2c-ali1535.c
5076 F:      drivers/i2c/busses/i2c-ali1563.c
5077 F:      drivers/i2c/busses/i2c-ali15x3.c
5078 F:      drivers/i2c/busses/i2c-amd756.c
5079 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5080 F:      drivers/i2c/busses/i2c-amd8111.c
5081 F:      drivers/i2c/busses/i2c-i801.c
5082 F:      drivers/i2c/busses/i2c-isch.c
5083 F:      drivers/i2c/busses/i2c-nforce2.c
5084 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5085 F:      drivers/i2c/busses/i2c-piix4.c
5086 F:      drivers/i2c/busses/i2c-sis5595.c
5087 F:      drivers/i2c/busses/i2c-sis630.c
5088 F:      drivers/i2c/busses/i2c-sis96x.c
5089 F:      drivers/i2c/busses/i2c-via.c
5090 F:      drivers/i2c/busses/i2c-viapro.c
5091
5092 I2C/SMBUS ISMT DRIVER
5093 M:      Seth Heasley <seth.heasley@intel.com>
5094 M:      Neil Horman <nhorman@tuxdriver.com>
5095 L:      linux-i2c@vger.kernel.org
5096 F:      drivers/i2c/busses/i2c-ismt.c
5097 F:      Documentation/i2c/busses/i2c-ismt
5098
5099 I2C/SMBUS STUB DRIVER
5100 M:      Jean Delvare <jdelvare@suse.com>
5101 L:      linux-i2c@vger.kernel.org
5102 S:      Maintained
5103 F:      drivers/i2c/i2c-stub.c
5104
5105 I2C SUBSYSTEM
5106 M:      Wolfram Sang <wsa@the-dreams.de>
5107 L:      linux-i2c@vger.kernel.org
5108 W:      https://i2c.wiki.kernel.org/
5109 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5111 S:      Maintained
5112 F:      Documentation/devicetree/bindings/i2c/
5113 F:      Documentation/i2c/
5114 F:      drivers/i2c/
5115 F:      include/linux/i2c.h
5116 F:      include/linux/i2c-*.h
5117 F:      include/uapi/linux/i2c.h
5118 F:      include/uapi/linux/i2c-*.h
5119
5120 I2C ACPI SUPPORT
5121 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5122 L:      linux-i2c@vger.kernel.org
5123 L:      linux-acpi@vger.kernel.org
5124 S:      Maintained
5125
5126 I2C-TAOS-EVM DRIVER
5127 M:      Jean Delvare <jdelvare@suse.com>
5128 L:      linux-i2c@vger.kernel.org
5129 S:      Maintained
5130 F:      Documentation/i2c/busses/i2c-taos-evm
5131 F:      drivers/i2c/busses/i2c-taos-evm.c
5132
5133 I2C-TINY-USB DRIVER
5134 M:      Till Harbaum <till@harbaum.org>
5135 L:      linux-i2c@vger.kernel.org
5136 W:      http://www.harbaum.org/till/i2c_tiny_usb
5137 S:      Maintained
5138 F:      drivers/i2c/busses/i2c-tiny-usb.c
5139
5140 i386 BOOT CODE
5141 M:      "H. Peter Anvin" <hpa@zytor.com>
5142 S:      Maintained
5143 F:      arch/x86/boot/
5144
5145 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5146 M:      "H. Peter Anvin" <hpa@zytor.com>
5147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5148 S:      Maintained
5149
5150 IA64 (Itanium) PLATFORM
5151 M:      Tony Luck <tony.luck@intel.com>
5152 M:      Fenghua Yu <fenghua.yu@intel.com>
5153 L:      linux-ia64@vger.kernel.org
5154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5155 S:      Maintained
5156 F:      arch/ia64/
5157
5158 IBM Power VMX Cryptographic instructions
5159 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5160 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5161 L:      linux-crypto@vger.kernel.org
5162 S:      Supported
5163 F:      drivers/crypto/vmx/Makefile
5164 F:      drivers/crypto/vmx/Kconfig
5165 F:      drivers/crypto/vmx/vmx.c
5166 F:      drivers/crypto/vmx/aes*
5167 F:      drivers/crypto/vmx/ghash*
5168 F:      drivers/crypto/vmx/ppc-xlate.pl
5169
5170 IBM Power in-Nest Crypto Acceleration
5171 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5172 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5173 L:      linux-crypto@vger.kernel.org
5174 S:      Supported
5175 F:      drivers/crypto/nx/Makefile
5176 F:      drivers/crypto/nx/Kconfig
5177 F:      drivers/crypto/nx/nx-aes*
5178 F:      drivers/crypto/nx/nx-sha*
5179 F:      drivers/crypto/nx/nx.*
5180 F:      drivers/crypto/nx/nx_csbcpb.h
5181 F:      drivers/crypto/nx/nx_debugfs.h
5182
5183 IBM Power 842 compression accelerator
5184 M:      Dan Streetman <ddstreet@ieee.org>
5185 S:      Supported
5186 F:      drivers/crypto/nx/Makefile
5187 F:      drivers/crypto/nx/Kconfig
5188 F:      drivers/crypto/nx/nx-842*
5189 F:      include/linux/sw842.h
5190 F:      crypto/842.c
5191 F:      lib/842/
5192
5193 IBM Power Linux RAID adapter
5194 M:      Brian King <brking@us.ibm.com>
5195 S:      Supported
5196 F:      drivers/scsi/ipr.*
5197
5198 IBM Power Virtual Ethernet Device Driver
5199 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5200 L:      netdev@vger.kernel.org
5201 S:      Supported
5202 F:      drivers/net/ethernet/ibm/ibmveth.*
5203
5204 IBM Power Virtual SCSI Device Drivers
5205 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5206 L:      linux-scsi@vger.kernel.org
5207 S:      Supported
5208 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5209 F:      drivers/scsi/ibmvscsi/viosrp.h
5210
5211 IBM Power Virtual FC Device Drivers
5212 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5213 L:      linux-scsi@vger.kernel.org
5214 S:      Supported
5215 F:      drivers/scsi/ibmvscsi/ibmvfc*
5216
5217 IBM ServeRAID RAID DRIVER
5218 S:      Orphan
5219 F:      drivers/scsi/ips.*
5220
5221 ICH LPC AND GPIO DRIVER
5222 M:      Peter Tyser <ptyser@xes-inc.com>
5223 S:      Maintained
5224 F:      drivers/mfd/lpc_ich.c
5225 F:      drivers/gpio/gpio-ich.c
5226
5227 IDE SUBSYSTEM
5228 M:      "David S. Miller" <davem@davemloft.net>
5229 L:      linux-ide@vger.kernel.org
5230 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5232 S:      Maintained
5233 F:      Documentation/ide/
5234 F:      drivers/ide/
5235 F:      include/linux/ide.h
5236
5237 IDEAPAD LAPTOP EXTRAS DRIVER
5238 M:      Ike Panhc <ike.pan@canonical.com>
5239 L:      platform-driver-x86@vger.kernel.org
5240 W:      http://launchpad.net/ideapad-laptop
5241 S:      Maintained
5242 F:      drivers/platform/x86/ideapad-laptop.c
5243
5244 IDEAPAD LAPTOP SLIDEBAR DRIVER
5245 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5246 L:      linux-input@vger.kernel.org
5247 W:      https://github.com/o2genum/ideapad-slidebar
5248 S:      Maintained
5249 F:      drivers/input/misc/ideapad_slidebar.c
5250
5251 IDE/ATAPI DRIVERS
5252 M:      Borislav Petkov <bp@alien8.de>
5253 L:      linux-ide@vger.kernel.org
5254 S:      Maintained
5255 F:      Documentation/cdrom/ide-cd
5256 F:      drivers/ide/ide-cd*
5257
5258 IDLE-I7300
5259 M:      Andy Henroid <andrew.d.henroid@intel.com>
5260 L:      linux-pm@vger.kernel.org
5261 S:      Supported
5262 F:      drivers/idle/i7300_idle.c
5263
5264 IEEE 802.15.4 SUBSYSTEM
5265 M:      Alexander Aring <alex.aring@gmail.com>
5266 L:      linux-wpan@vger.kernel.org
5267 W:      https://github.com/linux-wpan
5268 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5269 S:      Maintained
5270 F:      net/ieee802154/
5271 F:      net/mac802154/
5272 F:      drivers/net/ieee802154/
5273 F:      include/linux/nl802154.h
5274 F:      include/linux/ieee802154.h
5275 F:      include/net/nl802154.h
5276 F:      include/net/mac802154.h
5277 F:      include/net/af_ieee802154.h
5278 F:      include/net/cfg802154.h
5279 F:      include/net/ieee802154_netdev.h
5280 F:      Documentation/networking/ieee802154.txt
5281
5282 IGORPLUG-USB IR RECEIVER
5283 M:      Sean Young <sean@mess.org>
5284 L:      linux-media@vger.kernel.org
5285 S:      Maintained
5286 F:      drivers/media/rc/igorplugusb.c
5287
5288 IGUANAWORKS USB IR TRANSCEIVER
5289 M:      Sean Young <sean@mess.org>
5290 L:      linux-media@vger.kernel.org
5291 S:      Maintained
5292 F:      drivers/media/rc/iguanair.c
5293
5294 IIO SUBSYSTEM AND DRIVERS
5295 M:      Jonathan Cameron <jic23@kernel.org>
5296 R:      Hartmut Knaack <knaack.h@gmx.de>
5297 R:      Lars-Peter Clausen <lars@metafoo.de>
5298 R:      Peter Meerwald <pmeerw@pmeerw.net>
5299 L:      linux-iio@vger.kernel.org
5300 S:      Maintained
5301 F:      drivers/iio/
5302 F:      drivers/staging/iio/
5303 F:      include/linux/iio/
5304 F:      tools/iio/
5305
5306 IKANOS/ADI EAGLE ADSL USB DRIVER
5307 M:      Matthieu Castet <castet.matthieu@free.fr>
5308 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5309 S:      Maintained
5310 F:      drivers/usb/atm/ueagle-atm.c
5311
5312 INA209 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/ina209
5317 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5318 F:      drivers/hwmon/ina209.c
5319
5320 INA2XX HARDWARE MONITOR DRIVER
5321 M:      Guenter Roeck <linux@roeck-us.net>
5322 L:      lm-sensors@lm-sensors.org
5323 S:      Maintained
5324 F:      Documentation/hwmon/ina2xx
5325 F:      drivers/hwmon/ina2xx.c
5326 F:      include/linux/platform_data/ina2xx.h
5327
5328 INDUSTRY PACK SUBSYSTEM (IPACK)
5329 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5330 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5331 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5332 L:      industrypack-devel@lists.sourceforge.net
5333 W:      http://industrypack.sourceforge.net
5334 S:      Maintained
5335 F:      drivers/ipack/
5336
5337 INGENIC JZ4780 DMA Driver
5338 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5339 S:      Maintained
5340 F:      drivers/dma/dma-jz4780.c
5341
5342 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5343 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5344 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5345 L:      linux-ima-devel@lists.sourceforge.net
5346 L:      linux-ima-user@lists.sourceforge.net
5347 L:      linux-security-module@vger.kernel.org
5348 S:      Supported
5349 F:      security/integrity/ima/
5350
5351 IMGTEC IR DECODER DRIVER
5352 M:      James Hogan <james.hogan@imgtec.com>
5353 S:      Maintained
5354 F:      drivers/media/rc/img-ir/
5355
5356 IMS TWINTURBO FRAMEBUFFER DRIVER
5357 L:      linux-fbdev@vger.kernel.org
5358 S:      Orphan
5359 F:      drivers/video/fbdev/imsttfb.c
5360
5361 INFINIBAND SUBSYSTEM
5362 M:      Doug Ledford <dledford@redhat.com>
5363 M:      Sean Hefty <sean.hefty@intel.com>
5364 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5365 L:      linux-rdma@vger.kernel.org
5366 W:      http://www.openfabrics.org/
5367 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5369 S:      Supported
5370 F:      Documentation/infiniband/
5371 F:      drivers/infiniband/
5372 F:      drivers/staging/rdma/
5373 F:      include/uapi/linux/if_infiniband.h
5374 F:      include/uapi/rdma/
5375 F:      include/rdma/
5376
5377 INOTIFY
5378 M:      John McCutchan <john@johnmccutchan.com>
5379 M:      Robert Love <rlove@rlove.org>
5380 M:      Eric Paris <eparis@parisplace.org>
5381 S:      Maintained
5382 F:      Documentation/filesystems/inotify.txt
5383 F:      fs/notify/inotify/
5384 F:      include/linux/inotify.h
5385 F:      include/uapi/linux/inotify.h
5386
5387 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5388 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5389 L:      linux-input@vger.kernel.org
5390 Q:      http://patchwork.kernel.org/project/linux-input/list/
5391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5392 S:      Maintained
5393 F:      drivers/input/
5394 F:      include/linux/input.h
5395 F:      include/uapi/linux/input.h
5396 F:      include/linux/input/
5397
5398 INPUT MULTITOUCH (MT) PROTOCOL
5399 M:      Henrik Rydberg <rydberg@bitmath.org>
5400 L:      linux-input@vger.kernel.org
5401 S:      Odd fixes
5402 F:      Documentation/input/multi-touch-protocol.txt
5403 F:      drivers/input/input-mt.c
5404 K:      \b(ABS|SYN)_MT_
5405
5406 INTEL ASoC BDW/HSW DRIVERS
5407 M:      Jie Yang <yang.jie@linux.intel.com>
5408 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5409 S:      Supported
5410 F:      sound/soc/intel/common/sst-dsp*
5411 F:      sound/soc/intel/common/sst-firmware.c
5412 F:      sound/soc/intel/boards/broadwell.c
5413 F:      sound/soc/intel/haswell/
5414
5415 INTEL C600 SERIES SAS CONTROLLER DRIVER
5416 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5417 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5418 L:      linux-scsi@vger.kernel.org
5419 T:      git git://git.code.sf.net/p/intel-sas/isci
5420 S:      Supported
5421 F:      drivers/scsi/isci/
5422
5423 INTEL IDLE DRIVER
5424 M:      Len Brown <lenb@kernel.org>
5425 L:      linux-pm@vger.kernel.org
5426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5427 S:      Supported
5428 F:      drivers/idle/intel_idle.c
5429
5430 INTEL PSTATE DRIVER
5431 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5432 L:      linux-pm@vger.kernel.org
5433 S:      Supported
5434 F:      drivers/cpufreq/intel_pstate.c
5435
5436 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5437 M:      Maik Broemme <mbroemme@plusserver.de>
5438 L:      linux-fbdev@vger.kernel.org
5439 S:      Maintained
5440 F:      Documentation/fb/intelfb.txt
5441 F:      drivers/video/fbdev/intelfb/
5442
5443 INTEL 810/815 FRAMEBUFFER DRIVER
5444 M:      Antonino Daplas <adaplas@gmail.com>
5445 L:      linux-fbdev@vger.kernel.org
5446 S:      Maintained
5447 F:      drivers/video/fbdev/i810/
5448
5449 INTEL MENLOW THERMAL DRIVER
5450 M:      Sujith Thomas <sujith.thomas@intel.com>
5451 L:      platform-driver-x86@vger.kernel.org
5452 W:      https://01.org/linux-acpi
5453 S:      Supported
5454 F:      drivers/platform/x86/intel_menlow.c
5455
5456 INTEL IA32 MICROCODE UPDATE SUPPORT
5457 M:      Borislav Petkov <bp@alien8.de>
5458 S:      Maintained
5459 F:      arch/x86/kernel/cpu/microcode/core*
5460 F:      arch/x86/kernel/cpu/microcode/intel*
5461
5462 INTEL I/OAT DMA DRIVER
5463 M:      Dave Jiang <dave.jiang@intel.com>
5464 R:      Dan Williams <dan.j.williams@intel.com>
5465 L:      dmaengine@vger.kernel.org
5466 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5467 S:      Supported
5468 F:      drivers/dma/ioat*
5469
5470 INTEL IOMMU (VT-d)
5471 M:      David Woodhouse <dwmw2@infradead.org>
5472 L:      iommu@lists.linux-foundation.org
5473 T:      git git://git.infradead.org/iommu-2.6.git
5474 S:      Supported
5475 F:      drivers/iommu/intel-iommu.c
5476 F:      include/linux/intel-iommu.h
5477
5478 INTEL IOP-ADMA DMA DRIVER
5479 R:      Dan Williams <dan.j.williams@intel.com>
5480 S:      Odd fixes
5481 F:      drivers/dma/iop-adma.c
5482
5483 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5484 M:      Krzysztof Halasa <khalasa@piap.pl>
5485 S:      Maintained
5486 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5487 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5488 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5489 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5490 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5491 F:      drivers/net/wan/ixp4xx_hss.c
5492
5493 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5494 M:      Deepak Saxena <dsaxena@plexity.net>
5495 S:      Maintained
5496 F:      drivers/char/hw_random/ixp4xx-rng.c
5497
5498 INTEL ETHERNET DRIVERS
5499 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5500 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5501 R:      Shannon Nelson <shannon.nelson@intel.com>
5502 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5503 R:      Don Skidmore <donald.c.skidmore@intel.com>
5504 R:      Matthew Vick <matthew.vick@intel.com>
5505 R:      John Ronciak <john.ronciak@intel.com>
5506 R:      Mitch Williams <mitch.a.williams@intel.com>
5507 L:      intel-wired-lan@lists.osuosl.org
5508 W:      http://www.intel.com/support/feedback.htm
5509 W:      http://e1000.sourceforge.net/
5510 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5513 S:      Supported
5514 F:      Documentation/networking/e100.txt
5515 F:      Documentation/networking/e1000.txt
5516 F:      Documentation/networking/e1000e.txt
5517 F:      Documentation/networking/igb.txt
5518 F:      Documentation/networking/igbvf.txt
5519 F:      Documentation/networking/ixgb.txt
5520 F:      Documentation/networking/ixgbe.txt
5521 F:      Documentation/networking/ixgbevf.txt
5522 F:      Documentation/networking/i40e.txt
5523 F:      Documentation/networking/i40evf.txt
5524 F:      drivers/net/ethernet/intel/
5525 F:      drivers/net/ethernet/intel/*/
5526
5527 INTEL-MID GPIO DRIVER
5528 M:      David Cohen <david.a.cohen@linux.intel.com>
5529 L:      linux-gpio@vger.kernel.org
5530 S:      Maintained
5531 F:      drivers/gpio/gpio-intel-mid.c
5532
5533 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5534 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5535 L:      linux-wireless@vger.kernel.org
5536 S:      Maintained
5537 F:      Documentation/networking/README.ipw2100
5538 F:      Documentation/networking/README.ipw2200
5539 F:      drivers/net/wireless/ipw2x00/
5540
5541 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5542 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5543 M:      Gang Wei <gang.wei@intel.com>
5544 M:      Shane Wang <shane.wang@intel.com>
5545 L:      tboot-devel@lists.sourceforge.net
5546 W:      http://tboot.sourceforge.net
5547 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5548 S:      Supported
5549 F:      Documentation/intel_txt.txt
5550 F:      include/linux/tboot.h
5551 F:      arch/x86/kernel/tboot.c
5552
5553 INTEL WIRELESS WIMAX CONNECTION 2400
5554 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5555 M:      linux-wimax@intel.com
5556 L:      wimax@linuxwimax.org (subscribers-only)
5557 S:      Supported
5558 W:      http://linuxwimax.org
5559 F:      Documentation/wimax/README.i2400m
5560 F:      drivers/net/wimax/i2400m/
5561 F:      include/uapi/linux/wimax/i2400m.h
5562
5563 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5564 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5565 L:      linux-wireless@vger.kernel.org
5566 S:      Supported
5567 F:      drivers/net/wireless/iwlegacy/
5568
5569 INTEL WIRELESS WIFI LINK (iwlwifi)
5570 M:      Johannes Berg <johannes.berg@intel.com>
5571 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5572 M:      Intel Linux Wireless <ilw@linux.intel.com>
5573 L:      linux-wireless@vger.kernel.org
5574 W:      http://intellinuxwireless.org
5575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5576 S:      Supported
5577 F:      drivers/net/wireless/iwlwifi/
5578
5579 INTEL MANAGEMENT ENGINE (mei)
5580 M:      Tomas Winkler <tomas.winkler@intel.com>
5581 L:      linux-kernel@vger.kernel.org
5582 S:      Supported
5583 F:      include/uapi/linux/mei.h
5584 F:      include/linux/mei_cl_bus.h
5585 F:      drivers/misc/mei/*
5586 F:      Documentation/misc-devices/mei/*
5587
5588 INTEL PMC IPC DRIVER
5589 M:      Zha Qipeng<qipeng.zha@intel.com>
5590 L:      platform-driver-x86@vger.kernel.org
5591 S:      Maintained
5592 F:      drivers/platform/x86/intel_pmc_ipc.c
5593 F:      arch/x86/include/asm/intel_pmc_ipc.h
5594
5595 IOC3 ETHERNET DRIVER
5596 M:      Ralf Baechle <ralf@linux-mips.org>
5597 L:      linux-mips@linux-mips.org
5598 S:      Maintained
5599 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5600
5601 IOC3 SERIAL DRIVER
5602 M:      Pat Gefre <pfg@sgi.com>
5603 L:      linux-serial@vger.kernel.org
5604 S:      Maintained
5605 F:      drivers/tty/serial/ioc3_serial.c
5606
5607 IOMMU DRIVERS
5608 M:      Joerg Roedel <joro@8bytes.org>
5609 L:      iommu@lists.linux-foundation.org
5610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5611 S:      Maintained
5612 F:      drivers/iommu/
5613
5614 IP MASQUERADING
5615 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5616 S:      Maintained
5617 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5618
5619 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5620 M:      Francois Romieu <romieu@fr.zoreil.com>
5621 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5622 L:      netdev@vger.kernel.org
5623 S:      Maintained
5624 F:      drivers/net/ethernet/icplus/ipg.*
5625
5626 IPATH DRIVER
5627 M:      Mike Marciniszyn <infinipath@intel.com>
5628 L:      linux-rdma@vger.kernel.org
5629 S:      Maintained
5630 F:      drivers/staging/rdma/ipath/
5631
5632 IPMI SUBSYSTEM
5633 M:      Corey Minyard <minyard@acm.org>
5634 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5635 W:      http://openipmi.sourceforge.net/
5636 S:      Supported
5637 F:      Documentation/IPMI.txt
5638 F:      drivers/char/ipmi/
5639 F:      include/linux/ipmi*
5640 F:      include/uapi/linux/ipmi*
5641
5642 QCOM AUDIO (ASoC) DRIVERS
5643 M:      Patrick Lai <plai@codeaurora.org>
5644 M:      Banajit Goswami <bgoswami@codeaurora.org>
5645 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5646 S:      Supported
5647 F:      sound/soc/qcom/
5648
5649 IPS SCSI RAID DRIVER
5650 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5651 L:      linux-scsi@vger.kernel.org
5652 W:      http://www.adaptec.com/
5653 S:      Maintained
5654 F:      drivers/scsi/ips*
5655
5656 IPVS
5657 M:      Wensong Zhang <wensong@linux-vs.org>
5658 M:      Simon Horman <horms@verge.net.au>
5659 M:      Julian Anastasov <ja@ssi.bg>
5660 L:      netdev@vger.kernel.org
5661 L:      lvs-devel@vger.kernel.org
5662 S:      Maintained
5663 F:      Documentation/networking/ipvs-sysctl.txt
5664 F:      include/net/ip_vs.h
5665 F:      include/uapi/linux/ip_vs.h
5666 F:      net/netfilter/ipvs/
5667
5668 IPWIRELESS DRIVER
5669 M:      Jiri Kosina <jikos@kernel.org>
5670 M:      David Sterba <dsterba@suse.com>
5671 S:      Odd Fixes
5672 F:      drivers/tty/ipwireless/
5673
5674 IPX NETWORK LAYER
5675 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5676 L:      netdev@vger.kernel.org
5677 S:      Maintained
5678 F:      include/net/ipx.h
5679 F:      include/uapi/linux/ipx.h
5680 F:      net/ipx/
5681
5682 IRDA SUBSYSTEM
5683 M:      Samuel Ortiz <samuel@sortiz.org>
5684 L:      irda-users@lists.sourceforge.net (subscribers-only)
5685 L:      netdev@vger.kernel.org
5686 W:      http://irda.sourceforge.net/
5687 S:      Maintained
5688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5689 F:      Documentation/networking/irda.txt
5690 F:      drivers/net/irda/
5691 F:      include/net/irda/
5692 F:      net/irda/
5693
5694 IRQ SUBSYSTEM
5695 M:      Thomas Gleixner <tglx@linutronix.de>
5696 L:      linux-kernel@vger.kernel.org
5697 S:      Maintained
5698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5699 F:      kernel/irq/
5700
5701 IRQCHIP DRIVERS
5702 M:      Thomas Gleixner <tglx@linutronix.de>
5703 M:      Jason Cooper <jason@lakedaemon.net>
5704 M:      Marc Zyngier <marc.zyngier@arm.com>
5705 L:      linux-kernel@vger.kernel.org
5706 S:      Maintained
5707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5708 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5709 F:      Documentation/devicetree/bindings/interrupt-controller/
5710 F:      drivers/irqchip/
5711
5712 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5713 M:      Jiang Liu <jiang.liu@linux.intel.com>
5714 M:      Marc Zyngier <marc.zyngier@arm.com>
5715 S:      Maintained
5716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5717 F:      Documentation/IRQ-domain.txt
5718 F:      include/linux/irqdomain.h
5719 F:      kernel/irq/irqdomain.c
5720 F:      kernel/irq/msi.c
5721
5722 ISAPNP
5723 M:      Jaroslav Kysela <perex@perex.cz>
5724 S:      Maintained
5725 F:      Documentation/isapnp.txt
5726 F:      drivers/pnp/isapnp/
5727 F:      include/linux/isapnp.h
5728
5729 ISA RADIO MODULE
5730 M:      Hans Verkuil <hverkuil@xs4all.nl>
5731 L:      linux-media@vger.kernel.org
5732 T:      git git://linuxtv.org/media_tree.git
5733 W:      http://linuxtv.org
5734 S:      Maintained
5735 F:      drivers/media/radio/radio-isa*
5736
5737 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5738 M:      Peter Jones <pjones@redhat.com>
5739 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5740 S:      Maintained
5741 F:      drivers/firmware/iscsi_ibft*
5742
5743 ISCSI
5744 M:      Mike Christie <michaelc@cs.wisc.edu>
5745 L:      open-iscsi@googlegroups.com
5746 W:      www.open-iscsi.org
5747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5748 S:      Maintained
5749 F:      drivers/scsi/*iscsi*
5750 F:      include/scsi/*iscsi*
5751
5752 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5753 M:      Or Gerlitz <ogerlitz@mellanox.com>
5754 M:      Sagi Grimberg <sagig@mellanox.com>
5755 M:      Roi Dayan <roid@mellanox.com>
5756 L:      linux-rdma@vger.kernel.org
5757 S:      Supported
5758 W:      http://www.openfabrics.org
5759 W:      www.open-iscsi.org
5760 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5761 F:      drivers/infiniband/ulp/iser/
5762
5763 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5764 M:      Sagi Grimberg <sagig@mellanox.com>
5765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5766 L:      linux-rdma@vger.kernel.org
5767 L:      target-devel@vger.kernel.org
5768 S:      Supported
5769 W:      http://www.linux-iscsi.org
5770 F:      drivers/infiniband/ulp/isert
5771
5772 ISDN SUBSYSTEM
5773 M:      Karsten Keil <isdn@linux-pingi.de>
5774 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5775 L:      netdev@vger.kernel.org
5776 W:      http://www.isdn4linux.de
5777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5778 S:      Maintained
5779 F:      Documentation/isdn/
5780 F:      drivers/isdn/
5781 F:      include/linux/isdn.h
5782 F:      include/linux/isdn/
5783 F:      include/uapi/linux/isdn.h
5784 F:      include/uapi/linux/isdn/
5785
5786 ISDN SUBSYSTEM (Eicon active card driver)
5787 M:      Armin Schindler <mac@melware.de>
5788 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5789 W:      http://www.melware.de
5790 S:      Maintained
5791 F:      drivers/isdn/hardware/eicon/
5792
5793 IT87 HARDWARE MONITORING DRIVER
5794 M:      Jean Delvare <jdelvare@suse.com>
5795 L:      lm-sensors@lm-sensors.org
5796 S:      Maintained
5797 F:      Documentation/hwmon/it87
5798 F:      drivers/hwmon/it87.c
5799
5800 IT913X MEDIA DRIVER
5801 M:      Antti Palosaari <crope@iki.fi>
5802 L:      linux-media@vger.kernel.org
5803 W:      http://linuxtv.org/
5804 W:      http://palosaari.fi/linux/
5805 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5806 T:      git git://linuxtv.org/anttip/media_tree.git
5807 S:      Maintained
5808 F:      drivers/media/tuners/it913x*
5809
5810 IVTV VIDEO4LINUX DRIVER
5811 M:      Andy Walls <awalls@md.metrocast.net>
5812 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5813 L:      linux-media@vger.kernel.org
5814 T:      git git://linuxtv.org/media_tree.git
5815 W:      http://www.ivtvdriver.org
5816 S:      Maintained
5817 F:      Documentation/video4linux/*.ivtv
5818 F:      drivers/media/pci/ivtv/
5819 F:      include/uapi/linux/ivtv*
5820
5821 IX2505V MEDIA DRIVER
5822 M:      Malcolm Priestley <tvboxspy@gmail.com>
5823 L:      linux-media@vger.kernel.org
5824 W:      http://linuxtv.org/
5825 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5826 S:      Maintained
5827 F:      drivers/media/dvb-frontends/ix2505v*
5828
5829 JC42.4 TEMPERATURE SENSOR DRIVER
5830 M:      Guenter Roeck <linux@roeck-us.net>
5831 L:      lm-sensors@lm-sensors.org
5832 S:      Maintained
5833 F:      drivers/hwmon/jc42.c
5834 F:      Documentation/hwmon/jc42
5835
5836 JFS FILESYSTEM
5837 M:      Dave Kleikamp <shaggy@kernel.org>
5838 L:      jfs-discussion@lists.sourceforge.net
5839 W:      http://jfs.sourceforge.net/
5840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5841 S:      Maintained
5842 F:      Documentation/filesystems/jfs.txt
5843 F:      fs/jfs/
5844
5845 JME NETWORK DRIVER
5846 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5847 L:      netdev@vger.kernel.org
5848 S:      Maintained
5849 F:      drivers/net/ethernet/jme.*
5850
5851 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5852 M:      David Woodhouse <dwmw2@infradead.org>
5853 L:      linux-mtd@lists.infradead.org
5854 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5855 S:      Maintained
5856 F:      fs/jffs2/
5857 F:      include/uapi/linux/jffs2.h
5858
5859 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5860 M:      "Theodore Ts'o" <tytso@mit.edu>
5861 M:      Jan Kara <jack@suse.com>
5862 L:      linux-ext4@vger.kernel.org
5863 S:      Maintained
5864 F:      fs/jbd2/
5865 F:      include/linux/jbd2.h
5866
5867 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5868 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5869 L:      linux-media@vger.kernel.org
5870 S:      Maintained
5871 F:      drivers/media/platform/rcar_jpu.c
5872
5873 JSM Neo PCI based serial card
5874 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5875 L:      linux-serial@vger.kernel.org
5876 S:      Maintained
5877 F:      drivers/tty/serial/jsm/
5878
5879 K10TEMP HARDWARE MONITORING DRIVER
5880 M:      Clemens Ladisch <clemens@ladisch.de>
5881 L:      lm-sensors@lm-sensors.org
5882 S:      Maintained
5883 F:      Documentation/hwmon/k10temp
5884 F:      drivers/hwmon/k10temp.c
5885
5886 K8TEMP HARDWARE MONITORING DRIVER
5887 M:      Rudolf Marek <r.marek@assembler.cz>
5888 L:      lm-sensors@lm-sensors.org
5889 S:      Maintained
5890 F:      Documentation/hwmon/k8temp
5891 F:      drivers/hwmon/k8temp.c
5892
5893 KCONFIG
5894 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5895 L:      linux-kbuild@vger.kernel.org
5896 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5897 S:      Maintained
5898 F:      Documentation/kbuild/kconfig-language.txt
5899 F:      scripts/kconfig/
5900
5901 KDUMP
5902 M:      Vivek Goyal <vgoyal@redhat.com>
5903 M:      Haren Myneni <hbabu@us.ibm.com>
5904 L:      kexec@lists.infradead.org
5905 W:      http://lse.sourceforge.net/kdump/
5906 S:      Maintained
5907 F:      Documentation/kdump/
5908
5909 KEENE FM RADIO TRANSMITTER DRIVER
5910 M:      Hans Verkuil <hverkuil@xs4all.nl>
5911 L:      linux-media@vger.kernel.org
5912 T:      git git://linuxtv.org/media_tree.git
5913 W:      http://linuxtv.org
5914 S:      Maintained
5915 F:      drivers/media/radio/radio-keene*
5916
5917 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5918 M:      Ian Kent <raven@themaw.net>
5919 L:      autofs@vger.kernel.org
5920 S:      Maintained
5921 F:      fs/autofs4/
5922
5923 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5924 M:      Michal Marek <mmarek@suse.com>
5925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5927 L:      linux-kbuild@vger.kernel.org
5928 S:      Maintained
5929 F:      Documentation/kbuild/
5930 F:      Makefile
5931 F:      scripts/Makefile.*
5932 F:      scripts/basic/
5933 F:      scripts/mk*
5934 F:      scripts/package/
5935
5936 KERNEL JANITORS
5937 L:      kernel-janitors@vger.kernel.org
5938 W:      http://kernelnewbies.org/KernelJanitors
5939 S:      Odd Fixes
5940
5941 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5942 M:      "J. Bruce Fields" <bfields@fieldses.org>
5943 M:      Jeff Layton <jlayton@poochiereds.net>
5944 L:      linux-nfs@vger.kernel.org
5945 W:      http://nfs.sourceforge.net/
5946 S:      Supported
5947 F:      fs/nfsd/
5948 F:      include/uapi/linux/nfsd/
5949 F:      fs/lockd/
5950 F:      fs/nfs_common/
5951 F:      net/sunrpc/
5952 F:      include/linux/lockd/
5953 F:      include/linux/sunrpc/
5954 F:      include/uapi/linux/sunrpc/
5955
5956 KERNEL SELFTEST FRAMEWORK
5957 M:      Shuah Khan <shuahkh@osg.samsung.com>
5958 L:      linux-api@vger.kernel.org
5959 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5960 S:      Maintained
5961 F:      tools/testing/selftests
5962
5963 KERNEL VIRTUAL MACHINE (KVM)
5964 M:      Gleb Natapov <gleb@kernel.org>
5965 M:      Paolo Bonzini <pbonzini@redhat.com>
5966 L:      kvm@vger.kernel.org
5967 W:      http://www.linux-kvm.org
5968 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5969 S:      Supported
5970 F:      Documentation/*/kvm*.txt
5971 F:      Documentation/virtual/kvm/
5972 F:      arch/*/kvm/
5973 F:      arch/x86/kernel/kvm.c
5974 F:      arch/x86/kernel/kvmclock.c
5975 F:      arch/*/include/asm/kvm*
5976 F:      include/linux/kvm*
5977 F:      include/uapi/linux/kvm*
5978 F:      virt/kvm/
5979
5980 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5981 M:      Joerg Roedel <joro@8bytes.org>
5982 L:      kvm@vger.kernel.org
5983 W:      http://www.linux-kvm.org/
5984 S:      Maintained
5985 F:      arch/x86/include/asm/svm.h
5986 F:      arch/x86/kvm/svm.c
5987
5988 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5989 M:      Alexander Graf <agraf@suse.com>
5990 L:      kvm-ppc@vger.kernel.org
5991 W:      http://www.linux-kvm.org/
5992 T:      git git://github.com/agraf/linux-2.6.git
5993 S:      Supported
5994 F:      arch/powerpc/include/asm/kvm*
5995 F:      arch/powerpc/kvm/
5996
5997 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5998 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5999 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6000 L:      linux-s390@vger.kernel.org
6001 W:      http://www.ibm.com/developerworks/linux/linux390/
6002 S:      Supported
6003 F:      Documentation/s390/kvm.txt
6004 F:      arch/s390/include/asm/kvm*
6005 F:      arch/s390/kvm/
6006
6007 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6008 M:      Christoffer Dall <christoffer.dall@linaro.org>
6009 M:      Marc Zyngier <marc.zyngier@arm.com>
6010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6011 L:      kvmarm@lists.cs.columbia.edu
6012 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6013 S:      Supported
6014 F:      arch/arm/include/uapi/asm/kvm*
6015 F:      arch/arm/include/asm/kvm*
6016 F:      arch/arm/kvm/
6017 F:      virt/kvm/arm/
6018 F:      include/kvm/arm_*
6019
6020 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6021 M:      Christoffer Dall <christoffer.dall@linaro.org>
6022 M:      Marc Zyngier <marc.zyngier@arm.com>
6023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6024 L:      kvmarm@lists.cs.columbia.edu
6025 S:      Maintained
6026 F:      arch/arm64/include/uapi/asm/kvm*
6027 F:      arch/arm64/include/asm/kvm*
6028 F:      arch/arm64/kvm/
6029
6030 KEXEC
6031 M:      Eric Biederman <ebiederm@xmission.com>
6032 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6033 L:      kexec@lists.infradead.org
6034 S:      Maintained
6035 F:      include/linux/kexec.h
6036 F:      include/uapi/linux/kexec.h
6037 F:      kernel/kexec.c
6038
6039 KEYS/KEYRINGS:
6040 M:      David Howells <dhowells@redhat.com>
6041 L:      keyrings@vger.kernel.org
6042 S:      Maintained
6043 F:      Documentation/security/keys.txt
6044 F:      include/linux/key.h
6045 F:      include/linux/key-type.h
6046 F:      include/keys/
6047 F:      security/keys/
6048
6049 KEYS-TRUSTED
6050 M:      David Safford <safford@us.ibm.com>
6051 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6052 L:      linux-security-module@vger.kernel.org
6053 L:      keyrings@vger.kernel.org
6054 S:      Supported
6055 F:      Documentation/security/keys-trusted-encrypted.txt
6056 F:      include/keys/trusted-type.h
6057 F:      security/keys/trusted.c
6058 F:      security/keys/trusted.h
6059
6060 KEYS-ENCRYPTED
6061 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6062 M:      David Safford <safford@us.ibm.com>
6063 L:      linux-security-module@vger.kernel.org
6064 L:      keyrings@vger.kernel.org
6065 S:      Supported
6066 F:      Documentation/security/keys-trusted-encrypted.txt
6067 F:      include/keys/encrypted-type.h
6068 F:      security/keys/encrypted-keys/
6069
6070 KGDB / KDB /debug_core
6071 M:      Jason Wessel <jason.wessel@windriver.com>
6072 W:      http://kgdb.wiki.kernel.org/
6073 L:      kgdb-bugreport@lists.sourceforge.net
6074 S:      Maintained
6075 F:      Documentation/DocBook/kgdb.tmpl
6076 F:      drivers/misc/kgdbts.c
6077 F:      drivers/tty/serial/kgdboc.c
6078 F:      include/linux/kdb.h
6079 F:      include/linux/kgdb.h
6080 F:      kernel/debug/
6081
6082 KMEMCHECK
6083 M:      Vegard Nossum <vegardno@ifi.uio.no>
6084 M:      Pekka Enberg <penberg@kernel.org>
6085 S:      Maintained
6086 F:      Documentation/kmemcheck.txt
6087 F:      arch/x86/include/asm/kmemcheck.h
6088 F:      arch/x86/mm/kmemcheck/
6089 F:      include/linux/kmemcheck.h
6090 F:      mm/kmemcheck.c
6091
6092 KMEMLEAK
6093 M:      Catalin Marinas <catalin.marinas@arm.com>
6094 S:      Maintained
6095 F:      Documentation/kmemleak.txt
6096 F:      include/linux/kmemleak.h
6097 F:      mm/kmemleak.c
6098 F:      mm/kmemleak-test.c
6099
6100 KPROBES
6101 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6102 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6103 M:      "David S. Miller" <davem@davemloft.net>
6104 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6105 S:      Maintained
6106 F:      Documentation/kprobes.txt
6107 F:      include/linux/kprobes.h
6108 F:      kernel/kprobes.c
6109
6110 KS0108 LCD CONTROLLER DRIVER
6111 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6112 W:      http://miguelojeda.es/auxdisplay.htm
6113 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6114 S:      Maintained
6115 F:      Documentation/auxdisplay/ks0108
6116 F:      drivers/auxdisplay/ks0108.c
6117 F:      include/linux/ks0108.h
6118
6119 LAPB module
6120 L:      linux-x25@vger.kernel.org
6121 S:      Orphan
6122 F:      Documentation/networking/lapb-module.txt
6123 F:      include/*/lapb.h
6124 F:      net/lapb/
6125
6126 LASI 53c700 driver for PARISC
6127 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6128 L:      linux-scsi@vger.kernel.org
6129 S:      Maintained
6130 F:      Documentation/scsi/53c700.txt
6131 F:      drivers/scsi/53c700*
6132
6133 LED SUBSYSTEM
6134 M:      Richard Purdie <rpurdie@rpsys.net>
6135 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6136 L:      linux-leds@vger.kernel.org
6137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6138 S:      Maintained
6139 F:      drivers/leds/
6140 F:      include/linux/leds.h
6141
6142 LEGACY EEPROM DRIVER
6143 M:      Jean Delvare <jdelvare@suse.com>
6144 S:      Maintained
6145 F:      Documentation/misc-devices/eeprom
6146 F:      drivers/misc/eeprom/eeprom.c
6147
6148 LEGO USB Tower driver
6149 M:      Juergen Stuber <starblue@users.sourceforge.net>
6150 L:      legousb-devel@lists.sourceforge.net
6151 W:      http://legousb.sourceforge.net/
6152 S:      Maintained
6153 F:      drivers/usb/misc/legousbtower.c
6154
6155 LG2160 MEDIA DRIVER
6156 M:      Michael Krufky <mkrufky@linuxtv.org>
6157 L:      linux-media@vger.kernel.org
6158 W:      http://linuxtv.org/
6159 W:      http://github.com/mkrufky
6160 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6161 T:      git git://linuxtv.org/mkrufky/tuners.git
6162 S:      Maintained
6163 F:      drivers/media/dvb-frontends/lg2160.*
6164
6165 LGDT3305 MEDIA DRIVER
6166 M:      Michael Krufky <mkrufky@linuxtv.org>
6167 L:      linux-media@vger.kernel.org
6168 W:      http://linuxtv.org/
6169 W:      http://github.com/mkrufky
6170 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6171 T:      git git://linuxtv.org/mkrufky/tuners.git
6172 S:      Maintained
6173 F:      drivers/media/dvb-frontends/lgdt3305.*
6174
6175 LGUEST
6176 M:      Rusty Russell <rusty@rustcorp.com.au>
6177 L:      lguest@lists.ozlabs.org
6178 W:      http://lguest.ozlabs.org/
6179 S:      Odd Fixes
6180 F:      arch/x86/include/asm/lguest*.h
6181 F:      arch/x86/lguest/
6182 F:      drivers/lguest/
6183 F:      include/linux/lguest*.h
6184 F:      tools/lguest/
6185
6186 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6187 M:      Tejun Heo <tj@kernel.org>
6188 L:      linux-ide@vger.kernel.org
6189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6190 S:      Maintained
6191 F:      drivers/ata/
6192 F:      include/linux/ata.h
6193 F:      include/linux/libata.h
6194
6195 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6196 M:      Viresh Kumar <vireshk@kernel.org>
6197 L:      linux-ide@vger.kernel.org
6198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6199 S:      Maintained
6200 F:      include/linux/pata_arasan_cf_data.h
6201 F:      drivers/ata/pata_arasan_cf.c
6202
6203 LIBATA PATA DRIVERS
6204 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6205 M:      Tejun Heo <tj@kernel.org>
6206 L:      linux-ide@vger.kernel.org
6207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6208 S:      Maintained
6209 F:      drivers/ata/pata_*.c
6210 F:      drivers/ata/ata_generic.c
6211
6212 LIBATA SATA AHCI PLATFORM devices support
6213 M:      Hans de Goede <hdegoede@redhat.com>
6214 M:      Tejun Heo <tj@kernel.org>
6215 L:      linux-ide@vger.kernel.org
6216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6217 S:      Maintained
6218 F:      drivers/ata/ahci_platform.c
6219 F:      drivers/ata/libahci_platform.c
6220 F:      include/linux/ahci_platform.h
6221
6222 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6223 M:      Mikael Pettersson <mikpelinux@gmail.com>
6224 L:      linux-ide@vger.kernel.org
6225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6226 S:      Maintained
6227 F:      drivers/ata/sata_promise.*
6228
6229 LIBLOCKDEP
6230 M:      Sasha Levin <sasha.levin@oracle.com>
6231 S:      Maintained
6232 F:      tools/lib/lockdep/
6233
6234 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6235 M:      Dan Williams <dan.j.williams@intel.com>
6236 L:      linux-nvdimm@lists.01.org
6237 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6238 S:      Supported
6239 F:      drivers/nvdimm/*
6240 F:      include/linux/nd.h
6241 F:      include/linux/libnvdimm.h
6242 F:      include/uapi/linux/ndctl.h
6243
6244 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6245 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6246 L:      linux-nvdimm@lists.01.org
6247 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6248 S:      Supported
6249 F:      drivers/nvdimm/blk.c
6250 F:      drivers/nvdimm/region_devs.c
6251 F:      drivers/acpi/nfit*
6252
6253 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6254 M:      Vishal Verma <vishal.l.verma@intel.com>
6255 L:      linux-nvdimm@lists.01.org
6256 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6257 S:      Supported
6258 F:      drivers/nvdimm/btt*
6259
6260 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6261 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6262 L:      linux-nvdimm@lists.01.org
6263 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6264 S:      Supported
6265 F:      drivers/nvdimm/pmem.c
6266 F:      include/linux/pmem.h
6267 F:      arch/*/include/asm/pmem.h
6268
6269 LINUX FOR IBM pSERIES (RS/6000)
6270 M:      Paul Mackerras <paulus@au.ibm.com>
6271 W:      http://www.ibm.com/linux/ltc/projects/ppc
6272 S:      Supported
6273 F:      arch/powerpc/boot/rs6000.h
6274
6275 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6276 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6277 M:      Paul Mackerras <paulus@samba.org>
6278 M:      Michael Ellerman <mpe@ellerman.id.au>
6279 W:      http://www.penguinppc.org/
6280 L:      linuxppc-dev@lists.ozlabs.org
6281 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6283 S:      Supported
6284 F:      Documentation/powerpc/
6285 F:      arch/powerpc/
6286
6287 LINUX FOR POWER MACINTOSH
6288 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6289 W:      http://www.penguinppc.org/
6290 L:      linuxppc-dev@lists.ozlabs.org
6291 S:      Maintained
6292 F:      arch/powerpc/platforms/powermac/
6293 F:      drivers/macintosh/
6294
6295 LINUX FOR POWERPC EMBEDDED MPC5XXX
6296 M:      Anatolij Gustschin <agust@denx.de>
6297 L:      linuxppc-dev@lists.ozlabs.org
6298 T:      git git://git.denx.de/linux-denx-agust.git
6299 S:      Maintained
6300 F:      arch/powerpc/platforms/512x/
6301 F:      arch/powerpc/platforms/52xx/
6302
6303 LINUX FOR POWERPC EMBEDDED PPC4XX
6304 M:      Alistair Popple <alistair@popple.id.au>
6305 M:      Matt Porter <mporter@kernel.crashing.org>
6306 W:      http://www.penguinppc.org/
6307 L:      linuxppc-dev@lists.ozlabs.org
6308 S:      Maintained
6309 F:      arch/powerpc/platforms/40x/
6310 F:      arch/powerpc/platforms/44x/
6311
6312 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6313 L:      linuxppc-dev@lists.ozlabs.org
6314 S:      Orphan
6315 F:      arch/powerpc/*/*virtex*
6316 F:      arch/powerpc/*/*/*virtex*
6317
6318 LINUX FOR POWERPC EMBEDDED PPC8XX
6319 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6320 W:      http://www.penguinppc.org/
6321 L:      linuxppc-dev@lists.ozlabs.org
6322 S:      Maintained
6323 F:      arch/powerpc/platforms/8xx/
6324
6325 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6326 M:      Scott Wood <scottwood@freescale.com>
6327 M:      Kumar Gala <galak@kernel.crashing.org>
6328 W:      http://www.penguinppc.org/
6329 L:      linuxppc-dev@lists.ozlabs.org
6330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6331 S:      Maintained
6332 F:      arch/powerpc/platforms/83xx/
6333 F:      arch/powerpc/platforms/85xx/
6334
6335 LINUX FOR POWERPC PA SEMI PWRFICIENT
6336 M:      Olof Johansson <olof@lixom.net>
6337 L:      linuxppc-dev@lists.ozlabs.org
6338 S:      Maintained
6339 F:      arch/powerpc/platforms/pasemi/
6340 F:      drivers/*/*pasemi*
6341 F:      drivers/*/*/*pasemi*
6342
6343 LINUX SECURITY MODULE (LSM) FRAMEWORK
6344 M:      Chris Wright <chrisw@sous-sol.org>
6345 L:      linux-security-module@vger.kernel.org
6346 S:      Supported
6347
6348 LIS3LV02D ACCELEROMETER DRIVER
6349 M:      Eric Piel <eric.piel@tremplin-utc.net>
6350 S:      Maintained
6351 F:      Documentation/misc-devices/lis3lv02d
6352 F:      drivers/misc/lis3lv02d/
6353 F:      drivers/platform/x86/hp_accel.c
6354
6355 LIVE PATCHING
6356 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6357 M:      Seth Jennings <sjenning@redhat.com>
6358 M:      Jiri Kosina <jikos@kernel.org>
6359 M:      Vojtech Pavlik <vojtech@suse.com>
6360 S:      Maintained
6361 F:      kernel/livepatch/
6362 F:      include/linux/livepatch.h
6363 F:      arch/x86/include/asm/livepatch.h
6364 F:      arch/x86/kernel/livepatch.c
6365 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6366 F:      samples/livepatch/
6367 L:      live-patching@vger.kernel.org
6368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6369
6370 LLC (802.2)
6371 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6372 S:      Maintained
6373 F:      include/linux/llc.h
6374 F:      include/uapi/linux/llc.h
6375 F:      include/net/llc*
6376 F:      net/llc/
6377
6378 LM73 HARDWARE MONITOR DRIVER
6379 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6380 L:      lm-sensors@lm-sensors.org
6381 S:      Maintained
6382 F:      drivers/hwmon/lm73.c
6383
6384 LM78 HARDWARE MONITOR DRIVER
6385 M:      Jean Delvare <jdelvare@suse.com>
6386 L:      lm-sensors@lm-sensors.org
6387 S:      Maintained
6388 F:      Documentation/hwmon/lm78
6389 F:      drivers/hwmon/lm78.c
6390
6391 LM83 HARDWARE MONITOR DRIVER
6392 M:      Jean Delvare <jdelvare@suse.com>
6393 L:      lm-sensors@lm-sensors.org
6394 S:      Maintained
6395 F:      Documentation/hwmon/lm83
6396 F:      drivers/hwmon/lm83.c
6397
6398 LM90 HARDWARE MONITOR DRIVER
6399 M:      Jean Delvare <jdelvare@suse.com>
6400 L:      lm-sensors@lm-sensors.org
6401 S:      Maintained
6402 F:      Documentation/hwmon/lm90
6403 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6404 F:      drivers/hwmon/lm90.c
6405
6406 LM95234 HARDWARE MONITOR DRIVER
6407 M:      Guenter Roeck <linux@roeck-us.net>
6408 L:      lm-sensors@lm-sensors.org
6409 S:      Maintained
6410 F:      Documentation/hwmon/lm95234
6411 F:      drivers/hwmon/lm95234.c
6412
6413 LME2510 MEDIA DRIVER
6414 M:      Malcolm Priestley <tvboxspy@gmail.com>
6415 L:      linux-media@vger.kernel.org
6416 W:      http://linuxtv.org/
6417 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6418 S:      Maintained
6419 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6420
6421 LOCKDEP AND LOCKSTAT
6422 M:      Peter Zijlstra <peterz@infradead.org>
6423 M:      Ingo Molnar <mingo@redhat.com>
6424 L:      linux-kernel@vger.kernel.org
6425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6426 S:      Maintained
6427 F:      Documentation/locking/lockdep*.txt
6428 F:      Documentation/locking/lockstat.txt
6429 F:      include/linux/lockdep.h
6430 F:      kernel/locking/
6431
6432 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6433 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6434 L:      linux-ntfs-dev@lists.sourceforge.net
6435 W:      http://www.linux-ntfs.org/content/view/19/37/
6436 S:      Maintained
6437 F:      Documentation/ldm.txt
6438 F:      block/partitions/ldm.*
6439
6440 LogFS
6441 M:      Joern Engel <joern@logfs.org>
6442 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6443 L:      logfs@logfs.org
6444 W:      logfs.org
6445 S:      Maintained
6446 F:      fs/logfs/
6447
6448 LPC32XX MACHINE SUPPORT
6449 M:      Roland Stigge <stigge@antcom.de>
6450 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6451 S:      Maintained
6452 F:      arch/arm/mach-lpc32xx/
6453
6454 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6455 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6456 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6457 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6458 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6459 L:      MPT-FusionLinux.pdl@avagotech.com
6460 L:      linux-scsi@vger.kernel.org
6461 W:      http://www.lsilogic.com/support
6462 S:      Supported
6463 F:      drivers/message/fusion/
6464 F:      drivers/scsi/mpt2sas/
6465 F:      drivers/scsi/mpt3sas/
6466
6467 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6468 M:      Matthew Wilcox <matthew@wil.cx>
6469 L:      linux-scsi@vger.kernel.org
6470 S:      Maintained
6471 F:      drivers/scsi/sym53c8xx_2/
6472
6473 LTC4261 HARDWARE MONITOR DRIVER
6474 M:      Guenter Roeck <linux@roeck-us.net>
6475 L:      lm-sensors@lm-sensors.org
6476 S:      Maintained
6477 F:      Documentation/hwmon/ltc4261
6478 F:      drivers/hwmon/ltc4261.c
6479
6480 LTP (Linux Test Project)
6481 M:      Mike Frysinger <vapier@gentoo.org>
6482 M:      Cyril Hrubis <chrubis@suse.cz>
6483 M:      Wanlong Gao <wanlong.gao@gmail.com>
6484 M:      Jan Stancek <jstancek@redhat.com>
6485 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6486 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6487 L:      ltp@lists.linux.it (subscribers-only)
6488 W:      http://linux-test-project.github.io/
6489 T:      git git://github.com/linux-test-project/ltp.git
6490 S:      Maintained
6491
6492 M32R ARCHITECTURE
6493 W:      http://www.linux-m32r.org/
6494 S:      Orphan
6495 F:      arch/m32r/
6496
6497 M68K ARCHITECTURE
6498 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6499 L:      linux-m68k@lists.linux-m68k.org
6500 W:      http://www.linux-m68k.org/
6501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6502 S:      Maintained
6503 F:      arch/m68k/
6504 F:      drivers/zorro/
6505
6506 M68K ON APPLE MACINTOSH
6507 M:      Joshua Thompson <funaho@jurai.org>
6508 W:      http://www.mac.linux-m68k.org/
6509 L:      linux-m68k@lists.linux-m68k.org
6510 S:      Maintained
6511 F:      arch/m68k/mac/
6512
6513 M68K ON HP9000/300
6514 M:      Philip Blundell <philb@gnu.org>
6515 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6516 S:      Maintained
6517 F:      arch/m68k/hp300/
6518
6519 M88DS3103 MEDIA DRIVER
6520 M:      Antti Palosaari <crope@iki.fi>
6521 L:      linux-media@vger.kernel.org
6522 W:      http://linuxtv.org/
6523 W:      http://palosaari.fi/linux/
6524 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6525 T:      git git://linuxtv.org/anttip/media_tree.git
6526 S:      Maintained
6527 F:      drivers/media/dvb-frontends/m88ds3103*
6528
6529 M88RS2000 MEDIA DRIVER
6530 M:      Malcolm Priestley <tvboxspy@gmail.com>
6531 L:      linux-media@vger.kernel.org
6532 W:      http://linuxtv.org/
6533 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6534 S:      Maintained
6535 F:      drivers/media/dvb-frontends/m88rs2000*
6536
6537 MA901 MASTERKIT USB FM RADIO DRIVER
6538 M:      Alexey Klimov <klimov.linux@gmail.com>
6539 L:      linux-media@vger.kernel.org
6540 T:      git git://linuxtv.org/media_tree.git
6541 S:      Maintained
6542 F:      drivers/media/radio/radio-ma901.c
6543
6544 MAC80211
6545 M:      Johannes Berg <johannes@sipsolutions.net>
6546 L:      linux-wireless@vger.kernel.org
6547 W:      http://wireless.kernel.org/
6548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6550 S:      Maintained
6551 F:      Documentation/networking/mac80211-injection.txt
6552 F:      include/net/mac80211.h
6553 F:      net/mac80211/
6554
6555 MACVLAN DRIVER
6556 M:      Patrick McHardy <kaber@trash.net>
6557 L:      netdev@vger.kernel.org
6558 S:      Maintained
6559 F:      drivers/net/macvlan.c
6560 F:      include/linux/if_macvlan.h
6561
6562 MAILBOX API
6563 M:      Jassi Brar <jassisinghbrar@gmail.com>
6564 L:      linux-kernel@vger.kernel.org
6565 S:      Maintained
6566 F:      drivers/mailbox/
6567 F:      include/linux/mailbox_client.h
6568 F:      include/linux/mailbox_controller.h
6569
6570 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6571 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6572 W:      http://www.kernel.org/doc/man-pages
6573 L:      linux-man@vger.kernel.org
6574 S:      Maintained
6575
6576 MARVELL ARMADA DRM SUPPORT
6577 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6578 S:      Maintained
6579 F:      drivers/gpu/drm/armada/
6580
6581 MARVELL 88E6352 DSA support
6582 M:      Guenter Roeck <linux@roeck-us.net>
6583 S:      Maintained
6584 F:      drivers/net/dsa/mv88e6352.c
6585
6586 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6587 M:      Mirko Lindner <mlindner@marvell.com>
6588 M:      Stephen Hemminger <stephen@networkplumber.org>
6589 L:      netdev@vger.kernel.org
6590 S:      Maintained
6591 F:      drivers/net/ethernet/marvell/sk*
6592
6593 MARVELL LIBERTAS WIRELESS DRIVER
6594 L:      libertas-dev@lists.infradead.org
6595 S:      Orphan
6596 F:      drivers/net/wireless/libertas/
6597
6598 MARVELL MV643XX ETHERNET DRIVER
6599 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6600 L:      netdev@vger.kernel.org
6601 S:      Maintained
6602 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6603 F:      include/linux/mv643xx.h
6604
6605 MARVELL MVNETA ETHERNET DRIVER
6606 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6607 L:      netdev@vger.kernel.org
6608 S:      Maintained
6609 F:      drivers/net/ethernet/marvell/mvneta.*
6610
6611 MARVELL MWIFIEX WIRELESS DRIVER
6612 M:      Amitkumar Karwar <akarwar@marvell.com>
6613 M:      Nishant Sarmukadam <nishants@marvell.com>
6614 L:      linux-wireless@vger.kernel.org
6615 S:      Maintained
6616 F:      drivers/net/wireless/mwifiex/
6617
6618 MARVELL MWL8K WIRELESS DRIVER
6619 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6620 L:      linux-wireless@vger.kernel.org
6621 S:      Odd Fixes
6622 F:      drivers/net/wireless/mwl8k.c
6623
6624 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6625 M:      Nicolas Pitre <nico@fluxnic.net>
6626 S:      Odd Fixes
6627 F:      drivers/mmc/host/mvsdio.*
6628
6629 MATROX FRAMEBUFFER DRIVER
6630 L:      linux-fbdev@vger.kernel.org
6631 S:      Orphan
6632 F:      drivers/video/fbdev/matrox/matroxfb_*
6633 F:      include/uapi/linux/matroxfb.h
6634
6635 MAX16065 HARDWARE MONITOR DRIVER
6636 M:      Guenter Roeck <linux@roeck-us.net>
6637 L:      lm-sensors@lm-sensors.org
6638 S:      Maintained
6639 F:      Documentation/hwmon/max16065
6640 F:      drivers/hwmon/max16065.c
6641
6642 MAX20751 HARDWARE MONITOR DRIVER
6643 M:      Guenter Roeck <linux@roeck-us.net>
6644 L:      lm-sensors@lm-sensors.org
6645 S:      Maintained
6646 F:      Documentation/hwmon/max20751
6647 F:      drivers/hwmon/max20751.c
6648
6649 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6650 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6651 L:      lm-sensors@lm-sensors.org
6652 S:      Maintained
6653 F:      Documentation/hwmon/max6650
6654 F:      drivers/hwmon/max6650.c
6655
6656 MAX6697 HARDWARE MONITOR DRIVER
6657 M:      Guenter Roeck <linux@roeck-us.net>
6658 L:      lm-sensors@lm-sensors.org
6659 S:      Maintained
6660 F:      Documentation/hwmon/max6697
6661 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6662 F:      drivers/hwmon/max6697.c
6663 F:      include/linux/platform_data/max6697.h
6664
6665 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6666 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6667 L:      linux-pm@vger.kernel.org
6668 S:      Supported
6669 F:      drivers/power/max14577_charger.c
6670 F:      drivers/power/max77693_charger.c
6671
6672 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6673 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6674 L:      linux-kernel@vger.kernel.org
6675 S:      Supported
6676 F:      drivers/*/*max77802.c
6677 F:      Documentation/devicetree/bindings/*/*max77802.txt
6678 F:      include/dt-bindings/*/*max77802.h
6679
6680 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6681 M:      Chanwoo Choi <cw00.choi@samsung.com>
6682 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6683 L:      linux-kernel@vger.kernel.org
6684 S:      Supported
6685 F:      drivers/*/max14577.c
6686 F:      drivers/*/max77686.c
6687 F:      drivers/*/max77693.c
6688 F:      drivers/extcon/extcon-max14577.c
6689 F:      drivers/extcon/extcon-max77693.c
6690 F:      drivers/rtc/rtc-max77686.c
6691 F:      drivers/clk/clk-max77686.c
6692 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6693 F:      Documentation/devicetree/bindings/*/max77686.txt
6694 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6695 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6696 F:      include/linux/mfd/max14577*.h
6697 F:      include/linux/mfd/max77686*.h
6698 F:      include/linux/mfd/max77693*.h
6699
6700 MAXIRADIO FM RADIO RECEIVER DRIVER
6701 M:      Hans Verkuil <hverkuil@xs4all.nl>
6702 L:      linux-media@vger.kernel.org
6703 T:      git git://linuxtv.org/media_tree.git
6704 W:      http://linuxtv.org
6705 S:      Maintained
6706 F:      drivers/media/radio/radio-maxiradio*
6707
6708 MEDIA DRIVERS FOR RENESAS - VSP1
6709 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6710 L:      linux-media@vger.kernel.org
6711 L:      linux-sh@vger.kernel.org
6712 T:      git git://linuxtv.org/media_tree.git
6713 S:      Supported
6714 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6715 F:      drivers/media/platform/vsp1/
6716
6717 MEDIA DRIVERS FOR ASCOT2E
6718 M:      Sergey Kozlov <serjk@netup.ru>
6719 L:      linux-media@vger.kernel.org
6720 W:      http://linuxtv.org
6721 W:      http://netup.tv/
6722 T:      git git://linuxtv.org/media_tree.git
6723 S:      Supported
6724 F:      drivers/media/dvb-frontends/ascot2e*
6725
6726 MEDIA DRIVERS FOR CXD2841ER
6727 M:      Sergey Kozlov <serjk@netup.ru>
6728 L:      linux-media@vger.kernel.org
6729 W:      http://linuxtv.org/
6730 W:      http://netup.tv/
6731 T:      git git://linuxtv.org/media_tree.git
6732 S:      Supported
6733 F:      drivers/media/dvb-frontends/cxd2841er*
6734
6735 MEDIA DRIVERS FOR HORUS3A
6736 M:      Sergey Kozlov <serjk@netup.ru>
6737 L:      linux-media@vger.kernel.org
6738 W:      http://linuxtv.org/
6739 W:      http://netup.tv/
6740 T:      git git://linuxtv.org/media_tree.git
6741 S:      Supported
6742 F:      drivers/media/dvb-frontends/horus3a*
6743
6744 MEDIA DRIVERS FOR LNBH25
6745 M:      Sergey Kozlov <serjk@netup.ru>
6746 L:      linux-media@vger.kernel.org
6747 W:      http://linuxtv.org/
6748 W:      http://netup.tv/
6749 T:      git git://linuxtv.org/media_tree.git
6750 S:      Supported
6751 F:      drivers/media/dvb-frontends/lnbh25*
6752
6753 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6754 M:      Sergey Kozlov <serjk@netup.ru>
6755 L:      linux-media@vger.kernel.org
6756 W:      http://linuxtv.org/
6757 W:      http://netup.tv/
6758 T:      git git://linuxtv.org/media_tree.git
6759 S:      Supported
6760 F:      drivers/media/pci/netup_unidvb/*
6761
6762 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6763 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6764 P:      LinuxTV.org Project
6765 L:      linux-media@vger.kernel.org
6766 W:      http://linuxtv.org
6767 Q:      http://patchwork.kernel.org/project/linux-media/list/
6768 T:      git git://linuxtv.org/media_tree.git
6769 S:      Maintained
6770 F:      Documentation/dvb/
6771 F:      Documentation/video4linux/
6772 F:      Documentation/DocBook/media/
6773 F:      drivers/media/
6774 F:      drivers/staging/media/
6775 F:      include/media/
6776 F:      include/uapi/linux/dvb/
6777 F:      include/uapi/linux/videodev2.h
6778 F:      include/uapi/linux/media.h
6779 F:      include/uapi/linux/v4l2-*
6780 F:      include/uapi/linux/meye.h
6781 F:      include/uapi/linux/ivtv*
6782 F:      include/uapi/linux/uvcvideo.h
6783
6784 MEDIATEK MT7601U WIRELESS LAN DRIVER
6785 M:      Jakub Kicinski <kubakici@wp.pl>
6786 L:      linux-wireless@vger.kernel.org
6787 S:      Maintained
6788 F:      drivers/net/wireless/mediatek/mt7601u/
6789
6790 MEGARAID SCSI/SAS DRIVERS
6791 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6792 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6793 M:      Uday Lingala <uday.lingala@avagotech.com>
6794 L:      megaraidlinux.pdl@avagotech.com
6795 L:      linux-scsi@vger.kernel.org
6796 W:      http://www.lsi.com
6797 S:      Maintained
6798 F:      Documentation/scsi/megaraid.txt
6799 F:      drivers/scsi/megaraid.*
6800 F:      drivers/scsi/megaraid/
6801
6802 MELLANOX ETHERNET DRIVER (mlx4_en)
6803 M:      Amir Vadai <amirv@mellanox.com>
6804 M:      Ido Shamay <idos@mellanox.com>
6805 L:      netdev@vger.kernel.org
6806 S:      Supported
6807 W:      http://www.mellanox.com
6808 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6809 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6810
6811 MELLANOX ETHERNET SWITCH DRIVERS
6812 M:      Jiri Pirko <jiri@mellanox.com>
6813 M:      Ido Schimmel <idosch@mellanox.com>
6814 L:      netdev@vger.kernel.org
6815 S:      Supported
6816 W:      http://www.mellanox.com
6817 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6818 F:      drivers/net/ethernet/mellanox/mlxsw/
6819
6820 MEMBARRIER SUPPORT
6821 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6822 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6823 L:      linux-kernel@vger.kernel.org
6824 S:      Supported
6825 F:      kernel/membarrier.c
6826 F:      include/uapi/linux/membarrier.h
6827
6828 MEMORY MANAGEMENT
6829 L:      linux-mm@kvack.org
6830 W:      http://www.linux-mm.org
6831 S:      Maintained
6832 F:      include/linux/mm.h
6833 F:      include/linux/gfp.h
6834 F:      include/linux/mmzone.h
6835 F:      include/linux/memory_hotplug.h
6836 F:      include/linux/vmalloc.h
6837 F:      mm/
6838
6839 MEMORY TECHNOLOGY DEVICES (MTD)
6840 M:      David Woodhouse <dwmw2@infradead.org>
6841 M:      Brian Norris <computersforpeace@gmail.com>
6842 L:      linux-mtd@lists.infradead.org
6843 W:      http://www.linux-mtd.infradead.org/
6844 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6845 T:      git git://git.infradead.org/linux-mtd.git
6846 T:      git git://git.infradead.org/l2-mtd.git
6847 S:      Maintained
6848 F:      drivers/mtd/
6849 F:      include/linux/mtd/
6850 F:      include/uapi/mtd/
6851
6852 MEN A21 WATCHDOG DRIVER
6853 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6854 L:      linux-watchdog@vger.kernel.org
6855 S:      Maintained
6856 F:      drivers/watchdog/mena21_wdt.c
6857
6858 MEN CHAMELEON BUS (mcb)
6859 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6860 S:      Maintained
6861 F:      drivers/mcb/
6862 F:      include/linux/mcb.h
6863 F:      Documentation/men-chameleon-bus.txt
6864
6865 MEN F21BMC (Board Management Controller)
6866 M:      Andreas Werner <andreas.werner@men.de>
6867 S:      Supported
6868 F:      drivers/mfd/menf21bmc.c
6869 F:      drivers/watchdog/menf21bmc_wdt.c
6870 F:      drivers/leds/leds-menf21bmc.c
6871 F:      drivers/hwmon/menf21bmc_hwmon.c
6872 F:      Documentation/hwmon/menf21bmc
6873
6874 METAG ARCHITECTURE
6875 M:      James Hogan <james.hogan@imgtec.com>
6876 L:      linux-metag@vger.kernel.org
6877 S:      Supported
6878 F:      arch/metag/
6879 F:      Documentation/metag/
6880 F:      Documentation/devicetree/bindings/metag/
6881 F:      drivers/clocksource/metag_generic.c
6882 F:      drivers/irqchip/irq-metag.c
6883 F:      drivers/irqchip/irq-metag-ext.c
6884 F:      drivers/tty/metag_da.c
6885
6886 MICROBLAZE ARCHITECTURE
6887 M:      Michal Simek <monstr@monstr.eu>
6888 W:      http://www.monstr.eu/fdt/
6889 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6890 S:      Supported
6891 F:      arch/microblaze/
6892
6893 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6894 M:      Chen Yu <yu.c.chen@intel.com>
6895 L:      platform-driver-x86@vger.kernel.org
6896 S:      Supported
6897 F:      drivers/platform/x86/surfacepro3_button.c
6898
6899 MICROTEK X6 SCANNER
6900 M:      Oliver Neukum <oliver@neukum.org>
6901 S:      Maintained
6902 F:      drivers/usb/image/microtek.*
6903
6904 MIPS
6905 M:      Ralf Baechle <ralf@linux-mips.org>
6906 L:      linux-mips@linux-mips.org
6907 W:      http://www.linux-mips.org/
6908 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6909 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6910 S:      Supported
6911 F:      Documentation/mips/
6912 F:      arch/mips/
6913
6914 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6915 M:      Hans Verkuil <hverkuil@xs4all.nl>
6916 L:      linux-media@vger.kernel.org
6917 T:      git git://linuxtv.org/media_tree.git
6918 W:      http://linuxtv.org
6919 S:      Odd Fixes
6920 F:      drivers/media/radio/radio-miropcm20*
6921
6922 Mellanox MLX5 core VPI driver
6923 M:      Eli Cohen <eli@mellanox.com>
6924 L:      netdev@vger.kernel.org
6925 L:      linux-rdma@vger.kernel.org
6926 W:      http://www.mellanox.com
6927 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6928 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6929 T:      git git://openfabrics.org/~eli/connect-ib.git
6930 S:      Supported
6931 F:      drivers/net/ethernet/mellanox/mlx5/core/
6932 F:      include/linux/mlx5/
6933
6934 Mellanox MLX5 IB driver
6935 M:      Eli Cohen <eli@mellanox.com>
6936 L:      linux-rdma@vger.kernel.org
6937 W:      http://www.mellanox.com
6938 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6939 T:      git git://openfabrics.org/~eli/connect-ib.git
6940 S:      Supported
6941 F:      include/linux/mlx5/
6942 F:      drivers/infiniband/hw/mlx5/
6943
6944 MN88472 MEDIA DRIVER
6945 M:      Antti Palosaari <crope@iki.fi>
6946 L:      linux-media@vger.kernel.org
6947 W:      http://linuxtv.org/
6948 W:      http://palosaari.fi/linux/
6949 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6950 T:      git git://linuxtv.org/anttip/media_tree.git
6951 S:      Maintained
6952 F:      drivers/staging/media/mn88472/
6953 F:      drivers/media/dvb-frontends/mn88472.h
6954
6955 MN88473 MEDIA DRIVER
6956 M:      Antti Palosaari <crope@iki.fi>
6957 L:      linux-media@vger.kernel.org
6958 W:      http://linuxtv.org/
6959 W:      http://palosaari.fi/linux/
6960 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6961 T:      git git://linuxtv.org/anttip/media_tree.git
6962 S:      Maintained
6963 F:      drivers/staging/media/mn88473/
6964 F:      drivers/media/dvb-frontends/mn88473.h
6965
6966 MODULE SUPPORT
6967 M:      Rusty Russell <rusty@rustcorp.com.au>
6968 S:      Maintained
6969 F:      include/linux/module.h
6970 F:      kernel/module.c
6971
6972 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6973 W:      http://popies.net/meye/
6974 S:      Orphan
6975 F:      Documentation/video4linux/meye.txt
6976 F:      drivers/media/pci/meye/
6977 F:      include/uapi/linux/meye.h
6978
6979 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6980 M:      Jiri Slaby <jirislaby@gmail.com>
6981 S:      Maintained
6982 F:      Documentation/serial/moxa-smartio
6983 F:      drivers/tty/mxser.*
6984
6985 MR800 AVERMEDIA USB FM RADIO DRIVER
6986 M:      Alexey Klimov <klimov.linux@gmail.com>
6987 L:      linux-media@vger.kernel.org
6988 T:      git git://linuxtv.org/media_tree.git
6989 S:      Maintained
6990 F:      drivers/media/radio/radio-mr800.c
6991
6992 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6993 M:      Alan Ott <alan@signal11.us>
6994 L:      linux-wpan@vger.kernel.org
6995 S:      Maintained
6996 F:      drivers/net/ieee802154/mrf24j40.c
6997
6998 MSI LAPTOP SUPPORT
6999 M:      "Lee, Chun-Yi" <jlee@suse.com>
7000 L:      platform-driver-x86@vger.kernel.org
7001 S:      Maintained
7002 F:      drivers/platform/x86/msi-laptop.c
7003
7004 MSI WMI SUPPORT
7005 L:      platform-driver-x86@vger.kernel.org
7006 S:      Orphan
7007 F:      drivers/platform/x86/msi-wmi.c
7008
7009 MSI001 MEDIA DRIVER
7010 M:      Antti Palosaari <crope@iki.fi>
7011 L:      linux-media@vger.kernel.org
7012 W:      http://linuxtv.org/
7013 W:      http://palosaari.fi/linux/
7014 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7015 T:      git git://linuxtv.org/anttip/media_tree.git
7016 S:      Maintained
7017 F:      drivers/media/tuners/msi001*
7018
7019 MSI2500 MEDIA DRIVER
7020 M:      Antti Palosaari <crope@iki.fi>
7021 L:      linux-media@vger.kernel.org
7022 W:      http://linuxtv.org/
7023 W:      http://palosaari.fi/linux/
7024 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7025 T:      git git://linuxtv.org/anttip/media_tree.git
7026 S:      Maintained
7027 F:      drivers/media/usb/msi2500/
7028
7029 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7030 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7031 L:      linux-mtd@lists.infradead.org
7032 S:      Maintained
7033 F:      drivers/mtd/devices/docg3*
7034
7035 MT9M032 APTINA SENSOR DRIVER
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/mt9m032.c
7041 F:      include/media/mt9m032.h
7042
7043 MT9P031 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/mt9p031.c
7049 F:      include/media/mt9p031.h
7050
7051 MT9T001 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:      drivers/media/i2c/mt9t001.c
7057 F:      include/media/mt9t001.h
7058
7059 MT9V032 APTINA CAMERA SENSOR
7060 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7061 L:      linux-media@vger.kernel.org
7062 T:      git git://linuxtv.org/media_tree.git
7063 S:      Maintained
7064 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7065 F:      drivers/media/i2c/mt9v032.c
7066 F:      include/media/mt9v032.h
7067
7068 MULTIFUNCTION DEVICES (MFD)
7069 M:      Samuel Ortiz <sameo@linux.intel.com>
7070 M:      Lee Jones <lee.jones@linaro.org>
7071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7072 S:      Supported
7073 F:      drivers/mfd/
7074 F:      include/linux/mfd/
7075
7076 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7077 M:      Ulf Hansson <ulf.hansson@linaro.org>
7078 L:      linux-mmc@vger.kernel.org
7079 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7080 S:      Maintained
7081 F:      drivers/mmc/
7082 F:      include/linux/mmc/
7083 F:      include/uapi/linux/mmc/
7084
7085 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7086 S:      Orphan
7087 F:      drivers/mmc/host/mmc_spi.c
7088 F:      include/linux/spi/mmc_spi.h
7089
7090 MULTISOUND SOUND DRIVER
7091 M:      Andrew Veliath <andrewtv@usa.net>
7092 S:      Maintained
7093 F:      Documentation/sound/oss/MultiSound
7094 F:      sound/oss/msnd*
7095
7096 MULTITECH MULTIPORT CARD (ISICOM)
7097 S:      Orphan
7098 F:      drivers/tty/isicom.c
7099 F:      include/linux/isicom.h
7100
7101 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7102 M:      Felipe Balbi <balbi@ti.com>
7103 L:      linux-usb@vger.kernel.org
7104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7105 S:      Maintained
7106 F:      drivers/usb/musb/
7107
7108 MXL5007T MEDIA DRIVER
7109 M:      Michael Krufky <mkrufky@linuxtv.org>
7110 L:      linux-media@vger.kernel.org
7111 W:      http://linuxtv.org/
7112 W:      http://github.com/mkrufky
7113 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7114 T:      git git://linuxtv.org/mkrufky/tuners.git
7115 S:      Maintained
7116 F:      drivers/media/tuners/mxl5007t.*
7117
7118 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7119 M:      Hyong-Youb Kim <hykim@myri.com>
7120 L:      netdev@vger.kernel.org
7121 W:      https://www.myricom.com/support/downloads/myri10ge.html
7122 S:      Supported
7123 F:      drivers/net/ethernet/myricom/myri10ge/
7124
7125 NATSEMI ETHERNET DRIVER (DP8381x)
7126 S:      Orphan
7127 F:      drivers/net/ethernet/natsemi/natsemi.c
7128
7129 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7130 M:      Daniel Mack <zonque@gmail.com>
7131 S:      Maintained
7132 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7133 W:      http://www.native-instruments.com
7134 F:      sound/usb/caiaq/
7135
7136 NCP FILESYSTEM
7137 M:      Petr Vandrovec <petr@vandrovec.name>
7138 S:      Odd Fixes
7139 F:      fs/ncpfs/
7140
7141 NCR 5380 SCSI DRIVERS
7142 M:      Finn Thain <fthain@telegraphics.com.au>
7143 M:      Michael Schmitz <schmitzmic@gmail.com>
7144 L:      linux-scsi@vger.kernel.org
7145 S:      Maintained
7146 F:      Documentation/scsi/g_NCR5380.txt
7147 F:      drivers/scsi/NCR5380.*
7148 F:      drivers/scsi/arm/cumana_1.c
7149 F:      drivers/scsi/arm/oak.c
7150 F:      drivers/scsi/atari_NCR5380.c
7151 F:      drivers/scsi/atari_scsi.*
7152 F:      drivers/scsi/dmx3191d.c
7153 F:      drivers/scsi/dtc.*
7154 F:      drivers/scsi/g_NCR5380.*
7155 F:      drivers/scsi/g_NCR5380_mmio.c
7156 F:      drivers/scsi/mac_scsi.*
7157 F:      drivers/scsi/pas16.*
7158 F:      drivers/scsi/sun3_scsi.*
7159 F:      drivers/scsi/sun3_scsi_vme.c
7160 F:      drivers/scsi/t128.*
7161
7162 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7163 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7164 L:      linux-scsi@vger.kernel.org
7165 S:      Maintained
7166 F:      drivers/scsi/NCR_D700.*
7167
7168 NCT6775 HARDWARE MONITOR DRIVER
7169 M:      Guenter Roeck <linux@roeck-us.net>
7170 L:      lm-sensors@lm-sensors.org
7171 S:      Maintained
7172 F:      Documentation/hwmon/nct6775
7173 F:      drivers/hwmon/nct6775.c
7174
7175 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7176 M:      Faisal Latif <faisal.latif@intel.com>
7177 L:      linux-rdma@vger.kernel.org
7178 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7179 S:      Supported
7180 F:      drivers/infiniband/hw/nes/
7181
7182 NETEM NETWORK EMULATOR
7183 M:      Stephen Hemminger <stephen@networkplumber.org>
7184 L:      netem@lists.linux-foundation.org
7185 S:      Maintained
7186 F:      net/sched/sch_netem.c
7187
7188 NETERION 10GbE DRIVERS (s2io/vxge)
7189 M:      Jon Mason <jdmason@kudzu.us>
7190 L:      netdev@vger.kernel.org
7191 S:      Supported
7192 F:      Documentation/networking/s2io.txt
7193 F:      Documentation/networking/vxge.txt
7194 F:      drivers/net/ethernet/neterion/
7195
7196 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7197 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7198 M:      Patrick McHardy <kaber@trash.net>
7199 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7200 L:      netfilter-devel@vger.kernel.org
7201 L:      coreteam@netfilter.org
7202 W:      http://www.netfilter.org/
7203 W:      http://www.iptables.org/
7204 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7207 S:      Supported
7208 F:      include/linux/netfilter*
7209 F:      include/linux/netfilter/
7210 F:      include/net/netfilter/
7211 F:      include/uapi/linux/netfilter*
7212 F:      include/uapi/linux/netfilter/
7213 F:      net/*/netfilter.c
7214 F:      net/*/netfilter/
7215 F:      net/netfilter/
7216 F:      net/bridge/br_netfilter*.c
7217
7218 NETLABEL
7219 M:      Paul Moore <paul@paul-moore.com>
7220 W:      http://netlabel.sf.net
7221 L:      netdev@vger.kernel.org
7222 S:      Maintained
7223 F:      Documentation/netlabel/
7224 F:      include/net/netlabel.h
7225 F:      net/netlabel/
7226
7227 NETROM NETWORK LAYER
7228 M:      Ralf Baechle <ralf@linux-mips.org>
7229 L:      linux-hams@vger.kernel.org
7230 W:      http://www.linux-ax25.org/
7231 S:      Maintained
7232 F:      include/net/netrom.h
7233 F:      include/uapi/linux/netrom.h
7234 F:      net/netrom/
7235
7236 NETWORK BLOCK DEVICE (NBD)
7237 M:      Markus Pargmann <mpa@pengutronix.de>
7238 S:      Maintained
7239 L:      nbd-general@lists.sourceforge.net
7240 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7241 F:      Documentation/blockdev/nbd.txt
7242 F:      drivers/block/nbd.c
7243 F:      include/uapi/linux/nbd.h
7244
7245 NETWORK DROP MONITOR
7246 M:      Neil Horman <nhorman@tuxdriver.com>
7247 L:      netdev@vger.kernel.org
7248 S:      Maintained
7249 W:      https://fedorahosted.org/dropwatch/
7250 F:      net/core/drop_monitor.c
7251
7252 NETWORKING [GENERAL]
7253 M:      "David S. Miller" <davem@davemloft.net>
7254 L:      netdev@vger.kernel.org
7255 W:      http://www.linuxfoundation.org/en/Net
7256 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7259 S:      Maintained
7260 F:      net/
7261 F:      include/net/
7262 F:      include/linux/in.h
7263 F:      include/linux/net.h
7264 F:      include/linux/netdevice.h
7265 F:      include/uapi/linux/in.h
7266 F:      include/uapi/linux/net.h
7267 F:      include/uapi/linux/netdevice.h
7268 F:      include/uapi/linux/net_namespace.h
7269 F:      tools/net/
7270 F:      tools/testing/selftests/net/
7271 F:      lib/random32.c
7272 F:      lib/test_bpf.c
7273
7274 NETWORKING [IPv4/IPv6]
7275 M:      "David S. Miller" <davem@davemloft.net>
7276 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7277 M:      James Morris <jmorris@namei.org>
7278 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7279 M:      Patrick McHardy <kaber@trash.net>
7280 L:      netdev@vger.kernel.org
7281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7282 S:      Maintained
7283 F:      net/ipv4/
7284 F:      net/ipv6/
7285 F:      include/net/ip*
7286 F:      arch/x86/net/*
7287
7288 NETWORKING [IPSEC]
7289 M:      Steffen Klassert <steffen.klassert@secunet.com>
7290 M:      Herbert Xu <herbert@gondor.apana.org.au>
7291 M:      "David S. Miller" <davem@davemloft.net>
7292 L:      netdev@vger.kernel.org
7293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7295 S:      Maintained
7296 F:      net/core/flow.c
7297 F:      net/xfrm/
7298 F:      net/key/
7299 F:      net/ipv4/xfrm*
7300 F:      net/ipv4/esp4.c
7301 F:      net/ipv4/ah4.c
7302 F:      net/ipv4/ipcomp.c
7303 F:      net/ipv4/ip_vti.c
7304 F:      net/ipv6/xfrm*
7305 F:      net/ipv6/esp6.c
7306 F:      net/ipv6/ah6.c
7307 F:      net/ipv6/ipcomp6.c
7308 F:      net/ipv6/ip6_vti.c
7309 F:      include/uapi/linux/xfrm.h
7310 F:      include/net/xfrm.h
7311
7312 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7313 M:      Paul Moore <paul@paul-moore.com>
7314 L:      netdev@vger.kernel.org
7315 S:      Maintained
7316
7317 NETWORKING [WIRELESS]
7318 L:      linux-wireless@vger.kernel.org
7319 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7320
7321 NETWORKING DRIVERS
7322 L:      netdev@vger.kernel.org
7323 W:      http://www.linuxfoundation.org/en/Net
7324 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7327 S:      Odd Fixes
7328 F:      drivers/net/
7329 F:      include/linux/if_*
7330 F:      include/linux/netdevice.h
7331 F:      include/linux/arcdevice.h
7332 F:      include/linux/etherdevice.h
7333 F:      include/linux/fcdevice.h
7334 F:      include/linux/fddidevice.h
7335 F:      include/linux/hippidevice.h
7336 F:      include/linux/inetdevice.h
7337 F:      include/uapi/linux/if_*
7338 F:      include/uapi/linux/netdevice.h
7339
7340 NETWORKING DRIVERS (WIRELESS)
7341 M:      Kalle Valo <kvalo@codeaurora.org>
7342 L:      linux-wireless@vger.kernel.org
7343 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7345 S:      Maintained
7346 F:      drivers/net/wireless/
7347
7348 NETXEN (1/10) GbE SUPPORT
7349 M:      Manish Chopra <manish.chopra@qlogic.com>
7350 M:      Sony Chacko <sony.chacko@qlogic.com>
7351 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7352 L:      netdev@vger.kernel.org
7353 W:      http://www.qlogic.com
7354 S:      Supported
7355 F:      drivers/net/ethernet/qlogic/netxen/
7356
7357 NFC SUBSYSTEM
7358 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7359 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7360 M:      Samuel Ortiz <sameo@linux.intel.com>
7361 L:      linux-wireless@vger.kernel.org
7362 L:      linux-nfc@lists.01.org (subscribers-only)
7363 S:      Supported
7364 F:      net/nfc/
7365 F:      include/net/nfc/
7366 F:      include/uapi/linux/nfc.h
7367 F:      drivers/nfc/
7368 F:      include/linux/platform_data/pn544.h
7369 F:      Documentation/devicetree/bindings/net/nfc/
7370
7371 NFS, SUNRPC, AND LOCKD CLIENTS
7372 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7373 M:      Anna Schumaker <anna.schumaker@netapp.com>
7374 L:      linux-nfs@vger.kernel.org
7375 W:      http://client.linux-nfs.org
7376 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7377 S:      Maintained
7378 F:      fs/lockd/
7379 F:      fs/nfs/
7380 F:      fs/nfs_common/
7381 F:      net/sunrpc/
7382 F:      include/linux/lockd/
7383 F:      include/linux/nfs*
7384 F:      include/linux/sunrpc/
7385 F:      include/uapi/linux/nfs*
7386 F:      include/uapi/linux/sunrpc/
7387
7388 NILFS2 FILESYSTEM
7389 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7390 L:      linux-nilfs@vger.kernel.org
7391 W:      http://nilfs.sourceforge.net/
7392 T:      git git://github.com/konis/nilfs2.git
7393 S:      Supported
7394 F:      Documentation/filesystems/nilfs2.txt
7395 F:      fs/nilfs2/
7396 F:      include/linux/nilfs2_fs.h
7397
7398 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
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/pcmcia/nsp_*
7404
7405 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7406 M:      GOTO Masanori <gotom@debian.or.jp>
7407 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7408 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7409 S:      Maintained
7410 F:      Documentation/scsi/NinjaSCSI.txt
7411 F:      drivers/scsi/nsp32*
7412
7413 NIOS2 ARCHITECTURE
7414 M:      Ley Foon Tan <lftan@altera.com>
7415 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7417 S:      Maintained
7418 F:      arch/nios2/
7419
7420 NOKIA N900 POWER SUPPLY DRIVERS
7421 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7422 S:      Maintained
7423 F:      include/linux/power/bq2415x_charger.h
7424 F:      include/linux/power/bq27x00_battery.h
7425 F:      include/linux/power/isp1704_charger.h
7426 F:      drivers/power/bq2415x_charger.c
7427 F:      drivers/power/bq27x00_battery.c
7428 F:      drivers/power/isp1704_charger.c
7429 F:      drivers/power/rx51_battery.c
7430
7431 NTB DRIVER CORE
7432 M:      Jon Mason <jdmason@kudzu.us>
7433 M:      Dave Jiang <dave.jiang@intel.com>
7434 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7435 L:      linux-ntb@googlegroups.com
7436 S:      Supported
7437 W:      https://github.com/jonmason/ntb/wiki
7438 T:      git git://github.com/jonmason/ntb.git
7439 F:      drivers/ntb/
7440 F:      drivers/net/ntb_netdev.c
7441 F:      include/linux/ntb.h
7442 F:      include/linux/ntb_transport.h
7443
7444 NTB INTEL DRIVER
7445 M:      Jon Mason <jdmason@kudzu.us>
7446 M:      Dave Jiang <dave.jiang@intel.com>
7447 L:      linux-ntb@googlegroups.com
7448 S:      Supported
7449 W:      https://github.com/jonmason/ntb/wiki
7450 T:      git git://github.com/jonmason/ntb.git
7451 F:      drivers/ntb/hw/intel/
7452
7453 NTFS FILESYSTEM
7454 M:      Anton Altaparmakov <anton@tuxera.com>
7455 L:      linux-ntfs-dev@lists.sourceforge.net
7456 W:      http://www.tuxera.com/
7457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7458 S:      Supported
7459 F:      Documentation/filesystems/ntfs.txt
7460 F:      fs/ntfs/
7461
7462 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7463 M:      Antonino Daplas <adaplas@gmail.com>
7464 L:      linux-fbdev@vger.kernel.org
7465 S:      Maintained
7466 F:      drivers/video/fbdev/riva/
7467 F:      drivers/video/fbdev/nvidia/
7468
7469 NVM EXPRESS DRIVER
7470 M:      Matthew Wilcox <willy@linux.intel.com>
7471 L:      linux-nvme@lists.infradead.org
7472 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7473 S:      Supported
7474 F:      drivers/block/nvme*
7475 F:      include/linux/nvme.h
7476
7477 NVMEM FRAMEWORK
7478 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7479 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7480 S:      Maintained
7481 F:      drivers/nvmem/
7482 F:      Documentation/devicetree/bindings/nvmem/
7483 F:      include/linux/nvmem-consumer.h
7484 F:      include/linux/nvmem-provider.h
7485
7486 NXP-NCI NFC DRIVER
7487 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7488 R:      Charles Gorand <charles.gorand@effinnov.com>
7489 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7490 S:      Supported
7491 F:      drivers/nfc/nxp-nci
7492
7493 NXP TDA998X DRM DRIVER
7494 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7495 S:      Supported
7496 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7497 F:      include/drm/i2c/tda998x.h
7498
7499 NXP TFA9879 DRIVER
7500 M:      Peter Rosin <peda@axentia.se>
7501 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7502 S:      Maintained
7503 F:      sound/soc/codecs/tfa9879*
7504
7505 OMAP SUPPORT
7506 M:      Tony Lindgren <tony@atomide.com>
7507 L:      linux-omap@vger.kernel.org
7508 W:      http://www.muru.com/linux/omap/
7509 W:      http://linux.omap.com/
7510 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7512 S:      Maintained
7513 F:      arch/arm/*omap*/
7514 F:      arch/arm/configs/omap1_defconfig
7515 F:      arch/arm/configs/omap2plus_defconfig
7516 F:      drivers/i2c/busses/i2c-omap.c
7517 F:      drivers/irqchip/irq-omap-intc.c
7518 F:      drivers/mfd/*omap*.c
7519 F:      drivers/mfd/menelaus.c
7520 F:      drivers/mfd/palmas.c
7521 F:      drivers/mfd/tps65217.c
7522 F:      drivers/mfd/tps65218.c
7523 F:      drivers/mfd/tps65910.c
7524 F:      drivers/mfd/twl-core.[ch]
7525 F:      drivers/mfd/twl4030*.c
7526 F:      drivers/mfd/twl6030*.c
7527 F:      drivers/mfd/twl6040*.c
7528 F:      drivers/regulator/palmas-regulator*.c
7529 F:      drivers/regulator/pbias-regulator.c
7530 F:      drivers/regulator/tps65217-regulator.c
7531 F:      drivers/regulator/tps65218-regulator.c
7532 F:      drivers/regulator/tps65910-regulator.c
7533 F:      drivers/regulator/twl-regulator.c
7534 F:      include/linux/i2c-omap.h
7535
7536 OMAP DEVICE TREE SUPPORT
7537 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7538 M:      Tony Lindgren <tony@atomide.com>
7539 L:      linux-omap@vger.kernel.org
7540 L:      devicetree@vger.kernel.org
7541 S:      Maintained
7542 F:      arch/arm/boot/dts/*omap*
7543 F:      arch/arm/boot/dts/*am3*
7544 F:      arch/arm/boot/dts/*am4*
7545 F:      arch/arm/boot/dts/*am5*
7546 F:      arch/arm/boot/dts/*dra7*
7547
7548 OMAP CLOCK FRAMEWORK SUPPORT
7549 M:      Paul Walmsley <paul@pwsan.com>
7550 L:      linux-omap@vger.kernel.org
7551 S:      Maintained
7552 F:      arch/arm/*omap*/*clock*
7553
7554 OMAP POWER MANAGEMENT SUPPORT
7555 M:      Kevin Hilman <khilman@deeprootsystems.com>
7556 L:      linux-omap@vger.kernel.org
7557 S:      Maintained
7558 F:      arch/arm/*omap*/*pm*
7559 F:      drivers/cpufreq/omap-cpufreq.c
7560
7561 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7562 M:      Rajendra Nayak <rnayak@ti.com>
7563 M:      Paul Walmsley <paul@pwsan.com>
7564 L:      linux-omap@vger.kernel.org
7565 S:      Maintained
7566 F:      arch/arm/mach-omap2/prm*
7567
7568 OMAP AUDIO SUPPORT
7569 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7570 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7571 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7572 L:      linux-omap@vger.kernel.org
7573 S:      Maintained
7574 F:      sound/soc/omap/
7575
7576 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7577 M:      Roger Quadros <rogerq@ti.com>
7578 M:      Tony Lindgren <tony@atomide.com>
7579 L:      linux-omap@vger.kernel.org
7580 S:      Maintained
7581 F:      drivers/memory/omap-gpmc.c
7582 F:      arch/arm/mach-omap2/*gpmc*
7583
7584 OMAP FRAMEBUFFER SUPPORT
7585 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7586 L:      linux-fbdev@vger.kernel.org
7587 L:      linux-omap@vger.kernel.org
7588 S:      Maintained
7589 F:      drivers/video/fbdev/omap/
7590
7591 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7592 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7593 L:      linux-omap@vger.kernel.org
7594 L:      linux-fbdev@vger.kernel.org
7595 S:      Maintained
7596 F:      drivers/video/fbdev/omap2/
7597 F:      Documentation/arm/OMAP/DSS
7598
7599 OMAP HARDWARE SPINLOCK SUPPORT
7600 M:      Ohad Ben-Cohen <ohad@wizery.com>
7601 L:      linux-omap@vger.kernel.org
7602 S:      Maintained
7603 F:      drivers/hwspinlock/omap_hwspinlock.c
7604
7605 OMAP MMC SUPPORT
7606 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7607 L:      linux-omap@vger.kernel.org
7608 S:      Maintained
7609 F:      drivers/mmc/host/omap.c
7610
7611 OMAP HS MMC SUPPORT
7612 L:      linux-mmc@vger.kernel.org
7613 L:      linux-omap@vger.kernel.org
7614 S:      Orphan
7615 F:      drivers/mmc/host/omap_hsmmc.c
7616
7617 OMAP RANDOM NUMBER GENERATOR SUPPORT
7618 M:      Deepak Saxena <dsaxena@plexity.net>
7619 S:      Maintained
7620 F:      drivers/char/hw_random/omap-rng.c
7621
7622 OMAP HWMOD SUPPORT
7623 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7624 M:      Paul Walmsley <paul@pwsan.com>
7625 L:      linux-omap@vger.kernel.org
7626 S:      Maintained
7627 F:      arch/arm/mach-omap2/omap_hwmod.*
7628
7629 OMAP HWMOD DATA
7630 M:      Paul Walmsley <paul@pwsan.com>
7631 L:      linux-omap@vger.kernel.org
7632 S:      Maintained
7633 F:      arch/arm/mach-omap2/omap_hwmod*data*
7634
7635 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7636 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7637 L:      linux-omap@vger.kernel.org
7638 S:      Maintained
7639 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7640
7641 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7642 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7643 L:      linux-media@vger.kernel.org
7644 S:      Maintained
7645 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7646 F:      drivers/media/platform/omap3isp/
7647 F:      drivers/staging/media/omap4iss/
7648
7649 OMAP USB SUPPORT
7650 M:      Felipe Balbi <balbi@ti.com>
7651 L:      linux-usb@vger.kernel.org
7652 L:      linux-omap@vger.kernel.org
7653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7654 S:      Maintained
7655 F:      drivers/usb/*/*omap*
7656 F:      arch/arm/*omap*/usb*
7657
7658 OMAP GPIO DRIVER
7659 M:      Javier Martinez Canillas <javier@dowhile0.org>
7660 M:      Santosh Shilimkar <ssantosh@kernel.org>
7661 M:      Kevin Hilman <khilman@deeprootsystems.com>
7662 L:      linux-omap@vger.kernel.org
7663 S:      Maintained
7664 F:      drivers/gpio/gpio-omap.c
7665
7666 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7667 M:      Mark Jackson <mpfj@newflow.co.uk>
7668 L:      linux-omap@vger.kernel.org
7669 S:      Maintained
7670 F:      arch/arm/boot/dts/am335x-nano.dts
7671
7672 OMFS FILESYSTEM
7673 M:      Bob Copeland <me@bobcopeland.com>
7674 L:      linux-karma-devel@lists.sourceforge.net
7675 S:      Maintained
7676 F:      Documentation/filesystems/omfs.txt
7677 F:      fs/omfs/
7678
7679 OMNIKEY CARDMAN 4000 DRIVER
7680 M:      Harald Welte <laforge@gnumonks.org>
7681 S:      Maintained
7682 F:      drivers/char/pcmcia/cm4000_cs.c
7683 F:      include/linux/cm4000_cs.h
7684 F:      include/uapi/linux/cm4000_cs.h
7685
7686 OMNIKEY CARDMAN 4040 DRIVER
7687 M:      Harald Welte <laforge@gnumonks.org>
7688 S:      Maintained
7689 F:      drivers/char/pcmcia/cm4040_cs.*
7690
7691 OMNIVISION OV7670 SENSOR DRIVER
7692 M:      Jonathan Corbet <corbet@lwn.net>
7693 L:      linux-media@vger.kernel.org
7694 T:      git git://linuxtv.org/media_tree.git
7695 S:      Maintained
7696 F:      drivers/media/i2c/ov7670.c
7697
7698 ONENAND FLASH DRIVER
7699 M:      Kyungmin Park <kyungmin.park@samsung.com>
7700 L:      linux-mtd@lists.infradead.org
7701 S:      Maintained
7702 F:      drivers/mtd/onenand/
7703 F:      include/linux/mtd/onenand*.h
7704
7705 ONSTREAM SCSI TAPE DRIVER
7706 M:      Willem Riede <osst@riede.org>
7707 L:      osst-users@lists.sourceforge.net
7708 L:      linux-scsi@vger.kernel.org
7709 S:      Maintained
7710 F:      Documentation/scsi/osst.txt
7711 F:      drivers/scsi/osst.*
7712 F:      drivers/scsi/osst_*.h
7713 F:      drivers/scsi/st.h
7714
7715 OPENCORES I2C BUS DRIVER
7716 M:      Peter Korsgaard <jacmet@sunsite.dk>
7717 L:      linux-i2c@vger.kernel.org
7718 S:      Maintained
7719 F:      Documentation/i2c/busses/i2c-ocores
7720 F:      drivers/i2c/busses/i2c-ocores.c
7721
7722 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7723 M:      Rob Herring <robh+dt@kernel.org>
7724 M:      Frank Rowand <frowand.list@gmail.com>
7725 M:      Grant Likely <grant.likely@linaro.org>
7726 L:      devicetree@vger.kernel.org
7727 W:      http://www.devicetree.org/
7728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7729 S:      Maintained
7730 F:      drivers/of/
7731 F:      include/linux/of*.h
7732 F:      scripts/dtc/
7733
7734 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7735 M:      Rob Herring <robh+dt@kernel.org>
7736 M:      Pawel Moll <pawel.moll@arm.com>
7737 M:      Mark Rutland <mark.rutland@arm.com>
7738 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7739 M:      Kumar Gala <galak@codeaurora.org>
7740 L:      devicetree@vger.kernel.org
7741 S:      Maintained
7742 F:      Documentation/devicetree/
7743 F:      arch/*/boot/dts/
7744 F:      include/dt-bindings/
7745
7746 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7747 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7748 L:      devicetree@vger.kernel.org
7749 S:      Maintained
7750 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7751 F:      Documentation/devicetree/overlay-notes.txt
7752 F:      drivers/of/overlay.c
7753 F:      drivers/of/resolver.c
7754
7755 OPENRISC ARCHITECTURE
7756 M:      Jonas Bonn <jonas@southpole.se>
7757 W:      http://openrisc.net
7758 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7759 S:      Maintained
7760 T:      git git://openrisc.net/~jonas/linux
7761 F:      arch/openrisc/
7762
7763 OPENVSWITCH
7764 M:      Pravin Shelar <pshelar@nicira.com>
7765 L:      netdev@vger.kernel.org
7766 L:      dev@openvswitch.org
7767 W:      http://openvswitch.org
7768 S:      Maintained
7769 F:      net/openvswitch/
7770 F:      include/uapi/linux/openvswitch.h
7771
7772 OPL4 DRIVER
7773 M:      Clemens Ladisch <clemens@ladisch.de>
7774 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7775 T:      git git://git.alsa-project.org/alsa-kernel.git
7776 S:      Maintained
7777 F:      sound/drivers/opl4/
7778
7779 OPROFILE
7780 M:      Robert Richter <rric@kernel.org>
7781 L:      oprofile-list@lists.sf.net
7782 S:      Maintained
7783 F:      arch/*/include/asm/oprofile*.h
7784 F:      arch/*/oprofile/
7785 F:      drivers/oprofile/
7786 F:      include/linux/oprofile.h
7787
7788 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7789 M:      Mark Fasheh <mfasheh@suse.com>
7790 M:      Joel Becker <jlbec@evilplan.org>
7791 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7792 W:      http://ocfs2.wiki.kernel.org
7793 S:      Supported
7794 F:      Documentation/filesystems/ocfs2.txt
7795 F:      Documentation/filesystems/dlmfs.txt
7796 F:      fs/ocfs2/
7797
7798 ORINOCO DRIVER
7799 L:      linux-wireless@vger.kernel.org
7800 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7801 W:      http://www.nongnu.org/orinoco/
7802 S:      Orphan
7803 F:      drivers/net/wireless/orinoco/
7804
7805 OSD LIBRARY and FILESYSTEM
7806 M:      Boaz Harrosh <ooo@electrozaur.com>
7807 M:      Benny Halevy <bhalevy@primarydata.com>
7808 L:      osd-dev@open-osd.org
7809 W:      http://open-osd.org
7810 T:      git git://git.open-osd.org/open-osd.git
7811 S:      Maintained
7812 F:      drivers/scsi/osd/
7813 F:      include/scsi/osd_*
7814 F:      fs/exofs/
7815
7816 OVERLAY FILESYSTEM
7817 M:      Miklos Szeredi <miklos@szeredi.hu>
7818 L:      linux-unionfs@vger.kernel.org
7819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7820 S:      Supported
7821 F:      fs/overlayfs/
7822 F:      Documentation/filesystems/overlayfs.txt
7823
7824 P54 WIRELESS DRIVER
7825 M:      Christian Lamparter <chunkeey@googlemail.com>
7826 L:      linux-wireless@vger.kernel.org
7827 W:      http://wireless.kernel.org/en/users/Drivers/p54
7828 S:      Maintained
7829 F:      drivers/net/wireless/p54/
7830
7831 PA SEMI ETHERNET DRIVER
7832 M:      Olof Johansson <olof@lixom.net>
7833 L:      netdev@vger.kernel.org
7834 S:      Maintained
7835 F:      drivers/net/ethernet/pasemi/*
7836
7837 PA SEMI SMBUS DRIVER
7838 M:      Olof Johansson <olof@lixom.net>
7839 L:      linux-i2c@vger.kernel.org
7840 S:      Maintained
7841 F:      drivers/i2c/busses/i2c-pasemi.c
7842
7843 PADATA PARALLEL EXECUTION MECHANISM
7844 M:      Steffen Klassert <steffen.klassert@secunet.com>
7845 L:      linux-crypto@vger.kernel.org
7846 S:      Maintained
7847 F:      kernel/padata.c
7848 F:      include/linux/padata.h
7849 F:      Documentation/padata.txt
7850
7851 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7852 M:      Harald Welte <laforge@gnumonks.org>
7853 L:      platform-driver-x86@vger.kernel.org
7854 S:      Maintained
7855 F:      drivers/platform/x86/panasonic-laptop.c
7856
7857 PANASONIC MN10300/AM33/AM34 PORT
7858 M:      David Howells <dhowells@redhat.com>
7859 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7860 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7861 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7862 S:      Maintained
7863 F:      Documentation/mn10300/
7864 F:      arch/mn10300/
7865
7866 PARALLEL PORT SUBSYSTEM
7867 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7868 M:      Sudip Mukherjee <sudip@vectorindia.org>
7869 L:      linux-parport@lists.infradead.org (subscribers-only)
7870 S:      Maintained
7871 F:      drivers/parport/
7872 F:      include/linux/parport*.h
7873 F:      drivers/char/ppdev.c
7874 F:      include/uapi/linux/ppdev.h
7875 F:      Documentation/parport*.txt
7876
7877 PARAVIRT_OPS INTERFACE
7878 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7879 M:      Chris Wright <chrisw@sous-sol.org>
7880 M:      Alok Kataria <akataria@vmware.com>
7881 M:      Rusty Russell <rusty@rustcorp.com.au>
7882 L:      virtualization@lists.linux-foundation.org
7883 S:      Supported
7884 F:      Documentation/virtual/paravirt_ops.txt
7885 F:      arch/*/kernel/paravirt*
7886 F:      arch/*/include/asm/paravirt.h
7887
7888 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7889 M:      Tim Waugh <tim@cyberelk.net>
7890 L:      linux-parport@lists.infradead.org (subscribers-only)
7891 S:      Maintained
7892 F:      Documentation/blockdev/paride.txt
7893 F:      drivers/block/paride/
7894
7895 PARISC ARCHITECTURE
7896 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7897 M:      Helge Deller <deller@gmx.de>
7898 L:      linux-parisc@vger.kernel.org
7899 W:      http://www.parisc-linux.org/
7900 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7903 S:      Maintained
7904 F:      arch/parisc/
7905 F:      Documentation/parisc/
7906 F:      drivers/parisc/
7907 F:      drivers/char/agp/parisc-agp.c
7908 F:      drivers/input/serio/gscps2.c
7909 F:      drivers/parport/parport_gsc.*
7910 F:      drivers/tty/serial/8250/8250_gsc.c
7911 F:      drivers/video/fbdev/sti*
7912 F:      drivers/video/console/sti*
7913 F:      drivers/video/logo/logo_parisc*
7914
7915 PC87360 HARDWARE MONITORING DRIVER
7916 M:      Jim Cromie <jim.cromie@gmail.com>
7917 L:      lm-sensors@lm-sensors.org
7918 S:      Maintained
7919 F:      Documentation/hwmon/pc87360
7920 F:      drivers/hwmon/pc87360.c
7921
7922 PC8736x GPIO DRIVER
7923 M:      Jim Cromie <jim.cromie@gmail.com>
7924 S:      Maintained
7925 F:      drivers/char/pc8736x_gpio.c
7926
7927 PC87427 HARDWARE MONITORING DRIVER
7928 M:      Jean Delvare <jdelvare@suse.com>
7929 L:      lm-sensors@lm-sensors.org
7930 S:      Maintained
7931 F:      Documentation/hwmon/pc87427
7932 F:      drivers/hwmon/pc87427.c
7933
7934 PCA9532 LED DRIVER
7935 M:      Riku Voipio <riku.voipio@iki.fi>
7936 S:      Maintained
7937 F:      drivers/leds/leds-pca9532.c
7938 F:      include/linux/leds-pca9532.h
7939
7940 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7941 M:      Guenter Roeck <linux@roeck-us.net>
7942 L:      linux-i2c@vger.kernel.org
7943 S:      Maintained
7944 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7945
7946 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7947 M:      Khalid Aziz <khalid@gonehiking.org>
7948 S:      Maintained
7949 F:      drivers/firmware/pcdp.*
7950
7951 PCI ERROR RECOVERY
7952 M:      Linas Vepstas <linasvepstas@gmail.com>
7953 L:      linux-pci@vger.kernel.org
7954 S:      Supported
7955 F:      Documentation/PCI/pci-error-recovery.txt
7956
7957 PCI SUBSYSTEM
7958 M:      Bjorn Helgaas <bhelgaas@google.com>
7959 L:      linux-pci@vger.kernel.org
7960 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7962 S:      Supported
7963 F:      Documentation/PCI/
7964 F:      drivers/pci/
7965 F:      include/linux/pci*
7966 F:      arch/x86/pci/
7967 F:      arch/x86/kernel/quirks.c
7968
7969 PCI DRIVER FOR ARM VERSATILE PLATFORM
7970 M:      Rob Herring <robh@kernel.org>
7971 L:      linux-pci@vger.kernel.org
7972 L:      linux-arm-kernel@lists.infradead.org
7973 S:      Maintained
7974 F:      Documentation/devicetree/bindings/pci/versatile.txt
7975 F:      drivers/pci/host/pci-versatile.c
7976
7977 PCI DRIVER FOR APPLIEDMICRO XGENE
7978 M:      Tanmay Inamdar <tinamdar@apm.com>
7979 L:      linux-pci@vger.kernel.org
7980 L:      linux-arm-kernel@lists.infradead.org
7981 S:      Maintained
7982 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7983 F:      drivers/pci/host/pci-xgene.c
7984
7985 PCI DRIVER FOR FREESCALE LAYERSCAPE
7986 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7987 M:      Mingkai Hu <mingkai.hu@freescale.com>
7988 M:      Roy Zang <tie-fei.zang@freescale.com>
7989 L:      linuxppc-dev@lists.ozlabs.org
7990 L:      linux-pci@vger.kernel.org
7991 L:      linux-arm-kernel@lists.infradead.org
7992 S:      Maintained
7993 F:      drivers/pci/host/*layerscape*
7994
7995 PCI DRIVER FOR IMX6
7996 M:      Richard Zhu <Richard.Zhu@freescale.com>
7997 M:      Lucas Stach <l.stach@pengutronix.de>
7998 L:      linux-pci@vger.kernel.org
7999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8000 S:      Maintained
8001 F:      drivers/pci/host/*imx6*
8002
8003 PCI DRIVER FOR TI KEYSTONE
8004 M:      Murali Karicheri <m-karicheri2@ti.com>
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/*keystone*
8009
8010 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8011 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8012 M:      Jason Cooper <jason@lakedaemon.net>
8013 L:      linux-pci@vger.kernel.org
8014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8015 S:      Maintained
8016 F:      drivers/pci/host/*mvebu*
8017
8018 PCI DRIVER FOR NVIDIA TEGRA
8019 M:      Thierry Reding <thierry.reding@gmail.com>
8020 L:      linux-tegra@vger.kernel.org
8021 L:      linux-pci@vger.kernel.org
8022 S:      Supported
8023 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8024 F:      drivers/pci/host/pci-tegra.c
8025
8026 PCI DRIVER FOR TI DRA7XX
8027 M:      Kishon Vijay Abraham I <kishon@ti.com>
8028 L:      linux-omap@vger.kernel.org
8029 L:      linux-pci@vger.kernel.org
8030 S:      Supported
8031 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8032 F:      drivers/pci/host/pci-dra7xx.c
8033
8034 PCI DRIVER FOR RENESAS R-CAR
8035 M:      Simon Horman <horms@verge.net.au>
8036 L:      linux-pci@vger.kernel.org
8037 L:      linux-sh@vger.kernel.org
8038 S:      Maintained
8039 F:      drivers/pci/host/*rcar*
8040
8041 PCI DRIVER FOR SAMSUNG EXYNOS
8042 M:      Jingoo Han <jingoohan1@gmail.com>
8043 L:      linux-pci@vger.kernel.org
8044 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8045 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8046 S:      Maintained
8047 F:      drivers/pci/host/pci-exynos.c
8048
8049 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8050 M:      Jingoo Han <jingoohan1@gmail.com>
8051 M:      Pratyush Anand <pratyush.anand@gmail.com>
8052 L:      linux-pci@vger.kernel.org
8053 S:      Maintained
8054 F:      drivers/pci/host/*designware*
8055
8056 PCI DRIVER FOR GENERIC OF HOSTS
8057 M:      Will Deacon <will.deacon@arm.com>
8058 L:      linux-pci@vger.kernel.org
8059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8060 S:      Maintained
8061 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8062 F:      drivers/pci/host/pci-host-generic.c
8063
8064 PCIE DRIVER FOR ST SPEAR13XX
8065 M:      Pratyush Anand <pratyush.anand@gmail.com>
8066 L:      linux-pci@vger.kernel.org
8067 S:      Maintained
8068 F:      drivers/pci/host/*spear*
8069
8070 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8071 M:      Duc Dang <dhdang@apm.com>
8072 L:      linux-pci@vger.kernel.org
8073 L:      linux-arm-kernel@lists.infradead.org
8074 S:      Maintained
8075 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8076 F:      drivers/pci/host/pci-xgene-msi.c
8077
8078 PCMCIA SUBSYSTEM
8079 P:      Linux PCMCIA Team
8080 L:      linux-pcmcia@lists.infradead.org
8081 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8083 S:      Maintained
8084 F:      Documentation/pcmcia/
8085 F:      drivers/pcmcia/
8086 F:      include/pcmcia/
8087
8088 PCNET32 NETWORK DRIVER
8089 M:      Don Fry <pcnet32@frontier.com>
8090 L:      netdev@vger.kernel.org
8091 S:      Maintained
8092 F:      drivers/net/ethernet/amd/pcnet32.c
8093
8094 PCRYPT PARALLEL CRYPTO ENGINE
8095 M:      Steffen Klassert <steffen.klassert@secunet.com>
8096 L:      linux-crypto@vger.kernel.org
8097 S:      Maintained
8098 F:      crypto/pcrypt.c
8099 F:      include/crypto/pcrypt.h
8100
8101 PER-CPU MEMORY ALLOCATOR
8102 M:      Tejun Heo <tj@kernel.org>
8103 M:      Christoph Lameter <cl@linux-foundation.org>
8104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8105 S:      Maintained
8106 F:      include/linux/percpu*.h
8107 F:      mm/percpu*.c
8108 F:      arch/*/include/asm/percpu.h
8109
8110 PER-TASK DELAY ACCOUNTING
8111 M:      Balbir Singh <bsingharora@gmail.com>
8112 S:      Maintained
8113 F:      include/linux/delayacct.h
8114 F:      kernel/delayacct.c
8115
8116 PERFORMANCE EVENTS SUBSYSTEM
8117 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8118 M:      Ingo Molnar <mingo@redhat.com>
8119 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8120 L:      linux-kernel@vger.kernel.org
8121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8122 S:      Supported
8123 F:      kernel/events/*
8124 F:      include/linux/perf_event.h
8125 F:      include/uapi/linux/perf_event.h
8126 F:      arch/*/kernel/perf_event*.c
8127 F:      arch/*/kernel/*/perf_event*.c
8128 F:      arch/*/kernel/*/*/perf_event*.c
8129 F:      arch/*/include/asm/perf_event.h
8130 F:      arch/*/kernel/perf_callchain.c
8131 F:      tools/perf/
8132
8133 PERSONALITY HANDLING
8134 M:      Christoph Hellwig <hch@infradead.org>
8135 L:      linux-abi-devel@lists.sourceforge.net
8136 S:      Maintained
8137 F:      include/linux/personality.h
8138 F:      include/uapi/linux/personality.h
8139
8140 PHONET PROTOCOL
8141 M:      Remi Denis-Courmont <courmisch@gmail.com>
8142 S:      Supported
8143 F:      Documentation/networking/phonet.txt
8144 F:      include/linux/phonet.h
8145 F:      include/net/phonet/
8146 F:      include/uapi/linux/phonet.h
8147 F:      net/phonet/
8148
8149 PHRAM MTD DRIVER
8150 M:      Joern Engel <joern@lazybastard.org>
8151 L:      linux-mtd@lists.infradead.org
8152 S:      Maintained
8153 F:      drivers/mtd/devices/phram.c
8154
8155 PICOLCD HID DRIVER
8156 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8157 L:      linux-input@vger.kernel.org
8158 S:      Maintained
8159 F:      drivers/hid/hid-picolcd*
8160
8161 PICOXCELL SUPPORT
8162 M:      Jamie Iles <jamie@jamieiles.com>
8163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8164 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8165 S:      Supported
8166 F:      arch/arm/boot/dts/picoxcell*
8167 F:      arch/arm/mach-picoxcell/
8168 F:      drivers/crypto/picoxcell*
8169
8170 PIN CONTROL SUBSYSTEM
8171 M:      Linus Walleij <linus.walleij@linaro.org>
8172 L:      linux-gpio@vger.kernel.org
8173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8174 S:      Maintained
8175 F:      drivers/pinctrl/
8176 F:      include/linux/pinctrl/
8177
8178 PIN CONTROLLER - ATMEL AT91
8179 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8180 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8181 S:      Maintained
8182 F:      drivers/pinctrl/pinctrl-at91.*
8183
8184 PIN CONTROLLER - INTEL
8185 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8186 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8187 S:      Maintained
8188 F:      drivers/pinctrl/intel/
8189
8190 PIN CONTROLLER - RENESAS
8191 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8192 L:      linux-sh@vger.kernel.org
8193 S:      Maintained
8194 F:      drivers/pinctrl/sh-pfc/
8195
8196 PIN CONTROLLER - SAMSUNG
8197 M:      Tomasz Figa <tomasz.figa@gmail.com>
8198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8199 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8200 S:      Maintained
8201 F:      drivers/pinctrl/samsung/
8202
8203 PIN CONTROLLER - ST SPEAR
8204 M:      Viresh Kumar <vireshk@kernel.org>
8205 L:      spear-devel@list.st.com
8206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8207 W:      http://www.st.com/spear
8208 S:      Maintained
8209 F:      drivers/pinctrl/spear/
8210
8211 PKTCDVD DRIVER
8212 M:      Jiri Kosina <jikos@kernel.org>
8213 S:      Maintained
8214 F:      drivers/block/pktcdvd.c
8215 F:      include/linux/pktcdvd.h
8216 F:      include/uapi/linux/pktcdvd.h
8217
8218 PKUNITY SOC DRIVERS
8219 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8220 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8221 S:      Maintained
8222 T:      git git://github.com/gxt/linux.git
8223 F:      drivers/input/serio/i8042-unicore32io.h
8224 F:      drivers/i2c/busses/i2c-puv3.c
8225 F:      drivers/video/fbdev/fb-puv3.c
8226 F:      drivers/rtc/rtc-puv3.c
8227
8228 PMBUS HARDWARE MONITORING DRIVERS
8229 M:      Guenter Roeck <linux@roeck-us.net>
8230 L:      lm-sensors@lm-sensors.org
8231 W:      http://www.lm-sensors.org/
8232 W:      http://www.roeck-us.net/linux/drivers/
8233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8234 S:      Maintained
8235 F:      Documentation/hwmon/pmbus
8236 F:      drivers/hwmon/pmbus/
8237 F:      include/linux/i2c/pmbus.h
8238
8239 PMC SIERRA MaxRAID DRIVER
8240 L:      linux-scsi@vger.kernel.org
8241 W:      http://www.pmc-sierra.com/
8242 S:      Orphan
8243 F:      drivers/scsi/pmcraid.*
8244
8245 PMC SIERRA PM8001 DRIVER
8246 M:      Jack Wang <jinpu.wang@profitbricks.com>
8247 M:      lindar_liu@usish.com
8248 L:      pmchba@pmcs.com
8249 L:      linux-scsi@vger.kernel.org
8250 S:      Supported
8251 F:      drivers/scsi/pm8001/
8252
8253 POSIX CLOCKS and TIMERS
8254 M:      Thomas Gleixner <tglx@linutronix.de>
8255 L:      linux-kernel@vger.kernel.org
8256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8257 S:      Maintained
8258 F:      fs/timerfd.c
8259 F:      include/linux/timer*
8260 F:      kernel/time/*timer*
8261
8262 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8263 M:      Sebastian Reichel <sre@kernel.org>
8264 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8265 M:      David Woodhouse <dwmw2@infradead.org>
8266 L:      linux-pm@vger.kernel.org
8267 T:      git git://git.infradead.org/battery-2.6.git
8268 S:      Maintained
8269 F:      include/linux/power_supply.h
8270 F:      drivers/power/
8271 X:      drivers/power/avs/
8272
8273 POWER STATE COORDINATION INTERFACE (PSCI)
8274 M:      Mark Rutland <mark.rutland@arm.com>
8275 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8276 L:      linux-arm-kernel@lists.infradead.org
8277 S:      Maintained
8278 F:      drivers/firmware/psci.c
8279 F:      include/linux/psci.h
8280 F:      include/uapi/linux/psci.h
8281
8282 PNP SUPPORT
8283 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8284 S:      Maintained
8285 F:      drivers/pnp/
8286
8287 PNXxxxx I2C DRIVER
8288 M:      Vitaly Wool <vitalywool@gmail.com>
8289 L:      linux-i2c@vger.kernel.org
8290 S:      Maintained
8291 F:      drivers/i2c/busses/i2c-pnx.c
8292
8293 PPP PROTOCOL DRIVERS AND COMPRESSORS
8294 M:      Paul Mackerras <paulus@samba.org>
8295 L:      linux-ppp@vger.kernel.org
8296 S:      Maintained
8297 F:      drivers/net/ppp/ppp_*
8298
8299 PPP OVER ATM (RFC 2364)
8300 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8301 S:      Maintained
8302 F:      net/atm/pppoatm.c
8303 F:      include/uapi/linux/atmppp.h
8304
8305 PPP OVER ETHERNET
8306 M:      Michal Ostrowski <mostrows@earthlink.net>
8307 S:      Maintained
8308 F:      drivers/net/ppp/pppoe.c
8309 F:      drivers/net/ppp/pppox.c
8310
8311 PPP OVER L2TP
8312 M:      James Chapman <jchapman@katalix.com>
8313 S:      Maintained
8314 F:      net/l2tp/l2tp_ppp.c
8315 F:      include/linux/if_pppol2tp.h
8316 F:      include/uapi/linux/if_pppol2tp.h
8317
8318 PPS SUPPORT
8319 M:      Rodolfo Giometti <giometti@enneenne.com>
8320 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8321 L:      linuxpps@ml.enneenne.com (subscribers-only)
8322 S:      Maintained
8323 F:      Documentation/pps/
8324 F:      drivers/pps/
8325 F:      include/linux/pps*.h
8326
8327 PPTP DRIVER
8328 M:      Dmitry Kozlov <xeb@mail.ru>
8329 L:      netdev@vger.kernel.org
8330 S:      Maintained
8331 F:      drivers/net/ppp/pptp.c
8332 W:      http://sourceforge.net/projects/accel-pptp
8333
8334 PREEMPTIBLE KERNEL
8335 M:      Robert Love <rml@tech9.net>
8336 L:      kpreempt-tech@lists.sourceforge.net
8337 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8338 S:      Supported
8339 F:      Documentation/preempt-locking.txt
8340 F:      include/linux/preempt.h
8341
8342 PRISM54 WIRELESS DRIVER
8343 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8344 L:      linux-wireless@vger.kernel.org
8345 W:      http://wireless.kernel.org/en/users/Drivers/p54
8346 S:      Obsolete
8347 F:      drivers/net/wireless/prism54/
8348
8349 PS3 NETWORK SUPPORT
8350 M:      Geoff Levand <geoff@infradead.org>
8351 L:      netdev@vger.kernel.org
8352 L:      linuxppc-dev@lists.ozlabs.org
8353 S:      Maintained
8354 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8355
8356 PS3 PLATFORM SUPPORT
8357 M:      Geoff Levand <geoff@infradead.org>
8358 L:      linuxppc-dev@lists.ozlabs.org
8359 S:      Maintained
8360 F:      arch/powerpc/boot/ps3*
8361 F:      arch/powerpc/include/asm/lv1call.h
8362 F:      arch/powerpc/include/asm/ps3*.h
8363 F:      arch/powerpc/platforms/ps3/
8364 F:      drivers/*/ps3*
8365 F:      drivers/ps3/
8366 F:      drivers/rtc/rtc-ps3.c
8367 F:      drivers/usb/host/*ps3.c
8368 F:      sound/ppc/snd_ps3*
8369
8370 PS3VRAM DRIVER
8371 M:      Jim Paris <jim@jtan.com>
8372 M:      Geoff Levand <geoff@infradead.org>
8373 L:      linuxppc-dev@lists.ozlabs.org
8374 S:      Maintained
8375 F:      drivers/block/ps3vram.c
8376
8377 PSTORE FILESYSTEM
8378 M:      Anton Vorontsov <anton@enomsg.org>
8379 M:      Colin Cross <ccross@android.com>
8380 M:      Kees Cook <keescook@chromium.org>
8381 M:      Tony Luck <tony.luck@intel.com>
8382 S:      Maintained
8383 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8384 F:      fs/pstore/
8385 F:      include/linux/pstore*
8386 F:      drivers/firmware/efi/efi-pstore.c
8387 F:      drivers/acpi/apei/erst.c
8388
8389 PTP HARDWARE CLOCK SUPPORT
8390 M:      Richard Cochran <richardcochran@gmail.com>
8391 L:      netdev@vger.kernel.org
8392 S:      Maintained
8393 W:      http://linuxptp.sourceforge.net/
8394 F:      Documentation/ABI/testing/sysfs-ptp
8395 F:      Documentation/ptp/*
8396 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8397 F:      drivers/net/phy/dp83640*
8398 F:      drivers/ptp/*
8399 F:      include/linux/ptp_cl*
8400
8401 PTRACE SUPPORT
8402 M:      Roland McGrath <roland@hack.frob.com>
8403 M:      Oleg Nesterov <oleg@redhat.com>
8404 S:      Maintained
8405 F:      include/asm-generic/syscall.h
8406 F:      include/linux/ptrace.h
8407 F:      include/linux/regset.h
8408 F:      include/linux/tracehook.h
8409 F:      include/uapi/linux/ptrace.h
8410 F:      kernel/ptrace.c
8411
8412 PVRUSB2 VIDEO4LINUX DRIVER
8413 M:      Mike Isely <isely@pobox.com>
8414 L:      pvrusb2@isely.net       (subscribers-only)
8415 L:      linux-media@vger.kernel.org
8416 W:      http://www.isely.net/pvrusb2/
8417 T:      git git://linuxtv.org/media_tree.git
8418 S:      Maintained
8419 F:      Documentation/video4linux/README.pvrusb2
8420 F:      drivers/media/usb/pvrusb2/
8421
8422 PWC WEBCAM DRIVER
8423 M:      Hans de Goede <hdegoede@redhat.com>
8424 L:      linux-media@vger.kernel.org
8425 T:      git git://linuxtv.org/media_tree.git
8426 S:      Maintained
8427 F:      drivers/media/usb/pwc/*
8428
8429 PWM FAN DRIVER
8430 M:      Kamil Debski <k.debski@samsung.com>
8431 L:      lm-sensors@lm-sensors.org
8432 S:      Supported
8433 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8434 F:      Documentation/hwmon/pwm-fan
8435 F:      drivers/hwmon/pwm-fan.c
8436
8437 PWM SUBSYSTEM
8438 M:      Thierry Reding <thierry.reding@gmail.com>
8439 L:      linux-pwm@vger.kernel.org
8440 S:      Maintained
8441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8442 F:      Documentation/pwm.txt
8443 F:      Documentation/devicetree/bindings/pwm/
8444 F:      include/linux/pwm.h
8445 F:      drivers/pwm/
8446 F:      drivers/video/backlight/pwm_bl.c
8447 F:      include/linux/pwm_backlight.h
8448
8449 PXA2xx/PXA3xx SUPPORT
8450 M:      Daniel Mack <daniel@zonque.org>
8451 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8452 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8453 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8454 T:      git git://github.com/hzhuang1/linux.git
8455 T:      git git://github.com/rjarzmik/linux.git
8456 S:      Maintained
8457 F:      arch/arm/mach-pxa/
8458 F:      drivers/dma/pxa*
8459 F:      drivers/pcmcia/pxa2xx*
8460 F:      drivers/spi/spi-pxa2xx*
8461 F:      drivers/usb/gadget/udc/pxa2*
8462 F:      include/sound/pxa2xx-lib.h
8463 F:      sound/arm/pxa*
8464 F:      sound/soc/pxa/
8465
8466 PXA3xx NAND FLASH DRIVER
8467 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8468 L:      linux-mtd@lists.infradead.org
8469 S:      Maintained
8470 F:      drivers/mtd/nand/pxa3xx_nand.c
8471
8472 MMP SUPPORT
8473 M:      Eric Miao <eric.y.miao@gmail.com>
8474 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8475 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8476 T:      git git://github.com/hzhuang1/linux.git
8477 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8478 S:      Maintained
8479 F:      arch/arm/mach-mmp/
8480
8481 PXA MMCI DRIVER
8482 S:      Orphan
8483
8484 PXA RTC DRIVER
8485 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8486 L:      rtc-linux@googlegroups.com
8487 S:      Maintained
8488
8489 QAT DRIVER
8490 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8491 L:      qat-linux@intel.com
8492 S:      Supported
8493 F:      drivers/crypto/qat/
8494
8495 QIB DRIVER
8496 M:      Mike Marciniszyn <infinipath@intel.com>
8497 L:      linux-rdma@vger.kernel.org
8498 S:      Supported
8499 F:      drivers/infiniband/hw/qib/
8500
8501 QLOGIC QLA1280 SCSI DRIVER
8502 M:      Michael Reed <mdr@sgi.com>
8503 L:      linux-scsi@vger.kernel.org
8504 S:      Maintained
8505 F:      drivers/scsi/qla1280.[ch]
8506
8507 QLOGIC QLA2XXX FC-SCSI DRIVER
8508 M:      qla2xxx-upstream@qlogic.com
8509 L:      linux-scsi@vger.kernel.org
8510 S:      Supported
8511 F:      Documentation/scsi/LICENSE.qla2xxx
8512 F:      drivers/scsi/qla2xxx/
8513
8514 QLOGIC QLA4XXX iSCSI DRIVER
8515 M:      QLogic-Storage-Upstream@qlogic.com
8516 L:      linux-scsi@vger.kernel.org
8517 S:      Supported
8518 F:      Documentation/scsi/LICENSE.qla4xxx
8519 F:      drivers/scsi/qla4xxx/
8520
8521 QLOGIC QLA3XXX NETWORK DRIVER
8522 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8523 M:      Ron Mercer <ron.mercer@qlogic.com>
8524 M:      linux-driver@qlogic.com
8525 L:      netdev@vger.kernel.org
8526 S:      Supported
8527 F:      Documentation/networking/LICENSE.qla3xxx
8528 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8529
8530 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8531 M:      Dept-GELinuxNICDev@qlogic.com
8532 L:      netdev@vger.kernel.org
8533 S:      Supported
8534 F:      drivers/net/ethernet/qlogic/qlcnic/
8535
8536 QLOGIC QLGE 10Gb ETHERNET DRIVER
8537 M:      Harish Patil <harish.patil@qlogic.com>
8538 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8539 M:      Dept-GELinuxNICDev@qlogic.com
8540 M:      linux-driver@qlogic.com
8541 L:      netdev@vger.kernel.org
8542 S:      Supported
8543 F:      drivers/net/ethernet/qlogic/qlge/
8544
8545 QNX4 FILESYSTEM
8546 M:      Anders Larsen <al@alarsen.net>
8547 W:      http://www.alarsen.net/linux/qnx4fs/
8548 S:      Maintained
8549 F:      fs/qnx4/
8550 F:      include/uapi/linux/qnx4_fs.h
8551 F:      include/uapi/linux/qnxtypes.h
8552
8553 QT1010 MEDIA DRIVER
8554 M:      Antti Palosaari <crope@iki.fi>
8555 L:      linux-media@vger.kernel.org
8556 W:      http://linuxtv.org/
8557 W:      http://palosaari.fi/linux/
8558 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8559 T:      git git://linuxtv.org/anttip/media_tree.git
8560 S:      Maintained
8561 F:      drivers/media/tuners/qt1010*
8562
8563 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8564 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8565 L:      linux-wireless@vger.kernel.org
8566 L:      ath9k-devel@lists.ath9k.org
8567 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8568 S:      Supported
8569 F:      drivers/net/wireless/ath/ath9k/
8570
8571 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8572 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8573 L:      ath10k@lists.infradead.org
8574 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8575 T:      git git://github.com/kvalo/ath.git
8576 S:      Supported
8577 F:      drivers/net/wireless/ath/ath10k/
8578
8579 QUALCOMM HEXAGON ARCHITECTURE
8580 M:      Richard Kuo <rkuo@codeaurora.org>
8581 L:      linux-hexagon@vger.kernel.org
8582 S:      Supported
8583 F:      arch/hexagon/
8584
8585 QUALCOMM WCN36XX WIRELESS DRIVER
8586 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8587 L:      wcn36xx@lists.infradead.org
8588 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8589 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8590 S:      Supported
8591 F:      drivers/net/wireless/ath/wcn36xx/
8592
8593 RADOS BLOCK DEVICE (RBD)
8594 M:      Ilya Dryomov <idryomov@gmail.com>
8595 M:      Sage Weil <sage@redhat.com>
8596 M:      Alex Elder <elder@kernel.org>
8597 L:      ceph-devel@vger.kernel.org
8598 W:      http://ceph.com/
8599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8600 T:      git git://github.com/ceph/ceph-client.git
8601 S:      Supported
8602 F:      Documentation/ABI/testing/sysfs-bus-rbd
8603 F:      drivers/block/rbd.c
8604 F:      drivers/block/rbd_types.h
8605
8606 RADEON FRAMEBUFFER DISPLAY DRIVER
8607 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8608 L:      linux-fbdev@vger.kernel.org
8609 S:      Maintained
8610 F:      drivers/video/fbdev/aty/radeon*
8611 F:      include/uapi/linux/radeonfb.h
8612
8613 RADIOSHARK RADIO DRIVER
8614 M:      Hans de Goede <hdegoede@redhat.com>
8615 L:      linux-media@vger.kernel.org
8616 T:      git git://linuxtv.org/media_tree.git
8617 S:      Maintained
8618 F:      drivers/media/radio/radio-shark.c
8619
8620 RADIOSHARK2 RADIO DRIVER
8621 M:      Hans de Goede <hdegoede@redhat.com>
8622 L:      linux-media@vger.kernel.org
8623 T:      git git://linuxtv.org/media_tree.git
8624 S:      Maintained
8625 F:      drivers/media/radio/radio-shark2.c
8626 F:      drivers/media/radio/radio-tea5777.c
8627
8628 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8629 M:      Paul Mackerras <paulus@samba.org>
8630 L:      linux-fbdev@vger.kernel.org
8631 S:      Maintained
8632 F:      drivers/video/fbdev/aty/aty128fb.c
8633
8634 RALINK RT2X00 WIRELESS LAN DRIVER
8635 P:      rt2x00 project
8636 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8637 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8638 L:      linux-wireless@vger.kernel.org
8639 S:      Maintained
8640 F:      drivers/net/wireless/rt2x00/
8641
8642 RAMDISK RAM BLOCK DEVICE DRIVER
8643 M:      Jens Axboe <axboe@kernel.dk>
8644 S:      Maintained
8645 F:      Documentation/blockdev/ramdisk.txt
8646 F:      drivers/block/brd.c
8647
8648 RANDOM NUMBER DRIVER
8649 M:      "Theodore Ts'o" <tytso@mit.edu>
8650 S:      Maintained
8651 F:      drivers/char/random.c
8652
8653 RAPIDIO SUBSYSTEM
8654 M:      Matt Porter <mporter@kernel.crashing.org>
8655 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8656 S:      Maintained
8657 F:      drivers/rapidio/
8658
8659 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8660 L:      linux-wireless@vger.kernel.org
8661 S:      Orphan
8662 F:      drivers/net/wireless/ray*
8663
8664 RCUTORTURE MODULE
8665 M:      Josh Triplett <josh@joshtriplett.org>
8666 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8667 L:      linux-kernel@vger.kernel.org
8668 S:      Supported
8669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8670 F:      Documentation/RCU/torture.txt
8671 F:      kernel/rcu/rcutorture.c
8672
8673 RCUTORTURE TEST FRAMEWORK
8674 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8675 M:      Josh Triplett <josh@joshtriplett.org>
8676 R:      Steven Rostedt <rostedt@goodmis.org>
8677 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8678 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8679 L:      linux-kernel@vger.kernel.org
8680 S:      Supported
8681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8682 F:      tools/testing/selftests/rcutorture
8683
8684 RDC R-321X SoC
8685 M:      Florian Fainelli <florian@openwrt.org>
8686 S:      Maintained
8687
8688 RDC R6040 FAST ETHERNET DRIVER
8689 M:      Florian Fainelli <florian@openwrt.org>
8690 L:      netdev@vger.kernel.org
8691 S:      Maintained
8692 F:      drivers/net/ethernet/rdc/r6040.c
8693
8694 RDS - RELIABLE DATAGRAM SOCKETS
8695 M:      Chien Yen <chien.yen@oracle.com>
8696 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8697 S:      Supported
8698 F:      net/rds/
8699
8700 READ-COPY UPDATE (RCU)
8701 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8702 M:      Josh Triplett <josh@joshtriplett.org>
8703 R:      Steven Rostedt <rostedt@goodmis.org>
8704 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8705 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8706 L:      linux-kernel@vger.kernel.org
8707 W:      http://www.rdrop.com/users/paulmck/RCU/
8708 S:      Supported
8709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8710 F:      Documentation/RCU/
8711 X:      Documentation/RCU/torture.txt
8712 F:      include/linux/rcu*
8713 X:      include/linux/srcu.h
8714 F:      kernel/rcu/
8715 X:      kernel/torture.c
8716
8717 REAL TIME CLOCK (RTC) SUBSYSTEM
8718 M:      Alessandro Zummo <a.zummo@towertech.it>
8719 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8720 L:      rtc-linux@googlegroups.com
8721 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8723 S:      Maintained
8724 F:      Documentation/rtc.txt
8725 F:      drivers/rtc/
8726 F:      include/linux/rtc.h
8727 F:      include/uapi/linux/rtc.h
8728
8729 REALTEK AUDIO CODECS
8730 M:      Bard Liao <bardliao@realtek.com>
8731 M:      Oder Chiou <oder_chiou@realtek.com>
8732 S:      Maintained
8733 F:      sound/soc/codecs/rt*
8734 F:      include/sound/rt*.h
8735
8736 REISERFS FILE SYSTEM
8737 L:      reiserfs-devel@vger.kernel.org
8738 S:      Supported
8739 F:      fs/reiserfs/
8740
8741 REGISTER MAP ABSTRACTION
8742 M:      Mark Brown <broonie@kernel.org>
8743 L:      linux-kernel@vger.kernel.org
8744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8745 S:      Supported
8746 F:      drivers/base/regmap/
8747 F:      include/linux/regmap.h
8748
8749 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8750 M:      Ohad Ben-Cohen <ohad@wizery.com>
8751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8752 S:      Maintained
8753 F:      drivers/remoteproc/
8754 F:      Documentation/remoteproc.txt
8755 F:      include/linux/remoteproc.h
8756
8757 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8758 M:      Ohad Ben-Cohen <ohad@wizery.com>
8759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8760 S:      Maintained
8761 F:      drivers/rpmsg/
8762 F:      Documentation/rpmsg.txt
8763 F:      include/linux/rpmsg.h
8764
8765 RESET CONTROLLER FRAMEWORK
8766 M:      Philipp Zabel <p.zabel@pengutronix.de>
8767 S:      Maintained
8768 F:      drivers/reset/
8769 F:      Documentation/devicetree/bindings/reset/
8770 F:      include/dt-bindings/reset/
8771 F:      include/linux/reset.h
8772 F:      include/linux/reset-controller.h
8773
8774 RFKILL
8775 M:      Johannes Berg <johannes@sipsolutions.net>
8776 L:      linux-wireless@vger.kernel.org
8777 W:      http://wireless.kernel.org/
8778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8780 S:      Maintained
8781 F:      Documentation/rfkill.txt
8782 F:      net/rfkill/
8783
8784 RHASHTABLE
8785 M:      Thomas Graf <tgraf@suug.ch>
8786 L:      netdev@vger.kernel.org
8787 S:      Maintained
8788 F:      lib/rhashtable.c
8789 F:      include/linux/rhashtable.h
8790
8791 RICOH SMARTMEDIA/XD DRIVER
8792 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8793 S:      Maintained
8794 F:      drivers/mtd/nand/r852.c
8795 F:      drivers/mtd/nand/r852.h
8796
8797 RICOH R5C592 MEMORYSTICK DRIVER
8798 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8799 S:      Maintained
8800 F:      drivers/memstick/host/r592.*
8801
8802 ROCCAT DRIVERS
8803 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8804 W:      http://sourceforge.net/projects/roccat/
8805 S:      Maintained
8806 F:      drivers/hid/hid-roccat*
8807 F:      include/linux/hid-roccat*
8808 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8809
8810 ROCKER DRIVER
8811 M:      Jiri Pirko <jiri@resnulli.us>
8812 M:      Scott Feldman <sfeldma@gmail.com>
8813 L:      netdev@vger.kernel.org
8814 S:      Supported
8815 F:      drivers/net/ethernet/rocker/
8816
8817 ROCKETPORT DRIVER
8818 P:      Comtrol Corp.
8819 W:      http://www.comtrol.com
8820 S:      Maintained
8821 F:      Documentation/serial/rocket.txt
8822 F:      drivers/tty/rocket*
8823
8824 ROCKETPORT EXPRESS/INFINITY DRIVER
8825 M:      Kevin Cernekee <cernekee@gmail.com>
8826 L:      linux-serial@vger.kernel.org
8827 S:      Odd Fixes
8828 F:      drivers/tty/serial/rp2.*
8829
8830 ROSE NETWORK LAYER
8831 M:      Ralf Baechle <ralf@linux-mips.org>
8832 L:      linux-hams@vger.kernel.org
8833 W:      http://www.linux-ax25.org/
8834 S:      Maintained
8835 F:      include/net/rose.h
8836 F:      include/uapi/linux/rose.h
8837 F:      net/rose/
8838
8839 RTL2830 MEDIA DRIVER
8840 M:      Antti Palosaari <crope@iki.fi>
8841 L:      linux-media@vger.kernel.org
8842 W:      http://linuxtv.org/
8843 W:      http://palosaari.fi/linux/
8844 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8845 T:      git git://linuxtv.org/anttip/media_tree.git
8846 S:      Maintained
8847 F:      drivers/media/dvb-frontends/rtl2830*
8848
8849 RTL2832 MEDIA DRIVER
8850 M:      Antti Palosaari <crope@iki.fi>
8851 L:      linux-media@vger.kernel.org
8852 W:      http://linuxtv.org/
8853 W:      http://palosaari.fi/linux/
8854 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8855 T:      git git://linuxtv.org/anttip/media_tree.git
8856 S:      Maintained
8857 F:      drivers/media/dvb-frontends/rtl2832*
8858
8859 RTL2832_SDR MEDIA DRIVER
8860 M:      Antti Palosaari <crope@iki.fi>
8861 L:      linux-media@vger.kernel.org
8862 W:      http://linuxtv.org/
8863 W:      http://palosaari.fi/linux/
8864 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8865 T:      git git://linuxtv.org/anttip/media_tree.git
8866 S:      Maintained
8867 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8868
8869 RTL8180 WIRELESS DRIVER
8870 L:      linux-wireless@vger.kernel.org
8871 W:      http://wireless.kernel.org/
8872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8873 S:      Orphan
8874 F:      drivers/net/wireless/rtl818x/rtl8180/
8875
8876 RTL8187 WIRELESS DRIVER
8877 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8878 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8879 M:      Larry Finger <Larry.Finger@lwfinger.net>
8880 L:      linux-wireless@vger.kernel.org
8881 W:      http://wireless.kernel.org/
8882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8883 S:      Maintained
8884 F:      drivers/net/wireless/rtl818x/rtl8187/
8885
8886 RTL8192CE WIRELESS DRIVER
8887 M:      Larry Finger <Larry.Finger@lwfinger.net>
8888 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8889 L:      linux-wireless@vger.kernel.org
8890 W:      http://wireless.kernel.org/
8891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8892 S:      Maintained
8893 F:      drivers/net/wireless/rtlwifi/
8894 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8895
8896 S3 SAVAGE FRAMEBUFFER DRIVER
8897 M:      Antonino Daplas <adaplas@gmail.com>
8898 L:      linux-fbdev@vger.kernel.org
8899 S:      Maintained
8900 F:      drivers/video/fbdev/savage/
8901
8902 S390
8903 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8904 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8905 L:      linux-s390@vger.kernel.org
8906 W:      http://www.ibm.com/developerworks/linux/linux390/
8907 S:      Supported
8908 F:      arch/s390/
8909 F:      drivers/s390/
8910 F:      Documentation/s390/
8911 F:      Documentation/DocBook/s390*
8912
8913 S390 COMMON I/O LAYER
8914 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8915 M:      Peter Oberparleiter <oberpar@linux.vnet.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/cio/
8920
8921 S390 DASD DRIVER
8922 M:      Stefan Weinhuber <wein@de.ibm.com>
8923 M:      Stefan Haberland <stefan.haberland@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/block/dasd*
8928 F:      block/partitions/ibm.c
8929
8930 S390 NETWORK DRIVERS
8931 M:      Ursula Braun <ursula.braun@de.ibm.com>
8932 L:      linux-s390@vger.kernel.org
8933 W:      http://www.ibm.com/developerworks/linux/linux390/
8934 S:      Supported
8935 F:      drivers/s390/net/
8936
8937 S390 PCI SUBSYSTEM
8938 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8939 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8940 L:      linux-s390@vger.kernel.org
8941 W:      http://www.ibm.com/developerworks/linux/linux390/
8942 S:      Supported
8943 F:      arch/s390/pci/
8944 F:      drivers/pci/hotplug/s390_pci_hpc.c
8945
8946 S390 ZCRYPT DRIVER
8947 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8948 L:      linux-s390@vger.kernel.org
8949 W:      http://www.ibm.com/developerworks/linux/linux390/
8950 S:      Supported
8951 F:      drivers/s390/crypto/
8952
8953 S390 ZFCP DRIVER
8954 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8955 L:      linux-s390@vger.kernel.org
8956 W:      http://www.ibm.com/developerworks/linux/linux390/
8957 S:      Supported
8958 F:      drivers/s390/scsi/zfcp_*
8959
8960 S390 IUCV NETWORK LAYER
8961 M:      Ursula Braun <ursula.braun@de.ibm.com>
8962 L:      linux-s390@vger.kernel.org
8963 W:      http://www.ibm.com/developerworks/linux/linux390/
8964 S:      Supported
8965 F:      drivers/s390/net/*iucv*
8966 F:      include/net/iucv/
8967 F:      net/iucv/
8968
8969 S3C24XX SD/MMC Driver
8970 M:      Ben Dooks <ben-linux@fluff.org>
8971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8972 S:      Supported
8973 F:      drivers/mmc/host/s3cmci.*
8974
8975 SAA6588 RDS RECEIVER DRIVER
8976 M:      Hans Verkuil <hverkuil@xs4all.nl>
8977 L:      linux-media@vger.kernel.org
8978 T:      git git://linuxtv.org/media_tree.git
8979 W:      http://linuxtv.org
8980 S:      Odd Fixes
8981 F:      drivers/media/i2c/saa6588*
8982
8983 SAA7134 VIDEO4LINUX DRIVER
8984 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8985 L:      linux-media@vger.kernel.org
8986 W:      http://linuxtv.org
8987 T:      git git://linuxtv.org/media_tree.git
8988 S:      Odd fixes
8989 F:      Documentation/video4linux/*.saa7134
8990 F:      drivers/media/pci/saa7134/
8991
8992 SAA7146 VIDEO4LINUX-2 DRIVER
8993 M:      Hans Verkuil <hverkuil@xs4all.nl>
8994 L:      linux-media@vger.kernel.org
8995 T:      git git://linuxtv.org/media_tree.git
8996 S:      Maintained
8997 F:      drivers/media/common/saa7146/
8998 F:      drivers/media/pci/saa7146/
8999 F:      include/media/saa7146*
9000
9001 SAMSUNG LAPTOP DRIVER
9002 M:      Corentin Chary <corentin.chary@gmail.com>
9003 L:      platform-driver-x86@vger.kernel.org
9004 S:      Maintained
9005 F:      drivers/platform/x86/samsung-laptop.c
9006
9007 SAMSUNG AUDIO (ASoC) DRIVERS
9008 M:      Sangbeom Kim <sbkim73@samsung.com>
9009 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9010 S:      Supported
9011 F:      sound/soc/samsung/
9012
9013 SAMSUNG FRAMEBUFFER DRIVER
9014 M:      Jingoo Han <jingoohan1@gmail.com>
9015 L:      linux-fbdev@vger.kernel.org
9016 S:      Maintained
9017 F:      drivers/video/fbdev/s3c-fb.c
9018
9019 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9020 M:      Sangbeom Kim <sbkim73@samsung.com>
9021 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9022 L:      linux-kernel@vger.kernel.org
9023 L:      linux-samsung-soc@vger.kernel.org
9024 S:      Supported
9025 F:      drivers/mfd/sec*.c
9026 F:      drivers/regulator/s2m*.c
9027 F:      drivers/regulator/s5m*.c
9028 F:      drivers/clk/clk-s2mps11.c
9029 F:      drivers/rtc/rtc-s5m.c
9030 F:      include/linux/mfd/samsung/
9031 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9032 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
9033
9034 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9035 M:      Kyungmin Park <kyungmin.park@samsung.com>
9036 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9037 L:      linux-media@vger.kernel.org
9038 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9039 S:      Supported
9040 F:      drivers/media/platform/exynos4-is/
9041
9042 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9043 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9044 L:      linux-media@vger.kernel.org
9045 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9046 S:      Maintained
9047 F:      drivers/media/platform/s3c-camif/
9048 F:      include/media/s3c_camif.h
9049
9050 SAMSUNG S5C73M3 CAMERA DRIVER
9051 M:      Kyungmin Park <kyungmin.park@samsung.com>
9052 M:      Andrzej Hajda <a.hajda@samsung.com>
9053 L:      linux-media@vger.kernel.org
9054 S:      Supported
9055 F:      drivers/media/i2c/s5c73m3/*
9056
9057 SAMSUNG S5K5BAF CAMERA DRIVER
9058 M:      Kyungmin Park <kyungmin.park@samsung.com>
9059 M:      Andrzej Hajda <a.hajda@samsung.com>
9060 L:      linux-media@vger.kernel.org
9061 S:      Supported
9062 F:      drivers/media/i2c/s5k5baf.c
9063
9064 SAMSUNG S3FWRN5 NFC DRIVER
9065 M:      Robert Baldyga <r.baldyga@samsung.com>
9066 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9067 S:      Supported
9068 F:      drivers/nfc/s3fwrn5
9069
9070 SAMSUNG SOC CLOCK DRIVERS
9071 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9072 M:      Tomasz Figa <tomasz.figa@gmail.com>
9073 S:      Supported
9074 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9075 F:      drivers/clk/samsung/
9076
9077 SAMSUNG SXGBE DRIVERS
9078 M:      Byungho An <bh74.an@samsung.com>
9079 M:      Girish K S <ks.giri@samsung.com>
9080 M:      Vipul Pandya <vipul.pandya@samsung.com>
9081 S:      Supported
9082 L:      netdev@vger.kernel.org
9083 F:      drivers/net/ethernet/samsung/sxgbe/
9084
9085 SAMSUNG THERMAL DRIVER
9086 M:      Lukasz Majewski <l.majewski@samsung.com>
9087 L:      linux-pm@vger.kernel.org
9088 L:      linux-samsung-soc@vger.kernel.org
9089 S:      Supported
9090 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9091 F:      drivers/thermal/samsung/
9092
9093 SAMSUNG USB2 PHY DRIVER
9094 M:      Kamil Debski <k.debski@samsung.com>
9095 L:      linux-kernel@vger.kernel.org
9096 S:      Supported
9097 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9098 F:      Documentation/phy/samsung-usb2.txt
9099 F:      drivers/phy/phy-exynos4210-usb2.c
9100 F:      drivers/phy/phy-exynos4x12-usb2.c
9101 F:      drivers/phy/phy-exynos5250-usb2.c
9102 F:      drivers/phy/phy-s5pv210-usb2.c
9103 F:      drivers/phy/phy-samsung-usb2.c
9104 F:      drivers/phy/phy-samsung-usb2.h
9105
9106 SERIAL DRIVERS
9107 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9108 L:      linux-serial@vger.kernel.org
9109 S:      Maintained
9110 F:      drivers/tty/serial/
9111
9112 SYNOPSYS DESIGNWARE DMAC DRIVER
9113 M:      Viresh Kumar <vireshk@kernel.org>
9114 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9115 S:      Maintained
9116 F:      include/linux/dma/dw.h
9117 F:      include/linux/platform_data/dma-dw.h
9118 F:      drivers/dma/dw/
9119
9120 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9121 M: Lars Persson <lars.persson@axis.com>
9122 L: netdev@vger.kernel.org
9123 S: Supported
9124 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9125 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9126
9127 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9128 M:      Seungwon Jeon <tgih.jun@samsung.com>
9129 M:      Jaehoon Chung <jh80.chung@samsung.com>
9130 L:      linux-mmc@vger.kernel.org
9131 S:      Maintained
9132 F:      include/linux/mmc/dw_mmc.h
9133 F:      drivers/mmc/host/dw_mmc*
9134
9135 THUNDERBOLT DRIVER
9136 M:      Andreas Noever <andreas.noever@gmail.com>
9137 S:      Maintained
9138 F:      drivers/thunderbolt/
9139
9140 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9141 M:      John Stultz <john.stultz@linaro.org>
9142 M:      Thomas Gleixner <tglx@linutronix.de>
9143 L:      linux-kernel@vger.kernel.org
9144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9145 S:      Supported
9146 F:      include/linux/clocksource.h
9147 F:      include/linux/time.h
9148 F:      include/linux/timex.h
9149 F:      include/uapi/linux/time.h
9150 F:      include/uapi/linux/timex.h
9151 F:      kernel/time/clocksource.c
9152 F:      kernel/time/time*.c
9153 F:      kernel/time/ntp.c
9154 F:      tools/testing/selftests/timers/
9155
9156 SC1200 WDT DRIVER
9157 M:      Zwane Mwaikambo <zwanem@gmail.com>
9158 S:      Maintained
9159 F:      drivers/watchdog/sc1200wdt.c
9160
9161 SCHEDULER
9162 M:      Ingo Molnar <mingo@redhat.com>
9163 M:      Peter Zijlstra <peterz@infradead.org>
9164 L:      linux-kernel@vger.kernel.org
9165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9166 S:      Maintained
9167 F:      kernel/sched/
9168 F:      include/linux/sched.h
9169 F:      include/uapi/linux/sched.h
9170 F:      include/linux/wait.h
9171
9172 SCORE ARCHITECTURE
9173 M:      Chen Liqin <liqin.linux@gmail.com>
9174 M:      Lennox Wu <lennox.wu@gmail.com>
9175 W:      http://www.sunplus.com
9176 S:      Supported
9177 F:      arch/score/
9178
9179 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9180 M:      Sudeep Holla <sudeep.holla@arm.com>
9181 L:      linux-arm-kernel@lists.infradead.org
9182 S:      Maintained
9183 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9184 F:      drivers/clk/clk-scpi.c
9185 F:      drivers/cpufreq/scpi-cpufreq.c
9186 F:      drivers/firmware/arm_scpi.c
9187 F:      include/linux/scpi_protocol.h
9188
9189 SCSI CDROM DRIVER
9190 M:      Jens Axboe <axboe@kernel.dk>
9191 L:      linux-scsi@vger.kernel.org
9192 W:      http://www.kernel.dk
9193 S:      Maintained
9194 F:      drivers/scsi/sr*
9195
9196 SCSI RDMA PROTOCOL (SRP) INITIATOR
9197 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9198 L:      linux-rdma@vger.kernel.org
9199 S:      Supported
9200 W:      http://www.openfabrics.org
9201 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9203 F:      drivers/infiniband/ulp/srp/
9204 F:      include/scsi/srp.h
9205
9206 SCSI SG DRIVER
9207 M:      Doug Gilbert <dgilbert@interlog.com>
9208 L:      linux-scsi@vger.kernel.org
9209 W:      http://sg.danny.cz/sg
9210 S:      Maintained
9211 F:      Documentation/scsi/scsi-generic.txt
9212 F:      drivers/scsi/sg.c
9213 F:      include/scsi/sg.h
9214
9215 SCSI SUBSYSTEM
9216 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9217 L:      linux-scsi@vger.kernel.org
9218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9219 S:      Maintained
9220 F:      drivers/scsi/
9221 F:      include/scsi/
9222
9223 SCSI TAPE DRIVER
9224 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9225 L:      linux-scsi@vger.kernel.org
9226 S:      Maintained
9227 F:      Documentation/scsi/st.txt
9228 F:      drivers/scsi/st.*
9229 F:      drivers/scsi/st_*.h
9230
9231 SCTP PROTOCOL
9232 M:      Vlad Yasevich <vyasevich@gmail.com>
9233 M:      Neil Horman <nhorman@tuxdriver.com>
9234 L:      linux-sctp@vger.kernel.org
9235 W:      http://lksctp.sourceforge.net
9236 S:      Maintained
9237 F:      Documentation/networking/sctp.txt
9238 F:      include/linux/sctp.h
9239 F:      include/uapi/linux/sctp.h
9240 F:      include/net/sctp/
9241 F:      net/sctp/
9242
9243 SCx200 CPU SUPPORT
9244 M:      Jim Cromie <jim.cromie@gmail.com>
9245 S:      Odd Fixes
9246 F:      Documentation/i2c/busses/scx200_acb
9247 F:      arch/x86/platform/scx200/
9248 F:      drivers/watchdog/scx200_wdt.c
9249 F:      drivers/i2c/busses/scx200*
9250 F:      drivers/mtd/maps/scx200_docflash.c
9251 F:      include/linux/scx200.h
9252
9253 SCx200 GPIO DRIVER
9254 M:      Jim Cromie <jim.cromie@gmail.com>
9255 S:      Maintained
9256 F:      drivers/char/scx200_gpio.c
9257 F:      include/linux/scx200_gpio.h
9258
9259 SCx200 HRT CLOCKSOURCE DRIVER
9260 M:      Jim Cromie <jim.cromie@gmail.com>
9261 S:      Maintained
9262 F:      drivers/clocksource/scx200_hrt.c
9263
9264 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9265 M:      Sascha Sommer <saschasommer@freenet.de>
9266 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9267 S:      Maintained
9268 F:      drivers/mmc/host/sdricoh_cs.c
9269
9270 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9271 L:      linux-mmc@vger.kernel.org
9272 S:      Orphan
9273 F:      drivers/mmc/host/sdhci.*
9274 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9275
9276 SECURE COMPUTING
9277 M:      Kees Cook <keescook@chromium.org>
9278 R:      Andy Lutomirski <luto@amacapital.net>
9279 R:      Will Drewry <wad@chromium.org>
9280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9281 S:      Supported
9282 F:      kernel/seccomp.c
9283 F:      include/uapi/linux/seccomp.h
9284 F:      include/linux/seccomp.h
9285 F:      tools/testing/selftests/seccomp/*
9286 K:      \bsecure_computing
9287 K:      \bTIF_SECCOMP\b
9288
9289 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9290 M:      Ben Dooks <ben-linux@fluff.org>
9291 M:      Jaehoon Chung <jh80.chung@samsung.com>
9292 L:      linux-mmc@vger.kernel.org
9293 S:      Maintained
9294 F:      drivers/mmc/host/sdhci-s3c*
9295
9296 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9297 M:      Viresh Kumar <vireshk@kernel.org>
9298 L:      spear-devel@list.st.com
9299 L:      linux-mmc@vger.kernel.org
9300 S:      Maintained
9301 F:      drivers/mmc/host/sdhci-spear.c
9302
9303 SECURITY SUBSYSTEM
9304 M:      James Morris <james.l.morris@oracle.com>
9305 M:      "Serge E. Hallyn" <serge@hallyn.com>
9306 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9308 W:      http://kernsec.org/
9309 S:      Supported
9310 F:      security/
9311
9312 SECURITY CONTACT
9313 M:      Security Officers <security@kernel.org>
9314 S:      Supported
9315
9316 SELINUX SECURITY MODULE
9317 M:      Paul Moore <paul@paul-moore.com>
9318 M:      Stephen Smalley <sds@tycho.nsa.gov>
9319 M:      Eric Paris <eparis@parisplace.org>
9320 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9321 W:      http://selinuxproject.org
9322 T:      git git://git.infradead.org/users/pcmoore/selinux
9323 S:      Supported
9324 F:      include/linux/selinux*
9325 F:      security/selinux/
9326 F:      scripts/selinux/
9327
9328 APPARMOR SECURITY MODULE
9329 M:      John Johansen <john.johansen@canonical.com>
9330 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9331 W:      apparmor.wiki.kernel.org
9332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9333 S:      Supported
9334 F:      security/apparmor/
9335
9336 YAMA SECURITY MODULE
9337 M:      Kees Cook <keescook@chromium.org>
9338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9339 S:      Supported
9340 F:      security/yama/
9341
9342 SENSABLE PHANTOM
9343 M:      Jiri Slaby <jirislaby@gmail.com>
9344 S:      Maintained
9345 F:      drivers/misc/phantom.c
9346 F:      include/uapi/linux/phantom.h
9347
9348 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9349 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9350 M:      Minh Tran <minh.tran@avagotech.com>
9351 M:      John Soni Jose <sony.john-n@avagotech.com>
9352 L:      linux-scsi@vger.kernel.org
9353 W:      http://www.avagotech.com
9354 S:      Supported
9355 F:      drivers/scsi/be2iscsi/
9356
9357 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9358 M:      Sathya Perla <sathya.perla@avagotech.com>
9359 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9360 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9361 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9362 L:      netdev@vger.kernel.org
9363 W:      http://www.emulex.com
9364 S:      Supported
9365 F:      drivers/net/ethernet/emulex/benet/
9366
9367 EMULEX ONECONNECT ROCE DRIVER
9368 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9369 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9370 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9371 L:      linux-rdma@vger.kernel.org
9372 W:      http://www.emulex.com
9373 S:      Supported
9374 F:      drivers/infiniband/hw/ocrdma/
9375
9376 SFC NETWORK DRIVER
9377 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9378 M:      Shradha Shah <sshah@solarflare.com>
9379 L:      netdev@vger.kernel.org
9380 S:      Supported
9381 F:      drivers/net/ethernet/sfc/
9382
9383 SGI GRU DRIVER
9384 M:      Dimitri Sivanich <sivanich@sgi.com>
9385 S:      Maintained
9386 F:      drivers/misc/sgi-gru/
9387
9388 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9389 M:      Pat Gefre <pfg@sgi.com>
9390 L:      linux-ia64@vger.kernel.org
9391 S:      Supported
9392 F:      Documentation/ia64/serial.txt
9393 F:      drivers/tty/serial/ioc?_serial.c
9394 F:      include/linux/ioc?.h
9395
9396 SGI XP/XPC/XPNET DRIVER
9397 M:      Cliff Whickman <cpw@sgi.com>
9398 M:      Robin Holt <robinmholt@gmail.com>
9399 S:      Maintained
9400 F:      drivers/misc/sgi-xp/
9401
9402 SI2157 MEDIA DRIVER
9403 M:      Antti Palosaari <crope@iki.fi>
9404 L:      linux-media@vger.kernel.org
9405 W:      http://linuxtv.org/
9406 W:      http://palosaari.fi/linux/
9407 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9408 T:      git git://linuxtv.org/anttip/media_tree.git
9409 S:      Maintained
9410 F:      drivers/media/tuners/si2157*
9411
9412 SI2168 MEDIA DRIVER
9413 M:      Antti Palosaari <crope@iki.fi>
9414 L:      linux-media@vger.kernel.org
9415 W:      http://linuxtv.org/
9416 W:      http://palosaari.fi/linux/
9417 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9418 T:      git git://linuxtv.org/anttip/media_tree.git
9419 S:      Maintained
9420 F:      drivers/media/dvb-frontends/si2168*
9421
9422 SI470X FM RADIO RECEIVER I2C DRIVER
9423 M:      Hans Verkuil <hverkuil@xs4all.nl>
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/si470x/radio-si470x-i2c.c
9429
9430 SI470X FM RADIO RECEIVER USB DRIVER
9431 M:      Hans Verkuil <hverkuil@xs4all.nl>
9432 L:      linux-media@vger.kernel.org
9433 T:      git git://linuxtv.org/media_tree.git
9434 W:      http://linuxtv.org
9435 S:      Maintained
9436 F:      drivers/media/radio/si470x/radio-si470x-common.c
9437 F:      drivers/media/radio/si470x/radio-si470x.h
9438 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9439
9440 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9441 M:      Eduardo Valentin <edubezval@gmail.com>
9442 L:      linux-media@vger.kernel.org
9443 T:      git git://linuxtv.org/media_tree.git
9444 W:      http://linuxtv.org
9445 S:      Odd Fixes
9446 F:      drivers/media/radio/si4713/si4713.?
9447
9448 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9449 M:      Eduardo Valentin <edubezval@gmail.com>
9450 L:      linux-media@vger.kernel.org
9451 T:      git git://linuxtv.org/media_tree.git
9452 W:      http://linuxtv.org
9453 S:      Odd Fixes
9454 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9455
9456 SI4713 FM RADIO TRANSMITTER USB DRIVER
9457 M:      Hans Verkuil <hverkuil@xs4all.nl>
9458 L:      linux-media@vger.kernel.org
9459 T:      git git://linuxtv.org/media_tree.git
9460 W:      http://linuxtv.org
9461 S:      Maintained
9462 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9463
9464 SIANO DVB DRIVER
9465 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9466 L:      linux-media@vger.kernel.org
9467 W:      http://linuxtv.org
9468 T:      git git://linuxtv.org/media_tree.git
9469 S:      Odd fixes
9470 F:      drivers/media/common/siano/
9471 F:      drivers/media/usb/siano/
9472 F:      drivers/media/usb/siano/
9473 F:      drivers/media/mmc/siano/
9474
9475 SIMPLEFB FB DRIVER
9476 M:      Hans de Goede <hdegoede@redhat.com>
9477 L:      linux-fbdev@vger.kernel.org
9478 S:      Maintained
9479 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9480 F:      drivers/video/fbdev/simplefb.c
9481 F:      include/linux/platform_data/simplefb.h
9482
9483 SH_VEU V4L2 MEM2MEM DRIVER
9484 L:      linux-media@vger.kernel.org
9485 S:      Orphan
9486 F:      drivers/media/platform/sh_veu.c
9487
9488 SH_VOU V4L2 OUTPUT DRIVER
9489 L:      linux-media@vger.kernel.org
9490 S:      Orphan
9491 F:      drivers/media/platform/sh_vou.c
9492 F:      include/media/sh_vou.h
9493
9494 SIMPLE FIRMWARE INTERFACE (SFI)
9495 M:      Len Brown <lenb@kernel.org>
9496 L:      sfi-devel@simplefirmware.org
9497 W:      http://simplefirmware.org/
9498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9499 S:      Supported
9500 F:      arch/x86/platform/sfi/
9501 F:      drivers/sfi/
9502 F:      include/linux/sfi*.h
9503
9504 SIMTEC EB110ATX (Chalice CATS)
9505 P:      Ben Dooks
9506 P:      Vincent Sanders <vince@simtec.co.uk>
9507 M:      Simtec Linux Team <linux@simtec.co.uk>
9508 W:      http://www.simtec.co.uk/products/EB110ATX/
9509 S:      Supported
9510
9511 SIMTEC EB2410ITX (BAST)
9512 P:      Ben Dooks
9513 P:      Vincent Sanders <vince@simtec.co.uk>
9514 M:      Simtec Linux Team <linux@simtec.co.uk>
9515 W:      http://www.simtec.co.uk/products/EB2410ITX/
9516 S:      Supported
9517 F:      arch/arm/mach-s3c24xx/mach-bast.c
9518 F:      arch/arm/mach-s3c24xx/bast-ide.c
9519 F:      arch/arm/mach-s3c24xx/bast-irq.c
9520
9521 TI DAVINCI MACHINE SUPPORT
9522 M:      Sekhar Nori <nsekhar@ti.com>
9523 M:      Kevin Hilman <khilman@deeprootsystems.com>
9524 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9525 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9526 S:      Supported
9527 F:      arch/arm/mach-davinci/
9528 F:      drivers/i2c/busses/i2c-davinci.c
9529
9530 TI DAVINCI SERIES MEDIA DRIVER
9531 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9532 L:      linux-media@vger.kernel.org
9533 W:      http://linuxtv.org/
9534 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9535 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9536 S:      Maintained
9537 F:      drivers/media/platform/davinci/
9538 F:      include/media/davinci/
9539
9540 TI AM437X VPFE DRIVER
9541 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9542 L:      linux-media@vger.kernel.org
9543 W:      http://linuxtv.org/
9544 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9545 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9546 S:      Maintained
9547 F:      drivers/media/platform/am437x/
9548
9549 OV2659 OMNIVISION SENSOR DRIVER
9550 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9551 L:      linux-media@vger.kernel.org
9552 W:      http://linuxtv.org/
9553 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9554 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9555 S:      Maintained
9556 F:      drivers/media/i2c/ov2659.c
9557 F:      include/media/ov2659.h
9558
9559 SILICON MOTION SM712 FRAME BUFFER DRIVER
9560 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9561 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9562 M:      Sudip Mukherjee <sudip@vectorindia.org>
9563 L:      linux-fbdev@vger.kernel.org
9564 S:      Maintained
9565 F:      drivers/video/fbdev/sm712*
9566 F:      Documentation/fb/sm712fb.txt
9567
9568 SIS 190 ETHERNET DRIVER
9569 M:      Francois Romieu <romieu@fr.zoreil.com>
9570 L:      netdev@vger.kernel.org
9571 S:      Maintained
9572 F:      drivers/net/ethernet/sis/sis190.c
9573
9574 SIS 900/7016 FAST ETHERNET DRIVER
9575 M:      Daniele Venzano <venza@brownhat.org>
9576 W:      http://www.brownhat.org/sis900.html
9577 L:      netdev@vger.kernel.org
9578 S:      Maintained
9579 F:      drivers/net/ethernet/sis/sis900.*
9580
9581 SIS FRAMEBUFFER DRIVER
9582 M:      Thomas Winischhofer <thomas@winischhofer.net>
9583 W:      http://www.winischhofer.net/linuxsisvga.shtml
9584 S:      Maintained
9585 F:      Documentation/fb/sisfb.txt
9586 F:      drivers/video/fbdev/sis/
9587 F:      include/video/sisfb.h
9588
9589 SIS USB2VGA DRIVER
9590 M:      Thomas Winischhofer <thomas@winischhofer.net>
9591 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9592 S:      Maintained
9593 F:      drivers/usb/misc/sisusbvga/
9594
9595 SLAB ALLOCATOR
9596 M:      Christoph Lameter <cl@linux.com>
9597 M:      Pekka Enberg <penberg@kernel.org>
9598 M:      David Rientjes <rientjes@google.com>
9599 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9600 M:      Andrew Morton <akpm@linux-foundation.org>
9601 L:      linux-mm@kvack.org
9602 S:      Maintained
9603 F:      include/linux/sl?b*.h
9604 F:      mm/sl?b*
9605
9606 SLEEPABLE READ-COPY UPDATE (SRCU)
9607 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9608 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9609 M:      Josh Triplett <josh@joshtriplett.org>
9610 R:      Steven Rostedt <rostedt@goodmis.org>
9611 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9612 L:      linux-kernel@vger.kernel.org
9613 W:      http://www.rdrop.com/users/paulmck/RCU/
9614 S:      Supported
9615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9616 F:      include/linux/srcu.h
9617 F:      kernel/rcu/srcu.c
9618
9619 SMACK SECURITY MODULE
9620 M:      Casey Schaufler <casey@schaufler-ca.com>
9621 L:      linux-security-module@vger.kernel.org
9622 W:      http://schaufler-ca.com
9623 T:      git git://git.gitorious.org/smack-next/kernel.git
9624 S:      Maintained
9625 F:      Documentation/security/Smack.txt
9626 F:      security/smack/
9627
9628 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9629 M:      Kevin Hilman <khilman@kernel.org>
9630 M:      Nishanth Menon <nm@ti.com>
9631 S:      Maintained
9632 F:      drivers/power/avs/
9633 F:      include/linux/power/smartreflex.h
9634 L:      linux-pm@vger.kernel.org
9635
9636 SMC91x ETHERNET DRIVER
9637 M:      Nicolas Pitre <nico@fluxnic.net>
9638 S:      Odd Fixes
9639 F:      drivers/net/ethernet/smsc/smc91x.*
9640
9641 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9642 M:      Sakari Ailus <sakari.ailus@iki.fi>
9643 L:      linux-media@vger.kernel.org
9644 S:      Maintained
9645 F:      drivers/media/i2c/smiapp/
9646 F:      include/media/smiapp.h
9647 F:      drivers/media/i2c/smiapp-pll.c
9648 F:      drivers/media/i2c/smiapp-pll.h
9649 F:      include/uapi/linux/smiapp.h
9650 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9651
9652 SMM665 HARDWARE MONITOR DRIVER
9653 M:      Guenter Roeck <linux@roeck-us.net>
9654 L:      lm-sensors@lm-sensors.org
9655 S:      Maintained
9656 F:      Documentation/hwmon/smm665
9657 F:      drivers/hwmon/smm665.c
9658
9659 SMSC EMC2103 HARDWARE MONITOR DRIVER
9660 M:      Steve Glendinning <steve.glendinning@shawell.net>
9661 L:      lm-sensors@lm-sensors.org
9662 S:      Maintained
9663 F:      Documentation/hwmon/emc2103
9664 F:      drivers/hwmon/emc2103.c
9665
9666 SMSC SCH5627 HARDWARE MONITOR DRIVER
9667 M:      Hans de Goede <hdegoede@redhat.com>
9668 L:      lm-sensors@lm-sensors.org
9669 S:      Supported
9670 F:      Documentation/hwmon/sch5627
9671 F:      drivers/hwmon/sch5627.c
9672
9673 SMSC47B397 HARDWARE MONITOR DRIVER
9674 M:      Jean Delvare <jdelvare@suse.com>
9675 L:      lm-sensors@lm-sensors.org
9676 S:      Maintained
9677 F:      Documentation/hwmon/smsc47b397
9678 F:      drivers/hwmon/smsc47b397.c
9679
9680 SMSC911x ETHERNET DRIVER
9681 M:      Steve Glendinning <steve.glendinning@shawell.net>
9682 L:      netdev@vger.kernel.org
9683 S:      Maintained
9684 F:      include/linux/smsc911x.h
9685 F:      drivers/net/ethernet/smsc/smsc911x.*
9686
9687 SMSC9420 PCI ETHERNET DRIVER
9688 M:      Steve Glendinning <steve.glendinning@shawell.net>
9689 L:      netdev@vger.kernel.org
9690 S:      Maintained
9691 F:      drivers/net/ethernet/smsc/smsc9420.*
9692
9693 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9694 M:      Steve Glendinning <steve.glendinning@shawell.net>
9695 L:      linux-fbdev@vger.kernel.org
9696 S:      Maintained
9697 F:      drivers/video/fbdev/smscufx.c
9698
9699 SOC-CAMERA V4L2 SUBSYSTEM
9700 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9701 L:      linux-media@vger.kernel.org
9702 T:      git git://linuxtv.org/media_tree.git
9703 S:      Maintained
9704 F:      include/media/soc*
9705 F:      drivers/media/i2c/soc_camera/
9706 F:      drivers/media/platform/soc_camera/
9707
9708 SOEKRIS NET48XX LED SUPPORT
9709 M:      Chris Boot <bootc@bootc.net>
9710 S:      Maintained
9711 F:      drivers/leds/leds-net48xx.c
9712
9713 SOFTLOGIC 6x10 MPEG CODEC
9714 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9715 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9716 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9717 M:      Ismael Luceno <ismael@iodev.co.uk>
9718 L:      linux-media@vger.kernel.org
9719 S:      Supported
9720 F:      drivers/media/pci/solo6x10/
9721
9722 SOFTWARE RAID (Multiple Disks) SUPPORT
9723 M:      Neil Brown <neilb@suse.com>
9724 L:      linux-raid@vger.kernel.org
9725 S:      Supported
9726 F:      drivers/md/
9727 F:      include/linux/raid/
9728 F:      include/uapi/linux/raid/
9729
9730 SONIC NETWORK DRIVER
9731 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9732 L:      netdev@vger.kernel.org
9733 S:      Maintained
9734 F:      drivers/net/ethernet/natsemi/sonic.*
9735
9736 SONICS SILICON BACKPLANE DRIVER (SSB)
9737 M:      Michael Buesch <m@bues.ch>
9738 L:      netdev@vger.kernel.org
9739 S:      Maintained
9740 F:      drivers/ssb/
9741 F:      include/linux/ssb/
9742
9743 SONY VAIO CONTROL DEVICE DRIVER
9744 M:      Mattia Dongili <malattia@linux.it>
9745 L:      platform-driver-x86@vger.kernel.org
9746 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9747 S:      Maintained
9748 F:      Documentation/laptops/sony-laptop.txt
9749 F:      drivers/char/sonypi.c
9750 F:      drivers/platform/x86/sony-laptop.c
9751 F:      include/linux/sony-laptop.h
9752
9753 SONY MEMORYSTICK CARD SUPPORT
9754 M:      Alex Dubov <oakad@yahoo.com>
9755 W:      http://tifmxx.berlios.de/
9756 S:      Maintained
9757 F:      drivers/memstick/host/tifm_ms.c
9758
9759 SONY MEMORYSTICK STANDARD SUPPORT
9760 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9761 S:      Maintained
9762 F:      drivers/memstick/core/ms_block.*
9763
9764 SOUND
9765 M:      Jaroslav Kysela <perex@perex.cz>
9766 M:      Takashi Iwai <tiwai@suse.com>
9767 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9768 W:      http://www.alsa-project.org/
9769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9770 T:      git git://git.alsa-project.org/alsa-kernel.git
9771 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9772 S:      Maintained
9773 F:      Documentation/sound/
9774 F:      include/sound/
9775 F:      include/uapi/sound/
9776 F:      sound/
9777
9778 SOUND - COMPRESSED AUDIO
9779 M:      Vinod Koul <vinod.koul@intel.com>
9780 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9782 S:      Supported
9783 F:      Documentation/sound/alsa/compress_offload.txt
9784 F:      include/sound/compress_driver.h
9785 F:      include/uapi/sound/compress_*
9786 F:      sound/core/compress_offload.c
9787 F:      sound/soc/soc-compress.c
9788
9789 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9790 M:      Liam Girdwood <lgirdwood@gmail.com>
9791 M:      Mark Brown <broonie@kernel.org>
9792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9793 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9794 W:      http://alsa-project.org/main/index.php/ASoC
9795 S:      Supported
9796 F:      Documentation/sound/alsa/soc/
9797 F:      sound/soc/
9798 F:      include/sound/soc*
9799
9800 SOUND - DMAENGINE HELPERS
9801 M:      Lars-Peter Clausen <lars@metafoo.de>
9802 S:      Supported
9803 F:      include/sound/dmaengine_pcm.h
9804 F:      sound/core/pcm_dmaengine.c
9805 F:      sound/soc/soc-generic-dmaengine-pcm.c
9806
9807 SP2 MEDIA DRIVER
9808 M:      Olli Salonen <olli.salonen@iki.fi>
9809 L:      linux-media@vger.kernel.org
9810 W:      http://linuxtv.org/
9811 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9812 S:      Maintained
9813 F:      drivers/media/dvb-frontends/sp2*
9814
9815 SPARC + UltraSPARC (sparc/sparc64)
9816 M:      "David S. Miller" <davem@davemloft.net>
9817 L:      sparclinux@vger.kernel.org
9818 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9821 S:      Maintained
9822 F:      arch/sparc/
9823 F:      drivers/sbus/
9824
9825 SPARC SERIAL DRIVERS
9826 M:      "David S. Miller" <davem@davemloft.net>
9827 L:      sparclinux@vger.kernel.org
9828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9830 S:      Maintained
9831 F:      include/linux/sunserialcore.h
9832 F:      drivers/tty/serial/suncore.c
9833 F:      drivers/tty/serial/sunhv.c
9834 F:      drivers/tty/serial/sunsab.c
9835 F:      drivers/tty/serial/sunsab.h
9836 F:      drivers/tty/serial/sunsu.c
9837 F:      drivers/tty/serial/sunzilog.c
9838 F:      drivers/tty/serial/sunzilog.h
9839
9840 SPARSE CHECKER
9841 M:      "Christopher Li" <sparse@chrisli.org>
9842 L:      linux-sparse@vger.kernel.org
9843 W:      https://sparse.wiki.kernel.org/
9844 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9845 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9846 S:      Maintained
9847 F:      include/linux/compiler.h
9848
9849 SPEAR PLATFORM SUPPORT
9850 M:      Viresh Kumar <vireshk@kernel.org>
9851 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9852 L:      spear-devel@list.st.com
9853 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9854 W:      http://www.st.com/spear
9855 S:      Maintained
9856 F:      arch/arm/mach-spear/
9857
9858 SPEAR CLOCK FRAMEWORK SUPPORT
9859 M:      Viresh Kumar <vireshk@kernel.org>
9860 L:      spear-devel@list.st.com
9861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9862 W:      http://www.st.com/spear
9863 S:      Maintained
9864 F:      drivers/clk/spear/
9865
9866 SPI SUBSYSTEM
9867 M:      Mark Brown <broonie@kernel.org>
9868 L:      linux-spi@vger.kernel.org
9869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9870 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9871 S:      Maintained
9872 F:      Documentation/spi/
9873 F:      drivers/spi/
9874 F:      include/linux/spi/
9875 F:      include/uapi/linux/spi/
9876
9877 SPIDERNET NETWORK DRIVER for CELL
9878 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9879 L:      netdev@vger.kernel.org
9880 S:      Supported
9881 F:      Documentation/networking/spider_net.txt
9882 F:      drivers/net/ethernet/toshiba/spider_net*
9883
9884 SPU FILE SYSTEM
9885 M:      Jeremy Kerr <jk@ozlabs.org>
9886 L:      linuxppc-dev@lists.ozlabs.org
9887 W:      http://www.ibm.com/developerworks/power/cell/
9888 S:      Supported
9889 F:      Documentation/filesystems/spufs.txt
9890 F:      arch/powerpc/platforms/cell/spufs/
9891
9892 SQUASHFS FILE SYSTEM
9893 M:      Phillip Lougher <phillip@squashfs.org.uk>
9894 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9895 W:      http://squashfs.org.uk
9896 S:      Maintained
9897 F:      Documentation/filesystems/squashfs.txt
9898 F:      fs/squashfs/
9899
9900 SRM (Alpha) environment access
9901 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9902 S:      Maintained
9903 F:      arch/alpha/kernel/srm_env.c
9904
9905 STABLE BRANCH
9906 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9907 L:      stable@vger.kernel.org
9908 S:      Supported
9909 F:      Documentation/stable_kernel_rules.txt
9910
9911 STAGING SUBSYSTEM
9912 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9914 L:      devel@driverdev.osuosl.org
9915 S:      Supported
9916 F:      drivers/staging/
9917
9918 STAGING - COMEDI
9919 M:      Ian Abbott <abbotti@mev.co.uk>
9920 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9921 S:      Odd Fixes
9922 F:      drivers/staging/comedi/
9923
9924 STAGING - FLARION FT1000 DRIVERS
9925 M:      Marek Belisko <marek.belisko@gmail.com>
9926 S:      Odd Fixes
9927 F:      drivers/staging/ft1000/
9928
9929 STAGING - INDUSTRIAL IO
9930 M:      Jonathan Cameron <jic23@kernel.org>
9931 L:      linux-iio@vger.kernel.org
9932 S:      Odd Fixes
9933 F:      drivers/staging/iio/
9934
9935 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9936 M:      Jarod Wilson <jarod@wilsonet.com>
9937 W:      http://www.lirc.org/
9938 S:      Odd Fixes
9939 F:      drivers/staging/media/lirc/
9940
9941 STAGING - LUSTRE PARALLEL FILESYSTEM
9942 M:      Oleg Drokin <oleg.drokin@intel.com>
9943 M:      Andreas Dilger <andreas.dilger@intel.com>
9944 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
9945 W:      http://wiki.lustre.org/
9946 S:      Maintained
9947 F:      drivers/staging/lustre
9948
9949 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9950 M:      Marc Dietrich <marvin24@gmx.de>
9951 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9952 L:      linux-tegra@vger.kernel.org
9953 S:      Maintained
9954 F:      drivers/staging/nvec/
9955
9956 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9957 M:      Jens Frederich <jfrederich@gmail.com>
9958 M:      Daniel Drake <dsd@laptop.org>
9959 M:      Jon Nettleton <jon.nettleton@gmail.com>
9960 W:      http://wiki.laptop.org/go/DCON
9961 S:      Maintained
9962 F:      drivers/staging/olpc_dcon/
9963
9964 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9965 M:      Willy Tarreau <willy@meta-x.org>
9966 S:      Odd Fixes
9967 F:      drivers/staging/panel/
9968
9969 STAGING - REALTEK RTL8712U DRIVERS
9970 M:      Larry Finger <Larry.Finger@lwfinger.net>
9971 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9972 S:      Odd Fixes
9973 F:      drivers/staging/rtl8712/
9974
9975 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9976 M:      Larry Finger <Larry.Finger@lwfinger.net>
9977 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9978 L:      linux-wireless@vger.kernel.org
9979 S:      Maintained
9980 F:      drivers/staging/rtl8723au/
9981
9982 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9983 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9984 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9985 M:      Sudip Mukherjee <sudip@vectorindia.org>
9986 L:      linux-fbdev@vger.kernel.org
9987 S:      Maintained
9988 F:      drivers/staging/sm750fb/
9989
9990 STAGING - SLICOSS
9991 M:      Lior Dotan <liodot@gmail.com>
9992 M:      Christopher Harrer <charrer@alacritech.com>
9993 S:      Odd Fixes
9994 F:      drivers/staging/slicoss/
9995
9996 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9997 M:      William Hubbs <w.d.hubbs@gmail.com>
9998 M:      Chris Brannon <chris@the-brannons.com>
9999 M:      Kirk Reiser <kirk@reisers.ca>
10000 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10001 L:      speakup@linux-speakup.org
10002 W:      http://www.linux-speakup.org/
10003 S:      Odd Fixes
10004 F:      drivers/staging/speakup/
10005
10006 STAGING - VIA VT665X DRIVERS
10007 M:      Forest Bond <forest@alittletooquiet.net>
10008 S:      Odd Fixes
10009 F:      drivers/staging/vt665?/
10010
10011 STAGING - WILC1000 WIFI DRIVER
10012 M:      Johnny Kim <johnny.kim@atmel.com>
10013 M:      Rachel Kim <rachel.kim@atmel.com>
10014 M:      Dean Lee <dean.lee@atmel.com>
10015 M:      Chris Park <chris.park@atmel.com>
10016 L:      linux-wireless@vger.kernel.org
10017 S:      Supported
10018 F:      drivers/staging/wilc1000/
10019
10020 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10021 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10022 S:      Odd Fixes
10023 F:      drivers/staging/xgifb/
10024
10025 HFI1 DRIVER
10026 M:      Mike Marciniszyn <infinipath@intel.com>
10027 L:      linux-rdma@vger.kernel.org
10028 S:      Supported
10029 F:      drivers/staging/rdma/hfi1
10030
10031 STARFIRE/DURALAN NETWORK DRIVER
10032 M:      Ion Badulescu <ionut@badula.org>
10033 S:      Odd Fixes
10034 F:      drivers/net/ethernet/adaptec/starfire*
10035
10036 SUN3/3X
10037 M:      Sam Creasey <sammy@sammy.net>
10038 W:      http://sammy.net/sun3/
10039 S:      Maintained
10040 F:      arch/m68k/kernel/*sun3*
10041 F:      arch/m68k/sun3*/
10042 F:      arch/m68k/include/asm/sun3*
10043 F:      drivers/net/ethernet/i825xx/sun3*
10044
10045 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10046 M:      Hans de Goede <hdegoede@redhat.com>
10047 L:      linux-input@vger.kernel.org
10048 S:      Maintained
10049 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10050 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10051
10052 SUNDANCE NETWORK DRIVER
10053 M:      Denis Kirjanov <kda@linux-powerpc.org>
10054 L:      netdev@vger.kernel.org
10055 S:      Maintained
10056 F:      drivers/net/ethernet/dlink/sundance.c
10057
10058 SUPERH
10059 L:      linux-sh@vger.kernel.org
10060 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10061 S:      Orphan
10062 F:      Documentation/sh/
10063 F:      arch/sh/
10064 F:      drivers/sh/
10065
10066 SUSPEND TO RAM
10067 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10068 M:      Len Brown <len.brown@intel.com>
10069 M:      Pavel Machek <pavel@ucw.cz>
10070 L:      linux-pm@vger.kernel.org
10071 S:      Supported
10072 F:      Documentation/power/
10073 F:      arch/x86/kernel/acpi/
10074 F:      drivers/base/power/
10075 F:      kernel/power/
10076 F:      include/linux/suspend.h
10077 F:      include/linux/freezer.h
10078 F:      include/linux/pm.h
10079
10080 SVGA HANDLING
10081 M:      Martin Mares <mj@ucw.cz>
10082 L:      linux-video@atrey.karlin.mff.cuni.cz
10083 S:      Maintained
10084 F:      Documentation/svga.txt
10085 F:      arch/x86/boot/video*
10086
10087 SWIOTLB SUBSYSTEM
10088 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10089 L:      linux-kernel@vger.kernel.org
10090 S:      Supported
10091 F:      lib/swiotlb.c
10092 F:      arch/*/kernel/pci-swiotlb.c
10093 F:      include/linux/swiotlb.h
10094
10095 SWITCHDEV
10096 M:      Jiri Pirko <jiri@resnulli.us>
10097 L:      netdev@vger.kernel.org
10098 S:      Supported
10099 F:      net/switchdev/
10100 F:      include/net/switchdev.h
10101
10102 SYNOPSYS ARC ARCHITECTURE
10103 M:      Vineet Gupta <vgupta@synopsys.com>
10104 S:      Supported
10105 F:      arch/arc/
10106 F:      Documentation/devicetree/bindings/arc/*
10107 F:      drivers/tty/serial/arc_uart.c
10108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10109
10110 SYNOPSYS ARC SDP platform support
10111 M:      Alexey Brodkin <abrodkin@synopsys.com>
10112 S:      Supported
10113 F:      arch/arc/plat-axs10x
10114 F:      arch/arc/boot/dts/ax*
10115 F:      Documentation/devicetree/bindings/arc/axs10*
10116
10117 SYSTEM CONFIGURATION (SYSCON)
10118 M:      Lee Jones <lee.jones@linaro.org>
10119 M:      Arnd Bergmann <arnd@arndb.de>
10120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10121 S:      Supported
10122 F:      drivers/mfd/syscon.c
10123
10124 SYSV FILESYSTEM
10125 M:      Christoph Hellwig <hch@infradead.org>
10126 S:      Maintained
10127 F:      Documentation/filesystems/sysv-fs.txt
10128 F:      fs/sysv/
10129 F:      include/linux/sysv_fs.h
10130
10131 TARGET SUBSYSTEM
10132 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10133 L:      linux-scsi@vger.kernel.org
10134 L:      target-devel@vger.kernel.org
10135 W:      http://www.linux-iscsi.org
10136 W:      http://groups.google.com/group/linux-iscsi-target-dev
10137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10138 S:      Supported
10139 F:      drivers/target/
10140 F:      include/target/
10141 F:      Documentation/target/
10142
10143 TASKSTATS STATISTICS INTERFACE
10144 M:      Balbir Singh <bsingharora@gmail.com>
10145 S:      Maintained
10146 F:      Documentation/accounting/taskstats*
10147 F:      include/linux/taskstats*
10148 F:      kernel/taskstats.c
10149
10150 TC CLASSIFIER
10151 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10152 L:      netdev@vger.kernel.org
10153 S:      Maintained
10154 F:      include/net/pkt_cls.h
10155 F:      include/uapi/linux/pkt_cls.h
10156 F:      net/sched/
10157
10158 TCP LOW PRIORITY MODULE
10159 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10160 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10161 W:      http://tcp-lp-mod.sourceforge.net/
10162 S:      Maintained
10163 F:      net/ipv4/tcp_lp.c
10164
10165 TDA10071 MEDIA DRIVER
10166 M:      Antti Palosaari <crope@iki.fi>
10167 L:      linux-media@vger.kernel.org
10168 W:      http://linuxtv.org/
10169 W:      http://palosaari.fi/linux/
10170 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10171 T:      git git://linuxtv.org/anttip/media_tree.git
10172 S:      Maintained
10173 F:      drivers/media/dvb-frontends/tda10071*
10174
10175 TDA18212 MEDIA DRIVER
10176 M:      Antti Palosaari <crope@iki.fi>
10177 L:      linux-media@vger.kernel.org
10178 W:      http://linuxtv.org/
10179 W:      http://palosaari.fi/linux/
10180 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10181 T:      git git://linuxtv.org/anttip/media_tree.git
10182 S:      Maintained
10183 F:      drivers/media/tuners/tda18212*
10184
10185 TDA18218 MEDIA DRIVER
10186 M:      Antti Palosaari <crope@iki.fi>
10187 L:      linux-media@vger.kernel.org
10188 W:      http://linuxtv.org/
10189 W:      http://palosaari.fi/linux/
10190 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10191 T:      git git://linuxtv.org/anttip/media_tree.git
10192 S:      Maintained
10193 F:      drivers/media/tuners/tda18218*
10194
10195 TDA18271 MEDIA DRIVER
10196 M:      Michael Krufky <mkrufky@linuxtv.org>
10197 L:      linux-media@vger.kernel.org
10198 W:      http://linuxtv.org/
10199 W:      http://github.com/mkrufky
10200 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10201 T:      git git://linuxtv.org/mkrufky/tuners.git
10202 S:      Maintained
10203 F:      drivers/media/tuners/tda18271*
10204
10205 TDA827x MEDIA DRIVER
10206 M:      Michael Krufky <mkrufky@linuxtv.org>
10207 L:      linux-media@vger.kernel.org
10208 W:      http://linuxtv.org/
10209 W:      http://github.com/mkrufky
10210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10211 T:      git git://linuxtv.org/mkrufky/tuners.git
10212 S:      Maintained
10213 F:      drivers/media/tuners/tda8290.*
10214
10215 TDA8290 MEDIA DRIVER
10216 M:      Michael Krufky <mkrufky@linuxtv.org>
10217 L:      linux-media@vger.kernel.org
10218 W:      http://linuxtv.org/
10219 W:      http://github.com/mkrufky
10220 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10221 T:      git git://linuxtv.org/mkrufky/tuners.git
10222 S:      Maintained
10223 F:      drivers/media/tuners/tda8290.*
10224
10225 TDA9840 MEDIA DRIVER
10226 M:      Hans Verkuil <hverkuil@xs4all.nl>
10227 L:      linux-media@vger.kernel.org
10228 T:      git git://linuxtv.org/media_tree.git
10229 W:      http://linuxtv.org
10230 S:      Maintained
10231 F:      drivers/media/i2c/tda9840*
10232
10233 TEA5761 TUNER DRIVER
10234 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10235 L:      linux-media@vger.kernel.org
10236 W:      http://linuxtv.org
10237 T:      git git://linuxtv.org/media_tree.git
10238 S:      Odd fixes
10239 F:      drivers/media/tuners/tea5761.*
10240
10241 TEA5767 TUNER DRIVER
10242 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10243 L:      linux-media@vger.kernel.org
10244 W:      http://linuxtv.org
10245 T:      git git://linuxtv.org/media_tree.git
10246 S:      Maintained
10247 F:      drivers/media/tuners/tea5767.*
10248
10249 TEA6415C MEDIA DRIVER
10250 M:      Hans Verkuil <hverkuil@xs4all.nl>
10251 L:      linux-media@vger.kernel.org
10252 T:      git git://linuxtv.org/media_tree.git
10253 W:      http://linuxtv.org
10254 S:      Maintained
10255 F:      drivers/media/i2c/tea6415c*
10256
10257 TEA6420 MEDIA DRIVER
10258 M:      Hans Verkuil <hverkuil@xs4all.nl>
10259 L:      linux-media@vger.kernel.org
10260 T:      git git://linuxtv.org/media_tree.git
10261 W:      http://linuxtv.org
10262 S:      Maintained
10263 F:      drivers/media/i2c/tea6420*
10264
10265 TEAM DRIVER
10266 M:      Jiri Pirko <jiri@resnulli.us>
10267 L:      netdev@vger.kernel.org
10268 S:      Supported
10269 F:      drivers/net/team/
10270 F:      include/linux/if_team.h
10271 F:      include/uapi/linux/if_team.h
10272
10273 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10274 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10275 S:      Maintained
10276 F:      arch/x86/platform/ts5500/
10277
10278 TECHNOTREND USB IR RECEIVER
10279 M:      Sean Young <sean@mess.org>
10280 L:      linux-media@vger.kernel.org
10281 S:      Maintained
10282 F:      drivers/media/rc/ttusbir.c
10283
10284 TEGRA ARCHITECTURE SUPPORT
10285 M:      Stephen Warren <swarren@wwwdotorg.org>
10286 M:      Thierry Reding <thierry.reding@gmail.com>
10287 M:      Alexandre Courbot <gnurou@gmail.com>
10288 L:      linux-tegra@vger.kernel.org
10289 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10291 S:      Supported
10292 N:      [^a-z]tegra
10293
10294 TEGRA CLOCK DRIVER
10295 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10296 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10297 S:      Supported
10298 F:      drivers/clk/tegra/
10299
10300 TEGRA DMA DRIVER
10301 M:      Laxman Dewangan <ldewangan@nvidia.com>
10302 S:      Supported
10303 F:      drivers/dma/tegra20-apb-dma.c
10304
10305 TEGRA I2C DRIVER
10306 M:      Laxman Dewangan <ldewangan@nvidia.com>
10307 S:      Supported
10308 F:      drivers/i2c/busses/i2c-tegra.c
10309
10310 TEGRA IOMMU DRIVERS
10311 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10312 S:      Supported
10313 F:      drivers/iommu/tegra*
10314
10315 TEGRA KBC DRIVER
10316 M:      Rakesh Iyer <riyer@nvidia.com>
10317 M:      Laxman Dewangan <ldewangan@nvidia.com>
10318 S:      Supported
10319 F:      drivers/input/keyboard/tegra-kbc.c
10320
10321 TEGRA PWM DRIVER
10322 M:      Thierry Reding <thierry.reding@gmail.com>
10323 S:      Supported
10324 F:      drivers/pwm/pwm-tegra.c
10325
10326 TEGRA SERIAL DRIVER
10327 M:      Laxman Dewangan <ldewangan@nvidia.com>
10328 S:      Supported
10329 F:      drivers/tty/serial/serial-tegra.c
10330
10331 TEGRA SPI DRIVER
10332 M:      Laxman Dewangan <ldewangan@nvidia.com>
10333 S:      Supported
10334 F:      drivers/spi/spi-tegra*
10335
10336 TEHUTI ETHERNET DRIVER
10337 M:      Andy Gospodarek <andy@greyhouse.net>
10338 L:      netdev@vger.kernel.org
10339 S:      Supported
10340 F:      drivers/net/ethernet/tehuti/*
10341
10342 Telecom Clock Driver for MCPL0010
10343 M:      Mark Gross <mark.gross@intel.com>
10344 S:      Supported
10345 F:      drivers/char/tlclk.c
10346
10347 TENSILICA XTENSA PORT (xtensa)
10348 M:      Chris Zankel <chris@zankel.net>
10349 M:      Max Filippov <jcmvbkbc@gmail.com>
10350 L:      linux-xtensa@linux-xtensa.org
10351 S:      Maintained
10352 F:      arch/xtensa/
10353 F:      drivers/irqchip/irq-xtensa-*
10354
10355 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10356 M:      Hans Verkuil <hverkuil@xs4all.nl>
10357 L:      linux-media@vger.kernel.org
10358 T:      git git://linuxtv.org/media_tree.git
10359 W:      http://linuxtv.org
10360 S:      Maintained
10361 F:      drivers/media/radio/radio-raremono.c
10362
10363 THERMAL
10364 M:      Zhang Rui <rui.zhang@intel.com>
10365 M:      Eduardo Valentin <edubezval@gmail.com>
10366 L:      linux-pm@vger.kernel.org
10367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10369 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10370 S:      Supported
10371 F:      drivers/thermal/
10372 F:      include/linux/thermal.h
10373 F:      include/uapi/linux/thermal.h
10374 F:      include/linux/cpu_cooling.h
10375 F:      Documentation/devicetree/bindings/thermal/
10376
10377 THERMAL/CPU_COOLING
10378 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10379 M:      Viresh Kumar <viresh.kumar@linaro.org>
10380 M:      Javi Merino <javi.merino@arm.com>
10381 L:      linux-pm@vger.kernel.org
10382 S:      Supported
10383 F:      Documentation/thermal/cpu-cooling-api.txt
10384 F:      drivers/thermal/cpu_cooling.c
10385 F:      include/linux/cpu_cooling.h
10386
10387 THINGM BLINK(1) USB RGB LED DRIVER
10388 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10389 S:      Maintained
10390 F:      drivers/hid/hid-thingm.c
10391
10392 THINKPAD ACPI EXTRAS DRIVER
10393 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10394 L:      ibm-acpi-devel@lists.sourceforge.net
10395 L:      platform-driver-x86@vger.kernel.org
10396 W:      http://ibm-acpi.sourceforge.net
10397 W:      http://thinkwiki.org/wiki/Ibm-acpi
10398 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10399 S:      Maintained
10400 F:      drivers/platform/x86/thinkpad_acpi.c
10401
10402 TI BANDGAP AND THERMAL DRIVER
10403 M:      Eduardo Valentin <edubezval@gmail.com>
10404 L:      linux-pm@vger.kernel.org
10405 L:      linux-omap@vger.kernel.org
10406 S:      Maintained
10407 F:      drivers/thermal/ti-soc-thermal/
10408
10409 TI CDCE706 CLOCK DRIVER
10410 M:      Max Filippov <jcmvbkbc@gmail.com>
10411 S:      Maintained
10412 F:      drivers/clk/clk-cdce706.c
10413
10414 TI CLOCK DRIVER
10415 M:      Tero Kristo <t-kristo@ti.com>
10416 L:      linux-omap@vger.kernel.org
10417 S:      Maintained
10418 F:      drivers/clk/ti/
10419 F:      include/linux/clk/ti.h
10420
10421 TI FLASH MEDIA INTERFACE DRIVER
10422 M:      Alex Dubov <oakad@yahoo.com>
10423 S:      Maintained
10424 F:      drivers/misc/tifm*
10425 F:      drivers/mmc/host/tifm_sd.c
10426 F:      include/linux/tifm.h
10427
10428 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10429 M:      Santosh Shilimkar <ssantosh@kernel.org>
10430 L:      linux-kernel@vger.kernel.org
10431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10432 S:      Maintained
10433 F:      drivers/soc/ti/*
10434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10435
10436
10437 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10438 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10439 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10440 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10441 S:      Maintained
10442 F:      sound/soc/codecs/lm49453*
10443 F:      sound/soc/codecs/isabelle*
10444
10445 TI LP855x BACKLIGHT DRIVER
10446 M:      Milo Kim <milo.kim@ti.com>
10447 S:      Maintained
10448 F:      Documentation/backlight/lp855x-driver.txt
10449 F:      drivers/video/backlight/lp855x_bl.c
10450 F:      include/linux/platform_data/lp855x.h
10451
10452 TI LP8727 CHARGER DRIVER
10453 M:      Milo Kim <milo.kim@ti.com>
10454 S:      Maintained
10455 F:      drivers/power/lp8727_charger.c
10456 F:      include/linux/platform_data/lp8727.h
10457
10458 TI LP8788 MFD DRIVER
10459 M:      Milo Kim <milo.kim@ti.com>
10460 S:      Maintained
10461 F:      drivers/iio/adc/lp8788_adc.c
10462 F:      drivers/leds/leds-lp8788.c
10463 F:      drivers/mfd/lp8788*.c
10464 F:      drivers/power/lp8788-charger.c
10465 F:      drivers/regulator/lp8788-*.c
10466 F:      include/linux/mfd/lp8788*.h
10467
10468 TI NETCP ETHERNET DRIVER
10469 M:      Wingman Kwok <w-kwok2@ti.com>
10470 M:      Murali Karicheri <m-karicheri2@ti.com>
10471 L:      netdev@vger.kernel.org
10472 S:      Maintained
10473 F:      drivers/net/ethernet/ti/netcp*
10474
10475 TI TAS571X FAMILY ASoC CODEC DRIVER
10476 M:      Kevin Cernekee <cernekee@chromium.org>
10477 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10478 S:      Odd Fixes
10479 F:      sound/soc/codecs/tas571x*
10480
10481 TI TWL4030 SERIES SOC CODEC DRIVER
10482 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10483 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10484 S:      Maintained
10485 F:      sound/soc/codecs/twl4030*
10486
10487 TI WILINK WIRELESS DRIVERS
10488 L:      linux-wireless@vger.kernel.org
10489 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10490 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10492 S:      Orphan
10493 F:      drivers/net/wireless/ti/
10494 F:      include/linux/wl12xx.h
10495
10496 TIPC NETWORK LAYER
10497 M:      Jon Maloy <jon.maloy@ericsson.com>
10498 M:      Ying Xue <ying.xue@windriver.com>
10499 L:      netdev@vger.kernel.org (core kernel code)
10500 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10501 W:      http://tipc.sourceforge.net/
10502 S:      Maintained
10503 F:      include/uapi/linux/tipc*.h
10504 F:      net/tipc/
10505
10506 TILE ARCHITECTURE
10507 M:      Chris Metcalf <cmetcalf@ezchip.com>
10508 W:      http://www.ezchip.com/scm/
10509 S:      Supported
10510 F:      arch/tile/
10511 F:      drivers/char/tile-srom.c
10512 F:      drivers/edac/tile_edac.c
10513 F:      drivers/net/ethernet/tile/
10514 F:      drivers/rtc/rtc-tile.c
10515 F:      drivers/tty/hvc/hvc_tile.c
10516 F:      drivers/tty/serial/tilegx.c
10517 F:      drivers/usb/host/*-tilegx.c
10518 F:      include/linux/usb/tilegx.h
10519
10520 TLAN NETWORK DRIVER
10521 M:      Samuel Chessman <chessman@tux.org>
10522 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10523 W:      http://sourceforge.net/projects/tlan/
10524 S:      Maintained
10525 F:      Documentation/networking/tlan.txt
10526 F:      drivers/net/ethernet/ti/tlan.*
10527
10528 TOMOYO SECURITY MODULE
10529 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10530 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10531 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10532 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10533 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10534 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10535 W:      http://tomoyo.sourceforge.jp/
10536 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10537 S:      Maintained
10538 F:      security/tomoyo/
10539
10540 TOPSTAR LAPTOP EXTRAS DRIVER
10541 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10542 L:      platform-driver-x86@vger.kernel.org
10543 S:      Maintained
10544 F:      drivers/platform/x86/topstar-laptop.c
10545
10546 TOSHIBA ACPI EXTRAS DRIVER
10547 M:      Azael Avalos <coproscefalo@gmail.com>
10548 L:      platform-driver-x86@vger.kernel.org
10549 S:      Maintained
10550 F:      drivers/platform/x86/toshiba_acpi.c
10551
10552 TOSHIBA BLUETOOTH DRIVER
10553 M:      Azael Avalos <coproscefalo@gmail.com>
10554 L:      platform-driver-x86@vger.kernel.org
10555 S:      Maintained
10556 F:      drivers/platform/x86/toshiba_bluetooth.c
10557
10558 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10559 M:      Azael Avalos <coproscefalo@gmail.com>
10560 L:      platform-driver-x86@vger.kernel.org
10561 S:      Maintained
10562 F:      drivers/platform/x86/toshiba_haps.c
10563
10564 TOSHIBA SMM DRIVER
10565 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10566 W:      http://www.buzzard.org.uk/toshiba/
10567 S:      Maintained
10568 F:      drivers/char/toshiba.c
10569 F:      include/linux/toshiba.h
10570 F:      include/uapi/linux/toshiba.h
10571
10572 TOSHIBA TC358743 DRIVER
10573 M:      Mats Randgaard <matrandg@cisco.com>
10574 L:      linux-media@vger.kernel.org
10575 S:      Maintained
10576 F:      drivers/media/i2c/tc358743*
10577 F:      include/media/tc358743.h
10578
10579 TMIO MMC DRIVER
10580 M:      Ian Molton <ian@mnementh.co.uk>
10581 L:      linux-mmc@vger.kernel.org
10582 S:      Maintained
10583 F:      drivers/mmc/host/tmio_mmc*
10584 F:      drivers/mmc/host/sh_mobile_sdhi.c
10585 F:      include/linux/mmc/tmio.h
10586 F:      include/linux/mmc/sh_mobile_sdhi.h
10587
10588 TMP401 HARDWARE MONITOR DRIVER
10589 M:      Guenter Roeck <linux@roeck-us.net>
10590 L:      lm-sensors@lm-sensors.org
10591 S:      Maintained
10592 F:      Documentation/hwmon/tmp401
10593 F:      drivers/hwmon/tmp401.c
10594
10595 TMPFS (SHMEM FILESYSTEM)
10596 M:      Hugh Dickins <hughd@google.com>
10597 L:      linux-mm@kvack.org
10598 S:      Maintained
10599 F:      include/linux/shmem_fs.h
10600 F:      mm/shmem.c
10601
10602 TM6000 VIDEO4LINUX DRIVER
10603 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10604 L:      linux-media@vger.kernel.org
10605 W:      http://linuxtv.org
10606 T:      git git://linuxtv.org/media_tree.git
10607 S:      Odd fixes
10608 F:      drivers/media/usb/tm6000/
10609
10610 TW68 VIDEO4LINUX DRIVER
10611 M:      Hans Verkuil <hverkuil@xs4all.nl>
10612 L:      linux-media@vger.kernel.org
10613 T:      git git://linuxtv.org/media_tree.git
10614 W:      http://linuxtv.org
10615 S:      Odd Fixes
10616 F:      drivers/media/pci/tw68/
10617
10618 TPM DEVICE DRIVER
10619 M:      Peter Huewe <peterhuewe@gmx.de>
10620 M:      Marcel Selhorst <tpmdd@selhorst.net>
10621 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10622 W:      http://tpmdd.sourceforge.net
10623 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10624 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10625 T:      https://github.com/PeterHuewe/linux-tpmdd
10626 S:      Maintained
10627 F:      drivers/char/tpm/
10628
10629 TPM IBM_VTPM DEVICE DRIVER
10630 M:      Ashley Lai <ashleydlai@gmail.com>
10631 W:      http://tpmdd.sourceforge.net
10632 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10633 S:      Maintained
10634 F:      drivers/char/tpm/tpm_ibmvtpm*
10635
10636 TRACING
10637 M:      Steven Rostedt <rostedt@goodmis.org>
10638 M:      Ingo Molnar <mingo@redhat.com>
10639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10640 S:      Maintained
10641 F:      Documentation/trace/ftrace.txt
10642 F:      arch/*/*/*/ftrace.h
10643 F:      arch/*/kernel/ftrace.c
10644 F:      include/*/ftrace.h
10645 F:      include/linux/trace*.h
10646 F:      include/trace/
10647 F:      kernel/trace/
10648 F:      tools/testing/selftests/ftrace/
10649
10650 TRIVIAL PATCHES
10651 M:      Jiri Kosina <trivial@kernel.org>
10652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10653 S:      Maintained
10654 K:      ^Subject:.*(?i)trivial
10655
10656 TTY LAYER
10657 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10658 M:      Jiri Slaby <jslaby@suse.com>
10659 S:      Supported
10660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10661 F:      Documentation/serial/
10662 F:      drivers/tty/
10663 F:      drivers/tty/serial/serial_core.c
10664 F:      include/linux/serial_core.h
10665 F:      include/linux/serial.h
10666 F:      include/linux/tty.h
10667 F:      include/uapi/linux/serial_core.h
10668 F:      include/uapi/linux/serial.h
10669 F:      include/uapi/linux/tty.h
10670
10671 TUA9001 MEDIA DRIVER
10672 M:      Antti Palosaari <crope@iki.fi>
10673 L:      linux-media@vger.kernel.org
10674 W:      http://linuxtv.org/
10675 W:      http://palosaari.fi/linux/
10676 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10677 T:      git git://linuxtv.org/anttip/media_tree.git
10678 S:      Maintained
10679 F:      drivers/media/tuners/tua9001*
10680
10681 TULIP NETWORK DRIVERS
10682 M:      Grant Grundler <grundler@parisc-linux.org>
10683 L:      netdev@vger.kernel.org
10684 S:      Maintained
10685 F:      drivers/net/ethernet/dec/tulip/
10686
10687 TUN/TAP driver
10688 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10689 W:      http://vtun.sourceforge.net/tun
10690 S:      Maintained
10691 F:      Documentation/networking/tuntap.txt
10692 F:      arch/um/os-Linux/drivers/
10693
10694 TURBOCHANNEL SUBSYSTEM
10695 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10696 M:      Ralf Baechle <ralf@linux-mips.org>
10697 L:      linux-mips@linux-mips.org
10698 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10699 S:      Maintained
10700 F:      drivers/tc/
10701 F:      include/linux/tc.h
10702
10703 U14-34F SCSI DRIVER
10704 M:      Dario Ballabio <ballabio_dario@emc.com>
10705 L:      linux-scsi@vger.kernel.org
10706 S:      Maintained
10707 F:      drivers/scsi/u14-34f.c
10708
10709 UBI FILE SYSTEM (UBIFS)
10710 M:      Artem Bityutskiy <dedekind1@gmail.com>
10711 M:      Adrian Hunter <adrian.hunter@intel.com>
10712 L:      linux-mtd@lists.infradead.org
10713 T:      git git://git.infradead.org/ubifs-2.6.git
10714 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10715 S:      Maintained
10716 F:      Documentation/filesystems/ubifs.txt
10717 F:      fs/ubifs/
10718
10719 UCLINUX (M68KNOMMU AND COLDFIRE)
10720 M:      Greg Ungerer <gerg@uclinux.org>
10721 W:      http://www.uclinux.org/
10722 L:      linux-m68k@lists.linux-m68k.org
10723 L:      uclinux-dev@uclinux.org  (subscribers-only)
10724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10725 S:      Maintained
10726 F:      arch/m68k/coldfire/
10727 F:      arch/m68k/68*/
10728 F:      arch/m68k/*/*_no.*
10729 F:      arch/m68k/include/asm/*_no.*
10730
10731 UDF FILESYSTEM
10732 M:      Jan Kara <jack@suse.com>
10733 S:      Maintained
10734 F:      Documentation/filesystems/udf.txt
10735 F:      fs/udf/
10736
10737 UFS FILESYSTEM
10738 M:      Evgeniy Dushistov <dushistov@mail.ru>
10739 S:      Maintained
10740 F:      Documentation/filesystems/ufs.txt
10741 F:      fs/ufs/
10742
10743 UHID USERSPACE HID IO DRIVER:
10744 M:      David Herrmann <dh.herrmann@googlemail.com>
10745 L:      linux-input@vger.kernel.org
10746 S:      Maintained
10747 F:      drivers/hid/uhid.c
10748 F:      include/uapi/linux/uhid.h
10749
10750 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10751 L:      linux-usb@vger.kernel.org
10752 S:      Orphan
10753 F:      drivers/uwb/
10754 F:      include/linux/uwb.h
10755 F:      include/linux/uwb/
10756
10757 UNICORE32 ARCHITECTURE:
10758 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10759 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10760 S:      Maintained
10761 T:      git git://github.com/gxt/linux.git
10762 F:      arch/unicore32/
10763
10764 UNIFDEF
10765 M:      Tony Finch <dot@dotat.at>
10766 W:      http://dotat.at/prog/unifdef
10767 S:      Maintained
10768 F:      scripts/unifdef.c
10769
10770 UNIFORM CDROM DRIVER
10771 M:      Jens Axboe <axboe@kernel.dk>
10772 W:      http://www.kernel.dk
10773 S:      Maintained
10774 F:      Documentation/cdrom/
10775 F:      drivers/cdrom/cdrom.c
10776 F:      include/linux/cdrom.h
10777 F:      include/uapi/linux/cdrom.h
10778
10779 UNISYS S-PAR DRIVERS
10780 M:      Benjamin Romer <benjamin.romer@unisys.com>
10781 M:      David Kershner <david.kershner@unisys.com>
10782 L:      sparmaintainer@unisys.com (Unisys internal)
10783 S:      Supported
10784 F:      drivers/staging/unisys/
10785
10786 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10787 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10788 L:      linux-scsi@vger.kernel.org
10789 S:      Supported
10790 F:      Documentation/scsi/ufs.txt
10791 F:      drivers/scsi/ufs/
10792
10793 UNSORTED BLOCK IMAGES (UBI)
10794 M:      Artem Bityutskiy <dedekind1@gmail.com>
10795 M:      Richard Weinberger <richard@nod.at>
10796 W:      http://www.linux-mtd.infradead.org/
10797 L:      linux-mtd@lists.infradead.org
10798 T:      git git://git.infradead.org/ubifs-2.6.git
10799 S:      Supported
10800 F:      drivers/mtd/ubi/
10801 F:      include/linux/mtd/ubi.h
10802 F:      include/uapi/mtd/ubi-user.h
10803
10804 USB ACM DRIVER
10805 M:      Oliver Neukum <oliver@neukum.org>
10806 L:      linux-usb@vger.kernel.org
10807 S:      Maintained
10808 F:      Documentation/usb/acm.txt
10809 F:      drivers/usb/class/cdc-acm.*
10810
10811 USB AR5523 WIRELESS DRIVER
10812 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10813 L:      linux-wireless@vger.kernel.org
10814 S:      Maintained
10815 F:      drivers/net/wireless/ath/ar5523/
10816
10817 USB ATTACHED SCSI
10818 M:      Hans de Goede <hdegoede@redhat.com>
10819 M:      Gerd Hoffmann <kraxel@redhat.com>
10820 L:      linux-usb@vger.kernel.org
10821 L:      linux-scsi@vger.kernel.org
10822 S:      Maintained
10823 F:      drivers/usb/storage/uas.c
10824
10825 USB CDC ETHERNET DRIVER
10826 M:      Oliver Neukum <oliver@neukum.org>
10827 L:      linux-usb@vger.kernel.org
10828 S:      Maintained
10829 F:      drivers/net/usb/cdc_*.c
10830 F:      include/uapi/linux/usb/cdc.h
10831
10832 USB CHAOSKEY DRIVER
10833 M:      Keith Packard <keithp@keithp.com>
10834 L:      linux-usb@vger.kernel.org
10835 S:      Maintained
10836 F:      drivers/usb/misc/chaoskey.c
10837
10838 USB CYPRESS C67X00 DRIVER
10839 M:      Peter Korsgaard <jacmet@sunsite.dk>
10840 L:      linux-usb@vger.kernel.org
10841 S:      Maintained
10842 F:      drivers/usb/c67x00/
10843
10844 USB DAVICOM DM9601 DRIVER
10845 M:      Peter Korsgaard <jacmet@sunsite.dk>
10846 L:      netdev@vger.kernel.org
10847 W:      http://www.linux-usb.org/usbnet
10848 S:      Maintained
10849 F:      drivers/net/usb/dm9601.c
10850
10851 USB DIAMOND RIO500 DRIVER
10852 M:      Cesar Miquel <miquel@df.uba.ar>
10853 L:      rio500-users@lists.sourceforge.net
10854 W:      http://rio500.sourceforge.net
10855 S:      Maintained
10856 F:      drivers/usb/misc/rio500*
10857
10858 USB EHCI DRIVER
10859 M:      Alan Stern <stern@rowland.harvard.edu>
10860 L:      linux-usb@vger.kernel.org
10861 S:      Maintained
10862 F:      Documentation/usb/ehci.txt
10863 F:      drivers/usb/host/ehci*
10864
10865 USB GADGET/PERIPHERAL SUBSYSTEM
10866 M:      Felipe Balbi <balbi@ti.com>
10867 L:      linux-usb@vger.kernel.org
10868 W:      http://www.linux-usb.org/gadget
10869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10870 S:      Maintained
10871 F:      drivers/usb/gadget/
10872 F:      include/linux/usb/gadget*
10873
10874 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10875 M:      Jiri Kosina <jikos@kernel.org>
10876 L:      linux-usb@vger.kernel.org
10877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10878 S:      Maintained
10879 F:      Documentation/hid/hiddev.txt
10880 F:      drivers/hid/usbhid/
10881
10882 USB ISP116X DRIVER
10883 M:      Olav Kongas <ok@artecdesign.ee>
10884 L:      linux-usb@vger.kernel.org
10885 S:      Maintained
10886 F:      drivers/usb/host/isp116x*
10887 F:      include/linux/usb/isp116x.h
10888
10889 USB MASS STORAGE DRIVER
10890 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10891 L:      linux-usb@vger.kernel.org
10892 L:      usb-storage@lists.one-eyed-alien.net
10893 S:      Maintained
10894 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10895 F:      drivers/usb/storage/
10896
10897 USB MIDI DRIVER
10898 M:      Clemens Ladisch <clemens@ladisch.de>
10899 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10900 T:      git git://git.alsa-project.org/alsa-kernel.git
10901 S:      Maintained
10902 F:      sound/usb/midi.*
10903
10904 USB NETWORKING DRIVERS
10905 L:      linux-usb@vger.kernel.org
10906 S:      Odd Fixes
10907 F:      drivers/net/usb/
10908
10909 USB OHCI DRIVER
10910 M:      Alan Stern <stern@rowland.harvard.edu>
10911 L:      linux-usb@vger.kernel.org
10912 S:      Maintained
10913 F:      Documentation/usb/ohci.txt
10914 F:      drivers/usb/host/ohci*
10915
10916 USB OTG FSM (Finite State Machine)
10917 M:      Peter Chen <Peter.Chen@freescale.com>
10918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10919 L:      linux-usb@vger.kernel.org
10920 S:      Maintained
10921 F:      drivers/usb/common/usb-otg-fsm.c
10922
10923 USB OVER IP DRIVER
10924 M:      Valentina Manea <valentina.manea.m@gmail.com>
10925 M:      Shuah Khan <shuah.kh@samsung.com>
10926 L:      linux-usb@vger.kernel.org
10927 S:      Maintained
10928 F:      drivers/usb/usbip/
10929 F:      tools/usb/usbip/
10930
10931 USB PEGASUS DRIVER
10932 M:      Petko Manolov <petkan@nucleusys.com>
10933 L:      linux-usb@vger.kernel.org
10934 L:      netdev@vger.kernel.org
10935 T:      git git://github.com/petkan/pegasus.git
10936 W:      https://github.com/petkan/pegasus
10937 S:      Maintained
10938 F:      drivers/net/usb/pegasus.*
10939
10940 USB PHY LAYER
10941 M:      Felipe Balbi <balbi@ti.com>
10942 L:      linux-usb@vger.kernel.org
10943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10944 S:      Maintained
10945 F:      drivers/usb/phy/
10946
10947 USB PRINTER DRIVER (usblp)
10948 M:      Pete Zaitcev <zaitcev@redhat.com>
10949 L:      linux-usb@vger.kernel.org
10950 S:      Supported
10951 F:      drivers/usb/class/usblp.c
10952
10953 USB RTL8150 DRIVER
10954 M:      Petko Manolov <petkan@nucleusys.com>
10955 L:      linux-usb@vger.kernel.org
10956 L:      netdev@vger.kernel.org
10957 T:      git git://github.com/petkan/rtl8150.git
10958 W:      https://github.com/petkan/rtl8150
10959 S:      Maintained
10960 F:      drivers/net/usb/rtl8150.c
10961
10962 USB SERIAL SUBSYSTEM
10963 M:      Johan Hovold <johan@kernel.org>
10964 L:      linux-usb@vger.kernel.org
10965 S:      Maintained
10966 F:      Documentation/usb/usb-serial.txt
10967 F:      drivers/usb/serial/
10968 F:      include/linux/usb/serial.h
10969
10970 USB SMSC75XX ETHERNET DRIVER
10971 M:      Steve Glendinning <steve.glendinning@shawell.net>
10972 L:      netdev@vger.kernel.org
10973 S:      Maintained
10974 F:      drivers/net/usb/smsc75xx.*
10975
10976 USB SMSC95XX ETHERNET DRIVER
10977 M:      Steve Glendinning <steve.glendinning@shawell.net>
10978 L:      netdev@vger.kernel.org
10979 S:      Maintained
10980 F:      drivers/net/usb/smsc95xx.*
10981
10982 USB SUBSYSTEM
10983 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10984 L:      linux-usb@vger.kernel.org
10985 W:      http://www.linux-usb.org
10986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10987 S:      Supported
10988 F:      Documentation/usb/
10989 F:      drivers/usb/
10990 F:      include/linux/usb.h
10991 F:      include/linux/usb/
10992
10993 USB UHCI DRIVER
10994 M:      Alan Stern <stern@rowland.harvard.edu>
10995 L:      linux-usb@vger.kernel.org
10996 S:      Maintained
10997 F:      drivers/usb/host/uhci*
10998
10999 USB "USBNET" DRIVER FRAMEWORK
11000 M:      Oliver Neukum <oneukum@suse.com>
11001 L:      netdev@vger.kernel.org
11002 W:      http://www.linux-usb.org/usbnet
11003 S:      Maintained
11004 F:      drivers/net/usb/usbnet.c
11005 F:      include/linux/usb/usbnet.h
11006
11007 USB VIDEO CLASS
11008 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11009 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11010 L:      linux-media@vger.kernel.org
11011 T:      git git://linuxtv.org/media_tree.git
11012 W:      http://www.ideasonboard.org/uvc/
11013 S:      Maintained
11014 F:      drivers/media/usb/uvc/
11015 F:      include/uapi/linux/uvcvideo.h
11016
11017 USB VISION DRIVER
11018 M:      Hans Verkuil <hverkuil@xs4all.nl>
11019 L:      linux-media@vger.kernel.org
11020 T:      git git://linuxtv.org/media_tree.git
11021 W:      http://linuxtv.org
11022 S:      Odd Fixes
11023 F:      drivers/media/usb/usbvision/
11024
11025 USB WEBCAM GADGET
11026 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11027 L:      linux-usb@vger.kernel.org
11028 S:      Maintained
11029 F:      drivers/usb/gadget/function/*uvc*
11030 F:      drivers/usb/gadget/legacy/webcam.c
11031
11032 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11033 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11034 L:      linux-wireless@vger.kernel.org
11035 S:      Maintained
11036 F:      drivers/net/wireless/rndis_wlan.c
11037
11038 USB XHCI DRIVER
11039 M:      Mathias Nyman <mathias.nyman@intel.com>
11040 L:      linux-usb@vger.kernel.org
11041 S:      Supported
11042 F:      drivers/usb/host/xhci*
11043 F:      drivers/usb/host/pci-quirks*
11044
11045 USB ZD1201 DRIVER
11046 L:      linux-wireless@vger.kernel.org
11047 W:      http://linux-lc100020.sourceforge.net
11048 S:      Orphan
11049 F:      drivers/net/wireless/zd1201.*
11050
11051 USB ZR364XX DRIVER
11052 M:      Antoine Jacquet <royale@zerezo.com>
11053 L:      linux-usb@vger.kernel.org
11054 L:      linux-media@vger.kernel.org
11055 T:      git git://linuxtv.org/media_tree.git
11056 W:      http://royale.zerezo.com/zr364xx/
11057 S:      Maintained
11058 F:      Documentation/video4linux/zr364xx.txt
11059 F:      drivers/media/usb/zr364xx/
11060
11061 ULPI BUS
11062 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11063 L:      linux-usb@vger.kernel.org
11064 S:      Maintained
11065 F:      drivers/usb/common/ulpi.c
11066 F:      include/linux/ulpi/
11067
11068 USER-MODE LINUX (UML)
11069 M:      Jeff Dike <jdike@addtoit.com>
11070 M:      Richard Weinberger <richard@nod.at>
11071 L:      user-mode-linux-devel@lists.sourceforge.net
11072 L:      user-mode-linux-user@lists.sourceforge.net
11073 W:      http://user-mode-linux.sourceforge.net
11074 S:      Maintained
11075 F:      Documentation/virtual/uml/
11076 F:      arch/um/
11077 F:      arch/x86/um/
11078 F:      fs/hostfs/
11079 F:      fs/hppfs/
11080
11081 USERSPACE I/O (UIO)
11082 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11083 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11084 S:      Maintained
11085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11086 F:      Documentation/DocBook/uio-howto.tmpl
11087 F:      drivers/uio/
11088 F:      include/linux/uio*.h
11089
11090 UTIL-LINUX PACKAGE
11091 M:      Karel Zak <kzak@redhat.com>
11092 L:      util-linux@vger.kernel.org
11093 W:      http://en.wikipedia.org/wiki/Util-linux
11094 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11095 S:      Maintained
11096
11097 UVESAFB DRIVER
11098 M:      Michal Januszewski <spock@gentoo.org>
11099 L:      linux-fbdev@vger.kernel.org
11100 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11101 S:      Maintained
11102 F:      Documentation/fb/uvesafb.txt
11103 F:      drivers/video/fbdev/uvesafb.*
11104
11105 VFAT/FAT/MSDOS FILESYSTEM
11106 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11107 S:      Maintained
11108 F:      Documentation/filesystems/vfat.txt
11109 F:      fs/fat/
11110
11111 VFIO DRIVER
11112 M:      Alex Williamson <alex.williamson@redhat.com>
11113 L:      kvm@vger.kernel.org
11114 S:      Maintained
11115 F:      Documentation/vfio.txt
11116 F:      drivers/vfio/
11117 F:      include/linux/vfio.h
11118 F:      include/uapi/linux/vfio.h
11119
11120 VFIO PLATFORM DRIVER
11121 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11122 L:      kvm@vger.kernel.org
11123 S:      Maintained
11124 F:      drivers/vfio/platform/
11125
11126 VIDEOBUF2 FRAMEWORK
11127 M:      Pawel Osciak <pawel@osciak.com>
11128 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11129 M:      Kyungmin Park <kyungmin.park@samsung.com>
11130 L:      linux-media@vger.kernel.org
11131 S:      Maintained
11132 F:      drivers/media/v4l2-core/videobuf2-*
11133 F:      include/media/videobuf2-*
11134
11135 VIRTIO CONSOLE DRIVER
11136 M:      Amit Shah <amit.shah@redhat.com>
11137 L:      virtualization@lists.linux-foundation.org
11138 S:      Maintained
11139 F:      drivers/char/virtio_console.c
11140 F:      include/linux/virtio_console.h
11141 F:      include/uapi/linux/virtio_console.h
11142
11143 VIRTIO CORE, NET AND BLOCK DRIVERS
11144 M:      "Michael S. Tsirkin" <mst@redhat.com>
11145 L:      virtualization@lists.linux-foundation.org
11146 S:      Maintained
11147 F:      drivers/virtio/
11148 F:      tools/virtio/
11149 F:      drivers/net/virtio_net.c
11150 F:      drivers/block/virtio_blk.c
11151 F:      include/linux/virtio_*.h
11152 F:      include/uapi/linux/virtio_*.h
11153
11154 VIRTIO DRIVERS FOR S390
11155 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11156 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11157 L:      linux-s390@vger.kernel.org
11158 L:      virtualization@lists.linux-foundation.org
11159 L:      kvm@vger.kernel.org
11160 S:      Supported
11161 F:      drivers/s390/virtio/
11162
11163 VIRTIO GPU DRIVER
11164 M:      David Airlie <airlied@linux.ie>
11165 M:      Gerd Hoffmann <kraxel@redhat.com>
11166 L:      dri-devel@lists.freedesktop.org
11167 L:      virtualization@lists.linux-foundation.org
11168 S:      Maintained
11169 F:      drivers/gpu/drm/virtio/
11170 F:      include/uapi/linux/virtio_gpu.h
11171
11172 VIRTIO HOST (VHOST)
11173 M:      "Michael S. Tsirkin" <mst@redhat.com>
11174 L:      kvm@vger.kernel.org
11175 L:      virtualization@lists.linux-foundation.org
11176 L:      netdev@vger.kernel.org
11177 S:      Maintained
11178 F:      drivers/vhost/
11179 F:      include/uapi/linux/vhost.h
11180
11181 VIRTIO INPUT DRIVER
11182 M:      Gerd Hoffmann <kraxel@redhat.com>
11183 S:      Maintained
11184 F:      drivers/virtio/virtio_input.c
11185 F:      include/uapi/linux/virtio_input.h
11186
11187 VIA RHINE NETWORK DRIVER
11188 S:      Orphan
11189 F:      drivers/net/ethernet/via/via-rhine.c
11190
11191 VIA SD/MMC CARD CONTROLLER DRIVER
11192 M:      Bruce Chang <brucechang@via.com.tw>
11193 M:      Harald Welte <HaraldWelte@viatech.com>
11194 S:      Maintained
11195 F:      drivers/mmc/host/via-sdmmc.c
11196
11197 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11198 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11199 L:      linux-fbdev@vger.kernel.org
11200 S:      Maintained
11201 F:      include/linux/via-core.h
11202 F:      include/linux/via-gpio.h
11203 F:      include/linux/via_i2c.h
11204 F:      drivers/video/fbdev/via/
11205
11206 VIA VELOCITY NETWORK DRIVER
11207 M:      Francois Romieu <romieu@fr.zoreil.com>
11208 L:      netdev@vger.kernel.org
11209 S:      Maintained
11210 F:      drivers/net/ethernet/via/via-velocity.*
11211
11212 VIVID VIRTUAL VIDEO DRIVER
11213 M:      Hans Verkuil <hverkuil@xs4all.nl>
11214 L:      linux-media@vger.kernel.org
11215 T:      git git://linuxtv.org/media_tree.git
11216 W:      http://linuxtv.org
11217 S:      Maintained
11218 F:      drivers/media/platform/vivid/*
11219
11220 VLAN (802.1Q)
11221 M:      Patrick McHardy <kaber@trash.net>
11222 L:      netdev@vger.kernel.org
11223 S:      Maintained
11224 F:      drivers/net/macvlan.c
11225 F:      include/linux/if_*vlan.h
11226 F:      net/8021q/
11227
11228 VLYNQ BUS
11229 M:      Florian Fainelli <florian@openwrt.org>
11230 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11231 S:      Maintained
11232 F:      drivers/vlynq/vlynq.c
11233 F:      include/linux/vlynq.h
11234
11235 VME SUBSYSTEM
11236 M:      Martyn Welch <martyn@welchs.me.uk>
11237 M:      Manohar Vanga <manohar.vanga@gmail.com>
11238 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11239 L:      devel@driverdev.osuosl.org
11240 S:      Maintained
11241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11242 F:      Documentation/vme_api.txt
11243 F:      drivers/staging/vme/
11244 F:      drivers/vme/
11245 F:      include/linux/vme*
11246
11247 VMWARE HYPERVISOR INTERFACE
11248 M:      Alok Kataria <akataria@vmware.com>
11249 L:      virtualization@lists.linux-foundation.org
11250 S:      Supported
11251 F:      arch/x86/kernel/cpu/vmware.c
11252
11253 VMWARE BALLOON DRIVER
11254 M:      Xavier Deguillard <xdeguillard@vmware.com>
11255 M:      Philip Moltmann <moltmann@vmware.com>
11256 M:      "VMware, Inc." <pv-drivers@vmware.com>
11257 L:      linux-kernel@vger.kernel.org
11258 S:      Maintained
11259 F:      drivers/misc/vmw_balloon.c
11260
11261 VMWARE VMMOUSE SUBDRIVER
11262 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11263 M:      "VMware, Inc." <pv-drivers@vmware.com>
11264 L:      linux-input@vger.kernel.org
11265 S:      Maintained
11266 F:      drivers/input/mouse/vmmouse.c
11267 F:      drivers/input/mouse/vmmouse.h
11268
11269 VMWARE VMXNET3 ETHERNET DRIVER
11270 M:      Shrikrishna Khare <skhare@vmware.com>
11271 M:      "VMware, Inc." <pv-drivers@vmware.com>
11272 L:      netdev@vger.kernel.org
11273 S:      Maintained
11274 F:      drivers/net/vmxnet3/
11275
11276 VMware PVSCSI driver
11277 M:      Arvind Kumar <arvindkumar@vmware.com>
11278 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11279 L:      linux-scsi@vger.kernel.org
11280 S:      Maintained
11281 F:      drivers/scsi/vmw_pvscsi.c
11282 F:      drivers/scsi/vmw_pvscsi.h
11283
11284 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11285 M:      Liam Girdwood <lgirdwood@gmail.com>
11286 M:      Mark Brown <broonie@kernel.org>
11287 L:      linux-kernel@vger.kernel.org
11288 W:      http://www.slimlogic.co.uk/?p=48
11289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11290 S:      Supported
11291 F:      drivers/regulator/
11292 F:      include/linux/regulator/
11293
11294 VRF
11295 M:      David Ahern <dsa@cumulusnetworks.com>
11296 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11297 L:      netdev@vger.kernel.org
11298 S:      Maintained
11299 F:      drivers/net/vrf.c
11300 F:      include/net/vrf.h
11301 F:      Documentation/networking/vrf.txt
11302
11303 VT1211 HARDWARE MONITOR DRIVER
11304 M:      Juerg Haefliger <juergh@gmail.com>
11305 L:      lm-sensors@lm-sensors.org
11306 S:      Maintained
11307 F:      Documentation/hwmon/vt1211
11308 F:      drivers/hwmon/vt1211.c
11309
11310 VT8231 HARDWARE MONITOR DRIVER
11311 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11312 L:      lm-sensors@lm-sensors.org
11313 S:      Maintained
11314 F:      drivers/hwmon/vt8231.c
11315
11316 VUB300 USB to SDIO/SD/MMC bridge chip
11317 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11318 L:      linux-mmc@vger.kernel.org
11319 L:      linux-usb@vger.kernel.org
11320 S:      Supported
11321 F:      drivers/mmc/host/vub300.c
11322
11323 W1 DALLAS'S 1-WIRE BUS
11324 M:      Evgeniy Polyakov <zbr@ioremap.net>
11325 S:      Maintained
11326 F:      Documentation/w1/
11327 F:      drivers/w1/
11328
11329 W83791D HARDWARE MONITORING DRIVER
11330 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11331 L:      lm-sensors@lm-sensors.org
11332 S:      Maintained
11333 F:      Documentation/hwmon/w83791d
11334 F:      drivers/hwmon/w83791d.c
11335
11336 W83793 HARDWARE MONITORING DRIVER
11337 M:      Rudolf Marek <r.marek@assembler.cz>
11338 L:      lm-sensors@lm-sensors.org
11339 S:      Maintained
11340 F:      Documentation/hwmon/w83793
11341 F:      drivers/hwmon/w83793.c
11342
11343 W83795 HARDWARE MONITORING DRIVER
11344 M:      Jean Delvare <jdelvare@suse.com>
11345 L:      lm-sensors@lm-sensors.org
11346 S:      Maintained
11347 F:      drivers/hwmon/w83795.c
11348
11349 W83L51xD SD/MMC CARD INTERFACE DRIVER
11350 M:      Pierre Ossman <pierre@ossman.eu>
11351 S:      Maintained
11352 F:      drivers/mmc/host/wbsd.*
11353
11354 WACOM PROTOCOL 4 SERIAL TABLETS
11355 M:      Julian Squires <julian@cipht.net>
11356 M:      Hans de Goede <hdegoede@redhat.com>
11357 L:      linux-input@vger.kernel.org
11358 S:      Maintained
11359 F:      drivers/input/tablet/wacom_serial4.c
11360
11361 WATCHDOG DEVICE DRIVERS
11362 M:      Wim Van Sebroeck <wim@iguana.be>
11363 L:      linux-watchdog@vger.kernel.org
11364 W:      http://www.linux-watchdog.org/
11365 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11366 S:      Maintained
11367 F:      Documentation/watchdog/
11368 F:      drivers/watchdog/
11369 F:      include/linux/watchdog.h
11370 F:      include/uapi/linux/watchdog.h
11371
11372 WD7000 SCSI DRIVER
11373 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11374 L:      linux-scsi@vger.kernel.org
11375 S:      Maintained
11376 F:      drivers/scsi/wd7000.c
11377
11378 WIIMOTE HID DRIVER
11379 M:      David Herrmann <dh.herrmann@googlemail.com>
11380 L:      linux-input@vger.kernel.org
11381 S:      Maintained
11382 F:      drivers/hid/hid-wiimote*
11383
11384 WINBOND CIR DRIVER
11385 M:      David Härdeman <david@hardeman.nu>
11386 S:      Maintained
11387 F:      drivers/media/rc/winbond-cir.c
11388
11389 WIMAX STACK
11390 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11391 M:      linux-wimax@intel.com
11392 L:      wimax@linuxwimax.org (subscribers-only)
11393 S:      Supported
11394 W:      http://linuxwimax.org
11395 F:      Documentation/wimax/README.wimax
11396 F:      include/linux/wimax/debug.h
11397 F:      include/net/wimax.h
11398 F:      include/uapi/linux/wimax.h
11399 F:      net/wimax/
11400
11401 WISTRON LAPTOP BUTTON DRIVER
11402 M:      Miloslav Trmac <mitr@volny.cz>
11403 S:      Maintained
11404 F:      drivers/input/misc/wistron_btns.c
11405
11406 WL3501 WIRELESS PCMCIA CARD DRIVER
11407 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11408 L:      linux-wireless@vger.kernel.org
11409 W:      http://oops.ghostprotocols.net:81/blog
11410 S:      Maintained
11411 F:      drivers/net/wireless/wl3501*
11412
11413 WOLFSON MICROELECTRONICS DRIVERS
11414 L:      patches@opensource.wolfsonmicro.com
11415 T:      git https://github.com/CirrusLogic/linux-drivers.git
11416 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11417 S:      Supported
11418 F:      Documentation/hwmon/wm83??
11419 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11420 F:      drivers/clk/clk-wm83*.c
11421 F:      drivers/extcon/extcon-arizona.c
11422 F:      drivers/leds/leds-wm83*.c
11423 F:      drivers/gpio/gpio-*wm*.c
11424 F:      drivers/gpio/gpio-arizona.c
11425 F:      drivers/hwmon/wm83??-hwmon.c
11426 F:      drivers/input/misc/wm831x-on.c
11427 F:      drivers/input/touchscreen/wm831x-ts.c
11428 F:      drivers/input/touchscreen/wm97*.c
11429 F:      drivers/mfd/arizona*
11430 F:      drivers/mfd/wm*.c
11431 F:      drivers/power/wm83*.c
11432 F:      drivers/rtc/rtc-wm83*.c
11433 F:      drivers/regulator/wm8*.c
11434 F:      drivers/video/backlight/wm83*_bl.c
11435 F:      drivers/watchdog/wm83*_wdt.c
11436 F:      include/linux/mfd/arizona/
11437 F:      include/linux/mfd/wm831x/
11438 F:      include/linux/mfd/wm8350/
11439 F:      include/linux/mfd/wm8400*
11440 F:      include/linux/wm97xx.h
11441 F:      include/sound/wm????.h
11442 F:      sound/soc/codecs/arizona.?
11443 F:      sound/soc/codecs/wm*
11444
11445 WORKQUEUE
11446 M:      Tejun Heo <tj@kernel.org>
11447 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11449 S:      Maintained
11450 F:      include/linux/workqueue.h
11451 F:      kernel/workqueue.c
11452 F:      Documentation/workqueue.txt
11453
11454 X.25 NETWORK LAYER
11455 M:      Andrew Hendry <andrew.hendry@gmail.com>
11456 L:      linux-x25@vger.kernel.org
11457 S:      Odd Fixes
11458 F:      Documentation/networking/x25*
11459 F:      include/net/x25*
11460 F:      net/x25/
11461
11462 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11463 M:      Thomas Gleixner <tglx@linutronix.de>
11464 M:      Ingo Molnar <mingo@redhat.com>
11465 M:      "H. Peter Anvin" <hpa@zytor.com>
11466 M:      x86@kernel.org
11467 L:      linux-kernel@vger.kernel.org
11468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11469 S:      Maintained
11470 F:      Documentation/x86/
11471 F:      arch/x86/
11472
11473 X86 PLATFORM DRIVERS
11474 M:      Darren Hart <dvhart@infradead.org>
11475 L:      platform-driver-x86@vger.kernel.org
11476 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11477 S:      Maintained
11478 F:      drivers/platform/x86/
11479
11480 X86 MCE INFRASTRUCTURE
11481 M:      Tony Luck <tony.luck@intel.com>
11482 M:      Borislav Petkov <bp@alien8.de>
11483 L:      linux-edac@vger.kernel.org
11484 S:      Maintained
11485 F:      arch/x86/kernel/cpu/mcheck/*
11486
11487 X86 VDSO
11488 M:      Andy Lutomirski <luto@amacapital.net>
11489 L:      linux-kernel@vger.kernel.org
11490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11491 S:      Maintained
11492 F:      arch/x86/entry/vdso/
11493
11494 XC2028/3028 TUNER DRIVER
11495 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11496 L:      linux-media@vger.kernel.org
11497 W:      http://linuxtv.org
11498 T:      git git://linuxtv.org/media_tree.git
11499 S:      Maintained
11500 F:      drivers/media/tuners/tuner-xc2028.*
11501
11502 XEN HYPERVISOR INTERFACE
11503 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11504 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11505 M:      David Vrabel <david.vrabel@citrix.com>
11506 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11508 S:      Supported
11509 F:      arch/x86/xen/
11510 F:      drivers/*/xen-*front.c
11511 F:      drivers/xen/
11512 F:      arch/x86/include/asm/xen/
11513 F:      include/xen/
11514 F:      include/uapi/xen/
11515
11516 XEN HYPERVISOR ARM
11517 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11518 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11519 S:      Supported
11520 F:      arch/arm/xen/
11521 F:      arch/arm/include/asm/xen/
11522
11523 XEN HYPERVISOR ARM64
11524 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11525 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11526 S:      Supported
11527 F:      arch/arm64/xen/
11528 F:      arch/arm64/include/asm/xen/
11529
11530 XEN NETWORK BACKEND DRIVER
11531 M:      Ian Campbell <ian.campbell@citrix.com>
11532 M:      Wei Liu <wei.liu2@citrix.com>
11533 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11534 L:      netdev@vger.kernel.org
11535 S:      Supported
11536 F:      drivers/net/xen-netback/*
11537
11538 XEN PCI SUBSYSTEM
11539 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11540 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11541 S:      Supported
11542 F:      arch/x86/pci/*xen*
11543 F:      drivers/pci/*xen*
11544
11545 XEN BLOCK SUBSYSTEM
11546 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11547 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11548 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11549 S:      Supported
11550 F:      drivers/block/xen-blkback/*
11551 F:      drivers/block/xen*
11552
11553 XEN PVSCSI DRIVERS
11554 M:      Juergen Gross <jgross@suse.com>
11555 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11556 L:      linux-scsi@vger.kernel.org
11557 S:      Supported
11558 F:      drivers/scsi/xen-scsifront.c
11559 F:      drivers/xen/xen-scsiback.c
11560 F:      include/xen/interface/io/vscsiif.h
11561
11562 XEN SWIOTLB SUBSYSTEM
11563 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11564 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11565 S:      Supported
11566 F:      arch/x86/xen/*swiotlb*
11567 F:      drivers/xen/*swiotlb*
11568
11569 XFS FILESYSTEM
11570 P:      Silicon Graphics Inc
11571 M:      Dave Chinner <david@fromorbit.com>
11572 M:      xfs@oss.sgi.com
11573 L:      xfs@oss.sgi.com
11574 W:      http://oss.sgi.com/projects/xfs
11575 T:      git git://oss.sgi.com/xfs/xfs.git
11576 S:      Supported
11577 F:      Documentation/filesystems/xfs.txt
11578 F:      fs/xfs/
11579
11580 XILINX AXI ETHERNET DRIVER
11581 M:      Anirudha Sarangi <anirudh@xilinx.com>
11582 M:      John Linn <John.Linn@xilinx.com>
11583 S:      Maintained
11584 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11585
11586 XILINX UARTLITE SERIAL DRIVER
11587 M:      Peter Korsgaard <jacmet@sunsite.dk>
11588 L:      linux-serial@vger.kernel.org
11589 S:      Maintained
11590 F:      drivers/tty/serial/uartlite.c
11591
11592 XILINX VIDEO IP CORES
11593 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11594 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11595 L:      linux-media@vger.kernel.org
11596 T:      git git://linuxtv.org/media_tree.git
11597 S:      Supported
11598 F:      Documentation/devicetree/bindings/media/xilinx/
11599 F:      drivers/media/platform/xilinx/
11600 F:      include/uapi/linux/xilinx-v4l2-controls.h
11601
11602 XILLYBUS DRIVER
11603 M:      Eli Billauer <eli.billauer@gmail.com>
11604 L:      linux-kernel@vger.kernel.org
11605 S:      Supported
11606 F:      drivers/char/xillybus/
11607
11608 XTENSA XTFPGA PLATFORM SUPPORT
11609 M:      Max Filippov <jcmvbkbc@gmail.com>
11610 L:      linux-xtensa@linux-xtensa.org
11611 S:      Maintained
11612 F:      drivers/spi/spi-xtensa-xtfpga.c
11613 F:      sound/soc/xtensa/xtfpga-i2s.c
11614
11615 YAM DRIVER FOR AX.25
11616 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11617 L:      linux-hams@vger.kernel.org
11618 S:      Maintained
11619 F:      drivers/net/hamradio/yam*
11620 F:      include/linux/yam.h
11621
11622 YEALINK PHONE DRIVER
11623 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11624 L:      usbb2k-api-dev@nongnu.org
11625 S:      Maintained
11626 F:      Documentation/input/yealink.txt
11627 F:      drivers/input/misc/yealink.*
11628
11629 Z8530 DRIVER FOR AX.25
11630 M:      Joerg Reuter <jreuter@yaina.de>
11631 W:      http://yaina.de/jreuter/
11632 W:      http://www.qsl.net/dl1bke/
11633 L:      linux-hams@vger.kernel.org
11634 S:      Maintained
11635 F:      Documentation/networking/z8530drv.txt
11636 F:      drivers/net/hamradio/*scc.c
11637 F:      drivers/net/hamradio/z8530.h
11638
11639 ZBUD COMPRESSED PAGE ALLOCATOR
11640 M:      Seth Jennings <sjennings@variantweb.net>
11641 L:      linux-mm@kvack.org
11642 S:      Maintained
11643 F:      mm/zbud.c
11644 F:      include/linux/zbud.h
11645
11646 ZD1211RW WIRELESS DRIVER
11647 M:      Daniel Drake <dsd@gentoo.org>
11648 M:      Ulrich Kunitz <kune@deine-taler.de>
11649 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11650 L:      linux-wireless@vger.kernel.org
11651 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11652 S:      Maintained
11653 F:      drivers/net/wireless/zd1211rw/
11654
11655 ZPOOL COMPRESSED PAGE STORAGE API
11656 M:      Dan Streetman <ddstreet@ieee.org>
11657 L:      linux-mm@kvack.org
11658 S:      Maintained
11659 F:      mm/zpool.c
11660 F:      include/linux/zpool.h
11661
11662 ZR36067 VIDEO FOR LINUX DRIVER
11663 L:      mjpeg-users@lists.sourceforge.net
11664 L:      linux-media@vger.kernel.org
11665 W:      http://mjpeg.sourceforge.net/driver-zoran/
11666 T:      hg http://linuxtv.org/hg/v4l-dvb
11667 S:      Odd Fixes
11668 F:      drivers/media/pci/zoran/
11669
11670 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11671 M:      Minchan Kim <minchan@kernel.org>
11672 M:      Nitin Gupta <ngupta@vflare.org>
11673 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11674 L:      linux-kernel@vger.kernel.org
11675 S:      Maintained
11676 F:      drivers/block/zram/
11677 F:      Documentation/blockdev/zram.txt
11678
11679 ZS DECSTATION Z85C30 SERIAL DRIVER
11680 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11681 S:      Maintained
11682 F:      drivers/tty/serial/zs.*
11683
11684 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11685 M:      Minchan Kim <minchan@kernel.org>
11686 M:      Nitin Gupta <ngupta@vflare.org>
11687 L:      linux-mm@kvack.org
11688 S:      Maintained
11689 F:      mm/zsmalloc.c
11690 F:      include/linux/zsmalloc.h
11691 F:      Documentation/vm/zsmalloc.txt
11692
11693 ZSWAP COMPRESSED SWAP CACHING
11694 M:      Seth Jennings <sjennings@variantweb.net>
11695 L:      linux-mm@kvack.org
11696 S:      Maintained
11697 F:      mm/zswap.c
11698
11699 THE REST
11700 M:      Linus Torvalds <torvalds@linux-foundation.org>
11701 L:      linux-kernel@vger.kernel.org
11702 Q:      http://patchwork.kernel.org/project/LKML/list/
11703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11704 S:      Buried alive in reporters
11705 F:      *
11706 F:      */