OSDN Git Service

Merge remote-tracking branch 'edac-amd/for-next'
[uclinux-h8/linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      http://linuxtv.org/
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 ACENIC DRIVER
244 M:      Jes Sorensen <jes@trained-monkey.org>
245 L:      linux-acenic@sunsite.dk
246 S:      Maintained
247 F:      drivers/net/ethernet/alteon/acenic*
248
249 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
250 M:      Peter Feuerer <peter@piie.net>
251 L:      platform-driver-x86@vger.kernel.org
252 W:      http://piie.net/?section=acerhdf
253 S:      Maintained
254 F:      drivers/platform/x86/acerhdf.c
255
256 ACER WMI LAPTOP EXTRAS
257 M:      "Lee, Chun-Yi" <jlee@suse.com>
258 L:      platform-driver-x86@vger.kernel.org
259 S:      Maintained
260 F:      drivers/platform/x86/acer-wmi.c
261
262 ACPI
263 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
264 M:      Len Brown <lenb@kernel.org>
265 L:      linux-acpi@vger.kernel.org
266 W:      https://01.org/linux-acpi
267 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
269 S:      Supported
270 F:      drivers/acpi/
271 F:      drivers/pnp/pnpacpi/
272 F:      include/linux/acpi.h
273 F:      include/acpi/
274 F:      Documentation/acpi/
275 F:      Documentation/ABI/testing/sysfs-bus-acpi
276 F:      drivers/pci/*acpi*
277 F:      drivers/pci/*/*acpi*
278 F:      drivers/pci/*/*/*acpi*
279 F:      tools/power/acpi/
280
281 ACPI COMPONENT ARCHITECTURE (ACPICA)
282 M:      Robert Moore <robert.moore@intel.com>
283 M:      Lv Zheng <lv.zheng@intel.com>
284 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
285 L:      linux-acpi@vger.kernel.org
286 L:      devel@acpica.org
287 W:      https://acpica.org/
288 W:      https://github.com/acpica/acpica/
289 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
291 S:      Supported
292 F:      drivers/acpi/acpica/
293 F:      include/acpi/
294 F:      tools/power/acpi/
295
296 ACPI FAN DRIVER
297 M:      Zhang Rui <rui.zhang@intel.com>
298 L:      linux-acpi@vger.kernel.org
299 W:      https://01.org/linux-acpi
300 S:      Supported
301 F:      drivers/acpi/fan.c
302
303 ACPI THERMAL DRIVER
304 M:      Zhang Rui <rui.zhang@intel.com>
305 L:      linux-acpi@vger.kernel.org
306 W:      https://01.org/linux-acpi
307 S:      Supported
308 F:      drivers/acpi/*thermal*
309
310 ACPI VIDEO DRIVER
311 M:      Zhang Rui <rui.zhang@intel.com>
312 L:      linux-acpi@vger.kernel.org
313 W:      https://01.org/linux-acpi
314 S:      Supported
315 F:      drivers/acpi/video.c
316
317 ACPI WMI DRIVER
318 L:      platform-driver-x86@vger.kernel.org
319 S:      Orphan
320 F:      drivers/platform/x86/wmi.c
321
322 AD1889 ALSA SOUND DRIVER
323 M:      Thibaut Varene <T-Bone@parisc-linux.org>
324 W:      http://wiki.parisc-linux.org/AD1889
325 L:      linux-parisc@vger.kernel.org
326 S:      Maintained
327 F:      sound/pci/ad1889.*
328
329 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
330 M:      Michael Hennerich <michael.hennerich@analog.com>
331 W:      http://wiki.analog.com/AD5254
332 W:      http://ez.analog.com/community/linux-device-drivers
333 S:      Supported
334 F:      drivers/misc/ad525x_dpot.c
335
336 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
337 M:      Michael Hennerich <michael.hennerich@analog.com>
338 W:      http://wiki.analog.com/AD5398
339 W:      http://ez.analog.com/community/linux-device-drivers
340 S:      Supported
341 F:      drivers/regulator/ad5398.c
342
343 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
344 M:      Michael Hennerich <michael.hennerich@analog.com>
345 W:      http://wiki.analog.com/AD7142
346 W:      http://ez.analog.com/community/linux-device-drivers
347 S:      Supported
348 F:      drivers/input/misc/ad714x.c
349
350 AD7877 TOUCHSCREEN DRIVER
351 M:      Michael Hennerich <michael.hennerich@analog.com>
352 W:      http://wiki.analog.com/AD7877
353 W:      http://ez.analog.com/community/linux-device-drivers
354 S:      Supported
355 F:      drivers/input/touchscreen/ad7877.c
356
357 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
358 M:      Michael Hennerich <michael.hennerich@analog.com>
359 W:      http://wiki.analog.com/AD7879
360 W:      http://ez.analog.com/community/linux-device-drivers
361 S:      Supported
362 F:      drivers/input/touchscreen/ad7879.c
363
364 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
365 M:      Jiri Kosina <jikos@kernel.org>
366 S:      Maintained
367
368 ADM1025 HARDWARE MONITOR DRIVER
369 M:      Jean Delvare <jdelvare@suse.com>
370 L:      lm-sensors@lm-sensors.org
371 S:      Maintained
372 F:      Documentation/hwmon/adm1025
373 F:      drivers/hwmon/adm1025.c
374
375 ADM1029 HARDWARE MONITOR DRIVER
376 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
377 L:      lm-sensors@lm-sensors.org
378 S:      Maintained
379 F:      drivers/hwmon/adm1029.c
380
381 ADM8211 WIRELESS DRIVER
382 L:      linux-wireless@vger.kernel.org
383 W:      http://wireless.kernel.org/
384 S:      Orphan
385 F:      drivers/net/wireless/adm8211.*
386
387 ADP1653 FLASH CONTROLLER DRIVER
388 M:      Sakari Ailus <sakari.ailus@iki.fi>
389 L:      linux-media@vger.kernel.org
390 S:      Maintained
391 F:      drivers/media/i2c/adp1653.c
392 F:      include/media/adp1653.h
393
394 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
395 M:      Michael Hennerich <michael.hennerich@analog.com>
396 W:      http://wiki.analog.com/ADP5520
397 W:      http://ez.analog.com/community/linux-device-drivers
398 S:      Supported
399 F:      drivers/mfd/adp5520.c
400 F:      drivers/video/backlight/adp5520_bl.c
401 F:      drivers/leds/leds-adp5520.c
402 F:      drivers/gpio/gpio-adp5520.c
403 F:      drivers/input/keyboard/adp5520-keys.c
404
405 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
406 M:      Michael Hennerich <michael.hennerich@analog.com>
407 W:      http://wiki.analog.com/ADP5588
408 W:      http://ez.analog.com/community/linux-device-drivers
409 S:      Supported
410 F:      drivers/input/keyboard/adp5588-keys.c
411 F:      drivers/gpio/gpio-adp5588.c
412
413 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
414 M:      Michael Hennerich <michael.hennerich@analog.com>
415 W:      http://wiki.analog.com/ADP8860
416 W:      http://ez.analog.com/community/linux-device-drivers
417 S:      Supported
418 F:      drivers/video/backlight/adp8860_bl.c
419
420 ADS1015 HARDWARE MONITOR DRIVER
421 M:      Dirk Eibach <eibach@gdsys.de>
422 L:      lm-sensors@lm-sensors.org
423 S:      Maintained
424 F:      Documentation/hwmon/ads1015
425 F:      drivers/hwmon/ads1015.c
426 F:      include/linux/i2c/ads1015.h
427
428 ADT746X FAN DRIVER
429 M:      Colin Leroy <colin@colino.net>
430 S:      Maintained
431 F:      drivers/macintosh/therm_adt746x.c
432
433 ADT7475 HARDWARE MONITOR DRIVER
434 M:      Jean Delvare <jdelvare@suse.com>
435 L:      lm-sensors@lm-sensors.org
436 S:      Maintained
437 F:      Documentation/hwmon/adt7475
438 F:      drivers/hwmon/adt7475.c
439
440 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
441 M:      Michael Hennerich <michael.hennerich@analog.com>
442 W:      http://wiki.analog.com/ADXL345
443 W:      http://ez.analog.com/community/linux-device-drivers
444 S:      Supported
445 F:      drivers/input/misc/adxl34x.c
446
447 ADVANSYS SCSI DRIVER
448 M:      Matthew Wilcox <matthew@wil.cx>
449 M:      Hannes Reinecke <hare@suse.com>
450 L:      linux-scsi@vger.kernel.org
451 S:      Maintained
452 F:      Documentation/scsi/advansys.txt
453 F:      drivers/scsi/advansys.c
454
455 AEDSP16 DRIVER
456 M:      Riccardo Facchetti <fizban@tin.it>
457 S:      Maintained
458 F:      sound/oss/aedsp16.c
459
460 AF9013 MEDIA DRIVER
461 M:      Antti Palosaari <crope@iki.fi>
462 L:      linux-media@vger.kernel.org
463 W:      http://linuxtv.org/
464 W:      http://palosaari.fi/linux/
465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
466 T:      git git://linuxtv.org/anttip/media_tree.git
467 S:      Maintained
468 F:      drivers/media/dvb-frontends/af9013*
469
470 AF9033 MEDIA DRIVER
471 M:      Antti Palosaari <crope@iki.fi>
472 L:      linux-media@vger.kernel.org
473 W:      http://linuxtv.org/
474 W:      http://palosaari.fi/linux/
475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
476 T:      git git://linuxtv.org/anttip/media_tree.git
477 S:      Maintained
478 F:      drivers/media/dvb-frontends/af9033*
479
480 AFFS FILE SYSTEM
481 L:      linux-fsdevel@vger.kernel.org
482 S:      Orphan
483 F:      Documentation/filesystems/affs.txt
484 F:      fs/affs/
485
486 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
487 M:      David Howells <dhowells@redhat.com>
488 L:      linux-afs@lists.infradead.org
489 S:      Supported
490 F:      fs/afs/
491 F:      include/net/af_rxrpc.h
492 F:      net/rxrpc/af_rxrpc.c
493
494 AGPGART DRIVER
495 M:      David Airlie <airlied@linux.ie>
496 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
497 S:      Maintained
498 F:      drivers/char/agp/
499 F:      include/linux/agp*
500 F:      include/uapi/linux/agp*
501
502 AHA152X SCSI DRIVER
503 M:      "Juergen E. Fischer" <fischer@norbit.de>
504 L:      linux-scsi@vger.kernel.org
505 S:      Maintained
506 F:      drivers/scsi/aha152x*
507 F:      drivers/scsi/pcmcia/aha152x*
508
509 AIC7XXX / AIC79XX SCSI DRIVER
510 M:      Hannes Reinecke <hare@suse.com>
511 L:      linux-scsi@vger.kernel.org
512 S:      Maintained
513 F:      drivers/scsi/aic7xxx/
514
515 AIMSLAB FM RADIO RECEIVER DRIVER
516 M:      Hans Verkuil <hverkuil@xs4all.nl>
517 L:      linux-media@vger.kernel.org
518 T:      git git://linuxtv.org/media_tree.git
519 W:      http://linuxtv.org
520 S:      Maintained
521 F:      drivers/media/radio/radio-aimslab*
522
523 AIO
524 M:      Benjamin LaHaise <bcrl@kvack.org>
525 L:      linux-aio@kvack.org
526 S:      Supported
527 F:      fs/aio.c
528 F:      include/linux/*aio*.h
529
530 AIRSPY MEDIA DRIVER
531 M:      Antti Palosaari <crope@iki.fi>
532 L:      linux-media@vger.kernel.org
533 W:      http://linuxtv.org/
534 W:      http://palosaari.fi/linux/
535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
536 T:      git git://linuxtv.org/anttip/media_tree.git
537 S:      Maintained
538 F:      drivers/media/usb/airspy/
539
540 ALCATEL SPEEDTOUCH USB DRIVER
541 M:      Duncan Sands <duncan.sands@free.fr>
542 L:      linux-usb@vger.kernel.org
543 W:      http://www.linux-usb.org/SpeedTouch/
544 S:      Maintained
545 F:      drivers/usb/atm/speedtch.c
546 F:      drivers/usb/atm/usbatm.c
547
548 ALCHEMY AU1XX0 MMC DRIVER
549 M:      Manuel Lauss <manuel.lauss@gmail.com>
550 S:      Maintained
551 F:      drivers/mmc/host/au1xmmc.c
552
553 ALI1563 I2C DRIVER
554 M:      Rudolf Marek <r.marek@assembler.cz>
555 L:      linux-i2c@vger.kernel.org
556 S:      Maintained
557 F:      Documentation/i2c/busses/i2c-ali1563
558 F:      drivers/i2c/busses/i2c-ali1563.c
559
560 ALLWINNER SECURITY SYSTEM
561 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
562 L:      linux-crypto@vger.kernel.org
563 S:      Maintained
564 F:      drivers/crypto/sunxi-ss/
565
566 ALPHA PORT
567 M:      Richard Henderson <rth@twiddle.net>
568 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
569 M:      Matt Turner <mattst88@gmail.com>
570 S:      Odd Fixes
571 L:      linux-alpha@vger.kernel.org
572 F:      arch/alpha/
573
574 ALTERA MAILBOX DRIVER
575 M:      Ley Foon Tan <lftan@altera.com>
576 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
577 S:      Maintained
578 F:      drivers/mailbox/mailbox-altera.c
579
580 ALTERA PIO DRIVER
581 M:      Tien Hock Loh <thloh@altera.com>
582 L:      linux-gpio@vger.kernel.org
583 S:      Maintained
584 F:      drivers/gpio/gpio-altera.c
585
586 ALTERA TRIPLE SPEED ETHERNET DRIVER
587 M:      Vince Bridgers <vbridger@opensource.altera.com>
588 L:      netdev@vger.kernel.org
589 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
590 S:      Maintained
591 F:      drivers/net/ethernet/altera/
592
593 ALTERA UART/JTAG UART SERIAL DRIVERS
594 M:      Tobias Klauser <tklauser@distanz.ch>
595 L:      linux-serial@vger.kernel.org
596 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
597 S:      Maintained
598 F:      drivers/tty/serial/altera_uart.c
599 F:      drivers/tty/serial/altera_jtaguart.c
600 F:      include/linux/altera_uart.h
601 F:      include/linux/altera_jtaguart.h
602
603 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
604 M:      Tom Lendacky <thomas.lendacky@amd.com>
605 L:      linux-crypto@vger.kernel.org
606 S:      Supported
607 F:      drivers/crypto/ccp/
608 F:      include/linux/ccp.h
609
610 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
611 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
612 L:      lm-sensors@lm-sensors.org
613 S:      Maintained
614 F:      Documentation/hwmon/fam15h_power
615 F:      drivers/hwmon/fam15h_power.c
616
617 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
618 M:      Thomas Dahlmann <dahlmann.thomas@arcor.de>
619 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
620 S:      Supported
621 F:      drivers/usb/gadget/udc/amd5536udc.*
622
623 AMD GEODE PROCESSOR/CHIPSET SUPPORT
624 P:      Andres Salomon <dilinger@queued.net>
625 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
626 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
627 S:      Supported
628 F:      drivers/char/hw_random/geode-rng.c
629 F:      drivers/crypto/geode*
630 F:      drivers/video/fbdev/geode/
631 F:      arch/x86/include/asm/geode.h
632
633 AMD IOMMU (AMD-VI)
634 M:      Joerg Roedel <joro@8bytes.org>
635 L:      iommu@lists.linux-foundation.org
636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
637 S:      Maintained
638 F:      drivers/iommu/amd_iommu*.[ch]
639 F:      include/linux/amd-iommu.h
640
641 AMD KFD
642 M:      Oded Gabbay <oded.gabbay@gmail.com>
643 L:      dri-devel@lists.freedesktop.org
644 T:      git git://people.freedesktop.org/~gabbayo/linux.git
645 S:      Supported
646 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
647 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
648 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
649 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
650 F:      drivers/gpu/drm/amd/amdkfd/
651 F:      drivers/gpu/drm/amd/include/cik_structs.h
652 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
653 F:      drivers/gpu/drm/amd/include/vi_structs.h
654 F:      drivers/gpu/drm/radeon/radeon_kfd.c
655 F:      drivers/gpu/drm/radeon/radeon_kfd.h
656 F:      include/uapi/linux/kfd_ioctl.h
657
658 AMD MICROCODE UPDATE SUPPORT
659 M:      Borislav Petkov <bp@alien8.de>
660 S:      Maintained
661 F:      arch/x86/kernel/cpu/microcode/amd*
662
663 AMD XGBE DRIVER
664 M:      Tom Lendacky <thomas.lendacky@amd.com>
665 L:      netdev@vger.kernel.org
666 S:      Supported
667 F:      drivers/net/ethernet/amd/xgbe/
668
669 AMS (Apple Motion Sensor) DRIVER
670 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
671 S:      Supported
672 F:      drivers/macintosh/ams/
673
674 AMSO1100 RNIC DRIVER
675 M:      Tom Tucker <tom@opengridcomputing.com>
676 M:      Steve Wise <swise@opengridcomputing.com>
677 L:      linux-rdma@vger.kernel.org
678 S:      Maintained
679 F:      drivers/infiniband/hw/amso1100/
680
681 ANALOG DEVICES INC AD9389B DRIVER
682 M:      Hans Verkuil <hans.verkuil@cisco.com>
683 L:      linux-media@vger.kernel.org
684 S:      Maintained
685 F:      drivers/media/i2c/ad9389b*
686
687 ANALOG DEVICES INC ADV7180 DRIVER
688 M:      Lars-Peter Clausen <lars@metafoo.de>
689 L:      linux-media@vger.kernel.org
690 W:      http://ez.analog.com/community/linux-device-drivers
691 S:      Supported
692 F:      drivers/media/i2c/adv7180.c
693
694 ANALOG DEVICES INC ADV7511 DRIVER
695 M:      Hans Verkuil <hans.verkuil@cisco.com>
696 L:      linux-media@vger.kernel.org
697 S:      Maintained
698 F:      drivers/media/i2c/adv7511*
699
700 ANALOG DEVICES INC ADV7604 DRIVER
701 M:      Hans Verkuil <hans.verkuil@cisco.com>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 F:      drivers/media/i2c/adv7604*
705
706 ANALOG DEVICES INC ADV7842 DRIVER
707 M:      Hans Verkuil <hans.verkuil@cisco.com>
708 L:      linux-media@vger.kernel.org
709 S:      Maintained
710 F:      drivers/media/i2c/adv7842*
711
712 ANALOG DEVICES INC ASOC CODEC DRIVERS
713 M:      Lars-Peter Clausen <lars@metafoo.de>
714 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
715 W:      http://wiki.analog.com/
716 W:      http://ez.analog.com/community/linux-device-drivers
717 S:      Supported
718 F:      sound/soc/codecs/adau*
719 F:      sound/soc/codecs/adav*
720 F:      sound/soc/codecs/ad1*
721 F:      sound/soc/codecs/ad7*
722 F:      sound/soc/codecs/ssm*
723 F:      sound/soc/codecs/sigmadsp.*
724
725 ANALOG DEVICES INC ASOC DRIVERS
726 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
727 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
728 W:      http://blackfin.uclinux.org/
729 S:      Supported
730 F:      sound/soc/blackfin/*
731
732 ANALOG DEVICES INC IIO DRIVERS
733 M:      Lars-Peter Clausen <lars@metafoo.de>
734 M:      Michael Hennerich <Michael.Hennerich@analog.com>
735 W:      http://wiki.analog.com/
736 W:      http://ez.analog.com/community/linux-device-drivers
737 S:      Supported
738 F:      drivers/iio/*/ad*
739 X:      drivers/iio/*/adjd*
740 F:      drivers/staging/iio/*/ad*
741 F:      staging/iio/trigger/iio-trig-bfin-timer.c
742
743 ANALOG DEVICES INC DMA DRIVERS
744 M:      Lars-Peter Clausen <lars@metafoo.de>
745 W:      http://ez.analog.com/community/linux-device-drivers
746 S:      Supported
747 F:      drivers/dma/dma-axi-dmac.c
748
749 ANDROID DRIVERS
750 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
751 M:      Arve HjønnevĂ¥g <arve@android.com>
752 M:      Riley Andrews <riandrews@android.com>
753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
754 L:      devel@driverdev.osuosl.org
755 S:      Supported
756 F:      drivers/android/
757 F:      drivers/staging/android/
758
759 AOA (Apple Onboard Audio) ALSA DRIVER
760 M:      Johannes Berg <johannes@sipsolutions.net>
761 L:      linuxppc-dev@lists.ozlabs.org
762 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
763 S:      Maintained
764 F:      sound/aoa/
765
766 APM DRIVER
767 M:      Jiri Kosina <jikos@kernel.org>
768 S:      Odd fixes
769 F:      arch/x86/kernel/apm_32.c
770 F:      include/linux/apm_bios.h
771 F:      include/uapi/linux/apm_bios.h
772 F:      drivers/char/apm-emulation.c
773
774 APPLE BCM5974 MULTITOUCH DRIVER
775 M:      Henrik Rydberg <rydberg@bitmath.org>
776 L:      linux-input@vger.kernel.org
777 S:      Odd fixes
778 F:      drivers/input/mouse/bcm5974.c
779
780 APPLE SMC DRIVER
781 M:      Henrik Rydberg <rydberg@bitmath.org>
782 L:      lm-sensors@lm-sensors.org
783 S:      Odd fixes
784 F:      drivers/hwmon/applesmc.c
785
786 APPLETALK NETWORK LAYER
787 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
788 S:      Maintained
789 F:      drivers/net/appletalk/
790 F:      net/appletalk/
791
792 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
793 M:      Iyappan Subramanian <isubramanian@apm.com>
794 M:      Keyur Chudgar <kchudgar@apm.com>
795 S:      Supported
796 F:      drivers/net/ethernet/apm/xgene/
797 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
798
799 APTINA CAMERA SENSOR PLL
800 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
801 L:      linux-media@vger.kernel.org
802 S:      Maintained
803 F:      drivers/media/i2c/aptina-pll.*
804
805 ARC FRAMEBUFFER DRIVER
806 M:      Jaya Kumar <jayalk@intworks.biz>
807 S:      Maintained
808 F:      drivers/video/fbdev/arcfb.c
809 F:      drivers/video/fbdev/core/fb_defio.c
810
811 ARM MFM AND FLOPPY DRIVERS
812 M:      Ian Molton <spyro@f2s.com>
813 S:      Maintained
814 F:      arch/arm/lib/floppydma.S
815 F:      arch/arm/include/asm/floppy.h
816
817 ARM PMU PROFILING AND DEBUGGING
818 M:      Will Deacon <will.deacon@arm.com>
819 S:      Maintained
820 F:      arch/arm/kernel/perf_*
821 F:      arch/arm/oprofile/common.c
822 F:      arch/arm/kernel/hw_breakpoint.c
823 F:      arch/arm/include/asm/hw_breakpoint.h
824 F:      arch/arm/include/asm/perf_event.h
825 F:      drivers/perf/arm_pmu.c
826 F:      include/linux/perf/arm_pmu.h
827
828 ARM PORT
829 M:      Russell King <linux@arm.linux.org.uk>
830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
831 W:      http://www.arm.linux.org.uk/
832 S:      Maintained
833 F:      arch/arm/
834
835 ARM SUB-ARCHITECTURES
836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
837 S:      Maintained
838 F:      arch/arm/mach-*/
839 F:      arch/arm/plat-*/
840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
841
842 ARM PRIMECELL AACI PL041 DRIVER
843 M:      Russell King <linux@arm.linux.org.uk>
844 S:      Maintained
845 F:      sound/arm/aaci.*
846
847 ARM PRIMECELL CLCD PL110 DRIVER
848 M:      Russell King <linux@arm.linux.org.uk>
849 S:      Maintained
850 F:      drivers/video/fbdev/amba-clcd.*
851
852 ARM PRIMECELL KMI PL050 DRIVER
853 M:      Russell King <linux@arm.linux.org.uk>
854 S:      Maintained
855 F:      drivers/input/serio/ambakmi.*
856 F:      include/linux/amba/kmi.h
857
858 ARM PRIMECELL MMCI PL180/1 DRIVER
859 M:      Russell King <linux@arm.linux.org.uk>
860 S:      Maintained
861 F:      drivers/mmc/host/mmci.*
862 F:      include/linux/amba/mmci.h
863
864 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
865 M:      Russell King <linux@arm.linux.org.uk>
866 S:      Maintained
867 F:      drivers/tty/serial/amba-pl01*.c
868 F:      include/linux/amba/serial.h
869
870 ARM PRIMECELL BUS SUPPORT
871 M:      Russell King <linux@arm.linux.org.uk>
872 S:      Maintained
873 F:      drivers/amba/
874 F:      include/linux/amba/bus.h
875
876 ARM/ADS SPHERE MACHINE SUPPORT
877 M:      Lennert Buytenhek <kernel@wantstofly.org>
878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
879 S:      Maintained
880
881 ARM/AFEB9260 MACHINE SUPPORT
882 M:      Sergey Lapin <slapin@ossfans.org>
883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
884 S:      Maintained
885
886 ARM/AJECO 1ARM MACHINE SUPPORT
887 M:      Lennert Buytenhek <kernel@wantstofly.org>
888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
889 S:      Maintained
890
891 ARM/Allwinner A1X SoC support
892 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
894 S:      Maintained
895 N:      sun[x4567]i
896
897 ARM/Allwinner SoC Clock Support
898 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
899 S:      Maintained
900 F:      drivers/clk/sunxi/
901
902 ARM/Amlogic MesonX SoC support
903 M:      Carlo Caione <carlo@caione.org>
904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
905 S:      Maintained
906 F:      drivers/media/rc/meson-ir.c
907 N:      meson[x68]
908
909 ARM/Annapurna Labs ALPINE ARCHITECTURE
910 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
911 S:      Maintained
912 F:      arch/arm/mach-alpine/
913
914 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
915 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
916 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
917 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
919 W:      http://www.linux4sam.org
920 S:      Supported
921 F:      arch/arm/mach-at91/
922 F:      include/soc/at91/
923 F:      arch/arm/boot/dts/at91*.dts
924 F:      arch/arm/boot/dts/at91*.dtsi
925 F:      arch/arm/boot/dts/sama*.dts
926 F:      arch/arm/boot/dts/sama*.dtsi
927 F:      arch/arm/include/debug/at91.S
928
929 ARM/ATMEL AT91 Clock Support
930 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
931 S:      Maintained
932 F:      drivers/clk/at91
933
934 ARM/CALXEDA HIGHBANK ARCHITECTURE
935 M:      Rob Herring <robh@kernel.org>
936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
937 S:      Maintained
938 F:      arch/arm/mach-highbank/
939
940 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
941 M:      Krzysztof Halasa <khalasa@piap.pl>
942 S:      Maintained
943 F:      arch/arm/mach-cns3xxx/
944
945 ARM/CAVIUM THUNDER NETWORK DRIVER
946 M:      Sunil Goutham <sgoutham@cavium.com>
947 M:      Robert Richter <rric@kernel.org>
948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
949 S:      Supported
950 F:      drivers/net/ethernet/cavium/
951
952 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
953 M:      Alexander Shiyan <shc_work@mail.ru>
954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
955 S:      Odd Fixes
956 N:      clps711x
957
958 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
959 M:      Hartley Sweeten <hsweeten@visionengravers.com>
960 M:      Ryan Mallon <rmallon@gmail.com>
961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962 S:      Maintained
963 F:      arch/arm/mach-ep93xx/
964 F:      arch/arm/mach-ep93xx/include/mach/
965
966 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
967 M:      Lennert Buytenhek <kernel@wantstofly.org>
968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
969 S:      Maintained
970
971 ARM/CLKDEV SUPPORT
972 M:      Russell King <linux@arm.linux.org.uk>
973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
974 S:      Maintained
975 F:      arch/arm/include/asm/clkdev.h
976 F:      drivers/clk/clkdev.c
977
978 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
979 M:      Mike Rapoport <mike@compulab.co.il>
980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
981 S:      Maintained
982
983 ARM/CONTEC MICRO9 MACHINE SUPPORT
984 M:      Hubert Feurstein <hubert.feurstein@contec.at>
985 S:      Maintained
986 F:      arch/arm/mach-ep93xx/micro9.c
987
988 ARM/CORESIGHT FRAMEWORK AND DRIVERS
989 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
991 S:      Maintained
992 F:      drivers/hwtracing/coresight/*
993 F:      Documentation/trace/coresight.txt
994 F:      Documentation/devicetree/bindings/arm/coresight.txt
995 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
996
997 ARM/CORGI MACHINE SUPPORT
998 M:      Richard Purdie <rpurdie@rpsys.net>
999 S:      Maintained
1000
1001 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1002 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1004 T:      git git://github.com/ulli-kroll/linux.git
1005 S:      Maintained
1006 F:      arch/arm/mach-gemini/
1007 F:      drivers/rtc/rtc-gemini.c
1008
1009 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1010 M:      Barry Song <baohua@kernel.org>
1011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1013 S:      Maintained
1014 F:      arch/arm/mach-prima2/
1015 F:      drivers/clk/sirf/
1016 F:      drivers/clocksource/timer-prima2.c
1017 F:      drivers/clocksource/timer-atlas7.c
1018 N:      [^a-z]sirf
1019
1020 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1021 M:      Baruch Siach <baruch@tkos.co.il>
1022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1023 S:      Maintained
1024 F:      arch/arm/boot/dts/cx92755*
1025 N:      digicolor
1026
1027 ARM/EBSA110 MACHINE SUPPORT
1028 M:      Russell King <linux@arm.linux.org.uk>
1029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1030 W:      http://www.arm.linux.org.uk/
1031 S:      Maintained
1032 F:      arch/arm/mach-ebsa110/
1033 F:      drivers/net/ethernet/amd/am79c961a.*
1034
1035 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1036 M:      Uwe Kleine-König <kernel@pengutronix.de>
1037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1038 S:      Maintained
1039 N:      efm32
1040
1041 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1042 M:      Daniel Ribeiro <drwyrm@gmail.com>
1043 M:      Stefan Schmidt <stefan@openezx.org>
1044 M:      Harald Welte <laforge@openezx.org>
1045 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1046 W:      http://www.openezx.org/
1047 S:      Maintained
1048 T:      topgit git://git.openezx.org/openezx.git
1049 F:      arch/arm/mach-pxa/ezx.c
1050
1051 ARM/FARADAY FA526 PORT
1052 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1054 S:      Maintained
1055 T:      git git://git.berlios.de/gemini-board
1056 F:      arch/arm/mm/*-fa*
1057
1058 ARM/FOOTBRIDGE ARCHITECTURE
1059 M:      Russell King <linux@arm.linux.org.uk>
1060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1061 W:      http://www.arm.linux.org.uk/
1062 S:      Maintained
1063 F:      arch/arm/include/asm/hardware/dec21285.h
1064 F:      arch/arm/mach-footbridge/
1065
1066 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1067 M:      Shawn Guo <shawnguo@kernel.org>
1068 M:      Sascha Hauer <kernel@pengutronix.de>
1069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1070 S:      Maintained
1071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1072 F:      arch/arm/mach-imx/
1073 F:      arch/arm/mach-mxs/
1074 F:      arch/arm/boot/dts/imx*
1075 F:      arch/arm/configs/imx*_defconfig
1076 F:      drivers/clk/imx/
1077 F:      include/soc/imx/
1078
1079 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1080 M:      Shawn Guo <shawnguo@kernel.org>
1081 M:      Sascha Hauer <kernel@pengutronix.de>
1082 R:      Stefan Agner <stefan@agner.ch>
1083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1084 S:      Maintained
1085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1086 F:      arch/arm/mach-imx/*vf610*
1087 F:      arch/arm/boot/dts/vf*
1088
1089 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1090 M:      Lennert Buytenhek <kernel@wantstofly.org>
1091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1092 S:      Maintained
1093
1094 ARM/GUMSTIX MACHINE SUPPORT
1095 M:      Steve Sakoman <sakoman@gmail.com>
1096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1097 S:      Maintained
1098
1099 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1100 M:      Philipp Zabel <philipp.zabel@gmail.com>
1101 M:      Paul Parsons <lost.distance@yahoo.com>
1102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1103 S:      Maintained
1104 F:      arch/arm/mach-pxa/hx4700.c
1105 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1106 F:      sound/soc/pxa/hx4700.c
1107
1108 ARM/HISILICON SOC SUPPORT
1109 M:      Wei Xu <xuwei5@hisilicon.com>
1110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1111 W:      http://www.hisilicon.com
1112 S:      Supported
1113 T:      git git://github.com/hisilicon/linux-hisi.git
1114 F:      arch/arm/mach-hisi/
1115
1116 ARM/HP JORNADA 7XX MACHINE SUPPORT
1117 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1118 W:      www.jlime.com
1119 S:      Maintained
1120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1121 F:      arch/arm/mach-sa1100/jornada720.c
1122 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1123
1124 ARM/IGEP MACHINE SUPPORT
1125 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1126 M:      Javier Martinez Canillas <javier@dowhile0.org>
1127 L:      linux-omap@vger.kernel.org
1128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1129 S:      Maintained
1130 F:      arch/arm/boot/dts/omap3-igep*
1131
1132 ARM/INCOME PXA270 SUPPORT
1133 M:      Marek Vasut <marek.vasut@gmail.com>
1134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135 S:      Maintained
1136 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1137
1138 ARM/INTEL IOP32X ARM ARCHITECTURE
1139 M:      Lennert Buytenhek <kernel@wantstofly.org>
1140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1141 S:      Maintained
1142
1143 ARM/INTEL IOP33X ARM ARCHITECTURE
1144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1145 S:      Orphan
1146
1147 ARM/INTEL IOP13XX ARM ARCHITECTURE
1148 M:      Lennert Buytenhek <kernel@wantstofly.org>
1149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1150 S:      Maintained
1151
1152 ARM/INTEL IQ81342EX MACHINE SUPPORT
1153 M:      Lennert Buytenhek <kernel@wantstofly.org>
1154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1155 S:      Maintained
1156
1157 ARM/INTEL IXDP2850 MACHINE SUPPORT
1158 M:      Lennert Buytenhek <kernel@wantstofly.org>
1159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1160 S:      Maintained
1161
1162 ARM/INTEL IXP4XX ARM ARCHITECTURE
1163 M:      Imre Kaloz <kaloz@openwrt.org>
1164 M:      Krzysztof Halasa <khalasa@piap.pl>
1165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1166 S:      Maintained
1167 F:      arch/arm/mach-ixp4xx/
1168
1169 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1170 M:      Jonathan Cameron <jic23@cam.ac.uk>
1171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1172 S:      Maintained
1173 F:      arch/arm/mach-pxa/stargate2.c
1174 F:      drivers/pcmcia/pxa2xx_stargate2.c
1175
1176 ARM/INTEL XSC3 (MANZANO) ARM CORE
1177 M:      Lennert Buytenhek <kernel@wantstofly.org>
1178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179 S:      Maintained
1180
1181 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1182 M:      Lennert Buytenhek <kernel@wantstofly.org>
1183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1184 S:      Maintained
1185
1186 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1187 M:      Santosh Shilimkar <ssantosh@kernel.org>
1188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189 S:      Maintained
1190 F:      arch/arm/mach-keystone/
1191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1192
1193 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1194 M:      Santosh Shilimkar <ssantosh@kernel.org>
1195 L:      linux-kernel@vger.kernel.org
1196 S:      Maintained
1197 F:      drivers/clk/keystone/
1198
1199 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1200 M:      Santosh Shilimkar <ssantosh@kernel.org>
1201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202 L:      linux-kernel@vger.kernel.org
1203 S:      Maintained
1204 F:      drivers/clocksource/timer-keystone.c
1205
1206 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1207 M:      Santosh Shilimkar <ssantosh@kernel.org>
1208 L:      linux-kernel@vger.kernel.org
1209 S:      Maintained
1210 F:      drivers/power/reset/keystone-reset.c
1211
1212 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1213 M:      Santosh Shilimkar <ssantosh@kernel.org>
1214 L:      linux-kernel@vger.kernel.org
1215 S:      Maintained
1216 F:      drivers/memory/*emif*
1217
1218 ARM/LOGICPD PXA270 MACHINE SUPPORT
1219 M:      Lennert Buytenhek <kernel@wantstofly.org>
1220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1221 S:      Maintained
1222
1223 ARM/LPC18XX ARCHITECTURE
1224 M:      Joachim Eastwood <manabian@gmail.com>
1225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226 S:      Maintained
1227 N:      lpc18xx
1228
1229 ARM/MAGICIAN MACHINE SUPPORT
1230 M:      Philipp Zabel <philipp.zabel@gmail.com>
1231 S:      Maintained
1232
1233 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1234 M:      Jason Cooper <jason@lakedaemon.net>
1235 M:      Andrew Lunn <andrew@lunn.ch>
1236 M:      Gregory Clement <gregory.clement@free-electrons.com>
1237 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1238 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239 S:      Maintained
1240 F:      arch/arm/mach-mvebu/
1241 F:      drivers/rtc/rtc-armada38x.c
1242 F:      arch/arm/boot/dts/armada*
1243 F:      arch/arm/boot/dts/kirkwood*
1244
1245
1246 ARM/Marvell Berlin SoC support
1247 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1249 S:      Maintained
1250 F:      arch/arm/mach-berlin/
1251 F:      arch/arm/boot/dts/berlin*
1252
1253
1254 ARM/Marvell Dove/MV78xx0/Orion SOC support
1255 M:      Jason Cooper <jason@lakedaemon.net>
1256 M:      Andrew Lunn <andrew@lunn.ch>
1257 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1258 M:      Gregory Clement <gregory.clement@free-electrons.com>
1259 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1260 S:      Maintained
1261 F:      arch/arm/mach-dove/
1262 F:      arch/arm/mach-mv78xx0/
1263 F:      arch/arm/mach-orion5x/
1264 F:      arch/arm/plat-orion/
1265 F:      arch/arm/boot/dts/dove*
1266 F:      arch/arm/boot/dts/orion5x*
1267
1268
1269 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1270 M:      Alexander Clouter <alex@digriz.org.uk>
1271 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1272 W:      http://www.digriz.org.uk/ts78xx/kernel
1273 S:      Maintained
1274 F:      arch/arm/mach-orion5x/ts78xx-*
1275
1276 ARM/Mediatek RTC DRIVER
1277 M:      Eddie Huang <eddie.huang@mediatek.com>
1278 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1279 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1280 S:      Maintained
1281 F:      drivers/rtc/rtc-mt6397.c
1282
1283 ARM/Mediatek SoC support
1284 M:      Matthias Brugger <matthias.bgg@gmail.com>
1285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1286 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1287 S:      Maintained
1288 F:      arch/arm/boot/dts/mt6*
1289 F:      arch/arm/boot/dts/mt8*
1290 F:      arch/arm/mach-mediatek/
1291 N:      mtk
1292 K:      mediatek
1293
1294 ARM/MICREL KS8695 ARCHITECTURE
1295 M:      Greg Ungerer <gerg@uclinux.org>
1296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297 F:      arch/arm/mach-ks8695/
1298 S:      Odd Fixes
1299
1300 ARM/MIOA701 MACHINE SUPPORT
1301 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1302 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1303 F:      arch/arm/mach-pxa/mioa701.c
1304 S:      Maintained
1305
1306 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1307 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1308 S:      Maintained
1309
1310 ARM/NOMADIK ARCHITECTURE
1311 M:      Alessandro Rubini <rubini@unipv.it>
1312 M:      Linus Walleij <linus.walleij@linaro.org>
1313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1314 S:      Maintained
1315 F:      arch/arm/mach-nomadik/
1316 F:      drivers/pinctrl/nomadik/
1317 F:      drivers/i2c/busses/i2c-nomadik.c
1318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1319
1320 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1321 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1322 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1323 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1324 S:      Supported
1325
1326 ARM/TOSA MACHINE SUPPORT
1327 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1328 M:      Dirk Opfer <dirk@opfer-online.de>
1329 S:      Maintained
1330
1331 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1332 M:      Marek Vasut <marek.vasut@gmail.com>
1333 L:      linux-arm-kernel@lists.infradead.org
1334 W:      http://hackndev.com
1335 S:      Maintained
1336 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1337 F:      arch/arm/mach-pxa/palmtx.c
1338 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1339 F:      arch/arm/mach-pxa/palmt5.c
1340 F:      arch/arm/mach-pxa/include/mach/palmld.h
1341 F:      arch/arm/mach-pxa/palmld.c
1342 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1343 F:      arch/arm/mach-pxa/palmte2.c
1344 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1345 F:      arch/arm/mach-pxa/palmtc.c
1346
1347 ARM/PALM TREO SUPPORT
1348 M:      Tomas Cech <sleep_walker@suse.com>
1349 L:      linux-arm-kernel@lists.infradead.org
1350 W:      http://hackndev.com
1351 S:      Maintained
1352 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1353 F:      arch/arm/mach-pxa/palmtreo.c
1354
1355 ARM/PALMZ72 SUPPORT
1356 M:      Sergey Lapin <slapin@ossfans.org>
1357 L:      linux-arm-kernel@lists.infradead.org
1358 W:      http://hackndev.com
1359 S:      Maintained
1360 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1361 F:      arch/arm/mach-pxa/palmz72.c
1362
1363 ARM/PLEB SUPPORT
1364 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1365 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1366 S:      Maintained
1367
1368 ARM/PT DIGITAL BOARD PORT
1369 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1371 W:      http://www.arm.linux.org.uk/
1372 S:      Maintained
1373
1374 ARM/QUALCOMM SUPPORT
1375 M:      Kumar Gala <galak@codeaurora.org>
1376 M:      Andy Gross <agross@codeaurora.org>
1377 M:      David Brown <davidb@codeaurora.org>
1378 L:      linux-arm-msm@vger.kernel.org
1379 L:      linux-soc@vger.kernel.org
1380 S:      Maintained
1381 F:      arch/arm/mach-qcom/
1382 F:      drivers/soc/qcom/
1383 F:      drivers/tty/serial/msm_serial.h
1384 F:      drivers/tty/serial/msm_serial.c
1385 F:      drivers/*/pm8???-*
1386 F:      drivers/mfd/ssbi.c
1387 F:      drivers/firmware/qcom_scm.c
1388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1389
1390 ARM/RADISYS ENP2611 MACHINE SUPPORT
1391 M:      Lennert Buytenhek <kernel@wantstofly.org>
1392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393 S:      Maintained
1394
1395 ARM/RISCPC ARCHITECTURE
1396 M:      Russell King <linux@arm.linux.org.uk>
1397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1398 W:      http://www.arm.linux.org.uk/
1399 S:      Maintained
1400 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1401 F:      arch/arm/include/asm/hardware/ioc.h
1402 F:      arch/arm/include/asm/hardware/iomd.h
1403 F:      arch/arm/include/asm/hardware/memc.h
1404 F:      arch/arm/mach-rpc/
1405 F:      drivers/net/ethernet/8390/etherh.c
1406 F:      drivers/net/ethernet/i825xx/ether1*
1407 F:      drivers/net/ethernet/seeq/ether3*
1408 F:      drivers/scsi/arm/
1409
1410 ARM/Rockchip SoC support
1411 M:      Heiko Stuebner <heiko@sntech.de>
1412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1413 L:      linux-rockchip@lists.infradead.org
1414 S:      Maintained
1415 F:      arch/arm/boot/dts/rk3*
1416 F:      arch/arm/mach-rockchip/
1417 F:      drivers/clk/rockchip/
1418 F:      drivers/i2c/busses/i2c-rk3x.c
1419 F:      drivers/*/*rockchip*
1420 F:      drivers/*/*/*rockchip*
1421 F:      sound/soc/rockchip/
1422 N:      rockchip
1423
1424 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1425 M:      Kukjin Kim <kgene@kernel.org>
1426 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1428 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1429 S:      Maintained
1430 F:      arch/arm/boot/dts/s3c*
1431 F:      arch/arm/boot/dts/exynos*
1432 F:      arch/arm64/boot/dts/exynos/
1433 F:      arch/arm/plat-samsung/
1434 F:      arch/arm/mach-s3c24*/
1435 F:      arch/arm/mach-s3c64xx/
1436 F:      arch/arm/mach-s5p*/
1437 F:      arch/arm/mach-exynos*/
1438 F:      drivers/*/*s3c2410*
1439 F:      drivers/*/*/*s3c2410*
1440 F:      drivers/spi/spi-s3c*
1441 F:      sound/soc/samsung/*
1442 N:      exynos
1443
1444 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1445 M:      Kyungmin Park <kyungmin.park@samsung.com>
1446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1447 S:      Maintained
1448 F:      arch/arm/mach-s5pv210/
1449
1450 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1451 M:      Kyungmin Park <kyungmin.park@samsung.com>
1452 M:      Kamil Debski <k.debski@samsung.com>
1453 L:      linux-arm-kernel@lists.infradead.org
1454 L:      linux-media@vger.kernel.org
1455 S:      Maintained
1456 F:      drivers/media/platform/s5p-g2d/
1457
1458 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1459 M:      Kyungmin Park <kyungmin.park@samsung.com>
1460 M:      Kamil Debski <k.debski@samsung.com>
1461 M:      Jeongtae Park <jtp.park@samsung.com>
1462 L:      linux-arm-kernel@lists.infradead.org
1463 L:      linux-media@vger.kernel.org
1464 S:      Maintained
1465 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1466 F:      drivers/media/platform/s5p-mfc/
1467
1468 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1469 M:      Kyungmin Park <kyungmin.park@samsung.com>
1470 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1471 L:      linux-arm-kernel@lists.infradead.org
1472 L:      linux-media@vger.kernel.org
1473 S:      Maintained
1474 F:      drivers/media/platform/s5p-tv/
1475
1476 ARM/SHMOBILE ARM ARCHITECTURE
1477 M:      Simon Horman <horms@verge.net.au>
1478 M:      Magnus Damm <magnus.damm@gmail.com>
1479 L:      linux-sh@vger.kernel.org
1480 W:      http://oss.renesas.com
1481 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1483 S:      Supported
1484 F:      arch/arm/boot/dts/emev2*
1485 F:      arch/arm/boot/dts/r7s*
1486 F:      arch/arm/boot/dts/r8a*
1487 F:      arch/arm/boot/dts/sh*
1488 F:      arch/arm/configs/bockw_defconfig
1489 F:      arch/arm/configs/marzen_defconfig
1490 F:      arch/arm/configs/shmobile_defconfig
1491 F:      arch/arm/include/debug/renesas-scif.S
1492 F:      arch/arm/mach-shmobile/
1493 F:      drivers/sh/
1494
1495 ARM/SOCFPGA ARCHITECTURE
1496 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1497 S:      Maintained
1498 F:      arch/arm/mach-socfpga/
1499 F:      arch/arm/boot/dts/socfpga*
1500 F:      arch/arm/configs/socfpga_defconfig
1501 W:      http://www.rocketboards.org
1502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1503
1504 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1505 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1506 S:      Maintained
1507 F:      drivers/clk/socfpga/
1508
1509 ARM/SOCFPGA EDAC SUPPORT
1510 M:      Thor Thayer <tthayer@opensource.altera.com>
1511 S:      Maintained
1512 F:      drivers/edac/altera_edac.
1513
1514 ARM/STI ARCHITECTURE
1515 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1516 M:      Maxime Coquelin <maxime.coquelin@st.com>
1517 M:      Patrice Chotard <patrice.chotard@st.com>
1518 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1519 L:      kernel@stlinux.com
1520 W:      http://www.stlinux.com
1521 S:      Maintained
1522 F:      arch/arm/mach-sti/
1523 F:      arch/arm/boot/dts/sti*
1524 F:      drivers/clocksource/arm_global_timer.c
1525 F:      drivers/clocksource/clksrc_st_lpc.c
1526 F:      drivers/i2c/busses/i2c-st.c
1527 F:      drivers/media/rc/st_rc.c
1528 F:      drivers/media/platform/sti/c8sectpfe/
1529 F:      drivers/mmc/host/sdhci-st.c
1530 F:      drivers/phy/phy-miphy28lp.c
1531 F:      drivers/phy/phy-miphy365x.c
1532 F:      drivers/phy/phy-stih407-usb.c
1533 F:      drivers/phy/phy-stih41x-usb.c
1534 F:      drivers/pinctrl/pinctrl-st.c
1535 F:      drivers/reset/sti/
1536 F:      drivers/rtc/rtc-st-lpc.c
1537 F:      drivers/tty/serial/st-asc.c
1538 F:      drivers/usb/dwc3/dwc3-st.c
1539 F:      drivers/usb/host/ehci-st.c
1540 F:      drivers/usb/host/ohci-st.c
1541 F:      drivers/watchdog/st_lpc_wdt.c
1542 F:      drivers/ata/ahci_st.c
1543
1544 ARM/STM32 ARCHITECTURE
1545 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1547 S:      Maintained
1548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1549 N:      stm32
1550 F:      drivers/clocksource/armv7m_systick.c
1551
1552 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1553 M:      Lennert Buytenhek <kernel@wantstofly.org>
1554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1555 S:      Maintained
1556
1557 ARM/TETON BGA MACHINE SUPPORT
1558 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1560 S:      Maintained
1561
1562 ARM/THECUS N2100 MACHINE SUPPORT
1563 M:      Lennert Buytenhek <kernel@wantstofly.org>
1564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1565 S:      Maintained
1566
1567 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1568 M:      Wan ZongShun <mcuos.com@gmail.com>
1569 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1570 W:      http://www.mcuos.com
1571 S:      Maintained
1572 F:      arch/arm/mach-w90x900/
1573 F:      drivers/input/keyboard/w90p910_keypad.c
1574 F:      drivers/input/touchscreen/w90p910_ts.c
1575 F:      drivers/watchdog/nuc900_wdt.c
1576 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1577 F:      drivers/mtd/nand/nuc900_nand.c
1578 F:      drivers/rtc/rtc-nuc900.c
1579 F:      drivers/spi/spi-nuc900.c
1580 F:      drivers/usb/host/ehci-w90x900.c
1581 F:      drivers/video/fbdev/nuc900fb.c
1582
1583 ARM/U300 MACHINE SUPPORT
1584 M:      Linus Walleij <linus.walleij@linaro.org>
1585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1586 S:      Supported
1587 F:      arch/arm/mach-u300/
1588 F:      drivers/clocksource/timer-u300.c
1589 F:      drivers/i2c/busses/i2c-stu300.c
1590 F:      drivers/rtc/rtc-coh901331.c
1591 F:      drivers/watchdog/coh901327_wdt.c
1592 F:      drivers/dma/coh901318*
1593 F:      drivers/mfd/ab3100*
1594 F:      drivers/rtc/rtc-ab3100.c
1595 F:      drivers/rtc/rtc-coh901331.c
1596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1597
1598 ARM/UNIPHIER ARCHITECTURE
1599 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 S:      Maintained
1602 F:      arch/arm/boot/dts/uniphier*
1603 F:      arch/arm/mach-uniphier/
1604 F:      drivers/pinctrl/uniphier/
1605 F:      drivers/tty/serial/8250/8250_uniphier.c
1606 N:      uniphier
1607
1608 ARM/Ux500 ARM ARCHITECTURE
1609 M:      Linus Walleij <linus.walleij@linaro.org>
1610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1611 S:      Maintained
1612 F:      arch/arm/mach-ux500/
1613 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1614 F:      drivers/dma/ste_dma40*
1615 F:      drivers/hwspinlock/u8500_hsem.c
1616 F:      drivers/mfd/abx500*
1617 F:      drivers/mfd/ab8500*
1618 F:      drivers/mfd/dbx500*
1619 F:      drivers/mfd/db8500*
1620 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1621 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1622 F:      drivers/rtc/rtc-ab8500.c
1623 F:      drivers/rtc/rtc-pl031.c
1624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1625
1626 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1627 M:      Ulf Hansson <ulf.hansson@linaro.org>
1628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 T:      git git://git.linaro.org/people/ulfh/clk.git
1630 S:      Maintained
1631 F:      drivers/clk/ux500/
1632 F:      include/linux/platform_data/clk-ux500.h
1633
1634 ARM/VERSATILE EXPRESS PLATFORM
1635 M:      Liviu Dudau <liviu.dudau@arm.com>
1636 M:      Sudeep Holla <sudeep.holla@arm.com>
1637 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639 S:      Maintained
1640 F:      arch/arm/boot/dts/vexpress*
1641 F:      arch/arm64/boot/dts/arm/vexpress*
1642 F:      arch/arm/mach-vexpress/
1643 F:      */*/vexpress*
1644 F:      */*/*/vexpress*
1645 F:      drivers/clk/versatile/clk-vexpress-osc.c
1646 F:      drivers/clocksource/versatile.c
1647
1648 ARM/VFP SUPPORT
1649 M:      Russell King <linux@arm.linux.org.uk>
1650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1651 W:      http://www.arm.linux.org.uk/
1652 S:      Maintained
1653 F:      arch/arm/vfp/
1654
1655 ARM/VOIPAC PXA270 SUPPORT
1656 M:      Marek Vasut <marek.vasut@gmail.com>
1657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658 S:      Maintained
1659 F:      arch/arm/mach-pxa/vpac270.c
1660 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1661
1662 ARM/VT8500 ARM ARCHITECTURE
1663 M:      Tony Prisk <linux@prisktech.co.nz>
1664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665 S:      Maintained
1666 F:      arch/arm/mach-vt8500/
1667 F:      drivers/clocksource/vt8500_timer.c
1668 F:      drivers/i2c/busses/i2c-wmt.c
1669 F:      drivers/mmc/host/wmt-sdmmc.c
1670 F:      drivers/pwm/pwm-vt8500.c
1671 F:      drivers/rtc/rtc-vt8500.c
1672 F:      drivers/tty/serial/vt8500_serial.c
1673 F:      drivers/usb/host/ehci-platform.c
1674 F:      drivers/usb/host/uhci-platform.c
1675 F:      drivers/video/fbdev/vt8500lcdfb.*
1676 F:      drivers/video/fbdev/wm8505fb*
1677 F:      drivers/video/fbdev/wmt_ge_rops.*
1678
1679 ARM/ZIPIT Z2 SUPPORT
1680 M:      Marek Vasut <marek.vasut@gmail.com>
1681 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1682 S:      Maintained
1683 F:      arch/arm/mach-pxa/z2.c
1684 F:      arch/arm/mach-pxa/include/mach/z2.h
1685
1686 ARM/ZTE ARCHITECTURE
1687 M:      Jun Nie <jun.nie@linaro.org>
1688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689 S:      Maintained
1690 F:      arch/arm/mach-zx/
1691 F:      drivers/clk/zte/
1692 F:      Documentation/devicetree/bindings/arm/zte.txt
1693 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1694
1695 ARM/ZYNQ ARCHITECTURE
1696 M:      Michal Simek <michal.simek@xilinx.com>
1697 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 W:      http://wiki.xilinx.com
1700 T:      git https://github.com/Xilinx/linux-xlnx.git
1701 S:      Supported
1702 F:      arch/arm/mach-zynq/
1703 F:      drivers/cpuidle/cpuidle-zynq.c
1704 F:      drivers/block/xsysace.c
1705 N:      zynq
1706 N:      xilinx
1707 F:      drivers/clocksource/cadence_ttc_timer.c
1708 F:      drivers/i2c/busses/i2c-cadence.c
1709 F:      drivers/mmc/host/sdhci-of-arasan.c
1710 F:      drivers/edac/synopsys_edac.c
1711
1712 ARM SMMU DRIVERS
1713 M:      Will Deacon <will.deacon@arm.com>
1714 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1715 S:      Maintained
1716 F:      drivers/iommu/arm-smmu.c
1717 F:      drivers/iommu/arm-smmu-v3.c
1718 F:      drivers/iommu/io-pgtable-arm.c
1719
1720 ARM64 PORT (AARCH64 ARCHITECTURE)
1721 M:      Catalin Marinas <catalin.marinas@arm.com>
1722 M:      Will Deacon <will.deacon@arm.com>
1723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724 S:      Maintained
1725 F:      arch/arm64/
1726 F:      Documentation/arm64/
1727
1728 AS3645A LED FLASH CONTROLLER DRIVER
1729 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1730 L:      linux-media@vger.kernel.org
1731 T:      git git://linuxtv.org/media_tree.git
1732 S:      Maintained
1733 F:      drivers/media/i2c/as3645a.c
1734 F:      include/media/as3645a.h
1735
1736 ASC7621 HARDWARE MONITOR DRIVER
1737 M:      George Joseph <george.joseph@fairview5.com>
1738 L:      lm-sensors@lm-sensors.org
1739 S:      Maintained
1740 F:      Documentation/hwmon/asc7621
1741 F:      drivers/hwmon/asc7621.c
1742
1743 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1744 M:      Corentin Chary <corentin.chary@gmail.com>
1745 L:      acpi4asus-user@lists.sourceforge.net
1746 L:      platform-driver-x86@vger.kernel.org
1747 W:      http://acpi4asus.sf.net
1748 S:      Maintained
1749 F:      drivers/platform/x86/asus*.c
1750 F:      drivers/platform/x86/eeepc*.c
1751
1752 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1753 R:      Dan Williams <dan.j.williams@intel.com>
1754 W:      http://sourceforge.net/projects/xscaleiop
1755 S:      Odd fixes
1756 F:      Documentation/crypto/async-tx-api.txt
1757 F:      crypto/async_tx/
1758 F:      drivers/dma/
1759 F:      include/linux/dmaengine.h
1760 F:      include/linux/async_tx.h
1761
1762 AT24 EEPROM DRIVER
1763 M:      Wolfram Sang <wsa@the-dreams.de>
1764 L:      linux-i2c@vger.kernel.org
1765 S:      Maintained
1766 F:      drivers/misc/eeprom/at24.c
1767 F:      include/linux/platform_data/at24.h
1768
1769 ATA OVER ETHERNET (AOE) DRIVER
1770 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1771 W:      http://www.openaoe.org/
1772 S:      Supported
1773 F:      Documentation/aoe/
1774 F:      drivers/block/aoe/
1775
1776 ATHEROS ATH GENERIC UTILITIES
1777 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1778 L:      linux-wireless@vger.kernel.org
1779 S:      Supported
1780 F:      drivers/net/wireless/ath/*
1781
1782 ATHEROS ATH5K WIRELESS DRIVER
1783 M:      Jiri Slaby <jirislaby@gmail.com>
1784 M:      Nick Kossifidis <mickflemm@gmail.com>
1785 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1786 L:      linux-wireless@vger.kernel.org
1787 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1788 S:      Maintained
1789 F:      drivers/net/wireless/ath/ath5k/
1790
1791 ATHEROS ATH6KL WIRELESS DRIVER
1792 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1793 L:      linux-wireless@vger.kernel.org
1794 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1795 T:      git git://github.com/kvalo/ath.git
1796 S:      Supported
1797 F:      drivers/net/wireless/ath/ath6kl/
1798
1799 WILOCITY WIL6210 WIRELESS DRIVER
1800 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1801 L:      linux-wireless@vger.kernel.org
1802 L:      wil6210@qca.qualcomm.com
1803 S:      Supported
1804 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1805 F:      drivers/net/wireless/ath/wil6210/
1806 F:      include/uapi/linux/wil6210_uapi.h
1807
1808 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1809 M:      Christian Lamparter <chunkeey@googlemail.com>
1810 L:      linux-wireless@vger.kernel.org
1811 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1812 S:      Maintained
1813 F:      drivers/net/wireless/ath/carl9170/
1814
1815 ATK0110 HWMON DRIVER
1816 M:      Luca Tettamanti <kronos.it@gmail.com>
1817 L:      lm-sensors@lm-sensors.org
1818 S:      Maintained
1819 F:      drivers/hwmon/asus_atk0110.c
1820
1821 ATI_REMOTE2 DRIVER
1822 M:      Ville Syrjala <syrjala@sci.fi>
1823 S:      Maintained
1824 F:      drivers/input/misc/ati_remote2.c
1825
1826 ATLX ETHERNET DRIVERS
1827 M:      Jay Cliburn <jcliburn@gmail.com>
1828 M:      Chris Snook <chris.snook@gmail.com>
1829 L:      netdev@vger.kernel.org
1830 W:      http://sourceforge.net/projects/atl1
1831 W:      http://atl1.sourceforge.net
1832 S:      Maintained
1833 F:      drivers/net/ethernet/atheros/
1834
1835 ATM
1836 M:      Chas Williams <3chas3@gmail.com>
1837 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1838 L:      netdev@vger.kernel.org
1839 W:      http://linux-atm.sourceforge.net
1840 S:      Maintained
1841 F:      drivers/atm/
1842 F:      include/linux/atm*
1843 F:      include/uapi/linux/atm*
1844
1845 ATMEL AT91 / AT32 MCI DRIVER
1846 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1847 S:      Maintained
1848 F:      drivers/mmc/host/atmel-mci.c
1849 F:      drivers/mmc/host/atmel-mci-regs.h
1850
1851 ATMEL AT91 / AT32 SERIAL DRIVER
1852 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1853 S:      Supported
1854 F:      drivers/tty/serial/atmel_serial.c
1855
1856 ATMEL Audio ALSA driver
1857 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1858 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1859 S:      Supported
1860 F:      sound/soc/atmel
1861
1862 ATMEL DMA DRIVER
1863 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1865 S:      Supported
1866 F:      drivers/dma/at_hdmac.c
1867 F:      drivers/dma/at_hdmac_regs.h
1868 F:      include/linux/platform_data/dma-atmel.h
1869
1870 ATMEL XDMA DRIVER
1871 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1872 L:      linux-arm-kernel@lists.infradead.org
1873 L:      dmaengine@vger.kernel.org
1874 S:      Supported
1875 F:      drivers/dma/at_xdmac.c
1876
1877 ATMEL I2C DRIVER
1878 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1879 L:      linux-i2c@vger.kernel.org
1880 S:      Supported
1881 F:      drivers/i2c/busses/i2c-at91.c
1882
1883 ATMEL ISI DRIVER
1884 M:      Josh Wu <josh.wu@atmel.com>
1885 L:      linux-media@vger.kernel.org
1886 S:      Supported
1887 F:      drivers/media/platform/soc_camera/atmel-isi.c
1888 F:      include/media/atmel-isi.h
1889
1890 ATMEL LCDFB DRIVER
1891 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1892 L:      linux-fbdev@vger.kernel.org
1893 S:      Maintained
1894 F:      drivers/video/fbdev/atmel_lcdfb.c
1895 F:      include/video/atmel_lcdc.h
1896
1897 ATMEL MACB ETHERNET DRIVER
1898 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1899 S:      Supported
1900 F:      drivers/net/ethernet/cadence/
1901
1902 ATMEL NAND DRIVER
1903 M:      Josh Wu <josh.wu@atmel.com>
1904 L:      linux-mtd@lists.infradead.org
1905 S:      Supported
1906 F:      drivers/mtd/nand/atmel_nand*
1907
1908 ATMEL SDMMC DRIVER
1909 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1910 L:      linux-mmc@vger.kernel.org
1911 S:      Supported
1912 F:      drivers/mmc/host/sdhci-of-at91.c
1913
1914 ATMEL SPI DRIVER
1915 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1916 S:      Supported
1917 F:      drivers/spi/spi-atmel.*
1918
1919 ATMEL SSC DRIVER
1920 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Supported
1923 F:      drivers/misc/atmel-ssc.c
1924 F:      include/linux/atmel-ssc.h
1925
1926 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1927 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1929 S:      Supported
1930 F:      drivers/misc/atmel_tclib.c
1931 F:      drivers/clocksource/tcb_clksrc.c
1932
1933 ATMEL USBA UDC DRIVER
1934 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1935 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1936 S:      Supported
1937 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1938
1939 ATMEL WIRELESS DRIVER
1940 M:      Simon Kelley <simon@thekelleys.org.uk>
1941 L:      linux-wireless@vger.kernel.org
1942 W:      http://www.thekelleys.org.uk/atmel
1943 W:      http://atmelwlandriver.sourceforge.net/
1944 S:      Maintained
1945 F:      drivers/net/wireless/atmel*
1946
1947 ATMEL MAXTOUCH DRIVER
1948 M:      Nick Dyer <nick.dyer@itdev.co.uk>
1949 T:      git git://github.com/atmel-maxtouch/linux.git
1950 S:      Supported
1951 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1952 F:      drivers/input/touchscreen/atmel_mxt_ts.c
1953 F:      include/linux/platform_data/atmel_mxt_ts.h
1954
1955 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1956 M:      Bradley Grove <linuxdrivers@attotech.com>
1957 L:      linux-scsi@vger.kernel.org
1958 W:      http://www.attotech.com
1959 S:      Supported
1960 F:      drivers/scsi/esas2r
1961
1962 ATUSB IEEE 802.15.4 RADIO DRIVER
1963 M:      Stefan Schmidt <stefan@osg.samsung.com>
1964 L:      linux-wpan@vger.kernel.org
1965 S:      Maintained
1966 F:      drivers/net/ieee802154/atusb.c
1967 F:      drivers/net/ieee802154/atusb.h
1968 F:      drivers/net/ieee802154/at86rf230.h
1969
1970 AUDIT SUBSYSTEM
1971 M:      Paul Moore <paul@paul-moore.com>
1972 M:      Eric Paris <eparis@redhat.com>
1973 L:      linux-audit@redhat.com (moderated for non-subscribers)
1974 W:      http://people.redhat.com/sgrubb/audit/
1975 T:      git git://git.infradead.org/users/pcmoore/audit
1976 S:      Maintained
1977 F:      include/linux/audit.h
1978 F:      include/uapi/linux/audit.h
1979 F:      kernel/audit*
1980
1981 AUXILIARY DISPLAY DRIVERS
1982 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1983 W:      http://miguelojeda.es/auxdisplay.htm
1984 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1985 S:      Maintained
1986 F:      drivers/auxdisplay/
1987 F:      include/linux/cfag12864b.h
1988
1989 AVR32 ARCHITECTURE
1990 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1991 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1992 W:      http://www.atmel.com/products/AVR32/
1993 W:      http://mirror.egtvedt.no/avr32linux.org/
1994 W:      http://avrfreaks.net/
1995 S:      Maintained
1996 F:      arch/avr32/
1997
1998 AVR32/AT32AP MACHINE SUPPORT
1999 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2000 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2001 S:      Maintained
2002 F:      arch/avr32/mach-at32ap/
2003
2004 AX.25 NETWORK LAYER
2005 M:      Ralf Baechle <ralf@linux-mips.org>
2006 L:      linux-hams@vger.kernel.org
2007 W:      http://www.linux-ax25.org/
2008 S:      Maintained
2009 F:      include/uapi/linux/ax25.h
2010 F:      include/net/ax25.h
2011 F:      net/ax25/
2012
2013 AZ6007 DVB DRIVER
2014 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015 L:      linux-media@vger.kernel.org
2016 W:      http://linuxtv.org
2017 T:      git git://linuxtv.org/media_tree.git
2018 S:      Maintained
2019 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2020
2021 AZTECH FM RADIO RECEIVER DRIVER
2022 M:      Hans Verkuil <hverkuil@xs4all.nl>
2023 L:      linux-media@vger.kernel.org
2024 T:      git git://linuxtv.org/media_tree.git
2025 W:      http://linuxtv.org
2026 S:      Maintained
2027 F:      drivers/media/radio/radio-aztech*
2028
2029 B43 WIRELESS DRIVER
2030 L:      linux-wireless@vger.kernel.org
2031 L:      b43-dev@lists.infradead.org
2032 W:      http://wireless.kernel.org/en/users/Drivers/b43
2033 S:      Odd Fixes
2034 F:      drivers/net/wireless/b43/
2035
2036 B43LEGACY WIRELESS DRIVER
2037 M:      Larry Finger <Larry.Finger@lwfinger.net>
2038 L:      linux-wireless@vger.kernel.org
2039 L:      b43-dev@lists.infradead.org
2040 W:      http://wireless.kernel.org/en/users/Drivers/b43
2041 S:      Maintained
2042 F:      drivers/net/wireless/b43legacy/
2043
2044 BACKLIGHT CLASS/SUBSYSTEM
2045 M:      Jingoo Han <jingoohan1@gmail.com>
2046 M:      Lee Jones <lee.jones@linaro.org>
2047 S:      Maintained
2048 F:      drivers/video/backlight/
2049 F:      include/linux/backlight.h
2050
2051 BATMAN ADVANCED
2052 M:      Marek Lindner <mareklindner@neomailbox.ch>
2053 M:      Simon Wunderlich <sw@simonwunderlich.de>
2054 M:      Antonio Quartulli <antonio@meshcoding.com>
2055 L:      b.a.t.m.a.n@lists.open-mesh.org
2056 W:      http://www.open-mesh.org/
2057 S:      Maintained
2058 F:      net/batman-adv/
2059
2060 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2061 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2062 L:      linux-hams@vger.kernel.org
2063 W:      http://www.baycom.org/~tom/ham/ham.html
2064 S:      Maintained
2065 F:      drivers/net/hamradio/baycom*
2066
2067 BCACHE (BLOCK LAYER CACHE)
2068 M:      Kent Overstreet <kent.overstreet@gmail.com>
2069 L:      linux-bcache@vger.kernel.org
2070 W:      http://bcache.evilpiepirate.org
2071 S:      Maintained
2072 F:      drivers/md/bcache/
2073
2074 BDISP ST MEDIA DRIVER
2075 M:      Fabien Dessenne <fabien.dessenne@st.com>
2076 L:      linux-media@vger.kernel.org
2077 T:      git git://linuxtv.org/media_tree.git
2078 W:      http://linuxtv.org
2079 S:      Supported
2080 F:      drivers/media/platform/sti/bdisp
2081
2082 BEFS FILE SYSTEM
2083 S:      Orphan
2084 F:      Documentation/filesystems/befs.txt
2085 F:      fs/befs/
2086
2087 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2088 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2089 L:      netdev@vger.kernel.org
2090 S:      Maintained
2091 F:      drivers/net/ethernet/ec_bhf.c
2092
2093 BFS FILE SYSTEM
2094 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2095 S:      Maintained
2096 F:      Documentation/filesystems/bfs.txt
2097 F:      fs/bfs/
2098 F:      include/uapi/linux/bfs_fs.h
2099
2100 BLACKFIN ARCHITECTURE
2101 M:      Steven Miao <realmz6@gmail.com>
2102 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2103 T:      git git://git.code.sf.net/p/adi-linux/code
2104 W:      http://blackfin.uclinux.org
2105 S:      Supported
2106 F:      arch/blackfin/
2107
2108 BLACKFIN EMAC DRIVER
2109 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2110 W:      http://blackfin.uclinux.org
2111 S:      Supported
2112 F:      drivers/net/ethernet/adi/
2113
2114 BLACKFIN RTC DRIVER
2115 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2116 W:      http://blackfin.uclinux.org
2117 S:      Supported
2118 F:      drivers/rtc/rtc-bfin.c
2119
2120 BLACKFIN SDH DRIVER
2121 M:      Sonic Zhang <sonic.zhang@analog.com>
2122 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2123 W:      http://blackfin.uclinux.org
2124 S:      Supported
2125 F:      drivers/mmc/host/bfin_sdh.c
2126
2127 BLACKFIN SERIAL DRIVER
2128 M:      Sonic Zhang <sonic.zhang@analog.com>
2129 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2130 W:      http://blackfin.uclinux.org
2131 S:      Supported
2132 F:      drivers/tty/serial/bfin_uart.c
2133
2134 BLACKFIN WATCHDOG DRIVER
2135 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2136 W:      http://blackfin.uclinux.org
2137 S:      Supported
2138 F:      drivers/watchdog/bfin_wdt.c
2139
2140 BLACKFIN I2C TWI DRIVER
2141 M:      Sonic Zhang <sonic.zhang@analog.com>
2142 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2143 W:      http://blackfin.uclinux.org/
2144 S:      Supported
2145 F:      drivers/i2c/busses/i2c-bfin-twi.c
2146
2147 BLACKFIN MEDIA DRIVER
2148 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2149 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2150 W:      http://blackfin.uclinux.org/
2151 S:      Supported
2152 F:      drivers/media/platform/blackfin/
2153 F:      drivers/media/i2c/adv7183*
2154 F:      drivers/media/i2c/vs6624*
2155
2156 BLINKM RGB LED DRIVER
2157 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2158 S:      Maintained
2159 F:      drivers/leds/leds-blinkm.c
2160
2161 BLOCK LAYER
2162 M:      Jens Axboe <axboe@kernel.dk>
2163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2164 S:      Maintained
2165 F:      block/
2166 F:      kernel/trace/blktrace.c
2167
2168 BLOCK2MTD DRIVER
2169 M:      Joern Engel <joern@lazybastard.org>
2170 L:      linux-mtd@lists.infradead.org
2171 S:      Maintained
2172 F:      drivers/mtd/devices/block2mtd.c
2173
2174 BLUETOOTH DRIVERS
2175 M:      Marcel Holtmann <marcel@holtmann.org>
2176 M:      Gustavo Padovan <gustavo@padovan.org>
2177 M:      Johan Hedberg <johan.hedberg@gmail.com>
2178 L:      linux-bluetooth@vger.kernel.org
2179 W:      http://www.bluez.org/
2180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2182 S:      Maintained
2183 F:      drivers/bluetooth/
2184
2185 BLUETOOTH SUBSYSTEM
2186 M:      Marcel Holtmann <marcel@holtmann.org>
2187 M:      Gustavo Padovan <gustavo@padovan.org>
2188 M:      Johan Hedberg <johan.hedberg@gmail.com>
2189 L:      linux-bluetooth@vger.kernel.org
2190 W:      http://www.bluez.org/
2191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2193 S:      Maintained
2194 F:      net/bluetooth/
2195 F:      include/net/bluetooth/
2196
2197 BONDING DRIVER
2198 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2199 M:      Veaceslav Falico <vfalico@gmail.com>
2200 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2201 L:      netdev@vger.kernel.org
2202 W:      http://sourceforge.net/projects/bonding/
2203 S:      Supported
2204 F:      drivers/net/bonding/
2205 F:      include/uapi/linux/if_bonding.h
2206
2207 BPF (Safe dynamic programs and tools)
2208 M:      Alexei Starovoitov <ast@kernel.org>
2209 L:      netdev@vger.kernel.org
2210 L:      linux-kernel@vger.kernel.org
2211 S:      Supported
2212 F:      kernel/bpf/
2213
2214 BROADCOM B44 10/100 ETHERNET DRIVER
2215 M:      Gary Zambrano <zambrano@broadcom.com>
2216 L:      netdev@vger.kernel.org
2217 S:      Supported
2218 F:      drivers/net/ethernet/broadcom/b44.*
2219
2220 BROADCOM GENET ETHERNET DRIVER
2221 M:      Florian Fainelli <f.fainelli@gmail.com>
2222 L:      netdev@vger.kernel.org
2223 S:      Supported
2224 F:      drivers/net/ethernet/broadcom/genet/
2225
2226 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2227 M:      Sony Chacko <sony.chacko@qlogic.com>
2228 M:      Dept-HSGLinuxNICDev@qlogic.com
2229 L:      netdev@vger.kernel.org
2230 S:      Supported
2231 F:      drivers/net/ethernet/broadcom/bnx2.*
2232 F:      drivers/net/ethernet/broadcom/bnx2_*
2233
2234 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2235 M:      Ariel Elior <ariel.elior@qlogic.com>
2236 L:      netdev@vger.kernel.org
2237 S:      Supported
2238 F:      drivers/net/ethernet/broadcom/bnx2x/
2239
2240 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2241 M:      Florian Fainelli <f.fainelli@gmail.com>
2242 M:      Ray Jui <rjui@broadcom.com>
2243 M:      Scott Branden <sbranden@broadcom.com>
2244 L:      bcm-kernel-feedback-list@broadcom.com
2245 T:      git git://github.com/broadcom/mach-bcm
2246 S:      Maintained
2247 F:      arch/arm/mach-bcm/
2248 F:      arch/arm/boot/dts/bcm113*
2249 F:      arch/arm/boot/dts/bcm216*
2250 F:      arch/arm/boot/dts/bcm281*
2251 F:      arch/arm/configs/bcm_defconfig
2252 F:      drivers/mmc/host/sdhci-bcm-kona.c
2253 F:      drivers/clocksource/bcm_kona_timer.c
2254
2255 BROADCOM BCM2835 ARM ARCHITECTURE
2256 M:      Stephen Warren <swarren@wwwdotorg.org>
2257 M:      Lee Jones <lee@kernel.org>
2258 M:      Eric Anholt <eric@anholt.net>
2259 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2260 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2262 S:      Maintained
2263 N:      bcm2835
2264
2265 BROADCOM BCM33XX MIPS ARCHITECTURE
2266 M:      Kevin Cernekee <cernekee@gmail.com>
2267 L:      linux-mips@linux-mips.org
2268 S:      Maintained
2269 F:      arch/mips/bcm3384/*
2270 F:      arch/mips/include/asm/mach-bcm3384/*
2271 F:      arch/mips/kernel/*bmips*
2272
2273 BROADCOM BCM47XX MIPS ARCHITECTURE
2274 M:      Hauke Mehrtens <hauke@hauke-m.de>
2275 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2276 L:      linux-mips@linux-mips.org
2277 S:      Maintained
2278 F:      arch/mips/bcm47xx/*
2279 F:      arch/mips/include/asm/mach-bcm47xx/*
2280
2281 BROADCOM BCM5301X ARM ARCHITECTURE
2282 M:      Hauke Mehrtens <hauke@hauke-m.de>
2283 L:      linux-arm-kernel@lists.infradead.org
2284 S:      Maintained
2285 F:      arch/arm/mach-bcm/bcm_5301x.c
2286 F:      arch/arm/boot/dts/bcm5301x.dtsi
2287 F:      arch/arm/boot/dts/bcm470*
2288
2289 BROADCOM BCM63XX ARM ARCHITECTURE
2290 M:      Florian Fainelli <f.fainelli@gmail.com>
2291 L:      linux-arm-kernel@lists.infradead.org
2292 T:      git git://github.com/broadcom/arm-bcm63xx.git
2293 S:      Maintained
2294 F:      arch/arm/mach-bcm/bcm63xx.c
2295 F:      arch/arm/include/debug/bcm63xx.S
2296
2297 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2298 M:      Kevin Cernekee <cernekee@gmail.com>
2299 L:      linux-usb@vger.kernel.org
2300 S:      Maintained
2301 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2302
2303 BROADCOM BCM7XXX ARM ARCHITECTURE
2304 M:      Brian Norris <computersforpeace@gmail.com>
2305 M:      Gregory Fong <gregory.0xf0@gmail.com>
2306 M:      Florian Fainelli <f.fainelli@gmail.com>
2307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2308 T:      git git://github.com/broadcom/stblinux.git
2309 S:      Maintained
2310 F:      arch/arm/mach-bcm/*brcmstb*
2311 F:      arch/arm/boot/dts/bcm7*.dts*
2312 F:      drivers/bus/brcmstb_gisb.c
2313 N:      brcmstb
2314
2315 BROADCOM BMIPS MIPS ARCHITECTURE
2316 M:      Kevin Cernekee <cernekee@gmail.com>
2317 M:      Florian Fainelli <f.fainelli@gmail.com>
2318 L:      linux-mips@linux-mips.org
2319 T:      git git://github.com/broadcom/stblinux.git
2320 S:      Maintained
2321 F:      arch/mips/bmips/*
2322 F:      arch/mips/include/asm/mach-bmips/*
2323 F:      arch/mips/kernel/*bmips*
2324 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2325 F:      drivers/irqchip/irq-bcm7*
2326 F:      drivers/irqchip/irq-brcmstb*
2327
2328 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2329 M:      Prashant Sreedharan <prashant@broadcom.com>
2330 M:      Michael Chan <mchan@broadcom.com>
2331 L:      netdev@vger.kernel.org
2332 S:      Supported
2333 F:      drivers/net/ethernet/broadcom/tg3.*
2334
2335 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2336 M:      Brett Rudley <brudley@broadcom.com>
2337 M:      Arend van Spriel <arend@broadcom.com>
2338 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2339 M:      Hante Meuleman <meuleman@broadcom.com>
2340 L:      linux-wireless@vger.kernel.org
2341 L:      brcm80211-dev-list@broadcom.com
2342 S:      Supported
2343 F:      drivers/net/wireless/brcm80211/
2344
2345 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2346 M:      QLogic-Storage-Upstream@qlogic.com
2347 L:      linux-scsi@vger.kernel.org
2348 S:      Supported
2349 F:      drivers/scsi/bnx2fc/
2350
2351 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2352 M:      QLogic-Storage-Upstream@qlogic.com
2353 L:      linux-scsi@vger.kernel.org
2354 S:      Supported
2355 F:      drivers/scsi/bnx2i/
2356
2357 BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2358 M:      Ray Jui <rjui@broadcom.com>
2359 M:      Scott Branden <sbranden@broadcom.com>
2360 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2361 L:      bcm-kernel-feedback-list@broadcom.com
2362 T:      git git://github.com/broadcom/cygnus-linux.git
2363 S:      Maintained
2364 N:      iproc
2365 N:      cygnus
2366 N:      bcm9113*
2367 N:      bcm9583*
2368 N:      bcm583*
2369 N:      bcm113*
2370
2371 BROADCOM BRCMSTB GPIO DRIVER
2372 M:      Gregory Fong <gregory.0xf0@gmail.com>
2373 L:      bcm-kernel-feedback-list@broadcom.com>
2374 S:      Supported
2375 F:      drivers/gpio/gpio-brcmstb.c
2376 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2377
2378 BROADCOM KONA GPIO DRIVER
2379 M:      Ray Jui <rjui@broadcom.com>
2380 L:      bcm-kernel-feedback-list@broadcom.com
2381 S:      Supported
2382 F:      drivers/gpio/gpio-bcm-kona.c
2383 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2384
2385 BROADCOM NVRAM DRIVER
2386 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2387 L:      linux-mips@linux-mips.org
2388 S:      Maintained
2389 F:      drivers/firmware/broadcom/*
2390
2391 BROADCOM STB NAND FLASH DRIVER
2392 M:      Brian Norris <computersforpeace@gmail.com>
2393 L:      linux-mtd@lists.infradead.org
2394 S:      Maintained
2395 F:      drivers/mtd/nand/brcmnand/
2396
2397 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2398 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2399 L:      linux-wireless@vger.kernel.org
2400 S:      Maintained
2401 F:      drivers/bcma/
2402 F:      include/linux/bcma/
2403
2404 BROADCOM SYSTEMPORT ETHERNET DRIVER
2405 M:      Florian Fainelli <f.fainelli@gmail.com>
2406 L:      netdev@vger.kernel.org
2407 S:      Supported
2408 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2409
2410 BROCADE BFA FC SCSI DRIVER
2411 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2412 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2413 L:      linux-scsi@vger.kernel.org
2414 S:      Supported
2415 F:      drivers/scsi/bfa/
2416
2417 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2418 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2419 L:      netdev@vger.kernel.org
2420 S:      Supported
2421 F:      drivers/net/ethernet/brocade/bna/
2422
2423 BSG (block layer generic sg v4 driver)
2424 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2425 L:      linux-scsi@vger.kernel.org
2426 S:      Supported
2427 F:      block/bsg.c
2428 F:      include/linux/bsg.h
2429 F:      include/uapi/linux/bsg.h
2430
2431 BT87X AUDIO DRIVER
2432 M:      Clemens Ladisch <clemens@ladisch.de>
2433 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2434 T:      git git://git.alsa-project.org/alsa-kernel.git
2435 S:      Maintained
2436 F:      Documentation/sound/alsa/Bt87x.txt
2437 F:      sound/pci/bt87x.c
2438
2439 BT8XXGPIO DRIVER
2440 M:      Michael Buesch <m@bues.ch>
2441 W:      http://bu3sch.de/btgpio.php
2442 S:      Maintained
2443 F:      drivers/gpio/gpio-bt8xx.c
2444
2445 BTRFS FILE SYSTEM
2446 M:      Chris Mason <clm@fb.com>
2447 M:      Josef Bacik <jbacik@fb.com>
2448 M:      David Sterba <dsterba@suse.com>
2449 L:      linux-btrfs@vger.kernel.org
2450 W:      http://btrfs.wiki.kernel.org/
2451 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2453 S:      Maintained
2454 F:      Documentation/filesystems/btrfs.txt
2455 F:      fs/btrfs/
2456
2457 BTTV VIDEO4LINUX DRIVER
2458 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2459 L:      linux-media@vger.kernel.org
2460 W:      http://linuxtv.org
2461 T:      git git://linuxtv.org/media_tree.git
2462 S:      Odd fixes
2463 F:      Documentation/video4linux/bttv/
2464 F:      drivers/media/pci/bt8xx/bttv*
2465
2466 BUSLOGIC SCSI DRIVER
2467 M:      Khalid Aziz <khalid@gonehiking.org>
2468 L:      linux-scsi@vger.kernel.org
2469 S:      Maintained
2470 F:      drivers/scsi/BusLogic.*
2471 F:      drivers/scsi/FlashPoint.*
2472
2473 C-MEDIA CMI8788 DRIVER
2474 M:      Clemens Ladisch <clemens@ladisch.de>
2475 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2476 T:      git git://git.alsa-project.org/alsa-kernel.git
2477 S:      Maintained
2478 F:      sound/pci/oxygen/
2479
2480 C6X ARCHITECTURE
2481 M:      Mark Salter <msalter@redhat.com>
2482 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2483 L:      linux-c6x-dev@linux-c6x.org
2484 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2485 S:      Maintained
2486 F:      arch/c6x/
2487
2488 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2489 M:      David Howells <dhowells@redhat.com>
2490 L:      linux-cachefs@redhat.com
2491 S:      Supported
2492 F:      Documentation/filesystems/caching/cachefiles.txt
2493 F:      fs/cachefiles/
2494
2495 CADET FM/AM RADIO RECEIVER DRIVER
2496 M:      Hans Verkuil <hverkuil@xs4all.nl>
2497 L:      linux-media@vger.kernel.org
2498 T:      git git://linuxtv.org/media_tree.git
2499 W:      http://linuxtv.org
2500 S:      Maintained
2501 F:      drivers/media/radio/radio-cadet*
2502
2503 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2504 M:      Jonathan Corbet <corbet@lwn.net>
2505 L:      linux-media@vger.kernel.org
2506 T:      git git://linuxtv.org/media_tree.git
2507 S:      Maintained
2508 F:      Documentation/video4linux/cafe_ccic
2509 F:      drivers/media/platform/marvell-ccic/
2510
2511 CAIF NETWORK LAYER
2512 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2513 L:      netdev@vger.kernel.org
2514 S:      Supported
2515 F:      Documentation/networking/caif/
2516 F:      drivers/net/caif/
2517 F:      include/uapi/linux/caif/
2518 F:      include/net/caif/
2519 F:      net/caif/
2520
2521 CALGARY x86-64 IOMMU
2522 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2523 M:      "Jon D. Mason" <jdmason@kudzu.us>
2524 L:      discuss@x86-64.org
2525 S:      Maintained
2526 F:      arch/x86/kernel/pci-calgary_64.c
2527 F:      arch/x86/kernel/tce_64.c
2528 F:      arch/x86/include/asm/calgary.h
2529 F:      arch/x86/include/asm/tce.h
2530
2531 CAN NETWORK LAYER
2532 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2533 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2534 L:      linux-can@vger.kernel.org
2535 W:      https://github.com/linux-can
2536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2538 S:      Maintained
2539 F:      Documentation/networking/can.txt
2540 F:      net/can/
2541 F:      include/linux/can/core.h
2542 F:      include/uapi/linux/can.h
2543 F:      include/uapi/linux/can/bcm.h
2544 F:      include/uapi/linux/can/raw.h
2545 F:      include/uapi/linux/can/gw.h
2546
2547 CAN NETWORK DRIVERS
2548 M:      Wolfgang Grandegger <wg@grandegger.com>
2549 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2550 L:      linux-can@vger.kernel.org
2551 W:      https://github.com/linux-can
2552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2554 S:      Maintained
2555 F:      drivers/net/can/
2556 F:      include/linux/can/dev.h
2557 F:      include/linux/can/platform/
2558 F:      include/uapi/linux/can/error.h
2559 F:      include/uapi/linux/can/netlink.h
2560
2561 CAPABILITIES
2562 M:      Serge Hallyn <serge.hallyn@canonical.com>
2563 L:      linux-security-module@vger.kernel.org
2564 S:      Supported
2565 F:      include/linux/capability.h
2566 F:      include/uapi/linux/capability.h
2567 F:      security/commoncap.c
2568 F:      kernel/capability.c
2569
2570 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2571 M:      Kevin Tsai <ktsai@capellamicro.com>
2572 S:      Maintained
2573 F:      drivers/iio/light/cm*
2574 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2575
2576 CAVIUM LIQUIDIO NETWORK DRIVER
2577 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2578 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2579 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2580 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2581 L:     netdev@vger.kernel.org
2582 W:     http://www.cavium.com
2583 S:     Supported
2584 F:     drivers/net/ethernet/cavium/
2585 F:     drivers/net/ethernet/cavium/liquidio/
2586
2587 CC2520 IEEE-802.15.4 RADIO DRIVER
2588 M:      Varka Bhadram <varkabhadram@gmail.com>
2589 L:      linux-wpan@vger.kernel.org
2590 S:      Maintained
2591 F:      drivers/net/ieee802154/cc2520.c
2592 F:      include/linux/spi/cc2520.h
2593 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2594
2595 CELL BROADBAND ENGINE ARCHITECTURE
2596 M:      Arnd Bergmann <arnd@arndb.de>
2597 L:      linuxppc-dev@lists.ozlabs.org
2598 W:      http://www.ibm.com/developerworks/power/cell/
2599 S:      Supported
2600 F:      arch/powerpc/include/asm/cell*.h
2601 F:      arch/powerpc/include/asm/spu*.h
2602 F:      arch/powerpc/include/uapi/asm/spu*.h
2603 F:      arch/powerpc/oprofile/*cell*
2604 F:      arch/powerpc/platforms/cell/
2605
2606 CEPH COMMON CODE (LIBCEPH)
2607 M:      Ilya Dryomov <idryomov@gmail.com>
2608 M:      "Yan, Zheng" <zyan@redhat.com>
2609 M:      Sage Weil <sage@redhat.com>
2610 L:      ceph-devel@vger.kernel.org
2611 W:      http://ceph.com/
2612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2613 T:      git git://github.com/ceph/ceph-client.git
2614 S:      Supported
2615 F:      net/ceph/
2616 F:      include/linux/ceph/
2617 F:      include/linux/crush/
2618
2619 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2620 M:      "Yan, Zheng" <zyan@redhat.com>
2621 M:      Sage Weil <sage@redhat.com>
2622 M:      Ilya Dryomov <idryomov@gmail.com>
2623 L:      ceph-devel@vger.kernel.org
2624 W:      http://ceph.com/
2625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2626 T:      git git://github.com/ceph/ceph-client.git
2627 S:      Supported
2628 F:      Documentation/filesystems/ceph.txt
2629 F:      fs/ceph/
2630
2631 CERTIFICATE HANDLING:
2632 M:      David Howells <dhowells@redhat.com>
2633 M:      David Woodhouse <dwmw2@infradead.org>
2634 L:      keyrings@linux-nfs.org
2635 S:      Maintained
2636 F:      Documentation/module-signing.txt
2637 F:      certs/
2638 F:      scripts/extract-cert.c
2639
2640 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2641 L:      linux-usb@vger.kernel.org
2642 S:      Orphan
2643 F:      Documentation/usb/WUSB-Design-overview.txt
2644 F:      Documentation/usb/wusb-cbaf
2645 F:      drivers/usb/host/hwa-hc.c
2646 F:      drivers/usb/host/whci/
2647 F:      drivers/usb/wusbcore/
2648 F:      include/linux/usb/wusb*
2649
2650 CFAG12864B LCD DRIVER
2651 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2652 W:      http://miguelojeda.es/auxdisplay.htm
2653 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2654 S:      Maintained
2655 F:      drivers/auxdisplay/cfag12864b.c
2656 F:      include/linux/cfag12864b.h
2657
2658 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2659 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2660 W:      http://miguelojeda.es/auxdisplay.htm
2661 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2662 S:      Maintained
2663 F:      drivers/auxdisplay/cfag12864bfb.c
2664 F:      include/linux/cfag12864b.h
2665
2666 CFG80211 and NL80211
2667 M:      Johannes Berg <johannes@sipsolutions.net>
2668 L:      linux-wireless@vger.kernel.org
2669 W:      http://wireless.kernel.org/
2670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2672 S:      Maintained
2673 F:      include/uapi/linux/nl80211.h
2674 F:      include/net/cfg80211.h
2675 F:      net/wireless/*
2676 X:      net/wireless/wext*
2677
2678 CHAR and MISC DRIVERS
2679 M:      Arnd Bergmann <arnd@arndb.de>
2680 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2682 S:      Supported
2683 F:      drivers/char/*
2684 F:      drivers/misc/*
2685 F:      include/linux/miscdevice.h
2686
2687 CHECKPATCH
2688 M:      Andy Whitcroft <apw@canonical.com>
2689 M:      Joe Perches <joe@perches.com>
2690 S:      Maintained
2691 F:      scripts/checkpatch.pl
2692
2693 CHINESE DOCUMENTATION
2694 M:      Harry Wei <harryxiyou@gmail.com>
2695 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2696 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2697 S:      Maintained
2698 F:      Documentation/zh_CN/
2699
2700 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2701 M:      Peter Chen <Peter.Chen@freescale.com>
2702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2703 L:      linux-usb@vger.kernel.org
2704 S:      Maintained
2705 F:      drivers/usb/chipidea/
2706
2707 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2708 M:      Hans de Goede <hdegoede@redhat.com>
2709 L:      linux-input@vger.kernel.org
2710 S:      Maintained
2711 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2712 F:      drivers/input/touchscreen/chipone_icn8318.c
2713
2714 CHROME HARDWARE PLATFORM SUPPORT
2715 M:      Olof Johansson <olof@lixom.net>
2716 S:      Maintained
2717 F:      drivers/platform/chrome/
2718
2719 CISCO VIC ETHERNET NIC DRIVER
2720 M:      Christian Benvenuti <benve@cisco.com>
2721 M:      Sujith Sankar <ssujith@cisco.com>
2722 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2723 M:      Neel Patel <neepatel@cisco.com>
2724 S:      Supported
2725 F:      drivers/net/ethernet/cisco/enic/
2726
2727 CISCO VIC LOW LATENCY NIC DRIVER
2728 M:      Upinder Malhi <umalhi@cisco.com>
2729 S:      Supported
2730 F:      drivers/infiniband/hw/usnic
2731
2732 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2733 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2734 L:      netdev@vger.kernel.org
2735 S:      Maintained
2736 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2737
2738 CIRRUS LOGIC AUDIO CODEC DRIVERS
2739 M:      Brian Austin <brian.austin@cirrus.com>
2740 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2741 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2742 S:      Maintained
2743 F:      sound/soc/codecs/cs*
2744
2745 CLEANCACHE API
2746 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2747 L:      linux-kernel@vger.kernel.org
2748 S:      Maintained
2749 F:      mm/cleancache.c
2750 F:      include/linux/cleancache.h
2751
2752 CLK API
2753 M:      Russell King <linux@arm.linux.org.uk>
2754 L:      linux-clk@vger.kernel.org
2755 S:      Maintained
2756 F:      include/linux/clk.h
2757
2758 CLOCKSOURCE, CLOCKEVENT DRIVERS
2759 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2760 M:      Thomas Gleixner <tglx@linutronix.de>
2761 L:      linux-kernel@vger.kernel.org
2762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2763 S:      Supported
2764 F:      drivers/clocksource
2765
2766 CISCO FCOE HBA DRIVER
2767 M:      Hiral Patel <hiralpat@cisco.com>
2768 M:      Suma Ramars <sramars@cisco.com>
2769 M:      Brian Uchino <buchino@cisco.com>
2770 L:      linux-scsi@vger.kernel.org
2771 S:      Supported
2772 F:      drivers/scsi/fnic/
2773
2774 CISCO SCSI HBA DRIVER
2775 M:      Narsimhulu Musini <nmusini@cisco.com>
2776 M:      Sesidhar Baddela <sebaddel@cisco.com>
2777 L:      linux-scsi@vger.kernel.org
2778 S:      Supported
2779 F:      drivers/scsi/snic/
2780
2781 CMPC ACPI DRIVER
2782 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2783 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2784 L:      platform-driver-x86@vger.kernel.org
2785 S:      Supported
2786 F:      drivers/platform/x86/classmate-laptop.c
2787
2788 COBALT MEDIA DRIVER
2789 M:      Hans Verkuil <hans.verkuil@cisco.com>
2790 L:      linux-media@vger.kernel.org
2791 T:      git git://linuxtv.org/media_tree.git
2792 W:      http://linuxtv.org
2793 S:      Supported
2794 F:      drivers/media/pci/cobalt/
2795
2796 COCCINELLE/Semantic Patches (SmPL)
2797 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2798 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2799 M:      Nicolas Palix <nicolas.palix@imag.fr>
2800 M:      Michal Marek <mmarek@suse.com>
2801 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2803 W:      http://coccinelle.lip6.fr/
2804 S:      Supported
2805 F:      Documentation/coccinelle.txt
2806 F:      scripts/coccinelle/
2807 F:      scripts/coccicheck
2808
2809 CODA FILE SYSTEM
2810 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2811 M:      coda@cs.cmu.edu
2812 L:      codalist@coda.cs.cmu.edu
2813 W:      http://www.coda.cs.cmu.edu/
2814 S:      Maintained
2815 F:      Documentation/filesystems/coda.txt
2816 F:      fs/coda/
2817 F:      include/linux/coda*.h
2818 F:      include/uapi/linux/coda*.h
2819
2820 CODA V4L2 MEM2MEM DRIVER
2821 M:      Philipp Zabel <p.zabel@pengutronix.de>
2822 L:      linux-media@vger.kernel.org
2823 S:      Maintained
2824 F:      Documentation/devicetree/bindings/media/coda.txt
2825 F:      drivers/media/platform/coda/
2826
2827 COMMON CLK FRAMEWORK
2828 M:      Michael Turquette <mturquette@baylibre.com>
2829 M:      Stephen Boyd <sboyd@codeaurora.org>
2830 L:      linux-clk@vger.kernel.org
2831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2832 S:      Maintained
2833 F:      drivers/clk/
2834 X:      drivers/clk/clkdev.c
2835 F:      include/linux/clk-pr*
2836 F:      include/linux/clk/
2837
2838 COMMON INTERNET FILE SYSTEM (CIFS)
2839 M:      Steve French <sfrench@samba.org>
2840 L:      linux-cifs@vger.kernel.org
2841 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2842 W:      http://linux-cifs.samba.org/
2843 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2844 S:      Supported
2845 F:      Documentation/filesystems/cifs/
2846 F:      fs/cifs/
2847
2848 COMPACTPCI HOTPLUG CORE
2849 M:      Scott Murray <scott@spiteful.org>
2850 L:      linux-pci@vger.kernel.org
2851 S:      Maintained
2852 F:      drivers/pci/hotplug/cpci_hotplug*
2853
2854 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2855 M:      Scott Murray <scott@spiteful.org>
2856 L:      linux-pci@vger.kernel.org
2857 S:      Maintained
2858 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2859
2860 COMPACTPCI HOTPLUG GENERIC DRIVER
2861 M:      Scott Murray <scott@spiteful.org>
2862 L:      linux-pci@vger.kernel.org
2863 S:      Maintained
2864 F:      drivers/pci/hotplug/cpcihp_generic.c
2865
2866 COMPAL LAPTOP SUPPORT
2867 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2868 L:      platform-driver-x86@vger.kernel.org
2869 S:      Maintained
2870 F:      drivers/platform/x86/compal-laptop.c
2871
2872 CONEXANT ACCESSRUNNER USB DRIVER
2873 M:      Simon Arlott <cxacru@fire.lp0.eu>
2874 L:      accessrunner-general@lists.sourceforge.net
2875 W:      http://accessrunner.sourceforge.net/
2876 S:      Maintained
2877 F:      drivers/usb/atm/cxacru.c
2878
2879 CONFIGFS
2880 M:      Joel Becker <jlbec@evilplan.org>
2881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2882 S:      Supported
2883 F:      fs/configfs/
2884 F:      include/linux/configfs.h
2885
2886 CONNECTOR
2887 M:      Evgeniy Polyakov <zbr@ioremap.net>
2888 L:      netdev@vger.kernel.org
2889 S:      Maintained
2890 F:      drivers/connector/
2891
2892 CONTROL GROUP (CGROUP)
2893 M:      Tejun Heo <tj@kernel.org>
2894 M:      Li Zefan <lizefan@huawei.com>
2895 M:      Johannes Weiner <hannes@cmpxchg.org>
2896 L:      cgroups@vger.kernel.org
2897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2898 S:      Maintained
2899 F:      Documentation/cgroups/
2900 F:      include/linux/cgroup*
2901 F:      kernel/cgroup*
2902
2903 CONTROL GROUP - CPUSET
2904 M:      Li Zefan <lizefan@huawei.com>
2905 L:      cgroups@vger.kernel.org
2906 W:      http://www.bullopensource.org/cpuset/
2907 W:      http://oss.sgi.com/projects/cpusets/
2908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2909 S:      Maintained
2910 F:      Documentation/cgroups/cpusets.txt
2911 F:      include/linux/cpuset.h
2912 F:      kernel/cpuset.c
2913
2914 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2915 M:      Johannes Weiner <hannes@cmpxchg.org>
2916 M:      Michal Hocko <mhocko@kernel.org>
2917 L:      cgroups@vger.kernel.org
2918 L:      linux-mm@kvack.org
2919 S:      Maintained
2920 F:      mm/memcontrol.c
2921 F:      mm/swap_cgroup.c
2922
2923 CORETEMP HARDWARE MONITORING DRIVER
2924 M:      Fenghua Yu <fenghua.yu@intel.com>
2925 L:      lm-sensors@lm-sensors.org
2926 S:      Maintained
2927 F:      Documentation/hwmon/coretemp
2928 F:      drivers/hwmon/coretemp.c
2929
2930 COSA/SRP SYNC SERIAL DRIVER
2931 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2932 W:      http://www.fi.muni.cz/~kas/cosa/
2933 S:      Maintained
2934 F:      drivers/net/wan/cosa*
2935
2936 CPMAC ETHERNET DRIVER
2937 M:      Florian Fainelli <florian@openwrt.org>
2938 L:      netdev@vger.kernel.org
2939 S:      Maintained
2940 F:      drivers/net/ethernet/ti/cpmac.c
2941
2942 CPU FREQUENCY DRIVERS
2943 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2944 M:      Viresh Kumar <viresh.kumar@linaro.org>
2945 L:      linux-pm@vger.kernel.org
2946 S:      Maintained
2947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2948 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2949 F:      drivers/cpufreq/
2950 F:      include/linux/cpufreq.h
2951
2952 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2953 M:      Viresh Kumar <viresh.kumar@linaro.org>
2954 M:      Sudeep Holla <sudeep.holla@arm.com>
2955 L:      linux-pm@vger.kernel.org
2956 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2957 S:      Maintained
2958 F:      drivers/cpufreq/arm_big_little.h
2959 F:      drivers/cpufreq/arm_big_little.c
2960 F:      drivers/cpufreq/arm_big_little_dt.c
2961
2962 CPUIDLE DRIVER - ARM BIG LITTLE
2963 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2964 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2965 L:      linux-pm@vger.kernel.org
2966 L:      linux-arm-kernel@lists.infradead.org
2967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2968 S:      Maintained
2969 F:      drivers/cpuidle/cpuidle-big_little.c
2970
2971 CPUIDLE DRIVER - ARM EXYNOS
2972 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2973 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2974 M:      Kukjin Kim <kgene@kernel.org>
2975 L:      linux-pm@vger.kernel.org
2976 L:      linux-samsung-soc@vger.kernel.org
2977 S:      Supported
2978 F:      drivers/cpuidle/cpuidle-exynos.c
2979 F:      arch/arm/mach-exynos/pm.c
2980
2981 CPUIDLE DRIVERS
2982 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2983 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2984 L:      linux-pm@vger.kernel.org
2985 S:      Maintained
2986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2987 F:      drivers/cpuidle/*
2988 F:      include/linux/cpuidle.h
2989
2990 CPUID/MSR DRIVER
2991 M:      "H. Peter Anvin" <hpa@zytor.com>
2992 S:      Maintained
2993 F:      arch/x86/kernel/cpuid.c
2994 F:      arch/x86/kernel/msr.c
2995
2996 CPU POWER MONITORING SUBSYSTEM
2997 M:      Thomas Renninger <trenn@suse.com>
2998 L:      linux-pm@vger.kernel.org
2999 S:      Maintained
3000 F:      tools/power/cpupower/
3001
3002 CRAMFS FILESYSTEM
3003 W:      http://sourceforge.net/projects/cramfs/
3004 S:      Orphan / Obsolete
3005 F:      Documentation/filesystems/cramfs.txt
3006 F:      fs/cramfs/
3007
3008 CRIS PORT
3009 M:      Mikael Starvik <starvik@axis.com>
3010 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3011 L:      linux-cris-kernel@axis.com
3012 W:      http://developer.axis.com
3013 S:      Maintained
3014 F:      arch/cris/
3015 F:      drivers/tty/serial/crisv10.*
3016
3017 CRYPTO API
3018 M:      Herbert Xu <herbert@gondor.apana.org.au>
3019 M:      "David S. Miller" <davem@davemloft.net>
3020 L:      linux-crypto@vger.kernel.org
3021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3022 S:      Maintained
3023 F:      Documentation/crypto/
3024 F:      Documentation/DocBook/crypto-API.tmpl
3025 F:      arch/*/crypto/
3026 F:      crypto/
3027 F:      drivers/crypto/
3028 F:      include/crypto/
3029
3030 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3031 M:      Neil Horman <nhorman@tuxdriver.com>
3032 L:      linux-crypto@vger.kernel.org
3033 S:      Maintained
3034 F:      crypto/ansi_cprng.c
3035 F:      crypto/rng.c
3036
3037 CS5535 Audio ALSA driver
3038 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3039 S:      Maintained
3040 F:      sound/pci/cs5535audio/
3041
3042 CW1200 WLAN driver
3043 M:      Solomon Peachy <pizza@shaftnet.org>
3044 S:      Maintained
3045 F:      drivers/net/wireless/cw1200/
3046
3047 CX18 VIDEO4LINUX DRIVER
3048 M:      Andy Walls <awalls@md.metrocast.net>
3049 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3050 L:      linux-media@vger.kernel.org
3051 T:      git git://linuxtv.org/media_tree.git
3052 W:      http://linuxtv.org
3053 W:      http://www.ivtvdriver.org/index.php/Cx18
3054 S:      Maintained
3055 F:      Documentation/video4linux/cx18.txt
3056 F:      drivers/media/pci/cx18/
3057 F:      include/uapi/linux/ivtv*
3058
3059 CX2341X MPEG ENCODER HELPER MODULE
3060 M:      Hans Verkuil <hverkuil@xs4all.nl>
3061 L:      linux-media@vger.kernel.org
3062 T:      git git://linuxtv.org/media_tree.git
3063 W:      http://linuxtv.org
3064 S:      Maintained
3065 F:      drivers/media/common/cx2341x*
3066 F:      include/media/cx2341x*
3067
3068 CX24120 MEDIA DRIVER
3069 M:      Jemma Denson <jdenson@gmail.com>
3070 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3071 L:      linux-media@vger.kernel.org
3072 W:      http://linuxtv.org/
3073 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3074 S:      Maintained
3075 F:      drivers/media/dvb-frontends/cx24120*
3076
3077 CX88 VIDEO4LINUX DRIVER
3078 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3079 L:      linux-media@vger.kernel.org
3080 W:      http://linuxtv.org
3081 T:      git git://linuxtv.org/media_tree.git
3082 S:      Odd fixes
3083 F:      Documentation/video4linux/cx88/
3084 F:      drivers/media/pci/cx88/
3085
3086 CXD2820R MEDIA DRIVER
3087 M:      Antti Palosaari <crope@iki.fi>
3088 L:      linux-media@vger.kernel.org
3089 W:      http://linuxtv.org/
3090 W:      http://palosaari.fi/linux/
3091 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3092 T:      git git://linuxtv.org/anttip/media_tree.git
3093 S:      Maintained
3094 F:      drivers/media/dvb-frontends/cxd2820r*
3095
3096 CXGB3 ETHERNET DRIVER (CXGB3)
3097 M:      Santosh Raspatur <santosh@chelsio.com>
3098 L:      netdev@vger.kernel.org
3099 W:      http://www.chelsio.com
3100 S:      Supported
3101 F:      drivers/net/ethernet/chelsio/cxgb3/
3102
3103 CXGB3 ISCSI DRIVER (CXGB3I)
3104 M:      Karen Xie <kxie@chelsio.com>
3105 L:      linux-scsi@vger.kernel.org
3106 W:      http://www.chelsio.com
3107 S:      Supported
3108 F:      drivers/scsi/cxgbi/cxgb3i
3109
3110 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3111 M:      Steve Wise <swise@chelsio.com>
3112 L:      linux-rdma@vger.kernel.org
3113 W:      http://www.openfabrics.org
3114 S:      Supported
3115 F:      drivers/infiniband/hw/cxgb3/
3116
3117 CXGB4 ETHERNET DRIVER (CXGB4)
3118 M:      Hariprasad S <hariprasad@chelsio.com>
3119 L:      netdev@vger.kernel.org
3120 W:      http://www.chelsio.com
3121 S:      Supported
3122 F:      drivers/net/ethernet/chelsio/cxgb4/
3123
3124 CXGB4 ISCSI DRIVER (CXGB4I)
3125 M:      Karen Xie <kxie@chelsio.com>
3126 L:      linux-scsi@vger.kernel.org
3127 W:      http://www.chelsio.com
3128 S:      Supported
3129 F:      drivers/scsi/cxgbi/cxgb4i
3130
3131 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3132 M:      Steve Wise <swise@chelsio.com>
3133 L:      linux-rdma@vger.kernel.org
3134 W:      http://www.openfabrics.org
3135 S:      Supported
3136 F:      drivers/infiniband/hw/cxgb4/
3137
3138 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3139 M:      Casey Leedom <leedom@chelsio.com>
3140 L:      netdev@vger.kernel.org
3141 W:      http://www.chelsio.com
3142 S:      Supported
3143 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3144
3145 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3146 M:      Ian Munsie <imunsie@au1.ibm.com>
3147 M:      Michael Neuling <mikey@neuling.org>
3148 L:      linuxppc-dev@lists.ozlabs.org
3149 S:      Supported
3150 F:      drivers/misc/cxl/
3151 F:      include/misc/cxl*
3152 F:      include/uapi/misc/cxl.h
3153 F:      Documentation/powerpc/cxl.txt
3154 F:      Documentation/powerpc/cxl.txt
3155 F:      Documentation/ABI/testing/sysfs-class-cxl
3156
3157 STMMAC ETHERNET DRIVER
3158 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3159 L:      netdev@vger.kernel.org
3160 W:      http://www.stlinux.com
3161 S:      Supported
3162 F:      drivers/net/ethernet/stmicro/stmmac/
3163
3164 CYBERPRO FB DRIVER
3165 M:      Russell King <linux@arm.linux.org.uk>
3166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3167 W:      http://www.arm.linux.org.uk/
3168 S:      Maintained
3169 F:      drivers/video/fbdev/cyber2000fb.*
3170
3171 CYCLADES ASYNC MUX DRIVER
3172 W:      http://www.cyclades.com/
3173 S:      Orphan
3174 F:      drivers/tty/cyclades.c
3175 F:      include/linux/cyclades.h
3176 F:      include/uapi/linux/cyclades.h
3177
3178 CYCLADES PC300 DRIVER
3179 W:      http://www.cyclades.com/
3180 S:      Orphan
3181 F:      drivers/net/wan/pc300*
3182
3183 CYPRESS_FIRMWARE MEDIA DRIVER
3184 M:      Antti Palosaari <crope@iki.fi>
3185 L:      linux-media@vger.kernel.org
3186 W:      http://linuxtv.org/
3187 W:      http://palosaari.fi/linux/
3188 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3189 T:      git git://linuxtv.org/anttip/media_tree.git
3190 S:      Maintained
3191 F:      drivers/media/common/cypress_firmware*
3192
3193 CYTTSP TOUCHSCREEN DRIVER
3194 M:      Ferruh Yigit <fery@cypress.com>
3195 L:      linux-input@vger.kernel.org
3196 S:      Supported
3197 F:      drivers/input/touchscreen/cyttsp*
3198 F:      include/linux/input/cyttsp.h
3199
3200 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3201 M:      Joshua Kinard <kumba@gentoo.org>
3202 S:      Maintained
3203 F:      drivers/rtc/rtc-ds1685.c
3204 F:      include/linux/rtc/ds1685.h
3205
3206 DAMA SLAVE for AX.25
3207 M:      Joerg Reuter <jreuter@yaina.de>
3208 W:      http://yaina.de/jreuter/
3209 W:      http://www.qsl.net/dl1bke/
3210 L:      linux-hams@vger.kernel.org
3211 S:      Maintained
3212 F:      net/ax25/af_ax25.c
3213 F:      net/ax25/ax25_dev.c
3214 F:      net/ax25/ax25_ds_*
3215 F:      net/ax25/ax25_in.c
3216 F:      net/ax25/ax25_out.c
3217 F:      net/ax25/ax25_timer.c
3218 F:      net/ax25/sysctl_net_ax25.c
3219
3220 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3221 L:      netdev@vger.kernel.org
3222 S:      Orphan
3223 F:      Documentation/networking/dmfe.txt
3224 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3225
3226 DC390/AM53C974 SCSI driver
3227 M:      Hannes Reinecke <hare@suse.com>
3228 L:      linux-scsi@vger.kernel.org
3229 S:      Maintained
3230 F:      drivers/scsi/am53c974.c
3231
3232 DC395x SCSI driver
3233 M:      Oliver Neukum <oliver@neukum.org>
3234 M:      Ali Akcaagac <aliakc@web.de>
3235 M:      Jamie Lenehan <lenehan@twibble.org>
3236 L:      dc395x@twibble.org
3237 W:      http://twibble.org/dist/dc395x/
3238 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3239 S:      Maintained
3240 F:      Documentation/scsi/dc395x.txt
3241 F:      drivers/scsi/dc395x.*
3242
3243 DCCP PROTOCOL
3244 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3245 L:      dccp@vger.kernel.org
3246 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3247 S:      Maintained
3248 F:      include/linux/dccp.h
3249 F:      include/uapi/linux/dccp.h
3250 F:      include/linux/tfrc.h
3251 F:      net/dccp/
3252
3253 DECnet NETWORK LAYER
3254 W:      http://linux-decnet.sourceforge.net
3255 L:      linux-decnet-user@lists.sourceforge.net
3256 S:      Orphan
3257 F:      Documentation/networking/decnet.txt
3258 F:      net/decnet/
3259
3260 DECSTATION PLATFORM SUPPORT
3261 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3262 L:      linux-mips@linux-mips.org
3263 W:      http://www.linux-mips.org/wiki/DECstation
3264 S:      Maintained
3265 F:      arch/mips/dec/
3266 F:      arch/mips/include/asm/dec/
3267 F:      arch/mips/include/asm/mach-dec/
3268
3269 DEFXX FDDI NETWORK DRIVER
3270 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3271 S:      Maintained
3272 F:      drivers/net/fddi/defxx.*
3273
3274 DELL LAPTOP DRIVER
3275 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3276 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3277 L:      platform-driver-x86@vger.kernel.org
3278 S:      Maintained
3279 F:      drivers/platform/x86/dell-laptop.c
3280
3281 DELL LAPTOP RBTN DRIVER
3282 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3283 S:      Maintained
3284 F:      drivers/platform/x86/dell-rbtn.*
3285
3286 DELL LAPTOP FREEFALL DRIVER
3287 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3288 S:      Maintained
3289 F:      drivers/platform/x86/dell-smo8800.c
3290
3291 DELL LAPTOP SMM DRIVER
3292 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3293 S:      Maintained
3294 F:      drivers/hwmon/dell-smm-hwmon.c
3295 F:      include/uapi/linux/i8k.h
3296
3297 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3298 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3299 S:      Maintained
3300 F:      Documentation/dcdbas.txt
3301 F:      drivers/firmware/dcdbas.*
3302
3303 DELL WMI EXTRAS DRIVER
3304 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3305 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3306 S:      Maintained
3307 F:      drivers/platform/x86/dell-wmi.c
3308
3309 DESIGNWARE USB2 DRD IP DRIVER
3310 M:      John Youn <johnyoun@synopsys.com>
3311 L:      linux-usb@vger.kernel.org
3312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3313 S:      Maintained
3314 F:      drivers/usb/dwc2/
3315
3316 DESIGNWARE USB3 DRD IP DRIVER
3317 M:      Felipe Balbi <balbi@ti.com>
3318 L:      linux-usb@vger.kernel.org
3319 L:      linux-omap@vger.kernel.org
3320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3321 S:      Maintained
3322 F:      drivers/usb/dwc3/
3323
3324 DEVICE COREDUMP (DEV_COREDUMP)
3325 M:      Johannes Berg <johannes@sipsolutions.net>
3326 L:      linux-kernel@vger.kernel.org
3327 S:      Maintained
3328 F:      drivers/base/devcoredump.c
3329 F:      include/linux/devcoredump.h
3330
3331 DEVICE FREQUENCY (DEVFREQ)
3332 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3333 M:      Kyungmin Park <kyungmin.park@samsung.com>
3334 L:      linux-pm@vger.kernel.org
3335 S:      Maintained
3336 F:      drivers/devfreq/
3337
3338 DEVICE NUMBER REGISTRY
3339 M:      Torben Mathiasen <device@lanana.org>
3340 W:      http://lanana.org/docs/device-list/index.html
3341 S:      Maintained
3342
3343 DEVICE-MAPPER  (LVM)
3344 M:      Alasdair Kergon <agk@redhat.com>
3345 M:      Mike Snitzer <snitzer@redhat.com>
3346 M:      dm-devel@redhat.com
3347 L:      dm-devel@redhat.com
3348 W:      http://sources.redhat.com/dm
3349 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3351 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3352 S:      Maintained
3353 F:      Documentation/device-mapper/
3354 F:      drivers/md/dm*
3355 F:      drivers/md/persistent-data/
3356 F:      include/linux/device-mapper.h
3357 F:      include/linux/dm-*.h
3358 F:      include/uapi/linux/dm-*.h
3359
3360 DIALOG SEMICONDUCTOR DRIVERS
3361 M:      Support Opensource <support.opensource@diasemi.com>
3362 W:      http://www.dialog-semiconductor.com/products
3363 S:      Supported
3364 F:      Documentation/hwmon/da90??
3365 F:      drivers/gpio/gpio-da90??.c
3366 F:      drivers/hwmon/da90??-hwmon.c
3367 F:      drivers/iio/adc/da91??-*.c
3368 F:      drivers/input/misc/da90??_onkey.c
3369 F:      drivers/input/touchscreen/da9052_tsi.c
3370 F:      drivers/leds/leds-da90??.c
3371 F:      drivers/mfd/da903x.c
3372 F:      drivers/mfd/da90??-*.c
3373 F:      drivers/mfd/da91??-*.c
3374 F:      drivers/power/da9052-battery.c
3375 F:      drivers/power/da91??-*.c
3376 F:      drivers/regulator/da903x.c
3377 F:      drivers/regulator/da9???-regulator.[ch]
3378 F:      drivers/rtc/rtc-da90??.c
3379 F:      drivers/video/backlight/da90??_bl.c
3380 F:      drivers/watchdog/da90??_wdt.c
3381 F:      include/linux/mfd/da903x.h
3382 F:      include/linux/mfd/da9052/
3383 F:      include/linux/mfd/da9055/
3384 F:      include/linux/mfd/da9063/
3385 F:      include/linux/mfd/da9150/
3386 F:      include/sound/da[79]*.h
3387 F:      sound/soc/codecs/da[79]*.[ch]
3388
3389 DIGI NEO AND CLASSIC PCI PRODUCTS
3390 M:      Lidza Louina <lidza.louina@gmail.com>
3391 M:      Mark Hounschell <markh@compro.net>
3392 L:      driverdev-devel@linuxdriverproject.org
3393 S:      Maintained
3394 F:      drivers/staging/dgnc/
3395
3396 DIGI EPCA PCI PRODUCTS
3397 M:      Lidza Louina <lidza.louina@gmail.com>
3398 M:      Mark Hounschell <markh@compro.net>
3399 M:      Daeseok Youn <daeseok.youn@gmail.com>
3400 L:      driverdev-devel@linuxdriverproject.org
3401 S:      Maintained
3402 F:      drivers/staging/dgap/
3403
3404 DIOLAN U2C-12 I2C DRIVER
3405 M:      Guenter Roeck <linux@roeck-us.net>
3406 L:      linux-i2c@vger.kernel.org
3407 S:      Maintained
3408 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3409
3410 DIRECT ACCESS (DAX)
3411 M:      Matthew Wilcox <willy@linux.intel.com>
3412 L:      linux-fsdevel@vger.kernel.org
3413 S:      Supported
3414 F:      fs/dax.c
3415
3416 DIRECTORY NOTIFICATION (DNOTIFY)
3417 M:      Eric Paris <eparis@parisplace.org>
3418 S:      Maintained
3419 F:      Documentation/filesystems/dnotify.txt
3420 F:      fs/notify/dnotify/
3421 F:      include/linux/dnotify.h
3422
3423 DISK GEOMETRY AND PARTITION HANDLING
3424 M:      Andries Brouwer <aeb@cwi.nl>
3425 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3426 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3427 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3428 S:      Maintained
3429
3430 DISKQUOTA
3431 M:      Jan Kara <jack@suse.com>
3432 S:      Maintained
3433 F:      Documentation/filesystems/quota.txt
3434 F:      fs/quota/
3435 F:      include/linux/quota*.h
3436 F:      include/uapi/linux/quota*.h
3437
3438 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3439 M:      Bernie Thompson <bernie@plugable.com>
3440 L:      linux-fbdev@vger.kernel.org
3441 S:      Maintained
3442 W:      http://plugable.com/category/projects/udlfb/
3443 F:      drivers/video/fbdev/udlfb.c
3444 F:      include/video/udlfb.h
3445 F:      Documentation/fb/udlfb.txt
3446
3447 DISTRIBUTED LOCK MANAGER (DLM)
3448 M:      Christine Caulfield <ccaulfie@redhat.com>
3449 M:      David Teigland <teigland@redhat.com>
3450 L:      cluster-devel@redhat.com
3451 W:      http://sources.redhat.com/cluster/
3452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3453 S:      Supported
3454 F:      fs/dlm/
3455
3456 DMA BUFFER SHARING FRAMEWORK
3457 M:      Sumit Semwal <sumit.semwal@linaro.org>
3458 S:      Maintained
3459 L:      linux-media@vger.kernel.org
3460 L:      dri-devel@lists.freedesktop.org
3461 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3462 F:      drivers/dma-buf/
3463 F:      include/linux/dma-buf*
3464 F:      include/linux/reservation.h
3465 F:      include/linux/*fence.h
3466 F:      Documentation/dma-buf-sharing.txt
3467 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3468
3469 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3470 M:      Vinod Koul <vinod.koul@intel.com>
3471 L:      dmaengine@vger.kernel.org
3472 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3473 S:      Maintained
3474 F:      drivers/dma/
3475 F:      include/linux/dmaengine.h
3476 F:      Documentation/dmaengine/
3477 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3478
3479 DME1737 HARDWARE MONITOR DRIVER
3480 M:      Juerg Haefliger <juergh@gmail.com>
3481 L:      lm-sensors@lm-sensors.org
3482 S:      Maintained
3483 F:      Documentation/hwmon/dme1737
3484 F:      drivers/hwmon/dme1737.c
3485
3486 DMI/SMBIOS SUPPORT
3487 M:      Jean Delvare <jdelvare@suse.com>
3488 S:      Maintained
3489 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3490 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3491 F:      drivers/firmware/dmi-id.c
3492 F:      drivers/firmware/dmi_scan.c
3493 F:      include/linux/dmi.h
3494
3495 DOCUMENTATION
3496 M:      Jonathan Corbet <corbet@lwn.net>
3497 L:      linux-doc@vger.kernel.org
3498 S:      Maintained
3499 F:      Documentation/
3500 X:      Documentation/ABI/
3501 X:      Documentation/devicetree/
3502 X:      Documentation/acpi
3503 X:      Documentation/power
3504 X:      Documentation/spi
3505 X:      Documentation/DocBook/media
3506 T:      git git://git.lwn.net/linux-2.6.git docs-next
3507
3508 DOUBLETALK DRIVER
3509 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3510 L:      blinux-list@redhat.com
3511 S:      Maintained
3512 F:      drivers/char/dtlk.c
3513 F:      include/linux/dtlk.h
3514
3515 DPT_I2O SCSI RAID DRIVER
3516 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3517 L:      linux-scsi@vger.kernel.org
3518 W:      http://www.adaptec.com/
3519 S:      Maintained
3520 F:      drivers/scsi/dpt*
3521 F:      drivers/scsi/dpt/
3522
3523 DRBD DRIVER
3524 P:      Philipp Reisner
3525 P:      Lars Ellenberg
3526 M:      drbd-dev@lists.linbit.com
3527 L:      drbd-user@lists.linbit.com
3528 W:      http://www.drbd.org
3529 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3530 T:      git git://git.drbd.org/drbd-8.3.git
3531 S:      Supported
3532 F:      drivers/block/drbd/
3533 F:      lib/lru_cache.c
3534 F:      Documentation/blockdev/drbd/
3535
3536 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3537 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3539 S:      Supported
3540 F:      Documentation/kobject.txt
3541 F:      drivers/base/
3542 F:      fs/debugfs/
3543 F:      fs/kernfs/
3544 F:      fs/sysfs/
3545 F:      include/linux/debugfs.h
3546 F:      include/linux/kobj*
3547 F:      lib/kobj*
3548
3549 DRM DRIVERS
3550 M:      David Airlie <airlied@linux.ie>
3551 L:      dri-devel@lists.freedesktop.org
3552 T:      git git://people.freedesktop.org/~airlied/linux
3553 S:      Maintained
3554 F:      drivers/gpu/drm/
3555 F:      drivers/gpu/vga/
3556 F:      include/drm/
3557 F:      include/uapi/drm/
3558
3559 RADEON DRM DRIVERS
3560 M:      Alex Deucher <alexander.deucher@amd.com>
3561 M:      Christian König <christian.koenig@amd.com>
3562 L:      dri-devel@lists.freedesktop.org
3563 T:      git git://people.freedesktop.org/~agd5f/linux
3564 S:      Supported
3565 F:      drivers/gpu/drm/radeon/
3566 F:      include/uapi/drm/radeon*
3567
3568 DRM PANEL DRIVERS
3569 M:      Thierry Reding <thierry.reding@gmail.com>
3570 L:      dri-devel@lists.freedesktop.org
3571 T:      git git://anongit.freedesktop.org/tegra/linux.git
3572 S:      Maintained
3573 F:      drivers/gpu/drm/drm_panel.c
3574 F:      drivers/gpu/drm/panel/
3575 F:      include/drm/drm_panel.h
3576 F:      Documentation/devicetree/bindings/panel/
3577
3578 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3579 M:      Daniel Vetter <daniel.vetter@intel.com>
3580 M:      Jani Nikula <jani.nikula@linux.intel.com>
3581 L:      intel-gfx@lists.freedesktop.org
3582 L:      dri-devel@lists.freedesktop.org
3583 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3584 T:      git git://anongit.freedesktop.org/drm-intel
3585 S:      Supported
3586 F:      drivers/gpu/drm/i915/
3587 F:      include/drm/i915*
3588 F:      include/uapi/drm/i915*
3589
3590 DRM DRIVERS FOR EXYNOS
3591 M:      Inki Dae <inki.dae@samsung.com>
3592 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3593 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3594 M:      Kyungmin Park <kyungmin.park@samsung.com>
3595 L:      dri-devel@lists.freedesktop.org
3596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3597 S:      Supported
3598 F:      drivers/gpu/drm/exynos/
3599 F:      include/drm/exynos*
3600 F:      include/uapi/drm/exynos*
3601
3602 DRM DRIVERS FOR FREESCALE DCU
3603 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3604 M:      Alison Wang <alison.wang@freescale.com>
3605 L:      dri-devel@lists.freedesktop.org
3606 S:      Supported
3607 F:      drivers/gpu/drm/fsl-dcu/
3608 F:      Documentation/devicetree/bindings/video/fsl,dcu.txt
3609 F:      Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3610
3611 DRM DRIVERS FOR FREESCALE IMX
3612 M:      Philipp Zabel <p.zabel@pengutronix.de>
3613 L:      dri-devel@lists.freedesktop.org
3614 S:      Maintained
3615 F:      drivers/gpu/drm/imx/
3616 F:      Documentation/devicetree/bindings/drm/imx/
3617
3618 DRM DRIVERS FOR NVIDIA TEGRA
3619 M:      Thierry Reding <thierry.reding@gmail.com>
3620 M:      Terje Bergström <tbergstrom@nvidia.com>
3621 L:      dri-devel@lists.freedesktop.org
3622 L:      linux-tegra@vger.kernel.org
3623 T:      git git://anongit.freedesktop.org/tegra/linux.git
3624 S:      Supported
3625 F:      drivers/gpu/drm/tegra/
3626 F:      drivers/gpu/host1x/
3627 F:      include/linux/host1x.h
3628 F:      include/uapi/drm/tegra_drm.h
3629 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3630
3631 DRM DRIVERS FOR RENESAS
3632 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3633 L:      dri-devel@lists.freedesktop.org
3634 L:      linux-sh@vger.kernel.org
3635 T:      git git://people.freedesktop.org/~airlied/linux
3636 S:      Supported
3637 F:      drivers/gpu/drm/rcar-du/
3638 F:      drivers/gpu/drm/shmobile/
3639 F:      include/linux/platform_data/shmob_drm.h
3640
3641 DRM DRIVERS FOR ROCKCHIP
3642 M:      Mark Yao <mark.yao@rock-chips.com>
3643 L:      dri-devel@lists.freedesktop.org
3644 S:      Maintained
3645 F:      drivers/gpu/drm/rockchip/
3646 F:      Documentation/devicetree/bindings/video/rockchip*
3647
3648 DRM DRIVERS FOR STI
3649 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3650 M:      Vincent Abriou <vincent.abriou@st.com>
3651 L:      dri-devel@lists.freedesktop.org
3652 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3653 S:      Maintained
3654 F:      drivers/gpu/drm/sti
3655 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3656
3657 DSBR100 USB FM RADIO DRIVER
3658 M:      Alexey Klimov <klimov.linux@gmail.com>
3659 L:      linux-media@vger.kernel.org
3660 T:      git git://linuxtv.org/media_tree.git
3661 S:      Maintained
3662 F:      drivers/media/radio/dsbr100.c
3663
3664 DSCC4 DRIVER
3665 M:      Francois Romieu <romieu@fr.zoreil.com>
3666 L:      netdev@vger.kernel.org
3667 S:      Maintained
3668 F:      drivers/net/wan/dscc4.c
3669
3670 DT3155 MEDIA DRIVER
3671 M:      Hans Verkuil <hverkuil@xs4all.nl>
3672 L:      linux-media@vger.kernel.org
3673 T:      git git://linuxtv.org/media_tree.git
3674 W:      http://linuxtv.org
3675 S:      Odd Fixes
3676 F:      drivers/media/pci/dt3155/
3677
3678 DVB_USB_AF9015 MEDIA DRIVER
3679 M:      Antti Palosaari <crope@iki.fi>
3680 L:      linux-media@vger.kernel.org
3681 W:      http://linuxtv.org/
3682 W:      http://palosaari.fi/linux/
3683 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3684 T:      git git://linuxtv.org/anttip/media_tree.git
3685 S:      Maintained
3686 F:      drivers/media/usb/dvb-usb-v2/af9015*
3687
3688 DVB_USB_AF9035 MEDIA DRIVER
3689 M:      Antti Palosaari <crope@iki.fi>
3690 L:      linux-media@vger.kernel.org
3691 W:      http://linuxtv.org/
3692 W:      http://palosaari.fi/linux/
3693 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3694 T:      git git://linuxtv.org/anttip/media_tree.git
3695 S:      Maintained
3696 F:      drivers/media/usb/dvb-usb-v2/af9035*
3697
3698 DVB_USB_ANYSEE MEDIA DRIVER
3699 M:      Antti Palosaari <crope@iki.fi>
3700 L:      linux-media@vger.kernel.org
3701 W:      http://linuxtv.org/
3702 W:      http://palosaari.fi/linux/
3703 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3704 T:      git git://linuxtv.org/anttip/media_tree.git
3705 S:      Maintained
3706 F:      drivers/media/usb/dvb-usb-v2/anysee*
3707
3708 DVB_USB_AU6610 MEDIA DRIVER
3709 M:      Antti Palosaari <crope@iki.fi>
3710 L:      linux-media@vger.kernel.org
3711 W:      http://linuxtv.org/
3712 W:      http://palosaari.fi/linux/
3713 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3714 T:      git git://linuxtv.org/anttip/media_tree.git
3715 S:      Maintained
3716 F:      drivers/media/usb/dvb-usb-v2/au6610*
3717
3718 DVB_USB_CE6230 MEDIA DRIVER
3719 M:      Antti Palosaari <crope@iki.fi>
3720 L:      linux-media@vger.kernel.org
3721 W:      http://linuxtv.org/
3722 W:      http://palosaari.fi/linux/
3723 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3724 T:      git git://linuxtv.org/anttip/media_tree.git
3725 S:      Maintained
3726 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3727
3728 DVB_USB_CXUSB MEDIA DRIVER
3729 M:      Michael Krufky <mkrufky@linuxtv.org>
3730 L:      linux-media@vger.kernel.org
3731 W:      http://linuxtv.org/
3732 W:      http://github.com/mkrufky
3733 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3734 T:      git git://linuxtv.org/media_tree.git
3735 S:      Maintained
3736 F:      drivers/media/usb/dvb-usb/cxusb*
3737
3738 DVB_USB_EC168 MEDIA DRIVER
3739 M:      Antti Palosaari <crope@iki.fi>
3740 L:      linux-media@vger.kernel.org
3741 W:      http://linuxtv.org/
3742 W:      http://palosaari.fi/linux/
3743 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3744 T:      git git://linuxtv.org/anttip/media_tree.git
3745 S:      Maintained
3746 F:      drivers/media/usb/dvb-usb-v2/ec168*
3747
3748 DVB_USB_GL861 MEDIA DRIVER
3749 M:      Antti Palosaari <crope@iki.fi>
3750 L:      linux-media@vger.kernel.org
3751 W:      http://linuxtv.org/
3752 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3753 T:      git git://linuxtv.org/anttip/media_tree.git
3754 S:      Maintained
3755 F:      drivers/media/usb/dvb-usb-v2/gl861*
3756
3757 DVB_USB_MXL111SF MEDIA DRIVER
3758 M:      Michael Krufky <mkrufky@linuxtv.org>
3759 L:      linux-media@vger.kernel.org
3760 W:      http://linuxtv.org/
3761 W:      http://github.com/mkrufky
3762 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3763 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3764 S:      Maintained
3765 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3766
3767 DVB_USB_RTL28XXU MEDIA DRIVER
3768 M:      Antti Palosaari <crope@iki.fi>
3769 L:      linux-media@vger.kernel.org
3770 W:      http://linuxtv.org/
3771 W:      http://palosaari.fi/linux/
3772 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3773 T:      git git://linuxtv.org/anttip/media_tree.git
3774 S:      Maintained
3775 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3776
3777 DVB_USB_V2 MEDIA DRIVER
3778 M:      Antti Palosaari <crope@iki.fi>
3779 L:      linux-media@vger.kernel.org
3780 W:      http://linuxtv.org/
3781 W:      http://palosaari.fi/linux/
3782 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3783 T:      git git://linuxtv.org/anttip/media_tree.git
3784 S:      Maintained
3785 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3786 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3787
3788 DYNAMIC DEBUG
3789 M:      Jason Baron <jbaron@akamai.com>
3790 S:      Maintained
3791 F:      lib/dynamic_debug.c
3792 F:      include/linux/dynamic_debug.h
3793
3794 DZ DECSTATION DZ11 SERIAL DRIVER
3795 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3796 S:      Maintained
3797 F:      drivers/tty/serial/dz.*
3798
3799 E3X0 POWER BUTTON DRIVER
3800 M:      Moritz Fischer <moritz.fischer@ettus.com>
3801 L:      usrp-users@lists.ettus.com
3802 W:      http://www.ettus.com
3803 S:      Supported
3804 F:      drivers/input/misc/e3x0-button.c
3805 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3806
3807 E4000 MEDIA DRIVER
3808 M:      Antti Palosaari <crope@iki.fi>
3809 L:      linux-media@vger.kernel.org
3810 W:      http://linuxtv.org/
3811 W:      http://palosaari.fi/linux/
3812 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3813 T:      git git://linuxtv.org/anttip/media_tree.git
3814 S:      Maintained
3815 F:      drivers/media/tuners/e4000*
3816
3817 EATA ISA/EISA/PCI SCSI DRIVER
3818 M:      Dario Ballabio <ballabio_dario@emc.com>
3819 L:      linux-scsi@vger.kernel.org
3820 S:      Maintained
3821 F:      drivers/scsi/eata.c
3822
3823 EC100 MEDIA DRIVER
3824 M:      Antti Palosaari <crope@iki.fi>
3825 L:      linux-media@vger.kernel.org
3826 W:      http://linuxtv.org/
3827 W:      http://palosaari.fi/linux/
3828 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3829 T:      git git://linuxtv.org/anttip/media_tree.git
3830 S:      Maintained
3831 F:      drivers/media/dvb-frontends/ec100*
3832
3833 ECRYPT FILE SYSTEM
3834 M:      Tyler Hicks <tyhicks@canonical.com>
3835 L:      ecryptfs@vger.kernel.org
3836 W:      http://ecryptfs.org
3837 W:      https://launchpad.net/ecryptfs
3838 S:      Supported
3839 F:      Documentation/filesystems/ecryptfs.txt
3840 F:      fs/ecryptfs/
3841
3842 EDAC-CORE
3843 M:      Doug Thompson <dougthompson@xmission.com>
3844 M:      Borislav Petkov <bp@alien8.de>
3845 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3846 L:      linux-edac@vger.kernel.org
3847 W:      bluesmoke.sourceforge.net
3848 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3849 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3850 S:      Supported
3851 F:      Documentation/edac.txt
3852 F:      drivers/edac/
3853 F:      include/linux/edac.h
3854
3855 EDAC-AMD64
3856 M:      Doug Thompson <dougthompson@xmission.com>
3857 M:      Borislav Petkov <bp@alien8.de>
3858 L:      linux-edac@vger.kernel.org
3859 W:      bluesmoke.sourceforge.net
3860 S:      Maintained
3861 F:      drivers/edac/amd64_edac*
3862
3863 EDAC-CALXEDA
3864 M:      Doug Thompson <dougthompson@xmission.com>
3865 M:      Robert Richter <rric@kernel.org>
3866 L:      linux-edac@vger.kernel.org
3867 W:      bluesmoke.sourceforge.net
3868 S:      Maintained
3869 F:      drivers/edac/highbank*
3870
3871 EDAC-CAVIUM
3872 M:      Ralf Baechle <ralf@linux-mips.org>
3873 M:      David Daney <david.daney@cavium.com>
3874 L:      linux-edac@vger.kernel.org
3875 L:      linux-mips@linux-mips.org
3876 W:      bluesmoke.sourceforge.net
3877 S:      Supported
3878 F:      drivers/edac/octeon_edac*
3879
3880 EDAC-E752X
3881 M:      Mark Gross <mark.gross@intel.com>
3882 M:      Doug Thompson <dougthompson@xmission.com>
3883 L:      linux-edac@vger.kernel.org
3884 W:      bluesmoke.sourceforge.net
3885 S:      Maintained
3886 F:      drivers/edac/e752x_edac.c
3887
3888 EDAC-E7XXX
3889 M:      Doug Thompson <dougthompson@xmission.com>
3890 L:      linux-edac@vger.kernel.org
3891 W:      bluesmoke.sourceforge.net
3892 S:      Maintained
3893 F:      drivers/edac/e7xxx_edac.c
3894
3895 EDAC-GHES
3896 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3897 L:      linux-edac@vger.kernel.org
3898 W:      bluesmoke.sourceforge.net
3899 S:      Maintained
3900 F:      drivers/edac/ghes_edac.c
3901
3902 EDAC-I82443BXGX
3903 M:      Tim Small <tim@buttersideup.com>
3904 L:      linux-edac@vger.kernel.org
3905 W:      bluesmoke.sourceforge.net
3906 S:      Maintained
3907 F:      drivers/edac/i82443bxgx_edac.c
3908
3909 EDAC-I3000
3910 M:      Jason Uhlenkott <juhlenko@akamai.com>
3911 L:      linux-edac@vger.kernel.org
3912 W:      bluesmoke.sourceforge.net
3913 S:      Maintained
3914 F:      drivers/edac/i3000_edac.c
3915
3916 EDAC-I5000
3917 M:      Doug Thompson <dougthompson@xmission.com>
3918 L:      linux-edac@vger.kernel.org
3919 W:      bluesmoke.sourceforge.net
3920 S:      Maintained
3921 F:      drivers/edac/i5000_edac.c
3922
3923 EDAC-I5400
3924 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3925 L:      linux-edac@vger.kernel.org
3926 W:      bluesmoke.sourceforge.net
3927 S:      Maintained
3928 F:      drivers/edac/i5400_edac.c
3929
3930 EDAC-I7300
3931 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3932 L:      linux-edac@vger.kernel.org
3933 W:      bluesmoke.sourceforge.net
3934 S:      Maintained
3935 F:      drivers/edac/i7300_edac.c
3936
3937 EDAC-I7CORE
3938 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3939 L:      linux-edac@vger.kernel.org
3940 W:      bluesmoke.sourceforge.net
3941 S:      Maintained
3942 F:      drivers/edac/i7core_edac.c
3943
3944 EDAC-I82975X
3945 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3946 M:      "Arvind R." <arvino55@gmail.com>
3947 L:      linux-edac@vger.kernel.org
3948 W:      bluesmoke.sourceforge.net
3949 S:      Maintained
3950 F:      drivers/edac/i82975x_edac.c
3951
3952 EDAC-IE31200
3953 M:      Jason Baron <jbaron@akamai.com>
3954 L:      linux-edac@vger.kernel.org
3955 W:      bluesmoke.sourceforge.net
3956 S:      Maintained
3957 F:      drivers/edac/ie31200_edac.c
3958
3959 EDAC-MPC85XX
3960 M:      Johannes Thumshirn <morbidrsa@gmail.com>
3961 L:      linux-edac@vger.kernel.org
3962 W:      bluesmoke.sourceforge.net
3963 S:      Maintained
3964 F:      drivers/edac/mpc85xx_edac.[ch]
3965
3966 EDAC-PASEMI
3967 M:      Egor Martovetsky <egor@pasemi.com>
3968 L:      linux-edac@vger.kernel.org
3969 W:      bluesmoke.sourceforge.net
3970 S:      Maintained
3971 F:      drivers/edac/pasemi_edac.c
3972
3973 EDAC-R82600
3974 M:      Tim Small <tim@buttersideup.com>
3975 L:      linux-edac@vger.kernel.org
3976 W:      bluesmoke.sourceforge.net
3977 S:      Maintained
3978 F:      drivers/edac/r82600_edac.c
3979
3980 EDAC-SBRIDGE
3981 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3982 L:      linux-edac@vger.kernel.org
3983 W:      bluesmoke.sourceforge.net
3984 S:      Maintained
3985 F:      drivers/edac/sb_edac.c
3986
3987 EDAC-XGENE
3988 APPLIED MICRO (APM) X-GENE SOC EDAC
3989 M:     Loc Ho <lho@apm.com>
3990 S:     Supported
3991 F:     drivers/edac/xgene_edac.c
3992 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
3993
3994 EDIROL UA-101/UA-1000 DRIVER
3995 M:      Clemens Ladisch <clemens@ladisch.de>
3996 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3997 T:      git git://git.alsa-project.org/alsa-kernel.git
3998 S:      Maintained
3999 F:      sound/usb/misc/ua101.c
4000
4001 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4002 M:      Matt Fleming <matt.fleming@intel.com>
4003 L:      linux-efi@vger.kernel.org
4004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4005 S:      Maintained
4006 F:      Documentation/efi-stub.txt
4007 F:      arch/ia64/kernel/efi.c
4008 F:      arch/x86/boot/compressed/eboot.[ch]
4009 F:      arch/x86/include/asm/efi.h
4010 F:      arch/x86/platform/efi/*
4011 F:      drivers/firmware/efi/*
4012 F:      include/linux/efi*.h
4013
4014 EFI VARIABLE FILESYSTEM
4015 M:      Matthew Garrett <matthew.garrett@nebula.com>
4016 M:      Jeremy Kerr <jk@ozlabs.org>
4017 M:      Matt Fleming <matt.fleming@intel.com>
4018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4019 L:      linux-efi@vger.kernel.org
4020 S:      Maintained
4021 F:      fs/efivarfs/
4022
4023 EFIFB FRAMEBUFFER DRIVER
4024 L:      linux-fbdev@vger.kernel.org
4025 M:      Peter Jones <pjones@redhat.com>
4026 S:      Maintained
4027 F:      drivers/video/fbdev/efifb.c
4028
4029 EFS FILESYSTEM
4030 W:      http://aeschi.ch.eu.org/efs/
4031 S:      Orphan
4032 F:      fs/efs/
4033
4034 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4035 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4036 M:      Christoph Raisch <raisch@de.ibm.com>
4037 L:      linux-rdma@vger.kernel.org
4038 S:      Supported
4039 F:      drivers/infiniband/hw/ehca/
4040
4041 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4042 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4043 L:      netdev@vger.kernel.org
4044 S:      Maintained
4045 F:      drivers/net/ethernet/ibm/ehea/
4046
4047 EM28XX VIDEO4LINUX DRIVER
4048 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4049 L:      linux-media@vger.kernel.org
4050 W:      http://linuxtv.org
4051 T:      git git://linuxtv.org/media_tree.git
4052 S:      Maintained
4053 F:      drivers/media/usb/em28xx/
4054
4055 EMBEDDED LINUX
4056 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4057 M:      Matt Mackall <mpm@selenic.com>
4058 M:      David Woodhouse <dwmw2@infradead.org>
4059 L:      linux-embedded@vger.kernel.org
4060 S:      Maintained
4061
4062 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4063 M:      James Smart <james.smart@avagotech.com>
4064 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4065 L:      linux-scsi@vger.kernel.org
4066 W:      http://www.avagotech.com
4067 S:      Supported
4068 F:      drivers/scsi/lpfc/
4069
4070 ENE CB710 FLASH CARD READER DRIVER
4071 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4072 S:      Maintained
4073 F:      drivers/misc/cb710/
4074 F:      drivers/mmc/host/cb710-mmc.*
4075 F:      include/linux/cb710.h
4076
4077 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4078 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4079 S:      Maintained
4080 F:      drivers/media/rc/ene_ir.*
4081
4082 ENHANCED ERROR HANDLING (EEH)
4083 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4084 L:      linuxppc-dev@lists.ozlabs.org
4085 S:      Supported
4086 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4087 F:      arch/powerpc/kernel/eeh*.c
4088
4089 EPSON S1D13XXX FRAMEBUFFER DRIVER
4090 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4091 S:      Maintained
4092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4093 F:      drivers/video/fbdev/s1d13xxxfb.c
4094 F:      include/video/s1d13xxxfb.h
4095
4096 ET131X NETWORK DRIVER
4097 M:      Mark Einon <mark.einon@gmail.com>
4098 S:      Odd Fixes
4099 F:      drivers/net/ethernet/agere/
4100
4101 ETHERNET BRIDGE
4102 M:      Stephen Hemminger <stephen@networkplumber.org>
4103 L:      bridge@lists.linux-foundation.org
4104 L:      netdev@vger.kernel.org
4105 W:      http://www.linuxfoundation.org/en/Net:Bridge
4106 S:      Maintained
4107 F:      include/linux/netfilter_bridge/
4108 F:      net/bridge/
4109
4110 ETHERNET PHY LIBRARY
4111 M:      Florian Fainelli <f.fainelli@gmail.com>
4112 L:      netdev@vger.kernel.org
4113 S:      Maintained
4114 F:      include/linux/phy.h
4115 F:      include/linux/phy_fixed.h
4116 F:      drivers/net/phy/
4117 F:      Documentation/networking/phy.txt
4118 F:      drivers/of/of_mdio.c
4119 F:      drivers/of/of_net.c
4120
4121 EXT2 FILE SYSTEM
4122 M:      Jan Kara <jack@suse.com>
4123 L:      linux-ext4@vger.kernel.org
4124 S:      Maintained
4125 F:      Documentation/filesystems/ext2.txt
4126 F:      fs/ext2/
4127 F:      include/linux/ext2*
4128
4129 EXT4 FILE SYSTEM
4130 M:      "Theodore Ts'o" <tytso@mit.edu>
4131 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4132 L:      linux-ext4@vger.kernel.org
4133 W:      http://ext4.wiki.kernel.org
4134 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4135 S:      Maintained
4136 F:      Documentation/filesystems/ext4.txt
4137 F:      fs/ext4/
4138
4139 Extended Verification Module (EVM)
4140 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4141 L:      linux-ima-devel@lists.sourceforge.net
4142 L:      linux-security-module@vger.kernel.org
4143 S:      Supported
4144 F:      security/integrity/evm/
4145
4146 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4147 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4148 M:      Chanwoo Choi <cw00.choi@samsung.com>
4149 L:      linux-kernel@vger.kernel.org
4150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4151 S:      Maintained
4152 F:      drivers/extcon/
4153 F:      Documentation/extcon/
4154
4155 EXYNOS DP DRIVER
4156 M:      Jingoo Han <jingoohan1@gmail.com>
4157 L:      dri-devel@lists.freedesktop.org
4158 S:      Maintained
4159 F:      drivers/gpu/drm/exynos/exynos_dp*
4160
4161 EXYNOS MIPI DISPLAY DRIVERS
4162 M:      Inki Dae <inki.dae@samsung.com>
4163 M:      Donghwa Lee <dh09.lee@samsung.com>
4164 M:      Kyungmin Park <kyungmin.park@samsung.com>
4165 L:      linux-fbdev@vger.kernel.org
4166 S:      Maintained
4167 F:      drivers/video/fbdev/exynos/exynos_mipi*
4168 F:      include/video/exynos_mipi*
4169
4170 F71805F HARDWARE MONITORING DRIVER
4171 M:      Jean Delvare <jdelvare@suse.com>
4172 L:      lm-sensors@lm-sensors.org
4173 S:      Maintained
4174 F:      Documentation/hwmon/f71805f
4175 F:      drivers/hwmon/f71805f.c
4176
4177 FC0011 TUNER DRIVER
4178 M:      Michael Buesch <m@bues.ch>
4179 L:      linux-media@vger.kernel.org
4180 S:      Maintained
4181 F:      drivers/media/tuners/fc0011.h
4182 F:      drivers/media/tuners/fc0011.c
4183
4184 FC2580 MEDIA DRIVER
4185 M:      Antti Palosaari <crope@iki.fi>
4186 L:      linux-media@vger.kernel.org
4187 W:      http://linuxtv.org/
4188 W:      http://palosaari.fi/linux/
4189 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4190 T:      git git://linuxtv.org/anttip/media_tree.git
4191 S:      Maintained
4192 F:      drivers/media/tuners/fc2580*
4193
4194 FANOTIFY
4195 M:      Eric Paris <eparis@redhat.com>
4196 S:      Maintained
4197 F:      fs/notify/fanotify/
4198 F:      include/linux/fanotify.h
4199 F:      include/uapi/linux/fanotify.h
4200
4201 FARSYNC SYNCHRONOUS DRIVER
4202 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4203 W:      http://www.farsite.co.uk/
4204 S:      Supported
4205 F:      drivers/net/wan/farsync.*
4206
4207 FAULT INJECTION SUPPORT
4208 M:      Akinobu Mita <akinobu.mita@gmail.com>
4209 S:      Supported
4210 F:      Documentation/fault-injection/
4211 F:      lib/fault-inject.c
4212
4213 FBTFT Framebuffer drivers
4214 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4215 M:      Noralf Trønnes <noralf@tronnes.org>
4216 S:      Maintained
4217 F:      drivers/staging/fbtft/
4218
4219 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4220 M:      Vasu Dev <vasu.dev@intel.com>
4221 L:      fcoe-devel@open-fcoe.org
4222 W:      www.Open-FCoE.org
4223 S:      Supported
4224 F:      drivers/scsi/libfc/
4225 F:      drivers/scsi/fcoe/
4226 F:      include/scsi/fc/
4227 F:      include/scsi/libfc.h
4228 F:      include/scsi/libfcoe.h
4229 F:      include/uapi/scsi/fc/
4230
4231 FILE LOCKING (flock() and fcntl()/lockf())
4232 M:      Jeff Layton <jlayton@poochiereds.net>
4233 M:      "J. Bruce Fields" <bfields@fieldses.org>
4234 L:      linux-fsdevel@vger.kernel.org
4235 S:      Maintained
4236 F:      include/linux/fcntl.h
4237 F:      include/linux/fs.h
4238 F:      include/uapi/linux/fcntl.h
4239 F:      include/uapi/linux/fs.h
4240 F:      fs/fcntl.c
4241 F:      fs/locks.c
4242
4243 FILESYSTEMS (VFS and infrastructure)
4244 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4245 L:      linux-fsdevel@vger.kernel.org
4246 S:      Maintained
4247 F:      fs/*
4248
4249 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4250 M:      Riku Voipio <riku.voipio@iki.fi>
4251 L:      lm-sensors@lm-sensors.org
4252 S:      Maintained
4253 F:      drivers/hwmon/f75375s.c
4254 F:      include/linux/f75375s.h
4255
4256 FIREWIRE AUDIO DRIVERS
4257 M:      Clemens Ladisch <clemens@ladisch.de>
4258 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4259 T:      git git://git.alsa-project.org/alsa-kernel.git
4260 S:      Maintained
4261 F:      sound/firewire/
4262
4263 FIREWIRE MEDIA DRIVERS (firedtv)
4264 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4265 L:      linux-media@vger.kernel.org
4266 L:      linux1394-devel@lists.sourceforge.net
4267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4268 S:      Maintained
4269 F:      drivers/media/firewire/
4270
4271 FIREWIRE SBP-2 TARGET
4272 M:      Chris Boot <bootc@bootc.net>
4273 L:      linux-scsi@vger.kernel.org
4274 L:      target-devel@vger.kernel.org
4275 L:      linux1394-devel@lists.sourceforge.net
4276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4277 S:      Maintained
4278 F:      drivers/target/sbp/
4279
4280 FIREWIRE SUBSYSTEM
4281 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4282 L:      linux1394-devel@lists.sourceforge.net
4283 W:      http://ieee1394.wiki.kernel.org/
4284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4285 S:      Maintained
4286 F:      drivers/firewire/
4287 F:      include/linux/firewire.h
4288 F:      include/uapi/linux/firewire*.h
4289 F:      tools/firewire/
4290
4291 FIRMWARE LOADER (request_firmware)
4292 M:      Ming Lei <ming.lei@canonical.com>
4293 L:      linux-kernel@vger.kernel.org
4294 S:      Maintained
4295 F:      Documentation/firmware_class/
4296 F:      drivers/base/firmware*.c
4297 F:      include/linux/firmware.h
4298
4299 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4300 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4301 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4302 S:      Maintained
4303 F:      drivers/block/rsxx/
4304
4305 FLOPPY DRIVER
4306 M:      Jiri Kosina <jikos@kernel.org>
4307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4308 S:      Odd fixes
4309 F:      drivers/block/floppy.c
4310
4311 FMC SUBSYSTEM
4312 M:      Alessandro Rubini <rubini@gnudd.com>
4313 W:      http://www.ohwr.org/projects/fmc-bus
4314 S:      Supported
4315 F:      drivers/fmc/
4316 F:      include/linux/fmc*.h
4317 F:      include/linux/ipmi-fru.h
4318 K:      fmc_d.*register
4319
4320 FPU EMULATOR
4321 M:      Bill Metzenthen <billm@melbpc.org.au>
4322 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4323 S:      Maintained
4324 F:      arch/x86/math-emu/
4325
4326 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4327 L:      netdev@vger.kernel.org
4328 S:      Orphan
4329 F:      drivers/net/wan/dlci.c
4330 F:      drivers/net/wan/sdla.c
4331
4332 FRAMEBUFFER LAYER
4333 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4334 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4335 L:      linux-fbdev@vger.kernel.org
4336 W:      http://linux-fbdev.sourceforge.net/
4337 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4339 S:      Maintained
4340 F:      Documentation/fb/
4341 F:      Documentation/devicetree/bindings/fb/
4342 F:      drivers/video/
4343 F:      include/video/
4344 F:      include/linux/fb.h
4345 F:      include/uapi/video/
4346 F:      include/uapi/linux/fb.h
4347
4348 FREESCALE DIU FRAMEBUFFER DRIVER
4349 M:      Timur Tabi <timur@tabi.org>
4350 L:      linux-fbdev@vger.kernel.org
4351 S:      Maintained
4352 F:      drivers/video/fbdev/fsl-diu-fb.*
4353
4354 FREESCALE DMA DRIVER
4355 M:      Li Yang <leoli@freescale.com>
4356 M:      Zhang Wei <zw@zh-kernel.org>
4357 L:      linuxppc-dev@lists.ozlabs.org
4358 S:      Maintained
4359 F:      drivers/dma/fsldma.*
4360
4361 FREESCALE I2C CPM DRIVER
4362 M:      Jochen Friedrich <jochen@scram.de>
4363 L:      linuxppc-dev@lists.ozlabs.org
4364 L:      linux-i2c@vger.kernel.org
4365 S:      Maintained
4366 F:      drivers/i2c/busses/i2c-cpm.c
4367
4368 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4369 M:      Sascha Hauer <kernel@pengutronix.de>
4370 L:      linux-fbdev@vger.kernel.org
4371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4372 S:      Maintained
4373 F:      include/linux/platform_data/video-imxfb.h
4374 F:      drivers/video/fbdev/imxfb.c
4375
4376 FREESCALE QUAD SPI DRIVER
4377 M:      Han Xu <han.xu@freescale.com>
4378 L:      linux-mtd@lists.infradead.org
4379 S:      Maintained
4380 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4381
4382 FREESCALE SOC FS_ENET DRIVER
4383 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4384 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4385 L:      linuxppc-dev@lists.ozlabs.org
4386 L:      netdev@vger.kernel.org
4387 S:      Maintained
4388 F:      drivers/net/ethernet/freescale/fs_enet/
4389 F:      include/linux/fs_enet_pd.h
4390
4391 FREESCALE QUICC ENGINE LIBRARY
4392 L:      linuxppc-dev@lists.ozlabs.org
4393 S:      Orphan
4394 F:      arch/powerpc/sysdev/qe_lib/
4395 F:      arch/powerpc/include/asm/*qe.h
4396
4397 FREESCALE USB PERIPHERAL DRIVERS
4398 M:      Li Yang <leoli@freescale.com>
4399 L:      linux-usb@vger.kernel.org
4400 L:      linuxppc-dev@lists.ozlabs.org
4401 S:      Maintained
4402 F:      drivers/usb/gadget/udc/fsl*
4403
4404 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4405 M:      Li Yang <leoli@freescale.com>
4406 L:      netdev@vger.kernel.org
4407 L:      linuxppc-dev@lists.ozlabs.org
4408 S:      Maintained
4409 F:      drivers/net/ethernet/freescale/ucc_geth*
4410
4411 FREESCALE QUICC ENGINE UCC UART DRIVER
4412 M:      Timur Tabi <timur@tabi.org>
4413 L:      linuxppc-dev@lists.ozlabs.org
4414 S:      Maintained
4415 F:      drivers/tty/serial/ucc_uart.c
4416
4417 FREESCALE SOC SOUND DRIVERS
4418 M:      Timur Tabi <timur@tabi.org>
4419 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4420 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4421 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4422 L:      linuxppc-dev@lists.ozlabs.org
4423 S:      Maintained
4424 F:      sound/soc/fsl/fsl*
4425 F:      sound/soc/fsl/imx*
4426 F:      sound/soc/fsl/mpc8610_hpcd.c
4427
4428 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4429 M:      "J. German Rivera" <German.Rivera@freescale.com>
4430 L:      linux-kernel@vger.kernel.org
4431 S:      Maintained
4432 F:      drivers/staging/fsl-mc/
4433
4434 FREEVXFS FILESYSTEM
4435 M:      Christoph Hellwig <hch@infradead.org>
4436 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4437 S:      Maintained
4438 F:      fs/freevxfs/
4439
4440 FREEZER
4441 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4442 M:      Pavel Machek <pavel@ucw.cz>
4443 L:      linux-pm@vger.kernel.org
4444 S:      Supported
4445 F:      Documentation/power/freezing-of-tasks.txt
4446 F:      include/linux/freezer.h
4447 F:      kernel/freezer.c
4448
4449 FRONTSWAP API
4450 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4451 L:      linux-kernel@vger.kernel.org
4452 S:      Maintained
4453 F:      mm/frontswap.c
4454 F:      include/linux/frontswap.h
4455
4456 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4457 M:      David Howells <dhowells@redhat.com>
4458 L:      linux-cachefs@redhat.com
4459 S:      Supported
4460 F:      Documentation/filesystems/caching/
4461 F:      fs/fscache/
4462 F:      include/linux/fscache*.h
4463
4464 F2FS FILE SYSTEM
4465 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4466 M:      Changman Lee <cm224.lee@samsung.com>
4467 R:      Chao Yu <chao2.yu@samsung.com>
4468 L:      linux-f2fs-devel@lists.sourceforge.net
4469 W:      http://en.wikipedia.org/wiki/F2FS
4470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4471 S:      Maintained
4472 F:      Documentation/filesystems/f2fs.txt
4473 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4474 F:      fs/f2fs/
4475 F:      include/linux/f2fs_fs.h
4476 F:      include/trace/events/f2fs.h
4477
4478 FUJITSU FR-V (FRV) PORT
4479 M:      David Howells <dhowells@redhat.com>
4480 S:      Maintained
4481 F:      arch/frv/
4482
4483 FUJITSU LAPTOP EXTRAS
4484 M:      Jonathan Woithe <jwoithe@just42.net>
4485 L:      platform-driver-x86@vger.kernel.org
4486 S:      Maintained
4487 F:      drivers/platform/x86/fujitsu-laptop.c
4488
4489 FUJITSU M-5MO LS CAMERA ISP DRIVER
4490 M:      Kyungmin Park <kyungmin.park@samsung.com>
4491 M:      Heungjun Kim <riverful.kim@samsung.com>
4492 L:      linux-media@vger.kernel.org
4493 S:      Maintained
4494 F:      drivers/media/i2c/m5mols/
4495 F:      include/media/m5mols.h
4496
4497 FUJITSU TABLET EXTRAS
4498 M:      Robert Gerlach <khnz@gmx.de>
4499 L:      platform-driver-x86@vger.kernel.org
4500 S:      Maintained
4501 F:      drivers/platform/x86/fujitsu-tablet.c
4502
4503 FUSE: FILESYSTEM IN USERSPACE
4504 M:      Miklos Szeredi <miklos@szeredi.hu>
4505 L:      fuse-devel@lists.sourceforge.net
4506 W:      http://fuse.sourceforge.net/
4507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4508 S:      Maintained
4509 F:      fs/fuse/
4510 F:      include/uapi/linux/fuse.h
4511 F:      Documentation/filesystems/fuse.txt
4512
4513 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4514 M:      Rik Faith <faith@cs.unc.edu>
4515 L:      linux-scsi@vger.kernel.org
4516 S:      Odd Fixes (e.g., new signatures)
4517 F:      drivers/scsi/fdomain.*
4518
4519 GCOV BASED KERNEL PROFILING
4520 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4521 S:      Maintained
4522 F:      kernel/gcov/
4523 F:      Documentation/gcov.txt
4524
4525 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4526 M:      Achim Leubner <achim_leubner@adaptec.com>
4527 L:      linux-scsi@vger.kernel.org
4528 W:      http://www.icp-vortex.com/
4529 S:      Supported
4530 F:      drivers/scsi/gdt*
4531
4532 GDB KERNEL DEBUGGING HELPER SCRIPTS
4533 M:      Jan Kiszka <jan.kiszka@siemens.com>
4534 S:      Supported
4535 F:      scripts/gdb/
4536
4537 GEMTEK FM RADIO RECEIVER DRIVER
4538 M:      Hans Verkuil <hverkuil@xs4all.nl>
4539 L:      linux-media@vger.kernel.org
4540 T:      git git://linuxtv.org/media_tree.git
4541 W:      http://linuxtv.org
4542 S:      Maintained
4543 F:      drivers/media/radio/radio-gemtek*
4544
4545 GENERIC GPIO I2C DRIVER
4546 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4547 S:      Supported
4548 F:      drivers/i2c/busses/i2c-gpio.c
4549 F:      include/linux/i2c-gpio.h
4550
4551 GENERIC GPIO I2C MULTIPLEXER DRIVER
4552 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4553 L:      linux-i2c@vger.kernel.org
4554 S:      Supported
4555 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4556 F:      include/linux/i2c-mux-gpio.h
4557 F:      Documentation/i2c/muxes/i2c-mux-gpio
4558
4559 GENERIC HDLC (WAN) DRIVERS
4560 M:      Krzysztof Halasa <khc@pm.waw.pl>
4561 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4562 S:      Maintained
4563 F:      drivers/net/wan/c101.c
4564 F:      drivers/net/wan/hd6457*
4565 F:      drivers/net/wan/hdlc*
4566 F:      drivers/net/wan/n2.c
4567 F:      drivers/net/wan/pc300too.c
4568 F:      drivers/net/wan/pci200syn.c
4569 F:      drivers/net/wan/wanxl*
4570
4571 GENERIC INCLUDE/ASM HEADER FILES
4572 M:      Arnd Bergmann <arnd@arndb.de>
4573 L:      linux-arch@vger.kernel.org
4574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4575 S:      Maintained
4576 F:      include/asm-generic/
4577 F:      include/uapi/asm-generic/
4578
4579 GENERIC PHY FRAMEWORK
4580 M:      Kishon Vijay Abraham I <kishon@ti.com>
4581 L:      linux-kernel@vger.kernel.org
4582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4583 S:      Supported
4584 F:      drivers/phy/
4585 F:      include/linux/phy/
4586
4587 GENERIC PM DOMAINS
4588 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4589 M:      Kevin Hilman <khilman@kernel.org>
4590 M:      Ulf Hansson <ulf.hansson@linaro.org>
4591 L:      linux-pm@vger.kernel.org
4592 S:      Supported
4593 F:      drivers/base/power/domain*.c
4594 F:      include/linux/pm_domain.h
4595
4596 GENERIC UIO DRIVER FOR PCI DEVICES
4597 M:      "Michael S. Tsirkin" <mst@redhat.com>
4598 L:      kvm@vger.kernel.org
4599 S:      Supported
4600 F:      drivers/uio/uio_pci_generic.c
4601
4602 GET_MAINTAINER SCRIPT
4603 M:      Joe Perches <joe@perches.com>
4604 S:      Maintained
4605 F:      scripts/get_maintainer.pl
4606
4607 GFS2 FILE SYSTEM
4608 M:      Steven Whitehouse <swhiteho@redhat.com>
4609 M:      Bob Peterson <rpeterso@redhat.com>
4610 L:      cluster-devel@redhat.com
4611 W:      http://sources.redhat.com/cluster/
4612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4613 S:      Supported
4614 F:      Documentation/filesystems/gfs2*.txt
4615 F:      fs/gfs2/
4616 F:      include/uapi/linux/gfs2_ondisk.h
4617
4618 GIGASET ISDN DRIVERS
4619 M:      Paul Bolle <pebolle@tiscali.nl>
4620 L:      gigaset307x-common@lists.sourceforge.net
4621 W:      http://gigaset307x.sourceforge.net/
4622 S:      Odd Fixes
4623 F:      Documentation/isdn/README.gigaset
4624 F:      drivers/isdn/gigaset/
4625 F:      include/uapi/linux/gigaset_dev.h
4626
4627 GO7007 MPEG CODEC
4628 M:      Hans Verkuil <hans.verkuil@cisco.com>
4629 L:      linux-media@vger.kernel.org
4630 S:      Maintained
4631 F:      drivers/media/usb/go7007/
4632
4633 GOODIX TOUCHSCREEN
4634 M:      Bastien Nocera <hadess@hadess.net>
4635 L:      linux-input@vger.kernel.org
4636 S:      Maintained
4637 F:      drivers/input/touchscreen/goodix.c
4638
4639 GPIO SUBSYSTEM
4640 M:      Linus Walleij <linus.walleij@linaro.org>
4641 M:      Alexandre Courbot <gnurou@gmail.com>
4642 L:      linux-gpio@vger.kernel.org
4643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4644 S:      Maintained
4645 F:      Documentation/gpio/
4646 F:      drivers/gpio/
4647 F:      include/linux/gpio/
4648 F:      include/linux/gpio.h
4649 F:      include/asm-generic/gpio.h
4650
4651 GRE DEMULTIPLEXER DRIVER
4652 M:      Dmitry Kozlov <xeb@mail.ru>
4653 L:      netdev@vger.kernel.org
4654 S:      Maintained
4655 F:      net/ipv4/gre_demux.c
4656 F:      net/ipv4/gre_offload.c
4657 F:      include/net/gre.h
4658
4659 GRETH 10/100/1G Ethernet MAC device driver
4660 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4661 L:      netdev@vger.kernel.org
4662 S:      Maintained
4663 F:      drivers/net/ethernet/aeroflex/
4664
4665 GSPCA FINEPIX SUBDRIVER
4666 M:      Frank Zago <frank@zago.net>
4667 L:      linux-media@vger.kernel.org
4668 T:      git git://linuxtv.org/media_tree.git
4669 S:      Maintained
4670 F:      drivers/media/usb/gspca/finepix.c
4671
4672 GSPCA GL860 SUBDRIVER
4673 M:      Olivier Lorin <o.lorin@laposte.net>
4674 L:      linux-media@vger.kernel.org
4675 T:      git git://linuxtv.org/media_tree.git
4676 S:      Maintained
4677 F:      drivers/media/usb/gspca/gl860/
4678
4679 GSPCA M5602 SUBDRIVER
4680 M:      Erik Andren <erik.andren@gmail.com>
4681 L:      linux-media@vger.kernel.org
4682 T:      git git://linuxtv.org/media_tree.git
4683 S:      Maintained
4684 F:      drivers/media/usb/gspca/m5602/
4685
4686 GSPCA PAC207 SONIXB SUBDRIVER
4687 M:      Hans de Goede <hdegoede@redhat.com>
4688 L:      linux-media@vger.kernel.org
4689 T:      git git://linuxtv.org/media_tree.git
4690 S:      Maintained
4691 F:      drivers/media/usb/gspca/pac207.c
4692
4693 GSPCA SN9C20X SUBDRIVER
4694 M:      Brian Johnson <brijohn@gmail.com>
4695 L:      linux-media@vger.kernel.org
4696 T:      git git://linuxtv.org/media_tree.git
4697 S:      Maintained
4698 F:      drivers/media/usb/gspca/sn9c20x.c
4699
4700 GSPCA T613 SUBDRIVER
4701 M:      Leandro Costantino <lcostantino@gmail.com>
4702 L:      linux-media@vger.kernel.org
4703 T:      git git://linuxtv.org/media_tree.git
4704 S:      Maintained
4705 F:      drivers/media/usb/gspca/t613.c
4706
4707 GSPCA USB WEBCAM DRIVER
4708 M:      Hans de Goede <hdegoede@redhat.com>
4709 L:      linux-media@vger.kernel.org
4710 T:      git git://linuxtv.org/media_tree.git
4711 S:      Maintained
4712 F:      drivers/media/usb/gspca/
4713
4714 GUID PARTITION TABLE (GPT)
4715 M:      Davidlohr Bueso <dave@stgolabs.net>
4716 L:      linux-efi@vger.kernel.org
4717 S:      Maintained
4718 F:      block/partitions/efi.*
4719
4720 STK1160 USB VIDEO CAPTURE DRIVER
4721 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4722 L:      linux-media@vger.kernel.org
4723 T:      git git://linuxtv.org/media_tree.git
4724 S:      Maintained
4725 F:      drivers/media/usb/stk1160/
4726
4727 H8/300 ARCHITECTURE
4728 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4729 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4730 W:      http://uclinux-h8.sourceforge.jp
4731 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4732 S:      Maintained
4733 F:      arch/h8300/
4734 F:      drivers/clocksource/h8300_*.c
4735 F:      drivers/clk/h8300/
4736 F:      drivers/irqchip/irq-renesas-h8*.c
4737
4738 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4739 M:      Frank Seidel <frank@f-seidel.de>
4740 L:      platform-driver-x86@vger.kernel.org
4741 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4742 S:      Maintained
4743 F:      drivers/platform/x86/hdaps.c
4744
4745 HDPVR USB VIDEO ENCODER DRIVER
4746 M:      Hans Verkuil <hverkuil@xs4all.nl>
4747 L:      linux-media@vger.kernel.org
4748 T:      git git://linuxtv.org/media_tree.git
4749 W:      http://linuxtv.org
4750 S:      Odd Fixes
4751 F:      drivers/media/usb/hdpvr/
4752
4753 HWPOISON MEMORY FAILURE HANDLING
4754 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4755 L:      linux-mm@kvack.org
4756 S:      Maintained
4757 F:      mm/memory-failure.c
4758 F:      mm/hwpoison-inject.c
4759
4760 HYPERVISOR VIRTUAL CONSOLE DRIVER
4761 L:      linuxppc-dev@lists.ozlabs.org
4762 S:      Odd Fixes
4763 F:      drivers/tty/hvc/
4764
4765 HACKRF MEDIA DRIVER
4766 M:      Antti Palosaari <crope@iki.fi>
4767 L:      linux-media@vger.kernel.org
4768 W:      http://linuxtv.org/
4769 W:      http://palosaari.fi/linux/
4770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4771 T:      git git://linuxtv.org/anttip/media_tree.git
4772 S:      Maintained
4773 F:      drivers/media/usb/hackrf/
4774
4775 HARDWARE MONITORING
4776 M:      Jean Delvare <jdelvare@suse.com>
4777 M:      Guenter Roeck <linux@roeck-us.net>
4778 L:      lm-sensors@lm-sensors.org
4779 W:      http://www.lm-sensors.org/
4780 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4782 S:      Maintained
4783 F:      Documentation/hwmon/
4784 F:      drivers/hwmon/
4785 F:      include/linux/hwmon*.h
4786
4787 HARDWARE RANDOM NUMBER GENERATOR CORE
4788 M:      Matt Mackall <mpm@selenic.com>
4789 M:      Herbert Xu <herbert@gondor.apana.org.au>
4790 L:      linux-crypto@vger.kernel.org
4791 S:      Odd fixes
4792 F:      Documentation/hw_random.txt
4793 F:      drivers/char/hw_random/
4794 F:      include/linux/hw_random.h
4795
4796 HARDWARE SPINLOCK CORE
4797 M:      Ohad Ben-Cohen <ohad@wizery.com>
4798 S:      Maintained
4799 F:      Documentation/hwspinlock.txt
4800 F:      drivers/hwspinlock/hwspinlock_*
4801 F:      include/linux/hwspinlock.h
4802
4803 HARMONY SOUND DRIVER
4804 L:      linux-parisc@vger.kernel.org
4805 S:      Maintained
4806 F:      sound/parisc/harmony.*
4807
4808 HD29L2 MEDIA DRIVER
4809 M:      Antti Palosaari <crope@iki.fi>
4810 L:      linux-media@vger.kernel.org
4811 W:      http://linuxtv.org/
4812 W:      http://palosaari.fi/linux/
4813 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4814 T:      git git://linuxtv.org/anttip/media_tree.git
4815 S:      Maintained
4816 F:      drivers/media/dvb-frontends/hd29l2*
4817
4818 HEWLETT-PACKARD SMART2 RAID DRIVER
4819 L:      iss_storagedev@hp.com
4820 S:      Orphan
4821 F:      Documentation/blockdev/cpqarray.txt
4822 F:      drivers/block/cpqarray.*
4823
4824 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4825 M:      Don Brace <don.brace@pmcs.com>
4826 L:      iss_storagedev@hp.com
4827 L:      storagedev@pmcs.com
4828 L:      linux-scsi@vger.kernel.org
4829 S:      Supported
4830 F:      Documentation/scsi/hpsa.txt
4831 F:      drivers/scsi/hpsa*.[ch]
4832 F:      include/linux/cciss*.h
4833 F:      include/uapi/linux/cciss*.h
4834
4835 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4836 M:      Don Brace <don.brace@pmcs.com>
4837 L:      iss_storagedev@hp.com
4838 L:      storagedev@pmcs.com
4839 L:      linux-scsi@vger.kernel.org
4840 S:      Supported
4841 F:      Documentation/blockdev/cciss.txt
4842 F:      drivers/block/cciss*
4843 F:      include/linux/cciss_ioctl.h
4844 F:      include/uapi/linux/cciss_ioctl.h
4845
4846 HFS FILESYSTEM
4847 L:      linux-fsdevel@vger.kernel.org
4848 S:      Orphan
4849 F:      Documentation/filesystems/hfs.txt
4850 F:      fs/hfs/
4851
4852 HFSPLUS FILESYSTEM
4853 L:      linux-fsdevel@vger.kernel.org
4854 S:      Orphan
4855 F:      Documentation/filesystems/hfsplus.txt
4856 F:      fs/hfsplus/
4857
4858 HGA FRAMEBUFFER DRIVER
4859 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4860 L:      linux-nvidia@lists.surfsouth.com
4861 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4862 S:      Maintained
4863 F:      drivers/video/fbdev/hgafb.c
4864
4865 HIBERNATION (aka Software Suspend, aka swsusp)
4866 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4867 M:      Pavel Machek <pavel@ucw.cz>
4868 L:      linux-pm@vger.kernel.org
4869 S:      Supported
4870 F:      arch/x86/power/
4871 F:      drivers/base/power/
4872 F:      kernel/power/
4873 F:      include/linux/suspend.h
4874 F:      include/linux/freezer.h
4875 F:      include/linux/pm.h
4876 F:      arch/*/include/asm/suspend*.h
4877
4878 HID CORE LAYER
4879 M:      Jiri Kosina <jikos@kernel.org>
4880 L:      linux-input@vger.kernel.org
4881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4882 S:      Maintained
4883 F:      drivers/hid/
4884 F:      include/linux/hid*
4885 F:      include/uapi/linux/hid*
4886
4887 HID SENSOR HUB DRIVERS
4888 M:      Jiri Kosina <jikos@kernel.org>
4889 M:      Jonathan Cameron <jic23@kernel.org>
4890 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4891 L:      linux-input@vger.kernel.org
4892 L:      linux-iio@vger.kernel.org
4893 S:      Maintained
4894 F:      Documentation/hid/hid-sensor*
4895 F:      drivers/hid/hid-sensor-*
4896 F:      drivers/iio/*/hid-*
4897 F:      include/linux/hid-sensor-*
4898
4899 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4900 M:      Thomas Gleixner <tglx@linutronix.de>
4901 L:      linux-kernel@vger.kernel.org
4902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4903 S:      Maintained
4904 F:      Documentation/timers/
4905 F:      kernel/time/hrtimer.c
4906 F:      kernel/time/clockevents.c
4907 F:      kernel/time/tick*.*
4908 F:      kernel/time/timer_*.c
4909 F:      include/linux/clockchips.h
4910 F:      include/linux/hrtimer.h
4911
4912 HIGH-SPEED SCC DRIVER FOR AX.25
4913 L:      linux-hams@vger.kernel.org
4914 S:      Orphan
4915 F:      drivers/net/hamradio/dmascc.c
4916 F:      drivers/net/hamradio/scc.c
4917
4918 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4919 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4920 W:      http://www.highpoint-tech.com
4921 S:      Supported
4922 F:      Documentation/scsi/hptiop.txt
4923 F:      drivers/scsi/hptiop.c
4924
4925 HIPPI
4926 M:      Jes Sorensen <jes@trained-monkey.org>
4927 L:      linux-hippi@sunsite.dk
4928 S:      Maintained
4929 F:      include/linux/hippidevice.h
4930 F:      include/uapi/linux/if_hippi.h
4931 F:      net/802/hippi.c
4932 F:      drivers/net/hippi/
4933
4934 HOST AP DRIVER
4935 M:      Jouni Malinen <j@w1.fi>
4936 L:      hostap@shmoo.com (subscribers-only)
4937 L:      linux-wireless@vger.kernel.org
4938 W:      http://hostap.epitest.fi/
4939 S:      Maintained
4940 F:      drivers/net/wireless/hostap/
4941
4942 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4943 L:      platform-driver-x86@vger.kernel.org
4944 S:      Orphan
4945 F:      drivers/platform/x86/tc1100-wmi.c
4946
4947 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4948 M:      Jaroslav Kysela <perex@perex.cz>
4949 S:      Maintained
4950 F:      drivers/net/ethernet/hp/hp100.*
4951
4952 HPET:   High Precision Event Timers driver
4953 M:      Clemens Ladisch <clemens@ladisch.de>
4954 S:      Maintained
4955 F:      Documentation/timers/hpet.txt
4956 F:      drivers/char/hpet.c
4957 F:      include/linux/hpet.h
4958 F:      include/uapi/linux/hpet.h
4959
4960 HPET:   x86
4961 S:      Orphan
4962 F:      arch/x86/kernel/hpet.c
4963 F:      arch/x86/include/asm/hpet.h
4964
4965 HPFS FILESYSTEM
4966 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4967 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4968 S:      Maintained
4969 F:      fs/hpfs/
4970
4971 HSI SUBSYSTEM
4972 M:      Sebastian Reichel <sre@kernel.org>
4973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4974 S:      Maintained
4975 F:      Documentation/ABI/testing/sysfs-bus-hsi
4976 F:      Documentation/hsi.txt
4977 F:      drivers/hsi/
4978 F:      include/linux/hsi/
4979 F:      include/uapi/linux/hsi/
4980
4981 HSO 3G MODEM DRIVER
4982 M:      Jan Dumon <j.dumon@option.com>
4983 W:      http://www.pharscape.org
4984 S:      Maintained
4985 F:      drivers/net/usb/hso.c
4986
4987 HSR NETWORK PROTOCOL
4988 M:      Arvid Brodin <arvid.brodin@alten.se>
4989 L:      netdev@vger.kernel.org
4990 S:      Maintained
4991 F:      net/hsr/
4992
4993 HTCPEN TOUCHSCREEN DRIVER
4994 M:      Pau Oliva Fora <pof@eslack.org>
4995 L:      linux-input@vger.kernel.org
4996 S:      Maintained
4997 F:      drivers/input/touchscreen/htcpen.c
4998
4999 HUGETLB FILESYSTEM
5000 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5001 S:      Maintained
5002 F:      fs/hugetlbfs/
5003
5004 Hyper-V CORE AND DRIVERS
5005 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5006 M:      Haiyang Zhang <haiyangz@microsoft.com>
5007 L:      devel@linuxdriverproject.org
5008 S:      Maintained
5009 F:      arch/x86/include/asm/mshyperv.h
5010 F:      arch/x86/include/uapi/asm/hyperv.h
5011 F:      arch/x86/kernel/cpu/mshyperv.c
5012 F:      drivers/hid/hid-hyperv.c
5013 F:      drivers/hv/
5014 F:      drivers/input/serio/hyperv-keyboard.c
5015 F:      drivers/net/hyperv/
5016 F:      drivers/scsi/storvsc_drv.c
5017 F:      drivers/video/fbdev/hyperv_fb.c
5018 F:      include/linux/hyperv.h
5019 F:      tools/hv/
5020
5021 I2C OVER PARALLEL PORT
5022 M:      Jean Delvare <jdelvare@suse.com>
5023 L:      linux-i2c@vger.kernel.org
5024 S:      Maintained
5025 F:      Documentation/i2c/busses/i2c-parport
5026 F:      Documentation/i2c/busses/i2c-parport-light
5027 F:      drivers/i2c/busses/i2c-parport.c
5028 F:      drivers/i2c/busses/i2c-parport-light.c
5029
5030 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5031 M:      Jean Delvare <jdelvare@suse.com>
5032 L:      linux-i2c@vger.kernel.org
5033 S:      Maintained
5034 F:      Documentation/i2c/busses/i2c-ali1535
5035 F:      Documentation/i2c/busses/i2c-ali1563
5036 F:      Documentation/i2c/busses/i2c-ali15x3
5037 F:      Documentation/i2c/busses/i2c-amd756
5038 F:      Documentation/i2c/busses/i2c-amd8111
5039 F:      Documentation/i2c/busses/i2c-i801
5040 F:      Documentation/i2c/busses/i2c-nforce2
5041 F:      Documentation/i2c/busses/i2c-piix4
5042 F:      Documentation/i2c/busses/i2c-sis5595
5043 F:      Documentation/i2c/busses/i2c-sis630
5044 F:      Documentation/i2c/busses/i2c-sis96x
5045 F:      Documentation/i2c/busses/i2c-via
5046 F:      Documentation/i2c/busses/i2c-viapro
5047 F:      drivers/i2c/busses/i2c-ali1535.c
5048 F:      drivers/i2c/busses/i2c-ali1563.c
5049 F:      drivers/i2c/busses/i2c-ali15x3.c
5050 F:      drivers/i2c/busses/i2c-amd756.c
5051 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5052 F:      drivers/i2c/busses/i2c-amd8111.c
5053 F:      drivers/i2c/busses/i2c-i801.c
5054 F:      drivers/i2c/busses/i2c-isch.c
5055 F:      drivers/i2c/busses/i2c-nforce2.c
5056 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5057 F:      drivers/i2c/busses/i2c-piix4.c
5058 F:      drivers/i2c/busses/i2c-sis5595.c
5059 F:      drivers/i2c/busses/i2c-sis630.c
5060 F:      drivers/i2c/busses/i2c-sis96x.c
5061 F:      drivers/i2c/busses/i2c-via.c
5062 F:      drivers/i2c/busses/i2c-viapro.c
5063
5064 I2C/SMBUS ISMT DRIVER
5065 M:      Seth Heasley <seth.heasley@intel.com>
5066 M:      Neil Horman <nhorman@tuxdriver.com>
5067 L:      linux-i2c@vger.kernel.org
5068 F:      drivers/i2c/busses/i2c-ismt.c
5069 F:      Documentation/i2c/busses/i2c-ismt
5070
5071 I2C/SMBUS STUB DRIVER
5072 M:      Jean Delvare <jdelvare@suse.com>
5073 L:      linux-i2c@vger.kernel.org
5074 S:      Maintained
5075 F:      drivers/i2c/i2c-stub.c
5076
5077 I2C SUBSYSTEM
5078 M:      Wolfram Sang <wsa@the-dreams.de>
5079 L:      linux-i2c@vger.kernel.org
5080 W:      https://i2c.wiki.kernel.org/
5081 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5083 S:      Maintained
5084 F:      Documentation/devicetree/bindings/i2c/
5085 F:      Documentation/i2c/
5086 F:      drivers/i2c/
5087 F:      include/linux/i2c.h
5088 F:      include/linux/i2c-*.h
5089 F:      include/uapi/linux/i2c.h
5090 F:      include/uapi/linux/i2c-*.h
5091
5092 I2C ACPI SUPPORT
5093 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5094 L:      linux-i2c@vger.kernel.org
5095 L:      linux-acpi@vger.kernel.org
5096 S:      Maintained
5097
5098 I2C-TAOS-EVM DRIVER
5099 M:      Jean Delvare <jdelvare@suse.com>
5100 L:      linux-i2c@vger.kernel.org
5101 S:      Maintained
5102 F:      Documentation/i2c/busses/i2c-taos-evm
5103 F:      drivers/i2c/busses/i2c-taos-evm.c
5104
5105 I2C-TINY-USB DRIVER
5106 M:      Till Harbaum <till@harbaum.org>
5107 L:      linux-i2c@vger.kernel.org
5108 W:      http://www.harbaum.org/till/i2c_tiny_usb
5109 S:      Maintained
5110 F:      drivers/i2c/busses/i2c-tiny-usb.c
5111
5112 i386 BOOT CODE
5113 M:      "H. Peter Anvin" <hpa@zytor.com>
5114 S:      Maintained
5115 F:      arch/x86/boot/
5116
5117 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5118 M:      "H. Peter Anvin" <hpa@zytor.com>
5119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5120 S:      Maintained
5121
5122 IA64 (Itanium) PLATFORM
5123 M:      Tony Luck <tony.luck@intel.com>
5124 M:      Fenghua Yu <fenghua.yu@intel.com>
5125 L:      linux-ia64@vger.kernel.org
5126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5127 S:      Maintained
5128 F:      arch/ia64/
5129
5130 IBM Power VMX Cryptographic instructions
5131 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5132 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5133 L:      linux-crypto@vger.kernel.org
5134 S:      Supported
5135 F:      drivers/crypto/vmx/Makefile
5136 F:      drivers/crypto/vmx/Kconfig
5137 F:      drivers/crypto/vmx/vmx.c
5138 F:      drivers/crypto/vmx/aes*
5139 F:      drivers/crypto/vmx/ghash*
5140 F:      drivers/crypto/vmx/ppc-xlate.pl
5141
5142 IBM Power in-Nest Crypto Acceleration
5143 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5144 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5145 L:      linux-crypto@vger.kernel.org
5146 S:      Supported
5147 F:      drivers/crypto/nx/Makefile
5148 F:      drivers/crypto/nx/Kconfig
5149 F:      drivers/crypto/nx/nx-aes*
5150 F:      drivers/crypto/nx/nx-sha*
5151 F:      drivers/crypto/nx/nx.*
5152 F:      drivers/crypto/nx/nx_csbcpb.h
5153 F:      drivers/crypto/nx/nx_debugfs.h
5154
5155 IBM Power 842 compression accelerator
5156 M:      Dan Streetman <ddstreet@ieee.org>
5157 S:      Supported
5158 F:      drivers/crypto/nx/Makefile
5159 F:      drivers/crypto/nx/Kconfig
5160 F:      drivers/crypto/nx/nx-842*
5161 F:      include/linux/sw842.h
5162 F:      crypto/842.c
5163 F:      lib/842/
5164
5165 IBM Power Linux RAID adapter
5166 M:      Brian King <brking@us.ibm.com>
5167 S:      Supported
5168 F:      drivers/scsi/ipr.*
5169
5170 IBM Power Virtual Ethernet Device Driver
5171 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5172 L:      netdev@vger.kernel.org
5173 S:      Supported
5174 F:      drivers/net/ethernet/ibm/ibmveth.*
5175
5176 IBM Power Virtual SCSI Device Drivers
5177 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5178 L:      linux-scsi@vger.kernel.org
5179 S:      Supported
5180 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5181 F:      drivers/scsi/ibmvscsi/viosrp.h
5182
5183 IBM Power Virtual FC Device Drivers
5184 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5185 L:      linux-scsi@vger.kernel.org
5186 S:      Supported
5187 F:      drivers/scsi/ibmvscsi/ibmvfc*
5188
5189 IBM ServeRAID RAID DRIVER
5190 S:      Orphan
5191 F:      drivers/scsi/ips.*
5192
5193 ICH LPC AND GPIO DRIVER
5194 M:      Peter Tyser <ptyser@xes-inc.com>
5195 S:      Maintained
5196 F:      drivers/mfd/lpc_ich.c
5197 F:      drivers/gpio/gpio-ich.c
5198
5199 IDE SUBSYSTEM
5200 M:      "David S. Miller" <davem@davemloft.net>
5201 L:      linux-ide@vger.kernel.org
5202 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5204 S:      Maintained
5205 F:      Documentation/ide/
5206 F:      drivers/ide/
5207 F:      include/linux/ide.h
5208
5209 IDEAPAD LAPTOP EXTRAS DRIVER
5210 M:      Ike Panhc <ike.pan@canonical.com>
5211 L:      platform-driver-x86@vger.kernel.org
5212 W:      http://launchpad.net/ideapad-laptop
5213 S:      Maintained
5214 F:      drivers/platform/x86/ideapad-laptop.c
5215
5216 IDEAPAD LAPTOP SLIDEBAR DRIVER
5217 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5218 L:      linux-input@vger.kernel.org
5219 W:      https://github.com/o2genum/ideapad-slidebar
5220 S:      Maintained
5221 F:      drivers/input/misc/ideapad_slidebar.c
5222
5223 IDE/ATAPI DRIVERS
5224 M:      Borislav Petkov <bp@alien8.de>
5225 L:      linux-ide@vger.kernel.org
5226 S:      Maintained
5227 F:      Documentation/cdrom/ide-cd
5228 F:      drivers/ide/ide-cd*
5229
5230 IDLE-I7300
5231 M:      Andy Henroid <andrew.d.henroid@intel.com>
5232 L:      linux-pm@vger.kernel.org
5233 S:      Supported
5234 F:      drivers/idle/i7300_idle.c
5235
5236 IEEE 802.15.4 SUBSYSTEM
5237 M:      Alexander Aring <alex.aring@gmail.com>
5238 L:      linux-wpan@vger.kernel.org
5239 W:      https://github.com/linux-wpan
5240 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5241 S:      Maintained
5242 F:      net/ieee802154/
5243 F:      net/mac802154/
5244 F:      drivers/net/ieee802154/
5245 F:      include/linux/nl802154.h
5246 F:      include/linux/ieee802154.h
5247 F:      include/net/nl802154.h
5248 F:      include/net/mac802154.h
5249 F:      include/net/af_ieee802154.h
5250 F:      include/net/cfg802154.h
5251 F:      include/net/ieee802154_netdev.h
5252 F:      Documentation/networking/ieee802154.txt
5253
5254 IGORPLUG-USB IR RECEIVER
5255 M:      Sean Young <sean@mess.org>
5256 L:      linux-media@vger.kernel.org
5257 S:      Maintained
5258 F:      drivers/media/rc/igorplugusb.c
5259
5260 IGUANAWORKS USB IR TRANSCEIVER
5261 M:      Sean Young <sean@mess.org>
5262 L:      linux-media@vger.kernel.org
5263 S:      Maintained
5264 F:      drivers/media/rc/iguanair.c
5265
5266 IIO SUBSYSTEM AND DRIVERS
5267 M:      Jonathan Cameron <jic23@kernel.org>
5268 R:      Hartmut Knaack <knaack.h@gmx.de>
5269 R:      Lars-Peter Clausen <lars@metafoo.de>
5270 R:      Peter Meerwald <pmeerw@pmeerw.net>
5271 L:      linux-iio@vger.kernel.org
5272 S:      Maintained
5273 F:      drivers/iio/
5274 F:      drivers/staging/iio/
5275 F:      include/linux/iio/
5276 F:      tools/iio/
5277
5278 IKANOS/ADI EAGLE ADSL USB DRIVER
5279 M:      Matthieu Castet <castet.matthieu@free.fr>
5280 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5281 S:      Maintained
5282 F:      drivers/usb/atm/ueagle-atm.c
5283
5284 INA209 HARDWARE MONITOR DRIVER
5285 M:      Guenter Roeck <linux@roeck-us.net>
5286 L:      lm-sensors@lm-sensors.org
5287 S:      Maintained
5288 F:      Documentation/hwmon/ina209
5289 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5290 F:      drivers/hwmon/ina209.c
5291
5292 INA2XX HARDWARE MONITOR DRIVER
5293 M:      Guenter Roeck <linux@roeck-us.net>
5294 L:      lm-sensors@lm-sensors.org
5295 S:      Maintained
5296 F:      Documentation/hwmon/ina2xx
5297 F:      drivers/hwmon/ina2xx.c
5298 F:      include/linux/platform_data/ina2xx.h
5299
5300 INDUSTRY PACK SUBSYSTEM (IPACK)
5301 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5302 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5303 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5304 L:      industrypack-devel@lists.sourceforge.net
5305 W:      http://industrypack.sourceforge.net
5306 S:      Maintained
5307 F:      drivers/ipack/
5308
5309 INGENIC JZ4780 DMA Driver
5310 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5311 S:      Maintained
5312 F:      drivers/dma/dma-jz4780.c
5313
5314 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5315 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5316 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5317 L:      linux-ima-devel@lists.sourceforge.net
5318 L:      linux-ima-user@lists.sourceforge.net
5319 L:      linux-security-module@vger.kernel.org
5320 S:      Supported
5321 F:      security/integrity/ima/
5322
5323 IMGTEC IR DECODER DRIVER
5324 M:      James Hogan <james.hogan@imgtec.com>
5325 S:      Maintained
5326 F:      drivers/media/rc/img-ir/
5327
5328 IMS TWINTURBO FRAMEBUFFER DRIVER
5329 L:      linux-fbdev@vger.kernel.org
5330 S:      Orphan
5331 F:      drivers/video/fbdev/imsttfb.c
5332
5333 INFINIBAND SUBSYSTEM
5334 M:      Doug Ledford <dledford@redhat.com>
5335 M:      Sean Hefty <sean.hefty@intel.com>
5336 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5337 L:      linux-rdma@vger.kernel.org
5338 W:      http://www.openfabrics.org/
5339 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5341 S:      Supported
5342 F:      Documentation/infiniband/
5343 F:      drivers/infiniband/
5344 F:      include/uapi/linux/if_infiniband.h
5345 F:      include/uapi/rdma/
5346 F:      include/rdma/
5347
5348 INOTIFY
5349 M:      John McCutchan <john@johnmccutchan.com>
5350 M:      Robert Love <rlove@rlove.org>
5351 M:      Eric Paris <eparis@parisplace.org>
5352 S:      Maintained
5353 F:      Documentation/filesystems/inotify.txt
5354 F:      fs/notify/inotify/
5355 F:      include/linux/inotify.h
5356 F:      include/uapi/linux/inotify.h
5357
5358 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5359 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5360 L:      linux-input@vger.kernel.org
5361 Q:      http://patchwork.kernel.org/project/linux-input/list/
5362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5363 S:      Maintained
5364 F:      drivers/input/
5365 F:      include/linux/input.h
5366 F:      include/uapi/linux/input.h
5367 F:      include/linux/input/
5368
5369 INPUT MULTITOUCH (MT) PROTOCOL
5370 M:      Henrik Rydberg <rydberg@bitmath.org>
5371 L:      linux-input@vger.kernel.org
5372 S:      Odd fixes
5373 F:      Documentation/input/multi-touch-protocol.txt
5374 F:      drivers/input/input-mt.c
5375 K:      \b(ABS|SYN)_MT_
5376
5377 INTEL ASoC BDW/HSW DRIVERS
5378 M:      Jie Yang <yang.jie@linux.intel.com>
5379 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5380 S:      Supported
5381 F:      sound/soc/intel/common/sst-dsp*
5382 F:      sound/soc/intel/common/sst-firmware.c
5383 F:      sound/soc/intel/boards/broadwell.c
5384 F:      sound/soc/intel/haswell/
5385
5386 INTEL C600 SERIES SAS CONTROLLER DRIVER
5387 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5388 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5389 L:      linux-scsi@vger.kernel.org
5390 T:      git git://git.code.sf.net/p/intel-sas/isci
5391 S:      Supported
5392 F:      drivers/scsi/isci/
5393
5394 INTEL IDLE DRIVER
5395 M:      Len Brown <lenb@kernel.org>
5396 L:      linux-pm@vger.kernel.org
5397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5398 S:      Supported
5399 F:      drivers/idle/intel_idle.c
5400
5401 INTEL PSTATE DRIVER
5402 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5403 L:      linux-pm@vger.kernel.org
5404 S:      Supported
5405 F:      drivers/cpufreq/intel_pstate.c
5406
5407 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5408 M:      Maik Broemme <mbroemme@plusserver.de>
5409 L:      linux-fbdev@vger.kernel.org
5410 S:      Maintained
5411 F:      Documentation/fb/intelfb.txt
5412 F:      drivers/video/fbdev/intelfb/
5413
5414 INTEL 810/815 FRAMEBUFFER DRIVER
5415 M:      Antonino Daplas <adaplas@gmail.com>
5416 L:      linux-fbdev@vger.kernel.org
5417 S:      Maintained
5418 F:      drivers/video/fbdev/i810/
5419
5420 INTEL MENLOW THERMAL DRIVER
5421 M:      Sujith Thomas <sujith.thomas@intel.com>
5422 L:      platform-driver-x86@vger.kernel.org
5423 W:      https://01.org/linux-acpi
5424 S:      Supported
5425 F:      drivers/platform/x86/intel_menlow.c
5426
5427 INTEL IA32 MICROCODE UPDATE SUPPORT
5428 M:      Borislav Petkov <bp@alien8.de>
5429 S:      Maintained
5430 F:      arch/x86/kernel/cpu/microcode/core*
5431 F:      arch/x86/kernel/cpu/microcode/intel*
5432
5433 INTEL I/OAT DMA DRIVER
5434 M:      Dave Jiang <dave.jiang@intel.com>
5435 R:      Dan Williams <dan.j.williams@intel.com>
5436 L:      dmaengine@vger.kernel.org
5437 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5438 S:      Supported
5439 F:      drivers/dma/ioat*
5440
5441 INTEL IOMMU (VT-d)
5442 M:      David Woodhouse <dwmw2@infradead.org>
5443 L:      iommu@lists.linux-foundation.org
5444 T:      git git://git.infradead.org/iommu-2.6.git
5445 S:      Supported
5446 F:      drivers/iommu/intel-iommu.c
5447 F:      include/linux/intel-iommu.h
5448
5449 INTEL IOP-ADMA DMA DRIVER
5450 R:      Dan Williams <dan.j.williams@intel.com>
5451 S:      Odd fixes
5452 F:      drivers/dma/iop-adma.c
5453
5454 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5455 M:      Krzysztof Halasa <khalasa@piap.pl>
5456 S:      Maintained
5457 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5458 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5459 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5460 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5461 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5462 F:      drivers/net/wan/ixp4xx_hss.c
5463
5464 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5465 M:      Deepak Saxena <dsaxena@plexity.net>
5466 S:      Maintained
5467 F:      drivers/char/hw_random/ixp4xx-rng.c
5468
5469 INTEL ETHERNET DRIVERS
5470 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5471 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5472 R:      Shannon Nelson <shannon.nelson@intel.com>
5473 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5474 R:      Don Skidmore <donald.c.skidmore@intel.com>
5475 R:      Matthew Vick <matthew.vick@intel.com>
5476 R:      John Ronciak <john.ronciak@intel.com>
5477 R:      Mitch Williams <mitch.a.williams@intel.com>
5478 L:      intel-wired-lan@lists.osuosl.org
5479 W:      http://www.intel.com/support/feedback.htm
5480 W:      http://e1000.sourceforge.net/
5481 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5484 S:      Supported
5485 F:      Documentation/networking/e100.txt
5486 F:      Documentation/networking/e1000.txt
5487 F:      Documentation/networking/e1000e.txt
5488 F:      Documentation/networking/igb.txt
5489 F:      Documentation/networking/igbvf.txt
5490 F:      Documentation/networking/ixgb.txt
5491 F:      Documentation/networking/ixgbe.txt
5492 F:      Documentation/networking/ixgbevf.txt
5493 F:      Documentation/networking/i40e.txt
5494 F:      Documentation/networking/i40evf.txt
5495 F:      drivers/net/ethernet/intel/
5496 F:      drivers/net/ethernet/intel/*/
5497
5498 INTEL-MID GPIO DRIVER
5499 M:      David Cohen <david.a.cohen@linux.intel.com>
5500 L:      linux-gpio@vger.kernel.org
5501 S:      Maintained
5502 F:      drivers/gpio/gpio-intel-mid.c
5503
5504 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5505 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5506 L:      linux-wireless@vger.kernel.org
5507 S:      Maintained
5508 F:      Documentation/networking/README.ipw2100
5509 F:      Documentation/networking/README.ipw2200
5510 F:      drivers/net/wireless/ipw2x00/
5511
5512 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5513 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5514 M:      Gang Wei <gang.wei@intel.com>
5515 M:      Shane Wang <shane.wang@intel.com>
5516 L:      tboot-devel@lists.sourceforge.net
5517 W:      http://tboot.sourceforge.net
5518 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5519 S:      Supported
5520 F:      Documentation/intel_txt.txt
5521 F:      include/linux/tboot.h
5522 F:      arch/x86/kernel/tboot.c
5523
5524 INTEL WIRELESS WIMAX CONNECTION 2400
5525 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5526 M:      linux-wimax@intel.com
5527 L:      wimax@linuxwimax.org (subscribers-only)
5528 S:      Supported
5529 W:      http://linuxwimax.org
5530 F:      Documentation/wimax/README.i2400m
5531 F:      drivers/net/wimax/i2400m/
5532 F:      include/uapi/linux/wimax/i2400m.h
5533
5534 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5535 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5536 L:      linux-wireless@vger.kernel.org
5537 S:      Supported
5538 F:      drivers/net/wireless/iwlegacy/
5539
5540 INTEL WIRELESS WIFI LINK (iwlwifi)
5541 M:      Johannes Berg <johannes.berg@intel.com>
5542 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5543 M:      Intel Linux Wireless <ilw@linux.intel.com>
5544 L:      linux-wireless@vger.kernel.org
5545 W:      http://intellinuxwireless.org
5546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5547 S:      Supported
5548 F:      drivers/net/wireless/iwlwifi/
5549
5550 INTEL MANAGEMENT ENGINE (mei)
5551 M:      Tomas Winkler <tomas.winkler@intel.com>
5552 L:      linux-kernel@vger.kernel.org
5553 S:      Supported
5554 F:      include/uapi/linux/mei.h
5555 F:      include/linux/mei_cl_bus.h
5556 F:      drivers/misc/mei/*
5557 F:      Documentation/misc-devices/mei/*
5558
5559 INTEL PMC IPC DRIVER
5560 M:      Zha Qipeng<qipeng.zha@intel.com>
5561 L:      platform-driver-x86@vger.kernel.org
5562 S:      Maintained
5563 F:      drivers/platform/x86/intel_pmc_ipc.c
5564 F:      arch/x86/include/asm/intel_pmc_ipc.h
5565
5566 IOC3 ETHERNET DRIVER
5567 M:      Ralf Baechle <ralf@linux-mips.org>
5568 L:      linux-mips@linux-mips.org
5569 S:      Maintained
5570 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5571
5572 IOC3 SERIAL DRIVER
5573 M:      Pat Gefre <pfg@sgi.com>
5574 L:      linux-serial@vger.kernel.org
5575 S:      Maintained
5576 F:      drivers/tty/serial/ioc3_serial.c
5577
5578 IOMMU DRIVERS
5579 M:      Joerg Roedel <joro@8bytes.org>
5580 L:      iommu@lists.linux-foundation.org
5581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5582 S:      Maintained
5583 F:      drivers/iommu/
5584
5585 IP MASQUERADING
5586 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5587 S:      Maintained
5588 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5589
5590 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5591 M:      Francois Romieu <romieu@fr.zoreil.com>
5592 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5593 L:      netdev@vger.kernel.org
5594 S:      Maintained
5595 F:      drivers/net/ethernet/icplus/ipg.*
5596
5597 IPATH DRIVER
5598 M:      Mike Marciniszyn <infinipath@intel.com>
5599 L:      linux-rdma@vger.kernel.org
5600 S:      Maintained
5601 F:      drivers/staging/ipath/
5602
5603 IPMI SUBSYSTEM
5604 M:      Corey Minyard <minyard@acm.org>
5605 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5606 W:      http://openipmi.sourceforge.net/
5607 S:      Supported
5608 F:      Documentation/IPMI.txt
5609 F:      drivers/char/ipmi/
5610 F:      include/linux/ipmi*
5611 F:      include/uapi/linux/ipmi*
5612
5613 QCOM AUDIO (ASoC) DRIVERS
5614 M:      Patrick Lai <plai@codeaurora.org>
5615 M:      Banajit Goswami <bgoswami@codeaurora.org>
5616 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5617 S:      Supported
5618 F:      sound/soc/qcom/
5619
5620 IPS SCSI RAID DRIVER
5621 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5622 L:      linux-scsi@vger.kernel.org
5623 W:      http://www.adaptec.com/
5624 S:      Maintained
5625 F:      drivers/scsi/ips*
5626
5627 IPVS
5628 M:      Wensong Zhang <wensong@linux-vs.org>
5629 M:      Simon Horman <horms@verge.net.au>
5630 M:      Julian Anastasov <ja@ssi.bg>
5631 L:      netdev@vger.kernel.org
5632 L:      lvs-devel@vger.kernel.org
5633 S:      Maintained
5634 F:      Documentation/networking/ipvs-sysctl.txt
5635 F:      include/net/ip_vs.h
5636 F:      include/uapi/linux/ip_vs.h
5637 F:      net/netfilter/ipvs/
5638
5639 IPWIRELESS DRIVER
5640 M:      Jiri Kosina <jikos@kernel.org>
5641 M:      David Sterba <dsterba@suse.com>
5642 S:      Odd Fixes
5643 F:      drivers/tty/ipwireless/
5644
5645 IPX NETWORK LAYER
5646 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5647 L:      netdev@vger.kernel.org
5648 S:      Maintained
5649 F:      include/net/ipx.h
5650 F:      include/uapi/linux/ipx.h
5651 F:      net/ipx/
5652
5653 IRDA SUBSYSTEM
5654 M:      Samuel Ortiz <samuel@sortiz.org>
5655 L:      irda-users@lists.sourceforge.net (subscribers-only)
5656 L:      netdev@vger.kernel.org
5657 W:      http://irda.sourceforge.net/
5658 S:      Maintained
5659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5660 F:      Documentation/networking/irda.txt
5661 F:      drivers/net/irda/
5662 F:      include/net/irda/
5663 F:      net/irda/
5664
5665 IRQ SUBSYSTEM
5666 M:      Thomas Gleixner <tglx@linutronix.de>
5667 L:      linux-kernel@vger.kernel.org
5668 S:      Maintained
5669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5670 F:      kernel/irq/
5671
5672 IRQCHIP DRIVERS
5673 M:      Thomas Gleixner <tglx@linutronix.de>
5674 M:      Jason Cooper <jason@lakedaemon.net>
5675 M:      Marc Zyngier <marc.zyngier@arm.com>
5676 L:      linux-kernel@vger.kernel.org
5677 S:      Maintained
5678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5679 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5680 F:      Documentation/devicetree/bindings/interrupt-controller/
5681 F:      drivers/irqchip/
5682
5683 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5684 M:      Jiang Liu <jiang.liu@linux.intel.com>
5685 M:      Marc Zyngier <marc.zyngier@arm.com>
5686 S:      Maintained
5687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5688 F:      Documentation/IRQ-domain.txt
5689 F:      include/linux/irqdomain.h
5690 F:      kernel/irq/irqdomain.c
5691 F:      kernel/irq/msi.c
5692
5693 ISAPNP
5694 M:      Jaroslav Kysela <perex@perex.cz>
5695 S:      Maintained
5696 F:      Documentation/isapnp.txt
5697 F:      drivers/pnp/isapnp/
5698 F:      include/linux/isapnp.h
5699
5700 ISA RADIO MODULE
5701 M:      Hans Verkuil <hverkuil@xs4all.nl>
5702 L:      linux-media@vger.kernel.org
5703 T:      git git://linuxtv.org/media_tree.git
5704 W:      http://linuxtv.org
5705 S:      Maintained
5706 F:      drivers/media/radio/radio-isa*
5707
5708 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5709 M:      Peter Jones <pjones@redhat.com>
5710 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5711 S:      Maintained
5712 F:      drivers/firmware/iscsi_ibft*
5713
5714 ISCSI
5715 M:      Mike Christie <michaelc@cs.wisc.edu>
5716 L:      open-iscsi@googlegroups.com
5717 W:      www.open-iscsi.org
5718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5719 S:      Maintained
5720 F:      drivers/scsi/*iscsi*
5721 F:      include/scsi/*iscsi*
5722
5723 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5724 M:      Or Gerlitz <ogerlitz@mellanox.com>
5725 M:      Sagi Grimberg <sagig@mellanox.com>
5726 M:      Roi Dayan <roid@mellanox.com>
5727 L:      linux-rdma@vger.kernel.org
5728 S:      Supported
5729 W:      http://www.openfabrics.org
5730 W:      www.open-iscsi.org
5731 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5732 F:      drivers/infiniband/ulp/iser/
5733
5734 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5735 M:      Sagi Grimberg <sagig@mellanox.com>
5736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5737 L:      linux-rdma@vger.kernel.org
5738 L:      target-devel@vger.kernel.org
5739 S:      Supported
5740 W:      http://www.linux-iscsi.org
5741 F:      drivers/infiniband/ulp/isert
5742
5743 ISDN SUBSYSTEM
5744 M:      Karsten Keil <isdn@linux-pingi.de>
5745 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5746 L:      netdev@vger.kernel.org
5747 W:      http://www.isdn4linux.de
5748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5749 S:      Maintained
5750 F:      Documentation/isdn/
5751 F:      drivers/isdn/
5752 F:      include/linux/isdn.h
5753 F:      include/linux/isdn/
5754 F:      include/uapi/linux/isdn.h
5755 F:      include/uapi/linux/isdn/
5756
5757 ISDN SUBSYSTEM (Eicon active card driver)
5758 M:      Armin Schindler <mac@melware.de>
5759 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5760 W:      http://www.melware.de
5761 S:      Maintained
5762 F:      drivers/isdn/hardware/eicon/
5763
5764 IT87 HARDWARE MONITORING DRIVER
5765 M:      Jean Delvare <jdelvare@suse.com>
5766 L:      lm-sensors@lm-sensors.org
5767 S:      Maintained
5768 F:      Documentation/hwmon/it87
5769 F:      drivers/hwmon/it87.c
5770
5771 IT913X MEDIA DRIVER
5772 M:      Antti Palosaari <crope@iki.fi>
5773 L:      linux-media@vger.kernel.org
5774 W:      http://linuxtv.org/
5775 W:      http://palosaari.fi/linux/
5776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5777 T:      git git://linuxtv.org/anttip/media_tree.git
5778 S:      Maintained
5779 F:      drivers/media/tuners/it913x*
5780
5781 IVTV VIDEO4LINUX DRIVER
5782 M:      Andy Walls <awalls@md.metrocast.net>
5783 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5784 L:      linux-media@vger.kernel.org
5785 T:      git git://linuxtv.org/media_tree.git
5786 W:      http://www.ivtvdriver.org
5787 S:      Maintained
5788 F:      Documentation/video4linux/*.ivtv
5789 F:      drivers/media/pci/ivtv/
5790 F:      include/uapi/linux/ivtv*
5791
5792 IX2505V MEDIA DRIVER
5793 M:      Malcolm Priestley <tvboxspy@gmail.com>
5794 L:      linux-media@vger.kernel.org
5795 W:      http://linuxtv.org/
5796 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5797 S:      Maintained
5798 F:      drivers/media/dvb-frontends/ix2505v*
5799
5800 JC42.4 TEMPERATURE SENSOR DRIVER
5801 M:      Guenter Roeck <linux@roeck-us.net>
5802 L:      lm-sensors@lm-sensors.org
5803 S:      Maintained
5804 F:      drivers/hwmon/jc42.c
5805 F:      Documentation/hwmon/jc42
5806
5807 JFS FILESYSTEM
5808 M:      Dave Kleikamp <shaggy@kernel.org>
5809 L:      jfs-discussion@lists.sourceforge.net
5810 W:      http://jfs.sourceforge.net/
5811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5812 S:      Maintained
5813 F:      Documentation/filesystems/jfs.txt
5814 F:      fs/jfs/
5815
5816 JME NETWORK DRIVER
5817 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5818 L:      netdev@vger.kernel.org
5819 S:      Maintained
5820 F:      drivers/net/ethernet/jme.*
5821
5822 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5823 M:      David Woodhouse <dwmw2@infradead.org>
5824 L:      linux-mtd@lists.infradead.org
5825 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5826 S:      Maintained
5827 F:      fs/jffs2/
5828 F:      include/uapi/linux/jffs2.h
5829
5830 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5831 M:      "Theodore Ts'o" <tytso@mit.edu>
5832 M:      Jan Kara <jack@suse.com>
5833 L:      linux-ext4@vger.kernel.org
5834 S:      Maintained
5835 F:      fs/jbd2/
5836 F:      include/linux/jbd2.h
5837
5838 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5839 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5840 L:      linux-media@vger.kernel.org
5841 S:      Maintained
5842 F:      drivers/media/platform/rcar_jpu.c
5843
5844 JSM Neo PCI based serial card
5845 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5846 L:      linux-serial@vger.kernel.org
5847 S:      Maintained
5848 F:      drivers/tty/serial/jsm/
5849
5850 K10TEMP HARDWARE MONITORING DRIVER
5851 M:      Clemens Ladisch <clemens@ladisch.de>
5852 L:      lm-sensors@lm-sensors.org
5853 S:      Maintained
5854 F:      Documentation/hwmon/k10temp
5855 F:      drivers/hwmon/k10temp.c
5856
5857 K8TEMP HARDWARE MONITORING DRIVER
5858 M:      Rudolf Marek <r.marek@assembler.cz>
5859 L:      lm-sensors@lm-sensors.org
5860 S:      Maintained
5861 F:      Documentation/hwmon/k8temp
5862 F:      drivers/hwmon/k8temp.c
5863
5864 KCONFIG
5865 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5866 L:      linux-kbuild@vger.kernel.org
5867 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5868 S:      Maintained
5869 F:      Documentation/kbuild/kconfig-language.txt
5870 F:      scripts/kconfig/
5871
5872 KDUMP
5873 M:      Vivek Goyal <vgoyal@redhat.com>
5874 M:      Haren Myneni <hbabu@us.ibm.com>
5875 L:      kexec@lists.infradead.org
5876 W:      http://lse.sourceforge.net/kdump/
5877 S:      Maintained
5878 F:      Documentation/kdump/
5879
5880 KEENE FM RADIO TRANSMITTER DRIVER
5881 M:      Hans Verkuil <hverkuil@xs4all.nl>
5882 L:      linux-media@vger.kernel.org
5883 T:      git git://linuxtv.org/media_tree.git
5884 W:      http://linuxtv.org
5885 S:      Maintained
5886 F:      drivers/media/radio/radio-keene*
5887
5888 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5889 M:      Ian Kent <raven@themaw.net>
5890 L:      autofs@vger.kernel.org
5891 S:      Maintained
5892 F:      fs/autofs4/
5893
5894 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5895 M:      Michal Marek <mmarek@suse.com>
5896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5898 L:      linux-kbuild@vger.kernel.org
5899 S:      Maintained
5900 F:      Documentation/kbuild/
5901 F:      Makefile
5902 F:      scripts/Makefile.*
5903 F:      scripts/basic/
5904 F:      scripts/mk*
5905 F:      scripts/package/
5906
5907 KERNEL JANITORS
5908 L:      kernel-janitors@vger.kernel.org
5909 W:      http://kernelnewbies.org/KernelJanitors
5910 S:      Odd Fixes
5911
5912 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5913 M:      "J. Bruce Fields" <bfields@fieldses.org>
5914 M:      Jeff Layton <jlayton@poochiereds.net>
5915 L:      linux-nfs@vger.kernel.org
5916 W:      http://nfs.sourceforge.net/
5917 S:      Supported
5918 F:      fs/nfsd/
5919 F:      include/uapi/linux/nfsd/
5920 F:      fs/lockd/
5921 F:      fs/nfs_common/
5922 F:      net/sunrpc/
5923 F:      include/linux/lockd/
5924 F:      include/linux/sunrpc/
5925 F:      include/uapi/linux/sunrpc/
5926
5927 KERNEL SELFTEST FRAMEWORK
5928 M:      Shuah Khan <shuahkh@osg.samsung.com>
5929 L:      linux-api@vger.kernel.org
5930 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5931 S:      Maintained
5932 F:      tools/testing/selftests
5933
5934 KERNEL VIRTUAL MACHINE (KVM)
5935 M:      Gleb Natapov <gleb@kernel.org>
5936 M:      Paolo Bonzini <pbonzini@redhat.com>
5937 L:      kvm@vger.kernel.org
5938 W:      http://www.linux-kvm.org
5939 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5940 S:      Supported
5941 F:      Documentation/*/kvm*.txt
5942 F:      Documentation/virtual/kvm/
5943 F:      arch/*/kvm/
5944 F:      arch/x86/kernel/kvm.c
5945 F:      arch/x86/kernel/kvmclock.c
5946 F:      arch/*/include/asm/kvm*
5947 F:      include/linux/kvm*
5948 F:      include/uapi/linux/kvm*
5949 F:      virt/kvm/
5950
5951 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5952 M:      Joerg Roedel <joro@8bytes.org>
5953 L:      kvm@vger.kernel.org
5954 W:      http://kvm.qumranet.com
5955 S:      Maintained
5956 F:      arch/x86/include/asm/svm.h
5957 F:      arch/x86/kvm/svm.c
5958
5959 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5960 M:      Alexander Graf <agraf@suse.com>
5961 L:      kvm-ppc@vger.kernel.org
5962 W:      http://kvm.qumranet.com
5963 T:      git git://github.com/agraf/linux-2.6.git
5964 S:      Supported
5965 F:      arch/powerpc/include/asm/kvm*
5966 F:      arch/powerpc/kvm/
5967
5968 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5969 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5970 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5971 L:      linux-s390@vger.kernel.org
5972 W:      http://www.ibm.com/developerworks/linux/linux390/
5973 S:      Supported
5974 F:      Documentation/s390/kvm.txt
5975 F:      arch/s390/include/asm/kvm*
5976 F:      arch/s390/kvm/
5977
5978 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5979 M:      Christoffer Dall <christoffer.dall@linaro.org>
5980 M:      Marc Zyngier <marc.zyngier@arm.com>
5981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5982 L:      kvmarm@lists.cs.columbia.edu
5983 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5984 S:      Supported
5985 F:      arch/arm/include/uapi/asm/kvm*
5986 F:      arch/arm/include/asm/kvm*
5987 F:      arch/arm/kvm/
5988 F:      virt/kvm/arm/
5989 F:      include/kvm/arm_*
5990
5991 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5992 M:      Christoffer Dall <christoffer.dall@linaro.org>
5993 M:      Marc Zyngier <marc.zyngier@arm.com>
5994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5995 L:      kvmarm@lists.cs.columbia.edu
5996 S:      Maintained
5997 F:      arch/arm64/include/uapi/asm/kvm*
5998 F:      arch/arm64/include/asm/kvm*
5999 F:      arch/arm64/kvm/
6000
6001 KEXEC
6002 M:      Eric Biederman <ebiederm@xmission.com>
6003 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6004 L:      kexec@lists.infradead.org
6005 S:      Maintained
6006 F:      include/linux/kexec.h
6007 F:      include/uapi/linux/kexec.h
6008 F:      kernel/kexec.c
6009
6010 KEYS/KEYRINGS:
6011 M:      David Howells <dhowells@redhat.com>
6012 L:      keyrings@vger.kernel.org
6013 S:      Maintained
6014 F:      Documentation/security/keys.txt
6015 F:      include/linux/key.h
6016 F:      include/linux/key-type.h
6017 F:      include/keys/
6018 F:      security/keys/
6019
6020 KEYS-TRUSTED
6021 M:      David Safford <safford@us.ibm.com>
6022 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6023 L:      linux-security-module@vger.kernel.org
6024 L:      keyrings@vger.kernel.org
6025 S:      Supported
6026 F:      Documentation/security/keys-trusted-encrypted.txt
6027 F:      include/keys/trusted-type.h
6028 F:      security/keys/trusted.c
6029 F:      security/keys/trusted.h
6030
6031 KEYS-ENCRYPTED
6032 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6033 M:      David Safford <safford@us.ibm.com>
6034 L:      linux-security-module@vger.kernel.org
6035 L:      keyrings@vger.kernel.org
6036 S:      Supported
6037 F:      Documentation/security/keys-trusted-encrypted.txt
6038 F:      include/keys/encrypted-type.h
6039 F:      security/keys/encrypted-keys/
6040
6041 KGDB / KDB /debug_core
6042 M:      Jason Wessel <jason.wessel@windriver.com>
6043 W:      http://kgdb.wiki.kernel.org/
6044 L:      kgdb-bugreport@lists.sourceforge.net
6045 S:      Maintained
6046 F:      Documentation/DocBook/kgdb.tmpl
6047 F:      drivers/misc/kgdbts.c
6048 F:      drivers/tty/serial/kgdboc.c
6049 F:      include/linux/kdb.h
6050 F:      include/linux/kgdb.h
6051 F:      kernel/debug/
6052
6053 KMEMCHECK
6054 M:      Vegard Nossum <vegardno@ifi.uio.no>
6055 M:      Pekka Enberg <penberg@kernel.org>
6056 S:      Maintained
6057 F:      Documentation/kmemcheck.txt
6058 F:      arch/x86/include/asm/kmemcheck.h
6059 F:      arch/x86/mm/kmemcheck/
6060 F:      include/linux/kmemcheck.h
6061 F:      mm/kmemcheck.c
6062
6063 KMEMLEAK
6064 M:      Catalin Marinas <catalin.marinas@arm.com>
6065 S:      Maintained
6066 F:      Documentation/kmemleak.txt
6067 F:      include/linux/kmemleak.h
6068 F:      mm/kmemleak.c
6069 F:      mm/kmemleak-test.c
6070
6071 KPROBES
6072 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6073 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6074 M:      "David S. Miller" <davem@davemloft.net>
6075 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6076 S:      Maintained
6077 F:      Documentation/kprobes.txt
6078 F:      include/linux/kprobes.h
6079 F:      kernel/kprobes.c
6080
6081 KS0108 LCD CONTROLLER DRIVER
6082 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6083 W:      http://miguelojeda.es/auxdisplay.htm
6084 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6085 S:      Maintained
6086 F:      Documentation/auxdisplay/ks0108
6087 F:      drivers/auxdisplay/ks0108.c
6088 F:      include/linux/ks0108.h
6089
6090 LAPB module
6091 L:      linux-x25@vger.kernel.org
6092 S:      Orphan
6093 F:      Documentation/networking/lapb-module.txt
6094 F:      include/*/lapb.h
6095 F:      net/lapb/
6096
6097 LASI 53c700 driver for PARISC
6098 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6099 L:      linux-scsi@vger.kernel.org
6100 S:      Maintained
6101 F:      Documentation/scsi/53c700.txt
6102 F:      drivers/scsi/53c700*
6103
6104 LED SUBSYSTEM
6105 M:      Bryan Wu <cooloney@gmail.com>
6106 M:      Richard Purdie <rpurdie@rpsys.net>
6107 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6108 L:      linux-leds@vger.kernel.org
6109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
6110 S:      Maintained
6111 F:      drivers/leds/
6112 F:      include/linux/leds.h
6113
6114 LEGACY EEPROM DRIVER
6115 M:      Jean Delvare <jdelvare@suse.com>
6116 S:      Maintained
6117 F:      Documentation/misc-devices/eeprom
6118 F:      drivers/misc/eeprom/eeprom.c
6119
6120 LEGO USB Tower driver
6121 M:      Juergen Stuber <starblue@users.sourceforge.net>
6122 L:      legousb-devel@lists.sourceforge.net
6123 W:      http://legousb.sourceforge.net/
6124 S:      Maintained
6125 F:      drivers/usb/misc/legousbtower.c
6126
6127 LG2160 MEDIA DRIVER
6128 M:      Michael Krufky <mkrufky@linuxtv.org>
6129 L:      linux-media@vger.kernel.org
6130 W:      http://linuxtv.org/
6131 W:      http://github.com/mkrufky
6132 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6133 T:      git git://linuxtv.org/mkrufky/tuners.git
6134 S:      Maintained
6135 F:      drivers/media/dvb-frontends/lg2160.*
6136
6137 LGDT3305 MEDIA DRIVER
6138 M:      Michael Krufky <mkrufky@linuxtv.org>
6139 L:      linux-media@vger.kernel.org
6140 W:      http://linuxtv.org/
6141 W:      http://github.com/mkrufky
6142 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6143 T:      git git://linuxtv.org/mkrufky/tuners.git
6144 S:      Maintained
6145 F:      drivers/media/dvb-frontends/lgdt3305.*
6146
6147 LGUEST
6148 M:      Rusty Russell <rusty@rustcorp.com.au>
6149 L:      lguest@lists.ozlabs.org
6150 W:      http://lguest.ozlabs.org/
6151 S:      Odd Fixes
6152 F:      arch/x86/include/asm/lguest*.h
6153 F:      arch/x86/lguest/
6154 F:      drivers/lguest/
6155 F:      include/linux/lguest*.h
6156 F:      tools/lguest/
6157
6158 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6159 M:      Tejun Heo <tj@kernel.org>
6160 L:      linux-ide@vger.kernel.org
6161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6162 S:      Maintained
6163 F:      drivers/ata/
6164 F:      include/linux/ata.h
6165 F:      include/linux/libata.h
6166
6167 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6168 M:      Viresh Kumar <vireshk@kernel.org>
6169 L:      linux-ide@vger.kernel.org
6170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6171 S:      Maintained
6172 F:      include/linux/pata_arasan_cf_data.h
6173 F:      drivers/ata/pata_arasan_cf.c
6174
6175 LIBATA PATA DRIVERS
6176 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6177 M:      Tejun Heo <tj@kernel.org>
6178 L:      linux-ide@vger.kernel.org
6179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6180 S:      Maintained
6181 F:      drivers/ata/pata_*.c
6182 F:      drivers/ata/ata_generic.c
6183
6184 LIBATA SATA AHCI PLATFORM devices support
6185 M:      Hans de Goede <hdegoede@redhat.com>
6186 M:      Tejun Heo <tj@kernel.org>
6187 L:      linux-ide@vger.kernel.org
6188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6189 S:      Maintained
6190 F:      drivers/ata/ahci_platform.c
6191 F:      drivers/ata/libahci_platform.c
6192 F:      include/linux/ahci_platform.h
6193
6194 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6195 M:      Mikael Pettersson <mikpelinux@gmail.com>
6196 L:      linux-ide@vger.kernel.org
6197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6198 S:      Maintained
6199 F:      drivers/ata/sata_promise.*
6200
6201 LIBLOCKDEP
6202 M:      Sasha Levin <sasha.levin@oracle.com>
6203 S:      Maintained
6204 F:      tools/lib/lockdep/
6205
6206 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6207 M:      Dan Williams <dan.j.williams@intel.com>
6208 L:      linux-nvdimm@lists.01.org
6209 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6210 S:      Supported
6211 F:      drivers/nvdimm/*
6212 F:      include/linux/nd.h
6213 F:      include/linux/libnvdimm.h
6214 F:      include/uapi/linux/ndctl.h
6215
6216 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6217 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6218 L:      linux-nvdimm@lists.01.org
6219 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6220 S:      Supported
6221 F:      drivers/nvdimm/blk.c
6222 F:      drivers/nvdimm/region_devs.c
6223 F:      drivers/acpi/nfit*
6224
6225 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6226 M:      Vishal Verma <vishal.l.verma@intel.com>
6227 L:      linux-nvdimm@lists.01.org
6228 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6229 S:      Supported
6230 F:      drivers/nvdimm/btt*
6231
6232 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6233 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6234 L:      linux-nvdimm@lists.01.org
6235 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6236 S:      Supported
6237 F:      drivers/nvdimm/pmem.c
6238 F:      include/linux/pmem.h
6239
6240 LINUX FOR IBM pSERIES (RS/6000)
6241 M:      Paul Mackerras <paulus@au.ibm.com>
6242 W:      http://www.ibm.com/linux/ltc/projects/ppc
6243 S:      Supported
6244 F:      arch/powerpc/boot/rs6000.h
6245
6246 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6247 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6248 M:      Paul Mackerras <paulus@samba.org>
6249 M:      Michael Ellerman <mpe@ellerman.id.au>
6250 W:      http://www.penguinppc.org/
6251 L:      linuxppc-dev@lists.ozlabs.org
6252 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6254 S:      Supported
6255 F:      Documentation/powerpc/
6256 F:      arch/powerpc/
6257
6258 LINUX FOR POWER MACINTOSH
6259 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6260 W:      http://www.penguinppc.org/
6261 L:      linuxppc-dev@lists.ozlabs.org
6262 S:      Maintained
6263 F:      arch/powerpc/platforms/powermac/
6264 F:      drivers/macintosh/
6265
6266 LINUX FOR POWERPC EMBEDDED MPC5XXX
6267 M:      Anatolij Gustschin <agust@denx.de>
6268 L:      linuxppc-dev@lists.ozlabs.org
6269 T:      git git://git.denx.de/linux-denx-agust.git
6270 S:      Maintained
6271 F:      arch/powerpc/platforms/512x/
6272 F:      arch/powerpc/platforms/52xx/
6273
6274 LINUX FOR POWERPC EMBEDDED PPC4XX
6275 M:      Alistair Popple <alistair@popple.id.au>
6276 M:      Matt Porter <mporter@kernel.crashing.org>
6277 W:      http://www.penguinppc.org/
6278 L:      linuxppc-dev@lists.ozlabs.org
6279 S:      Maintained
6280 F:      arch/powerpc/platforms/40x/
6281 F:      arch/powerpc/platforms/44x/
6282
6283 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6284 L:      linuxppc-dev@lists.ozlabs.org
6285 S:      Orphan
6286 F:      arch/powerpc/*/*virtex*
6287 F:      arch/powerpc/*/*/*virtex*
6288
6289 LINUX FOR POWERPC EMBEDDED PPC8XX
6290 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6291 W:      http://www.penguinppc.org/
6292 L:      linuxppc-dev@lists.ozlabs.org
6293 S:      Maintained
6294 F:      arch/powerpc/platforms/8xx/
6295
6296 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6297 M:      Scott Wood <scottwood@freescale.com>
6298 M:      Kumar Gala <galak@kernel.crashing.org>
6299 W:      http://www.penguinppc.org/
6300 L:      linuxppc-dev@lists.ozlabs.org
6301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6302 S:      Maintained
6303 F:      arch/powerpc/platforms/83xx/
6304 F:      arch/powerpc/platforms/85xx/
6305
6306 LINUX FOR POWERPC PA SEMI PWRFICIENT
6307 M:      Olof Johansson <olof@lixom.net>
6308 L:      linuxppc-dev@lists.ozlabs.org
6309 S:      Maintained
6310 F:      arch/powerpc/platforms/pasemi/
6311 F:      drivers/*/*pasemi*
6312 F:      drivers/*/*/*pasemi*
6313
6314 LINUX SECURITY MODULE (LSM) FRAMEWORK
6315 M:      Chris Wright <chrisw@sous-sol.org>
6316 L:      linux-security-module@vger.kernel.org
6317 S:      Supported
6318
6319 LIS3LV02D ACCELEROMETER DRIVER
6320 M:      Eric Piel <eric.piel@tremplin-utc.net>
6321 S:      Maintained
6322 F:      Documentation/misc-devices/lis3lv02d
6323 F:      drivers/misc/lis3lv02d/
6324 F:      drivers/platform/x86/hp_accel.c
6325
6326 LIVE PATCHING
6327 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6328 M:      Seth Jennings <sjenning@redhat.com>
6329 M:      Jiri Kosina <jikos@kernel.org>
6330 M:      Vojtech Pavlik <vojtech@suse.com>
6331 S:      Maintained
6332 F:      kernel/livepatch/
6333 F:      include/linux/livepatch.h
6334 F:      arch/x86/include/asm/livepatch.h
6335 F:      arch/x86/kernel/livepatch.c
6336 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6337 F:      samples/livepatch/
6338 L:      live-patching@vger.kernel.org
6339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6340
6341 LLC (802.2)
6342 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6343 S:      Maintained
6344 F:      include/linux/llc.h
6345 F:      include/uapi/linux/llc.h
6346 F:      include/net/llc*
6347 F:      net/llc/
6348
6349 LM73 HARDWARE MONITOR DRIVER
6350 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6351 L:      lm-sensors@lm-sensors.org
6352 S:      Maintained
6353 F:      drivers/hwmon/lm73.c
6354
6355 LM78 HARDWARE MONITOR DRIVER
6356 M:      Jean Delvare <jdelvare@suse.com>
6357 L:      lm-sensors@lm-sensors.org
6358 S:      Maintained
6359 F:      Documentation/hwmon/lm78
6360 F:      drivers/hwmon/lm78.c
6361
6362 LM83 HARDWARE MONITOR DRIVER
6363 M:      Jean Delvare <jdelvare@suse.com>
6364 L:      lm-sensors@lm-sensors.org
6365 S:      Maintained
6366 F:      Documentation/hwmon/lm83
6367 F:      drivers/hwmon/lm83.c
6368
6369 LM90 HARDWARE MONITOR DRIVER
6370 M:      Jean Delvare <jdelvare@suse.com>
6371 L:      lm-sensors@lm-sensors.org
6372 S:      Maintained
6373 F:      Documentation/hwmon/lm90
6374 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6375 F:      drivers/hwmon/lm90.c
6376
6377 LM95234 HARDWARE MONITOR DRIVER
6378 M:      Guenter Roeck <linux@roeck-us.net>
6379 L:      lm-sensors@lm-sensors.org
6380 S:      Maintained
6381 F:      Documentation/hwmon/lm95234
6382 F:      drivers/hwmon/lm95234.c
6383
6384 LME2510 MEDIA DRIVER
6385 M:      Malcolm Priestley <tvboxspy@gmail.com>
6386 L:      linux-media@vger.kernel.org
6387 W:      http://linuxtv.org/
6388 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6389 S:      Maintained
6390 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6391
6392 LOCKDEP AND LOCKSTAT
6393 M:      Peter Zijlstra <peterz@infradead.org>
6394 M:      Ingo Molnar <mingo@redhat.com>
6395 L:      linux-kernel@vger.kernel.org
6396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6397 S:      Maintained
6398 F:      Documentation/locking/lockdep*.txt
6399 F:      Documentation/locking/lockstat.txt
6400 F:      include/linux/lockdep.h
6401 F:      kernel/locking/
6402
6403 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6404 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6405 L:      linux-ntfs-dev@lists.sourceforge.net
6406 W:      http://www.linux-ntfs.org/content/view/19/37/
6407 S:      Maintained
6408 F:      Documentation/ldm.txt
6409 F:      block/partitions/ldm.*
6410
6411 LogFS
6412 M:      Joern Engel <joern@logfs.org>
6413 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6414 L:      logfs@logfs.org
6415 W:      logfs.org
6416 S:      Maintained
6417 F:      fs/logfs/
6418
6419 LPC32XX MACHINE SUPPORT
6420 M:      Roland Stigge <stigge@antcom.de>
6421 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6422 S:      Maintained
6423 F:      arch/arm/mach-lpc32xx/
6424
6425 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6426 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6427 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6428 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6429 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6430 L:      MPT-FusionLinux.pdl@avagotech.com
6431 L:      linux-scsi@vger.kernel.org
6432 W:      http://www.lsilogic.com/support
6433 S:      Supported
6434 F:      drivers/message/fusion/
6435 F:      drivers/scsi/mpt2sas/
6436 F:      drivers/scsi/mpt3sas/
6437
6438 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6439 M:      Matthew Wilcox <matthew@wil.cx>
6440 L:      linux-scsi@vger.kernel.org
6441 S:      Maintained
6442 F:      drivers/scsi/sym53c8xx_2/
6443
6444 LTC4261 HARDWARE MONITOR DRIVER
6445 M:      Guenter Roeck <linux@roeck-us.net>
6446 L:      lm-sensors@lm-sensors.org
6447 S:      Maintained
6448 F:      Documentation/hwmon/ltc4261
6449 F:      drivers/hwmon/ltc4261.c
6450
6451 LTP (Linux Test Project)
6452 M:      Mike Frysinger <vapier@gentoo.org>
6453 M:      Cyril Hrubis <chrubis@suse.cz>
6454 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
6455 M:      Jan Stancek <jstancek@redhat.com>
6456 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6457 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6458 L:      ltp-list@lists.sourceforge.net (subscribers-only)
6459 W:      http://linux-test-project.github.io/
6460 T:      git git://github.com/linux-test-project/ltp.git
6461 S:      Maintained
6462
6463 M32R ARCHITECTURE
6464 W:      http://www.linux-m32r.org/
6465 S:      Orphan
6466 F:      arch/m32r/
6467
6468 M68K ARCHITECTURE
6469 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6470 L:      linux-m68k@lists.linux-m68k.org
6471 W:      http://www.linux-m68k.org/
6472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6473 S:      Maintained
6474 F:      arch/m68k/
6475 F:      drivers/zorro/
6476
6477 M68K ON APPLE MACINTOSH
6478 M:      Joshua Thompson <funaho@jurai.org>
6479 W:      http://www.mac.linux-m68k.org/
6480 L:      linux-m68k@lists.linux-m68k.org
6481 S:      Maintained
6482 F:      arch/m68k/mac/
6483
6484 M68K ON HP9000/300
6485 M:      Philip Blundell <philb@gnu.org>
6486 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6487 S:      Maintained
6488 F:      arch/m68k/hp300/
6489
6490 M88DS3103 MEDIA DRIVER
6491 M:      Antti Palosaari <crope@iki.fi>
6492 L:      linux-media@vger.kernel.org
6493 W:      http://linuxtv.org/
6494 W:      http://palosaari.fi/linux/
6495 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6496 T:      git git://linuxtv.org/anttip/media_tree.git
6497 S:      Maintained
6498 F:      drivers/media/dvb-frontends/m88ds3103*
6499
6500 M88RS2000 MEDIA DRIVER
6501 M:      Malcolm Priestley <tvboxspy@gmail.com>
6502 L:      linux-media@vger.kernel.org
6503 W:      http://linuxtv.org/
6504 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6505 S:      Maintained
6506 F:      drivers/media/dvb-frontends/m88rs2000*
6507
6508 MA901 MASTERKIT USB FM RADIO DRIVER
6509 M:      Alexey Klimov <klimov.linux@gmail.com>
6510 L:      linux-media@vger.kernel.org
6511 T:      git git://linuxtv.org/media_tree.git
6512 S:      Maintained
6513 F:      drivers/media/radio/radio-ma901.c
6514
6515 MAC80211
6516 M:      Johannes Berg <johannes@sipsolutions.net>
6517 L:      linux-wireless@vger.kernel.org
6518 W:      http://wireless.kernel.org/
6519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6521 S:      Maintained
6522 F:      Documentation/networking/mac80211-injection.txt
6523 F:      include/net/mac80211.h
6524 F:      net/mac80211/
6525
6526 MACVLAN DRIVER
6527 M:      Patrick McHardy <kaber@trash.net>
6528 L:      netdev@vger.kernel.org
6529 S:      Maintained
6530 F:      drivers/net/macvlan.c
6531 F:      include/linux/if_macvlan.h
6532
6533 MAILBOX API
6534 M:      Jassi Brar <jassisinghbrar@gmail.com>
6535 L:      linux-kernel@vger.kernel.org
6536 S:      Maintained
6537 F:      drivers/mailbox/
6538 F:      include/linux/mailbox_client.h
6539 F:      include/linux/mailbox_controller.h
6540
6541 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6542 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6543 W:      http://www.kernel.org/doc/man-pages
6544 L:      linux-man@vger.kernel.org
6545 S:      Maintained
6546
6547 MARVELL ARMADA DRM SUPPORT
6548 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6549 S:      Maintained
6550 F:      drivers/gpu/drm/armada/
6551
6552 MARVELL 88E6352 DSA support
6553 M:      Guenter Roeck <linux@roeck-us.net>
6554 S:      Maintained
6555 F:      drivers/net/dsa/mv88e6352.c
6556
6557 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6558 M:      Mirko Lindner <mlindner@marvell.com>
6559 M:      Stephen Hemminger <stephen@networkplumber.org>
6560 L:      netdev@vger.kernel.org
6561 S:      Maintained
6562 F:      drivers/net/ethernet/marvell/sk*
6563
6564 MARVELL LIBERTAS WIRELESS DRIVER
6565 L:      libertas-dev@lists.infradead.org
6566 S:      Orphan
6567 F:      drivers/net/wireless/libertas/
6568
6569 MARVELL MV643XX ETHERNET DRIVER
6570 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6571 L:      netdev@vger.kernel.org
6572 S:      Maintained
6573 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6574 F:      include/linux/mv643xx.h
6575
6576 MARVELL MVNETA ETHERNET DRIVER
6577 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6578 L:      netdev@vger.kernel.org
6579 S:      Maintained
6580 F:      drivers/net/ethernet/marvell/mvneta.*
6581
6582 MARVELL MWIFIEX WIRELESS DRIVER
6583 M:      Amitkumar Karwar <akarwar@marvell.com>
6584 M:      Nishant Sarmukadam <nishants@marvell.com>
6585 L:      linux-wireless@vger.kernel.org
6586 S:      Maintained
6587 F:      drivers/net/wireless/mwifiex/
6588
6589 MARVELL MWL8K WIRELESS DRIVER
6590 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6591 L:      linux-wireless@vger.kernel.org
6592 S:      Odd Fixes
6593 F:      drivers/net/wireless/mwl8k.c
6594
6595 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6596 M:      Nicolas Pitre <nico@fluxnic.net>
6597 S:      Odd Fixes
6598 F:      drivers/mmc/host/mvsdio.*
6599
6600 MATROX FRAMEBUFFER DRIVER
6601 L:      linux-fbdev@vger.kernel.org
6602 S:      Orphan
6603 F:      drivers/video/fbdev/matrox/matroxfb_*
6604 F:      include/uapi/linux/matroxfb.h
6605
6606 MAX16065 HARDWARE MONITOR DRIVER
6607 M:      Guenter Roeck <linux@roeck-us.net>
6608 L:      lm-sensors@lm-sensors.org
6609 S:      Maintained
6610 F:      Documentation/hwmon/max16065
6611 F:      drivers/hwmon/max16065.c
6612
6613 MAX20751 HARDWARE MONITOR DRIVER
6614 M:      Guenter Roeck <linux@roeck-us.net>
6615 L:      lm-sensors@lm-sensors.org
6616 S:      Maintained
6617 F:      Documentation/hwmon/max20751
6618 F:      drivers/hwmon/max20751.c
6619
6620 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6621 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6622 L:      lm-sensors@lm-sensors.org
6623 S:      Maintained
6624 F:      Documentation/hwmon/max6650
6625 F:      drivers/hwmon/max6650.c
6626
6627 MAX6697 HARDWARE MONITOR DRIVER
6628 M:      Guenter Roeck <linux@roeck-us.net>
6629 L:      lm-sensors@lm-sensors.org
6630 S:      Maintained
6631 F:      Documentation/hwmon/max6697
6632 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6633 F:      drivers/hwmon/max6697.c
6634 F:      include/linux/platform_data/max6697.h
6635
6636 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6637 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6638 L:      linux-pm@vger.kernel.org
6639 S:      Supported
6640 F:      drivers/power/max14577_charger.c
6641 F:      drivers/power/max77693_charger.c
6642
6643 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6644 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6645 L:      linux-kernel@vger.kernel.org
6646 S:      Supported
6647 F:      drivers/*/*max77802.c
6648 F:      Documentation/devicetree/bindings/*/*max77802.txt
6649 F:      include/dt-bindings/*/*max77802.h
6650
6651 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6652 M:      Chanwoo Choi <cw00.choi@samsung.com>
6653 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6654 L:      linux-kernel@vger.kernel.org
6655 S:      Supported
6656 F:      drivers/*/max14577.c
6657 F:      drivers/*/max77686.c
6658 F:      drivers/*/max77693.c
6659 F:      drivers/extcon/extcon-max14577.c
6660 F:      drivers/extcon/extcon-max77693.c
6661 F:      drivers/rtc/rtc-max77686.c
6662 F:      drivers/clk/clk-max77686.c
6663 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6664 F:      Documentation/devicetree/bindings/*/max77686.txt
6665 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6666 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6667 F:      include/linux/mfd/max14577*.h
6668 F:      include/linux/mfd/max77686*.h
6669 F:      include/linux/mfd/max77693*.h
6670
6671 MAXIRADIO FM RADIO RECEIVER DRIVER
6672 M:      Hans Verkuil <hverkuil@xs4all.nl>
6673 L:      linux-media@vger.kernel.org
6674 T:      git git://linuxtv.org/media_tree.git
6675 W:      http://linuxtv.org
6676 S:      Maintained
6677 F:      drivers/media/radio/radio-maxiradio*
6678
6679 MEDIA DRIVERS FOR RENESAS - VSP1
6680 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6681 L:      linux-media@vger.kernel.org
6682 L:      linux-sh@vger.kernel.org
6683 T:      git git://linuxtv.org/media_tree.git
6684 S:      Supported
6685 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6686 F:      drivers/media/platform/vsp1/
6687
6688 MEDIA DRIVERS FOR ASCOT2E
6689 M:      Sergey Kozlov <serjk@netup.ru>
6690 L:      linux-media@vger.kernel.org
6691 W:      http://linuxtv.org
6692 W:      http://netup.tv/
6693 T:      git git://linuxtv.org/media_tree.git
6694 S:      Supported
6695 F:      drivers/media/dvb-frontends/ascot2e*
6696
6697 MEDIA DRIVERS FOR CXD2841ER
6698 M:      Sergey Kozlov <serjk@netup.ru>
6699 L:      linux-media@vger.kernel.org
6700 W:      http://linuxtv.org/
6701 W:      http://netup.tv/
6702 T:      git git://linuxtv.org/media_tree.git
6703 S:      Supported
6704 F:      drivers/media/dvb-frontends/cxd2841er*
6705
6706 MEDIA DRIVERS FOR HORUS3A
6707 M:      Sergey Kozlov <serjk@netup.ru>
6708 L:      linux-media@vger.kernel.org
6709 W:      http://linuxtv.org/
6710 W:      http://netup.tv/
6711 T:      git git://linuxtv.org/media_tree.git
6712 S:      Supported
6713 F:      drivers/media/dvb-frontends/horus3a*
6714
6715 MEDIA DRIVERS FOR LNBH25
6716 M:      Sergey Kozlov <serjk@netup.ru>
6717 L:      linux-media@vger.kernel.org
6718 W:      http://linuxtv.org/
6719 W:      http://netup.tv/
6720 T:      git git://linuxtv.org/media_tree.git
6721 S:      Supported
6722 F:      drivers/media/dvb-frontends/lnbh25*
6723
6724 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6725 M:      Sergey Kozlov <serjk@netup.ru>
6726 L:      linux-media@vger.kernel.org
6727 W:      http://linuxtv.org/
6728 W:      http://netup.tv/
6729 T:      git git://linuxtv.org/media_tree.git
6730 S:      Supported
6731 F:      drivers/media/pci/netup_unidvb/*
6732
6733 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6734 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6735 P:      LinuxTV.org Project
6736 L:      linux-media@vger.kernel.org
6737 W:      http://linuxtv.org
6738 Q:      http://patchwork.kernel.org/project/linux-media/list/
6739 T:      git git://linuxtv.org/media_tree.git
6740 S:      Maintained
6741 F:      Documentation/dvb/
6742 F:      Documentation/video4linux/
6743 F:      Documentation/DocBook/media/
6744 F:      drivers/media/
6745 F:      drivers/staging/media/
6746 F:      include/media/
6747 F:      include/uapi/linux/dvb/
6748 F:      include/uapi/linux/videodev2.h
6749 F:      include/uapi/linux/media.h
6750 F:      include/uapi/linux/v4l2-*
6751 F:      include/uapi/linux/meye.h
6752 F:      include/uapi/linux/ivtv*
6753 F:      include/uapi/linux/uvcvideo.h
6754
6755 MEDIATEK MT7601U WIRELESS LAN DRIVER
6756 M:      Jakub Kicinski <kubakici@wp.pl>
6757 L:      linux-wireless@vger.kernel.org
6758 S:      Maintained
6759 F:      drivers/net/wireless/mediatek/mt7601u/
6760
6761 MEGARAID SCSI/SAS DRIVERS
6762 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6763 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6764 M:      Uday Lingala <uday.lingala@avagotech.com>
6765 L:      megaraidlinux.pdl@avagotech.com
6766 L:      linux-scsi@vger.kernel.org
6767 W:      http://www.lsi.com
6768 S:      Maintained
6769 F:      Documentation/scsi/megaraid.txt
6770 F:      drivers/scsi/megaraid.*
6771 F:      drivers/scsi/megaraid/
6772
6773 MELLANOX ETHERNET DRIVER (mlx4_en)
6774 M:      Amir Vadai <amirv@mellanox.com>
6775 M:      Ido Shamay <idos@mellanox.com>
6776 L:      netdev@vger.kernel.org
6777 S:      Supported
6778 W:      http://www.mellanox.com
6779 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6780 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6781
6782 MELLANOX ETHERNET SWITCH DRIVERS
6783 M:      Jiri Pirko <jiri@mellanox.com>
6784 M:      Ido Schimmel <idosch@mellanox.com>
6785 L:      netdev@vger.kernel.org
6786 S:      Supported
6787 W:      http://www.mellanox.com
6788 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6789 F:      drivers/net/ethernet/mellanox/mlxsw/
6790
6791 MEMORY MANAGEMENT
6792 L:      linux-mm@kvack.org
6793 W:      http://www.linux-mm.org
6794 S:      Maintained
6795 F:      include/linux/mm.h
6796 F:      include/linux/gfp.h
6797 F:      include/linux/mmzone.h
6798 F:      include/linux/memory_hotplug.h
6799 F:      include/linux/vmalloc.h
6800 F:      mm/
6801
6802 MEMORY TECHNOLOGY DEVICES (MTD)
6803 M:      David Woodhouse <dwmw2@infradead.org>
6804 M:      Brian Norris <computersforpeace@gmail.com>
6805 L:      linux-mtd@lists.infradead.org
6806 W:      http://www.linux-mtd.infradead.org/
6807 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6808 T:      git git://git.infradead.org/linux-mtd.git
6809 T:      git git://git.infradead.org/l2-mtd.git
6810 S:      Maintained
6811 F:      drivers/mtd/
6812 F:      include/linux/mtd/
6813 F:      include/uapi/mtd/
6814
6815 MEN A21 WATCHDOG DRIVER
6816 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6817 L:      linux-watchdog@vger.kernel.org
6818 S:      Maintained
6819 F:      drivers/watchdog/mena21_wdt.c
6820
6821 MEN CHAMELEON BUS (mcb)
6822 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6823 S:      Maintained
6824 F:      drivers/mcb/
6825 F:      include/linux/mcb.h
6826 F:      Documentation/men-chameleon-bus.txt
6827
6828 MEN F21BMC (Board Management Controller)
6829 M:      Andreas Werner <andreas.werner@men.de>
6830 S:      Supported
6831 F:      drivers/mfd/menf21bmc.c
6832 F:      drivers/watchdog/menf21bmc_wdt.c
6833 F:      drivers/leds/leds-menf21bmc.c
6834 F:      drivers/hwmon/menf21bmc_hwmon.c
6835 F:      Documentation/hwmon/menf21bmc
6836
6837 METAG ARCHITECTURE
6838 M:      James Hogan <james.hogan@imgtec.com>
6839 L:      linux-metag@vger.kernel.org
6840 S:      Supported
6841 F:      arch/metag/
6842 F:      Documentation/metag/
6843 F:      Documentation/devicetree/bindings/metag/
6844 F:      drivers/clocksource/metag_generic.c
6845 F:      drivers/irqchip/irq-metag.c
6846 F:      drivers/irqchip/irq-metag-ext.c
6847 F:      drivers/tty/metag_da.c
6848
6849 MICROBLAZE ARCHITECTURE
6850 M:      Michal Simek <monstr@monstr.eu>
6851 W:      http://www.monstr.eu/fdt/
6852 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6853 S:      Supported
6854 F:      arch/microblaze/
6855
6856 MICROTEK X6 SCANNER
6857 M:      Oliver Neukum <oliver@neukum.org>
6858 S:      Maintained
6859 F:      drivers/usb/image/microtek.*
6860
6861 MIPS
6862 M:      Ralf Baechle <ralf@linux-mips.org>
6863 L:      linux-mips@linux-mips.org
6864 W:      http://www.linux-mips.org/
6865 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6866 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6867 S:      Supported
6868 F:      Documentation/mips/
6869 F:      arch/mips/
6870
6871 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6872 M:      Hans Verkuil <hverkuil@xs4all.nl>
6873 L:      linux-media@vger.kernel.org
6874 T:      git git://linuxtv.org/media_tree.git
6875 W:      http://linuxtv.org
6876 S:      Odd Fixes
6877 F:      drivers/media/radio/radio-miropcm20*
6878
6879 Mellanox MLX5 core VPI driver
6880 M:      Eli Cohen <eli@mellanox.com>
6881 L:      netdev@vger.kernel.org
6882 L:      linux-rdma@vger.kernel.org
6883 W:      http://www.mellanox.com
6884 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6885 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6886 T:      git git://openfabrics.org/~eli/connect-ib.git
6887 S:      Supported
6888 F:      drivers/net/ethernet/mellanox/mlx5/core/
6889 F:      include/linux/mlx5/
6890
6891 Mellanox MLX5 IB driver
6892 M:      Eli Cohen <eli@mellanox.com>
6893 L:      linux-rdma@vger.kernel.org
6894 W:      http://www.mellanox.com
6895 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6896 T:      git git://openfabrics.org/~eli/connect-ib.git
6897 S:      Supported
6898 F:      include/linux/mlx5/
6899 F:      drivers/infiniband/hw/mlx5/
6900
6901 MN88472 MEDIA DRIVER
6902 M:      Antti Palosaari <crope@iki.fi>
6903 L:      linux-media@vger.kernel.org
6904 W:      http://linuxtv.org/
6905 W:      http://palosaari.fi/linux/
6906 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6907 T:      git git://linuxtv.org/anttip/media_tree.git
6908 S:      Maintained
6909 F:      drivers/staging/media/mn88472/
6910 F:      drivers/media/dvb-frontends/mn88472.h
6911
6912 MN88473 MEDIA DRIVER
6913 M:      Antti Palosaari <crope@iki.fi>
6914 L:      linux-media@vger.kernel.org
6915 W:      http://linuxtv.org/
6916 W:      http://palosaari.fi/linux/
6917 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6918 T:      git git://linuxtv.org/anttip/media_tree.git
6919 S:      Maintained
6920 F:      drivers/staging/media/mn88473/
6921 F:      drivers/media/dvb-frontends/mn88473.h
6922
6923 MODULE SUPPORT
6924 M:      Rusty Russell <rusty@rustcorp.com.au>
6925 S:      Maintained
6926 F:      include/linux/module.h
6927 F:      kernel/module.c
6928
6929 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6930 W:      http://popies.net/meye/
6931 S:      Orphan
6932 F:      Documentation/video4linux/meye.txt
6933 F:      drivers/media/pci/meye/
6934 F:      include/uapi/linux/meye.h
6935
6936 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6937 M:      Jiri Slaby <jirislaby@gmail.com>
6938 S:      Maintained
6939 F:      Documentation/serial/moxa-smartio
6940 F:      drivers/tty/mxser.*
6941
6942 MR800 AVERMEDIA USB FM RADIO DRIVER
6943 M:      Alexey Klimov <klimov.linux@gmail.com>
6944 L:      linux-media@vger.kernel.org
6945 T:      git git://linuxtv.org/media_tree.git
6946 S:      Maintained
6947 F:      drivers/media/radio/radio-mr800.c
6948
6949 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6950 M:      Alan Ott <alan@signal11.us>
6951 L:      linux-wpan@vger.kernel.org
6952 S:      Maintained
6953 F:      drivers/net/ieee802154/mrf24j40.c
6954
6955 MSI LAPTOP SUPPORT
6956 M:      "Lee, Chun-Yi" <jlee@suse.com>
6957 L:      platform-driver-x86@vger.kernel.org
6958 S:      Maintained
6959 F:      drivers/platform/x86/msi-laptop.c
6960
6961 MSI WMI SUPPORT
6962 L:      platform-driver-x86@vger.kernel.org
6963 S:      Orphan
6964 F:      drivers/platform/x86/msi-wmi.c
6965
6966 MSI001 MEDIA DRIVER
6967 M:      Antti Palosaari <crope@iki.fi>
6968 L:      linux-media@vger.kernel.org
6969 W:      http://linuxtv.org/
6970 W:      http://palosaari.fi/linux/
6971 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6972 T:      git git://linuxtv.org/anttip/media_tree.git
6973 S:      Maintained
6974 F:      drivers/media/tuners/msi001*
6975
6976 MSI2500 MEDIA DRIVER
6977 M:      Antti Palosaari <crope@iki.fi>
6978 L:      linux-media@vger.kernel.org
6979 W:      http://linuxtv.org/
6980 W:      http://palosaari.fi/linux/
6981 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6982 T:      git git://linuxtv.org/anttip/media_tree.git
6983 S:      Maintained
6984 F:      drivers/media/usb/msi2500/
6985
6986 MSYSTEMS DISKONCHIP G3 MTD DRIVER
6987 M:      Robert Jarzmik <robert.jarzmik@free.fr>
6988 L:      linux-mtd@lists.infradead.org
6989 S:      Maintained
6990 F:      drivers/mtd/devices/docg3*
6991
6992 MT9M032 APTINA SENSOR DRIVER
6993 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6994 L:      linux-media@vger.kernel.org
6995 T:      git git://linuxtv.org/media_tree.git
6996 S:      Maintained
6997 F:      drivers/media/i2c/mt9m032.c
6998 F:      include/media/mt9m032.h
6999
7000 MT9P031 APTINA CAMERA SENSOR
7001 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7002 L:      linux-media@vger.kernel.org
7003 T:      git git://linuxtv.org/media_tree.git
7004 S:      Maintained
7005 F:      drivers/media/i2c/mt9p031.c
7006 F:      include/media/mt9p031.h
7007
7008 MT9T001 APTINA CAMERA SENSOR
7009 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7010 L:      linux-media@vger.kernel.org
7011 T:      git git://linuxtv.org/media_tree.git
7012 S:      Maintained
7013 F:      drivers/media/i2c/mt9t001.c
7014 F:      include/media/mt9t001.h
7015
7016 MT9V032 APTINA CAMERA SENSOR
7017 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7018 L:      linux-media@vger.kernel.org
7019 T:      git git://linuxtv.org/media_tree.git
7020 S:      Maintained
7021 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7022 F:      drivers/media/i2c/mt9v032.c
7023 F:      include/media/mt9v032.h
7024
7025 MULTIFUNCTION DEVICES (MFD)
7026 M:      Samuel Ortiz <sameo@linux.intel.com>
7027 M:      Lee Jones <lee.jones@linaro.org>
7028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7029 S:      Supported
7030 F:      drivers/mfd/
7031 F:      include/linux/mfd/
7032
7033 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7034 M:      Ulf Hansson <ulf.hansson@linaro.org>
7035 L:      linux-mmc@vger.kernel.org
7036 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7037 S:      Maintained
7038 F:      drivers/mmc/
7039 F:      include/linux/mmc/
7040 F:      include/uapi/linux/mmc/
7041
7042 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7043 S:      Orphan
7044 F:      drivers/mmc/host/mmc_spi.c
7045 F:      include/linux/spi/mmc_spi.h
7046
7047 MULTISOUND SOUND DRIVER
7048 M:      Andrew Veliath <andrewtv@usa.net>
7049 S:      Maintained
7050 F:      Documentation/sound/oss/MultiSound
7051 F:      sound/oss/msnd*
7052
7053 MULTITECH MULTIPORT CARD (ISICOM)
7054 S:      Orphan
7055 F:      drivers/tty/isicom.c
7056 F:      include/linux/isicom.h
7057
7058 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7059 M:      Felipe Balbi <balbi@ti.com>
7060 L:      linux-usb@vger.kernel.org
7061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7062 S:      Maintained
7063 F:      drivers/usb/musb/
7064
7065 MXL5007T MEDIA DRIVER
7066 M:      Michael Krufky <mkrufky@linuxtv.org>
7067 L:      linux-media@vger.kernel.org
7068 W:      http://linuxtv.org/
7069 W:      http://github.com/mkrufky
7070 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7071 T:      git git://linuxtv.org/mkrufky/tuners.git
7072 S:      Maintained
7073 F:      drivers/media/tuners/mxl5007t.*
7074
7075 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7076 M:      Hyong-Youb Kim <hykim@myri.com>
7077 L:      netdev@vger.kernel.org
7078 W:      https://www.myricom.com/support/downloads/myri10ge.html
7079 S:      Supported
7080 F:      drivers/net/ethernet/myricom/myri10ge/
7081
7082 NATSEMI ETHERNET DRIVER (DP8381x)
7083 S:      Orphan
7084 F:      drivers/net/ethernet/natsemi/natsemi.c
7085
7086 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7087 M:      Daniel Mack <zonque@gmail.com>
7088 S:      Maintained
7089 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7090 W:      http://www.native-instruments.com
7091 F:      sound/usb/caiaq/
7092
7093 NCP FILESYSTEM
7094 M:      Petr Vandrovec <petr@vandrovec.name>
7095 S:      Odd Fixes
7096 F:      fs/ncpfs/
7097
7098 NCR 5380 SCSI DRIVERS
7099 M:      Finn Thain <fthain@telegraphics.com.au>
7100 M:      Michael Schmitz <schmitzmic@gmail.com>
7101 L:      linux-scsi@vger.kernel.org
7102 S:      Maintained
7103 F:      Documentation/scsi/g_NCR5380.txt
7104 F:      drivers/scsi/NCR5380.*
7105 F:      drivers/scsi/arm/cumana_1.c
7106 F:      drivers/scsi/arm/oak.c
7107 F:      drivers/scsi/atari_NCR5380.c
7108 F:      drivers/scsi/atari_scsi.*
7109 F:      drivers/scsi/dmx3191d.c
7110 F:      drivers/scsi/dtc.*
7111 F:      drivers/scsi/g_NCR5380.*
7112 F:      drivers/scsi/g_NCR5380_mmio.c
7113 F:      drivers/scsi/mac_scsi.*
7114 F:      drivers/scsi/pas16.*
7115 F:      drivers/scsi/sun3_scsi.*
7116 F:      drivers/scsi/sun3_scsi_vme.c
7117 F:      drivers/scsi/t128.*
7118
7119 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7120 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7121 L:      linux-scsi@vger.kernel.org
7122 S:      Maintained
7123 F:      drivers/scsi/NCR_D700.*
7124
7125 NCT6775 HARDWARE MONITOR DRIVER
7126 M:      Guenter Roeck <linux@roeck-us.net>
7127 L:      lm-sensors@lm-sensors.org
7128 S:      Maintained
7129 F:      Documentation/hwmon/nct6775
7130 F:      drivers/hwmon/nct6775.c
7131
7132 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7133 M:      Faisal Latif <faisal.latif@intel.com>
7134 L:      linux-rdma@vger.kernel.org
7135 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7136 S:      Supported
7137 F:      drivers/infiniband/hw/nes/
7138
7139 NETEM NETWORK EMULATOR
7140 M:      Stephen Hemminger <stephen@networkplumber.org>
7141 L:      netem@lists.linux-foundation.org
7142 S:      Maintained
7143 F:      net/sched/sch_netem.c
7144
7145 NETERION 10GbE DRIVERS (s2io/vxge)
7146 M:      Jon Mason <jdmason@kudzu.us>
7147 L:      netdev@vger.kernel.org
7148 S:      Supported
7149 F:      Documentation/networking/s2io.txt
7150 F:      Documentation/networking/vxge.txt
7151 F:      drivers/net/ethernet/neterion/
7152
7153 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7154 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7155 M:      Patrick McHardy <kaber@trash.net>
7156 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7157 L:      netfilter-devel@vger.kernel.org
7158 L:      coreteam@netfilter.org
7159 W:      http://www.netfilter.org/
7160 W:      http://www.iptables.org/
7161 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7164 S:      Supported
7165 F:      include/linux/netfilter*
7166 F:      include/linux/netfilter/
7167 F:      include/net/netfilter/
7168 F:      include/uapi/linux/netfilter*
7169 F:      include/uapi/linux/netfilter/
7170 F:      net/*/netfilter.c
7171 F:      net/*/netfilter/
7172 F:      net/netfilter/
7173 F:      net/bridge/br_netfilter*.c
7174
7175 NETLABEL
7176 M:      Paul Moore <paul@paul-moore.com>
7177 W:      http://netlabel.sf.net
7178 L:      netdev@vger.kernel.org
7179 S:      Maintained
7180 F:      Documentation/netlabel/
7181 F:      include/net/netlabel.h
7182 F:      net/netlabel/
7183
7184 NETROM NETWORK LAYER
7185 M:      Ralf Baechle <ralf@linux-mips.org>
7186 L:      linux-hams@vger.kernel.org
7187 W:      http://www.linux-ax25.org/
7188 S:      Maintained
7189 F:      include/net/netrom.h
7190 F:      include/uapi/linux/netrom.h
7191 F:      net/netrom/
7192
7193 NETWORK BLOCK DEVICE (NBD)
7194 M:      Markus Pargmann <mpa@pengutronix.de>
7195 S:      Maintained
7196 L:      nbd-general@lists.sourceforge.net
7197 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7198 F:      Documentation/blockdev/nbd.txt
7199 F:      drivers/block/nbd.c
7200 F:      include/uapi/linux/nbd.h
7201
7202 NETWORK DROP MONITOR
7203 M:      Neil Horman <nhorman@tuxdriver.com>
7204 L:      netdev@vger.kernel.org
7205 S:      Maintained
7206 W:      https://fedorahosted.org/dropwatch/
7207 F:      net/core/drop_monitor.c
7208
7209 NETWORKING [GENERAL]
7210 M:      "David S. Miller" <davem@davemloft.net>
7211 L:      netdev@vger.kernel.org
7212 W:      http://www.linuxfoundation.org/en/Net
7213 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7216 S:      Maintained
7217 F:      net/
7218 F:      include/net/
7219 F:      include/linux/in.h
7220 F:      include/linux/net.h
7221 F:      include/linux/netdevice.h
7222 F:      include/uapi/linux/in.h
7223 F:      include/uapi/linux/net.h
7224 F:      include/uapi/linux/netdevice.h
7225 F:      include/uapi/linux/net_namespace.h
7226 F:      tools/net/
7227 F:      tools/testing/selftests/net/
7228 F:      lib/random32.c
7229 F:      lib/test_bpf.c
7230
7231 NETWORKING [IPv4/IPv6]
7232 M:      "David S. Miller" <davem@davemloft.net>
7233 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7234 M:      James Morris <jmorris@namei.org>
7235 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7236 M:      Patrick McHardy <kaber@trash.net>
7237 L:      netdev@vger.kernel.org
7238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7239 S:      Maintained
7240 F:      net/ipv4/
7241 F:      net/ipv6/
7242 F:      include/net/ip*
7243 F:      arch/x86/net/*
7244
7245 NETWORKING [IPSEC]
7246 M:      Steffen Klassert <steffen.klassert@secunet.com>
7247 M:      Herbert Xu <herbert@gondor.apana.org.au>
7248 M:      "David S. Miller" <davem@davemloft.net>
7249 L:      netdev@vger.kernel.org
7250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7252 S:      Maintained
7253 F:      net/core/flow.c
7254 F:      net/xfrm/
7255 F:      net/key/
7256 F:      net/ipv4/xfrm*
7257 F:      net/ipv4/esp4.c
7258 F:      net/ipv4/ah4.c
7259 F:      net/ipv4/ipcomp.c
7260 F:      net/ipv4/ip_vti.c
7261 F:      net/ipv6/xfrm*
7262 F:      net/ipv6/esp6.c
7263 F:      net/ipv6/ah6.c
7264 F:      net/ipv6/ipcomp6.c
7265 F:      net/ipv6/ip6_vti.c
7266 F:      include/uapi/linux/xfrm.h
7267 F:      include/net/xfrm.h
7268
7269 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7270 M:      Paul Moore <paul@paul-moore.com>
7271 L:      netdev@vger.kernel.org
7272 S:      Maintained
7273
7274 NETWORKING [WIRELESS]
7275 L:      linux-wireless@vger.kernel.org
7276 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7277
7278 NETWORKING DRIVERS
7279 L:      netdev@vger.kernel.org
7280 W:      http://www.linuxfoundation.org/en/Net
7281 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7284 S:      Odd Fixes
7285 F:      drivers/net/
7286 F:      include/linux/if_*
7287 F:      include/linux/netdevice.h
7288 F:      include/linux/arcdevice.h
7289 F:      include/linux/etherdevice.h
7290 F:      include/linux/fcdevice.h
7291 F:      include/linux/fddidevice.h
7292 F:      include/linux/hippidevice.h
7293 F:      include/linux/inetdevice.h
7294 F:      include/uapi/linux/if_*
7295 F:      include/uapi/linux/netdevice.h
7296
7297 NETWORKING DRIVERS (WIRELESS)
7298 M:      Kalle Valo <kvalo@codeaurora.org>
7299 L:      linux-wireless@vger.kernel.org
7300 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7302 S:      Maintained
7303 F:      drivers/net/wireless/
7304
7305 NETXEN (1/10) GbE SUPPORT
7306 M:      Manish Chopra <manish.chopra@qlogic.com>
7307 M:      Sony Chacko <sony.chacko@qlogic.com>
7308 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7309 L:      netdev@vger.kernel.org
7310 W:      http://www.qlogic.com
7311 S:      Supported
7312 F:      drivers/net/ethernet/qlogic/netxen/
7313
7314 NFC SUBSYSTEM
7315 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7316 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7317 M:      Samuel Ortiz <sameo@linux.intel.com>
7318 L:      linux-wireless@vger.kernel.org
7319 L:      linux-nfc@lists.01.org (subscribers-only)
7320 S:      Supported
7321 F:      net/nfc/
7322 F:      include/net/nfc/
7323 F:      include/uapi/linux/nfc.h
7324 F:      drivers/nfc/
7325 F:      include/linux/platform_data/pn544.h
7326 F:      Documentation/devicetree/bindings/net/nfc/
7327
7328 NFS, SUNRPC, AND LOCKD CLIENTS
7329 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7330 M:      Anna Schumaker <anna.schumaker@netapp.com>
7331 L:      linux-nfs@vger.kernel.org
7332 W:      http://client.linux-nfs.org
7333 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7334 S:      Maintained
7335 F:      fs/lockd/
7336 F:      fs/nfs/
7337 F:      fs/nfs_common/
7338 F:      net/sunrpc/
7339 F:      include/linux/lockd/
7340 F:      include/linux/nfs*
7341 F:      include/linux/sunrpc/
7342 F:      include/uapi/linux/nfs*
7343 F:      include/uapi/linux/sunrpc/
7344
7345 NILFS2 FILESYSTEM
7346 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7347 L:      linux-nilfs@vger.kernel.org
7348 W:      http://nilfs.sourceforge.net/
7349 T:      git git://github.com/konis/nilfs2.git
7350 S:      Supported
7351 F:      Documentation/filesystems/nilfs2.txt
7352 F:      fs/nilfs2/
7353 F:      include/linux/nilfs2_fs.h
7354
7355 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7356 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7357 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7358 S:      Maintained
7359 F:      Documentation/scsi/NinjaSCSI.txt
7360 F:      drivers/scsi/pcmcia/nsp_*
7361
7362 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7363 M:      GOTO Masanori <gotom@debian.or.jp>
7364 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7365 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7366 S:      Maintained
7367 F:      Documentation/scsi/NinjaSCSI.txt
7368 F:      drivers/scsi/nsp32*
7369
7370 NIOS2 ARCHITECTURE
7371 M:      Ley Foon Tan <lftan@altera.com>
7372 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7373 T:      git git://git.rocketboards.org/linux-socfpga-next.git
7374 S:      Maintained
7375 F:      arch/nios2/
7376
7377 NOKIA N900 POWER SUPPLY DRIVERS
7378 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7379 S:      Maintained
7380 F:      include/linux/power/bq2415x_charger.h
7381 F:      include/linux/power/bq27x00_battery.h
7382 F:      include/linux/power/isp1704_charger.h
7383 F:      drivers/power/bq2415x_charger.c
7384 F:      drivers/power/bq27x00_battery.c
7385 F:      drivers/power/isp1704_charger.c
7386 F:      drivers/power/rx51_battery.c
7387
7388 NTB DRIVER CORE
7389 M:      Jon Mason <jdmason@kudzu.us>
7390 M:      Dave Jiang <dave.jiang@intel.com>
7391 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7392 S:      Supported
7393 W:      https://github.com/jonmason/ntb/wiki
7394 T:      git git://github.com/jonmason/ntb.git
7395 F:      drivers/ntb/
7396 F:      drivers/net/ntb_netdev.c
7397 F:      include/linux/ntb.h
7398 F:      include/linux/ntb_transport.h
7399
7400 NTB INTEL DRIVER
7401 M:      Jon Mason <jdmason@kudzu.us>
7402 M:      Dave Jiang <dave.jiang@intel.com>
7403 S:      Supported
7404 W:      https://github.com/jonmason/ntb/wiki
7405 T:      git git://github.com/jonmason/ntb.git
7406 F:      drivers/ntb/hw/intel/
7407
7408 NTFS FILESYSTEM
7409 M:      Anton Altaparmakov <anton@tuxera.com>
7410 L:      linux-ntfs-dev@lists.sourceforge.net
7411 W:      http://www.tuxera.com/
7412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7413 S:      Supported
7414 F:      Documentation/filesystems/ntfs.txt
7415 F:      fs/ntfs/
7416
7417 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7418 M:      Antonino Daplas <adaplas@gmail.com>
7419 L:      linux-fbdev@vger.kernel.org
7420 S:      Maintained
7421 F:      drivers/video/fbdev/riva/
7422 F:      drivers/video/fbdev/nvidia/
7423
7424 NVM EXPRESS DRIVER
7425 M:      Matthew Wilcox <willy@linux.intel.com>
7426 L:      linux-nvme@lists.infradead.org
7427 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7428 S:      Supported
7429 F:      drivers/block/nvme*
7430 F:      include/linux/nvme.h
7431
7432 NXP-NCI NFC DRIVER
7433 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7434 R:      Charles Gorand <charles.gorand@effinnov.com>
7435 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7436 S:      Supported
7437 F:      drivers/nfc/nxp-nci
7438
7439 NXP TDA998X DRM DRIVER
7440 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7441 S:      Supported
7442 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7443 F:      include/drm/i2c/tda998x.h
7444
7445 NXP TFA9879 DRIVER
7446 M:      Peter Rosin <peda@axentia.se>
7447 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7448 S:      Maintained
7449 F:      sound/soc/codecs/tfa9879*
7450
7451 OMAP SUPPORT
7452 M:      Tony Lindgren <tony@atomide.com>
7453 L:      linux-omap@vger.kernel.org
7454 W:      http://www.muru.com/linux/omap/
7455 W:      http://linux.omap.com/
7456 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7458 S:      Maintained
7459 F:      arch/arm/*omap*/
7460 F:      arch/arm/configs/omap1_defconfig
7461 F:      arch/arm/configs/omap2plus_defconfig
7462 F:      drivers/i2c/busses/i2c-omap.c
7463 F:      drivers/irqchip/irq-omap-intc.c
7464 F:      drivers/mfd/*omap*.c
7465 F:      drivers/mfd/menelaus.c
7466 F:      drivers/mfd/palmas.c
7467 F:      drivers/mfd/tps65217.c
7468 F:      drivers/mfd/tps65218.c
7469 F:      drivers/mfd/tps65910.c
7470 F:      drivers/mfd/twl-core.[ch]
7471 F:      drivers/mfd/twl4030*.c
7472 F:      drivers/mfd/twl6030*.c
7473 F:      drivers/mfd/twl6040*.c
7474 F:      drivers/regulator/palmas-regulator*.c
7475 F:      drivers/regulator/pbias-regulator.c
7476 F:      drivers/regulator/tps65217-regulator.c
7477 F:      drivers/regulator/tps65218-regulator.c
7478 F:      drivers/regulator/tps65910-regulator.c
7479 F:      drivers/regulator/twl-regulator.c
7480 F:      include/linux/i2c-omap.h
7481
7482 OMAP DEVICE TREE SUPPORT
7483 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7484 M:      Tony Lindgren <tony@atomide.com>
7485 L:      linux-omap@vger.kernel.org
7486 L:      devicetree@vger.kernel.org
7487 S:      Maintained
7488 F:      arch/arm/boot/dts/*omap*
7489 F:      arch/arm/boot/dts/*am3*
7490 F:      arch/arm/boot/dts/*am4*
7491 F:      arch/arm/boot/dts/*am5*
7492 F:      arch/arm/boot/dts/*dra7*
7493
7494 OMAP CLOCK FRAMEWORK SUPPORT
7495 M:      Paul Walmsley <paul@pwsan.com>
7496 L:      linux-omap@vger.kernel.org
7497 S:      Maintained
7498 F:      arch/arm/*omap*/*clock*
7499
7500 OMAP POWER MANAGEMENT SUPPORT
7501 M:      Kevin Hilman <khilman@deeprootsystems.com>
7502 L:      linux-omap@vger.kernel.org
7503 S:      Maintained
7504 F:      arch/arm/*omap*/*pm*
7505 F:      drivers/cpufreq/omap-cpufreq.c
7506
7507 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7508 M:      Rajendra Nayak <rnayak@ti.com>
7509 M:      Paul Walmsley <paul@pwsan.com>
7510 L:      linux-omap@vger.kernel.org
7511 S:      Maintained
7512 F:      arch/arm/mach-omap2/prm*
7513
7514 OMAP AUDIO SUPPORT
7515 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7516 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7517 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7518 L:      linux-omap@vger.kernel.org
7519 S:      Maintained
7520 F:      sound/soc/omap/
7521
7522 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7523 M:      Roger Quadros <rogerq@ti.com>
7524 M:      Tony Lindgren <tony@atomide.com>
7525 L:      linux-omap@vger.kernel.org
7526 S:      Maintained
7527 F:      drivers/memory/omap-gpmc.c
7528 F:      arch/arm/mach-omap2/*gpmc*
7529
7530 OMAP FRAMEBUFFER SUPPORT
7531 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7532 L:      linux-fbdev@vger.kernel.org
7533 L:      linux-omap@vger.kernel.org
7534 S:      Maintained
7535 F:      drivers/video/fbdev/omap/
7536
7537 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7538 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7539 L:      linux-omap@vger.kernel.org
7540 L:      linux-fbdev@vger.kernel.org
7541 S:      Maintained
7542 F:      drivers/video/fbdev/omap2/
7543 F:      Documentation/arm/OMAP/DSS
7544
7545 OMAP HARDWARE SPINLOCK SUPPORT
7546 M:      Ohad Ben-Cohen <ohad@wizery.com>
7547 L:      linux-omap@vger.kernel.org
7548 S:      Maintained
7549 F:      drivers/hwspinlock/omap_hwspinlock.c
7550
7551 OMAP MMC SUPPORT
7552 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7553 L:      linux-omap@vger.kernel.org
7554 S:      Maintained
7555 F:      drivers/mmc/host/omap.c
7556
7557 OMAP HS MMC SUPPORT
7558 L:      linux-mmc@vger.kernel.org
7559 L:      linux-omap@vger.kernel.org
7560 S:      Orphan
7561 F:      drivers/mmc/host/omap_hsmmc.c
7562
7563 OMAP RANDOM NUMBER GENERATOR SUPPORT
7564 M:      Deepak Saxena <dsaxena@plexity.net>
7565 S:      Maintained
7566 F:      drivers/char/hw_random/omap-rng.c
7567
7568 OMAP HWMOD SUPPORT
7569 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7570 M:      Paul Walmsley <paul@pwsan.com>
7571 L:      linux-omap@vger.kernel.org
7572 S:      Maintained
7573 F:      arch/arm/mach-omap2/omap_hwmod.*
7574
7575 OMAP HWMOD DATA
7576 M:      Paul Walmsley <paul@pwsan.com>
7577 L:      linux-omap@vger.kernel.org
7578 S:      Maintained
7579 F:      arch/arm/mach-omap2/omap_hwmod*data*
7580
7581 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7582 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7583 L:      linux-omap@vger.kernel.org
7584 S:      Maintained
7585 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7586
7587 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7588 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7589 L:      linux-media@vger.kernel.org
7590 S:      Maintained
7591 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7592 F:      drivers/media/platform/omap3isp/
7593 F:      drivers/staging/media/omap4iss/
7594
7595 OMAP USB SUPPORT
7596 M:      Felipe Balbi <balbi@ti.com>
7597 L:      linux-usb@vger.kernel.org
7598 L:      linux-omap@vger.kernel.org
7599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7600 S:      Maintained
7601 F:      drivers/usb/*/*omap*
7602 F:      arch/arm/*omap*/usb*
7603
7604 OMAP GPIO DRIVER
7605 M:      Javier Martinez Canillas <javier@dowhile0.org>
7606 M:      Santosh Shilimkar <ssantosh@kernel.org>
7607 M:      Kevin Hilman <khilman@deeprootsystems.com>
7608 L:      linux-omap@vger.kernel.org
7609 S:      Maintained
7610 F:      drivers/gpio/gpio-omap.c
7611
7612 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7613 M:      Mark Jackson <mpfj@newflow.co.uk>
7614 L:      linux-omap@vger.kernel.org
7615 S:      Maintained
7616 F:      arch/arm/boot/dts/am335x-nano.dts
7617
7618 OMFS FILESYSTEM
7619 M:      Bob Copeland <me@bobcopeland.com>
7620 L:      linux-karma-devel@lists.sourceforge.net
7621 S:      Maintained
7622 F:      Documentation/filesystems/omfs.txt
7623 F:      fs/omfs/
7624
7625 OMNIKEY CARDMAN 4000 DRIVER
7626 M:      Harald Welte <laforge@gnumonks.org>
7627 S:      Maintained
7628 F:      drivers/char/pcmcia/cm4000_cs.c
7629 F:      include/linux/cm4000_cs.h
7630 F:      include/uapi/linux/cm4000_cs.h
7631
7632 OMNIKEY CARDMAN 4040 DRIVER
7633 M:      Harald Welte <laforge@gnumonks.org>
7634 S:      Maintained
7635 F:      drivers/char/pcmcia/cm4040_cs.*
7636
7637 OMNIVISION OV7670 SENSOR DRIVER
7638 M:      Jonathan Corbet <corbet@lwn.net>
7639 L:      linux-media@vger.kernel.org
7640 T:      git git://linuxtv.org/media_tree.git
7641 S:      Maintained
7642 F:      drivers/media/i2c/ov7670.c
7643
7644 ONENAND FLASH DRIVER
7645 M:      Kyungmin Park <kyungmin.park@samsung.com>
7646 L:      linux-mtd@lists.infradead.org
7647 S:      Maintained
7648 F:      drivers/mtd/onenand/
7649 F:      include/linux/mtd/onenand*.h
7650
7651 ONSTREAM SCSI TAPE DRIVER
7652 M:      Willem Riede <osst@riede.org>
7653 L:      osst-users@lists.sourceforge.net
7654 L:      linux-scsi@vger.kernel.org
7655 S:      Maintained
7656 F:      Documentation/scsi/osst.txt
7657 F:      drivers/scsi/osst.*
7658 F:      drivers/scsi/osst_*.h
7659 F:      drivers/scsi/st.h
7660
7661 OPENCORES I2C BUS DRIVER
7662 M:      Peter Korsgaard <jacmet@sunsite.dk>
7663 L:      linux-i2c@vger.kernel.org
7664 S:      Maintained
7665 F:      Documentation/i2c/busses/i2c-ocores
7666 F:      drivers/i2c/busses/i2c-ocores.c
7667
7668 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7669 M:      Grant Likely <grant.likely@linaro.org>
7670 M:      Rob Herring <robh+dt@kernel.org>
7671 L:      devicetree@vger.kernel.org
7672 W:      http://www.devicetree.org/
7673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7674 S:      Maintained
7675 F:      drivers/of/
7676 F:      include/linux/of*.h
7677 F:      scripts/dtc/
7678
7679 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7680 M:      Rob Herring <robh+dt@kernel.org>
7681 M:      Pawel Moll <pawel.moll@arm.com>
7682 M:      Mark Rutland <mark.rutland@arm.com>
7683 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7684 M:      Kumar Gala <galak@codeaurora.org>
7685 L:      devicetree@vger.kernel.org
7686 S:      Maintained
7687 F:      Documentation/devicetree/
7688 F:      arch/*/boot/dts/
7689 F:      include/dt-bindings/
7690
7691 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7692 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7693 L:      devicetree@vger.kernel.org
7694 S:      Maintained
7695 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7696 F:      Documentation/devicetree/overlay-notes.txt
7697 F:      drivers/of/overlay.c
7698 F:      drivers/of/resolver.c
7699
7700 OPENRISC ARCHITECTURE
7701 M:      Jonas Bonn <jonas@southpole.se>
7702 W:      http://openrisc.net
7703 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7704 S:      Maintained
7705 T:      git git://openrisc.net/~jonas/linux
7706 F:      arch/openrisc/
7707
7708 OPENVSWITCH
7709 M:      Pravin Shelar <pshelar@nicira.com>
7710 L:      netdev@vger.kernel.org
7711 L:      dev@openvswitch.org
7712 W:      http://openvswitch.org
7713 S:      Maintained
7714 F:      net/openvswitch/
7715 F:      include/uapi/linux/openvswitch.h
7716
7717 OPL4 DRIVER
7718 M:      Clemens Ladisch <clemens@ladisch.de>
7719 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7720 T:      git git://git.alsa-project.org/alsa-kernel.git
7721 S:      Maintained
7722 F:      sound/drivers/opl4/
7723
7724 OPROFILE
7725 M:      Robert Richter <rric@kernel.org>
7726 L:      oprofile-list@lists.sf.net
7727 S:      Maintained
7728 F:      arch/*/include/asm/oprofile*.h
7729 F:      arch/*/oprofile/
7730 F:      drivers/oprofile/
7731 F:      include/linux/oprofile.h
7732
7733 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7734 M:      Mark Fasheh <mfasheh@suse.com>
7735 M:      Joel Becker <jlbec@evilplan.org>
7736 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7737 W:      http://ocfs2.wiki.kernel.org
7738 S:      Supported
7739 F:      Documentation/filesystems/ocfs2.txt
7740 F:      Documentation/filesystems/dlmfs.txt
7741 F:      fs/ocfs2/
7742
7743 ORINOCO DRIVER
7744 L:      linux-wireless@vger.kernel.org
7745 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7746 W:      http://www.nongnu.org/orinoco/
7747 S:      Orphan
7748 F:      drivers/net/wireless/orinoco/
7749
7750 OSD LIBRARY and FILESYSTEM
7751 M:      Boaz Harrosh <ooo@electrozaur.com>
7752 M:      Benny Halevy <bhalevy@primarydata.com>
7753 L:      osd-dev@open-osd.org
7754 W:      http://open-osd.org
7755 T:      git git://git.open-osd.org/open-osd.git
7756 S:      Maintained
7757 F:      drivers/scsi/osd/
7758 F:      include/scsi/osd_*
7759 F:      fs/exofs/
7760
7761 OVERLAY FILESYSTEM
7762 M:      Miklos Szeredi <miklos@szeredi.hu>
7763 L:      linux-unionfs@vger.kernel.org
7764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7765 S:      Supported
7766 F:      fs/overlayfs/
7767 F:      Documentation/filesystems/overlayfs.txt
7768
7769 P54 WIRELESS DRIVER
7770 M:      Christian Lamparter <chunkeey@googlemail.com>
7771 L:      linux-wireless@vger.kernel.org
7772 W:      http://wireless.kernel.org/en/users/Drivers/p54
7773 S:      Maintained
7774 F:      drivers/net/wireless/p54/
7775
7776 PA SEMI ETHERNET DRIVER
7777 M:      Olof Johansson <olof@lixom.net>
7778 L:      netdev@vger.kernel.org
7779 S:      Maintained
7780 F:      drivers/net/ethernet/pasemi/*
7781
7782 PA SEMI SMBUS DRIVER
7783 M:      Olof Johansson <olof@lixom.net>
7784 L:      linux-i2c@vger.kernel.org
7785 S:      Maintained
7786 F:      drivers/i2c/busses/i2c-pasemi.c
7787
7788 PADATA PARALLEL EXECUTION MECHANISM
7789 M:      Steffen Klassert <steffen.klassert@secunet.com>
7790 L:      linux-crypto@vger.kernel.org
7791 S:      Maintained
7792 F:      kernel/padata.c
7793 F:      include/linux/padata.h
7794 F:      Documentation/padata.txt
7795
7796 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7797 M:      Harald Welte <laforge@gnumonks.org>
7798 L:      platform-driver-x86@vger.kernel.org
7799 S:      Maintained
7800 F:      drivers/platform/x86/panasonic-laptop.c
7801
7802 PANASONIC MN10300/AM33/AM34 PORT
7803 M:      David Howells <dhowells@redhat.com>
7804 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7805 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7806 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7807 S:      Maintained
7808 F:      Documentation/mn10300/
7809 F:      arch/mn10300/
7810
7811 PARALLEL PORT SUBSYSTEM
7812 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7813 M:      Sudip Mukherjee <sudip@vectorindia.org>
7814 L:      linux-parport@lists.infradead.org (subscribers-only)
7815 S:      Maintained
7816 F:      drivers/parport/
7817 F:      include/linux/parport*.h
7818 F:      drivers/char/ppdev.c
7819 F:      include/uapi/linux/ppdev.h
7820 F:      Documentation/parport*.txt
7821
7822 PARAVIRT_OPS INTERFACE
7823 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7824 M:      Chris Wright <chrisw@sous-sol.org>
7825 M:      Alok Kataria <akataria@vmware.com>
7826 M:      Rusty Russell <rusty@rustcorp.com.au>
7827 L:      virtualization@lists.linux-foundation.org
7828 S:      Supported
7829 F:      Documentation/virtual/paravirt_ops.txt
7830 F:      arch/*/kernel/paravirt*
7831 F:      arch/*/include/asm/paravirt.h
7832
7833 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7834 M:      Tim Waugh <tim@cyberelk.net>
7835 L:      linux-parport@lists.infradead.org (subscribers-only)
7836 S:      Maintained
7837 F:      Documentation/blockdev/paride.txt
7838 F:      drivers/block/paride/
7839
7840 PARISC ARCHITECTURE
7841 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7842 M:      Helge Deller <deller@gmx.de>
7843 L:      linux-parisc@vger.kernel.org
7844 W:      http://www.parisc-linux.org/
7845 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7848 S:      Maintained
7849 F:      arch/parisc/
7850 F:      Documentation/parisc/
7851 F:      drivers/parisc/
7852 F:      drivers/char/agp/parisc-agp.c
7853 F:      drivers/input/serio/gscps2.c
7854 F:      drivers/parport/parport_gsc.*
7855 F:      drivers/tty/serial/8250/8250_gsc.c
7856 F:      drivers/video/fbdev/sti*
7857 F:      drivers/video/console/sti*
7858 F:      drivers/video/logo/logo_parisc*
7859
7860 PC87360 HARDWARE MONITORING DRIVER
7861 M:      Jim Cromie <jim.cromie@gmail.com>
7862 L:      lm-sensors@lm-sensors.org
7863 S:      Maintained
7864 F:      Documentation/hwmon/pc87360
7865 F:      drivers/hwmon/pc87360.c
7866
7867 PC8736x GPIO DRIVER
7868 M:      Jim Cromie <jim.cromie@gmail.com>
7869 S:      Maintained
7870 F:      drivers/char/pc8736x_gpio.c
7871
7872 PC87427 HARDWARE MONITORING DRIVER
7873 M:      Jean Delvare <jdelvare@suse.com>
7874 L:      lm-sensors@lm-sensors.org
7875 S:      Maintained
7876 F:      Documentation/hwmon/pc87427
7877 F:      drivers/hwmon/pc87427.c
7878
7879 PCA9532 LED DRIVER
7880 M:      Riku Voipio <riku.voipio@iki.fi>
7881 S:      Maintained
7882 F:      drivers/leds/leds-pca9532.c
7883 F:      include/linux/leds-pca9532.h
7884
7885 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7886 M:      Guenter Roeck <linux@roeck-us.net>
7887 L:      linux-i2c@vger.kernel.org
7888 S:      Maintained
7889 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7890
7891 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7892 M:      Khalid Aziz <khalid@gonehiking.org>
7893 S:      Maintained
7894 F:      drivers/firmware/pcdp.*
7895
7896 PCI ERROR RECOVERY
7897 M:      Linas Vepstas <linasvepstas@gmail.com>
7898 L:      linux-pci@vger.kernel.org
7899 S:      Supported
7900 F:      Documentation/PCI/pci-error-recovery.txt
7901
7902 PCI SUBSYSTEM
7903 M:      Bjorn Helgaas <bhelgaas@google.com>
7904 L:      linux-pci@vger.kernel.org
7905 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7907 S:      Supported
7908 F:      Documentation/PCI/
7909 F:      drivers/pci/
7910 F:      include/linux/pci*
7911 F:      arch/x86/pci/
7912 F:      arch/x86/kernel/quirks.c
7913
7914 PCI DRIVER FOR ARM VERSATILE PLATFORM
7915 M:      Rob Herring <robh@kernel.org>
7916 L:      linux-pci@vger.kernel.org
7917 L:      linux-arm-kernel@lists.infradead.org
7918 S:      Maintained
7919 F:      Documentation/devicetree/bindings/pci/versatile.txt
7920 F:      drivers/pci/host/pci-versatile.c
7921
7922 PCI DRIVER FOR APPLIEDMICRO XGENE
7923 M:      Tanmay Inamdar <tinamdar@apm.com>
7924 L:      linux-pci@vger.kernel.org
7925 L:      linux-arm-kernel@lists.infradead.org
7926 S:      Maintained
7927 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7928 F:      drivers/pci/host/pci-xgene.c
7929
7930 PCI DRIVER FOR FREESCALE LAYERSCAPE
7931 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7932 M:      Mingkai Hu <mingkai.hu@freescale.com>
7933 M:      Roy Zang <tie-fei.zang@freescale.com>
7934 L:      linuxppc-dev@lists.ozlabs.org
7935 L:      linux-pci@vger.kernel.org
7936 L:      linux-arm-kernel@lists.infradead.org
7937 S:      Maintained
7938 F:      drivers/pci/host/*layerscape*
7939
7940 PCI DRIVER FOR IMX6
7941 M:      Richard Zhu <Richard.Zhu@freescale.com>
7942 M:      Lucas Stach <l.stach@pengutronix.de>
7943 L:      linux-pci@vger.kernel.org
7944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7945 S:      Maintained
7946 F:      drivers/pci/host/*imx6*
7947
7948 PCI DRIVER FOR TI KEYSTONE
7949 M:      Murali Karicheri <m-karicheri2@ti.com>
7950 L:      linux-pci@vger.kernel.org
7951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7952 S:      Maintained
7953 F:      drivers/pci/host/*keystone*
7954
7955 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7956 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7957 M:      Jason Cooper <jason@lakedaemon.net>
7958 L:      linux-pci@vger.kernel.org
7959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7960 S:      Maintained
7961 F:      drivers/pci/host/*mvebu*
7962
7963 PCI DRIVER FOR NVIDIA TEGRA
7964 M:      Thierry Reding <thierry.reding@gmail.com>
7965 L:      linux-tegra@vger.kernel.org
7966 L:      linux-pci@vger.kernel.org
7967 S:      Supported
7968 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
7969 F:      drivers/pci/host/pci-tegra.c
7970
7971 PCI DRIVER FOR TI DRA7XX
7972 M:      Kishon Vijay Abraham I <kishon@ti.com>
7973 L:      linux-omap@vger.kernel.org
7974 L:      linux-pci@vger.kernel.org
7975 S:      Supported
7976 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
7977 F:      drivers/pci/host/pci-dra7xx.c
7978
7979 PCI DRIVER FOR RENESAS R-CAR
7980 M:      Simon Horman <horms@verge.net.au>
7981 L:      linux-pci@vger.kernel.org
7982 L:      linux-sh@vger.kernel.org
7983 S:      Maintained
7984 F:      drivers/pci/host/*rcar*
7985
7986 PCI DRIVER FOR SAMSUNG EXYNOS
7987 M:      Jingoo Han <jingoohan1@gmail.com>
7988 L:      linux-pci@vger.kernel.org
7989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7990 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7991 S:      Maintained
7992 F:      drivers/pci/host/pci-exynos.c
7993
7994 PCI DRIVER FOR SYNOPSIS DESIGNWARE
7995 M:      Jingoo Han <jingoohan1@gmail.com>
7996 M:      Pratyush Anand <pratyush.anand@gmail.com>
7997 L:      linux-pci@vger.kernel.org
7998 S:      Maintained
7999 F:      drivers/pci/host/*designware*
8000
8001 PCI DRIVER FOR GENERIC OF HOSTS
8002 M:      Will Deacon <will.deacon@arm.com>
8003 L:      linux-pci@vger.kernel.org
8004 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8005 S:      Maintained
8006 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8007 F:      drivers/pci/host/pci-host-generic.c
8008
8009 PCIE DRIVER FOR ST SPEAR13XX
8010 M:      Pratyush Anand <pratyush.anand@gmail.com>
8011 L:      linux-pci@vger.kernel.org
8012 S:      Maintained
8013 F:      drivers/pci/host/*spear*
8014
8015 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8016 M:      Duc Dang <dhdang@apm.com>
8017 L:      linux-pci@vger.kernel.org
8018 L:      linux-arm-kernel@lists.infradead.org
8019 S:      Maintained
8020 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8021 F:      drivers/pci/host/pci-xgene-msi.c
8022
8023 PCMCIA SUBSYSTEM
8024 P:      Linux PCMCIA Team
8025 L:      linux-pcmcia@lists.infradead.org
8026 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8028 S:      Maintained
8029 F:      Documentation/pcmcia/
8030 F:      drivers/pcmcia/
8031 F:      include/pcmcia/
8032
8033 PCNET32 NETWORK DRIVER
8034 M:      Don Fry <pcnet32@frontier.com>
8035 L:      netdev@vger.kernel.org
8036 S:      Maintained
8037 F:      drivers/net/ethernet/amd/pcnet32.c
8038
8039 PCRYPT PARALLEL CRYPTO ENGINE
8040 M:      Steffen Klassert <steffen.klassert@secunet.com>
8041 L:      linux-crypto@vger.kernel.org
8042 S:      Maintained
8043 F:      crypto/pcrypt.c
8044 F:      include/crypto/pcrypt.h
8045
8046 PER-CPU MEMORY ALLOCATOR
8047 M:      Tejun Heo <tj@kernel.org>
8048 M:      Christoph Lameter <cl@linux-foundation.org>
8049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8050 S:      Maintained
8051 F:      include/linux/percpu*.h
8052 F:      mm/percpu*.c
8053 F:      arch/*/include/asm/percpu.h
8054
8055 PER-TASK DELAY ACCOUNTING
8056 M:      Balbir Singh <bsingharora@gmail.com>
8057 S:      Maintained
8058 F:      include/linux/delayacct.h
8059 F:      kernel/delayacct.c
8060
8061 PERFORMANCE EVENTS SUBSYSTEM
8062 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8063 M:      Ingo Molnar <mingo@redhat.com>
8064 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8065 L:      linux-kernel@vger.kernel.org
8066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8067 S:      Supported
8068 F:      kernel/events/*
8069 F:      include/linux/perf_event.h
8070 F:      include/uapi/linux/perf_event.h
8071 F:      arch/*/kernel/perf_event*.c
8072 F:      arch/*/kernel/*/perf_event*.c
8073 F:      arch/*/kernel/*/*/perf_event*.c
8074 F:      arch/*/include/asm/perf_event.h
8075 F:      arch/*/kernel/perf_callchain.c
8076 F:      tools/perf/
8077
8078 PERSONALITY HANDLING
8079 M:      Christoph Hellwig <hch@infradead.org>
8080 L:      linux-abi-devel@lists.sourceforge.net
8081 S:      Maintained
8082 F:      include/linux/personality.h
8083 F:      include/uapi/linux/personality.h
8084
8085 PHONET PROTOCOL
8086 M:      Remi Denis-Courmont <courmisch@gmail.com>
8087 S:      Supported
8088 F:      Documentation/networking/phonet.txt
8089 F:      include/linux/phonet.h
8090 F:      include/net/phonet/
8091 F:      include/uapi/linux/phonet.h
8092 F:      net/phonet/
8093
8094 PHRAM MTD DRIVER
8095 M:      Joern Engel <joern@lazybastard.org>
8096 L:      linux-mtd@lists.infradead.org
8097 S:      Maintained
8098 F:      drivers/mtd/devices/phram.c
8099
8100 PICOLCD HID DRIVER
8101 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8102 L:      linux-input@vger.kernel.org
8103 S:      Maintained
8104 F:      drivers/hid/hid-picolcd*
8105
8106 PICOXCELL SUPPORT
8107 M:      Jamie Iles <jamie@jamieiles.com>
8108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8109 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8110 S:      Supported
8111 F:      arch/arm/boot/dts/picoxcell*
8112 F:      arch/arm/mach-picoxcell/
8113 F:      drivers/crypto/picoxcell*
8114
8115 PIN CONTROL SUBSYSTEM
8116 M:      Linus Walleij <linus.walleij@linaro.org>
8117 L:      linux-gpio@vger.kernel.org
8118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8119 S:      Maintained
8120 F:      drivers/pinctrl/
8121 F:      include/linux/pinctrl/
8122
8123 PIN CONTROLLER - ATMEL AT91
8124 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8126 S:      Maintained
8127 F:      drivers/pinctrl/pinctrl-at91.*
8128
8129 PIN CONTROLLER - INTEL
8130 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8131 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8132 S:      Maintained
8133 F:      drivers/pinctrl/intel/
8134
8135 PIN CONTROLLER - RENESAS
8136 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8137 L:      linux-sh@vger.kernel.org
8138 S:      Maintained
8139 F:      drivers/pinctrl/sh-pfc/
8140
8141 PIN CONTROLLER - SAMSUNG
8142 M:      Tomasz Figa <tomasz.figa@gmail.com>
8143 M:      Thomas Abraham <thomas.abraham@linaro.org>
8144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8145 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8146 S:      Maintained
8147 F:      drivers/pinctrl/samsung/
8148
8149 PIN CONTROLLER - ST SPEAR
8150 M:      Viresh Kumar <vireshk@kernel.org>
8151 L:      spear-devel@list.st.com
8152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8153 W:      http://www.st.com/spear
8154 S:      Maintained
8155 F:      drivers/pinctrl/spear/
8156
8157 PKTCDVD DRIVER
8158 M:      Jiri Kosina <jikos@kernel.org>
8159 S:      Maintained
8160 F:      drivers/block/pktcdvd.c
8161 F:      include/linux/pktcdvd.h
8162 F:      include/uapi/linux/pktcdvd.h
8163
8164 PKUNITY SOC DRIVERS
8165 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8166 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8167 S:      Maintained
8168 T:      git git://github.com/gxt/linux.git
8169 F:      drivers/input/serio/i8042-unicore32io.h
8170 F:      drivers/i2c/busses/i2c-puv3.c
8171 F:      drivers/video/fbdev/fb-puv3.c
8172 F:      drivers/rtc/rtc-puv3.c
8173
8174 PMBUS HARDWARE MONITORING DRIVERS
8175 M:      Guenter Roeck <linux@roeck-us.net>
8176 L:      lm-sensors@lm-sensors.org
8177 W:      http://www.lm-sensors.org/
8178 W:      http://www.roeck-us.net/linux/drivers/
8179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8180 S:      Maintained
8181 F:      Documentation/hwmon/pmbus
8182 F:      drivers/hwmon/pmbus/
8183 F:      include/linux/i2c/pmbus.h
8184
8185 PMC SIERRA MaxRAID DRIVER
8186 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
8187 L:      linux-scsi@vger.kernel.org
8188 W:      http://www.pmc-sierra.com/
8189 S:      Supported
8190 F:      drivers/scsi/pmcraid.*
8191
8192 PMC SIERRA PM8001 DRIVER
8193 M:      xjtuwjp@gmail.com
8194 M:      lindar_liu@usish.com
8195 L:      pmchba@pmcs.com
8196 L:      linux-scsi@vger.kernel.org
8197 S:      Supported
8198 F:      drivers/scsi/pm8001/
8199
8200 POSIX CLOCKS and TIMERS
8201 M:      Thomas Gleixner <tglx@linutronix.de>
8202 L:      linux-kernel@vger.kernel.org
8203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8204 S:      Maintained
8205 F:      fs/timerfd.c
8206 F:      include/linux/timer*
8207 F:      kernel/time/*timer*
8208
8209 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8210 M:      Sebastian Reichel <sre@kernel.org>
8211 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8212 M:      David Woodhouse <dwmw2@infradead.org>
8213 L:      linux-pm@vger.kernel.org
8214 T:      git git://git.infradead.org/battery-2.6.git
8215 S:      Maintained
8216 F:      include/linux/power_supply.h
8217 F:      drivers/power/
8218 X:      drivers/power/avs/
8219
8220 POWER STATE COORDINATION INTERFACE (PSCI)
8221 M:      Mark Rutland <mark.rutland@arm.com>
8222 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8223 L:      linux-arm-kernel@lists.infradead.org
8224 S:      Maintained
8225 F:      drivers/firmware/psci.c
8226 F:      include/linux/psci.h
8227 F:      include/uapi/linux/psci.h
8228
8229 PNP SUPPORT
8230 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8231 S:      Maintained
8232 F:      drivers/pnp/
8233
8234 PNXxxxx I2C DRIVER
8235 M:      Vitaly Wool <vitalywool@gmail.com>
8236 L:      linux-i2c@vger.kernel.org
8237 S:      Maintained
8238 F:      drivers/i2c/busses/i2c-pnx.c
8239
8240 PPP PROTOCOL DRIVERS AND COMPRESSORS
8241 M:      Paul Mackerras <paulus@samba.org>
8242 L:      linux-ppp@vger.kernel.org
8243 S:      Maintained
8244 F:      drivers/net/ppp/ppp_*
8245
8246 PPP OVER ATM (RFC 2364)
8247 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8248 S:      Maintained
8249 F:      net/atm/pppoatm.c
8250 F:      include/uapi/linux/atmppp.h
8251
8252 PPP OVER ETHERNET
8253 M:      Michal Ostrowski <mostrows@earthlink.net>
8254 S:      Maintained
8255 F:      drivers/net/ppp/pppoe.c
8256 F:      drivers/net/ppp/pppox.c
8257
8258 PPP OVER L2TP
8259 M:      James Chapman <jchapman@katalix.com>
8260 S:      Maintained
8261 F:      net/l2tp/l2tp_ppp.c
8262 F:      include/linux/if_pppol2tp.h
8263 F:      include/uapi/linux/if_pppol2tp.h
8264
8265 PPS SUPPORT
8266 M:      Rodolfo Giometti <giometti@enneenne.com>
8267 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8268 L:      linuxpps@ml.enneenne.com (subscribers-only)
8269 S:      Maintained
8270 F:      Documentation/pps/
8271 F:      drivers/pps/
8272 F:      include/linux/pps*.h
8273
8274 PPTP DRIVER
8275 M:      Dmitry Kozlov <xeb@mail.ru>
8276 L:      netdev@vger.kernel.org
8277 S:      Maintained
8278 F:      drivers/net/ppp/pptp.c
8279 W:      http://sourceforge.net/projects/accel-pptp
8280
8281 PREEMPTIBLE KERNEL
8282 M:      Robert Love <rml@tech9.net>
8283 L:      kpreempt-tech@lists.sourceforge.net
8284 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8285 S:      Supported
8286 F:      Documentation/preempt-locking.txt
8287 F:      include/linux/preempt.h
8288
8289 PRISM54 WIRELESS DRIVER
8290 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8291 L:      linux-wireless@vger.kernel.org
8292 W:      http://wireless.kernel.org/en/users/Drivers/p54
8293 S:      Obsolete
8294 F:      drivers/net/wireless/prism54/
8295
8296 PS3 NETWORK SUPPORT
8297 M:      Geoff Levand <geoff@infradead.org>
8298 L:      netdev@vger.kernel.org
8299 L:      linuxppc-dev@lists.ozlabs.org
8300 S:      Maintained
8301 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8302
8303 PS3 PLATFORM SUPPORT
8304 M:      Geoff Levand <geoff@infradead.org>
8305 L:      linuxppc-dev@lists.ozlabs.org
8306 S:      Maintained
8307 F:      arch/powerpc/boot/ps3*
8308 F:      arch/powerpc/include/asm/lv1call.h
8309 F:      arch/powerpc/include/asm/ps3*.h
8310 F:      arch/powerpc/platforms/ps3/
8311 F:      drivers/*/ps3*
8312 F:      drivers/ps3/
8313 F:      drivers/rtc/rtc-ps3.c
8314 F:      drivers/usb/host/*ps3.c
8315 F:      sound/ppc/snd_ps3*
8316
8317 PS3VRAM DRIVER
8318 M:      Jim Paris <jim@jtan.com>
8319 M:      Geoff Levand <geoff@infradead.org>
8320 L:      linuxppc-dev@lists.ozlabs.org
8321 S:      Maintained
8322 F:      drivers/block/ps3vram.c
8323
8324 PSTORE FILESYSTEM
8325 M:      Anton Vorontsov <anton@enomsg.org>
8326 M:      Colin Cross <ccross@android.com>
8327 M:      Kees Cook <keescook@chromium.org>
8328 M:      Tony Luck <tony.luck@intel.com>
8329 S:      Maintained
8330 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8331 F:      fs/pstore/
8332 F:      include/linux/pstore*
8333 F:      drivers/firmware/efi/efi-pstore.c
8334 F:      drivers/acpi/apei/erst.c
8335
8336 PTP HARDWARE CLOCK SUPPORT
8337 M:      Richard Cochran <richardcochran@gmail.com>
8338 L:      netdev@vger.kernel.org
8339 S:      Maintained
8340 W:      http://linuxptp.sourceforge.net/
8341 F:      Documentation/ABI/testing/sysfs-ptp
8342 F:      Documentation/ptp/*
8343 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8344 F:      drivers/net/phy/dp83640*
8345 F:      drivers/ptp/*
8346 F:      include/linux/ptp_cl*
8347
8348 PTRACE SUPPORT
8349 M:      Roland McGrath <roland@hack.frob.com>
8350 M:      Oleg Nesterov <oleg@redhat.com>
8351 S:      Maintained
8352 F:      include/asm-generic/syscall.h
8353 F:      include/linux/ptrace.h
8354 F:      include/linux/regset.h
8355 F:      include/linux/tracehook.h
8356 F:      include/uapi/linux/ptrace.h
8357 F:      kernel/ptrace.c
8358
8359 PVRUSB2 VIDEO4LINUX DRIVER
8360 M:      Mike Isely <isely@pobox.com>
8361 L:      pvrusb2@isely.net       (subscribers-only)
8362 L:      linux-media@vger.kernel.org
8363 W:      http://www.isely.net/pvrusb2/
8364 T:      git git://linuxtv.org/media_tree.git
8365 S:      Maintained
8366 F:      Documentation/video4linux/README.pvrusb2
8367 F:      drivers/media/usb/pvrusb2/
8368
8369 PWC WEBCAM DRIVER
8370 M:      Hans de Goede <hdegoede@redhat.com>
8371 L:      linux-media@vger.kernel.org
8372 T:      git git://linuxtv.org/media_tree.git
8373 S:      Maintained
8374 F:      drivers/media/usb/pwc/*
8375
8376 PWM FAN DRIVER
8377 M:      Kamil Debski <k.debski@samsung.com>
8378 L:      lm-sensors@lm-sensors.org
8379 S:      Supported
8380 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8381 F:      Documentation/hwmon/pwm-fan
8382 F:      drivers/hwmon/pwm-fan.c
8383
8384 PWM SUBSYSTEM
8385 M:      Thierry Reding <thierry.reding@gmail.com>
8386 L:      linux-pwm@vger.kernel.org
8387 S:      Maintained
8388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8389 F:      Documentation/pwm.txt
8390 F:      Documentation/devicetree/bindings/pwm/
8391 F:      include/linux/pwm.h
8392 F:      drivers/pwm/
8393 F:      drivers/video/backlight/pwm_bl.c
8394 F:      include/linux/pwm_backlight.h
8395
8396 PXA2xx/PXA3xx SUPPORT
8397 M:      Daniel Mack <daniel@zonque.org>
8398 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8399 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8401 T:      git git://github.com/hzhuang1/linux.git
8402 T:      git git://github.com/rjarzmik/linux.git
8403 S:      Maintained
8404 F:      arch/arm/mach-pxa/
8405 F:      drivers/dma/pxa*
8406 F:      drivers/pcmcia/pxa2xx*
8407 F:      drivers/spi/spi-pxa2xx*
8408 F:      drivers/usb/gadget/udc/pxa2*
8409 F:      include/sound/pxa2xx-lib.h
8410 F:      sound/arm/pxa*
8411 F:      sound/soc/pxa/
8412
8413 PXA3xx NAND FLASH DRIVER
8414 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8415 L:      linux-mtd@lists.infradead.org
8416 S:      Maintained
8417 F:      drivers/mtd/nand/pxa3xx_nand.c
8418
8419 MMP SUPPORT
8420 M:      Eric Miao <eric.y.miao@gmail.com>
8421 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8423 T:      git git://github.com/hzhuang1/linux.git
8424 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8425 S:      Maintained
8426 F:      arch/arm/mach-mmp/
8427
8428 PXA MMCI DRIVER
8429 S:      Orphan
8430
8431 PXA RTC DRIVER
8432 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8433 L:      rtc-linux@googlegroups.com
8434 S:      Maintained
8435
8436 QAT DRIVER
8437 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8438 L:      qat-linux@intel.com
8439 S:      Supported
8440 F:      drivers/crypto/qat/
8441
8442 QIB DRIVER
8443 M:      Mike Marciniszyn <infinipath@intel.com>
8444 L:      linux-rdma@vger.kernel.org
8445 S:      Supported
8446 F:      drivers/infiniband/hw/qib/
8447
8448 QLOGIC QLA1280 SCSI DRIVER
8449 M:      Michael Reed <mdr@sgi.com>
8450 L:      linux-scsi@vger.kernel.org
8451 S:      Maintained
8452 F:      drivers/scsi/qla1280.[ch]
8453
8454 QLOGIC QLA2XXX FC-SCSI DRIVER
8455 M:      qla2xxx-upstream@qlogic.com
8456 L:      linux-scsi@vger.kernel.org
8457 S:      Supported
8458 F:      Documentation/scsi/LICENSE.qla2xxx
8459 F:      drivers/scsi/qla2xxx/
8460
8461 QLOGIC QLA4XXX iSCSI DRIVER
8462 M:      QLogic-Storage-Upstream@qlogic.com
8463 L:      linux-scsi@vger.kernel.org
8464 S:      Supported
8465 F:      Documentation/scsi/LICENSE.qla4xxx
8466 F:      drivers/scsi/qla4xxx/
8467
8468 QLOGIC QLA3XXX NETWORK DRIVER
8469 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8470 M:      Ron Mercer <ron.mercer@qlogic.com>
8471 M:      linux-driver@qlogic.com
8472 L:      netdev@vger.kernel.org
8473 S:      Supported
8474 F:      Documentation/networking/LICENSE.qla3xxx
8475 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8476
8477 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8478 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
8479 M:      Dept-GELinuxNICDev@qlogic.com
8480 L:      netdev@vger.kernel.org
8481 S:      Supported
8482 F:      drivers/net/ethernet/qlogic/qlcnic/
8483
8484 QLOGIC QLGE 10Gb ETHERNET DRIVER
8485 M:      Harish Patil <harish.patil@qlogic.com>
8486 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8487 M:      Dept-GELinuxNICDev@qlogic.com
8488 M:      linux-driver@qlogic.com
8489 L:      netdev@vger.kernel.org
8490 S:      Supported
8491 F:      drivers/net/ethernet/qlogic/qlge/
8492
8493 QNX4 FILESYSTEM
8494 M:      Anders Larsen <al@alarsen.net>
8495 W:      http://www.alarsen.net/linux/qnx4fs/
8496 S:      Maintained
8497 F:      fs/qnx4/
8498 F:      include/uapi/linux/qnx4_fs.h
8499 F:      include/uapi/linux/qnxtypes.h
8500
8501 QT1010 MEDIA DRIVER
8502 M:      Antti Palosaari <crope@iki.fi>
8503 L:      linux-media@vger.kernel.org
8504 W:      http://linuxtv.org/
8505 W:      http://palosaari.fi/linux/
8506 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8507 T:      git git://linuxtv.org/anttip/media_tree.git
8508 S:      Maintained
8509 F:      drivers/media/tuners/qt1010*
8510
8511 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8512 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8513 L:      linux-wireless@vger.kernel.org
8514 L:      ath9k-devel@lists.ath9k.org
8515 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8516 S:      Supported
8517 F:      drivers/net/wireless/ath/ath9k/
8518
8519 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8520 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8521 L:      ath10k@lists.infradead.org
8522 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8523 T:      git git://github.com/kvalo/ath.git
8524 S:      Supported
8525 F:      drivers/net/wireless/ath/ath10k/
8526
8527 QUALCOMM HEXAGON ARCHITECTURE
8528 M:      Richard Kuo <rkuo@codeaurora.org>
8529 L:      linux-hexagon@vger.kernel.org
8530 S:      Supported
8531 F:      arch/hexagon/
8532
8533 QUALCOMM WCN36XX WIRELESS DRIVER
8534 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8535 L:      wcn36xx@lists.infradead.org
8536 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8537 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8538 S:      Supported
8539 F:      drivers/net/wireless/ath/wcn36xx/
8540
8541 RADOS BLOCK DEVICE (RBD)
8542 M:      Ilya Dryomov <idryomov@gmail.com>
8543 M:      Sage Weil <sage@redhat.com>
8544 M:      Alex Elder <elder@kernel.org>
8545 L:      ceph-devel@vger.kernel.org
8546 W:      http://ceph.com/
8547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8548 T:      git git://github.com/ceph/ceph-client.git
8549 S:      Supported
8550 F:      Documentation/ABI/testing/sysfs-bus-rbd
8551 F:      drivers/block/rbd.c
8552 F:      drivers/block/rbd_types.h
8553
8554 RADEON FRAMEBUFFER DISPLAY DRIVER
8555 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8556 L:      linux-fbdev@vger.kernel.org
8557 S:      Maintained
8558 F:      drivers/video/fbdev/aty/radeon*
8559 F:      include/uapi/linux/radeonfb.h
8560
8561 RADIOSHARK RADIO DRIVER
8562 M:      Hans de Goede <hdegoede@redhat.com>
8563 L:      linux-media@vger.kernel.org
8564 T:      git git://linuxtv.org/media_tree.git
8565 S:      Maintained
8566 F:      drivers/media/radio/radio-shark.c
8567
8568 RADIOSHARK2 RADIO DRIVER
8569 M:      Hans de Goede <hdegoede@redhat.com>
8570 L:      linux-media@vger.kernel.org
8571 T:      git git://linuxtv.org/media_tree.git
8572 S:      Maintained
8573 F:      drivers/media/radio/radio-shark2.c
8574 F:      drivers/media/radio/radio-tea5777.c
8575
8576 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8577 M:      Paul Mackerras <paulus@samba.org>
8578 L:      linux-fbdev@vger.kernel.org
8579 S:      Maintained
8580 F:      drivers/video/fbdev/aty/aty128fb.c
8581
8582 RALINK RT2X00 WIRELESS LAN DRIVER
8583 P:      rt2x00 project
8584 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8585 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8586 L:      linux-wireless@vger.kernel.org
8587 S:      Maintained
8588 F:      drivers/net/wireless/rt2x00/
8589
8590 RAMDISK RAM BLOCK DEVICE DRIVER
8591 M:      Jens Axboe <axboe@kernel.dk>
8592 S:      Maintained
8593 F:      Documentation/blockdev/ramdisk.txt
8594 F:      drivers/block/brd.c
8595
8596 RANDOM NUMBER DRIVER
8597 M:      "Theodore Ts'o" <tytso@mit.edu>
8598 S:      Maintained
8599 F:      drivers/char/random.c
8600
8601 RAPIDIO SUBSYSTEM
8602 M:      Matt Porter <mporter@kernel.crashing.org>
8603 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8604 S:      Maintained
8605 F:      drivers/rapidio/
8606
8607 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8608 L:      linux-wireless@vger.kernel.org
8609 S:      Orphan
8610 F:      drivers/net/wireless/ray*
8611
8612 RCUTORTURE MODULE
8613 M:      Josh Triplett <josh@joshtriplett.org>
8614 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8615 L:      linux-kernel@vger.kernel.org
8616 S:      Supported
8617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8618 F:      Documentation/RCU/torture.txt
8619 F:      kernel/rcu/rcutorture.c
8620
8621 RCUTORTURE TEST FRAMEWORK
8622 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8623 M:      Josh Triplett <josh@joshtriplett.org>
8624 R:      Steven Rostedt <rostedt@goodmis.org>
8625 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8626 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8627 L:      linux-kernel@vger.kernel.org
8628 S:      Supported
8629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8630 F:      tools/testing/selftests/rcutorture
8631
8632 RDC R-321X SoC
8633 M:      Florian Fainelli <florian@openwrt.org>
8634 S:      Maintained
8635
8636 RDC R6040 FAST ETHERNET DRIVER
8637 M:      Florian Fainelli <florian@openwrt.org>
8638 L:      netdev@vger.kernel.org
8639 S:      Maintained
8640 F:      drivers/net/ethernet/rdc/r6040.c
8641
8642 RDS - RELIABLE DATAGRAM SOCKETS
8643 M:      Chien Yen <chien.yen@oracle.com>
8644 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8645 S:      Supported
8646 F:      net/rds/
8647
8648 READ-COPY UPDATE (RCU)
8649 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8650 M:      Josh Triplett <josh@joshtriplett.org>
8651 R:      Steven Rostedt <rostedt@goodmis.org>
8652 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8653 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8654 L:      linux-kernel@vger.kernel.org
8655 W:      http://www.rdrop.com/users/paulmck/RCU/
8656 S:      Supported
8657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8658 F:      Documentation/RCU/
8659 X:      Documentation/RCU/torture.txt
8660 F:      include/linux/rcu*
8661 X:      include/linux/srcu.h
8662 F:      kernel/rcu/
8663 X:      kernel/torture.c
8664
8665 REAL TIME CLOCK (RTC) SUBSYSTEM
8666 M:      Alessandro Zummo <a.zummo@towertech.it>
8667 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8668 L:      rtc-linux@googlegroups.com
8669 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8671 S:      Maintained
8672 F:      Documentation/rtc.txt
8673 F:      drivers/rtc/
8674 F:      include/linux/rtc.h
8675 F:      include/uapi/linux/rtc.h
8676
8677 REALTEK AUDIO CODECS
8678 M:      Bard Liao <bardliao@realtek.com>
8679 M:      Oder Chiou <oder_chiou@realtek.com>
8680 S:      Maintained
8681 F:      sound/soc/codecs/rt*
8682 F:      include/sound/rt*.h
8683
8684 REISERFS FILE SYSTEM
8685 L:      reiserfs-devel@vger.kernel.org
8686 S:      Supported
8687 F:      fs/reiserfs/
8688
8689 REGISTER MAP ABSTRACTION
8690 M:      Mark Brown <broonie@kernel.org>
8691 L:      linux-kernel@vger.kernel.org
8692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8693 S:      Supported
8694 F:      drivers/base/regmap/
8695 F:      include/linux/regmap.h
8696
8697 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8698 M:      Ohad Ben-Cohen <ohad@wizery.com>
8699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8700 S:      Maintained
8701 F:      drivers/remoteproc/
8702 F:      Documentation/remoteproc.txt
8703 F:      include/linux/remoteproc.h
8704
8705 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8706 M:      Ohad Ben-Cohen <ohad@wizery.com>
8707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8708 S:      Maintained
8709 F:      drivers/rpmsg/
8710 F:      Documentation/rpmsg.txt
8711 F:      include/linux/rpmsg.h
8712
8713 RESET CONTROLLER FRAMEWORK
8714 M:      Philipp Zabel <p.zabel@pengutronix.de>
8715 S:      Maintained
8716 F:      drivers/reset/
8717 F:      Documentation/devicetree/bindings/reset/
8718 F:      include/dt-bindings/reset/
8719 F:      include/linux/reset.h
8720 F:      include/linux/reset-controller.h
8721
8722 RFKILL
8723 M:      Johannes Berg <johannes@sipsolutions.net>
8724 L:      linux-wireless@vger.kernel.org
8725 W:      http://wireless.kernel.org/
8726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8728 S:      Maintained
8729 F:      Documentation/rfkill.txt
8730 F:      net/rfkill/
8731
8732 RHASHTABLE
8733 M:      Thomas Graf <tgraf@suug.ch>
8734 L:      netdev@vger.kernel.org
8735 S:      Maintained
8736 F:      lib/rhashtable.c
8737 F:      include/linux/rhashtable.h
8738
8739 RICOH SMARTMEDIA/XD DRIVER
8740 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8741 S:      Maintained
8742 F:      drivers/mtd/nand/r852.c
8743 F:      drivers/mtd/nand/r852.h
8744
8745 RICOH R5C592 MEMORYSTICK DRIVER
8746 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8747 S:      Maintained
8748 F:      drivers/memstick/host/r592.*
8749
8750 ROCCAT DRIVERS
8751 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8752 W:      http://sourceforge.net/projects/roccat/
8753 S:      Maintained
8754 F:      drivers/hid/hid-roccat*
8755 F:      include/linux/hid-roccat*
8756 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8757
8758 ROCKER DRIVER
8759 M:      Jiri Pirko <jiri@resnulli.us>
8760 M:      Scott Feldman <sfeldma@gmail.com>
8761 L:      netdev@vger.kernel.org
8762 S:      Supported
8763 F:      drivers/net/ethernet/rocker/
8764
8765 ROCKETPORT DRIVER
8766 P:      Comtrol Corp.
8767 W:      http://www.comtrol.com
8768 S:      Maintained
8769 F:      Documentation/serial/rocket.txt
8770 F:      drivers/tty/rocket*
8771
8772 ROCKETPORT EXPRESS/INFINITY DRIVER
8773 M:      Kevin Cernekee <cernekee@gmail.com>
8774 L:      linux-serial@vger.kernel.org
8775 S:      Odd Fixes
8776 F:      drivers/tty/serial/rp2.*
8777
8778 ROSE NETWORK LAYER
8779 M:      Ralf Baechle <ralf@linux-mips.org>
8780 L:      linux-hams@vger.kernel.org
8781 W:      http://www.linux-ax25.org/
8782 S:      Maintained
8783 F:      include/net/rose.h
8784 F:      include/uapi/linux/rose.h
8785 F:      net/rose/
8786
8787 RTL2830 MEDIA DRIVER
8788 M:      Antti Palosaari <crope@iki.fi>
8789 L:      linux-media@vger.kernel.org
8790 W:      http://linuxtv.org/
8791 W:      http://palosaari.fi/linux/
8792 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8793 T:      git git://linuxtv.org/anttip/media_tree.git
8794 S:      Maintained
8795 F:      drivers/media/dvb-frontends/rtl2830*
8796
8797 RTL2832 MEDIA DRIVER
8798 M:      Antti Palosaari <crope@iki.fi>
8799 L:      linux-media@vger.kernel.org
8800 W:      http://linuxtv.org/
8801 W:      http://palosaari.fi/linux/
8802 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8803 T:      git git://linuxtv.org/anttip/media_tree.git
8804 S:      Maintained
8805 F:      drivers/media/dvb-frontends/rtl2832*
8806
8807 RTL2832_SDR MEDIA DRIVER
8808 M:      Antti Palosaari <crope@iki.fi>
8809 L:      linux-media@vger.kernel.org
8810 W:      http://linuxtv.org/
8811 W:      http://palosaari.fi/linux/
8812 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8813 T:      git git://linuxtv.org/anttip/media_tree.git
8814 S:      Maintained
8815 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8816
8817 RTL8180 WIRELESS DRIVER
8818 L:      linux-wireless@vger.kernel.org
8819 W:      http://wireless.kernel.org/
8820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8821 S:      Orphan
8822 F:      drivers/net/wireless/rtl818x/rtl8180/
8823
8824 RTL8187 WIRELESS DRIVER
8825 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8826 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8827 M:      Larry Finger <Larry.Finger@lwfinger.net>
8828 L:      linux-wireless@vger.kernel.org
8829 W:      http://wireless.kernel.org/
8830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8831 S:      Maintained
8832 F:      drivers/net/wireless/rtl818x/rtl8187/
8833
8834 RTL8192CE WIRELESS DRIVER
8835 M:      Larry Finger <Larry.Finger@lwfinger.net>
8836 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8837 L:      linux-wireless@vger.kernel.org
8838 W:      http://wireless.kernel.org/
8839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8840 S:      Maintained
8841 F:      drivers/net/wireless/rtlwifi/
8842 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8843
8844 S3 SAVAGE FRAMEBUFFER DRIVER
8845 M:      Antonino Daplas <adaplas@gmail.com>
8846 L:      linux-fbdev@vger.kernel.org
8847 S:      Maintained
8848 F:      drivers/video/fbdev/savage/
8849
8850 S390
8851 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8852 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8853 L:      linux-s390@vger.kernel.org
8854 W:      http://www.ibm.com/developerworks/linux/linux390/
8855 S:      Supported
8856 F:      arch/s390/
8857 F:      drivers/s390/
8858 F:      Documentation/s390/
8859 F:      Documentation/DocBook/s390*
8860
8861 S390 COMMON I/O LAYER
8862 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8863 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8864 L:      linux-s390@vger.kernel.org
8865 W:      http://www.ibm.com/developerworks/linux/linux390/
8866 S:      Supported
8867 F:      drivers/s390/cio/
8868
8869 S390 DASD DRIVER
8870 M:      Stefan Weinhuber <wein@de.ibm.com>
8871 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8872 L:      linux-s390@vger.kernel.org
8873 W:      http://www.ibm.com/developerworks/linux/linux390/
8874 S:      Supported
8875 F:      drivers/s390/block/dasd*
8876 F:      block/partitions/ibm.c
8877
8878 S390 NETWORK DRIVERS
8879 M:      Ursula Braun <ursula.braun@de.ibm.com>
8880 L:      linux-s390@vger.kernel.org
8881 W:      http://www.ibm.com/developerworks/linux/linux390/
8882 S:      Supported
8883 F:      drivers/s390/net/
8884
8885 S390 PCI SUBSYSTEM
8886 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8887 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8888 L:      linux-s390@vger.kernel.org
8889 W:      http://www.ibm.com/developerworks/linux/linux390/
8890 S:      Supported
8891 F:      arch/s390/pci/
8892 F:      drivers/pci/hotplug/s390_pci_hpc.c
8893
8894 S390 ZCRYPT DRIVER
8895 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8896 L:      linux-s390@vger.kernel.org
8897 W:      http://www.ibm.com/developerworks/linux/linux390/
8898 S:      Supported
8899 F:      drivers/s390/crypto/
8900
8901 S390 ZFCP DRIVER
8902 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8903 L:      linux-s390@vger.kernel.org
8904 W:      http://www.ibm.com/developerworks/linux/linux390/
8905 S:      Supported
8906 F:      drivers/s390/scsi/zfcp_*
8907
8908 S390 IUCV NETWORK LAYER
8909 M:      Ursula Braun <ursula.braun@de.ibm.com>
8910 L:      linux-s390@vger.kernel.org
8911 W:      http://www.ibm.com/developerworks/linux/linux390/
8912 S:      Supported
8913 F:      drivers/s390/net/*iucv*
8914 F:      include/net/iucv/
8915 F:      net/iucv/
8916
8917 S3C24XX SD/MMC Driver
8918 M:      Ben Dooks <ben-linux@fluff.org>
8919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8920 S:      Supported
8921 F:      drivers/mmc/host/s3cmci.*
8922
8923 SAA6588 RDS RECEIVER DRIVER
8924 M:      Hans Verkuil <hverkuil@xs4all.nl>
8925 L:      linux-media@vger.kernel.org
8926 T:      git git://linuxtv.org/media_tree.git
8927 W:      http://linuxtv.org
8928 S:      Odd Fixes
8929 F:      drivers/media/i2c/saa6588*
8930
8931 SAA7134 VIDEO4LINUX DRIVER
8932 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8933 L:      linux-media@vger.kernel.org
8934 W:      http://linuxtv.org
8935 T:      git git://linuxtv.org/media_tree.git
8936 S:      Odd fixes
8937 F:      Documentation/video4linux/*.saa7134
8938 F:      drivers/media/pci/saa7134/
8939
8940 SAA7146 VIDEO4LINUX-2 DRIVER
8941 M:      Hans Verkuil <hverkuil@xs4all.nl>
8942 L:      linux-media@vger.kernel.org
8943 T:      git git://linuxtv.org/media_tree.git
8944 S:      Maintained
8945 F:      drivers/media/common/saa7146/
8946 F:      drivers/media/pci/saa7146/
8947 F:      include/media/saa7146*
8948
8949 SAMSUNG LAPTOP DRIVER
8950 M:      Corentin Chary <corentin.chary@gmail.com>
8951 L:      platform-driver-x86@vger.kernel.org
8952 S:      Maintained
8953 F:      drivers/platform/x86/samsung-laptop.c
8954
8955 SAMSUNG AUDIO (ASoC) DRIVERS
8956 M:      Sangbeom Kim <sbkim73@samsung.com>
8957 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8958 S:      Supported
8959 F:      sound/soc/samsung/
8960
8961 SAMSUNG FRAMEBUFFER DRIVER
8962 M:      Jingoo Han <jingoohan1@gmail.com>
8963 L:      linux-fbdev@vger.kernel.org
8964 S:      Maintained
8965 F:      drivers/video/fbdev/s3c-fb.c
8966
8967 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
8968 M:      Sangbeom Kim <sbkim73@samsung.com>
8969 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
8970 L:      linux-kernel@vger.kernel.org
8971 L:      linux-samsung-soc@vger.kernel.org
8972 S:      Supported
8973 F:      drivers/mfd/sec*.c
8974 F:      drivers/regulator/s2m*.c
8975 F:      drivers/regulator/s5m*.c
8976 F:      drivers/clk/clk-s2mps11.c
8977 F:      drivers/rtc/rtc-s5m.c
8978 F:      include/linux/mfd/samsung/
8979 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
8980 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
8981
8982 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
8983 M:      Kyungmin Park <kyungmin.park@samsung.com>
8984 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8985 L:      linux-media@vger.kernel.org
8986 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
8987 S:      Supported
8988 F:      drivers/media/platform/exynos4-is/
8989
8990 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
8991 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
8992 L:      linux-media@vger.kernel.org
8993 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8994 S:      Maintained
8995 F:      drivers/media/platform/s3c-camif/
8996 F:      include/media/s3c_camif.h
8997
8998 SAMSUNG S5C73M3 CAMERA DRIVER
8999 M:      Kyungmin Park <kyungmin.park@samsung.com>
9000 M:      Andrzej Hajda <a.hajda@samsung.com>
9001 L:      linux-media@vger.kernel.org
9002 S:      Supported
9003 F:      drivers/media/i2c/s5c73m3/*
9004
9005 SAMSUNG S5K5BAF CAMERA DRIVER
9006 M:      Kyungmin Park <kyungmin.park@samsung.com>
9007 M:      Andrzej Hajda <a.hajda@samsung.com>
9008 L:      linux-media@vger.kernel.org
9009 S:      Supported
9010 F:      drivers/media/i2c/s5k5baf.c
9011
9012 SAMSUNG S3FWRN5 NFC DRIVER
9013 M:      Robert Baldyga <r.baldyga@samsung.com>
9014 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9015 S:      Supported
9016 F:      drivers/nfc/s3fwrn5
9017
9018 SAMSUNG SOC CLOCK DRIVERS
9019 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9020 M:      Tomasz Figa <tomasz.figa@gmail.com>
9021 S:      Supported
9022 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9023 F:      drivers/clk/samsung/
9024
9025 SAMSUNG SXGBE DRIVERS
9026 M:      Byungho An <bh74.an@samsung.com>
9027 M:      Girish K S <ks.giri@samsung.com>
9028 M:      Vipul Pandya <vipul.pandya@samsung.com>
9029 S:      Supported
9030 L:      netdev@vger.kernel.org
9031 F:      drivers/net/ethernet/samsung/sxgbe/
9032
9033 SAMSUNG THERMAL DRIVER
9034 M:      Lukasz Majewski <l.majewski@samsung.com>
9035 L:      linux-pm@vger.kernel.org
9036 L:      linux-samsung-soc@vger.kernel.org
9037 S:      Supported
9038 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9039 F:      drivers/thermal/samsung/
9040
9041 SAMSUNG USB2 PHY DRIVER
9042 M:      Kamil Debski <k.debski@samsung.com>
9043 L:      linux-kernel@vger.kernel.org
9044 S:      Supported
9045 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9046 F:      Documentation/phy/samsung-usb2.txt
9047 F:      drivers/phy/phy-exynos4210-usb2.c
9048 F:      drivers/phy/phy-exynos4x12-usb2.c
9049 F:      drivers/phy/phy-exynos5250-usb2.c
9050 F:      drivers/phy/phy-s5pv210-usb2.c
9051 F:      drivers/phy/phy-samsung-usb2.c
9052 F:      drivers/phy/phy-samsung-usb2.h
9053
9054 SERIAL DRIVERS
9055 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9056 L:      linux-serial@vger.kernel.org
9057 S:      Maintained
9058 F:      drivers/tty/serial/
9059
9060 SYNOPSYS DESIGNWARE DMAC DRIVER
9061 M:      Viresh Kumar <vireshk@kernel.org>
9062 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9063 S:      Maintained
9064 F:      include/linux/dma/dw.h
9065 F:      include/linux/platform_data/dma-dw.h
9066 F:      drivers/dma/dw/
9067
9068 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9069 M: Lars Persson <lars.persson@axis.com>
9070 L: netdev@vger.kernel.org
9071 S: Supported
9072 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9073 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9074
9075 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9076 M:      Seungwon Jeon <tgih.jun@samsung.com>
9077 M:      Jaehoon Chung <jh80.chung@samsung.com>
9078 L:      linux-mmc@vger.kernel.org
9079 S:      Maintained
9080 F:      include/linux/mmc/dw_mmc.h
9081 F:      drivers/mmc/host/dw_mmc*
9082
9083 THUNDERBOLT DRIVER
9084 M:      Andreas Noever <andreas.noever@gmail.com>
9085 S:      Maintained
9086 F:      drivers/thunderbolt/
9087
9088 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9089 M:      John Stultz <john.stultz@linaro.org>
9090 M:      Thomas Gleixner <tglx@linutronix.de>
9091 L:      linux-kernel@vger.kernel.org
9092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9093 S:      Supported
9094 F:      include/linux/clocksource.h
9095 F:      include/linux/time.h
9096 F:      include/linux/timex.h
9097 F:      include/uapi/linux/time.h
9098 F:      include/uapi/linux/timex.h
9099 F:      kernel/time/clocksource.c
9100 F:      kernel/time/time*.c
9101 F:      kernel/time/ntp.c
9102 F:      tools/testing/selftests/timers/
9103
9104 SC1200 WDT DRIVER
9105 M:      Zwane Mwaikambo <zwanem@gmail.com>
9106 S:      Maintained
9107 F:      drivers/watchdog/sc1200wdt.c
9108
9109 SCHEDULER
9110 M:      Ingo Molnar <mingo@redhat.com>
9111 M:      Peter Zijlstra <peterz@infradead.org>
9112 L:      linux-kernel@vger.kernel.org
9113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9114 S:      Maintained
9115 F:      kernel/sched/
9116 F:      include/linux/sched.h
9117 F:      include/uapi/linux/sched.h
9118 F:      include/linux/wait.h
9119
9120 SCORE ARCHITECTURE
9121 M:      Chen Liqin <liqin.linux@gmail.com>
9122 M:      Lennox Wu <lennox.wu@gmail.com>
9123 W:      http://www.sunplus.com
9124 S:      Supported
9125 F:      arch/score/
9126
9127 SCSI CDROM DRIVER
9128 M:      Jens Axboe <axboe@kernel.dk>
9129 L:      linux-scsi@vger.kernel.org
9130 W:      http://www.kernel.dk
9131 S:      Maintained
9132 F:      drivers/scsi/sr*
9133
9134 SCSI RDMA PROTOCOL (SRP) INITIATOR
9135 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9136 L:      linux-rdma@vger.kernel.org
9137 S:      Supported
9138 W:      http://www.openfabrics.org
9139 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9141 F:      drivers/infiniband/ulp/srp/
9142 F:      include/scsi/srp.h
9143
9144 SCSI SG DRIVER
9145 M:      Doug Gilbert <dgilbert@interlog.com>
9146 L:      linux-scsi@vger.kernel.org
9147 W:      http://sg.danny.cz/sg
9148 S:      Maintained
9149 F:      Documentation/scsi/scsi-generic.txt
9150 F:      drivers/scsi/sg.c
9151 F:      include/scsi/sg.h
9152
9153 SCSI SUBSYSTEM
9154 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9155 L:      linux-scsi@vger.kernel.org
9156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9157 S:      Maintained
9158 F:      drivers/scsi/
9159 F:      include/scsi/
9160
9161 SCSI TAPE DRIVER
9162 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9163 L:      linux-scsi@vger.kernel.org
9164 S:      Maintained
9165 F:      Documentation/scsi/st.txt
9166 F:      drivers/scsi/st.*
9167 F:      drivers/scsi/st_*.h
9168
9169 SCTP PROTOCOL
9170 M:      Vlad Yasevich <vyasevich@gmail.com>
9171 M:      Neil Horman <nhorman@tuxdriver.com>
9172 L:      linux-sctp@vger.kernel.org
9173 W:      http://lksctp.sourceforge.net
9174 S:      Maintained
9175 F:      Documentation/networking/sctp.txt
9176 F:      include/linux/sctp.h
9177 F:      include/uapi/linux/sctp.h
9178 F:      include/net/sctp/
9179 F:      net/sctp/
9180
9181 SCx200 CPU SUPPORT
9182 M:      Jim Cromie <jim.cromie@gmail.com>
9183 S:      Odd Fixes
9184 F:      Documentation/i2c/busses/scx200_acb
9185 F:      arch/x86/platform/scx200/
9186 F:      drivers/watchdog/scx200_wdt.c
9187 F:      drivers/i2c/busses/scx200*
9188 F:      drivers/mtd/maps/scx200_docflash.c
9189 F:      include/linux/scx200.h
9190
9191 SCx200 GPIO DRIVER
9192 M:      Jim Cromie <jim.cromie@gmail.com>
9193 S:      Maintained
9194 F:      drivers/char/scx200_gpio.c
9195 F:      include/linux/scx200_gpio.h
9196
9197 SCx200 HRT CLOCKSOURCE DRIVER
9198 M:      Jim Cromie <jim.cromie@gmail.com>
9199 S:      Maintained
9200 F:      drivers/clocksource/scx200_hrt.c
9201
9202 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9203 M:      Sascha Sommer <saschasommer@freenet.de>
9204 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9205 S:      Maintained
9206 F:      drivers/mmc/host/sdricoh_cs.c
9207
9208 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9209 L:      linux-mmc@vger.kernel.org
9210 S:      Orphan
9211 F:      drivers/mmc/host/sdhci.*
9212 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9213
9214 SECURE COMPUTING
9215 M:      Kees Cook <keescook@chromium.org>
9216 R:      Andy Lutomirski <luto@amacapital.net>
9217 R:      Will Drewry <wad@chromium.org>
9218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9219 S:      Supported
9220 F:      kernel/seccomp.c
9221 F:      include/uapi/linux/seccomp.h
9222 F:      include/linux/seccomp.h
9223 F:      tools/testing/selftests/seccomp/*
9224 K:      \bsecure_computing
9225 K:      \bTIF_SECCOMP\b
9226
9227 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9228 M:      Ben Dooks <ben-linux@fluff.org>
9229 M:      Jaehoon Chung <jh80.chung@samsung.com>
9230 L:      linux-mmc@vger.kernel.org
9231 S:      Maintained
9232 F:      drivers/mmc/host/sdhci-s3c*
9233
9234 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9235 M:      Viresh Kumar <vireshk@kernel.org>
9236 L:      spear-devel@list.st.com
9237 L:      linux-mmc@vger.kernel.org
9238 S:      Maintained
9239 F:      drivers/mmc/host/sdhci-spear.c
9240
9241 SECURITY SUBSYSTEM
9242 M:      James Morris <james.l.morris@oracle.com>
9243 M:      "Serge E. Hallyn" <serge@hallyn.com>
9244 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9246 W:      http://kernsec.org/
9247 S:      Supported
9248 F:      security/
9249
9250 SECURITY CONTACT
9251 M:      Security Officers <security@kernel.org>
9252 S:      Supported
9253
9254 SELINUX SECURITY MODULE
9255 M:      Paul Moore <paul@paul-moore.com>
9256 M:      Stephen Smalley <sds@tycho.nsa.gov>
9257 M:      Eric Paris <eparis@parisplace.org>
9258 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9259 W:      http://selinuxproject.org
9260 T:      git git://git.infradead.org/users/pcmoore/selinux
9261 S:      Supported
9262 F:      include/linux/selinux*
9263 F:      security/selinux/
9264 F:      scripts/selinux/
9265
9266 APPARMOR SECURITY MODULE
9267 M:      John Johansen <john.johansen@canonical.com>
9268 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9269 W:      apparmor.wiki.kernel.org
9270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9271 S:      Supported
9272 F:      security/apparmor/
9273
9274 YAMA SECURITY MODULE
9275 M:      Kees Cook <keescook@chromium.org>
9276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9277 S:      Supported
9278 F:      security/yama/
9279
9280 SENSABLE PHANTOM
9281 M:      Jiri Slaby <jirislaby@gmail.com>
9282 S:      Maintained
9283 F:      drivers/misc/phantom.c
9284 F:      include/uapi/linux/phantom.h
9285
9286 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9287 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9288 M:      Minh Tran <minh.tran@avagotech.com>
9289 M:      John Soni Jose <sony.john-n@avagotech.com>
9290 L:      linux-scsi@vger.kernel.org
9291 W:      http://www.avagotech.com
9292 S:      Supported
9293 F:      drivers/scsi/be2iscsi/
9294
9295 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9296 M:      Sathya Perla <sathya.perla@avagotech.com>
9297 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9298 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9299 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9300 L:      netdev@vger.kernel.org
9301 W:      http://www.emulex.com
9302 S:      Supported
9303 F:      drivers/net/ethernet/emulex/benet/
9304
9305 EMULEX ONECONNECT ROCE DRIVER
9306 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9307 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9308 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9309 L:      linux-rdma@vger.kernel.org
9310 W:      http://www.emulex.com
9311 S:      Supported
9312 F:      drivers/infiniband/hw/ocrdma/
9313
9314 SFC NETWORK DRIVER
9315 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9316 M:      Shradha Shah <sshah@solarflare.com>
9317 L:      netdev@vger.kernel.org
9318 S:      Supported
9319 F:      drivers/net/ethernet/sfc/
9320
9321 SGI GRU DRIVER
9322 M:      Dimitri Sivanich <sivanich@sgi.com>
9323 S:      Maintained
9324 F:      drivers/misc/sgi-gru/
9325
9326 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9327 M:      Pat Gefre <pfg@sgi.com>
9328 L:      linux-ia64@vger.kernel.org
9329 S:      Supported
9330 F:      Documentation/ia64/serial.txt
9331 F:      drivers/tty/serial/ioc?_serial.c
9332 F:      include/linux/ioc?.h
9333
9334 SGI XP/XPC/XPNET DRIVER
9335 M:      Cliff Whickman <cpw@sgi.com>
9336 M:      Robin Holt <robinmholt@gmail.com>
9337 S:      Maintained
9338 F:      drivers/misc/sgi-xp/
9339
9340 SI2157 MEDIA DRIVER
9341 M:      Antti Palosaari <crope@iki.fi>
9342 L:      linux-media@vger.kernel.org
9343 W:      http://linuxtv.org/
9344 W:      http://palosaari.fi/linux/
9345 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9346 T:      git git://linuxtv.org/anttip/media_tree.git
9347 S:      Maintained
9348 F:      drivers/media/tuners/si2157*
9349
9350 SI2168 MEDIA DRIVER
9351 M:      Antti Palosaari <crope@iki.fi>
9352 L:      linux-media@vger.kernel.org
9353 W:      http://linuxtv.org/
9354 W:      http://palosaari.fi/linux/
9355 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9356 T:      git git://linuxtv.org/anttip/media_tree.git
9357 S:      Maintained
9358 F:      drivers/media/dvb-frontends/si2168*
9359
9360 SI470X FM RADIO RECEIVER I2C DRIVER
9361 M:      Hans Verkuil <hverkuil@xs4all.nl>
9362 L:      linux-media@vger.kernel.org
9363 T:      git git://linuxtv.org/media_tree.git
9364 W:      http://linuxtv.org
9365 S:      Odd Fixes
9366 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9367
9368 SI470X FM RADIO RECEIVER USB DRIVER
9369 M:      Hans Verkuil <hverkuil@xs4all.nl>
9370 L:      linux-media@vger.kernel.org
9371 T:      git git://linuxtv.org/media_tree.git
9372 W:      http://linuxtv.org
9373 S:      Maintained
9374 F:      drivers/media/radio/si470x/radio-si470x-common.c
9375 F:      drivers/media/radio/si470x/radio-si470x.h
9376 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9377
9378 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9379 M:      Eduardo Valentin <edubezval@gmail.com>
9380 L:      linux-media@vger.kernel.org
9381 T:      git git://linuxtv.org/media_tree.git
9382 W:      http://linuxtv.org
9383 S:      Odd Fixes
9384 F:      drivers/media/radio/si4713/si4713.?
9385
9386 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9387 M:      Eduardo Valentin <edubezval@gmail.com>
9388 L:      linux-media@vger.kernel.org
9389 T:      git git://linuxtv.org/media_tree.git
9390 W:      http://linuxtv.org
9391 S:      Odd Fixes
9392 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9393
9394 SI4713 FM RADIO TRANSMITTER USB DRIVER
9395 M:      Hans Verkuil <hverkuil@xs4all.nl>
9396 L:      linux-media@vger.kernel.org
9397 T:      git git://linuxtv.org/media_tree.git
9398 W:      http://linuxtv.org
9399 S:      Maintained
9400 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9401
9402 SIANO DVB DRIVER
9403 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9404 L:      linux-media@vger.kernel.org
9405 W:      http://linuxtv.org
9406 T:      git git://linuxtv.org/media_tree.git
9407 S:      Odd fixes
9408 F:      drivers/media/common/siano/
9409 F:      drivers/media/usb/siano/
9410 F:      drivers/media/usb/siano/
9411 F:      drivers/media/mmc/siano/
9412
9413 SIMPLEFB FB DRIVER
9414 M:      Hans de Goede <hdegoede@redhat.com>
9415 L:      linux-fbdev@vger.kernel.org
9416 S:      Maintained
9417 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9418 F:      drivers/video/fbdev/simplefb.c
9419 F:      include/linux/platform_data/simplefb.h
9420
9421 SH_VEU V4L2 MEM2MEM DRIVER
9422 L:      linux-media@vger.kernel.org
9423 S:      Orphan
9424 F:      drivers/media/platform/sh_veu.c
9425
9426 SH_VOU V4L2 OUTPUT DRIVER
9427 L:      linux-media@vger.kernel.org
9428 S:      Orphan
9429 F:      drivers/media/platform/sh_vou.c
9430 F:      include/media/sh_vou.h
9431
9432 SIMPLE FIRMWARE INTERFACE (SFI)
9433 M:      Len Brown <lenb@kernel.org>
9434 L:      sfi-devel@simplefirmware.org
9435 W:      http://simplefirmware.org/
9436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9437 S:      Supported
9438 F:      arch/x86/platform/sfi/
9439 F:      drivers/sfi/
9440 F:      include/linux/sfi*.h
9441
9442 SIMTEC EB110ATX (Chalice CATS)
9443 P:      Ben Dooks
9444 P:      Vincent Sanders <vince@simtec.co.uk>
9445 M:      Simtec Linux Team <linux@simtec.co.uk>
9446 W:      http://www.simtec.co.uk/products/EB110ATX/
9447 S:      Supported
9448
9449 SIMTEC EB2410ITX (BAST)
9450 P:      Ben Dooks
9451 P:      Vincent Sanders <vince@simtec.co.uk>
9452 M:      Simtec Linux Team <linux@simtec.co.uk>
9453 W:      http://www.simtec.co.uk/products/EB2410ITX/
9454 S:      Supported
9455 F:      arch/arm/mach-s3c24xx/mach-bast.c
9456 F:      arch/arm/mach-s3c24xx/bast-ide.c
9457 F:      arch/arm/mach-s3c24xx/bast-irq.c
9458
9459 TI DAVINCI MACHINE SUPPORT
9460 M:      Sekhar Nori <nsekhar@ti.com>
9461 M:      Kevin Hilman <khilman@deeprootsystems.com>
9462 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9463 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9464 S:      Supported
9465 F:      arch/arm/mach-davinci/
9466 F:      drivers/i2c/busses/i2c-davinci.c
9467
9468 TI DAVINCI SERIES MEDIA DRIVER
9469 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9470 L:      linux-media@vger.kernel.org
9471 W:      http://linuxtv.org/
9472 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9473 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9474 S:      Maintained
9475 F:      drivers/media/platform/davinci/
9476 F:      include/media/davinci/
9477
9478 TI AM437X VPFE DRIVER
9479 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9480 L:      linux-media@vger.kernel.org
9481 W:      http://linuxtv.org/
9482 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9483 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9484 S:      Maintained
9485 F:      drivers/media/platform/am437x/
9486
9487 OV2659 OMNIVISION SENSOR DRIVER
9488 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9489 L:      linux-media@vger.kernel.org
9490 W:      http://linuxtv.org/
9491 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9492 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9493 S:      Maintained
9494 F:      drivers/media/i2c/ov2659.c
9495 F:      include/media/ov2659.h
9496
9497 SIS 190 ETHERNET DRIVER
9498 M:      Francois Romieu <romieu@fr.zoreil.com>
9499 L:      netdev@vger.kernel.org
9500 S:      Maintained
9501 F:      drivers/net/ethernet/sis/sis190.c
9502
9503 SIS 900/7016 FAST ETHERNET DRIVER
9504 M:      Daniele Venzano <venza@brownhat.org>
9505 W:      http://www.brownhat.org/sis900.html
9506 L:      netdev@vger.kernel.org
9507 S:      Maintained
9508 F:      drivers/net/ethernet/sis/sis900.*
9509
9510 SIS FRAMEBUFFER DRIVER
9511 M:      Thomas Winischhofer <thomas@winischhofer.net>
9512 W:      http://www.winischhofer.net/linuxsisvga.shtml
9513 S:      Maintained
9514 F:      Documentation/fb/sisfb.txt
9515 F:      drivers/video/fbdev/sis/
9516 F:      include/video/sisfb.h
9517
9518 SIS USB2VGA DRIVER
9519 M:      Thomas Winischhofer <thomas@winischhofer.net>
9520 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9521 S:      Maintained
9522 F:      drivers/usb/misc/sisusbvga/
9523
9524 SLAB ALLOCATOR
9525 M:      Christoph Lameter <cl@linux.com>
9526 M:      Pekka Enberg <penberg@kernel.org>
9527 M:      David Rientjes <rientjes@google.com>
9528 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9529 M:      Andrew Morton <akpm@linux-foundation.org>
9530 L:      linux-mm@kvack.org
9531 S:      Maintained
9532 F:      include/linux/sl?b*.h
9533 F:      mm/sl?b*
9534
9535 SLEEPABLE READ-COPY UPDATE (SRCU)
9536 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9537 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9538 M:      Josh Triplett <josh@joshtriplett.org>
9539 R:      Steven Rostedt <rostedt@goodmis.org>
9540 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9541 L:      linux-kernel@vger.kernel.org
9542 W:      http://www.rdrop.com/users/paulmck/RCU/
9543 S:      Supported
9544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9545 F:      include/linux/srcu.h
9546 F:      kernel/rcu/srcu.c
9547
9548 SMACK SECURITY MODULE
9549 M:      Casey Schaufler <casey@schaufler-ca.com>
9550 L:      linux-security-module@vger.kernel.org
9551 W:      http://schaufler-ca.com
9552 T:      git git://git.gitorious.org/smack-next/kernel.git
9553 S:      Maintained
9554 F:      Documentation/security/Smack.txt
9555 F:      security/smack/
9556
9557 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9558 M:      Kevin Hilman <khilman@kernel.org>
9559 M:      Nishanth Menon <nm@ti.com>
9560 S:      Maintained
9561 F:      drivers/power/avs/
9562 F:      include/linux/power/smartreflex.h
9563 L:      linux-pm@vger.kernel.org
9564
9565 SMC91x ETHERNET DRIVER
9566 M:      Nicolas Pitre <nico@fluxnic.net>
9567 S:      Odd Fixes
9568 F:      drivers/net/ethernet/smsc/smc91x.*
9569
9570 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9571 M:      Sakari Ailus <sakari.ailus@iki.fi>
9572 L:      linux-media@vger.kernel.org
9573 S:      Maintained
9574 F:      drivers/media/i2c/smiapp/
9575 F:      include/media/smiapp.h
9576 F:      drivers/media/i2c/smiapp-pll.c
9577 F:      drivers/media/i2c/smiapp-pll.h
9578 F:      include/uapi/linux/smiapp.h
9579 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9580
9581 SMM665 HARDWARE MONITOR DRIVER
9582 M:      Guenter Roeck <linux@roeck-us.net>
9583 L:      lm-sensors@lm-sensors.org
9584 S:      Maintained
9585 F:      Documentation/hwmon/smm665
9586 F:      drivers/hwmon/smm665.c
9587
9588 SMSC EMC2103 HARDWARE MONITOR DRIVER
9589 M:      Steve Glendinning <steve.glendinning@shawell.net>
9590 L:      lm-sensors@lm-sensors.org
9591 S:      Maintained
9592 F:      Documentation/hwmon/emc2103
9593 F:      drivers/hwmon/emc2103.c
9594
9595 SMSC SCH5627 HARDWARE MONITOR DRIVER
9596 M:      Hans de Goede <hdegoede@redhat.com>
9597 L:      lm-sensors@lm-sensors.org
9598 S:      Supported
9599 F:      Documentation/hwmon/sch5627
9600 F:      drivers/hwmon/sch5627.c
9601
9602 SMSC47B397 HARDWARE MONITOR DRIVER
9603 M:      Jean Delvare <jdelvare@suse.com>
9604 L:      lm-sensors@lm-sensors.org
9605 S:      Maintained
9606 F:      Documentation/hwmon/smsc47b397
9607 F:      drivers/hwmon/smsc47b397.c
9608
9609 SMSC911x ETHERNET DRIVER
9610 M:      Steve Glendinning <steve.glendinning@shawell.net>
9611 L:      netdev@vger.kernel.org
9612 S:      Maintained
9613 F:      include/linux/smsc911x.h
9614 F:      drivers/net/ethernet/smsc/smsc911x.*
9615
9616 SMSC9420 PCI ETHERNET DRIVER
9617 M:      Steve Glendinning <steve.glendinning@shawell.net>
9618 L:      netdev@vger.kernel.org
9619 S:      Maintained
9620 F:      drivers/net/ethernet/smsc/smsc9420.*
9621
9622 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9623 M:      Steve Glendinning <steve.glendinning@shawell.net>
9624 L:      linux-fbdev@vger.kernel.org
9625 S:      Maintained
9626 F:      drivers/video/fbdev/smscufx.c
9627
9628 SOC-CAMERA V4L2 SUBSYSTEM
9629 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9630 L:      linux-media@vger.kernel.org
9631 T:      git git://linuxtv.org/media_tree.git
9632 S:      Maintained
9633 F:      include/media/soc*
9634 F:      drivers/media/i2c/soc_camera/
9635 F:      drivers/media/platform/soc_camera/
9636
9637 SOEKRIS NET48XX LED SUPPORT
9638 M:      Chris Boot <bootc@bootc.net>
9639 S:      Maintained
9640 F:      drivers/leds/leds-net48xx.c
9641
9642 SOFTLOGIC 6x10 MPEG CODEC
9643 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9644 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9645 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9646 M:      Ismael Luceno <ismael@iodev.co.uk>
9647 L:      linux-media@vger.kernel.org
9648 S:      Supported
9649 F:      drivers/media/pci/solo6x10/
9650
9651 SOFTWARE RAID (Multiple Disks) SUPPORT
9652 M:      Neil Brown <neilb@suse.com>
9653 L:      linux-raid@vger.kernel.org
9654 S:      Supported
9655 F:      drivers/md/
9656 F:      include/linux/raid/
9657 F:      include/uapi/linux/raid/
9658
9659 SONIC NETWORK DRIVER
9660 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9661 L:      netdev@vger.kernel.org
9662 S:      Maintained
9663 F:      drivers/net/ethernet/natsemi/sonic.*
9664
9665 SONICS SILICON BACKPLANE DRIVER (SSB)
9666 M:      Michael Buesch <m@bues.ch>
9667 L:      netdev@vger.kernel.org
9668 S:      Maintained
9669 F:      drivers/ssb/
9670 F:      include/linux/ssb/
9671
9672 SONY VAIO CONTROL DEVICE DRIVER
9673 M:      Mattia Dongili <malattia@linux.it>
9674 L:      platform-driver-x86@vger.kernel.org
9675 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9676 S:      Maintained
9677 F:      Documentation/laptops/sony-laptop.txt
9678 F:      drivers/char/sonypi.c
9679 F:      drivers/platform/x86/sony-laptop.c
9680 F:      include/linux/sony-laptop.h
9681
9682 SONY MEMORYSTICK CARD SUPPORT
9683 M:      Alex Dubov <oakad@yahoo.com>
9684 W:      http://tifmxx.berlios.de/
9685 S:      Maintained
9686 F:      drivers/memstick/host/tifm_ms.c
9687
9688 SONY MEMORYSTICK STANDARD SUPPORT
9689 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9690 S:      Maintained
9691 F:      drivers/memstick/core/ms_block.*
9692
9693 SOUND
9694 M:      Jaroslav Kysela <perex@perex.cz>
9695 M:      Takashi Iwai <tiwai@suse.com>
9696 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9697 W:      http://www.alsa-project.org/
9698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9699 T:      git git://git.alsa-project.org/alsa-kernel.git
9700 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9701 S:      Maintained
9702 F:      Documentation/sound/
9703 F:      include/sound/
9704 F:      include/uapi/sound/
9705 F:      sound/
9706
9707 SOUND - COMPRESSED AUDIO
9708 M:      Vinod Koul <vinod.koul@intel.com>
9709 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9711 S:      Supported
9712 F:      Documentation/sound/alsa/compress_offload.txt
9713 F:      include/sound/compress_driver.h
9714 F:      include/uapi/sound/compress_*
9715 F:      sound/core/compress_offload.c
9716 F:      sound/soc/soc-compress.c
9717
9718 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9719 M:      Liam Girdwood <lgirdwood@gmail.com>
9720 M:      Mark Brown <broonie@kernel.org>
9721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9722 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9723 W:      http://alsa-project.org/main/index.php/ASoC
9724 S:      Supported
9725 F:      Documentation/sound/alsa/soc/
9726 F:      sound/soc/
9727 F:      include/sound/soc*
9728
9729 SOUND - DMAENGINE HELPERS
9730 M:      Lars-Peter Clausen <lars@metafoo.de>
9731 S:      Supported
9732 F:      include/sound/dmaengine_pcm.h
9733 F:      sound/core/pcm_dmaengine.c
9734 F:      sound/soc/soc-generic-dmaengine-pcm.c
9735
9736 SP2 MEDIA DRIVER
9737 M:      Olli Salonen <olli.salonen@iki.fi>
9738 L:      linux-media@vger.kernel.org
9739 W:      http://linuxtv.org/
9740 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9741 S:      Maintained
9742 F:      drivers/media/dvb-frontends/sp2*
9743
9744 SPARC + UltraSPARC (sparc/sparc64)
9745 M:      "David S. Miller" <davem@davemloft.net>
9746 L:      sparclinux@vger.kernel.org
9747 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9750 S:      Maintained
9751 F:      arch/sparc/
9752 F:      drivers/sbus/
9753
9754 SPARC SERIAL DRIVERS
9755 M:      "David S. Miller" <davem@davemloft.net>
9756 L:      sparclinux@vger.kernel.org
9757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9759 S:      Maintained
9760 F:      include/linux/sunserialcore.h
9761 F:      drivers/tty/serial/suncore.c
9762 F:      drivers/tty/serial/sunhv.c
9763 F:      drivers/tty/serial/sunsab.c
9764 F:      drivers/tty/serial/sunsab.h
9765 F:      drivers/tty/serial/sunsu.c
9766 F:      drivers/tty/serial/sunzilog.c
9767 F:      drivers/tty/serial/sunzilog.h
9768
9769 SPARSE CHECKER
9770 M:      "Christopher Li" <sparse@chrisli.org>
9771 L:      linux-sparse@vger.kernel.org
9772 W:      https://sparse.wiki.kernel.org/
9773 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9774 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9775 S:      Maintained
9776 F:      include/linux/compiler.h
9777
9778 SPEAR PLATFORM SUPPORT
9779 M:      Viresh Kumar <vireshk@kernel.org>
9780 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9781 L:      spear-devel@list.st.com
9782 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9783 W:      http://www.st.com/spear
9784 S:      Maintained
9785 F:      arch/arm/mach-spear/
9786
9787 SPEAR CLOCK FRAMEWORK SUPPORT
9788 M:      Viresh Kumar <vireshk@kernel.org>
9789 L:      spear-devel@list.st.com
9790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9791 W:      http://www.st.com/spear
9792 S:      Maintained
9793 F:      drivers/clk/spear/
9794
9795 SPI SUBSYSTEM
9796 M:      Mark Brown <broonie@kernel.org>
9797 L:      linux-spi@vger.kernel.org
9798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9799 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9800 S:      Maintained
9801 F:      Documentation/spi/
9802 F:      drivers/spi/
9803 F:      include/linux/spi/
9804 F:      include/uapi/linux/spi/
9805
9806 SPIDERNET NETWORK DRIVER for CELL
9807 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9808 L:      netdev@vger.kernel.org
9809 S:      Supported
9810 F:      Documentation/networking/spider_net.txt
9811 F:      drivers/net/ethernet/toshiba/spider_net*
9812
9813 SPU FILE SYSTEM
9814 M:      Jeremy Kerr <jk@ozlabs.org>
9815 L:      linuxppc-dev@lists.ozlabs.org
9816 W:      http://www.ibm.com/developerworks/power/cell/
9817 S:      Supported
9818 F:      Documentation/filesystems/spufs.txt
9819 F:      arch/powerpc/platforms/cell/spufs/
9820
9821 SQUASHFS FILE SYSTEM
9822 M:      Phillip Lougher <phillip@squashfs.org.uk>
9823 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9824 W:      http://squashfs.org.uk
9825 S:      Maintained
9826 F:      Documentation/filesystems/squashfs.txt
9827 F:      fs/squashfs/
9828
9829 SRM (Alpha) environment access
9830 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9831 S:      Maintained
9832 F:      arch/alpha/kernel/srm_env.c
9833
9834 STABLE BRANCH
9835 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9836 L:      stable@vger.kernel.org
9837 S:      Supported
9838 F:      Documentation/stable_kernel_rules.txt
9839
9840 STAGING SUBSYSTEM
9841 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9843 L:      devel@driverdev.osuosl.org
9844 S:      Supported
9845 F:      drivers/staging/
9846
9847 STAGING - COMEDI
9848 M:      Ian Abbott <abbotti@mev.co.uk>
9849 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9850 S:      Odd Fixes
9851 F:      drivers/staging/comedi/
9852
9853 STAGING - FLARION FT1000 DRIVERS
9854 M:      Marek Belisko <marek.belisko@gmail.com>
9855 S:      Odd Fixes
9856 F:      drivers/staging/ft1000/
9857
9858 STAGING - INDUSTRIAL IO
9859 M:      Jonathan Cameron <jic23@kernel.org>
9860 L:      linux-iio@vger.kernel.org
9861 S:      Odd Fixes
9862 F:      drivers/staging/iio/
9863
9864 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9865 M:      Jarod Wilson <jarod@wilsonet.com>
9866 W:      http://www.lirc.org/
9867 S:      Odd Fixes
9868 F:      drivers/staging/media/lirc/
9869
9870 STAGING - LUSTRE PARALLEL FILESYSTEM
9871 M:      Oleg Drokin <oleg.drokin@intel.com>
9872 M:      Andreas Dilger <andreas.dilger@intel.com>
9873 L:      HPDD-discuss@lists.01.org (moderated for non-subscribers)
9874 W:      http://lustre.opensfs.org/
9875 S:      Maintained
9876 F:      drivers/staging/lustre
9877
9878 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9879 M:      Julian Andres Klode <jak@jak-linux.org>
9880 M:      Marc Dietrich <marvin24@gmx.de>
9881 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9882 L:      linux-tegra@vger.kernel.org
9883 S:      Maintained
9884 F:      drivers/staging/nvec/
9885
9886 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9887 M:      Jens Frederich <jfrederich@gmail.com>
9888 M:      Daniel Drake <dsd@laptop.org>
9889 M:      Jon Nettleton <jon.nettleton@gmail.com>
9890 W:      http://wiki.laptop.org/go/DCON
9891 S:      Maintained
9892 F:      drivers/staging/olpc_dcon/
9893
9894 STAGING - OZMO DEVICES USB OVER WIFI DRIVER
9895 M:      Shigekatsu Tateno <shigekatsu.tateno@atmel.com>
9896 S:      Maintained
9897 F:      drivers/staging/ozwpan/
9898
9899 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9900 M:      Willy Tarreau <willy@meta-x.org>
9901 S:      Odd Fixes
9902 F:      drivers/staging/panel/
9903
9904 STAGING - REALTEK RTL8712U DRIVERS
9905 M:      Larry Finger <Larry.Finger@lwfinger.net>
9906 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9907 S:      Odd Fixes
9908 F:      drivers/staging/rtl8712/
9909
9910 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9911 M:      Larry Finger <Larry.Finger@lwfinger.net>
9912 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9913 L:      linux-wireless@vger.kernel.org
9914 S:      Maintained
9915 F:      drivers/staging/rtl8723au/
9916
9917 STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
9918 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9919 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9920 M:      Sudip Mukherjee <sudip@vectorindia.org>
9921 L:      linux-fbdev@vger.kernel.org
9922 S:      Maintained
9923 F:      drivers/staging/sm7xxfb/
9924
9925 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9926 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9927 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9928 M:      Sudip Mukherjee <sudip@vectorindia.org>
9929 L:      linux-fbdev@vger.kernel.org
9930 S:      Maintained
9931 F:      drivers/staging/sm750fb/
9932
9933 STAGING - SLICOSS
9934 M:      Lior Dotan <liodot@gmail.com>
9935 M:      Christopher Harrer <charrer@alacritech.com>
9936 S:      Odd Fixes
9937 F:      drivers/staging/slicoss/
9938
9939 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9940 M:      William Hubbs <w.d.hubbs@gmail.com>
9941 M:      Chris Brannon <chris@the-brannons.com>
9942 M:      Kirk Reiser <kirk@reisers.ca>
9943 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9944 L:      speakup@linux-speakup.org
9945 W:      http://www.linux-speakup.org/
9946 S:      Odd Fixes
9947 F:      drivers/staging/speakup/
9948
9949 STAGING - VIA VT665X DRIVERS
9950 M:      Forest Bond <forest@alittletooquiet.net>
9951 S:      Odd Fixes
9952 F:      drivers/staging/vt665?/
9953
9954 STAGING - WILC1000 WIFI DRIVER
9955 M:      Johnny Kim <johnny.kim@atmel.com>
9956 M:      Rachel Kim <rachel.kim@atmel.com>
9957 M:      Dean Lee <dean.lee@atmel.com>
9958 M:      Chris Park <chris.park@atmel.com>
9959 L:      linux-wireless@vger.kernel.org
9960 S:      Supported
9961 F:      drivers/staging/wilc1000/
9962
9963 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
9964 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
9965 S:      Odd Fixes
9966 F:      drivers/staging/xgifb/
9967
9968 STARFIRE/DURALAN NETWORK DRIVER
9969 M:      Ion Badulescu <ionut@badula.org>
9970 S:      Odd Fixes
9971 F:      drivers/net/ethernet/adaptec/starfire*
9972
9973 SUN3/3X
9974 M:      Sam Creasey <sammy@sammy.net>
9975 W:      http://sammy.net/sun3/
9976 S:      Maintained
9977 F:      arch/m68k/kernel/*sun3*
9978 F:      arch/m68k/sun3*/
9979 F:      arch/m68k/include/asm/sun3*
9980 F:      drivers/net/ethernet/i825xx/sun3*
9981
9982 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
9983 M:      Hans de Goede <hdegoede@redhat.com>
9984 L:      linux-input@vger.kernel.org
9985 S:      Maintained
9986 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
9987 F:      drivers/input/keyboard/sun4i-lradc-keys.c
9988
9989 SUNDANCE NETWORK DRIVER
9990 M:      Denis Kirjanov <kda@linux-powerpc.org>
9991 L:      netdev@vger.kernel.org
9992 S:      Maintained
9993 F:      drivers/net/ethernet/dlink/sundance.c
9994
9995 SUPERH
9996 L:      linux-sh@vger.kernel.org
9997 Q:      http://patchwork.kernel.org/project/linux-sh/list/
9998 S:      Orphan
9999 F:      Documentation/sh/
10000 F:      arch/sh/
10001 F:      drivers/sh/
10002
10003 SUSPEND TO RAM
10004 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10005 M:      Len Brown <len.brown@intel.com>
10006 M:      Pavel Machek <pavel@ucw.cz>
10007 L:      linux-pm@vger.kernel.org
10008 S:      Supported
10009 F:      Documentation/power/
10010 F:      arch/x86/kernel/acpi/
10011 F:      drivers/base/power/
10012 F:      kernel/power/
10013 F:      include/linux/suspend.h
10014 F:      include/linux/freezer.h
10015 F:      include/linux/pm.h
10016
10017 SVGA HANDLING
10018 M:      Martin Mares <mj@ucw.cz>
10019 L:      linux-video@atrey.karlin.mff.cuni.cz
10020 S:      Maintained
10021 F:      Documentation/svga.txt
10022 F:      arch/x86/boot/video*
10023
10024 SWIOTLB SUBSYSTEM
10025 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10026 L:      linux-kernel@vger.kernel.org
10027 S:      Supported
10028 F:      lib/swiotlb.c
10029 F:      arch/*/kernel/pci-swiotlb.c
10030 F:      include/linux/swiotlb.h
10031
10032 SWITCHDEV
10033 M:      Jiri Pirko <jiri@resnulli.us>
10034 L:      netdev@vger.kernel.org
10035 S:      Supported
10036 F:      net/switchdev/
10037 F:      include/net/switchdev.h
10038
10039 SYNOPSYS ARC ARCHITECTURE
10040 M:      Vineet Gupta <vgupta@synopsys.com>
10041 S:      Supported
10042 F:      arch/arc/
10043 F:      Documentation/devicetree/bindings/arc/*
10044 F:      drivers/tty/serial/arc_uart.c
10045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10046
10047 SYNOPSYS ARC SDP platform support
10048 M:      Alexey Brodkin <abrodkin@synopsys.com>
10049 S:      Supported
10050 F:      arch/arc/plat-axs10x
10051 F:      arch/arc/boot/dts/ax*
10052 F:      Documentation/devicetree/bindings/arc/axs10*
10053
10054 SYSTEM CONFIGURATION (SYSCON)
10055 M:      Lee Jones <lee.jones@linaro.org>
10056 M:      Arnd Bergmann <arnd@arndb.de>
10057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10058 S:      Supported
10059 F:      drivers/mfd/syscon.c
10060
10061 SYSV FILESYSTEM
10062 M:      Christoph Hellwig <hch@infradead.org>
10063 S:      Maintained
10064 F:      Documentation/filesystems/sysv-fs.txt
10065 F:      fs/sysv/
10066 F:      include/linux/sysv_fs.h
10067
10068 TARGET SUBSYSTEM
10069 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10070 L:      linux-scsi@vger.kernel.org
10071 L:      target-devel@vger.kernel.org
10072 W:      http://www.linux-iscsi.org
10073 W:      http://groups.google.com/group/linux-iscsi-target-dev
10074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10075 S:      Supported
10076 F:      drivers/target/
10077 F:      include/target/
10078 F:      Documentation/target/
10079
10080 TASKSTATS STATISTICS INTERFACE
10081 M:      Balbir Singh <bsingharora@gmail.com>
10082 S:      Maintained
10083 F:      Documentation/accounting/taskstats*
10084 F:      include/linux/taskstats*
10085 F:      kernel/taskstats.c
10086
10087 TC CLASSIFIER
10088 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10089 L:      netdev@vger.kernel.org
10090 S:      Maintained
10091 F:      include/net/pkt_cls.h
10092 F:      include/uapi/linux/pkt_cls.h
10093 F:      net/sched/
10094
10095 TCP LOW PRIORITY MODULE
10096 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10097 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10098 W:      http://tcp-lp-mod.sourceforge.net/
10099 S:      Maintained
10100 F:      net/ipv4/tcp_lp.c
10101
10102 TDA10071 MEDIA DRIVER
10103 M:      Antti Palosaari <crope@iki.fi>
10104 L:      linux-media@vger.kernel.org
10105 W:      http://linuxtv.org/
10106 W:      http://palosaari.fi/linux/
10107 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10108 T:      git git://linuxtv.org/anttip/media_tree.git
10109 S:      Maintained
10110 F:      drivers/media/dvb-frontends/tda10071*
10111
10112 TDA18212 MEDIA DRIVER
10113 M:      Antti Palosaari <crope@iki.fi>
10114 L:      linux-media@vger.kernel.org
10115 W:      http://linuxtv.org/
10116 W:      http://palosaari.fi/linux/
10117 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10118 T:      git git://linuxtv.org/anttip/media_tree.git
10119 S:      Maintained
10120 F:      drivers/media/tuners/tda18212*
10121
10122 TDA18218 MEDIA DRIVER
10123 M:      Antti Palosaari <crope@iki.fi>
10124 L:      linux-media@vger.kernel.org
10125 W:      http://linuxtv.org/
10126 W:      http://palosaari.fi/linux/
10127 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10128 T:      git git://linuxtv.org/anttip/media_tree.git
10129 S:      Maintained
10130 F:      drivers/media/tuners/tda18218*
10131
10132 TDA18271 MEDIA DRIVER
10133 M:      Michael Krufky <mkrufky@linuxtv.org>
10134 L:      linux-media@vger.kernel.org
10135 W:      http://linuxtv.org/
10136 W:      http://github.com/mkrufky
10137 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10138 T:      git git://linuxtv.org/mkrufky/tuners.git
10139 S:      Maintained
10140 F:      drivers/media/tuners/tda18271*
10141
10142 TDA827x MEDIA DRIVER
10143 M:      Michael Krufky <mkrufky@linuxtv.org>
10144 L:      linux-media@vger.kernel.org
10145 W:      http://linuxtv.org/
10146 W:      http://github.com/mkrufky
10147 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10148 T:      git git://linuxtv.org/mkrufky/tuners.git
10149 S:      Maintained
10150 F:      drivers/media/tuners/tda8290.*
10151
10152 TDA8290 MEDIA DRIVER
10153 M:      Michael Krufky <mkrufky@linuxtv.org>
10154 L:      linux-media@vger.kernel.org
10155 W:      http://linuxtv.org/
10156 W:      http://github.com/mkrufky
10157 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10158 T:      git git://linuxtv.org/mkrufky/tuners.git
10159 S:      Maintained
10160 F:      drivers/media/tuners/tda8290.*
10161
10162 TDA9840 MEDIA DRIVER
10163 M:      Hans Verkuil <hverkuil@xs4all.nl>
10164 L:      linux-media@vger.kernel.org
10165 T:      git git://linuxtv.org/media_tree.git
10166 W:      http://linuxtv.org
10167 S:      Maintained
10168 F:      drivers/media/i2c/tda9840*
10169
10170 TEA5761 TUNER DRIVER
10171 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10172 L:      linux-media@vger.kernel.org
10173 W:      http://linuxtv.org
10174 T:      git git://linuxtv.org/media_tree.git
10175 S:      Odd fixes
10176 F:      drivers/media/tuners/tea5761.*
10177
10178 TEA5767 TUNER DRIVER
10179 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10180 L:      linux-media@vger.kernel.org
10181 W:      http://linuxtv.org
10182 T:      git git://linuxtv.org/media_tree.git
10183 S:      Maintained
10184 F:      drivers/media/tuners/tea5767.*
10185
10186 TEA6415C MEDIA DRIVER
10187 M:      Hans Verkuil <hverkuil@xs4all.nl>
10188 L:      linux-media@vger.kernel.org
10189 T:      git git://linuxtv.org/media_tree.git
10190 W:      http://linuxtv.org
10191 S:      Maintained
10192 F:      drivers/media/i2c/tea6415c*
10193
10194 TEA6420 MEDIA DRIVER
10195 M:      Hans Verkuil <hverkuil@xs4all.nl>
10196 L:      linux-media@vger.kernel.org
10197 T:      git git://linuxtv.org/media_tree.git
10198 W:      http://linuxtv.org
10199 S:      Maintained
10200 F:      drivers/media/i2c/tea6420*
10201
10202 TEAM DRIVER
10203 M:      Jiri Pirko <jiri@resnulli.us>
10204 L:      netdev@vger.kernel.org
10205 S:      Supported
10206 F:      drivers/net/team/
10207 F:      include/linux/if_team.h
10208 F:      include/uapi/linux/if_team.h
10209
10210 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10211 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10212 S:      Maintained
10213 F:      arch/x86/platform/ts5500/
10214
10215 TECHNOTREND USB IR RECEIVER
10216 M:      Sean Young <sean@mess.org>
10217 L:      linux-media@vger.kernel.org
10218 S:      Maintained
10219 F:      drivers/media/rc/ttusbir.c
10220
10221 TEGRA ARCHITECTURE SUPPORT
10222 M:      Stephen Warren <swarren@wwwdotorg.org>
10223 M:      Thierry Reding <thierry.reding@gmail.com>
10224 M:      Alexandre Courbot <gnurou@gmail.com>
10225 L:      linux-tegra@vger.kernel.org
10226 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10228 S:      Supported
10229 N:      [^a-z]tegra
10230
10231 TEGRA CLOCK DRIVER
10232 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10233 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10234 S:      Supported
10235 F:      drivers/clk/tegra/
10236
10237 TEGRA DMA DRIVER
10238 M:      Laxman Dewangan <ldewangan@nvidia.com>
10239 S:      Supported
10240 F:      drivers/dma/tegra20-apb-dma.c
10241
10242 TEGRA I2C DRIVER
10243 M:      Laxman Dewangan <ldewangan@nvidia.com>
10244 S:      Supported
10245 F:      drivers/i2c/busses/i2c-tegra.c
10246
10247 TEGRA IOMMU DRIVERS
10248 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10249 S:      Supported
10250 F:      drivers/iommu/tegra*
10251
10252 TEGRA KBC DRIVER
10253 M:      Rakesh Iyer <riyer@nvidia.com>
10254 M:      Laxman Dewangan <ldewangan@nvidia.com>
10255 S:      Supported
10256 F:      drivers/input/keyboard/tegra-kbc.c
10257
10258 TEGRA PWM DRIVER
10259 M:      Thierry Reding <thierry.reding@gmail.com>
10260 S:      Supported
10261 F:      drivers/pwm/pwm-tegra.c
10262
10263 TEGRA SERIAL DRIVER
10264 M:      Laxman Dewangan <ldewangan@nvidia.com>
10265 S:      Supported
10266 F:      drivers/tty/serial/serial-tegra.c
10267
10268 TEGRA SPI DRIVER
10269 M:      Laxman Dewangan <ldewangan@nvidia.com>
10270 S:      Supported
10271 F:      drivers/spi/spi-tegra*
10272
10273 TEHUTI ETHERNET DRIVER
10274 M:      Andy Gospodarek <andy@greyhouse.net>
10275 L:      netdev@vger.kernel.org
10276 S:      Supported
10277 F:      drivers/net/ethernet/tehuti/*
10278
10279 Telecom Clock Driver for MCPL0010
10280 M:      Mark Gross <mark.gross@intel.com>
10281 S:      Supported
10282 F:      drivers/char/tlclk.c
10283
10284 TENSILICA XTENSA PORT (xtensa)
10285 M:      Chris Zankel <chris@zankel.net>
10286 M:      Max Filippov <jcmvbkbc@gmail.com>
10287 L:      linux-xtensa@linux-xtensa.org
10288 S:      Maintained
10289 F:      arch/xtensa/
10290 F:      drivers/irqchip/irq-xtensa-*
10291
10292 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10293 M:      Hans Verkuil <hverkuil@xs4all.nl>
10294 L:      linux-media@vger.kernel.org
10295 T:      git git://linuxtv.org/media_tree.git
10296 W:      http://linuxtv.org
10297 S:      Maintained
10298 F:      drivers/media/radio/radio-raremono.c
10299
10300 THERMAL
10301 M:      Zhang Rui <rui.zhang@intel.com>
10302 M:      Eduardo Valentin <edubezval@gmail.com>
10303 L:      linux-pm@vger.kernel.org
10304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10306 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10307 S:      Supported
10308 F:      drivers/thermal/
10309 F:      include/linux/thermal.h
10310 F:      include/uapi/linux/thermal.h
10311 F:      include/linux/cpu_cooling.h
10312 F:      Documentation/devicetree/bindings/thermal/
10313
10314 THINGM BLINK(1) USB RGB LED DRIVER
10315 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10316 S:      Maintained
10317 F:      drivers/hid/hid-thingm.c
10318
10319 THINKPAD ACPI EXTRAS DRIVER
10320 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10321 L:      ibm-acpi-devel@lists.sourceforge.net
10322 L:      platform-driver-x86@vger.kernel.org
10323 W:      http://ibm-acpi.sourceforge.net
10324 W:      http://thinkwiki.org/wiki/Ibm-acpi
10325 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10326 S:      Maintained
10327 F:      drivers/platform/x86/thinkpad_acpi.c
10328
10329 TI BANDGAP AND THERMAL DRIVER
10330 M:      Eduardo Valentin <edubezval@gmail.com>
10331 L:      linux-pm@vger.kernel.org
10332 L:      linux-omap@vger.kernel.org
10333 S:      Maintained
10334 F:      drivers/thermal/ti-soc-thermal/
10335
10336 TI CDCE706 CLOCK DRIVER
10337 M:      Max Filippov <jcmvbkbc@gmail.com>
10338 S:      Maintained
10339 F:      drivers/clk/clk-cdce706.c
10340
10341 TI CLOCK DRIVER
10342 M:      Tero Kristo <t-kristo@ti.com>
10343 L:      linux-omap@vger.kernel.org
10344 S:      Maintained
10345 F:      drivers/clk/ti/
10346 F:      include/linux/clk/ti.h
10347
10348 TI FLASH MEDIA INTERFACE DRIVER
10349 M:      Alex Dubov <oakad@yahoo.com>
10350 S:      Maintained
10351 F:      drivers/misc/tifm*
10352 F:      drivers/mmc/host/tifm_sd.c
10353 F:      include/linux/tifm.h
10354
10355 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10356 M:      Santosh Shilimkar <ssantosh@kernel.org>
10357 L:      linux-kernel@vger.kernel.org
10358 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10359 S:      Maintained
10360 F:      drivers/soc/ti/*
10361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10362
10363
10364 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10365 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10366 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10367 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10368 S:      Maintained
10369 F:      sound/soc/codecs/lm49453*
10370 F:      sound/soc/codecs/isabelle*
10371
10372 TI LP855x BACKLIGHT DRIVER
10373 M:      Milo Kim <milo.kim@ti.com>
10374 S:      Maintained
10375 F:      Documentation/backlight/lp855x-driver.txt
10376 F:      drivers/video/backlight/lp855x_bl.c
10377 F:      include/linux/platform_data/lp855x.h
10378
10379 TI LP8727 CHARGER DRIVER
10380 M:      Milo Kim <milo.kim@ti.com>
10381 S:      Maintained
10382 F:      drivers/power/lp8727_charger.c
10383 F:      include/linux/platform_data/lp8727.h
10384
10385 TI LP8788 MFD DRIVER
10386 M:      Milo Kim <milo.kim@ti.com>
10387 S:      Maintained
10388 F:      drivers/iio/adc/lp8788_adc.c
10389 F:      drivers/leds/leds-lp8788.c
10390 F:      drivers/mfd/lp8788*.c
10391 F:      drivers/power/lp8788-charger.c
10392 F:      drivers/regulator/lp8788-*.c
10393 F:      include/linux/mfd/lp8788*.h
10394
10395 TI NETCP ETHERNET DRIVER
10396 M:      Wingman Kwok <w-kwok2@ti.com>
10397 M:      Murali Karicheri <m-karicheri2@ti.com>
10398 L:      netdev@vger.kernel.org
10399 S:      Maintained
10400 F:      drivers/net/ethernet/ti/netcp*
10401
10402 TI TAS571X FAMILY ASoC CODEC DRIVER
10403 M:      Kevin Cernekee <cernekee@chromium.org>
10404 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10405 S:      Odd Fixes
10406 F:      sound/soc/codecs/tas571x*
10407
10408 TI TWL4030 SERIES SOC CODEC DRIVER
10409 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10410 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10411 S:      Maintained
10412 F:      sound/soc/codecs/twl4030*
10413
10414 TI WILINK WIRELESS DRIVERS
10415 L:      linux-wireless@vger.kernel.org
10416 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10417 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10419 S:      Orphan
10420 F:      drivers/net/wireless/ti/
10421 F:      include/linux/wl12xx.h
10422
10423 TIPC NETWORK LAYER
10424 M:      Jon Maloy <jon.maloy@ericsson.com>
10425 M:      Ying Xue <ying.xue@windriver.com>
10426 L:      netdev@vger.kernel.org (core kernel code)
10427 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10428 W:      http://tipc.sourceforge.net/
10429 S:      Maintained
10430 F:      include/uapi/linux/tipc*.h
10431 F:      net/tipc/
10432
10433 TILE ARCHITECTURE
10434 M:      Chris Metcalf <cmetcalf@ezchip.com>
10435 W:      http://www.ezchip.com/scm/
10436 S:      Supported
10437 F:      arch/tile/
10438 F:      drivers/char/tile-srom.c
10439 F:      drivers/edac/tile_edac.c
10440 F:      drivers/net/ethernet/tile/
10441 F:      drivers/rtc/rtc-tile.c
10442 F:      drivers/tty/hvc/hvc_tile.c
10443 F:      drivers/tty/serial/tilegx.c
10444 F:      drivers/usb/host/*-tilegx.c
10445 F:      include/linux/usb/tilegx.h
10446
10447 TLAN NETWORK DRIVER
10448 M:      Samuel Chessman <chessman@tux.org>
10449 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10450 W:      http://sourceforge.net/projects/tlan/
10451 S:      Maintained
10452 F:      Documentation/networking/tlan.txt
10453 F:      drivers/net/ethernet/ti/tlan.*
10454
10455 TOMOYO SECURITY MODULE
10456 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10457 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10458 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10459 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10460 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10461 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10462 W:      http://tomoyo.sourceforge.jp/
10463 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10464 S:      Maintained
10465 F:      security/tomoyo/
10466
10467 TOPSTAR LAPTOP EXTRAS DRIVER
10468 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10469 L:      platform-driver-x86@vger.kernel.org
10470 S:      Maintained
10471 F:      drivers/platform/x86/topstar-laptop.c
10472
10473 TOSHIBA ACPI EXTRAS DRIVER
10474 M:      Azael Avalos <coproscefalo@gmail.com>
10475 L:      platform-driver-x86@vger.kernel.org
10476 S:      Maintained
10477 F:      drivers/platform/x86/toshiba_acpi.c
10478
10479 TOSHIBA BLUETOOTH DRIVER
10480 M:      Azael Avalos <coproscefalo@gmail.com>
10481 L:      platform-driver-x86@vger.kernel.org
10482 S:      Maintained
10483 F:      drivers/platform/x86/toshiba_bluetooth.c
10484
10485 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10486 M:      Azael Avalos <coproscefalo@gmail.com>
10487 L:      platform-driver-x86@vger.kernel.org
10488 S:      Maintained
10489 F:      drivers/platform/x86/toshiba_haps.c
10490
10491 TOSHIBA SMM DRIVER
10492 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10493 L:      tlinux-users@tce.toshiba-dme.co.jp
10494 W:      http://www.buzzard.org.uk/toshiba/
10495 S:      Maintained
10496 F:      drivers/char/toshiba.c
10497 F:      include/linux/toshiba.h
10498 F:      include/uapi/linux/toshiba.h
10499
10500 TOSHIBA TC358743 DRIVER
10501 M:      Mats Randgaard <matrandg@cisco.com>
10502 L:      linux-media@vger.kernel.org
10503 S:      Maintained
10504 F:      drivers/media/i2c/tc358743*
10505 F:      include/media/tc358743.h
10506
10507 TMIO MMC DRIVER
10508 M:      Ian Molton <ian@mnementh.co.uk>
10509 L:      linux-mmc@vger.kernel.org
10510 S:      Maintained
10511 F:      drivers/mmc/host/tmio_mmc*
10512 F:      drivers/mmc/host/sh_mobile_sdhi.c
10513 F:      include/linux/mmc/tmio.h
10514 F:      include/linux/mmc/sh_mobile_sdhi.h
10515
10516 TMP401 HARDWARE MONITOR DRIVER
10517 M:      Guenter Roeck <linux@roeck-us.net>
10518 L:      lm-sensors@lm-sensors.org
10519 S:      Maintained
10520 F:      Documentation/hwmon/tmp401
10521 F:      drivers/hwmon/tmp401.c
10522
10523 TMPFS (SHMEM FILESYSTEM)
10524 M:      Hugh Dickins <hughd@google.com>
10525 L:      linux-mm@kvack.org
10526 S:      Maintained
10527 F:      include/linux/shmem_fs.h
10528 F:      mm/shmem.c
10529
10530 TM6000 VIDEO4LINUX DRIVER
10531 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10532 L:      linux-media@vger.kernel.org
10533 W:      http://linuxtv.org
10534 T:      git git://linuxtv.org/media_tree.git
10535 S:      Odd fixes
10536 F:      drivers/media/usb/tm6000/
10537
10538 TW68 VIDEO4LINUX DRIVER
10539 M:      Hans Verkuil <hverkuil@xs4all.nl>
10540 L:      linux-media@vger.kernel.org
10541 T:      git git://linuxtv.org/media_tree.git
10542 W:      http://linuxtv.org
10543 S:      Odd Fixes
10544 F:      drivers/media/pci/tw68/
10545
10546 TPM DEVICE DRIVER
10547 M:      Peter Huewe <peterhuewe@gmx.de>
10548 M:      Marcel Selhorst <tpmdd@selhorst.net>
10549 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10550 W:      http://tpmdd.sourceforge.net
10551 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10552 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10553 T:      https://github.com/PeterHuewe/linux-tpmdd
10554 S:      Maintained
10555 F:      drivers/char/tpm/
10556
10557 TPM IBM_VTPM DEVICE DRIVER
10558 M:      Ashley Lai <ashleydlai@gmail.com>
10559 W:      http://tpmdd.sourceforge.net
10560 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10561 S:      Maintained
10562 F:      drivers/char/tpm/tpm_ibmvtpm*
10563
10564 TRACING
10565 M:      Steven Rostedt <rostedt@goodmis.org>
10566 M:      Ingo Molnar <mingo@redhat.com>
10567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10568 S:      Maintained
10569 F:      Documentation/trace/ftrace.txt
10570 F:      arch/*/*/*/ftrace.h
10571 F:      arch/*/kernel/ftrace.c
10572 F:      include/*/ftrace.h
10573 F:      include/linux/trace*.h
10574 F:      include/trace/
10575 F:      kernel/trace/
10576 F:      tools/testing/selftests/ftrace/
10577
10578 TRIVIAL PATCHES
10579 M:      Jiri Kosina <trivial@kernel.org>
10580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10581 S:      Maintained
10582 K:      ^Subject:.*(?i)trivial
10583
10584 TTY LAYER
10585 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10586 M:      Jiri Slaby <jslaby@suse.com>
10587 S:      Supported
10588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10589 F:      Documentation/serial/
10590 F:      drivers/tty/
10591 F:      drivers/tty/serial/serial_core.c
10592 F:      include/linux/serial_core.h
10593 F:      include/linux/serial.h
10594 F:      include/linux/tty.h
10595 F:      include/uapi/linux/serial_core.h
10596 F:      include/uapi/linux/serial.h
10597 F:      include/uapi/linux/tty.h
10598
10599 TUA9001 MEDIA DRIVER
10600 M:      Antti Palosaari <crope@iki.fi>
10601 L:      linux-media@vger.kernel.org
10602 W:      http://linuxtv.org/
10603 W:      http://palosaari.fi/linux/
10604 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10605 T:      git git://linuxtv.org/anttip/media_tree.git
10606 S:      Maintained
10607 F:      drivers/media/tuners/tua9001*
10608
10609 TULIP NETWORK DRIVERS
10610 M:      Grant Grundler <grundler@parisc-linux.org>
10611 L:      netdev@vger.kernel.org
10612 S:      Maintained
10613 F:      drivers/net/ethernet/dec/tulip/
10614
10615 TUN/TAP driver
10616 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10617 W:      http://vtun.sourceforge.net/tun
10618 S:      Maintained
10619 F:      Documentation/networking/tuntap.txt
10620 F:      arch/um/os-Linux/drivers/
10621
10622 TURBOCHANNEL SUBSYSTEM
10623 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10624 M:      Ralf Baechle <ralf@linux-mips.org>
10625 L:      linux-mips@linux-mips.org
10626 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10627 S:      Maintained
10628 F:      drivers/tc/
10629 F:      include/linux/tc.h
10630
10631 U14-34F SCSI DRIVER
10632 M:      Dario Ballabio <ballabio_dario@emc.com>
10633 L:      linux-scsi@vger.kernel.org
10634 S:      Maintained
10635 F:      drivers/scsi/u14-34f.c
10636
10637 UBI FILE SYSTEM (UBIFS)
10638 M:      Artem Bityutskiy <dedekind1@gmail.com>
10639 M:      Adrian Hunter <adrian.hunter@intel.com>
10640 L:      linux-mtd@lists.infradead.org
10641 T:      git git://git.infradead.org/ubifs-2.6.git
10642 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10643 S:      Maintained
10644 F:      Documentation/filesystems/ubifs.txt
10645 F:      fs/ubifs/
10646
10647 UCLINUX (M68KNOMMU AND COLDFIRE)
10648 M:      Greg Ungerer <gerg@uclinux.org>
10649 W:      http://www.uclinux.org/
10650 L:      linux-m68k@lists.linux-m68k.org
10651 L:      uclinux-dev@uclinux.org  (subscribers-only)
10652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10653 S:      Maintained
10654 F:      arch/m68k/coldfire/
10655 F:      arch/m68k/68*/
10656 F:      arch/m68k/*/*_no.*
10657 F:      arch/m68k/include/asm/*_no.*
10658
10659 UDF FILESYSTEM
10660 M:      Jan Kara <jack@suse.com>
10661 S:      Maintained
10662 F:      Documentation/filesystems/udf.txt
10663 F:      fs/udf/
10664
10665 UFS FILESYSTEM
10666 M:      Evgeniy Dushistov <dushistov@mail.ru>
10667 S:      Maintained
10668 F:      Documentation/filesystems/ufs.txt
10669 F:      fs/ufs/
10670
10671 UHID USERSPACE HID IO DRIVER:
10672 M:      David Herrmann <dh.herrmann@googlemail.com>
10673 L:      linux-input@vger.kernel.org
10674 S:      Maintained
10675 F:      drivers/hid/uhid.c
10676 F:      include/uapi/linux/uhid.h
10677
10678 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10679 L:      linux-usb@vger.kernel.org
10680 S:      Orphan
10681 F:      drivers/uwb/
10682 F:      include/linux/uwb.h
10683 F:      include/linux/uwb/
10684
10685 UNICORE32 ARCHITECTURE:
10686 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10687 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10688 S:      Maintained
10689 T:      git git://github.com/gxt/linux.git
10690 F:      arch/unicore32/
10691
10692 UNIFDEF
10693 M:      Tony Finch <dot@dotat.at>
10694 W:      http://dotat.at/prog/unifdef
10695 S:      Maintained
10696 F:      scripts/unifdef.c
10697
10698 UNIFORM CDROM DRIVER
10699 M:      Jens Axboe <axboe@kernel.dk>
10700 W:      http://www.kernel.dk
10701 S:      Maintained
10702 F:      Documentation/cdrom/
10703 F:      drivers/cdrom/cdrom.c
10704 F:      include/linux/cdrom.h
10705 F:      include/uapi/linux/cdrom.h
10706
10707 UNISYS S-PAR DRIVERS
10708 M:      Benjamin Romer <benjamin.romer@unisys.com>
10709 M:      David Kershner <david.kershner@unisys.com>
10710 L:      sparmaintainer@unisys.com (Unisys internal)
10711 S:      Supported
10712 F:      drivers/staging/unisys/
10713
10714 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10715 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10716 L:      linux-scsi@vger.kernel.org
10717 S:      Supported
10718 F:      Documentation/scsi/ufs.txt
10719 F:      drivers/scsi/ufs/
10720
10721 UNSORTED BLOCK IMAGES (UBI)
10722 M:      Artem Bityutskiy <dedekind1@gmail.com>
10723 M:      Richard Weinberger <richard@nod.at>
10724 W:      http://www.linux-mtd.infradead.org/
10725 L:      linux-mtd@lists.infradead.org
10726 T:      git git://git.infradead.org/ubifs-2.6.git
10727 S:      Supported
10728 F:      drivers/mtd/ubi/
10729 F:      include/linux/mtd/ubi.h
10730 F:      include/uapi/mtd/ubi-user.h
10731
10732 USB ACM DRIVER
10733 M:      Oliver Neukum <oliver@neukum.org>
10734 L:      linux-usb@vger.kernel.org
10735 S:      Maintained
10736 F:      Documentation/usb/acm.txt
10737 F:      drivers/usb/class/cdc-acm.*
10738
10739 USB AR5523 WIRELESS DRIVER
10740 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10741 L:      linux-wireless@vger.kernel.org
10742 S:      Maintained
10743 F:      drivers/net/wireless/ath/ar5523/
10744
10745 USB ATTACHED SCSI
10746 M:      Hans de Goede <hdegoede@redhat.com>
10747 M:      Gerd Hoffmann <kraxel@redhat.com>
10748 L:      linux-usb@vger.kernel.org
10749 L:      linux-scsi@vger.kernel.org
10750 S:      Maintained
10751 F:      drivers/usb/storage/uas.c
10752
10753 USB CDC ETHERNET DRIVER
10754 M:      Oliver Neukum <oliver@neukum.org>
10755 L:      linux-usb@vger.kernel.org
10756 S:      Maintained
10757 F:      drivers/net/usb/cdc_*.c
10758 F:      include/uapi/linux/usb/cdc.h
10759
10760 USB CHAOSKEY DRIVER
10761 M:      Keith Packard <keithp@keithp.com>
10762 L:      linux-usb@vger.kernel.org
10763 S:      Maintained
10764 F:      drivers/usb/misc/chaoskey.c
10765
10766 USB CYPRESS C67X00 DRIVER
10767 M:      Peter Korsgaard <jacmet@sunsite.dk>
10768 L:      linux-usb@vger.kernel.org
10769 S:      Maintained
10770 F:      drivers/usb/c67x00/
10771
10772 USB DAVICOM DM9601 DRIVER
10773 M:      Peter Korsgaard <jacmet@sunsite.dk>
10774 L:      netdev@vger.kernel.org
10775 W:      http://www.linux-usb.org/usbnet
10776 S:      Maintained
10777 F:      drivers/net/usb/dm9601.c
10778
10779 USB DIAMOND RIO500 DRIVER
10780 M:      Cesar Miquel <miquel@df.uba.ar>
10781 L:      rio500-users@lists.sourceforge.net
10782 W:      http://rio500.sourceforge.net
10783 S:      Maintained
10784 F:      drivers/usb/misc/rio500*
10785
10786 USB EHCI DRIVER
10787 M:      Alan Stern <stern@rowland.harvard.edu>
10788 L:      linux-usb@vger.kernel.org
10789 S:      Maintained
10790 F:      Documentation/usb/ehci.txt
10791 F:      drivers/usb/host/ehci*
10792
10793 USB GADGET/PERIPHERAL SUBSYSTEM
10794 M:      Felipe Balbi <balbi@ti.com>
10795 L:      linux-usb@vger.kernel.org
10796 W:      http://www.linux-usb.org/gadget
10797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10798 S:      Maintained
10799 F:      drivers/usb/gadget/
10800 F:      include/linux/usb/gadget*
10801
10802 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10803 M:      Jiri Kosina <jikos@kernel.org>
10804 L:      linux-usb@vger.kernel.org
10805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10806 S:      Maintained
10807 F:      Documentation/hid/hiddev.txt
10808 F:      drivers/hid/usbhid/
10809
10810 USB ISP116X DRIVER
10811 M:      Olav Kongas <ok@artecdesign.ee>
10812 L:      linux-usb@vger.kernel.org
10813 S:      Maintained
10814 F:      drivers/usb/host/isp116x*
10815 F:      include/linux/usb/isp116x.h
10816
10817 USB MASS STORAGE DRIVER
10818 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10819 L:      linux-usb@vger.kernel.org
10820 L:      usb-storage@lists.one-eyed-alien.net
10821 S:      Maintained
10822 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10823 F:      drivers/usb/storage/
10824
10825 USB MIDI DRIVER
10826 M:      Clemens Ladisch <clemens@ladisch.de>
10827 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10828 T:      git git://git.alsa-project.org/alsa-kernel.git
10829 S:      Maintained
10830 F:      sound/usb/midi.*
10831
10832 USB NETWORKING DRIVERS
10833 L:      linux-usb@vger.kernel.org
10834 S:      Odd Fixes
10835 F:      drivers/net/usb/
10836
10837 USB OHCI DRIVER
10838 M:      Alan Stern <stern@rowland.harvard.edu>
10839 L:      linux-usb@vger.kernel.org
10840 S:      Maintained
10841 F:      Documentation/usb/ohci.txt
10842 F:      drivers/usb/host/ohci*
10843
10844 USB OTG FSM (Finite State Machine)
10845 M:      Peter Chen <Peter.Chen@freescale.com>
10846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10847 L:      linux-usb@vger.kernel.org
10848 S:      Maintained
10849 F:      drivers/usb/common/usb-otg-fsm.c
10850
10851 USB OVER IP DRIVER
10852 M:      Valentina Manea <valentina.manea.m@gmail.com>
10853 M:      Shuah Khan <shuah.kh@samsung.com>
10854 L:      linux-usb@vger.kernel.org
10855 S:      Maintained
10856 F:      drivers/usb/usbip/
10857 F:      tools/usb/usbip/
10858
10859 USB PEGASUS DRIVER
10860 M:      Petko Manolov <petkan@nucleusys.com>
10861 L:      linux-usb@vger.kernel.org
10862 L:      netdev@vger.kernel.org
10863 T:      git git://github.com/petkan/pegasus.git
10864 W:      https://github.com/petkan/pegasus
10865 S:      Maintained
10866 F:      drivers/net/usb/pegasus.*
10867
10868 USB PHY LAYER
10869 M:      Felipe Balbi <balbi@ti.com>
10870 L:      linux-usb@vger.kernel.org
10871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10872 S:      Maintained
10873 F:      drivers/usb/phy/
10874
10875 USB PRINTER DRIVER (usblp)
10876 M:      Pete Zaitcev <zaitcev@redhat.com>
10877 L:      linux-usb@vger.kernel.org
10878 S:      Supported
10879 F:      drivers/usb/class/usblp.c
10880
10881 USB RTL8150 DRIVER
10882 M:      Petko Manolov <petkan@nucleusys.com>
10883 L:      linux-usb@vger.kernel.org
10884 L:      netdev@vger.kernel.org
10885 T:      git git://github.com/petkan/rtl8150.git
10886 W:      https://github.com/petkan/rtl8150
10887 S:      Maintained
10888 F:      drivers/net/usb/rtl8150.c
10889
10890 USB SERIAL SUBSYSTEM
10891 M:      Johan Hovold <johan@kernel.org>
10892 L:      linux-usb@vger.kernel.org
10893 S:      Maintained
10894 F:      Documentation/usb/usb-serial.txt
10895 F:      drivers/usb/serial/
10896 F:      include/linux/usb/serial.h
10897
10898 USB SMSC75XX ETHERNET DRIVER
10899 M:      Steve Glendinning <steve.glendinning@shawell.net>
10900 L:      netdev@vger.kernel.org
10901 S:      Maintained
10902 F:      drivers/net/usb/smsc75xx.*
10903
10904 USB SMSC95XX ETHERNET DRIVER
10905 M:      Steve Glendinning <steve.glendinning@shawell.net>
10906 L:      netdev@vger.kernel.org
10907 S:      Maintained
10908 F:      drivers/net/usb/smsc95xx.*
10909
10910 USB SUBSYSTEM
10911 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10912 L:      linux-usb@vger.kernel.org
10913 W:      http://www.linux-usb.org
10914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10915 S:      Supported
10916 F:      Documentation/usb/
10917 F:      drivers/usb/
10918 F:      include/linux/usb.h
10919 F:      include/linux/usb/
10920
10921 USB UHCI DRIVER
10922 M:      Alan Stern <stern@rowland.harvard.edu>
10923 L:      linux-usb@vger.kernel.org
10924 S:      Maintained
10925 F:      drivers/usb/host/uhci*
10926
10927 USB "USBNET" DRIVER FRAMEWORK
10928 M:      Oliver Neukum <oneukum@suse.com>
10929 L:      netdev@vger.kernel.org
10930 W:      http://www.linux-usb.org/usbnet
10931 S:      Maintained
10932 F:      drivers/net/usb/usbnet.c
10933 F:      include/linux/usb/usbnet.h
10934
10935 USB VIDEO CLASS
10936 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10937 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10938 L:      linux-media@vger.kernel.org
10939 T:      git git://linuxtv.org/media_tree.git
10940 W:      http://www.ideasonboard.org/uvc/
10941 S:      Maintained
10942 F:      drivers/media/usb/uvc/
10943 F:      include/uapi/linux/uvcvideo.h
10944
10945 USB VISION DRIVER
10946 M:      Hans Verkuil <hverkuil@xs4all.nl>
10947 L:      linux-media@vger.kernel.org
10948 T:      git git://linuxtv.org/media_tree.git
10949 W:      http://linuxtv.org
10950 S:      Odd Fixes
10951 F:      drivers/media/usb/usbvision/
10952
10953 USB WEBCAM GADGET
10954 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10955 L:      linux-usb@vger.kernel.org
10956 S:      Maintained
10957 F:      drivers/usb/gadget/function/*uvc*
10958 F:      drivers/usb/gadget/legacy/webcam.c
10959
10960 USB WIRELESS RNDIS DRIVER (rndis_wlan)
10961 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
10962 L:      linux-wireless@vger.kernel.org
10963 S:      Maintained
10964 F:      drivers/net/wireless/rndis_wlan.c
10965
10966 USB XHCI DRIVER
10967 M:      Mathias Nyman <mathias.nyman@intel.com>
10968 L:      linux-usb@vger.kernel.org
10969 S:      Supported
10970 F:      drivers/usb/host/xhci*
10971 F:      drivers/usb/host/pci-quirks*
10972
10973 USB ZD1201 DRIVER
10974 L:      linux-wireless@vger.kernel.org
10975 W:      http://linux-lc100020.sourceforge.net
10976 S:      Orphan
10977 F:      drivers/net/wireless/zd1201.*
10978
10979 USB ZR364XX DRIVER
10980 M:      Antoine Jacquet <royale@zerezo.com>
10981 L:      linux-usb@vger.kernel.org
10982 L:      linux-media@vger.kernel.org
10983 T:      git git://linuxtv.org/media_tree.git
10984 W:      http://royale.zerezo.com/zr364xx/
10985 S:      Maintained
10986 F:      Documentation/video4linux/zr364xx.txt
10987 F:      drivers/media/usb/zr364xx/
10988
10989 ULPI BUS
10990 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
10991 L:      linux-usb@vger.kernel.org
10992 S:      Maintained
10993 F:      drivers/usb/common/ulpi.c
10994 F:      include/linux/ulpi/
10995
10996 USER-MODE LINUX (UML)
10997 M:      Jeff Dike <jdike@addtoit.com>
10998 M:      Richard Weinberger <richard@nod.at>
10999 L:      user-mode-linux-devel@lists.sourceforge.net
11000 L:      user-mode-linux-user@lists.sourceforge.net
11001 W:      http://user-mode-linux.sourceforge.net
11002 S:      Maintained
11003 F:      Documentation/virtual/uml/
11004 F:      arch/um/
11005 F:      arch/x86/um/
11006 F:      fs/hostfs/
11007 F:      fs/hppfs/
11008
11009 USERSPACE I/O (UIO)
11010 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11011 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11012 S:      Maintained
11013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11014 F:      Documentation/DocBook/uio-howto.tmpl
11015 F:      drivers/uio/
11016 F:      include/linux/uio*.h
11017
11018 UTIL-LINUX PACKAGE
11019 M:      Karel Zak <kzak@redhat.com>
11020 L:      util-linux@vger.kernel.org
11021 W:      http://en.wikipedia.org/wiki/Util-linux
11022 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11023 S:      Maintained
11024
11025 UVESAFB DRIVER
11026 M:      Michal Januszewski <spock@gentoo.org>
11027 L:      linux-fbdev@vger.kernel.org
11028 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11029 S:      Maintained
11030 F:      Documentation/fb/uvesafb.txt
11031 F:      drivers/video/fbdev/uvesafb.*
11032
11033 VFAT/FAT/MSDOS FILESYSTEM
11034 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11035 S:      Maintained
11036 F:      Documentation/filesystems/vfat.txt
11037 F:      fs/fat/
11038
11039 VFIO DRIVER
11040 M:      Alex Williamson <alex.williamson@redhat.com>
11041 L:      kvm@vger.kernel.org
11042 S:      Maintained
11043 F:      Documentation/vfio.txt
11044 F:      drivers/vfio/
11045 F:      include/linux/vfio.h
11046 F:      include/uapi/linux/vfio.h
11047
11048 VFIO PLATFORM DRIVER
11049 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11050 L:      kvm@vger.kernel.org
11051 S:      Maintained
11052 F:      drivers/vfio/platform/
11053
11054 VIDEOBUF2 FRAMEWORK
11055 M:      Pawel Osciak <pawel@osciak.com>
11056 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11057 M:      Kyungmin Park <kyungmin.park@samsung.com>
11058 L:      linux-media@vger.kernel.org
11059 S:      Maintained
11060 F:      drivers/media/v4l2-core/videobuf2-*
11061 F:      include/media/videobuf2-*
11062
11063 VIRTIO CONSOLE DRIVER
11064 M:      Amit Shah <amit.shah@redhat.com>
11065 L:      virtualization@lists.linux-foundation.org
11066 S:      Maintained
11067 F:      drivers/char/virtio_console.c
11068 F:      include/linux/virtio_console.h
11069 F:      include/uapi/linux/virtio_console.h
11070
11071 VIRTIO CORE, NET AND BLOCK DRIVERS
11072 M:      "Michael S. Tsirkin" <mst@redhat.com>
11073 L:      virtualization@lists.linux-foundation.org
11074 S:      Maintained
11075 F:      drivers/virtio/
11076 F:      tools/virtio/
11077 F:      drivers/net/virtio_net.c
11078 F:      drivers/block/virtio_blk.c
11079 F:      include/linux/virtio_*.h
11080 F:      include/uapi/linux/virtio_*.h
11081
11082 VIRTIO DRIVERS FOR S390
11083 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11084 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11085 L:      linux-s390@vger.kernel.org
11086 L:      virtualization@lists.linux-foundation.org
11087 L:      kvm@vger.kernel.org
11088 S:      Supported
11089 F:      drivers/s390/virtio/
11090
11091 VIRTIO GPU DRIVER
11092 M:      David Airlie <airlied@linux.ie>
11093 M:      Gerd Hoffmann <kraxel@redhat.com>
11094 L:      dri-devel@lists.freedesktop.org
11095 L:      virtualization@lists.linux-foundation.org
11096 S:      Maintained
11097 F:      drivers/gpu/drm/virtio/
11098 F:      include/uapi/linux/virtio_gpu.h
11099
11100 VIRTIO HOST (VHOST)
11101 M:      "Michael S. Tsirkin" <mst@redhat.com>
11102 L:      kvm@vger.kernel.org
11103 L:      virtualization@lists.linux-foundation.org
11104 L:      netdev@vger.kernel.org
11105 S:      Maintained
11106 F:      drivers/vhost/
11107 F:      include/uapi/linux/vhost.h
11108
11109 VIRTIO INPUT DRIVER
11110 M:      Gerd Hoffmann <kraxel@redhat.com>
11111 S:      Maintained
11112 F:      drivers/virtio/virtio_input.c
11113 F:      include/uapi/linux/virtio_input.h
11114
11115 VIA RHINE NETWORK DRIVER
11116 S:      Orphan
11117 F:      drivers/net/ethernet/via/via-rhine.c
11118
11119 VIA SD/MMC CARD CONTROLLER DRIVER
11120 M:      Bruce Chang <brucechang@via.com.tw>
11121 M:      Harald Welte <HaraldWelte@viatech.com>
11122 S:      Maintained
11123 F:      drivers/mmc/host/via-sdmmc.c
11124
11125 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11126 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11127 L:      linux-fbdev@vger.kernel.org
11128 S:      Maintained
11129 F:      include/linux/via-core.h
11130 F:      include/linux/via-gpio.h
11131 F:      include/linux/via_i2c.h
11132 F:      drivers/video/fbdev/via/
11133
11134 VIA VELOCITY NETWORK DRIVER
11135 M:      Francois Romieu <romieu@fr.zoreil.com>
11136 L:      netdev@vger.kernel.org
11137 S:      Maintained
11138 F:      drivers/net/ethernet/via/via-velocity.*
11139
11140 VIVID VIRTUAL VIDEO DRIVER
11141 M:      Hans Verkuil <hverkuil@xs4all.nl>
11142 L:      linux-media@vger.kernel.org
11143 T:      git git://linuxtv.org/media_tree.git
11144 W:      http://linuxtv.org
11145 S:      Maintained
11146 F:      drivers/media/platform/vivid/*
11147
11148 VLAN (802.1Q)
11149 M:      Patrick McHardy <kaber@trash.net>
11150 L:      netdev@vger.kernel.org
11151 S:      Maintained
11152 F:      drivers/net/macvlan.c
11153 F:      include/linux/if_*vlan.h
11154 F:      net/8021q/
11155
11156 VLYNQ BUS
11157 M:      Florian Fainelli <florian@openwrt.org>
11158 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11159 S:      Maintained
11160 F:      drivers/vlynq/vlynq.c
11161 F:      include/linux/vlynq.h
11162
11163 VME SUBSYSTEM
11164 M:      Martyn Welch <martyn.welch@ge.com>
11165 M:      Manohar Vanga <manohar.vanga@gmail.com>
11166 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11167 L:      devel@driverdev.osuosl.org
11168 S:      Maintained
11169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11170 F:      Documentation/vme_api.txt
11171 F:      drivers/staging/vme/
11172 F:      drivers/vme/
11173 F:      include/linux/vme*
11174
11175 VMWARE HYPERVISOR INTERFACE
11176 M:      Alok Kataria <akataria@vmware.com>
11177 L:      virtualization@lists.linux-foundation.org
11178 S:      Supported
11179 F:      arch/x86/kernel/cpu/vmware.c
11180
11181 VMWARE BALLOON DRIVER
11182 M:      Xavier Deguillard <xdeguillard@vmware.com>
11183 M:      Philip Moltmann <moltmann@vmware.com>
11184 M:      "VMware, Inc." <pv-drivers@vmware.com>
11185 L:      linux-kernel@vger.kernel.org
11186 S:      Maintained
11187 F:      drivers/misc/vmw_balloon.c
11188
11189 VMWARE VMMOUSE SUBDRIVER
11190 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11191 M:      "VMware, Inc." <pv-drivers@vmware.com>
11192 L:      linux-input@vger.kernel.org
11193 S:      Maintained
11194 F:      drivers/input/mouse/vmmouse.c
11195 F:      drivers/input/mouse/vmmouse.h
11196
11197 VMWARE VMXNET3 ETHERNET DRIVER
11198 M:      Shrikrishna Khare <skhare@vmware.com>
11199 M:      "VMware, Inc." <pv-drivers@vmware.com>
11200 L:      netdev@vger.kernel.org
11201 S:      Maintained
11202 F:      drivers/net/vmxnet3/
11203
11204 VMware PVSCSI driver
11205 M:      Arvind Kumar <arvindkumar@vmware.com>
11206 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11207 L:      linux-scsi@vger.kernel.org
11208 S:      Maintained
11209 F:      drivers/scsi/vmw_pvscsi.c
11210 F:      drivers/scsi/vmw_pvscsi.h
11211
11212 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11213 M:      Liam Girdwood <lgirdwood@gmail.com>
11214 M:      Mark Brown <broonie@kernel.org>
11215 L:      linux-kernel@vger.kernel.org
11216 W:      http://opensource.wolfsonmicro.com/node/15
11217 W:      http://www.slimlogic.co.uk/?p=48
11218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11219 S:      Supported
11220 F:      drivers/regulator/
11221 F:      include/linux/regulator/
11222
11223 VRF
11224 M:      David Ahern <dsa@cumulusnetworks.com>
11225 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11226 L:      netdev@vger.kernel.org
11227 S:      Maintained
11228 F:      drivers/net/vrf.c
11229 F:      include/net/vrf.h
11230
11231 VT1211 HARDWARE MONITOR DRIVER
11232 M:      Juerg Haefliger <juergh@gmail.com>
11233 L:      lm-sensors@lm-sensors.org
11234 S:      Maintained
11235 F:      Documentation/hwmon/vt1211
11236 F:      drivers/hwmon/vt1211.c
11237
11238 VT8231 HARDWARE MONITOR DRIVER
11239 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11240 L:      lm-sensors@lm-sensors.org
11241 S:      Maintained
11242 F:      drivers/hwmon/vt8231.c
11243
11244 VUB300 USB to SDIO/SD/MMC bridge chip
11245 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11246 L:      linux-mmc@vger.kernel.org
11247 L:      linux-usb@vger.kernel.org
11248 S:      Supported
11249 F:      drivers/mmc/host/vub300.c
11250
11251 W1 DALLAS'S 1-WIRE BUS
11252 M:      Evgeniy Polyakov <zbr@ioremap.net>
11253 S:      Maintained
11254 F:      Documentation/w1/
11255 F:      drivers/w1/
11256
11257 W83791D HARDWARE MONITORING DRIVER
11258 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11259 L:      lm-sensors@lm-sensors.org
11260 S:      Maintained
11261 F:      Documentation/hwmon/w83791d
11262 F:      drivers/hwmon/w83791d.c
11263
11264 W83793 HARDWARE MONITORING DRIVER
11265 M:      Rudolf Marek <r.marek@assembler.cz>
11266 L:      lm-sensors@lm-sensors.org
11267 S:      Maintained
11268 F:      Documentation/hwmon/w83793
11269 F:      drivers/hwmon/w83793.c
11270
11271 W83795 HARDWARE MONITORING DRIVER
11272 M:      Jean Delvare <jdelvare@suse.com>
11273 L:      lm-sensors@lm-sensors.org
11274 S:      Maintained
11275 F:      drivers/hwmon/w83795.c
11276
11277 W83L51xD SD/MMC CARD INTERFACE DRIVER
11278 M:      Pierre Ossman <pierre@ossman.eu>
11279 S:      Maintained
11280 F:      drivers/mmc/host/wbsd.*
11281
11282 WACOM PROTOCOL 4 SERIAL TABLETS
11283 M:      Julian Squires <julian@cipht.net>
11284 M:      Hans de Goede <hdegoede@redhat.com>
11285 L:      linux-input@vger.kernel.org
11286 S:      Maintained
11287 F:      drivers/input/tablet/wacom_serial4.c
11288
11289 WATCHDOG DEVICE DRIVERS
11290 M:      Wim Van Sebroeck <wim@iguana.be>
11291 L:      linux-watchdog@vger.kernel.org
11292 W:      http://www.linux-watchdog.org/
11293 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11294 S:      Maintained
11295 F:      Documentation/watchdog/
11296 F:      drivers/watchdog/
11297 F:      include/linux/watchdog.h
11298 F:      include/uapi/linux/watchdog.h
11299
11300 WD7000 SCSI DRIVER
11301 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11302 L:      linux-scsi@vger.kernel.org
11303 S:      Maintained
11304 F:      drivers/scsi/wd7000.c
11305
11306 WIIMOTE HID DRIVER
11307 M:      David Herrmann <dh.herrmann@googlemail.com>
11308 L:      linux-input@vger.kernel.org
11309 S:      Maintained
11310 F:      drivers/hid/hid-wiimote*
11311
11312 WINBOND CIR DRIVER
11313 M:      David Härdeman <david@hardeman.nu>
11314 S:      Maintained
11315 F:      drivers/media/rc/winbond-cir.c
11316
11317 WIMAX STACK
11318 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11319 M:      linux-wimax@intel.com
11320 L:      wimax@linuxwimax.org (subscribers-only)
11321 S:      Supported
11322 W:      http://linuxwimax.org
11323 F:      Documentation/wimax/README.wimax
11324 F:      include/linux/wimax/debug.h
11325 F:      include/net/wimax.h
11326 F:      include/uapi/linux/wimax.h
11327 F:      net/wimax/
11328
11329 WISTRON LAPTOP BUTTON DRIVER
11330 M:      Miloslav Trmac <mitr@volny.cz>
11331 S:      Maintained
11332 F:      drivers/input/misc/wistron_btns.c
11333
11334 WL3501 WIRELESS PCMCIA CARD DRIVER
11335 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11336 L:      linux-wireless@vger.kernel.org
11337 W:      http://oops.ghostprotocols.net:81/blog
11338 S:      Maintained
11339 F:      drivers/net/wireless/wl3501*
11340
11341 WM97XX TOUCHSCREEN DRIVERS
11342 M:      Mark Brown <broonie@kernel.org>
11343 M:      Liam Girdwood <lrg@slimlogic.co.uk>
11344 L:      linux-input@vger.kernel.org
11345 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
11346 W:      http://opensource.wolfsonmicro.com/node/7
11347 S:      Supported
11348 F:      drivers/input/touchscreen/*wm97*
11349 F:      include/linux/wm97xx.h
11350
11351 WOLFSON MICROELECTRONICS DRIVERS
11352 L:      patches@opensource.wolfsonmicro.com
11353 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
11354 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
11355 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
11356 S:      Supported
11357 F:      Documentation/hwmon/wm83??
11358 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11359 F:      drivers/clk/clk-wm83*.c
11360 F:      drivers/extcon/extcon-arizona.c
11361 F:      drivers/leds/leds-wm83*.c
11362 F:      drivers/gpio/gpio-*wm*.c
11363 F:      drivers/gpio/gpio-arizona.c
11364 F:      drivers/hwmon/wm83??-hwmon.c
11365 F:      drivers/input/misc/wm831x-on.c
11366 F:      drivers/input/touchscreen/wm831x-ts.c
11367 F:      drivers/input/touchscreen/wm97*.c
11368 F:      drivers/mfd/arizona*
11369 F:      drivers/mfd/wm*.c
11370 F:      drivers/power/wm83*.c
11371 F:      drivers/rtc/rtc-wm83*.c
11372 F:      drivers/regulator/wm8*.c
11373 F:      drivers/video/backlight/wm83*_bl.c
11374 F:      drivers/watchdog/wm83*_wdt.c
11375 F:      include/linux/mfd/arizona/
11376 F:      include/linux/mfd/wm831x/
11377 F:      include/linux/mfd/wm8350/
11378 F:      include/linux/mfd/wm8400*
11379 F:      include/linux/wm97xx.h
11380 F:      include/sound/wm????.h
11381 F:      sound/soc/codecs/arizona.?
11382 F:      sound/soc/codecs/wm*
11383
11384 WORKQUEUE
11385 M:      Tejun Heo <tj@kernel.org>
11386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11387 S:      Maintained
11388 F:      include/linux/workqueue.h
11389 F:      kernel/workqueue.c
11390 F:      Documentation/workqueue.txt
11391
11392 X.25 NETWORK LAYER
11393 M:      Andrew Hendry <andrew.hendry@gmail.com>
11394 L:      linux-x25@vger.kernel.org
11395 S:      Odd Fixes
11396 F:      Documentation/networking/x25*
11397 F:      include/net/x25*
11398 F:      net/x25/
11399
11400 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11401 M:      Thomas Gleixner <tglx@linutronix.de>
11402 M:      Ingo Molnar <mingo@redhat.com>
11403 M:      "H. Peter Anvin" <hpa@zytor.com>
11404 M:      x86@kernel.org
11405 L:      linux-kernel@vger.kernel.org
11406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11407 S:      Maintained
11408 F:      Documentation/x86/
11409 F:      arch/x86/
11410
11411 X86 PLATFORM DRIVERS
11412 M:      Darren Hart <dvhart@infradead.org>
11413 L:      platform-driver-x86@vger.kernel.org
11414 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11415 S:      Maintained
11416 F:      drivers/platform/x86/
11417
11418 X86 MCE INFRASTRUCTURE
11419 M:      Tony Luck <tony.luck@intel.com>
11420 M:      Borislav Petkov <bp@alien8.de>
11421 L:      linux-edac@vger.kernel.org
11422 S:      Maintained
11423 F:      arch/x86/kernel/cpu/mcheck/*
11424
11425 X86 VDSO
11426 M:      Andy Lutomirski <luto@amacapital.net>
11427 L:      linux-kernel@vger.kernel.org
11428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11429 S:      Maintained
11430 F:      arch/x86/entry/vdso/
11431
11432 XC2028/3028 TUNER DRIVER
11433 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11434 L:      linux-media@vger.kernel.org
11435 W:      http://linuxtv.org
11436 T:      git git://linuxtv.org/media_tree.git
11437 S:      Maintained
11438 F:      drivers/media/tuners/tuner-xc2028.*
11439
11440 XEN HYPERVISOR INTERFACE
11441 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11442 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11443 M:      David Vrabel <david.vrabel@citrix.com>
11444 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11446 S:      Supported
11447 F:      arch/x86/xen/
11448 F:      drivers/*/xen-*front.c
11449 F:      drivers/xen/
11450 F:      arch/x86/include/asm/xen/
11451 F:      include/xen/
11452 F:      include/uapi/xen/
11453
11454 XEN HYPERVISOR ARM
11455 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11456 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11457 S:      Supported
11458 F:      arch/arm/xen/
11459 F:      arch/arm/include/asm/xen/
11460
11461 XEN HYPERVISOR ARM64
11462 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11463 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11464 S:      Supported
11465 F:      arch/arm64/xen/
11466 F:      arch/arm64/include/asm/xen/
11467
11468 XEN NETWORK BACKEND DRIVER
11469 M:      Ian Campbell <ian.campbell@citrix.com>
11470 M:      Wei Liu <wei.liu2@citrix.com>
11471 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11472 L:      netdev@vger.kernel.org
11473 S:      Supported
11474 F:      drivers/net/xen-netback/*
11475
11476 XEN PCI SUBSYSTEM
11477 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11478 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11479 S:      Supported
11480 F:      arch/x86/pci/*xen*
11481 F:      drivers/pci/*xen*
11482
11483 XEN BLOCK SUBSYSTEM
11484 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11485 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11486 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11487 S:      Supported
11488 F:      drivers/block/xen-blkback/*
11489 F:      drivers/block/xen*
11490
11491 XEN PVSCSI DRIVERS
11492 M:      Juergen Gross <jgross@suse.com>
11493 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11494 L:      linux-scsi@vger.kernel.org
11495 S:      Supported
11496 F:      drivers/scsi/xen-scsifront.c
11497 F:      drivers/xen/xen-scsiback.c
11498 F:      include/xen/interface/io/vscsiif.h
11499
11500 XEN SWIOTLB SUBSYSTEM
11501 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11502 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11503 S:      Supported
11504 F:      arch/x86/xen/*swiotlb*
11505 F:      drivers/xen/*swiotlb*
11506
11507 XFS FILESYSTEM
11508 P:      Silicon Graphics Inc
11509 M:      Dave Chinner <david@fromorbit.com>
11510 M:      xfs@oss.sgi.com
11511 L:      xfs@oss.sgi.com
11512 W:      http://oss.sgi.com/projects/xfs
11513 T:      git git://oss.sgi.com/xfs/xfs.git
11514 S:      Supported
11515 F:      Documentation/filesystems/xfs.txt
11516 F:      fs/xfs/
11517
11518 XILINX AXI ETHERNET DRIVER
11519 M:      Anirudha Sarangi <anirudh@xilinx.com>
11520 M:      John Linn <John.Linn@xilinx.com>
11521 S:      Maintained
11522 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11523
11524 XILINX UARTLITE SERIAL DRIVER
11525 M:      Peter Korsgaard <jacmet@sunsite.dk>
11526 L:      linux-serial@vger.kernel.org
11527 S:      Maintained
11528 F:      drivers/tty/serial/uartlite.c
11529
11530 XILINX VIDEO IP CORES
11531 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11532 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11533 L:      linux-media@vger.kernel.org
11534 T:      git git://linuxtv.org/media_tree.git
11535 S:      Supported
11536 F:      Documentation/devicetree/bindings/media/xilinx/
11537 F:      drivers/media/platform/xilinx/
11538 F:      include/uapi/linux/xilinx-v4l2-controls.h
11539
11540 XILLYBUS DRIVER
11541 M:      Eli Billauer <eli.billauer@gmail.com>
11542 L:      linux-kernel@vger.kernel.org
11543 S:      Supported
11544 F:      drivers/char/xillybus/
11545
11546 XTENSA XTFPGA PLATFORM SUPPORT
11547 M:      Max Filippov <jcmvbkbc@gmail.com>
11548 L:      linux-xtensa@linux-xtensa.org
11549 S:      Maintained
11550 F:      drivers/spi/spi-xtensa-xtfpga.c
11551 F:      sound/soc/xtensa/xtfpga-i2s.c
11552
11553 YAM DRIVER FOR AX.25
11554 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11555 L:      linux-hams@vger.kernel.org
11556 S:      Maintained
11557 F:      drivers/net/hamradio/yam*
11558 F:      include/linux/yam.h
11559
11560 YEALINK PHONE DRIVER
11561 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11562 L:      usbb2k-api-dev@nongnu.org
11563 S:      Maintained
11564 F:      Documentation/input/yealink.txt
11565 F:      drivers/input/misc/yealink.*
11566
11567 Z8530 DRIVER FOR AX.25
11568 M:      Joerg Reuter <jreuter@yaina.de>
11569 W:      http://yaina.de/jreuter/
11570 W:      http://www.qsl.net/dl1bke/
11571 L:      linux-hams@vger.kernel.org
11572 S:      Maintained
11573 F:      Documentation/networking/z8530drv.txt
11574 F:      drivers/net/hamradio/*scc.c
11575 F:      drivers/net/hamradio/z8530.h
11576
11577 ZBUD COMPRESSED PAGE ALLOCATOR
11578 M:      Seth Jennings <sjennings@variantweb.net>
11579 L:      linux-mm@kvack.org
11580 S:      Maintained
11581 F:      mm/zbud.c
11582 F:      include/linux/zbud.h
11583
11584 ZD1211RW WIRELESS DRIVER
11585 M:      Daniel Drake <dsd@gentoo.org>
11586 M:      Ulrich Kunitz <kune@deine-taler.de>
11587 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11588 L:      linux-wireless@vger.kernel.org
11589 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11590 S:      Maintained
11591 F:      drivers/net/wireless/zd1211rw/
11592
11593 ZPOOL COMPRESSED PAGE STORAGE API
11594 M:      Dan Streetman <ddstreet@ieee.org>
11595 L:      linux-mm@kvack.org
11596 S:      Maintained
11597 F:      mm/zpool.c
11598 F:      include/linux/zpool.h
11599
11600 ZR36067 VIDEO FOR LINUX DRIVER
11601 L:      mjpeg-users@lists.sourceforge.net
11602 L:      linux-media@vger.kernel.org
11603 W:      http://mjpeg.sourceforge.net/driver-zoran/
11604 T:      hg http://linuxtv.org/hg/v4l-dvb
11605 S:      Odd Fixes
11606 F:      drivers/media/pci/zoran/
11607
11608 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11609 M:      Minchan Kim <minchan@kernel.org>
11610 M:      Nitin Gupta <ngupta@vflare.org>
11611 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11612 L:      linux-kernel@vger.kernel.org
11613 S:      Maintained
11614 F:      drivers/block/zram/
11615 F:      Documentation/blockdev/zram.txt
11616
11617 ZS DECSTATION Z85C30 SERIAL DRIVER
11618 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11619 S:      Maintained
11620 F:      drivers/tty/serial/zs.*
11621
11622 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11623 M:      Minchan Kim <minchan@kernel.org>
11624 M:      Nitin Gupta <ngupta@vflare.org>
11625 L:      linux-mm@kvack.org
11626 S:      Maintained
11627 F:      mm/zsmalloc.c
11628 F:      include/linux/zsmalloc.h
11629 F:      Documentation/vm/zsmalloc.txt
11630
11631 ZSWAP COMPRESSED SWAP CACHING
11632 M:      Seth Jennings <sjennings@variantweb.net>
11633 L:      linux-mm@kvack.org
11634 S:      Maintained
11635 F:      mm/zswap.c
11636
11637 THE REST
11638 M:      Linus Torvalds <torvalds@linux-foundation.org>
11639 L:      linux-kernel@vger.kernel.org
11640 Q:      http://patchwork.kernel.org/project/LKML/list/
11641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11642 S:      Buried alive in reporters
11643 F:      *
11644 F:      */