bootmem: avoid freeing to bootmem after bootmem is done
[cascardo/linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      http://linuxtv.org/
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 ACENIC DRIVER
244 M:      Jes Sorensen <jes@trained-monkey.org>
245 L:      linux-acenic@sunsite.dk
246 S:      Maintained
247 F:      drivers/net/ethernet/alteon/acenic*
248
249 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
250 M:      Peter Feuerer <peter@piie.net>
251 L:      platform-driver-x86@vger.kernel.org
252 W:      http://piie.net/?section=acerhdf
253 S:      Maintained
254 F:      drivers/platform/x86/acerhdf.c
255
256 ACER WMI LAPTOP EXTRAS
257 M:      "Lee, Chun-Yi" <jlee@suse.com>
258 L:      platform-driver-x86@vger.kernel.org
259 S:      Maintained
260 F:      drivers/platform/x86/acer-wmi.c
261
262 ACPI
263 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
264 M:      Len Brown <lenb@kernel.org>
265 L:      linux-acpi@vger.kernel.org
266 W:      https://01.org/linux-acpi
267 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
269 S:      Supported
270 F:      drivers/acpi/
271 F:      drivers/pnp/pnpacpi/
272 F:      include/linux/acpi.h
273 F:      include/acpi/
274 F:      Documentation/acpi/
275 F:      Documentation/ABI/testing/sysfs-bus-acpi
276 F:      drivers/pci/*acpi*
277 F:      drivers/pci/*/*acpi*
278 F:      drivers/pci/*/*/*acpi*
279 F:      tools/power/acpi/
280
281 ACPI COMPONENT ARCHITECTURE (ACPICA)
282 M:      Robert Moore <robert.moore@intel.com>
283 M:      Lv Zheng <lv.zheng@intel.com>
284 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
285 L:      linux-acpi@vger.kernel.org
286 L:      devel@acpica.org
287 W:      https://acpica.org/
288 W:      https://github.com/acpica/acpica/
289 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
291 S:      Supported
292 F:      drivers/acpi/acpica/
293 F:      include/acpi/
294 F:      tools/power/acpi/
295
296 ACPI FAN DRIVER
297 M:      Zhang Rui <rui.zhang@intel.com>
298 L:      linux-acpi@vger.kernel.org
299 W:      https://01.org/linux-acpi
300 S:      Supported
301 F:      drivers/acpi/fan.c
302
303 ACPI THERMAL DRIVER
304 M:      Zhang Rui <rui.zhang@intel.com>
305 L:      linux-acpi@vger.kernel.org
306 W:      https://01.org/linux-acpi
307 S:      Supported
308 F:      drivers/acpi/*thermal*
309
310 ACPI VIDEO DRIVER
311 M:      Zhang Rui <rui.zhang@intel.com>
312 L:      linux-acpi@vger.kernel.org
313 W:      https://01.org/linux-acpi
314 S:      Supported
315 F:      drivers/acpi/video.c
316
317 ACPI WMI DRIVER
318 L:      platform-driver-x86@vger.kernel.org
319 S:      Orphan
320 F:      drivers/platform/x86/wmi.c
321
322 AD1889 ALSA SOUND DRIVER
323 M:      Thibaut Varene <T-Bone@parisc-linux.org>
324 W:      http://wiki.parisc-linux.org/AD1889
325 L:      linux-parisc@vger.kernel.org
326 S:      Maintained
327 F:      sound/pci/ad1889.*
328
329 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
330 M:      Michael Hennerich <michael.hennerich@analog.com>
331 W:      http://wiki.analog.com/AD5254
332 W:      http://ez.analog.com/community/linux-device-drivers
333 S:      Supported
334 F:      drivers/misc/ad525x_dpot.c
335
336 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
337 M:      Michael Hennerich <michael.hennerich@analog.com>
338 W:      http://wiki.analog.com/AD5398
339 W:      http://ez.analog.com/community/linux-device-drivers
340 S:      Supported
341 F:      drivers/regulator/ad5398.c
342
343 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
344 M:      Michael Hennerich <michael.hennerich@analog.com>
345 W:      http://wiki.analog.com/AD7142
346 W:      http://ez.analog.com/community/linux-device-drivers
347 S:      Supported
348 F:      drivers/input/misc/ad714x.c
349
350 AD7877 TOUCHSCREEN DRIVER
351 M:      Michael Hennerich <michael.hennerich@analog.com>
352 W:      http://wiki.analog.com/AD7877
353 W:      http://ez.analog.com/community/linux-device-drivers
354 S:      Supported
355 F:      drivers/input/touchscreen/ad7877.c
356
357 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
358 M:      Michael Hennerich <michael.hennerich@analog.com>
359 W:      http://wiki.analog.com/AD7879
360 W:      http://ez.analog.com/community/linux-device-drivers
361 S:      Supported
362 F:      drivers/input/touchscreen/ad7879.c
363
364 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
365 M:      Jiri Kosina <jikos@kernel.org>
366 S:      Maintained
367
368 ADM1025 HARDWARE MONITOR DRIVER
369 M:      Jean Delvare <jdelvare@suse.com>
370 L:      lm-sensors@lm-sensors.org
371 S:      Maintained
372 F:      Documentation/hwmon/adm1025
373 F:      drivers/hwmon/adm1025.c
374
375 ADM1029 HARDWARE MONITOR DRIVER
376 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
377 L:      lm-sensors@lm-sensors.org
378 S:      Maintained
379 F:      drivers/hwmon/adm1029.c
380
381 ADM8211 WIRELESS DRIVER
382 L:      linux-wireless@vger.kernel.org
383 W:      http://wireless.kernel.org/
384 S:      Orphan
385 F:      drivers/net/wireless/adm8211.*
386
387 ADP1653 FLASH CONTROLLER DRIVER
388 M:      Sakari Ailus <sakari.ailus@iki.fi>
389 L:      linux-media@vger.kernel.org
390 S:      Maintained
391 F:      drivers/media/i2c/adp1653.c
392 F:      include/media/adp1653.h
393
394 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
395 M:      Michael Hennerich <michael.hennerich@analog.com>
396 W:      http://wiki.analog.com/ADP5520
397 W:      http://ez.analog.com/community/linux-device-drivers
398 S:      Supported
399 F:      drivers/mfd/adp5520.c
400 F:      drivers/video/backlight/adp5520_bl.c
401 F:      drivers/leds/leds-adp5520.c
402 F:      drivers/gpio/gpio-adp5520.c
403 F:      drivers/input/keyboard/adp5520-keys.c
404
405 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
406 M:      Michael Hennerich <michael.hennerich@analog.com>
407 W:      http://wiki.analog.com/ADP5588
408 W:      http://ez.analog.com/community/linux-device-drivers
409 S:      Supported
410 F:      drivers/input/keyboard/adp5588-keys.c
411 F:      drivers/gpio/gpio-adp5588.c
412
413 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
414 M:      Michael Hennerich <michael.hennerich@analog.com>
415 W:      http://wiki.analog.com/ADP8860
416 W:      http://ez.analog.com/community/linux-device-drivers
417 S:      Supported
418 F:      drivers/video/backlight/adp8860_bl.c
419
420 ADS1015 HARDWARE MONITOR DRIVER
421 M:      Dirk Eibach <eibach@gdsys.de>
422 L:      lm-sensors@lm-sensors.org
423 S:      Maintained
424 F:      Documentation/hwmon/ads1015
425 F:      drivers/hwmon/ads1015.c
426 F:      include/linux/i2c/ads1015.h
427
428 ADT746X FAN DRIVER
429 M:      Colin Leroy <colin@colino.net>
430 S:      Maintained
431 F:      drivers/macintosh/therm_adt746x.c
432
433 ADT7475 HARDWARE MONITOR DRIVER
434 M:      Jean Delvare <jdelvare@suse.com>
435 L:      lm-sensors@lm-sensors.org
436 S:      Maintained
437 F:      Documentation/hwmon/adt7475
438 F:      drivers/hwmon/adt7475.c
439
440 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
441 M:      Michael Hennerich <michael.hennerich@analog.com>
442 W:      http://wiki.analog.com/ADXL345
443 W:      http://ez.analog.com/community/linux-device-drivers
444 S:      Supported
445 F:      drivers/input/misc/adxl34x.c
446
447 ADVANSYS SCSI DRIVER
448 M:      Matthew Wilcox <matthew@wil.cx>
449 M:      Hannes Reinecke <hare@suse.com>
450 L:      linux-scsi@vger.kernel.org
451 S:      Maintained
452 F:      Documentation/scsi/advansys.txt
453 F:      drivers/scsi/advansys.c
454
455 AEDSP16 DRIVER
456 M:      Riccardo Facchetti <fizban@tin.it>
457 S:      Maintained
458 F:      sound/oss/aedsp16.c
459
460 AF9013 MEDIA DRIVER
461 M:      Antti Palosaari <crope@iki.fi>
462 L:      linux-media@vger.kernel.org
463 W:      http://linuxtv.org/
464 W:      http://palosaari.fi/linux/
465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
466 T:      git git://linuxtv.org/anttip/media_tree.git
467 S:      Maintained
468 F:      drivers/media/dvb-frontends/af9013*
469
470 AF9033 MEDIA DRIVER
471 M:      Antti Palosaari <crope@iki.fi>
472 L:      linux-media@vger.kernel.org
473 W:      http://linuxtv.org/
474 W:      http://palosaari.fi/linux/
475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
476 T:      git git://linuxtv.org/anttip/media_tree.git
477 S:      Maintained
478 F:      drivers/media/dvb-frontends/af9033*
479
480 AFFS FILE SYSTEM
481 L:      linux-fsdevel@vger.kernel.org
482 S:      Orphan
483 F:      Documentation/filesystems/affs.txt
484 F:      fs/affs/
485
486 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
487 M:      David Howells <dhowells@redhat.com>
488 L:      linux-afs@lists.infradead.org
489 S:      Supported
490 F:      fs/afs/
491 F:      include/net/af_rxrpc.h
492 F:      net/rxrpc/af_rxrpc.c
493
494 AGPGART DRIVER
495 M:      David Airlie <airlied@linux.ie>
496 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
497 S:      Maintained
498 F:      drivers/char/agp/
499 F:      include/linux/agp*
500 F:      include/uapi/linux/agp*
501
502 AHA152X SCSI DRIVER
503 M:      "Juergen E. Fischer" <fischer@norbit.de>
504 L:      linux-scsi@vger.kernel.org
505 S:      Maintained
506 F:      drivers/scsi/aha152x*
507 F:      drivers/scsi/pcmcia/aha152x*
508
509 AIC7XXX / AIC79XX SCSI DRIVER
510 M:      Hannes Reinecke <hare@suse.com>
511 L:      linux-scsi@vger.kernel.org
512 S:      Maintained
513 F:      drivers/scsi/aic7xxx/
514
515 AIMSLAB FM RADIO RECEIVER DRIVER
516 M:      Hans Verkuil <hverkuil@xs4all.nl>
517 L:      linux-media@vger.kernel.org
518 T:      git git://linuxtv.org/media_tree.git
519 W:      http://linuxtv.org
520 S:      Maintained
521 F:      drivers/media/radio/radio-aimslab*
522
523 AIO
524 M:      Benjamin LaHaise <bcrl@kvack.org>
525 L:      linux-aio@kvack.org
526 S:      Supported
527 F:      fs/aio.c
528 F:      include/linux/*aio*.h
529
530 AIRSPY MEDIA DRIVER
531 M:      Antti Palosaari <crope@iki.fi>
532 L:      linux-media@vger.kernel.org
533 W:      http://linuxtv.org/
534 W:      http://palosaari.fi/linux/
535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
536 T:      git git://linuxtv.org/anttip/media_tree.git
537 S:      Maintained
538 F:      drivers/media/usb/airspy/
539
540 ALCATEL SPEEDTOUCH USB DRIVER
541 M:      Duncan Sands <duncan.sands@free.fr>
542 L:      linux-usb@vger.kernel.org
543 W:      http://www.linux-usb.org/SpeedTouch/
544 S:      Maintained
545 F:      drivers/usb/atm/speedtch.c
546 F:      drivers/usb/atm/usbatm.c
547
548 ALCHEMY AU1XX0 MMC DRIVER
549 M:      Manuel Lauss <manuel.lauss@gmail.com>
550 S:      Maintained
551 F:      drivers/mmc/host/au1xmmc.c
552
553 ALI1563 I2C DRIVER
554 M:      Rudolf Marek <r.marek@assembler.cz>
555 L:      linux-i2c@vger.kernel.org
556 S:      Maintained
557 F:      Documentation/i2c/busses/i2c-ali1563
558 F:      drivers/i2c/busses/i2c-ali1563.c
559
560 ALLWINNER SECURITY SYSTEM
561 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
562 L:      linux-crypto@vger.kernel.org
563 S:      Maintained
564 F:      drivers/crypto/sunxi-ss/
565
566 ALPHA PORT
567 M:      Richard Henderson <rth@twiddle.net>
568 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
569 M:      Matt Turner <mattst88@gmail.com>
570 S:      Odd Fixes
571 L:      linux-alpha@vger.kernel.org
572 F:      arch/alpha/
573
574 ALTERA MAILBOX DRIVER
575 M:      Ley Foon Tan <lftan@altera.com>
576 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
577 S:      Maintained
578 F:      drivers/mailbox/mailbox-altera.c
579
580 ALTERA PIO DRIVER
581 M:      Tien Hock Loh <thloh@altera.com>
582 L:      linux-gpio@vger.kernel.org
583 S:      Maintained
584 F:      drivers/gpio/gpio-altera.c
585
586 ALTERA TRIPLE SPEED ETHERNET DRIVER
587 M:      Vince Bridgers <vbridger@opensource.altera.com>
588 L:      netdev@vger.kernel.org
589 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
590 S:      Maintained
591 F:      drivers/net/ethernet/altera/
592
593 ALTERA UART/JTAG UART SERIAL DRIVERS
594 M:      Tobias Klauser <tklauser@distanz.ch>
595 L:      linux-serial@vger.kernel.org
596 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
597 S:      Maintained
598 F:      drivers/tty/serial/altera_uart.c
599 F:      drivers/tty/serial/altera_jtaguart.c
600 F:      include/linux/altera_uart.h
601 F:      include/linux/altera_jtaguart.h
602
603 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
604 M:      Tom Lendacky <thomas.lendacky@amd.com>
605 L:      linux-crypto@vger.kernel.org
606 S:      Supported
607 F:      drivers/crypto/ccp/
608 F:      include/linux/ccp.h
609
610 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
611 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
612 L:      lm-sensors@lm-sensors.org
613 S:      Maintained
614 F:      Documentation/hwmon/fam15h_power
615 F:      drivers/hwmon/fam15h_power.c
616
617 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
618 M:      Thomas Dahlmann <dahlmann.thomas@arcor.de>
619 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
620 S:      Supported
621 F:      drivers/usb/gadget/udc/amd5536udc.*
622
623 AMD GEODE PROCESSOR/CHIPSET SUPPORT
624 P:      Andres Salomon <dilinger@queued.net>
625 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
626 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
627 S:      Supported
628 F:      drivers/char/hw_random/geode-rng.c
629 F:      drivers/crypto/geode*
630 F:      drivers/video/fbdev/geode/
631 F:      arch/x86/include/asm/geode.h
632
633 AMD IOMMU (AMD-VI)
634 M:      Joerg Roedel <joro@8bytes.org>
635 L:      iommu@lists.linux-foundation.org
636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
637 S:      Maintained
638 F:      drivers/iommu/amd_iommu*.[ch]
639 F:      include/linux/amd-iommu.h
640
641 AMD KFD
642 M:      Oded Gabbay <oded.gabbay@gmail.com>
643 L:      dri-devel@lists.freedesktop.org
644 T:      git git://people.freedesktop.org/~gabbayo/linux.git
645 S:      Supported
646 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
647 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
648 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
649 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
650 F:      drivers/gpu/drm/amd/amdkfd/
651 F:      drivers/gpu/drm/amd/include/cik_structs.h
652 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
653 F:      drivers/gpu/drm/amd/include/vi_structs.h
654 F:      drivers/gpu/drm/radeon/radeon_kfd.c
655 F:      drivers/gpu/drm/radeon/radeon_kfd.h
656 F:      include/uapi/linux/kfd_ioctl.h
657
658 AMD MICROCODE UPDATE SUPPORT
659 M:      Borislav Petkov <bp@alien8.de>
660 S:      Maintained
661 F:      arch/x86/kernel/cpu/microcode/amd*
662
663 AMD XGBE DRIVER
664 M:      Tom Lendacky <thomas.lendacky@amd.com>
665 L:      netdev@vger.kernel.org
666 S:      Supported
667 F:      drivers/net/ethernet/amd/xgbe/
668
669 AMS (Apple Motion Sensor) DRIVER
670 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
671 S:      Supported
672 F:      drivers/macintosh/ams/
673
674 AMSO1100 RNIC DRIVER
675 M:      Tom Tucker <tom@opengridcomputing.com>
676 M:      Steve Wise <swise@opengridcomputing.com>
677 L:      linux-rdma@vger.kernel.org
678 S:      Maintained
679 F:      drivers/infiniband/hw/amso1100/
680
681 ANALOG DEVICES INC AD9389B DRIVER
682 M:      Hans Verkuil <hans.verkuil@cisco.com>
683 L:      linux-media@vger.kernel.org
684 S:      Maintained
685 F:      drivers/media/i2c/ad9389b*
686
687 ANALOG DEVICES INC ADV7180 DRIVER
688 M:      Lars-Peter Clausen <lars@metafoo.de>
689 L:      linux-media@vger.kernel.org
690 W:      http://ez.analog.com/community/linux-device-drivers
691 S:      Supported
692 F:      drivers/media/i2c/adv7180.c
693
694 ANALOG DEVICES INC ADV7511 DRIVER
695 M:      Hans Verkuil <hans.verkuil@cisco.com>
696 L:      linux-media@vger.kernel.org
697 S:      Maintained
698 F:      drivers/media/i2c/adv7511*
699
700 ANALOG DEVICES INC ADV7604 DRIVER
701 M:      Hans Verkuil <hans.verkuil@cisco.com>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 F:      drivers/media/i2c/adv7604*
705
706 ANALOG DEVICES INC ADV7842 DRIVER
707 M:      Hans Verkuil <hans.verkuil@cisco.com>
708 L:      linux-media@vger.kernel.org
709 S:      Maintained
710 F:      drivers/media/i2c/adv7842*
711
712 ANALOG DEVICES INC ASOC CODEC DRIVERS
713 M:      Lars-Peter Clausen <lars@metafoo.de>
714 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
715 W:      http://wiki.analog.com/
716 W:      http://ez.analog.com/community/linux-device-drivers
717 S:      Supported
718 F:      sound/soc/codecs/adau*
719 F:      sound/soc/codecs/adav*
720 F:      sound/soc/codecs/ad1*
721 F:      sound/soc/codecs/ad7*
722 F:      sound/soc/codecs/ssm*
723 F:      sound/soc/codecs/sigmadsp.*
724
725 ANALOG DEVICES INC ASOC DRIVERS
726 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
727 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
728 W:      http://blackfin.uclinux.org/
729 S:      Supported
730 F:      sound/soc/blackfin/*
731
732 ANALOG DEVICES INC IIO DRIVERS
733 M:      Lars-Peter Clausen <lars@metafoo.de>
734 M:      Michael Hennerich <Michael.Hennerich@analog.com>
735 W:      http://wiki.analog.com/
736 W:      http://ez.analog.com/community/linux-device-drivers
737 S:      Supported
738 F:      drivers/iio/*/ad*
739 X:      drivers/iio/*/adjd*
740 F:      drivers/staging/iio/*/ad*
741 F:      staging/iio/trigger/iio-trig-bfin-timer.c
742
743 ANALOG DEVICES INC DMA DRIVERS
744 M:      Lars-Peter Clausen <lars@metafoo.de>
745 W:      http://ez.analog.com/community/linux-device-drivers
746 S:      Supported
747 F:      drivers/dma/dma-axi-dmac.c
748
749 ANDROID DRIVERS
750 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
751 M:      Arve HjønnevĂ¥g <arve@android.com>
752 M:      Riley Andrews <riandrews@android.com>
753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
754 L:      devel@driverdev.osuosl.org
755 S:      Supported
756 F:      drivers/android/
757 F:      drivers/staging/android/
758
759 AOA (Apple Onboard Audio) ALSA DRIVER
760 M:      Johannes Berg <johannes@sipsolutions.net>
761 L:      linuxppc-dev@lists.ozlabs.org
762 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
763 S:      Maintained
764 F:      sound/aoa/
765
766 APM DRIVER
767 M:      Jiri Kosina <jikos@kernel.org>
768 S:      Odd fixes
769 F:      arch/x86/kernel/apm_32.c
770 F:      include/linux/apm_bios.h
771 F:      include/uapi/linux/apm_bios.h
772 F:      drivers/char/apm-emulation.c
773
774 APPLE BCM5974 MULTITOUCH DRIVER
775 M:      Henrik Rydberg <rydberg@bitmath.org>
776 L:      linux-input@vger.kernel.org
777 S:      Odd fixes
778 F:      drivers/input/mouse/bcm5974.c
779
780 APPLE SMC DRIVER
781 M:      Henrik Rydberg <rydberg@bitmath.org>
782 L:      lm-sensors@lm-sensors.org
783 S:      Odd fixes
784 F:      drivers/hwmon/applesmc.c
785
786 APPLETALK NETWORK LAYER
787 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
788 S:      Maintained
789 F:      drivers/net/appletalk/
790 F:      net/appletalk/
791
792 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
793 M:      Iyappan Subramanian <isubramanian@apm.com>
794 M:      Keyur Chudgar <kchudgar@apm.com>
795 S:      Supported
796 F:      drivers/net/ethernet/apm/xgene/
797 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
798
799 APTINA CAMERA SENSOR PLL
800 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
801 L:      linux-media@vger.kernel.org
802 S:      Maintained
803 F:      drivers/media/i2c/aptina-pll.*
804
805 ARC FRAMEBUFFER DRIVER
806 M:      Jaya Kumar <jayalk@intworks.biz>
807 S:      Maintained
808 F:      drivers/video/fbdev/arcfb.c
809 F:      drivers/video/fbdev/core/fb_defio.c
810
811 ARM MFM AND FLOPPY DRIVERS
812 M:      Ian Molton <spyro@f2s.com>
813 S:      Maintained
814 F:      arch/arm/lib/floppydma.S
815 F:      arch/arm/include/asm/floppy.h
816
817 ARM PMU PROFILING AND DEBUGGING
818 M:      Will Deacon <will.deacon@arm.com>
819 S:      Maintained
820 F:      arch/arm/kernel/perf_*
821 F:      arch/arm/oprofile/common.c
822 F:      arch/arm/kernel/hw_breakpoint.c
823 F:      arch/arm/include/asm/hw_breakpoint.h
824 F:      arch/arm/include/asm/perf_event.h
825 F:      drivers/perf/arm_pmu.c
826 F:      include/linux/perf/arm_pmu.h
827
828 ARM PORT
829 M:      Russell King <linux@arm.linux.org.uk>
830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
831 W:      http://www.arm.linux.org.uk/
832 S:      Maintained
833 F:      arch/arm/
834
835 ARM SUB-ARCHITECTURES
836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
837 S:      Maintained
838 F:      arch/arm/mach-*/
839 F:      arch/arm/plat-*/
840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
841
842 ARM PRIMECELL AACI PL041 DRIVER
843 M:      Russell King <linux@arm.linux.org.uk>
844 S:      Maintained
845 F:      sound/arm/aaci.*
846
847 ARM PRIMECELL CLCD PL110 DRIVER
848 M:      Russell King <linux@arm.linux.org.uk>
849 S:      Maintained
850 F:      drivers/video/fbdev/amba-clcd.*
851
852 ARM PRIMECELL KMI PL050 DRIVER
853 M:      Russell King <linux@arm.linux.org.uk>
854 S:      Maintained
855 F:      drivers/input/serio/ambakmi.*
856 F:      include/linux/amba/kmi.h
857
858 ARM PRIMECELL MMCI PL180/1 DRIVER
859 M:      Russell King <linux@arm.linux.org.uk>
860 S:      Maintained
861 F:      drivers/mmc/host/mmci.*
862 F:      include/linux/amba/mmci.h
863
864 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
865 M:      Russell King <linux@arm.linux.org.uk>
866 S:      Maintained
867 F:      drivers/tty/serial/amba-pl01*.c
868 F:      include/linux/amba/serial.h
869
870 ARM PRIMECELL BUS SUPPORT
871 M:      Russell King <linux@arm.linux.org.uk>
872 S:      Maintained
873 F:      drivers/amba/
874 F:      include/linux/amba/bus.h
875
876 ARM/ADS SPHERE MACHINE SUPPORT
877 M:      Lennert Buytenhek <kernel@wantstofly.org>
878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
879 S:      Maintained
880
881 ARM/AFEB9260 MACHINE SUPPORT
882 M:      Sergey Lapin <slapin@ossfans.org>
883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
884 S:      Maintained
885
886 ARM/AJECO 1ARM MACHINE SUPPORT
887 M:      Lennert Buytenhek <kernel@wantstofly.org>
888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
889 S:      Maintained
890
891 ARM/Allwinner A1X SoC support
892 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
894 S:      Maintained
895 N:      sun[x4567]i
896
897 ARM/Allwinner SoC Clock Support
898 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
899 S:      Maintained
900 F:      drivers/clk/sunxi/
901
902 ARM/Amlogic MesonX SoC support
903 M:      Carlo Caione <carlo@caione.org>
904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
905 S:      Maintained
906 F:      drivers/media/rc/meson-ir.c
907 N:      meson[x68]
908
909 ARM/Annapurna Labs ALPINE ARCHITECTURE
910 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
911 S:      Maintained
912 F:      arch/arm/mach-alpine/
913
914 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
915 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
916 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
917 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
919 W:      http://www.linux4sam.org
920 S:      Supported
921 F:      arch/arm/mach-at91/
922 F:      include/soc/at91/
923 F:      arch/arm/boot/dts/at91*.dts
924 F:      arch/arm/boot/dts/at91*.dtsi
925 F:      arch/arm/boot/dts/sama*.dts
926 F:      arch/arm/boot/dts/sama*.dtsi
927 F:      arch/arm/include/debug/at91.S
928
929 ARM/ATMEL AT91 Clock Support
930 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
931 S:      Maintained
932 F:      drivers/clk/at91
933
934 ARM/CALXEDA HIGHBANK ARCHITECTURE
935 M:      Rob Herring <robh@kernel.org>
936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
937 S:      Maintained
938 F:      arch/arm/mach-highbank/
939
940 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
941 M:      Krzysztof Halasa <khalasa@piap.pl>
942 S:      Maintained
943 F:      arch/arm/mach-cns3xxx/
944
945 ARM/CAVIUM THUNDER NETWORK DRIVER
946 M:      Sunil Goutham <sgoutham@cavium.com>
947 M:      Robert Richter <rric@kernel.org>
948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
949 S:      Supported
950 F:      drivers/net/ethernet/cavium/thunder/
951
952 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
953 M:      Alexander Shiyan <shc_work@mail.ru>
954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
955 S:      Odd Fixes
956 N:      clps711x
957
958 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
959 M:      Hartley Sweeten <hsweeten@visionengravers.com>
960 M:      Ryan Mallon <rmallon@gmail.com>
961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962 S:      Maintained
963 F:      arch/arm/mach-ep93xx/
964 F:      arch/arm/mach-ep93xx/include/mach/
965
966 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
967 M:      Lennert Buytenhek <kernel@wantstofly.org>
968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
969 S:      Maintained
970
971 ARM/CLKDEV SUPPORT
972 M:      Russell King <linux@arm.linux.org.uk>
973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
974 S:      Maintained
975 F:      arch/arm/include/asm/clkdev.h
976 F:      drivers/clk/clkdev.c
977
978 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
979 M:      Mike Rapoport <mike@compulab.co.il>
980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
981 S:      Maintained
982
983 ARM/CONTEC MICRO9 MACHINE SUPPORT
984 M:      Hubert Feurstein <hubert.feurstein@contec.at>
985 S:      Maintained
986 F:      arch/arm/mach-ep93xx/micro9.c
987
988 ARM/CORESIGHT FRAMEWORK AND DRIVERS
989 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
991 S:      Maintained
992 F:      drivers/hwtracing/coresight/*
993 F:      Documentation/trace/coresight.txt
994 F:      Documentation/devicetree/bindings/arm/coresight.txt
995 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
996
997 ARM/CORGI MACHINE SUPPORT
998 M:      Richard Purdie <rpurdie@rpsys.net>
999 S:      Maintained
1000
1001 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1002 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1004 T:      git git://github.com/ulli-kroll/linux.git
1005 S:      Maintained
1006 F:      arch/arm/mach-gemini/
1007 F:      drivers/rtc/rtc-gemini.c
1008
1009 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1010 M:      Barry Song <baohua@kernel.org>
1011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1013 S:      Maintained
1014 F:      arch/arm/mach-prima2/
1015 F:      drivers/clk/sirf/
1016 F:      drivers/clocksource/timer-prima2.c
1017 F:      drivers/clocksource/timer-atlas7.c
1018 N:      [^a-z]sirf
1019
1020 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1021 M:      Baruch Siach <baruch@tkos.co.il>
1022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1023 S:      Maintained
1024 F:      arch/arm/boot/dts/cx92755*
1025 N:      digicolor
1026
1027 ARM/EBSA110 MACHINE SUPPORT
1028 M:      Russell King <linux@arm.linux.org.uk>
1029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1030 W:      http://www.arm.linux.org.uk/
1031 S:      Maintained
1032 F:      arch/arm/mach-ebsa110/
1033 F:      drivers/net/ethernet/amd/am79c961a.*
1034
1035 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1036 M:      Uwe Kleine-König <kernel@pengutronix.de>
1037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1038 S:      Maintained
1039 N:      efm32
1040
1041 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1042 M:      Daniel Ribeiro <drwyrm@gmail.com>
1043 M:      Stefan Schmidt <stefan@openezx.org>
1044 M:      Harald Welte <laforge@openezx.org>
1045 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1046 W:      http://www.openezx.org/
1047 S:      Maintained
1048 T:      topgit git://git.openezx.org/openezx.git
1049 F:      arch/arm/mach-pxa/ezx.c
1050
1051 ARM/FARADAY FA526 PORT
1052 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1054 S:      Maintained
1055 T:      git git://git.berlios.de/gemini-board
1056 F:      arch/arm/mm/*-fa*
1057
1058 ARM/FOOTBRIDGE ARCHITECTURE
1059 M:      Russell King <linux@arm.linux.org.uk>
1060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1061 W:      http://www.arm.linux.org.uk/
1062 S:      Maintained
1063 F:      arch/arm/include/asm/hardware/dec21285.h
1064 F:      arch/arm/mach-footbridge/
1065
1066 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1067 M:      Shawn Guo <shawnguo@kernel.org>
1068 M:      Sascha Hauer <kernel@pengutronix.de>
1069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1070 S:      Maintained
1071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1072 F:      arch/arm/mach-imx/
1073 F:      arch/arm/mach-mxs/
1074 F:      arch/arm/boot/dts/imx*
1075 F:      arch/arm/configs/imx*_defconfig
1076 F:      drivers/clk/imx/
1077 F:      include/soc/imx/
1078
1079 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1080 M:      Shawn Guo <shawnguo@kernel.org>
1081 M:      Sascha Hauer <kernel@pengutronix.de>
1082 R:      Stefan Agner <stefan@agner.ch>
1083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1084 S:      Maintained
1085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1086 F:      arch/arm/mach-imx/*vf610*
1087 F:      arch/arm/boot/dts/vf*
1088
1089 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1090 M:      Lennert Buytenhek <kernel@wantstofly.org>
1091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1092 S:      Maintained
1093
1094 ARM/GUMSTIX MACHINE SUPPORT
1095 M:      Steve Sakoman <sakoman@gmail.com>
1096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1097 S:      Maintained
1098
1099 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1100 M:      Philipp Zabel <philipp.zabel@gmail.com>
1101 M:      Paul Parsons <lost.distance@yahoo.com>
1102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1103 S:      Maintained
1104 F:      arch/arm/mach-pxa/hx4700.c
1105 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1106 F:      sound/soc/pxa/hx4700.c
1107
1108 ARM/HISILICON SOC SUPPORT
1109 M:      Wei Xu <xuwei5@hisilicon.com>
1110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1111 W:      http://www.hisilicon.com
1112 S:      Supported
1113 T:      git git://github.com/hisilicon/linux-hisi.git
1114 F:      arch/arm/mach-hisi/
1115
1116 ARM/HP JORNADA 7XX MACHINE SUPPORT
1117 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1118 W:      www.jlime.com
1119 S:      Maintained
1120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1121 F:      arch/arm/mach-sa1100/jornada720.c
1122 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1123
1124 ARM/IGEP MACHINE SUPPORT
1125 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1126 M:      Javier Martinez Canillas <javier@dowhile0.org>
1127 L:      linux-omap@vger.kernel.org
1128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1129 S:      Maintained
1130 F:      arch/arm/boot/dts/omap3-igep*
1131
1132 ARM/INCOME PXA270 SUPPORT
1133 M:      Marek Vasut <marek.vasut@gmail.com>
1134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135 S:      Maintained
1136 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1137
1138 ARM/INTEL IOP32X ARM ARCHITECTURE
1139 M:      Lennert Buytenhek <kernel@wantstofly.org>
1140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1141 S:      Maintained
1142
1143 ARM/INTEL IOP33X ARM ARCHITECTURE
1144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1145 S:      Orphan
1146
1147 ARM/INTEL IOP13XX ARM ARCHITECTURE
1148 M:      Lennert Buytenhek <kernel@wantstofly.org>
1149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1150 S:      Maintained
1151
1152 ARM/INTEL IQ81342EX MACHINE SUPPORT
1153 M:      Lennert Buytenhek <kernel@wantstofly.org>
1154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1155 S:      Maintained
1156
1157 ARM/INTEL IXDP2850 MACHINE SUPPORT
1158 M:      Lennert Buytenhek <kernel@wantstofly.org>
1159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1160 S:      Maintained
1161
1162 ARM/INTEL IXP4XX ARM ARCHITECTURE
1163 M:      Imre Kaloz <kaloz@openwrt.org>
1164 M:      Krzysztof Halasa <khalasa@piap.pl>
1165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1166 S:      Maintained
1167 F:      arch/arm/mach-ixp4xx/
1168
1169 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1170 M:      Jonathan Cameron <jic23@cam.ac.uk>
1171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1172 S:      Maintained
1173 F:      arch/arm/mach-pxa/stargate2.c
1174 F:      drivers/pcmcia/pxa2xx_stargate2.c
1175
1176 ARM/INTEL XSC3 (MANZANO) ARM CORE
1177 M:      Lennert Buytenhek <kernel@wantstofly.org>
1178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179 S:      Maintained
1180
1181 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1182 M:      Lennert Buytenhek <kernel@wantstofly.org>
1183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1184 S:      Maintained
1185
1186 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1187 M:      Santosh Shilimkar <ssantosh@kernel.org>
1188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189 S:      Maintained
1190 F:      arch/arm/mach-keystone/
1191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1192
1193 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1194 M:      Santosh Shilimkar <ssantosh@kernel.org>
1195 L:      linux-kernel@vger.kernel.org
1196 S:      Maintained
1197 F:      drivers/clk/keystone/
1198
1199 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1200 M:      Santosh Shilimkar <ssantosh@kernel.org>
1201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202 L:      linux-kernel@vger.kernel.org
1203 S:      Maintained
1204 F:      drivers/clocksource/timer-keystone.c
1205
1206 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1207 M:      Santosh Shilimkar <ssantosh@kernel.org>
1208 L:      linux-kernel@vger.kernel.org
1209 S:      Maintained
1210 F:      drivers/power/reset/keystone-reset.c
1211
1212 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1213 M:      Santosh Shilimkar <ssantosh@kernel.org>
1214 L:      linux-kernel@vger.kernel.org
1215 S:      Maintained
1216 F:      drivers/memory/*emif*
1217
1218 ARM/LOGICPD PXA270 MACHINE SUPPORT
1219 M:      Lennert Buytenhek <kernel@wantstofly.org>
1220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1221 S:      Maintained
1222
1223 ARM/LPC18XX ARCHITECTURE
1224 M:      Joachim Eastwood <manabian@gmail.com>
1225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226 S:      Maintained
1227 N:      lpc18xx
1228
1229 ARM/MAGICIAN MACHINE SUPPORT
1230 M:      Philipp Zabel <philipp.zabel@gmail.com>
1231 S:      Maintained
1232
1233 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1234 M:      Jason Cooper <jason@lakedaemon.net>
1235 M:      Andrew Lunn <andrew@lunn.ch>
1236 M:      Gregory Clement <gregory.clement@free-electrons.com>
1237 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1238 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239 S:      Maintained
1240 F:      arch/arm/mach-mvebu/
1241 F:      drivers/rtc/rtc-armada38x.c
1242 F:      arch/arm/boot/dts/armada*
1243 F:      arch/arm/boot/dts/kirkwood*
1244
1245
1246 ARM/Marvell Berlin SoC support
1247 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1249 S:      Maintained
1250 F:      arch/arm/mach-berlin/
1251 F:      arch/arm/boot/dts/berlin*
1252
1253
1254 ARM/Marvell Dove/MV78xx0/Orion SOC support
1255 M:      Jason Cooper <jason@lakedaemon.net>
1256 M:      Andrew Lunn <andrew@lunn.ch>
1257 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1258 M:      Gregory Clement <gregory.clement@free-electrons.com>
1259 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1260 S:      Maintained
1261 F:      arch/arm/mach-dove/
1262 F:      arch/arm/mach-mv78xx0/
1263 F:      arch/arm/mach-orion5x/
1264 F:      arch/arm/plat-orion/
1265 F:      arch/arm/boot/dts/dove*
1266 F:      arch/arm/boot/dts/orion5x*
1267
1268
1269 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1270 M:      Alexander Clouter <alex@digriz.org.uk>
1271 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1272 W:      http://www.digriz.org.uk/ts78xx/kernel
1273 S:      Maintained
1274 F:      arch/arm/mach-orion5x/ts78xx-*
1275
1276 ARM/Mediatek RTC DRIVER
1277 M:      Eddie Huang <eddie.huang@mediatek.com>
1278 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1279 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1280 S:      Maintained
1281 F:      drivers/rtc/rtc-mt6397.c
1282
1283 ARM/Mediatek SoC support
1284 M:      Matthias Brugger <matthias.bgg@gmail.com>
1285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1286 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1287 S:      Maintained
1288 F:      arch/arm/boot/dts/mt6*
1289 F:      arch/arm/boot/dts/mt8*
1290 F:      arch/arm/mach-mediatek/
1291 N:      mtk
1292 K:      mediatek
1293
1294 ARM/MICREL KS8695 ARCHITECTURE
1295 M:      Greg Ungerer <gerg@uclinux.org>
1296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297 F:      arch/arm/mach-ks8695/
1298 S:      Odd Fixes
1299
1300 ARM/MIOA701 MACHINE SUPPORT
1301 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1302 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1303 F:      arch/arm/mach-pxa/mioa701.c
1304 S:      Maintained
1305
1306 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1307 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1308 S:      Maintained
1309
1310 ARM/NOMADIK ARCHITECTURE
1311 M:      Alessandro Rubini <rubini@unipv.it>
1312 M:      Linus Walleij <linus.walleij@linaro.org>
1313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1314 S:      Maintained
1315 F:      arch/arm/mach-nomadik/
1316 F:      drivers/pinctrl/nomadik/
1317 F:      drivers/i2c/busses/i2c-nomadik.c
1318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1319
1320 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1321 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1322 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1323 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1324 S:      Supported
1325
1326 ARM/TOSA MACHINE SUPPORT
1327 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1328 M:      Dirk Opfer <dirk@opfer-online.de>
1329 S:      Maintained
1330
1331 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1332 M:      Marek Vasut <marek.vasut@gmail.com>
1333 L:      linux-arm-kernel@lists.infradead.org
1334 W:      http://hackndev.com
1335 S:      Maintained
1336 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1337 F:      arch/arm/mach-pxa/palmtx.c
1338 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1339 F:      arch/arm/mach-pxa/palmt5.c
1340 F:      arch/arm/mach-pxa/include/mach/palmld.h
1341 F:      arch/arm/mach-pxa/palmld.c
1342 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1343 F:      arch/arm/mach-pxa/palmte2.c
1344 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1345 F:      arch/arm/mach-pxa/palmtc.c
1346
1347 ARM/PALM TREO SUPPORT
1348 M:      Tomas Cech <sleep_walker@suse.com>
1349 L:      linux-arm-kernel@lists.infradead.org
1350 W:      http://hackndev.com
1351 S:      Maintained
1352 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1353 F:      arch/arm/mach-pxa/palmtreo.c
1354
1355 ARM/PALMZ72 SUPPORT
1356 M:      Sergey Lapin <slapin@ossfans.org>
1357 L:      linux-arm-kernel@lists.infradead.org
1358 W:      http://hackndev.com
1359 S:      Maintained
1360 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1361 F:      arch/arm/mach-pxa/palmz72.c
1362
1363 ARM/PLEB SUPPORT
1364 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1365 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1366 S:      Maintained
1367
1368 ARM/PT DIGITAL BOARD PORT
1369 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1371 W:      http://www.arm.linux.org.uk/
1372 S:      Maintained
1373
1374 ARM/QUALCOMM SUPPORT
1375 M:      Kumar Gala <galak@codeaurora.org>
1376 M:      Andy Gross <agross@codeaurora.org>
1377 M:      David Brown <davidb@codeaurora.org>
1378 L:      linux-arm-msm@vger.kernel.org
1379 L:      linux-soc@vger.kernel.org
1380 S:      Maintained
1381 F:      arch/arm/mach-qcom/
1382 F:      drivers/soc/qcom/
1383 F:      drivers/tty/serial/msm_serial.h
1384 F:      drivers/tty/serial/msm_serial.c
1385 F:      drivers/*/pm8???-*
1386 F:      drivers/mfd/ssbi.c
1387 F:      drivers/firmware/qcom_scm.c
1388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1389
1390 ARM/RADISYS ENP2611 MACHINE SUPPORT
1391 M:      Lennert Buytenhek <kernel@wantstofly.org>
1392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393 S:      Maintained
1394
1395 ARM/RISCPC ARCHITECTURE
1396 M:      Russell King <linux@arm.linux.org.uk>
1397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1398 W:      http://www.arm.linux.org.uk/
1399 S:      Maintained
1400 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1401 F:      arch/arm/include/asm/hardware/ioc.h
1402 F:      arch/arm/include/asm/hardware/iomd.h
1403 F:      arch/arm/include/asm/hardware/memc.h
1404 F:      arch/arm/mach-rpc/
1405 F:      drivers/net/ethernet/8390/etherh.c
1406 F:      drivers/net/ethernet/i825xx/ether1*
1407 F:      drivers/net/ethernet/seeq/ether3*
1408 F:      drivers/scsi/arm/
1409
1410 ARM/Rockchip SoC support
1411 M:      Heiko Stuebner <heiko@sntech.de>
1412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1413 L:      linux-rockchip@lists.infradead.org
1414 S:      Maintained
1415 F:      arch/arm/boot/dts/rk3*
1416 F:      arch/arm/mach-rockchip/
1417 F:      drivers/clk/rockchip/
1418 F:      drivers/i2c/busses/i2c-rk3x.c
1419 F:      drivers/*/*rockchip*
1420 F:      drivers/*/*/*rockchip*
1421 F:      sound/soc/rockchip/
1422 N:      rockchip
1423
1424 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1425 M:      Kukjin Kim <kgene@kernel.org>
1426 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1428 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1429 S:      Maintained
1430 F:      arch/arm/boot/dts/s3c*
1431 F:      arch/arm/boot/dts/exynos*
1432 F:      arch/arm64/boot/dts/exynos/
1433 F:      arch/arm/plat-samsung/
1434 F:      arch/arm/mach-s3c24*/
1435 F:      arch/arm/mach-s3c64xx/
1436 F:      arch/arm/mach-s5p*/
1437 F:      arch/arm/mach-exynos*/
1438 F:      drivers/*/*s3c2410*
1439 F:      drivers/*/*/*s3c2410*
1440 F:      drivers/spi/spi-s3c*
1441 F:      sound/soc/samsung/*
1442 N:      exynos
1443
1444 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1445 M:      Kyungmin Park <kyungmin.park@samsung.com>
1446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1447 S:      Maintained
1448 F:      arch/arm/mach-s5pv210/
1449
1450 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1451 M:      Kyungmin Park <kyungmin.park@samsung.com>
1452 M:      Kamil Debski <k.debski@samsung.com>
1453 L:      linux-arm-kernel@lists.infradead.org
1454 L:      linux-media@vger.kernel.org
1455 S:      Maintained
1456 F:      drivers/media/platform/s5p-g2d/
1457
1458 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1459 M:      Kyungmin Park <kyungmin.park@samsung.com>
1460 M:      Kamil Debski <k.debski@samsung.com>
1461 M:      Jeongtae Park <jtp.park@samsung.com>
1462 L:      linux-arm-kernel@lists.infradead.org
1463 L:      linux-media@vger.kernel.org
1464 S:      Maintained
1465 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1466 F:      drivers/media/platform/s5p-mfc/
1467
1468 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1469 M:      Kyungmin Park <kyungmin.park@samsung.com>
1470 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1471 L:      linux-arm-kernel@lists.infradead.org
1472 L:      linux-media@vger.kernel.org
1473 S:      Maintained
1474 F:      drivers/media/platform/s5p-tv/
1475
1476 ARM/SHMOBILE ARM ARCHITECTURE
1477 M:      Simon Horman <horms@verge.net.au>
1478 M:      Magnus Damm <magnus.damm@gmail.com>
1479 L:      linux-sh@vger.kernel.org
1480 W:      http://oss.renesas.com
1481 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1483 S:      Supported
1484 F:      arch/arm/boot/dts/emev2*
1485 F:      arch/arm/boot/dts/r7s*
1486 F:      arch/arm/boot/dts/r8a*
1487 F:      arch/arm/boot/dts/sh*
1488 F:      arch/arm/configs/bockw_defconfig
1489 F:      arch/arm/configs/marzen_defconfig
1490 F:      arch/arm/configs/shmobile_defconfig
1491 F:      arch/arm/include/debug/renesas-scif.S
1492 F:      arch/arm/mach-shmobile/
1493 F:      drivers/sh/
1494
1495 ARM/SOCFPGA ARCHITECTURE
1496 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1497 S:      Maintained
1498 F:      arch/arm/mach-socfpga/
1499 F:      arch/arm/boot/dts/socfpga*
1500 F:      arch/arm/configs/socfpga_defconfig
1501 W:      http://www.rocketboards.org
1502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1503
1504 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1505 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1506 S:      Maintained
1507 F:      drivers/clk/socfpga/
1508
1509 ARM/SOCFPGA EDAC SUPPORT
1510 M:      Thor Thayer <tthayer@opensource.altera.com>
1511 S:      Maintained
1512 F:      drivers/edac/altera_edac.
1513
1514 ARM/STI ARCHITECTURE
1515 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1516 M:      Maxime Coquelin <maxime.coquelin@st.com>
1517 M:      Patrice Chotard <patrice.chotard@st.com>
1518 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1519 L:      kernel@stlinux.com
1520 W:      http://www.stlinux.com
1521 S:      Maintained
1522 F:      arch/arm/mach-sti/
1523 F:      arch/arm/boot/dts/sti*
1524 F:      drivers/clocksource/arm_global_timer.c
1525 F:      drivers/clocksource/clksrc_st_lpc.c
1526 F:      drivers/i2c/busses/i2c-st.c
1527 F:      drivers/media/rc/st_rc.c
1528 F:      drivers/media/platform/sti/c8sectpfe/
1529 F:      drivers/mmc/host/sdhci-st.c
1530 F:      drivers/phy/phy-miphy28lp.c
1531 F:      drivers/phy/phy-miphy365x.c
1532 F:      drivers/phy/phy-stih407-usb.c
1533 F:      drivers/phy/phy-stih41x-usb.c
1534 F:      drivers/pinctrl/pinctrl-st.c
1535 F:      drivers/reset/sti/
1536 F:      drivers/rtc/rtc-st-lpc.c
1537 F:      drivers/tty/serial/st-asc.c
1538 F:      drivers/usb/dwc3/dwc3-st.c
1539 F:      drivers/usb/host/ehci-st.c
1540 F:      drivers/usb/host/ohci-st.c
1541 F:      drivers/watchdog/st_lpc_wdt.c
1542 F:      drivers/ata/ahci_st.c
1543
1544 ARM/STM32 ARCHITECTURE
1545 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1547 S:      Maintained
1548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1549 N:      stm32
1550 F:      drivers/clocksource/armv7m_systick.c
1551
1552 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1553 M:      Lennert Buytenhek <kernel@wantstofly.org>
1554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1555 S:      Maintained
1556
1557 ARM/TETON BGA MACHINE SUPPORT
1558 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1560 S:      Maintained
1561
1562 ARM/THECUS N2100 MACHINE SUPPORT
1563 M:      Lennert Buytenhek <kernel@wantstofly.org>
1564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1565 S:      Maintained
1566
1567 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1568 M:      Wan ZongShun <mcuos.com@gmail.com>
1569 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1570 W:      http://www.mcuos.com
1571 S:      Maintained
1572 F:      arch/arm/mach-w90x900/
1573 F:      drivers/input/keyboard/w90p910_keypad.c
1574 F:      drivers/input/touchscreen/w90p910_ts.c
1575 F:      drivers/watchdog/nuc900_wdt.c
1576 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1577 F:      drivers/mtd/nand/nuc900_nand.c
1578 F:      drivers/rtc/rtc-nuc900.c
1579 F:      drivers/spi/spi-nuc900.c
1580 F:      drivers/usb/host/ehci-w90x900.c
1581 F:      drivers/video/fbdev/nuc900fb.c
1582
1583 ARM/U300 MACHINE SUPPORT
1584 M:      Linus Walleij <linus.walleij@linaro.org>
1585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1586 S:      Supported
1587 F:      arch/arm/mach-u300/
1588 F:      drivers/clocksource/timer-u300.c
1589 F:      drivers/i2c/busses/i2c-stu300.c
1590 F:      drivers/rtc/rtc-coh901331.c
1591 F:      drivers/watchdog/coh901327_wdt.c
1592 F:      drivers/dma/coh901318*
1593 F:      drivers/mfd/ab3100*
1594 F:      drivers/rtc/rtc-ab3100.c
1595 F:      drivers/rtc/rtc-coh901331.c
1596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1597
1598 ARM/UNIPHIER ARCHITECTURE
1599 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 S:      Maintained
1602 F:      arch/arm/boot/dts/uniphier*
1603 F:      arch/arm/mach-uniphier/
1604 F:      drivers/pinctrl/uniphier/
1605 F:      drivers/tty/serial/8250/8250_uniphier.c
1606 N:      uniphier
1607
1608 ARM/Ux500 ARM ARCHITECTURE
1609 M:      Linus Walleij <linus.walleij@linaro.org>
1610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1611 S:      Maintained
1612 F:      arch/arm/mach-ux500/
1613 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1614 F:      drivers/dma/ste_dma40*
1615 F:      drivers/hwspinlock/u8500_hsem.c
1616 F:      drivers/mfd/abx500*
1617 F:      drivers/mfd/ab8500*
1618 F:      drivers/mfd/dbx500*
1619 F:      drivers/mfd/db8500*
1620 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1621 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1622 F:      drivers/rtc/rtc-ab8500.c
1623 F:      drivers/rtc/rtc-pl031.c
1624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1625
1626 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1627 M:      Ulf Hansson <ulf.hansson@linaro.org>
1628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 T:      git git://git.linaro.org/people/ulfh/clk.git
1630 S:      Maintained
1631 F:      drivers/clk/ux500/
1632 F:      include/linux/platform_data/clk-ux500.h
1633
1634 ARM/VERSATILE EXPRESS PLATFORM
1635 M:      Liviu Dudau <liviu.dudau@arm.com>
1636 M:      Sudeep Holla <sudeep.holla@arm.com>
1637 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639 S:      Maintained
1640 F:      arch/arm/boot/dts/vexpress*
1641 F:      arch/arm64/boot/dts/arm/vexpress*
1642 F:      arch/arm/mach-vexpress/
1643 F:      */*/vexpress*
1644 F:      */*/*/vexpress*
1645 F:      drivers/clk/versatile/clk-vexpress-osc.c
1646 F:      drivers/clocksource/versatile.c
1647
1648 ARM/VFP SUPPORT
1649 M:      Russell King <linux@arm.linux.org.uk>
1650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1651 W:      http://www.arm.linux.org.uk/
1652 S:      Maintained
1653 F:      arch/arm/vfp/
1654
1655 ARM/VOIPAC PXA270 SUPPORT
1656 M:      Marek Vasut <marek.vasut@gmail.com>
1657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658 S:      Maintained
1659 F:      arch/arm/mach-pxa/vpac270.c
1660 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1661
1662 ARM/VT8500 ARM ARCHITECTURE
1663 M:      Tony Prisk <linux@prisktech.co.nz>
1664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665 S:      Maintained
1666 F:      arch/arm/mach-vt8500/
1667 F:      drivers/clocksource/vt8500_timer.c
1668 F:      drivers/i2c/busses/i2c-wmt.c
1669 F:      drivers/mmc/host/wmt-sdmmc.c
1670 F:      drivers/pwm/pwm-vt8500.c
1671 F:      drivers/rtc/rtc-vt8500.c
1672 F:      drivers/tty/serial/vt8500_serial.c
1673 F:      drivers/usb/host/ehci-platform.c
1674 F:      drivers/usb/host/uhci-platform.c
1675 F:      drivers/video/fbdev/vt8500lcdfb.*
1676 F:      drivers/video/fbdev/wm8505fb*
1677 F:      drivers/video/fbdev/wmt_ge_rops.*
1678
1679 ARM/ZIPIT Z2 SUPPORT
1680 M:      Marek Vasut <marek.vasut@gmail.com>
1681 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1682 S:      Maintained
1683 F:      arch/arm/mach-pxa/z2.c
1684 F:      arch/arm/mach-pxa/include/mach/z2.h
1685
1686 ARM/ZTE ARCHITECTURE
1687 M:      Jun Nie <jun.nie@linaro.org>
1688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689 S:      Maintained
1690 F:      arch/arm/mach-zx/
1691 F:      drivers/clk/zte/
1692 F:      Documentation/devicetree/bindings/arm/zte.txt
1693 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1694
1695 ARM/ZYNQ ARCHITECTURE
1696 M:      Michal Simek <michal.simek@xilinx.com>
1697 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 W:      http://wiki.xilinx.com
1700 T:      git https://github.com/Xilinx/linux-xlnx.git
1701 S:      Supported
1702 F:      arch/arm/mach-zynq/
1703 F:      drivers/cpuidle/cpuidle-zynq.c
1704 F:      drivers/block/xsysace.c
1705 N:      zynq
1706 N:      xilinx
1707 F:      drivers/clocksource/cadence_ttc_timer.c
1708 F:      drivers/i2c/busses/i2c-cadence.c
1709 F:      drivers/mmc/host/sdhci-of-arasan.c
1710 F:      drivers/edac/synopsys_edac.c
1711
1712 ARM SMMU DRIVERS
1713 M:      Will Deacon <will.deacon@arm.com>
1714 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1715 S:      Maintained
1716 F:      drivers/iommu/arm-smmu.c
1717 F:      drivers/iommu/arm-smmu-v3.c
1718 F:      drivers/iommu/io-pgtable-arm.c
1719
1720 ARM64 PORT (AARCH64 ARCHITECTURE)
1721 M:      Catalin Marinas <catalin.marinas@arm.com>
1722 M:      Will Deacon <will.deacon@arm.com>
1723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724 S:      Maintained
1725 F:      arch/arm64/
1726 F:      Documentation/arm64/
1727
1728 AS3645A LED FLASH CONTROLLER DRIVER
1729 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1730 L:      linux-media@vger.kernel.org
1731 T:      git git://linuxtv.org/media_tree.git
1732 S:      Maintained
1733 F:      drivers/media/i2c/as3645a.c
1734 F:      include/media/as3645a.h
1735
1736 ASC7621 HARDWARE MONITOR DRIVER
1737 M:      George Joseph <george.joseph@fairview5.com>
1738 L:      lm-sensors@lm-sensors.org
1739 S:      Maintained
1740 F:      Documentation/hwmon/asc7621
1741 F:      drivers/hwmon/asc7621.c
1742
1743 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1744 M:      Corentin Chary <corentin.chary@gmail.com>
1745 L:      acpi4asus-user@lists.sourceforge.net
1746 L:      platform-driver-x86@vger.kernel.org
1747 W:      http://acpi4asus.sf.net
1748 S:      Maintained
1749 F:      drivers/platform/x86/asus*.c
1750 F:      drivers/platform/x86/eeepc*.c
1751
1752 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1753 R:      Dan Williams <dan.j.williams@intel.com>
1754 W:      http://sourceforge.net/projects/xscaleiop
1755 S:      Odd fixes
1756 F:      Documentation/crypto/async-tx-api.txt
1757 F:      crypto/async_tx/
1758 F:      drivers/dma/
1759 F:      include/linux/dmaengine.h
1760 F:      include/linux/async_tx.h
1761
1762 AT24 EEPROM DRIVER
1763 M:      Wolfram Sang <wsa@the-dreams.de>
1764 L:      linux-i2c@vger.kernel.org
1765 S:      Maintained
1766 F:      drivers/misc/eeprom/at24.c
1767 F:      include/linux/platform_data/at24.h
1768
1769 ATA OVER ETHERNET (AOE) DRIVER
1770 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1771 W:      http://www.openaoe.org/
1772 S:      Supported
1773 F:      Documentation/aoe/
1774 F:      drivers/block/aoe/
1775
1776 ATHEROS ATH GENERIC UTILITIES
1777 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1778 L:      linux-wireless@vger.kernel.org
1779 S:      Supported
1780 F:      drivers/net/wireless/ath/*
1781
1782 ATHEROS ATH5K WIRELESS DRIVER
1783 M:      Jiri Slaby <jirislaby@gmail.com>
1784 M:      Nick Kossifidis <mickflemm@gmail.com>
1785 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1786 L:      linux-wireless@vger.kernel.org
1787 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1788 S:      Maintained
1789 F:      drivers/net/wireless/ath/ath5k/
1790
1791 ATHEROS ATH6KL WIRELESS DRIVER
1792 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1793 L:      linux-wireless@vger.kernel.org
1794 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1795 T:      git git://github.com/kvalo/ath.git
1796 S:      Supported
1797 F:      drivers/net/wireless/ath/ath6kl/
1798
1799 WILOCITY WIL6210 WIRELESS DRIVER
1800 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1801 L:      linux-wireless@vger.kernel.org
1802 L:      wil6210@qca.qualcomm.com
1803 S:      Supported
1804 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1805 F:      drivers/net/wireless/ath/wil6210/
1806 F:      include/uapi/linux/wil6210_uapi.h
1807
1808 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1809 M:      Christian Lamparter <chunkeey@googlemail.com>
1810 L:      linux-wireless@vger.kernel.org
1811 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1812 S:      Maintained
1813 F:      drivers/net/wireless/ath/carl9170/
1814
1815 ATK0110 HWMON DRIVER
1816 M:      Luca Tettamanti <kronos.it@gmail.com>
1817 L:      lm-sensors@lm-sensors.org
1818 S:      Maintained
1819 F:      drivers/hwmon/asus_atk0110.c
1820
1821 ATI_REMOTE2 DRIVER
1822 M:      Ville Syrjala <syrjala@sci.fi>
1823 S:      Maintained
1824 F:      drivers/input/misc/ati_remote2.c
1825
1826 ATLX ETHERNET DRIVERS
1827 M:      Jay Cliburn <jcliburn@gmail.com>
1828 M:      Chris Snook <chris.snook@gmail.com>
1829 L:      netdev@vger.kernel.org
1830 W:      http://sourceforge.net/projects/atl1
1831 W:      http://atl1.sourceforge.net
1832 S:      Maintained
1833 F:      drivers/net/ethernet/atheros/
1834
1835 ATM
1836 M:      Chas Williams <3chas3@gmail.com>
1837 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1838 L:      netdev@vger.kernel.org
1839 W:      http://linux-atm.sourceforge.net
1840 S:      Maintained
1841 F:      drivers/atm/
1842 F:      include/linux/atm*
1843 F:      include/uapi/linux/atm*
1844
1845 ATMEL AT91 / AT32 MCI DRIVER
1846 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1847 S:      Maintained
1848 F:      drivers/mmc/host/atmel-mci.c
1849 F:      drivers/mmc/host/atmel-mci-regs.h
1850
1851 ATMEL AT91 / AT32 SERIAL DRIVER
1852 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1853 S:      Supported
1854 F:      drivers/tty/serial/atmel_serial.c
1855
1856 ATMEL Audio ALSA driver
1857 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1858 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1859 S:      Supported
1860 F:      sound/soc/atmel
1861
1862 ATMEL DMA DRIVER
1863 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1865 S:      Supported
1866 F:      drivers/dma/at_hdmac.c
1867 F:      drivers/dma/at_hdmac_regs.h
1868 F:      include/linux/platform_data/dma-atmel.h
1869
1870 ATMEL XDMA DRIVER
1871 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1872 L:      linux-arm-kernel@lists.infradead.org
1873 L:      dmaengine@vger.kernel.org
1874 S:      Supported
1875 F:      drivers/dma/at_xdmac.c
1876
1877 ATMEL I2C DRIVER
1878 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1879 L:      linux-i2c@vger.kernel.org
1880 S:      Supported
1881 F:      drivers/i2c/busses/i2c-at91.c
1882
1883 ATMEL ISI DRIVER
1884 M:      Josh Wu <josh.wu@atmel.com>
1885 L:      linux-media@vger.kernel.org
1886 S:      Supported
1887 F:      drivers/media/platform/soc_camera/atmel-isi.c
1888 F:      include/media/atmel-isi.h
1889
1890 ATMEL LCDFB DRIVER
1891 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1892 L:      linux-fbdev@vger.kernel.org
1893 S:      Maintained
1894 F:      drivers/video/fbdev/atmel_lcdfb.c
1895 F:      include/video/atmel_lcdc.h
1896
1897 ATMEL MACB ETHERNET DRIVER
1898 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1899 S:      Supported
1900 F:      drivers/net/ethernet/cadence/
1901
1902 ATMEL NAND DRIVER
1903 M:      Josh Wu <josh.wu@atmel.com>
1904 L:      linux-mtd@lists.infradead.org
1905 S:      Supported
1906 F:      drivers/mtd/nand/atmel_nand*
1907
1908 ATMEL SPI DRIVER
1909 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1910 S:      Supported
1911 F:      drivers/spi/spi-atmel.*
1912
1913 ATMEL SSC DRIVER
1914 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1916 S:      Supported
1917 F:      drivers/misc/atmel-ssc.c
1918 F:      include/linux/atmel-ssc.h
1919
1920 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1921 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1923 S:      Supported
1924 F:      drivers/misc/atmel_tclib.c
1925 F:      drivers/clocksource/tcb_clksrc.c
1926
1927 ATMEL USBA UDC DRIVER
1928 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1930 S:      Supported
1931 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1932
1933 ATMEL WIRELESS DRIVER
1934 M:      Simon Kelley <simon@thekelleys.org.uk>
1935 L:      linux-wireless@vger.kernel.org
1936 W:      http://www.thekelleys.org.uk/atmel
1937 W:      http://atmelwlandriver.sourceforge.net/
1938 S:      Maintained
1939 F:      drivers/net/wireless/atmel*
1940
1941 ATMEL MAXTOUCH DRIVER
1942 M:      Nick Dyer <nick.dyer@itdev.co.uk>
1943 T:      git git://github.com/atmel-maxtouch/linux.git
1944 S:      Supported
1945 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1946 F:      drivers/input/touchscreen/atmel_mxt_ts.c
1947 F:      include/linux/platform_data/atmel_mxt_ts.h
1948
1949 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1950 M:      Bradley Grove <linuxdrivers@attotech.com>
1951 L:      linux-scsi@vger.kernel.org
1952 W:      http://www.attotech.com
1953 S:      Supported
1954 F:      drivers/scsi/esas2r
1955
1956 ATUSB IEEE 802.15.4 RADIO DRIVER
1957 M:      Stefan Schmidt <stefan@osg.samsung.com>
1958 L:      linux-wpan@vger.kernel.org
1959 S:      Maintained
1960 F:      drivers/net/ieee802154/atusb.c
1961 F:      drivers/net/ieee802154/atusb.h
1962 F:      drivers/net/ieee802154/at86rf230.h
1963
1964 AUDIT SUBSYSTEM
1965 M:      Paul Moore <paul@paul-moore.com>
1966 M:      Eric Paris <eparis@redhat.com>
1967 L:      linux-audit@redhat.com (moderated for non-subscribers)
1968 W:      http://people.redhat.com/sgrubb/audit/
1969 T:      git git://git.infradead.org/users/pcmoore/audit
1970 S:      Maintained
1971 F:      include/linux/audit.h
1972 F:      include/uapi/linux/audit.h
1973 F:      kernel/audit*
1974
1975 AUXILIARY DISPLAY DRIVERS
1976 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1977 W:      http://miguelojeda.es/auxdisplay.htm
1978 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1979 S:      Maintained
1980 F:      drivers/auxdisplay/
1981 F:      include/linux/cfag12864b.h
1982
1983 AVR32 ARCHITECTURE
1984 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1985 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1986 W:      http://www.atmel.com/products/AVR32/
1987 W:      http://mirror.egtvedt.no/avr32linux.org/
1988 W:      http://avrfreaks.net/
1989 S:      Maintained
1990 F:      arch/avr32/
1991
1992 AVR32/AT32AP MACHINE SUPPORT
1993 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1994 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1995 S:      Maintained
1996 F:      arch/avr32/mach-at32ap/
1997
1998 AX.25 NETWORK LAYER
1999 M:      Ralf Baechle <ralf@linux-mips.org>
2000 L:      linux-hams@vger.kernel.org
2001 W:      http://www.linux-ax25.org/
2002 S:      Maintained
2003 F:      include/uapi/linux/ax25.h
2004 F:      include/net/ax25.h
2005 F:      net/ax25/
2006
2007 AZ6007 DVB DRIVER
2008 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2009 L:      linux-media@vger.kernel.org
2010 W:      http://linuxtv.org
2011 T:      git git://linuxtv.org/media_tree.git
2012 S:      Maintained
2013 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2014
2015 AZTECH FM RADIO RECEIVER DRIVER
2016 M:      Hans Verkuil <hverkuil@xs4all.nl>
2017 L:      linux-media@vger.kernel.org
2018 T:      git git://linuxtv.org/media_tree.git
2019 W:      http://linuxtv.org
2020 S:      Maintained
2021 F:      drivers/media/radio/radio-aztech*
2022
2023 B43 WIRELESS DRIVER
2024 L:      linux-wireless@vger.kernel.org
2025 L:      b43-dev@lists.infradead.org
2026 W:      http://wireless.kernel.org/en/users/Drivers/b43
2027 S:      Odd Fixes
2028 F:      drivers/net/wireless/b43/
2029
2030 B43LEGACY WIRELESS DRIVER
2031 M:      Larry Finger <Larry.Finger@lwfinger.net>
2032 L:      linux-wireless@vger.kernel.org
2033 L:      b43-dev@lists.infradead.org
2034 W:      http://wireless.kernel.org/en/users/Drivers/b43
2035 S:      Maintained
2036 F:      drivers/net/wireless/b43legacy/
2037
2038 BACKLIGHT CLASS/SUBSYSTEM
2039 M:      Jingoo Han <jingoohan1@gmail.com>
2040 M:      Lee Jones <lee.jones@linaro.org>
2041 S:      Maintained
2042 F:      drivers/video/backlight/
2043 F:      include/linux/backlight.h
2044
2045 BATMAN ADVANCED
2046 M:      Marek Lindner <mareklindner@neomailbox.ch>
2047 M:      Simon Wunderlich <sw@simonwunderlich.de>
2048 M:      Antonio Quartulli <antonio@meshcoding.com>
2049 L:      b.a.t.m.a.n@lists.open-mesh.org
2050 W:      http://www.open-mesh.org/
2051 S:      Maintained
2052 F:      net/batman-adv/
2053
2054 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2055 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2056 L:      linux-hams@vger.kernel.org
2057 W:      http://www.baycom.org/~tom/ham/ham.html
2058 S:      Maintained
2059 F:      drivers/net/hamradio/baycom*
2060
2061 BCACHE (BLOCK LAYER CACHE)
2062 M:      Kent Overstreet <kent.overstreet@gmail.com>
2063 L:      linux-bcache@vger.kernel.org
2064 W:      http://bcache.evilpiepirate.org
2065 S:      Maintained
2066 F:      drivers/md/bcache/
2067
2068 BDISP ST MEDIA DRIVER
2069 M:      Fabien Dessenne <fabien.dessenne@st.com>
2070 L:      linux-media@vger.kernel.org
2071 T:      git git://linuxtv.org/media_tree.git
2072 W:      http://linuxtv.org
2073 S:      Supported
2074 F:      drivers/media/platform/sti/bdisp
2075
2076 BEFS FILE SYSTEM
2077 S:      Orphan
2078 F:      Documentation/filesystems/befs.txt
2079 F:      fs/befs/
2080
2081 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2082 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2083 L:      netdev@vger.kernel.org
2084 S:      Maintained
2085 F:      drivers/net/ethernet/ec_bhf.c
2086
2087 BFS FILE SYSTEM
2088 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2089 S:      Maintained
2090 F:      Documentation/filesystems/bfs.txt
2091 F:      fs/bfs/
2092 F:      include/uapi/linux/bfs_fs.h
2093
2094 BLACKFIN ARCHITECTURE
2095 M:      Steven Miao <realmz6@gmail.com>
2096 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2097 T:      git git://git.code.sf.net/p/adi-linux/code
2098 W:      http://blackfin.uclinux.org
2099 S:      Supported
2100 F:      arch/blackfin/
2101
2102 BLACKFIN EMAC DRIVER
2103 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2104 W:      http://blackfin.uclinux.org
2105 S:      Supported
2106 F:      drivers/net/ethernet/adi/
2107
2108 BLACKFIN RTC 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/rtc/rtc-bfin.c
2113
2114 BLACKFIN SDH DRIVER
2115 M:      Sonic Zhang <sonic.zhang@analog.com>
2116 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2117 W:      http://blackfin.uclinux.org
2118 S:      Supported
2119 F:      drivers/mmc/host/bfin_sdh.c
2120
2121 BLACKFIN SERIAL DRIVER
2122 M:      Sonic Zhang <sonic.zhang@analog.com>
2123 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2124 W:      http://blackfin.uclinux.org
2125 S:      Supported
2126 F:      drivers/tty/serial/bfin_uart.c
2127
2128 BLACKFIN WATCHDOG DRIVER
2129 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2130 W:      http://blackfin.uclinux.org
2131 S:      Supported
2132 F:      drivers/watchdog/bfin_wdt.c
2133
2134 BLACKFIN I2C TWI DRIVER
2135 M:      Sonic Zhang <sonic.zhang@analog.com>
2136 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2137 W:      http://blackfin.uclinux.org/
2138 S:      Supported
2139 F:      drivers/i2c/busses/i2c-bfin-twi.c
2140
2141 BLACKFIN MEDIA DRIVER
2142 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2143 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2144 W:      http://blackfin.uclinux.org/
2145 S:      Supported
2146 F:      drivers/media/platform/blackfin/
2147 F:      drivers/media/i2c/adv7183*
2148 F:      drivers/media/i2c/vs6624*
2149
2150 BLINKM RGB LED DRIVER
2151 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2152 S:      Maintained
2153 F:      drivers/leds/leds-blinkm.c
2154
2155 BLOCK LAYER
2156 M:      Jens Axboe <axboe@kernel.dk>
2157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2158 S:      Maintained
2159 F:      block/
2160 F:      kernel/trace/blktrace.c
2161
2162 BLOCK2MTD DRIVER
2163 M:      Joern Engel <joern@lazybastard.org>
2164 L:      linux-mtd@lists.infradead.org
2165 S:      Maintained
2166 F:      drivers/mtd/devices/block2mtd.c
2167
2168 BLUETOOTH DRIVERS
2169 M:      Marcel Holtmann <marcel@holtmann.org>
2170 M:      Gustavo Padovan <gustavo@padovan.org>
2171 M:      Johan Hedberg <johan.hedberg@gmail.com>
2172 L:      linux-bluetooth@vger.kernel.org
2173 W:      http://www.bluez.org/
2174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2176 S:      Maintained
2177 F:      drivers/bluetooth/
2178
2179 BLUETOOTH SUBSYSTEM
2180 M:      Marcel Holtmann <marcel@holtmann.org>
2181 M:      Gustavo Padovan <gustavo@padovan.org>
2182 M:      Johan Hedberg <johan.hedberg@gmail.com>
2183 L:      linux-bluetooth@vger.kernel.org
2184 W:      http://www.bluez.org/
2185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2187 S:      Maintained
2188 F:      net/bluetooth/
2189 F:      include/net/bluetooth/
2190
2191 BONDING DRIVER
2192 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2193 M:      Veaceslav Falico <vfalico@gmail.com>
2194 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2195 L:      netdev@vger.kernel.org
2196 W:      http://sourceforge.net/projects/bonding/
2197 S:      Supported
2198 F:      drivers/net/bonding/
2199 F:      include/uapi/linux/if_bonding.h
2200
2201 BPF (Safe dynamic programs and tools)
2202 M:      Alexei Starovoitov <ast@kernel.org>
2203 L:      netdev@vger.kernel.org
2204 L:      linux-kernel@vger.kernel.org
2205 S:      Supported
2206 F:      kernel/bpf/
2207
2208 BROADCOM B44 10/100 ETHERNET DRIVER
2209 M:      Gary Zambrano <zambrano@broadcom.com>
2210 L:      netdev@vger.kernel.org
2211 S:      Supported
2212 F:      drivers/net/ethernet/broadcom/b44.*
2213
2214 BROADCOM GENET ETHERNET DRIVER
2215 M:      Florian Fainelli <f.fainelli@gmail.com>
2216 L:      netdev@vger.kernel.org
2217 S:      Supported
2218 F:      drivers/net/ethernet/broadcom/genet/
2219
2220 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2221 M:      Sony Chacko <sony.chacko@qlogic.com>
2222 M:      Dept-HSGLinuxNICDev@qlogic.com
2223 L:      netdev@vger.kernel.org
2224 S:      Supported
2225 F:      drivers/net/ethernet/broadcom/bnx2.*
2226 F:      drivers/net/ethernet/broadcom/bnx2_*
2227
2228 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2229 M:      Ariel Elior <ariel.elior@qlogic.com>
2230 L:      netdev@vger.kernel.org
2231 S:      Supported
2232 F:      drivers/net/ethernet/broadcom/bnx2x/
2233
2234 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2235 M:      Florian Fainelli <f.fainelli@gmail.com>
2236 M:      Ray Jui <rjui@broadcom.com>
2237 M:      Scott Branden <sbranden@broadcom.com>
2238 L:      bcm-kernel-feedback-list@broadcom.com
2239 T:      git git://github.com/broadcom/mach-bcm
2240 S:      Maintained
2241 F:      arch/arm/mach-bcm/
2242 F:      arch/arm/boot/dts/bcm113*
2243 F:      arch/arm/boot/dts/bcm216*
2244 F:      arch/arm/boot/dts/bcm281*
2245 F:      arch/arm/configs/bcm_defconfig
2246 F:      drivers/mmc/host/sdhci-bcm-kona.c
2247 F:      drivers/clocksource/bcm_kona_timer.c
2248
2249 BROADCOM BCM2835 ARM ARCHITECTURE
2250 M:      Stephen Warren <swarren@wwwdotorg.org>
2251 M:      Lee Jones <lee@kernel.org>
2252 M:      Eric Anholt <eric@anholt.net>
2253 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2256 S:      Maintained
2257 N:      bcm2835
2258
2259 BROADCOM BCM33XX MIPS ARCHITECTURE
2260 M:      Kevin Cernekee <cernekee@gmail.com>
2261 L:      linux-mips@linux-mips.org
2262 S:      Maintained
2263 F:      arch/mips/bcm3384/*
2264 F:      arch/mips/include/asm/mach-bcm3384/*
2265 F:      arch/mips/kernel/*bmips*
2266
2267 BROADCOM BCM47XX MIPS ARCHITECTURE
2268 M:      Hauke Mehrtens <hauke@hauke-m.de>
2269 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2270 L:      linux-mips@linux-mips.org
2271 S:      Maintained
2272 F:      arch/mips/bcm47xx/*
2273 F:      arch/mips/include/asm/mach-bcm47xx/*
2274
2275 BROADCOM BCM5301X ARM ARCHITECTURE
2276 M:      Hauke Mehrtens <hauke@hauke-m.de>
2277 L:      linux-arm-kernel@lists.infradead.org
2278 S:      Maintained
2279 F:      arch/arm/mach-bcm/bcm_5301x.c
2280 F:      arch/arm/boot/dts/bcm5301x.dtsi
2281 F:      arch/arm/boot/dts/bcm470*
2282
2283 BROADCOM BCM63XX ARM ARCHITECTURE
2284 M:      Florian Fainelli <f.fainelli@gmail.com>
2285 L:      linux-arm-kernel@lists.infradead.org
2286 T:      git git://github.com/broadcom/arm-bcm63xx.git
2287 S:      Maintained
2288 F:      arch/arm/mach-bcm/bcm63xx.c
2289 F:      arch/arm/include/debug/bcm63xx.S
2290
2291 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2292 M:      Kevin Cernekee <cernekee@gmail.com>
2293 L:      linux-usb@vger.kernel.org
2294 S:      Maintained
2295 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2296
2297 BROADCOM BCM7XXX ARM ARCHITECTURE
2298 M:      Brian Norris <computersforpeace@gmail.com>
2299 M:      Gregory Fong <gregory.0xf0@gmail.com>
2300 M:      Florian Fainelli <f.fainelli@gmail.com>
2301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2302 T:      git git://github.com/broadcom/stblinux.git
2303 S:      Maintained
2304 F:      arch/arm/mach-bcm/*brcmstb*
2305 F:      arch/arm/boot/dts/bcm7*.dts*
2306 F:      drivers/bus/brcmstb_gisb.c
2307 N:      brcmstb
2308
2309 BROADCOM BMIPS MIPS ARCHITECTURE
2310 M:      Kevin Cernekee <cernekee@gmail.com>
2311 M:      Florian Fainelli <f.fainelli@gmail.com>
2312 L:      linux-mips@linux-mips.org
2313 T:      git git://github.com/broadcom/stblinux.git
2314 S:      Maintained
2315 F:      arch/mips/bmips/*
2316 F:      arch/mips/include/asm/mach-bmips/*
2317 F:      arch/mips/kernel/*bmips*
2318 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2319 F:      drivers/irqchip/irq-bcm7*
2320 F:      drivers/irqchip/irq-brcmstb*
2321
2322 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2323 M:      Prashant Sreedharan <prashant@broadcom.com>
2324 M:      Michael Chan <mchan@broadcom.com>
2325 L:      netdev@vger.kernel.org
2326 S:      Supported
2327 F:      drivers/net/ethernet/broadcom/tg3.*
2328
2329 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2330 M:      Brett Rudley <brudley@broadcom.com>
2331 M:      Arend van Spriel <arend@broadcom.com>
2332 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2333 M:      Hante Meuleman <meuleman@broadcom.com>
2334 L:      linux-wireless@vger.kernel.org
2335 L:      brcm80211-dev-list@broadcom.com
2336 S:      Supported
2337 F:      drivers/net/wireless/brcm80211/
2338
2339 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2340 M:      QLogic-Storage-Upstream@qlogic.com
2341 L:      linux-scsi@vger.kernel.org
2342 S:      Supported
2343 F:      drivers/scsi/bnx2fc/
2344
2345 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2346 M:      QLogic-Storage-Upstream@qlogic.com
2347 L:      linux-scsi@vger.kernel.org
2348 S:      Supported
2349 F:      drivers/scsi/bnx2i/
2350
2351 BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2352 M:      Ray Jui <rjui@broadcom.com>
2353 M:      Scott Branden <sbranden@broadcom.com>
2354 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2355 L:      bcm-kernel-feedback-list@broadcom.com
2356 T:      git git://github.com/broadcom/cygnus-linux.git
2357 S:      Maintained
2358 N:      iproc
2359 N:      cygnus
2360 N:      bcm9113*
2361 N:      bcm9583*
2362 N:      bcm583*
2363 N:      bcm113*
2364
2365 BROADCOM BRCMSTB GPIO DRIVER
2366 M:      Gregory Fong <gregory.0xf0@gmail.com>
2367 L:      bcm-kernel-feedback-list@broadcom.com>
2368 S:      Supported
2369 F:      drivers/gpio/gpio-brcmstb.c
2370 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2371
2372 BROADCOM KONA GPIO DRIVER
2373 M:      Ray Jui <rjui@broadcom.com>
2374 L:      bcm-kernel-feedback-list@broadcom.com
2375 S:      Supported
2376 F:      drivers/gpio/gpio-bcm-kona.c
2377 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2378
2379 BROADCOM NVRAM DRIVER
2380 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2381 L:      linux-mips@linux-mips.org
2382 S:      Maintained
2383 F:      drivers/firmware/broadcom/*
2384
2385 BROADCOM STB NAND FLASH DRIVER
2386 M:      Brian Norris <computersforpeace@gmail.com>
2387 L:      linux-mtd@lists.infradead.org
2388 S:      Maintained
2389 F:      drivers/mtd/nand/brcmnand/
2390
2391 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2392 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2393 L:      linux-wireless@vger.kernel.org
2394 S:      Maintained
2395 F:      drivers/bcma/
2396 F:      include/linux/bcma/
2397
2398 BROADCOM SYSTEMPORT ETHERNET DRIVER
2399 M:      Florian Fainelli <f.fainelli@gmail.com>
2400 L:      netdev@vger.kernel.org
2401 S:      Supported
2402 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2403
2404 BROCADE BFA FC SCSI DRIVER
2405 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2406 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2407 L:      linux-scsi@vger.kernel.org
2408 S:      Supported
2409 F:      drivers/scsi/bfa/
2410
2411 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2412 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2413 L:      netdev@vger.kernel.org
2414 S:      Supported
2415 F:      drivers/net/ethernet/brocade/bna/
2416
2417 BSG (block layer generic sg v4 driver)
2418 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2419 L:      linux-scsi@vger.kernel.org
2420 S:      Supported
2421 F:      block/bsg.c
2422 F:      include/linux/bsg.h
2423 F:      include/uapi/linux/bsg.h
2424
2425 BT87X AUDIO DRIVER
2426 M:      Clemens Ladisch <clemens@ladisch.de>
2427 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2428 T:      git git://git.alsa-project.org/alsa-kernel.git
2429 S:      Maintained
2430 F:      Documentation/sound/alsa/Bt87x.txt
2431 F:      sound/pci/bt87x.c
2432
2433 BT8XXGPIO DRIVER
2434 M:      Michael Buesch <m@bues.ch>
2435 W:      http://bu3sch.de/btgpio.php
2436 S:      Maintained
2437 F:      drivers/gpio/gpio-bt8xx.c
2438
2439 BTRFS FILE SYSTEM
2440 M:      Chris Mason <clm@fb.com>
2441 M:      Josef Bacik <jbacik@fb.com>
2442 M:      David Sterba <dsterba@suse.com>
2443 L:      linux-btrfs@vger.kernel.org
2444 W:      http://btrfs.wiki.kernel.org/
2445 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2447 S:      Maintained
2448 F:      Documentation/filesystems/btrfs.txt
2449 F:      fs/btrfs/
2450
2451 BTTV VIDEO4LINUX DRIVER
2452 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2453 L:      linux-media@vger.kernel.org
2454 W:      http://linuxtv.org
2455 T:      git git://linuxtv.org/media_tree.git
2456 S:      Odd fixes
2457 F:      Documentation/video4linux/bttv/
2458 F:      drivers/media/pci/bt8xx/bttv*
2459
2460 BUSLOGIC SCSI DRIVER
2461 M:      Khalid Aziz <khalid@gonehiking.org>
2462 L:      linux-scsi@vger.kernel.org
2463 S:      Maintained
2464 F:      drivers/scsi/BusLogic.*
2465 F:      drivers/scsi/FlashPoint.*
2466
2467 C-MEDIA CMI8788 DRIVER
2468 M:      Clemens Ladisch <clemens@ladisch.de>
2469 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2470 T:      git git://git.alsa-project.org/alsa-kernel.git
2471 S:      Maintained
2472 F:      sound/pci/oxygen/
2473
2474 C6X ARCHITECTURE
2475 M:      Mark Salter <msalter@redhat.com>
2476 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2477 L:      linux-c6x-dev@linux-c6x.org
2478 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2479 S:      Maintained
2480 F:      arch/c6x/
2481
2482 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2483 M:      David Howells <dhowells@redhat.com>
2484 L:      linux-cachefs@redhat.com
2485 S:      Supported
2486 F:      Documentation/filesystems/caching/cachefiles.txt
2487 F:      fs/cachefiles/
2488
2489 CADET FM/AM RADIO RECEIVER DRIVER
2490 M:      Hans Verkuil <hverkuil@xs4all.nl>
2491 L:      linux-media@vger.kernel.org
2492 T:      git git://linuxtv.org/media_tree.git
2493 W:      http://linuxtv.org
2494 S:      Maintained
2495 F:      drivers/media/radio/radio-cadet*
2496
2497 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2498 M:      Jonathan Corbet <corbet@lwn.net>
2499 L:      linux-media@vger.kernel.org
2500 T:      git git://linuxtv.org/media_tree.git
2501 S:      Maintained
2502 F:      Documentation/video4linux/cafe_ccic
2503 F:      drivers/media/platform/marvell-ccic/
2504
2505 CAIF NETWORK LAYER
2506 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2507 L:      netdev@vger.kernel.org
2508 S:      Supported
2509 F:      Documentation/networking/caif/
2510 F:      drivers/net/caif/
2511 F:      include/uapi/linux/caif/
2512 F:      include/net/caif/
2513 F:      net/caif/
2514
2515 CALGARY x86-64 IOMMU
2516 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2517 M:      "Jon D. Mason" <jdmason@kudzu.us>
2518 L:      discuss@x86-64.org
2519 S:      Maintained
2520 F:      arch/x86/kernel/pci-calgary_64.c
2521 F:      arch/x86/kernel/tce_64.c
2522 F:      arch/x86/include/asm/calgary.h
2523 F:      arch/x86/include/asm/tce.h
2524
2525 CAN NETWORK LAYER
2526 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2527 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2528 L:      linux-can@vger.kernel.org
2529 W:      https://github.com/linux-can
2530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2532 S:      Maintained
2533 F:      Documentation/networking/can.txt
2534 F:      net/can/
2535 F:      include/linux/can/core.h
2536 F:      include/uapi/linux/can.h
2537 F:      include/uapi/linux/can/bcm.h
2538 F:      include/uapi/linux/can/raw.h
2539 F:      include/uapi/linux/can/gw.h
2540
2541 CAN NETWORK DRIVERS
2542 M:      Wolfgang Grandegger <wg@grandegger.com>
2543 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2544 L:      linux-can@vger.kernel.org
2545 W:      https://github.com/linux-can
2546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2548 S:      Maintained
2549 F:      drivers/net/can/
2550 F:      include/linux/can/dev.h
2551 F:      include/linux/can/platform/
2552 F:      include/uapi/linux/can/error.h
2553 F:      include/uapi/linux/can/netlink.h
2554
2555 CAPABILITIES
2556 M:      Serge Hallyn <serge.hallyn@canonical.com>
2557 L:      linux-security-module@vger.kernel.org
2558 S:      Supported
2559 F:      include/linux/capability.h
2560 F:      include/uapi/linux/capability.h
2561 F:      security/commoncap.c
2562 F:      kernel/capability.c
2563
2564 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2565 M:      Kevin Tsai <ktsai@capellamicro.com>
2566 S:      Maintained
2567 F:      drivers/iio/light/cm*
2568 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2569
2570 CAVIUM LIQUIDIO NETWORK DRIVER
2571 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2572 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2573 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2574 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2575 L:     netdev@vger.kernel.org
2576 W:     http://www.cavium.com
2577 S:     Supported
2578 F:     drivers/net/ethernet/cavium/liquidio/
2579
2580 CC2520 IEEE-802.15.4 RADIO DRIVER
2581 M:      Varka Bhadram <varkabhadram@gmail.com>
2582 L:      linux-wpan@vger.kernel.org
2583 S:      Maintained
2584 F:      drivers/net/ieee802154/cc2520.c
2585 F:      include/linux/spi/cc2520.h
2586 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2587
2588 CELL BROADBAND ENGINE ARCHITECTURE
2589 M:      Arnd Bergmann <arnd@arndb.de>
2590 L:      linuxppc-dev@lists.ozlabs.org
2591 W:      http://www.ibm.com/developerworks/power/cell/
2592 S:      Supported
2593 F:      arch/powerpc/include/asm/cell*.h
2594 F:      arch/powerpc/include/asm/spu*.h
2595 F:      arch/powerpc/include/uapi/asm/spu*.h
2596 F:      arch/powerpc/oprofile/*cell*
2597 F:      arch/powerpc/platforms/cell/
2598
2599 CEPH COMMON CODE (LIBCEPH)
2600 M:      Ilya Dryomov <idryomov@gmail.com>
2601 M:      "Yan, Zheng" <zyan@redhat.com>
2602 M:      Sage Weil <sage@redhat.com>
2603 L:      ceph-devel@vger.kernel.org
2604 W:      http://ceph.com/
2605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2606 T:      git git://github.com/ceph/ceph-client.git
2607 S:      Supported
2608 F:      net/ceph/
2609 F:      include/linux/ceph/
2610 F:      include/linux/crush/
2611
2612 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2613 M:      "Yan, Zheng" <zyan@redhat.com>
2614 M:      Sage Weil <sage@redhat.com>
2615 M:      Ilya Dryomov <idryomov@gmail.com>
2616 L:      ceph-devel@vger.kernel.org
2617 W:      http://ceph.com/
2618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2619 T:      git git://github.com/ceph/ceph-client.git
2620 S:      Supported
2621 F:      Documentation/filesystems/ceph.txt
2622 F:      fs/ceph/
2623
2624 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2625 L:      linux-usb@vger.kernel.org
2626 S:      Orphan
2627 F:      Documentation/usb/WUSB-Design-overview.txt
2628 F:      Documentation/usb/wusb-cbaf
2629 F:      drivers/usb/host/hwa-hc.c
2630 F:      drivers/usb/host/whci/
2631 F:      drivers/usb/wusbcore/
2632 F:      include/linux/usb/wusb*
2633
2634 CFAG12864B LCD DRIVER
2635 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2636 W:      http://miguelojeda.es/auxdisplay.htm
2637 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2638 S:      Maintained
2639 F:      drivers/auxdisplay/cfag12864b.c
2640 F:      include/linux/cfag12864b.h
2641
2642 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2643 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2644 W:      http://miguelojeda.es/auxdisplay.htm
2645 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2646 S:      Maintained
2647 F:      drivers/auxdisplay/cfag12864bfb.c
2648 F:      include/linux/cfag12864b.h
2649
2650 CFG80211 and NL80211
2651 M:      Johannes Berg <johannes@sipsolutions.net>
2652 L:      linux-wireless@vger.kernel.org
2653 W:      http://wireless.kernel.org/
2654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2656 S:      Maintained
2657 F:      include/uapi/linux/nl80211.h
2658 F:      include/net/cfg80211.h
2659 F:      net/wireless/*
2660 X:      net/wireless/wext*
2661
2662 CHAR and MISC DRIVERS
2663 M:      Arnd Bergmann <arnd@arndb.de>
2664 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2666 S:      Supported
2667 F:      drivers/char/*
2668 F:      drivers/misc/*
2669 F:      include/linux/miscdevice.h
2670
2671 CHECKPATCH
2672 M:      Andy Whitcroft <apw@canonical.com>
2673 M:      Joe Perches <joe@perches.com>
2674 S:      Maintained
2675 F:      scripts/checkpatch.pl
2676
2677 CHINESE DOCUMENTATION
2678 M:      Harry Wei <harryxiyou@gmail.com>
2679 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2680 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2681 S:      Maintained
2682 F:      Documentation/zh_CN/
2683
2684 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2685 M:      Peter Chen <Peter.Chen@freescale.com>
2686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2687 L:      linux-usb@vger.kernel.org
2688 S:      Maintained
2689 F:      drivers/usb/chipidea/
2690
2691 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2692 M:      Hans de Goede <hdegoede@redhat.com>
2693 L:      linux-input@vger.kernel.org
2694 S:      Maintained
2695 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2696 F:      drivers/input/touchscreen/chipone_icn8318.c
2697
2698 CHROME HARDWARE PLATFORM SUPPORT
2699 M:      Olof Johansson <olof@lixom.net>
2700 S:      Maintained
2701 F:      drivers/platform/chrome/
2702
2703 CISCO VIC ETHERNET NIC DRIVER
2704 M:      Christian Benvenuti <benve@cisco.com>
2705 M:      Sujith Sankar <ssujith@cisco.com>
2706 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2707 M:      Neel Patel <neepatel@cisco.com>
2708 S:      Supported
2709 F:      drivers/net/ethernet/cisco/enic/
2710
2711 CISCO VIC LOW LATENCY NIC DRIVER
2712 M:      Upinder Malhi <umalhi@cisco.com>
2713 S:      Supported
2714 F:      drivers/infiniband/hw/usnic
2715
2716 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2717 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2718 L:      netdev@vger.kernel.org
2719 S:      Maintained
2720 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2721
2722 CIRRUS LOGIC AUDIO CODEC DRIVERS
2723 M:      Brian Austin <brian.austin@cirrus.com>
2724 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2725 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2726 S:      Maintained
2727 F:      sound/soc/codecs/cs*
2728
2729 CLEANCACHE API
2730 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2731 L:      linux-kernel@vger.kernel.org
2732 S:      Maintained
2733 F:      mm/cleancache.c
2734 F:      include/linux/cleancache.h
2735
2736 CLK API
2737 M:      Russell King <linux@arm.linux.org.uk>
2738 L:      linux-clk@vger.kernel.org
2739 S:      Maintained
2740 F:      include/linux/clk.h
2741
2742 CLOCKSOURCE, CLOCKEVENT DRIVERS
2743 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2744 M:      Thomas Gleixner <tglx@linutronix.de>
2745 L:      linux-kernel@vger.kernel.org
2746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2747 S:      Supported
2748 F:      drivers/clocksource
2749
2750 CISCO FCOE HBA DRIVER
2751 M:      Hiral Patel <hiralpat@cisco.com>
2752 M:      Suma Ramars <sramars@cisco.com>
2753 M:      Brian Uchino <buchino@cisco.com>
2754 L:      linux-scsi@vger.kernel.org
2755 S:      Supported
2756 F:      drivers/scsi/fnic/
2757
2758 CISCO SCSI HBA DRIVER
2759 M:      Narsimhulu Musini <nmusini@cisco.com>
2760 M:      Sesidhar Baddela <sebaddel@cisco.com>
2761 L:      linux-scsi@vger.kernel.org
2762 S:      Supported
2763 F:      drivers/scsi/snic/
2764
2765 CMPC ACPI DRIVER
2766 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2767 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2768 L:      platform-driver-x86@vger.kernel.org
2769 S:      Supported
2770 F:      drivers/platform/x86/classmate-laptop.c
2771
2772 COBALT MEDIA DRIVER
2773 M:      Hans Verkuil <hans.verkuil@cisco.com>
2774 L:      linux-media@vger.kernel.org
2775 T:      git git://linuxtv.org/media_tree.git
2776 W:      http://linuxtv.org
2777 S:      Supported
2778 F:      drivers/media/pci/cobalt/
2779
2780 COCCINELLE/Semantic Patches (SmPL)
2781 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2782 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2783 M:      Nicolas Palix <nicolas.palix@imag.fr>
2784 M:      Michal Marek <mmarek@suse.com>
2785 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2787 W:      http://coccinelle.lip6.fr/
2788 S:      Supported
2789 F:      Documentation/coccinelle.txt
2790 F:      scripts/coccinelle/
2791 F:      scripts/coccicheck
2792
2793 CODA FILE SYSTEM
2794 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2795 M:      coda@cs.cmu.edu
2796 L:      codalist@coda.cs.cmu.edu
2797 W:      http://www.coda.cs.cmu.edu/
2798 S:      Maintained
2799 F:      Documentation/filesystems/coda.txt
2800 F:      fs/coda/
2801 F:      include/linux/coda*.h
2802 F:      include/uapi/linux/coda*.h
2803
2804 CODA V4L2 MEM2MEM DRIVER
2805 M:      Philipp Zabel <p.zabel@pengutronix.de>
2806 L:      linux-media@vger.kernel.org
2807 S:      Maintained
2808 F:      Documentation/devicetree/bindings/media/coda.txt
2809 F:      drivers/media/platform/coda/
2810
2811 COMMON CLK FRAMEWORK
2812 M:      Michael Turquette <mturquette@baylibre.com>
2813 M:      Stephen Boyd <sboyd@codeaurora.org>
2814 L:      linux-clk@vger.kernel.org
2815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2816 S:      Maintained
2817 F:      drivers/clk/
2818 X:      drivers/clk/clkdev.c
2819 F:      include/linux/clk-pr*
2820 F:      include/linux/clk/
2821
2822 COMMON INTERNET FILE SYSTEM (CIFS)
2823 M:      Steve French <sfrench@samba.org>
2824 L:      linux-cifs@vger.kernel.org
2825 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2826 W:      http://linux-cifs.samba.org/
2827 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2828 S:      Supported
2829 F:      Documentation/filesystems/cifs/
2830 F:      fs/cifs/
2831
2832 COMPACTPCI HOTPLUG CORE
2833 M:      Scott Murray <scott@spiteful.org>
2834 L:      linux-pci@vger.kernel.org
2835 S:      Maintained
2836 F:      drivers/pci/hotplug/cpci_hotplug*
2837
2838 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2839 M:      Scott Murray <scott@spiteful.org>
2840 L:      linux-pci@vger.kernel.org
2841 S:      Maintained
2842 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2843
2844 COMPACTPCI HOTPLUG GENERIC DRIVER
2845 M:      Scott Murray <scott@spiteful.org>
2846 L:      linux-pci@vger.kernel.org
2847 S:      Maintained
2848 F:      drivers/pci/hotplug/cpcihp_generic.c
2849
2850 COMPAL LAPTOP SUPPORT
2851 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2852 L:      platform-driver-x86@vger.kernel.org
2853 S:      Maintained
2854 F:      drivers/platform/x86/compal-laptop.c
2855
2856 CONEXANT ACCESSRUNNER USB DRIVER
2857 M:      Simon Arlott <cxacru@fire.lp0.eu>
2858 L:      accessrunner-general@lists.sourceforge.net
2859 W:      http://accessrunner.sourceforge.net/
2860 S:      Maintained
2861 F:      drivers/usb/atm/cxacru.c
2862
2863 CONFIGFS
2864 M:      Joel Becker <jlbec@evilplan.org>
2865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2866 S:      Supported
2867 F:      fs/configfs/
2868 F:      include/linux/configfs.h
2869
2870 CONNECTOR
2871 M:      Evgeniy Polyakov <zbr@ioremap.net>
2872 L:      netdev@vger.kernel.org
2873 S:      Maintained
2874 F:      drivers/connector/
2875
2876 CONTROL GROUP (CGROUP)
2877 M:      Tejun Heo <tj@kernel.org>
2878 M:      Li Zefan <lizefan@huawei.com>
2879 M:      Johannes Weiner <hannes@cmpxchg.org>
2880 L:      cgroups@vger.kernel.org
2881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2882 S:      Maintained
2883 F:      Documentation/cgroups/
2884 F:      include/linux/cgroup*
2885 F:      kernel/cgroup*
2886
2887 CONTROL GROUP - CPUSET
2888 M:      Li Zefan <lizefan@huawei.com>
2889 L:      cgroups@vger.kernel.org
2890 W:      http://www.bullopensource.org/cpuset/
2891 W:      http://oss.sgi.com/projects/cpusets/
2892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2893 S:      Maintained
2894 F:      Documentation/cgroups/cpusets.txt
2895 F:      include/linux/cpuset.h
2896 F:      kernel/cpuset.c
2897
2898 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2899 M:      Johannes Weiner <hannes@cmpxchg.org>
2900 M:      Michal Hocko <mhocko@kernel.org>
2901 L:      cgroups@vger.kernel.org
2902 L:      linux-mm@kvack.org
2903 S:      Maintained
2904 F:      mm/memcontrol.c
2905 F:      mm/swap_cgroup.c
2906
2907 CORETEMP HARDWARE MONITORING DRIVER
2908 M:      Fenghua Yu <fenghua.yu@intel.com>
2909 L:      lm-sensors@lm-sensors.org
2910 S:      Maintained
2911 F:      Documentation/hwmon/coretemp
2912 F:      drivers/hwmon/coretemp.c
2913
2914 COSA/SRP SYNC SERIAL DRIVER
2915 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2916 W:      http://www.fi.muni.cz/~kas/cosa/
2917 S:      Maintained
2918 F:      drivers/net/wan/cosa*
2919
2920 CPMAC ETHERNET DRIVER
2921 M:      Florian Fainelli <florian@openwrt.org>
2922 L:      netdev@vger.kernel.org
2923 S:      Maintained
2924 F:      drivers/net/ethernet/ti/cpmac.c
2925
2926 CPU FREQUENCY DRIVERS
2927 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2928 M:      Viresh Kumar <viresh.kumar@linaro.org>
2929 L:      linux-pm@vger.kernel.org
2930 S:      Maintained
2931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2932 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2933 F:      drivers/cpufreq/
2934 F:      include/linux/cpufreq.h
2935
2936 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2937 M:      Viresh Kumar <viresh.kumar@linaro.org>
2938 M:      Sudeep Holla <sudeep.holla@arm.com>
2939 L:      linux-pm@vger.kernel.org
2940 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2941 S:      Maintained
2942 F:      drivers/cpufreq/arm_big_little.h
2943 F:      drivers/cpufreq/arm_big_little.c
2944 F:      drivers/cpufreq/arm_big_little_dt.c
2945
2946 CPUIDLE DRIVER - ARM BIG LITTLE
2947 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2948 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2949 L:      linux-pm@vger.kernel.org
2950 L:      linux-arm-kernel@lists.infradead.org
2951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2952 S:      Maintained
2953 F:      drivers/cpuidle/cpuidle-big_little.c
2954
2955 CPUIDLE DRIVER - ARM EXYNOS
2956 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2957 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2958 M:      Kukjin Kim <kgene@kernel.org>
2959 L:      linux-pm@vger.kernel.org
2960 L:      linux-samsung-soc@vger.kernel.org
2961 S:      Supported
2962 F:      drivers/cpuidle/cpuidle-exynos.c
2963 F:      arch/arm/mach-exynos/pm.c
2964
2965 CPUIDLE DRIVERS
2966 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2967 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2968 L:      linux-pm@vger.kernel.org
2969 S:      Maintained
2970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2971 F:      drivers/cpuidle/*
2972 F:      include/linux/cpuidle.h
2973
2974 CPUID/MSR DRIVER
2975 M:      "H. Peter Anvin" <hpa@zytor.com>
2976 S:      Maintained
2977 F:      arch/x86/kernel/cpuid.c
2978 F:      arch/x86/kernel/msr.c
2979
2980 CPU POWER MONITORING SUBSYSTEM
2981 M:      Thomas Renninger <trenn@suse.com>
2982 L:      linux-pm@vger.kernel.org
2983 S:      Maintained
2984 F:      tools/power/cpupower/
2985
2986 CRAMFS FILESYSTEM
2987 W:      http://sourceforge.net/projects/cramfs/
2988 S:      Orphan / Obsolete
2989 F:      Documentation/filesystems/cramfs.txt
2990 F:      fs/cramfs/
2991
2992 CRIS PORT
2993 M:      Mikael Starvik <starvik@axis.com>
2994 M:      Jesper Nilsson <jesper.nilsson@axis.com>
2995 L:      linux-cris-kernel@axis.com
2996 W:      http://developer.axis.com
2997 S:      Maintained
2998 F:      arch/cris/
2999 F:      drivers/tty/serial/crisv10.*
3000
3001 CRYPTO API
3002 M:      Herbert Xu <herbert@gondor.apana.org.au>
3003 M:      "David S. Miller" <davem@davemloft.net>
3004 L:      linux-crypto@vger.kernel.org
3005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3006 S:      Maintained
3007 F:      Documentation/crypto/
3008 F:      Documentation/DocBook/crypto-API.tmpl
3009 F:      arch/*/crypto/
3010 F:      crypto/
3011 F:      drivers/crypto/
3012 F:      include/crypto/
3013
3014 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3015 M:      Neil Horman <nhorman@tuxdriver.com>
3016 L:      linux-crypto@vger.kernel.org
3017 S:      Maintained
3018 F:      crypto/ansi_cprng.c
3019 F:      crypto/rng.c
3020
3021 CS5535 Audio ALSA driver
3022 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3023 S:      Maintained
3024 F:      sound/pci/cs5535audio/
3025
3026 CW1200 WLAN driver
3027 M:      Solomon Peachy <pizza@shaftnet.org>
3028 S:      Maintained
3029 F:      drivers/net/wireless/cw1200/
3030
3031 CX18 VIDEO4LINUX DRIVER
3032 M:      Andy Walls <awalls@md.metrocast.net>
3033 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3034 L:      linux-media@vger.kernel.org
3035 T:      git git://linuxtv.org/media_tree.git
3036 W:      http://linuxtv.org
3037 W:      http://www.ivtvdriver.org/index.php/Cx18
3038 S:      Maintained
3039 F:      Documentation/video4linux/cx18.txt
3040 F:      drivers/media/pci/cx18/
3041 F:      include/uapi/linux/ivtv*
3042
3043 CX2341X MPEG ENCODER HELPER MODULE
3044 M:      Hans Verkuil <hverkuil@xs4all.nl>
3045 L:      linux-media@vger.kernel.org
3046 T:      git git://linuxtv.org/media_tree.git
3047 W:      http://linuxtv.org
3048 S:      Maintained
3049 F:      drivers/media/common/cx2341x*
3050 F:      include/media/cx2341x*
3051
3052 CX24120 MEDIA DRIVER
3053 M:      Jemma Denson <jdenson@gmail.com>
3054 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3055 L:      linux-media@vger.kernel.org
3056 W:      http://linuxtv.org/
3057 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3058 S:      Maintained
3059 F:      drivers/media/dvb-frontends/cx24120*
3060
3061 CX88 VIDEO4LINUX DRIVER
3062 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3063 L:      linux-media@vger.kernel.org
3064 W:      http://linuxtv.org
3065 T:      git git://linuxtv.org/media_tree.git
3066 S:      Odd fixes
3067 F:      Documentation/video4linux/cx88/
3068 F:      drivers/media/pci/cx88/
3069
3070 CXD2820R MEDIA DRIVER
3071 M:      Antti Palosaari <crope@iki.fi>
3072 L:      linux-media@vger.kernel.org
3073 W:      http://linuxtv.org/
3074 W:      http://palosaari.fi/linux/
3075 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3076 T:      git git://linuxtv.org/anttip/media_tree.git
3077 S:      Maintained
3078 F:      drivers/media/dvb-frontends/cxd2820r*
3079
3080 CXGB3 ETHERNET DRIVER (CXGB3)
3081 M:      Santosh Raspatur <santosh@chelsio.com>
3082 L:      netdev@vger.kernel.org
3083 W:      http://www.chelsio.com
3084 S:      Supported
3085 F:      drivers/net/ethernet/chelsio/cxgb3/
3086
3087 CXGB3 ISCSI DRIVER (CXGB3I)
3088 M:      Karen Xie <kxie@chelsio.com>
3089 L:      linux-scsi@vger.kernel.org
3090 W:      http://www.chelsio.com
3091 S:      Supported
3092 F:      drivers/scsi/cxgbi/cxgb3i
3093
3094 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3095 M:      Steve Wise <swise@chelsio.com>
3096 L:      linux-rdma@vger.kernel.org
3097 W:      http://www.openfabrics.org
3098 S:      Supported
3099 F:      drivers/infiniband/hw/cxgb3/
3100
3101 CXGB4 ETHERNET DRIVER (CXGB4)
3102 M:      Hariprasad S <hariprasad@chelsio.com>
3103 L:      netdev@vger.kernel.org
3104 W:      http://www.chelsio.com
3105 S:      Supported
3106 F:      drivers/net/ethernet/chelsio/cxgb4/
3107
3108 CXGB4 ISCSI DRIVER (CXGB4I)
3109 M:      Karen Xie <kxie@chelsio.com>
3110 L:      linux-scsi@vger.kernel.org
3111 W:      http://www.chelsio.com
3112 S:      Supported
3113 F:      drivers/scsi/cxgbi/cxgb4i
3114
3115 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3116 M:      Steve Wise <swise@chelsio.com>
3117 L:      linux-rdma@vger.kernel.org
3118 W:      http://www.openfabrics.org
3119 S:      Supported
3120 F:      drivers/infiniband/hw/cxgb4/
3121
3122 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3123 M:      Casey Leedom <leedom@chelsio.com>
3124 L:      netdev@vger.kernel.org
3125 W:      http://www.chelsio.com
3126 S:      Supported
3127 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3128
3129 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3130 M:      Ian Munsie <imunsie@au1.ibm.com>
3131 M:      Michael Neuling <mikey@neuling.org>
3132 L:      linuxppc-dev@lists.ozlabs.org
3133 S:      Supported
3134 F:      drivers/misc/cxl/
3135 F:      include/misc/cxl*
3136 F:      include/uapi/misc/cxl.h
3137 F:      Documentation/powerpc/cxl.txt
3138 F:      Documentation/powerpc/cxl.txt
3139 F:      Documentation/ABI/testing/sysfs-class-cxl
3140
3141 STMMAC ETHERNET DRIVER
3142 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3143 L:      netdev@vger.kernel.org
3144 W:      http://www.stlinux.com
3145 S:      Supported
3146 F:      drivers/net/ethernet/stmicro/stmmac/
3147
3148 CYBERPRO FB DRIVER
3149 M:      Russell King <linux@arm.linux.org.uk>
3150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3151 W:      http://www.arm.linux.org.uk/
3152 S:      Maintained
3153 F:      drivers/video/fbdev/cyber2000fb.*
3154
3155 CYCLADES ASYNC MUX DRIVER
3156 W:      http://www.cyclades.com/
3157 S:      Orphan
3158 F:      drivers/tty/cyclades.c
3159 F:      include/linux/cyclades.h
3160 F:      include/uapi/linux/cyclades.h
3161
3162 CYCLADES PC300 DRIVER
3163 W:      http://www.cyclades.com/
3164 S:      Orphan
3165 F:      drivers/net/wan/pc300*
3166
3167 CYPRESS_FIRMWARE MEDIA DRIVER
3168 M:      Antti Palosaari <crope@iki.fi>
3169 L:      linux-media@vger.kernel.org
3170 W:      http://linuxtv.org/
3171 W:      http://palosaari.fi/linux/
3172 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3173 T:      git git://linuxtv.org/anttip/media_tree.git
3174 S:      Maintained
3175 F:      drivers/media/common/cypress_firmware*
3176
3177 CYTTSP TOUCHSCREEN DRIVER
3178 M:      Ferruh Yigit <fery@cypress.com>
3179 L:      linux-input@vger.kernel.org
3180 S:      Supported
3181 F:      drivers/input/touchscreen/cyttsp*
3182 F:      include/linux/input/cyttsp.h
3183
3184 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3185 M:      Joshua Kinard <kumba@gentoo.org>
3186 S:      Maintained
3187 F:      drivers/rtc/rtc-ds1685.c
3188 F:      include/linux/rtc/ds1685.h
3189
3190 DAMA SLAVE for AX.25
3191 M:      Joerg Reuter <jreuter@yaina.de>
3192 W:      http://yaina.de/jreuter/
3193 W:      http://www.qsl.net/dl1bke/
3194 L:      linux-hams@vger.kernel.org
3195 S:      Maintained
3196 F:      net/ax25/af_ax25.c
3197 F:      net/ax25/ax25_dev.c
3198 F:      net/ax25/ax25_ds_*
3199 F:      net/ax25/ax25_in.c
3200 F:      net/ax25/ax25_out.c
3201 F:      net/ax25/ax25_timer.c
3202 F:      net/ax25/sysctl_net_ax25.c
3203
3204 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3205 L:      netdev@vger.kernel.org
3206 S:      Orphan
3207 F:      Documentation/networking/dmfe.txt
3208 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3209
3210 DC390/AM53C974 SCSI driver
3211 M:      Hannes Reinecke <hare@suse.com>
3212 L:      linux-scsi@vger.kernel.org
3213 S:      Maintained
3214 F:      drivers/scsi/am53c974.c
3215
3216 DC395x SCSI driver
3217 M:      Oliver Neukum <oliver@neukum.org>
3218 M:      Ali Akcaagac <aliakc@web.de>
3219 M:      Jamie Lenehan <lenehan@twibble.org>
3220 L:      dc395x@twibble.org
3221 W:      http://twibble.org/dist/dc395x/
3222 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3223 S:      Maintained
3224 F:      Documentation/scsi/dc395x.txt
3225 F:      drivers/scsi/dc395x.*
3226
3227 DCCP PROTOCOL
3228 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3229 L:      dccp@vger.kernel.org
3230 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3231 S:      Maintained
3232 F:      include/linux/dccp.h
3233 F:      include/uapi/linux/dccp.h
3234 F:      include/linux/tfrc.h
3235 F:      net/dccp/
3236
3237 DECnet NETWORK LAYER
3238 W:      http://linux-decnet.sourceforge.net
3239 L:      linux-decnet-user@lists.sourceforge.net
3240 S:      Orphan
3241 F:      Documentation/networking/decnet.txt
3242 F:      net/decnet/
3243
3244 DECSTATION PLATFORM SUPPORT
3245 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3246 L:      linux-mips@linux-mips.org
3247 W:      http://www.linux-mips.org/wiki/DECstation
3248 S:      Maintained
3249 F:      arch/mips/dec/
3250 F:      arch/mips/include/asm/dec/
3251 F:      arch/mips/include/asm/mach-dec/
3252
3253 DEFXX FDDI NETWORK DRIVER
3254 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3255 S:      Maintained
3256 F:      drivers/net/fddi/defxx.*
3257
3258 DELL LAPTOP DRIVER
3259 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3260 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3261 L:      platform-driver-x86@vger.kernel.org
3262 S:      Maintained
3263 F:      drivers/platform/x86/dell-laptop.c
3264
3265 DELL LAPTOP RBTN DRIVER
3266 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3267 S:      Maintained
3268 F:      drivers/platform/x86/dell-rbtn.*
3269
3270 DELL LAPTOP FREEFALL DRIVER
3271 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3272 S:      Maintained
3273 F:      drivers/platform/x86/dell-smo8800.c
3274
3275 DELL LAPTOP SMM DRIVER
3276 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3277 S:      Maintained
3278 F:      drivers/hwmon/dell-smm-hwmon.c
3279 F:      include/uapi/linux/i8k.h
3280
3281 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3282 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3283 S:      Maintained
3284 F:      Documentation/dcdbas.txt
3285 F:      drivers/firmware/dcdbas.*
3286
3287 DELL WMI EXTRAS DRIVER
3288 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3289 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3290 S:      Maintained
3291 F:      drivers/platform/x86/dell-wmi.c
3292
3293 DESIGNWARE USB2 DRD IP DRIVER
3294 M:      John Youn <johnyoun@synopsys.com>
3295 L:      linux-usb@vger.kernel.org
3296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3297 S:      Maintained
3298 F:      drivers/usb/dwc2/
3299
3300 DESIGNWARE USB3 DRD IP DRIVER
3301 M:      Felipe Balbi <balbi@ti.com>
3302 L:      linux-usb@vger.kernel.org
3303 L:      linux-omap@vger.kernel.org
3304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3305 S:      Maintained
3306 F:      drivers/usb/dwc3/
3307
3308 DEVICE COREDUMP (DEV_COREDUMP)
3309 M:      Johannes Berg <johannes@sipsolutions.net>
3310 L:      linux-kernel@vger.kernel.org
3311 S:      Maintained
3312 F:      drivers/base/devcoredump.c
3313 F:      include/linux/devcoredump.h
3314
3315 DEVICE FREQUENCY (DEVFREQ)
3316 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3317 M:      Kyungmin Park <kyungmin.park@samsung.com>
3318 L:      linux-pm@vger.kernel.org
3319 S:      Maintained
3320 F:      drivers/devfreq/
3321
3322 DEVICE NUMBER REGISTRY
3323 M:      Torben Mathiasen <device@lanana.org>
3324 W:      http://lanana.org/docs/device-list/index.html
3325 S:      Maintained
3326
3327 DEVICE-MAPPER  (LVM)
3328 M:      Alasdair Kergon <agk@redhat.com>
3329 M:      Mike Snitzer <snitzer@redhat.com>
3330 M:      dm-devel@redhat.com
3331 L:      dm-devel@redhat.com
3332 W:      http://sources.redhat.com/dm
3333 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3335 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3336 S:      Maintained
3337 F:      Documentation/device-mapper/
3338 F:      drivers/md/dm*
3339 F:      drivers/md/persistent-data/
3340 F:      include/linux/device-mapper.h
3341 F:      include/linux/dm-*.h
3342 F:      include/uapi/linux/dm-*.h
3343
3344 DIALOG SEMICONDUCTOR DRIVERS
3345 M:      Support Opensource <support.opensource@diasemi.com>
3346 W:      http://www.dialog-semiconductor.com/products
3347 S:      Supported
3348 F:      Documentation/hwmon/da90??
3349 F:      drivers/gpio/gpio-da90??.c
3350 F:      drivers/hwmon/da90??-hwmon.c
3351 F:      drivers/iio/adc/da91??-*.c
3352 F:      drivers/input/misc/da90??_onkey.c
3353 F:      drivers/input/touchscreen/da9052_tsi.c
3354 F:      drivers/leds/leds-da90??.c
3355 F:      drivers/mfd/da903x.c
3356 F:      drivers/mfd/da90??-*.c
3357 F:      drivers/mfd/da91??-*.c
3358 F:      drivers/power/da9052-battery.c
3359 F:      drivers/power/da91??-*.c
3360 F:      drivers/regulator/da903x.c
3361 F:      drivers/regulator/da9???-regulator.[ch]
3362 F:      drivers/rtc/rtc-da90??.c
3363 F:      drivers/video/backlight/da90??_bl.c
3364 F:      drivers/watchdog/da90??_wdt.c
3365 F:      include/linux/mfd/da903x.h
3366 F:      include/linux/mfd/da9052/
3367 F:      include/linux/mfd/da9055/
3368 F:      include/linux/mfd/da9063/
3369 F:      include/linux/mfd/da9150/
3370 F:      include/sound/da[79]*.h
3371 F:      sound/soc/codecs/da[79]*.[ch]
3372
3373 DIGI NEO AND CLASSIC PCI PRODUCTS
3374 M:      Lidza Louina <lidza.louina@gmail.com>
3375 M:      Mark Hounschell <markh@compro.net>
3376 L:      driverdev-devel@linuxdriverproject.org
3377 S:      Maintained
3378 F:      drivers/staging/dgnc/
3379
3380 DIGI EPCA PCI PRODUCTS
3381 M:      Lidza Louina <lidza.louina@gmail.com>
3382 M:      Mark Hounschell <markh@compro.net>
3383 M:      Daeseok Youn <daeseok.youn@gmail.com>
3384 L:      driverdev-devel@linuxdriverproject.org
3385 S:      Maintained
3386 F:      drivers/staging/dgap/
3387
3388 DIOLAN U2C-12 I2C DRIVER
3389 M:      Guenter Roeck <linux@roeck-us.net>
3390 L:      linux-i2c@vger.kernel.org
3391 S:      Maintained
3392 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3393
3394 DIRECT ACCESS (DAX)
3395 M:      Matthew Wilcox <willy@linux.intel.com>
3396 L:      linux-fsdevel@vger.kernel.org
3397 S:      Supported
3398 F:      fs/dax.c
3399
3400 DIRECTORY NOTIFICATION (DNOTIFY)
3401 M:      Eric Paris <eparis@parisplace.org>
3402 S:      Maintained
3403 F:      Documentation/filesystems/dnotify.txt
3404 F:      fs/notify/dnotify/
3405 F:      include/linux/dnotify.h
3406
3407 DISK GEOMETRY AND PARTITION HANDLING
3408 M:      Andries Brouwer <aeb@cwi.nl>
3409 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3410 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3411 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3412 S:      Maintained
3413
3414 DISKQUOTA
3415 M:      Jan Kara <jack@suse.com>
3416 S:      Maintained
3417 F:      Documentation/filesystems/quota.txt
3418 F:      fs/quota/
3419 F:      include/linux/quota*.h
3420 F:      include/uapi/linux/quota*.h
3421
3422 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3423 M:      Bernie Thompson <bernie@plugable.com>
3424 L:      linux-fbdev@vger.kernel.org
3425 S:      Maintained
3426 W:      http://plugable.com/category/projects/udlfb/
3427 F:      drivers/video/fbdev/udlfb.c
3428 F:      include/video/udlfb.h
3429 F:      Documentation/fb/udlfb.txt
3430
3431 DISTRIBUTED LOCK MANAGER (DLM)
3432 M:      Christine Caulfield <ccaulfie@redhat.com>
3433 M:      David Teigland <teigland@redhat.com>
3434 L:      cluster-devel@redhat.com
3435 W:      http://sources.redhat.com/cluster/
3436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3437 S:      Supported
3438 F:      fs/dlm/
3439
3440 DMA BUFFER SHARING FRAMEWORK
3441 M:      Sumit Semwal <sumit.semwal@linaro.org>
3442 S:      Maintained
3443 L:      linux-media@vger.kernel.org
3444 L:      dri-devel@lists.freedesktop.org
3445 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3446 F:      drivers/dma-buf/
3447 F:      include/linux/dma-buf*
3448 F:      include/linux/reservation.h
3449 F:      include/linux/*fence.h
3450 F:      Documentation/dma-buf-sharing.txt
3451 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3452
3453 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3454 M:      Vinod Koul <vinod.koul@intel.com>
3455 L:      dmaengine@vger.kernel.org
3456 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3457 S:      Maintained
3458 F:      drivers/dma/
3459 F:      include/linux/dmaengine.h
3460 F:      Documentation/dmaengine/
3461 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3462
3463 DME1737 HARDWARE MONITOR DRIVER
3464 M:      Juerg Haefliger <juergh@gmail.com>
3465 L:      lm-sensors@lm-sensors.org
3466 S:      Maintained
3467 F:      Documentation/hwmon/dme1737
3468 F:      drivers/hwmon/dme1737.c
3469
3470 DMI/SMBIOS SUPPORT
3471 M:      Jean Delvare <jdelvare@suse.com>
3472 S:      Maintained
3473 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3474 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3475 F:      drivers/firmware/dmi-id.c
3476 F:      drivers/firmware/dmi_scan.c
3477 F:      include/linux/dmi.h
3478
3479 DOCUMENTATION
3480 M:      Jonathan Corbet <corbet@lwn.net>
3481 L:      linux-doc@vger.kernel.org
3482 S:      Maintained
3483 F:      Documentation/
3484 X:      Documentation/ABI/
3485 X:      Documentation/devicetree/
3486 X:      Documentation/acpi
3487 X:      Documentation/power
3488 X:      Documentation/spi
3489 X:      Documentation/DocBook/media
3490 T:      git git://git.lwn.net/linux-2.6.git docs-next
3491
3492 DOUBLETALK DRIVER
3493 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3494 L:      blinux-list@redhat.com
3495 S:      Maintained
3496 F:      drivers/char/dtlk.c
3497 F:      include/linux/dtlk.h
3498
3499 DPT_I2O SCSI RAID DRIVER
3500 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3501 L:      linux-scsi@vger.kernel.org
3502 W:      http://www.adaptec.com/
3503 S:      Maintained
3504 F:      drivers/scsi/dpt*
3505 F:      drivers/scsi/dpt/
3506
3507 DRBD DRIVER
3508 P:      Philipp Reisner
3509 P:      Lars Ellenberg
3510 M:      drbd-dev@lists.linbit.com
3511 L:      drbd-user@lists.linbit.com
3512 W:      http://www.drbd.org
3513 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3514 T:      git git://git.drbd.org/drbd-8.3.git
3515 S:      Supported
3516 F:      drivers/block/drbd/
3517 F:      lib/lru_cache.c
3518 F:      Documentation/blockdev/drbd/
3519
3520 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3521 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3523 S:      Supported
3524 F:      Documentation/kobject.txt
3525 F:      drivers/base/
3526 F:      fs/debugfs/
3527 F:      fs/kernfs/
3528 F:      fs/sysfs/
3529 F:      include/linux/debugfs.h
3530 F:      include/linux/kobj*
3531 F:      lib/kobj*
3532
3533 DRM DRIVERS
3534 M:      David Airlie <airlied@linux.ie>
3535 L:      dri-devel@lists.freedesktop.org
3536 T:      git git://people.freedesktop.org/~airlied/linux
3537 S:      Maintained
3538 F:      drivers/gpu/drm/
3539 F:      drivers/gpu/vga/
3540 F:      include/drm/
3541 F:      include/uapi/drm/
3542
3543 RADEON DRM DRIVERS
3544 M:      Alex Deucher <alexander.deucher@amd.com>
3545 M:      Christian König <christian.koenig@amd.com>
3546 L:      dri-devel@lists.freedesktop.org
3547 T:      git git://people.freedesktop.org/~agd5f/linux
3548 S:      Supported
3549 F:      drivers/gpu/drm/radeon/
3550 F:      include/uapi/drm/radeon*
3551
3552 DRM PANEL DRIVERS
3553 M:      Thierry Reding <thierry.reding@gmail.com>
3554 L:      dri-devel@lists.freedesktop.org
3555 T:      git git://anongit.freedesktop.org/tegra/linux.git
3556 S:      Maintained
3557 F:      drivers/gpu/drm/drm_panel.c
3558 F:      drivers/gpu/drm/panel/
3559 F:      include/drm/drm_panel.h
3560 F:      Documentation/devicetree/bindings/panel/
3561
3562 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3563 M:      Daniel Vetter <daniel.vetter@intel.com>
3564 M:      Jani Nikula <jani.nikula@linux.intel.com>
3565 L:      intel-gfx@lists.freedesktop.org
3566 L:      dri-devel@lists.freedesktop.org
3567 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3568 T:      git git://anongit.freedesktop.org/drm-intel
3569 S:      Supported
3570 F:      drivers/gpu/drm/i915/
3571 F:      include/drm/i915*
3572 F:      include/uapi/drm/i915*
3573
3574 DRM DRIVERS FOR EXYNOS
3575 M:      Inki Dae <inki.dae@samsung.com>
3576 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3577 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3578 M:      Kyungmin Park <kyungmin.park@samsung.com>
3579 L:      dri-devel@lists.freedesktop.org
3580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3581 S:      Supported
3582 F:      drivers/gpu/drm/exynos/
3583 F:      include/drm/exynos*
3584 F:      include/uapi/drm/exynos*
3585
3586 DRM DRIVERS FOR FREESCALE DCU
3587 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3588 M:      Alison Wang <alison.wang@freescale.com>
3589 L:      dri-devel@lists.freedesktop.org
3590 S:      Supported
3591 F:      drivers/gpu/drm/fsl-dcu/
3592 F:      Documentation/devicetree/bindings/video/fsl,dcu.txt
3593 F:      Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3594
3595 DRM DRIVERS FOR FREESCALE IMX
3596 M:      Philipp Zabel <p.zabel@pengutronix.de>
3597 L:      dri-devel@lists.freedesktop.org
3598 S:      Maintained
3599 F:      drivers/gpu/drm/imx/
3600 F:      Documentation/devicetree/bindings/drm/imx/
3601
3602 DRM DRIVERS FOR NVIDIA TEGRA
3603 M:      Thierry Reding <thierry.reding@gmail.com>
3604 M:      Terje Bergström <tbergstrom@nvidia.com>
3605 L:      dri-devel@lists.freedesktop.org
3606 L:      linux-tegra@vger.kernel.org
3607 T:      git git://anongit.freedesktop.org/tegra/linux.git
3608 S:      Supported
3609 F:      drivers/gpu/drm/tegra/
3610 F:      drivers/gpu/host1x/
3611 F:      include/linux/host1x.h
3612 F:      include/uapi/drm/tegra_drm.h
3613 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3614
3615 DRM DRIVERS FOR RENESAS
3616 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3617 L:      dri-devel@lists.freedesktop.org
3618 L:      linux-sh@vger.kernel.org
3619 T:      git git://people.freedesktop.org/~airlied/linux
3620 S:      Supported
3621 F:      drivers/gpu/drm/rcar-du/
3622 F:      drivers/gpu/drm/shmobile/
3623 F:      include/linux/platform_data/shmob_drm.h
3624
3625 DRM DRIVERS FOR ROCKCHIP
3626 M:      Mark Yao <mark.yao@rock-chips.com>
3627 L:      dri-devel@lists.freedesktop.org
3628 S:      Maintained
3629 F:      drivers/gpu/drm/rockchip/
3630 F:      Documentation/devicetree/bindings/video/rockchip*
3631
3632 DRM DRIVERS FOR STI
3633 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3634 M:      Vincent Abriou <vincent.abriou@st.com>
3635 L:      dri-devel@lists.freedesktop.org
3636 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3637 S:      Maintained
3638 F:      drivers/gpu/drm/sti
3639 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3640
3641 DSBR100 USB FM RADIO DRIVER
3642 M:      Alexey Klimov <klimov.linux@gmail.com>
3643 L:      linux-media@vger.kernel.org
3644 T:      git git://linuxtv.org/media_tree.git
3645 S:      Maintained
3646 F:      drivers/media/radio/dsbr100.c
3647
3648 DSCC4 DRIVER
3649 M:      Francois Romieu <romieu@fr.zoreil.com>
3650 L:      netdev@vger.kernel.org
3651 S:      Maintained
3652 F:      drivers/net/wan/dscc4.c
3653
3654 DT3155 MEDIA DRIVER
3655 M:      Hans Verkuil <hverkuil@xs4all.nl>
3656 L:      linux-media@vger.kernel.org
3657 T:      git git://linuxtv.org/media_tree.git
3658 W:      http://linuxtv.org
3659 S:      Odd Fixes
3660 F:      drivers/media/pci/dt3155/
3661
3662 DVB_USB_AF9015 MEDIA DRIVER
3663 M:      Antti Palosaari <crope@iki.fi>
3664 L:      linux-media@vger.kernel.org
3665 W:      http://linuxtv.org/
3666 W:      http://palosaari.fi/linux/
3667 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3668 T:      git git://linuxtv.org/anttip/media_tree.git
3669 S:      Maintained
3670 F:      drivers/media/usb/dvb-usb-v2/af9015*
3671
3672 DVB_USB_AF9035 MEDIA DRIVER
3673 M:      Antti Palosaari <crope@iki.fi>
3674 L:      linux-media@vger.kernel.org
3675 W:      http://linuxtv.org/
3676 W:      http://palosaari.fi/linux/
3677 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3678 T:      git git://linuxtv.org/anttip/media_tree.git
3679 S:      Maintained
3680 F:      drivers/media/usb/dvb-usb-v2/af9035*
3681
3682 DVB_USB_ANYSEE MEDIA DRIVER
3683 M:      Antti Palosaari <crope@iki.fi>
3684 L:      linux-media@vger.kernel.org
3685 W:      http://linuxtv.org/
3686 W:      http://palosaari.fi/linux/
3687 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3688 T:      git git://linuxtv.org/anttip/media_tree.git
3689 S:      Maintained
3690 F:      drivers/media/usb/dvb-usb-v2/anysee*
3691
3692 DVB_USB_AU6610 MEDIA DRIVER
3693 M:      Antti Palosaari <crope@iki.fi>
3694 L:      linux-media@vger.kernel.org
3695 W:      http://linuxtv.org/
3696 W:      http://palosaari.fi/linux/
3697 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3698 T:      git git://linuxtv.org/anttip/media_tree.git
3699 S:      Maintained
3700 F:      drivers/media/usb/dvb-usb-v2/au6610*
3701
3702 DVB_USB_CE6230 MEDIA DRIVER
3703 M:      Antti Palosaari <crope@iki.fi>
3704 L:      linux-media@vger.kernel.org
3705 W:      http://linuxtv.org/
3706 W:      http://palosaari.fi/linux/
3707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3708 T:      git git://linuxtv.org/anttip/media_tree.git
3709 S:      Maintained
3710 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3711
3712 DVB_USB_CXUSB MEDIA DRIVER
3713 M:      Michael Krufky <mkrufky@linuxtv.org>
3714 L:      linux-media@vger.kernel.org
3715 W:      http://linuxtv.org/
3716 W:      http://github.com/mkrufky
3717 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3718 T:      git git://linuxtv.org/media_tree.git
3719 S:      Maintained
3720 F:      drivers/media/usb/dvb-usb/cxusb*
3721
3722 DVB_USB_EC168 MEDIA DRIVER
3723 M:      Antti Palosaari <crope@iki.fi>
3724 L:      linux-media@vger.kernel.org
3725 W:      http://linuxtv.org/
3726 W:      http://palosaari.fi/linux/
3727 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3728 T:      git git://linuxtv.org/anttip/media_tree.git
3729 S:      Maintained
3730 F:      drivers/media/usb/dvb-usb-v2/ec168*
3731
3732 DVB_USB_GL861 MEDIA DRIVER
3733 M:      Antti Palosaari <crope@iki.fi>
3734 L:      linux-media@vger.kernel.org
3735 W:      http://linuxtv.org/
3736 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3737 T:      git git://linuxtv.org/anttip/media_tree.git
3738 S:      Maintained
3739 F:      drivers/media/usb/dvb-usb-v2/gl861*
3740
3741 DVB_USB_MXL111SF MEDIA DRIVER
3742 M:      Michael Krufky <mkrufky@linuxtv.org>
3743 L:      linux-media@vger.kernel.org
3744 W:      http://linuxtv.org/
3745 W:      http://github.com/mkrufky
3746 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3747 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3748 S:      Maintained
3749 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3750
3751 DVB_USB_RTL28XXU MEDIA DRIVER
3752 M:      Antti Palosaari <crope@iki.fi>
3753 L:      linux-media@vger.kernel.org
3754 W:      http://linuxtv.org/
3755 W:      http://palosaari.fi/linux/
3756 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3757 T:      git git://linuxtv.org/anttip/media_tree.git
3758 S:      Maintained
3759 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3760
3761 DVB_USB_V2 MEDIA DRIVER
3762 M:      Antti Palosaari <crope@iki.fi>
3763 L:      linux-media@vger.kernel.org
3764 W:      http://linuxtv.org/
3765 W:      http://palosaari.fi/linux/
3766 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3767 T:      git git://linuxtv.org/anttip/media_tree.git
3768 S:      Maintained
3769 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3770 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3771
3772 DYNAMIC DEBUG
3773 M:      Jason Baron <jbaron@akamai.com>
3774 S:      Maintained
3775 F:      lib/dynamic_debug.c
3776 F:      include/linux/dynamic_debug.h
3777
3778 DZ DECSTATION DZ11 SERIAL DRIVER
3779 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3780 S:      Maintained
3781 F:      drivers/tty/serial/dz.*
3782
3783 E3X0 POWER BUTTON DRIVER
3784 M:      Moritz Fischer <moritz.fischer@ettus.com>
3785 L:      usrp-users@lists.ettus.com
3786 W:      http://www.ettus.com
3787 S:      Supported
3788 F:      drivers/input/misc/e3x0-button.c
3789 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3790
3791 E4000 MEDIA DRIVER
3792 M:      Antti Palosaari <crope@iki.fi>
3793 L:      linux-media@vger.kernel.org
3794 W:      http://linuxtv.org/
3795 W:      http://palosaari.fi/linux/
3796 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3797 T:      git git://linuxtv.org/anttip/media_tree.git
3798 S:      Maintained
3799 F:      drivers/media/tuners/e4000*
3800
3801 EATA ISA/EISA/PCI SCSI DRIVER
3802 M:      Dario Ballabio <ballabio_dario@emc.com>
3803 L:      linux-scsi@vger.kernel.org
3804 S:      Maintained
3805 F:      drivers/scsi/eata.c
3806
3807 EC100 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/dvb-frontends/ec100*
3816
3817 ECRYPT FILE SYSTEM
3818 M:      Tyler Hicks <tyhicks@canonical.com>
3819 L:      ecryptfs@vger.kernel.org
3820 W:      http://ecryptfs.org
3821 W:      https://launchpad.net/ecryptfs
3822 S:      Supported
3823 F:      Documentation/filesystems/ecryptfs.txt
3824 F:      fs/ecryptfs/
3825
3826 EDAC-CORE
3827 M:      Doug Thompson <dougthompson@xmission.com>
3828 M:      Borislav Petkov <bp@alien8.de>
3829 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3830 L:      linux-edac@vger.kernel.org
3831 W:      bluesmoke.sourceforge.net
3832 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3833 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3834 S:      Supported
3835 F:      Documentation/edac.txt
3836 F:      drivers/edac/
3837 F:      include/linux/edac.h
3838
3839 EDAC-AMD64
3840 M:      Doug Thompson <dougthompson@xmission.com>
3841 M:      Borislav Petkov <bp@alien8.de>
3842 L:      linux-edac@vger.kernel.org
3843 W:      bluesmoke.sourceforge.net
3844 S:      Maintained
3845 F:      drivers/edac/amd64_edac*
3846
3847 EDAC-CALXEDA
3848 M:      Doug Thompson <dougthompson@xmission.com>
3849 M:      Robert Richter <rric@kernel.org>
3850 L:      linux-edac@vger.kernel.org
3851 W:      bluesmoke.sourceforge.net
3852 S:      Maintained
3853 F:      drivers/edac/highbank*
3854
3855 EDAC-CAVIUM
3856 M:      Ralf Baechle <ralf@linux-mips.org>
3857 M:      David Daney <david.daney@cavium.com>
3858 L:      linux-edac@vger.kernel.org
3859 L:      linux-mips@linux-mips.org
3860 W:      bluesmoke.sourceforge.net
3861 S:      Supported
3862 F:      drivers/edac/octeon_edac*
3863
3864 EDAC-E752X
3865 M:      Mark Gross <mark.gross@intel.com>
3866 M:      Doug Thompson <dougthompson@xmission.com>
3867 L:      linux-edac@vger.kernel.org
3868 W:      bluesmoke.sourceforge.net
3869 S:      Maintained
3870 F:      drivers/edac/e752x_edac.c
3871
3872 EDAC-E7XXX
3873 M:      Doug Thompson <dougthompson@xmission.com>
3874 L:      linux-edac@vger.kernel.org
3875 W:      bluesmoke.sourceforge.net
3876 S:      Maintained
3877 F:      drivers/edac/e7xxx_edac.c
3878
3879 EDAC-GHES
3880 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3881 L:      linux-edac@vger.kernel.org
3882 W:      bluesmoke.sourceforge.net
3883 S:      Maintained
3884 F:      drivers/edac/ghes_edac.c
3885
3886 EDAC-I82443BXGX
3887 M:      Tim Small <tim@buttersideup.com>
3888 L:      linux-edac@vger.kernel.org
3889 W:      bluesmoke.sourceforge.net
3890 S:      Maintained
3891 F:      drivers/edac/i82443bxgx_edac.c
3892
3893 EDAC-I3000
3894 M:      Jason Uhlenkott <juhlenko@akamai.com>
3895 L:      linux-edac@vger.kernel.org
3896 W:      bluesmoke.sourceforge.net
3897 S:      Maintained
3898 F:      drivers/edac/i3000_edac.c
3899
3900 EDAC-I5000
3901 M:      Doug Thompson <dougthompson@xmission.com>
3902 L:      linux-edac@vger.kernel.org
3903 W:      bluesmoke.sourceforge.net
3904 S:      Maintained
3905 F:      drivers/edac/i5000_edac.c
3906
3907 EDAC-I5400
3908 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3909 L:      linux-edac@vger.kernel.org
3910 W:      bluesmoke.sourceforge.net
3911 S:      Maintained
3912 F:      drivers/edac/i5400_edac.c
3913
3914 EDAC-I7300
3915 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3916 L:      linux-edac@vger.kernel.org
3917 W:      bluesmoke.sourceforge.net
3918 S:      Maintained
3919 F:      drivers/edac/i7300_edac.c
3920
3921 EDAC-I7CORE
3922 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3923 L:      linux-edac@vger.kernel.org
3924 W:      bluesmoke.sourceforge.net
3925 S:      Maintained
3926 F:      drivers/edac/i7core_edac.c
3927
3928 EDAC-I82975X
3929 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3930 M:      "Arvind R." <arvino55@gmail.com>
3931 L:      linux-edac@vger.kernel.org
3932 W:      bluesmoke.sourceforge.net
3933 S:      Maintained
3934 F:      drivers/edac/i82975x_edac.c
3935
3936 EDAC-IE31200
3937 M:      Jason Baron <jbaron@akamai.com>
3938 L:      linux-edac@vger.kernel.org
3939 W:      bluesmoke.sourceforge.net
3940 S:      Maintained
3941 F:      drivers/edac/ie31200_edac.c
3942
3943 EDAC-MPC85XX
3944 M:      Johannes Thumshirn <morbidrsa@gmail.com>
3945 L:      linux-edac@vger.kernel.org
3946 W:      bluesmoke.sourceforge.net
3947 S:      Maintained
3948 F:      drivers/edac/mpc85xx_edac.[ch]
3949
3950 EDAC-PASEMI
3951 M:      Egor Martovetsky <egor@pasemi.com>
3952 L:      linux-edac@vger.kernel.org
3953 W:      bluesmoke.sourceforge.net
3954 S:      Maintained
3955 F:      drivers/edac/pasemi_edac.c
3956
3957 EDAC-R82600
3958 M:      Tim Small <tim@buttersideup.com>
3959 L:      linux-edac@vger.kernel.org
3960 W:      bluesmoke.sourceforge.net
3961 S:      Maintained
3962 F:      drivers/edac/r82600_edac.c
3963
3964 EDAC-SBRIDGE
3965 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3966 L:      linux-edac@vger.kernel.org
3967 W:      bluesmoke.sourceforge.net
3968 S:      Maintained
3969 F:      drivers/edac/sb_edac.c
3970
3971 EDAC-XGENE
3972 APPLIED MICRO (APM) X-GENE SOC EDAC
3973 M:     Loc Ho <lho@apm.com>
3974 S:     Supported
3975 F:     drivers/edac/xgene_edac.c
3976 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
3977
3978 EDIROL UA-101/UA-1000 DRIVER
3979 M:      Clemens Ladisch <clemens@ladisch.de>
3980 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3981 T:      git git://git.alsa-project.org/alsa-kernel.git
3982 S:      Maintained
3983 F:      sound/usb/misc/ua101.c
3984
3985 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3986 M:      Matt Fleming <matt.fleming@intel.com>
3987 L:      linux-efi@vger.kernel.org
3988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3989 S:      Maintained
3990 F:      Documentation/efi-stub.txt
3991 F:      arch/ia64/kernel/efi.c
3992 F:      arch/x86/boot/compressed/eboot.[ch]
3993 F:      arch/x86/include/asm/efi.h
3994 F:      arch/x86/platform/efi/*
3995 F:      drivers/firmware/efi/*
3996 F:      include/linux/efi*.h
3997
3998 EFI VARIABLE FILESYSTEM
3999 M:      Matthew Garrett <matthew.garrett@nebula.com>
4000 M:      Jeremy Kerr <jk@ozlabs.org>
4001 M:      Matt Fleming <matt.fleming@intel.com>
4002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4003 L:      linux-efi@vger.kernel.org
4004 S:      Maintained
4005 F:      fs/efivarfs/
4006
4007 EFIFB FRAMEBUFFER DRIVER
4008 L:      linux-fbdev@vger.kernel.org
4009 M:      Peter Jones <pjones@redhat.com>
4010 S:      Maintained
4011 F:      drivers/video/fbdev/efifb.c
4012
4013 EFS FILESYSTEM
4014 W:      http://aeschi.ch.eu.org/efs/
4015 S:      Orphan
4016 F:      fs/efs/
4017
4018 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4019 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4020 M:      Christoph Raisch <raisch@de.ibm.com>
4021 L:      linux-rdma@vger.kernel.org
4022 S:      Supported
4023 F:      drivers/infiniband/hw/ehca/
4024
4025 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4026 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4027 L:      netdev@vger.kernel.org
4028 S:      Maintained
4029 F:      drivers/net/ethernet/ibm/ehea/
4030
4031 EM28XX VIDEO4LINUX DRIVER
4032 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4033 L:      linux-media@vger.kernel.org
4034 W:      http://linuxtv.org
4035 T:      git git://linuxtv.org/media_tree.git
4036 S:      Maintained
4037 F:      drivers/media/usb/em28xx/
4038
4039 EMBEDDED LINUX
4040 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4041 M:      Matt Mackall <mpm@selenic.com>
4042 M:      David Woodhouse <dwmw2@infradead.org>
4043 L:      linux-embedded@vger.kernel.org
4044 S:      Maintained
4045
4046 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4047 M:      James Smart <james.smart@avagotech.com>
4048 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4049 L:      linux-scsi@vger.kernel.org
4050 W:      http://www.avagotech.com
4051 S:      Supported
4052 F:      drivers/scsi/lpfc/
4053
4054 ENE CB710 FLASH CARD READER DRIVER
4055 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4056 S:      Maintained
4057 F:      drivers/misc/cb710/
4058 F:      drivers/mmc/host/cb710-mmc.*
4059 F:      include/linux/cb710.h
4060
4061 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4062 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4063 S:      Maintained
4064 F:      drivers/media/rc/ene_ir.*
4065
4066 ENHANCED ERROR HANDLING (EEH)
4067 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4068 L:      linuxppc-dev@lists.ozlabs.org
4069 S:      Supported
4070 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4071 F:      arch/powerpc/kernel/eeh*.c
4072
4073 EPSON S1D13XXX FRAMEBUFFER DRIVER
4074 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4075 S:      Maintained
4076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4077 F:      drivers/video/fbdev/s1d13xxxfb.c
4078 F:      include/video/s1d13xxxfb.h
4079
4080 ET131X NETWORK DRIVER
4081 M:      Mark Einon <mark.einon@gmail.com>
4082 S:      Odd Fixes
4083 F:      drivers/net/ethernet/agere/
4084
4085 ETHERNET BRIDGE
4086 M:      Stephen Hemminger <stephen@networkplumber.org>
4087 L:      bridge@lists.linux-foundation.org
4088 L:      netdev@vger.kernel.org
4089 W:      http://www.linuxfoundation.org/en/Net:Bridge
4090 S:      Maintained
4091 F:      include/linux/netfilter_bridge/
4092 F:      net/bridge/
4093
4094 ETHERNET PHY LIBRARY
4095 M:      Florian Fainelli <f.fainelli@gmail.com>
4096 L:      netdev@vger.kernel.org
4097 S:      Maintained
4098 F:      include/linux/phy.h
4099 F:      include/linux/phy_fixed.h
4100 F:      drivers/net/phy/
4101 F:      Documentation/networking/phy.txt
4102 F:      drivers/of/of_mdio.c
4103 F:      drivers/of/of_net.c
4104
4105 EXT2 FILE SYSTEM
4106 M:      Jan Kara <jack@suse.com>
4107 L:      linux-ext4@vger.kernel.org
4108 S:      Maintained
4109 F:      Documentation/filesystems/ext2.txt
4110 F:      fs/ext2/
4111 F:      include/linux/ext2*
4112
4113 EXT4 FILE SYSTEM
4114 M:      "Theodore Ts'o" <tytso@mit.edu>
4115 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4116 L:      linux-ext4@vger.kernel.org
4117 W:      http://ext4.wiki.kernel.org
4118 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4119 S:      Maintained
4120 F:      Documentation/filesystems/ext4.txt
4121 F:      fs/ext4/
4122
4123 Extended Verification Module (EVM)
4124 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4125 L:      linux-ima-devel@lists.sourceforge.net
4126 L:      linux-security-module@vger.kernel.org
4127 S:      Supported
4128 F:      security/integrity/evm/
4129
4130 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4131 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4132 M:      Chanwoo Choi <cw00.choi@samsung.com>
4133 L:      linux-kernel@vger.kernel.org
4134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4135 S:      Maintained
4136 F:      drivers/extcon/
4137 F:      Documentation/extcon/
4138
4139 EXYNOS DP DRIVER
4140 M:      Jingoo Han <jingoohan1@gmail.com>
4141 L:      dri-devel@lists.freedesktop.org
4142 S:      Maintained
4143 F:      drivers/gpu/drm/exynos/exynos_dp*
4144
4145 EXYNOS MIPI DISPLAY DRIVERS
4146 M:      Inki Dae <inki.dae@samsung.com>
4147 M:      Donghwa Lee <dh09.lee@samsung.com>
4148 M:      Kyungmin Park <kyungmin.park@samsung.com>
4149 L:      linux-fbdev@vger.kernel.org
4150 S:      Maintained
4151 F:      drivers/video/fbdev/exynos/exynos_mipi*
4152 F:      include/video/exynos_mipi*
4153
4154 F71805F HARDWARE MONITORING DRIVER
4155 M:      Jean Delvare <jdelvare@suse.com>
4156 L:      lm-sensors@lm-sensors.org
4157 S:      Maintained
4158 F:      Documentation/hwmon/f71805f
4159 F:      drivers/hwmon/f71805f.c
4160
4161 FC0011 TUNER DRIVER
4162 M:      Michael Buesch <m@bues.ch>
4163 L:      linux-media@vger.kernel.org
4164 S:      Maintained
4165 F:      drivers/media/tuners/fc0011.h
4166 F:      drivers/media/tuners/fc0011.c
4167
4168 FC2580 MEDIA DRIVER
4169 M:      Antti Palosaari <crope@iki.fi>
4170 L:      linux-media@vger.kernel.org
4171 W:      http://linuxtv.org/
4172 W:      http://palosaari.fi/linux/
4173 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4174 T:      git git://linuxtv.org/anttip/media_tree.git
4175 S:      Maintained
4176 F:      drivers/media/tuners/fc2580*
4177
4178 FANOTIFY
4179 M:      Eric Paris <eparis@redhat.com>
4180 S:      Maintained
4181 F:      fs/notify/fanotify/
4182 F:      include/linux/fanotify.h
4183 F:      include/uapi/linux/fanotify.h
4184
4185 FARSYNC SYNCHRONOUS DRIVER
4186 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4187 W:      http://www.farsite.co.uk/
4188 S:      Supported
4189 F:      drivers/net/wan/farsync.*
4190
4191 FAULT INJECTION SUPPORT
4192 M:      Akinobu Mita <akinobu.mita@gmail.com>
4193 S:      Supported
4194 F:      Documentation/fault-injection/
4195 F:      lib/fault-inject.c
4196
4197 FBTFT Framebuffer drivers
4198 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4199 M:      Noralf Trønnes <noralf@tronnes.org>
4200 S:      Maintained
4201 F:      drivers/staging/fbtft/
4202
4203 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4204 M:      Vasu Dev <vasu.dev@intel.com>
4205 L:      fcoe-devel@open-fcoe.org
4206 W:      www.Open-FCoE.org
4207 S:      Supported
4208 F:      drivers/scsi/libfc/
4209 F:      drivers/scsi/fcoe/
4210 F:      include/scsi/fc/
4211 F:      include/scsi/libfc.h
4212 F:      include/scsi/libfcoe.h
4213 F:      include/uapi/scsi/fc/
4214
4215 FILE LOCKING (flock() and fcntl()/lockf())
4216 M:      Jeff Layton <jlayton@poochiereds.net>
4217 M:      "J. Bruce Fields" <bfields@fieldses.org>
4218 L:      linux-fsdevel@vger.kernel.org
4219 S:      Maintained
4220 F:      include/linux/fcntl.h
4221 F:      include/linux/fs.h
4222 F:      include/uapi/linux/fcntl.h
4223 F:      include/uapi/linux/fs.h
4224 F:      fs/fcntl.c
4225 F:      fs/locks.c
4226
4227 FILESYSTEMS (VFS and infrastructure)
4228 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4229 L:      linux-fsdevel@vger.kernel.org
4230 S:      Maintained
4231 F:      fs/*
4232
4233 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4234 M:      Riku Voipio <riku.voipio@iki.fi>
4235 L:      lm-sensors@lm-sensors.org
4236 S:      Maintained
4237 F:      drivers/hwmon/f75375s.c
4238 F:      include/linux/f75375s.h
4239
4240 FIREWIRE AUDIO DRIVERS
4241 M:      Clemens Ladisch <clemens@ladisch.de>
4242 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4243 T:      git git://git.alsa-project.org/alsa-kernel.git
4244 S:      Maintained
4245 F:      sound/firewire/
4246
4247 FIREWIRE MEDIA DRIVERS (firedtv)
4248 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4249 L:      linux-media@vger.kernel.org
4250 L:      linux1394-devel@lists.sourceforge.net
4251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4252 S:      Maintained
4253 F:      drivers/media/firewire/
4254
4255 FIREWIRE SBP-2 TARGET
4256 M:      Chris Boot <bootc@bootc.net>
4257 L:      linux-scsi@vger.kernel.org
4258 L:      target-devel@vger.kernel.org
4259 L:      linux1394-devel@lists.sourceforge.net
4260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4261 S:      Maintained
4262 F:      drivers/target/sbp/
4263
4264 FIREWIRE SUBSYSTEM
4265 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4266 L:      linux1394-devel@lists.sourceforge.net
4267 W:      http://ieee1394.wiki.kernel.org/
4268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4269 S:      Maintained
4270 F:      drivers/firewire/
4271 F:      include/linux/firewire.h
4272 F:      include/uapi/linux/firewire*.h
4273 F:      tools/firewire/
4274
4275 FIRMWARE LOADER (request_firmware)
4276 M:      Ming Lei <ming.lei@canonical.com>
4277 L:      linux-kernel@vger.kernel.org
4278 S:      Maintained
4279 F:      Documentation/firmware_class/
4280 F:      drivers/base/firmware*.c
4281 F:      include/linux/firmware.h
4282
4283 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4284 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4285 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4286 S:      Maintained
4287 F:      drivers/block/rsxx/
4288
4289 FLOPPY DRIVER
4290 M:      Jiri Kosina <jikos@kernel.org>
4291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4292 S:      Odd fixes
4293 F:      drivers/block/floppy.c
4294
4295 FMC SUBSYSTEM
4296 M:      Alessandro Rubini <rubini@gnudd.com>
4297 W:      http://www.ohwr.org/projects/fmc-bus
4298 S:      Supported
4299 F:      drivers/fmc/
4300 F:      include/linux/fmc*.h
4301 F:      include/linux/ipmi-fru.h
4302 K:      fmc_d.*register
4303
4304 FPU EMULATOR
4305 M:      Bill Metzenthen <billm@melbpc.org.au>
4306 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4307 S:      Maintained
4308 F:      arch/x86/math-emu/
4309
4310 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4311 L:      netdev@vger.kernel.org
4312 S:      Orphan
4313 F:      drivers/net/wan/dlci.c
4314 F:      drivers/net/wan/sdla.c
4315
4316 FRAMEBUFFER LAYER
4317 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4318 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4319 L:      linux-fbdev@vger.kernel.org
4320 W:      http://linux-fbdev.sourceforge.net/
4321 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4323 S:      Maintained
4324 F:      Documentation/fb/
4325 F:      Documentation/devicetree/bindings/fb/
4326 F:      drivers/video/
4327 F:      include/video/
4328 F:      include/linux/fb.h
4329 F:      include/uapi/video/
4330 F:      include/uapi/linux/fb.h
4331
4332 FREESCALE DIU FRAMEBUFFER DRIVER
4333 M:      Timur Tabi <timur@tabi.org>
4334 L:      linux-fbdev@vger.kernel.org
4335 S:      Maintained
4336 F:      drivers/video/fbdev/fsl-diu-fb.*
4337
4338 FREESCALE DMA DRIVER
4339 M:      Li Yang <leoli@freescale.com>
4340 M:      Zhang Wei <zw@zh-kernel.org>
4341 L:      linuxppc-dev@lists.ozlabs.org
4342 S:      Maintained
4343 F:      drivers/dma/fsldma.*
4344
4345 FREESCALE I2C CPM DRIVER
4346 M:      Jochen Friedrich <jochen@scram.de>
4347 L:      linuxppc-dev@lists.ozlabs.org
4348 L:      linux-i2c@vger.kernel.org
4349 S:      Maintained
4350 F:      drivers/i2c/busses/i2c-cpm.c
4351
4352 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4353 M:      Sascha Hauer <kernel@pengutronix.de>
4354 L:      linux-fbdev@vger.kernel.org
4355 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4356 S:      Maintained
4357 F:      include/linux/platform_data/video-imxfb.h
4358 F:      drivers/video/fbdev/imxfb.c
4359
4360 FREESCALE QUAD SPI DRIVER
4361 M:      Han Xu <han.xu@freescale.com>
4362 L:      linux-mtd@lists.infradead.org
4363 S:      Maintained
4364 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4365
4366 FREESCALE SOC FS_ENET DRIVER
4367 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4368 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4369 L:      linuxppc-dev@lists.ozlabs.org
4370 L:      netdev@vger.kernel.org
4371 S:      Maintained
4372 F:      drivers/net/ethernet/freescale/fs_enet/
4373 F:      include/linux/fs_enet_pd.h
4374
4375 FREESCALE QUICC ENGINE LIBRARY
4376 L:      linuxppc-dev@lists.ozlabs.org
4377 S:      Orphan
4378 F:      arch/powerpc/sysdev/qe_lib/
4379 F:      arch/powerpc/include/asm/*qe.h
4380
4381 FREESCALE USB PERIPHERAL DRIVERS
4382 M:      Li Yang <leoli@freescale.com>
4383 L:      linux-usb@vger.kernel.org
4384 L:      linuxppc-dev@lists.ozlabs.org
4385 S:      Maintained
4386 F:      drivers/usb/gadget/udc/fsl*
4387
4388 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4389 M:      Li Yang <leoli@freescale.com>
4390 L:      netdev@vger.kernel.org
4391 L:      linuxppc-dev@lists.ozlabs.org
4392 S:      Maintained
4393 F:      drivers/net/ethernet/freescale/ucc_geth*
4394
4395 FREESCALE QUICC ENGINE UCC UART DRIVER
4396 M:      Timur Tabi <timur@tabi.org>
4397 L:      linuxppc-dev@lists.ozlabs.org
4398 S:      Maintained
4399 F:      drivers/tty/serial/ucc_uart.c
4400
4401 FREESCALE SOC SOUND DRIVERS
4402 M:      Timur Tabi <timur@tabi.org>
4403 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4404 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4405 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4406 L:      linuxppc-dev@lists.ozlabs.org
4407 S:      Maintained
4408 F:      sound/soc/fsl/fsl*
4409 F:      sound/soc/fsl/imx*
4410 F:      sound/soc/fsl/mpc8610_hpcd.c
4411
4412 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4413 M:      "J. German Rivera" <German.Rivera@freescale.com>
4414 L:      linux-kernel@vger.kernel.org
4415 S:      Maintained
4416 F:      drivers/staging/fsl-mc/
4417
4418 FREEVXFS FILESYSTEM
4419 M:      Christoph Hellwig <hch@infradead.org>
4420 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4421 S:      Maintained
4422 F:      fs/freevxfs/
4423
4424 FREEZER
4425 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4426 M:      Pavel Machek <pavel@ucw.cz>
4427 L:      linux-pm@vger.kernel.org
4428 S:      Supported
4429 F:      Documentation/power/freezing-of-tasks.txt
4430 F:      include/linux/freezer.h
4431 F:      kernel/freezer.c
4432
4433 FRONTSWAP API
4434 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4435 L:      linux-kernel@vger.kernel.org
4436 S:      Maintained
4437 F:      mm/frontswap.c
4438 F:      include/linux/frontswap.h
4439
4440 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4441 M:      David Howells <dhowells@redhat.com>
4442 L:      linux-cachefs@redhat.com
4443 S:      Supported
4444 F:      Documentation/filesystems/caching/
4445 F:      fs/fscache/
4446 F:      include/linux/fscache*.h
4447
4448 F2FS FILE SYSTEM
4449 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4450 M:      Changman Lee <cm224.lee@samsung.com>
4451 R:      Chao Yu <chao2.yu@samsung.com>
4452 L:      linux-f2fs-devel@lists.sourceforge.net
4453 W:      http://en.wikipedia.org/wiki/F2FS
4454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4455 S:      Maintained
4456 F:      Documentation/filesystems/f2fs.txt
4457 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4458 F:      fs/f2fs/
4459 F:      include/linux/f2fs_fs.h
4460 F:      include/trace/events/f2fs.h
4461
4462 FUJITSU FR-V (FRV) PORT
4463 M:      David Howells <dhowells@redhat.com>
4464 S:      Maintained
4465 F:      arch/frv/
4466
4467 FUJITSU LAPTOP EXTRAS
4468 M:      Jonathan Woithe <jwoithe@just42.net>
4469 L:      platform-driver-x86@vger.kernel.org
4470 S:      Maintained
4471 F:      drivers/platform/x86/fujitsu-laptop.c
4472
4473 FUJITSU M-5MO LS CAMERA ISP DRIVER
4474 M:      Kyungmin Park <kyungmin.park@samsung.com>
4475 M:      Heungjun Kim <riverful.kim@samsung.com>
4476 L:      linux-media@vger.kernel.org
4477 S:      Maintained
4478 F:      drivers/media/i2c/m5mols/
4479 F:      include/media/m5mols.h
4480
4481 FUJITSU TABLET EXTRAS
4482 M:      Robert Gerlach <khnz@gmx.de>
4483 L:      platform-driver-x86@vger.kernel.org
4484 S:      Maintained
4485 F:      drivers/platform/x86/fujitsu-tablet.c
4486
4487 FUSE: FILESYSTEM IN USERSPACE
4488 M:      Miklos Szeredi <miklos@szeredi.hu>
4489 L:      fuse-devel@lists.sourceforge.net
4490 W:      http://fuse.sourceforge.net/
4491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4492 S:      Maintained
4493 F:      fs/fuse/
4494 F:      include/uapi/linux/fuse.h
4495 F:      Documentation/filesystems/fuse.txt
4496
4497 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4498 M:      Rik Faith <faith@cs.unc.edu>
4499 L:      linux-scsi@vger.kernel.org
4500 S:      Odd Fixes (e.g., new signatures)
4501 F:      drivers/scsi/fdomain.*
4502
4503 GCOV BASED KERNEL PROFILING
4504 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4505 S:      Maintained
4506 F:      kernel/gcov/
4507 F:      Documentation/gcov.txt
4508
4509 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4510 M:      Achim Leubner <achim_leubner@adaptec.com>
4511 L:      linux-scsi@vger.kernel.org
4512 W:      http://www.icp-vortex.com/
4513 S:      Supported
4514 F:      drivers/scsi/gdt*
4515
4516 GDB KERNEL DEBUGGING HELPER SCRIPTS
4517 M:      Jan Kiszka <jan.kiszka@siemens.com>
4518 S:      Supported
4519 F:      scripts/gdb/
4520
4521 GEMTEK FM RADIO RECEIVER DRIVER
4522 M:      Hans Verkuil <hverkuil@xs4all.nl>
4523 L:      linux-media@vger.kernel.org
4524 T:      git git://linuxtv.org/media_tree.git
4525 W:      http://linuxtv.org
4526 S:      Maintained
4527 F:      drivers/media/radio/radio-gemtek*
4528
4529 GENERIC GPIO I2C DRIVER
4530 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4531 S:      Supported
4532 F:      drivers/i2c/busses/i2c-gpio.c
4533 F:      include/linux/i2c-gpio.h
4534
4535 GENERIC GPIO I2C MULTIPLEXER DRIVER
4536 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4537 L:      linux-i2c@vger.kernel.org
4538 S:      Supported
4539 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4540 F:      include/linux/i2c-mux-gpio.h
4541 F:      Documentation/i2c/muxes/i2c-mux-gpio
4542
4543 GENERIC HDLC (WAN) DRIVERS
4544 M:      Krzysztof Halasa <khc@pm.waw.pl>
4545 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4546 S:      Maintained
4547 F:      drivers/net/wan/c101.c
4548 F:      drivers/net/wan/hd6457*
4549 F:      drivers/net/wan/hdlc*
4550 F:      drivers/net/wan/n2.c
4551 F:      drivers/net/wan/pc300too.c
4552 F:      drivers/net/wan/pci200syn.c
4553 F:      drivers/net/wan/wanxl*
4554
4555 GENERIC INCLUDE/ASM HEADER FILES
4556 M:      Arnd Bergmann <arnd@arndb.de>
4557 L:      linux-arch@vger.kernel.org
4558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4559 S:      Maintained
4560 F:      include/asm-generic/
4561 F:      include/uapi/asm-generic/
4562
4563 GENERIC PHY FRAMEWORK
4564 M:      Kishon Vijay Abraham I <kishon@ti.com>
4565 L:      linux-kernel@vger.kernel.org
4566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4567 S:      Supported
4568 F:      drivers/phy/
4569 F:      include/linux/phy/
4570
4571 GENERIC PM DOMAINS
4572 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4573 M:      Kevin Hilman <khilman@kernel.org>
4574 M:      Ulf Hansson <ulf.hansson@linaro.org>
4575 L:      linux-pm@vger.kernel.org
4576 S:      Supported
4577 F:      drivers/base/power/domain*.c
4578 F:      include/linux/pm_domain.h
4579
4580 GENERIC UIO DRIVER FOR PCI DEVICES
4581 M:      "Michael S. Tsirkin" <mst@redhat.com>
4582 L:      kvm@vger.kernel.org
4583 S:      Supported
4584 F:      drivers/uio/uio_pci_generic.c
4585
4586 GET_MAINTAINER SCRIPT
4587 M:      Joe Perches <joe@perches.com>
4588 S:      Maintained
4589 F:      scripts/get_maintainer.pl
4590
4591 GFS2 FILE SYSTEM
4592 M:      Steven Whitehouse <swhiteho@redhat.com>
4593 M:      Bob Peterson <rpeterso@redhat.com>
4594 L:      cluster-devel@redhat.com
4595 W:      http://sources.redhat.com/cluster/
4596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4597 S:      Supported
4598 F:      Documentation/filesystems/gfs2*.txt
4599 F:      fs/gfs2/
4600 F:      include/uapi/linux/gfs2_ondisk.h
4601
4602 GIGASET ISDN DRIVERS
4603 M:      Paul Bolle <pebolle@tiscali.nl>
4604 L:      gigaset307x-common@lists.sourceforge.net
4605 W:      http://gigaset307x.sourceforge.net/
4606 S:      Odd Fixes
4607 F:      Documentation/isdn/README.gigaset
4608 F:      drivers/isdn/gigaset/
4609 F:      include/uapi/linux/gigaset_dev.h
4610
4611 GO7007 MPEG CODEC
4612 M:      Hans Verkuil <hans.verkuil@cisco.com>
4613 L:      linux-media@vger.kernel.org
4614 S:      Maintained
4615 F:      drivers/media/usb/go7007/
4616
4617 GOODIX TOUCHSCREEN
4618 M:      Bastien Nocera <hadess@hadess.net>
4619 L:      linux-input@vger.kernel.org
4620 S:      Maintained
4621 F:      drivers/input/touchscreen/goodix.c
4622
4623 GPIO SUBSYSTEM
4624 M:      Linus Walleij <linus.walleij@linaro.org>
4625 M:      Alexandre Courbot <gnurou@gmail.com>
4626 L:      linux-gpio@vger.kernel.org
4627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4628 S:      Maintained
4629 F:      Documentation/gpio/
4630 F:      drivers/gpio/
4631 F:      include/linux/gpio/
4632 F:      include/linux/gpio.h
4633 F:      include/asm-generic/gpio.h
4634
4635 GRE DEMULTIPLEXER DRIVER
4636 M:      Dmitry Kozlov <xeb@mail.ru>
4637 L:      netdev@vger.kernel.org
4638 S:      Maintained
4639 F:      net/ipv4/gre_demux.c
4640 F:      net/ipv4/gre_offload.c
4641 F:      include/net/gre.h
4642
4643 GRETH 10/100/1G Ethernet MAC device driver
4644 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4645 L:      netdev@vger.kernel.org
4646 S:      Maintained
4647 F:      drivers/net/ethernet/aeroflex/
4648
4649 GSPCA FINEPIX SUBDRIVER
4650 M:      Frank Zago <frank@zago.net>
4651 L:      linux-media@vger.kernel.org
4652 T:      git git://linuxtv.org/media_tree.git
4653 S:      Maintained
4654 F:      drivers/media/usb/gspca/finepix.c
4655
4656 GSPCA GL860 SUBDRIVER
4657 M:      Olivier Lorin <o.lorin@laposte.net>
4658 L:      linux-media@vger.kernel.org
4659 T:      git git://linuxtv.org/media_tree.git
4660 S:      Maintained
4661 F:      drivers/media/usb/gspca/gl860/
4662
4663 GSPCA M5602 SUBDRIVER
4664 M:      Erik Andren <erik.andren@gmail.com>
4665 L:      linux-media@vger.kernel.org
4666 T:      git git://linuxtv.org/media_tree.git
4667 S:      Maintained
4668 F:      drivers/media/usb/gspca/m5602/
4669
4670 GSPCA PAC207 SONIXB SUBDRIVER
4671 M:      Hans de Goede <hdegoede@redhat.com>
4672 L:      linux-media@vger.kernel.org
4673 T:      git git://linuxtv.org/media_tree.git
4674 S:      Maintained
4675 F:      drivers/media/usb/gspca/pac207.c
4676
4677 GSPCA SN9C20X SUBDRIVER
4678 M:      Brian Johnson <brijohn@gmail.com>
4679 L:      linux-media@vger.kernel.org
4680 T:      git git://linuxtv.org/media_tree.git
4681 S:      Maintained
4682 F:      drivers/media/usb/gspca/sn9c20x.c
4683
4684 GSPCA T613 SUBDRIVER
4685 M:      Leandro Costantino <lcostantino@gmail.com>
4686 L:      linux-media@vger.kernel.org
4687 T:      git git://linuxtv.org/media_tree.git
4688 S:      Maintained
4689 F:      drivers/media/usb/gspca/t613.c
4690
4691 GSPCA USB WEBCAM DRIVER
4692 M:      Hans de Goede <hdegoede@redhat.com>
4693 L:      linux-media@vger.kernel.org
4694 T:      git git://linuxtv.org/media_tree.git
4695 S:      Maintained
4696 F:      drivers/media/usb/gspca/
4697
4698 GUID PARTITION TABLE (GPT)
4699 M:      Davidlohr Bueso <dave@stgolabs.net>
4700 L:      linux-efi@vger.kernel.org
4701 S:      Maintained
4702 F:      block/partitions/efi.*
4703
4704 STK1160 USB VIDEO CAPTURE DRIVER
4705 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4706 L:      linux-media@vger.kernel.org
4707 T:      git git://linuxtv.org/media_tree.git
4708 S:      Maintained
4709 F:      drivers/media/usb/stk1160/
4710
4711 H8/300 ARCHITECTURE
4712 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4713 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4714 W:      http://uclinux-h8.sourceforge.jp
4715 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4716 S:      Maintained
4717 F:      arch/h8300/
4718 F:      drivers/clocksource/h8300_*.c
4719 F:      drivers/clk/h8300/
4720 F:      drivers/irqchip/irq-renesas-h8*.c
4721
4722 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4723 M:      Frank Seidel <frank@f-seidel.de>
4724 L:      platform-driver-x86@vger.kernel.org
4725 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4726 S:      Maintained
4727 F:      drivers/platform/x86/hdaps.c
4728
4729 HDPVR USB VIDEO ENCODER DRIVER
4730 M:      Hans Verkuil <hverkuil@xs4all.nl>
4731 L:      linux-media@vger.kernel.org
4732 T:      git git://linuxtv.org/media_tree.git
4733 W:      http://linuxtv.org
4734 S:      Odd Fixes
4735 F:      drivers/media/usb/hdpvr/
4736
4737 HWPOISON MEMORY FAILURE HANDLING
4738 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4739 L:      linux-mm@kvack.org
4740 S:      Maintained
4741 F:      mm/memory-failure.c
4742 F:      mm/hwpoison-inject.c
4743
4744 HYPERVISOR VIRTUAL CONSOLE DRIVER
4745 L:      linuxppc-dev@lists.ozlabs.org
4746 S:      Odd Fixes
4747 F:      drivers/tty/hvc/
4748
4749 HACKRF MEDIA DRIVER
4750 M:      Antti Palosaari <crope@iki.fi>
4751 L:      linux-media@vger.kernel.org
4752 W:      http://linuxtv.org/
4753 W:      http://palosaari.fi/linux/
4754 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4755 T:      git git://linuxtv.org/anttip/media_tree.git
4756 S:      Maintained
4757 F:      drivers/media/usb/hackrf/
4758
4759 HARDWARE MONITORING
4760 M:      Jean Delvare <jdelvare@suse.com>
4761 M:      Guenter Roeck <linux@roeck-us.net>
4762 L:      lm-sensors@lm-sensors.org
4763 W:      http://www.lm-sensors.org/
4764 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4766 S:      Maintained
4767 F:      Documentation/hwmon/
4768 F:      drivers/hwmon/
4769 F:      include/linux/hwmon*.h
4770
4771 HARDWARE RANDOM NUMBER GENERATOR CORE
4772 M:      Matt Mackall <mpm@selenic.com>
4773 M:      Herbert Xu <herbert@gondor.apana.org.au>
4774 L:      linux-crypto@vger.kernel.org
4775 S:      Odd fixes
4776 F:      Documentation/hw_random.txt
4777 F:      drivers/char/hw_random/
4778 F:      include/linux/hw_random.h
4779
4780 HARDWARE SPINLOCK CORE
4781 M:      Ohad Ben-Cohen <ohad@wizery.com>
4782 S:      Maintained
4783 F:      Documentation/hwspinlock.txt
4784 F:      drivers/hwspinlock/hwspinlock_*
4785 F:      include/linux/hwspinlock.h
4786
4787 HARMONY SOUND DRIVER
4788 L:      linux-parisc@vger.kernel.org
4789 S:      Maintained
4790 F:      sound/parisc/harmony.*
4791
4792 HD29L2 MEDIA DRIVER
4793 M:      Antti Palosaari <crope@iki.fi>
4794 L:      linux-media@vger.kernel.org
4795 W:      http://linuxtv.org/
4796 W:      http://palosaari.fi/linux/
4797 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4798 T:      git git://linuxtv.org/anttip/media_tree.git
4799 S:      Maintained
4800 F:      drivers/media/dvb-frontends/hd29l2*
4801
4802 HEWLETT-PACKARD SMART2 RAID DRIVER
4803 L:      iss_storagedev@hp.com
4804 S:      Orphan
4805 F:      Documentation/blockdev/cpqarray.txt
4806 F:      drivers/block/cpqarray.*
4807
4808 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4809 M:      Don Brace <don.brace@pmcs.com>
4810 L:      iss_storagedev@hp.com
4811 L:      storagedev@pmcs.com
4812 L:      linux-scsi@vger.kernel.org
4813 S:      Supported
4814 F:      Documentation/scsi/hpsa.txt
4815 F:      drivers/scsi/hpsa*.[ch]
4816 F:      include/linux/cciss*.h
4817 F:      include/uapi/linux/cciss*.h
4818
4819 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4820 M:      Don Brace <don.brace@pmcs.com>
4821 L:      iss_storagedev@hp.com
4822 L:      storagedev@pmcs.com
4823 L:      linux-scsi@vger.kernel.org
4824 S:      Supported
4825 F:      Documentation/blockdev/cciss.txt
4826 F:      drivers/block/cciss*
4827 F:      include/linux/cciss_ioctl.h
4828 F:      include/uapi/linux/cciss_ioctl.h
4829
4830 HFS FILESYSTEM
4831 L:      linux-fsdevel@vger.kernel.org
4832 S:      Orphan
4833 F:      Documentation/filesystems/hfs.txt
4834 F:      fs/hfs/
4835
4836 HFSPLUS FILESYSTEM
4837 L:      linux-fsdevel@vger.kernel.org
4838 S:      Orphan
4839 F:      Documentation/filesystems/hfsplus.txt
4840 F:      fs/hfsplus/
4841
4842 HGA FRAMEBUFFER DRIVER
4843 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4844 L:      linux-nvidia@lists.surfsouth.com
4845 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4846 S:      Maintained
4847 F:      drivers/video/fbdev/hgafb.c
4848
4849 HIBERNATION (aka Software Suspend, aka swsusp)
4850 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4851 M:      Pavel Machek <pavel@ucw.cz>
4852 L:      linux-pm@vger.kernel.org
4853 S:      Supported
4854 F:      arch/x86/power/
4855 F:      drivers/base/power/
4856 F:      kernel/power/
4857 F:      include/linux/suspend.h
4858 F:      include/linux/freezer.h
4859 F:      include/linux/pm.h
4860 F:      arch/*/include/asm/suspend*.h
4861
4862 HID CORE LAYER
4863 M:      Jiri Kosina <jikos@kernel.org>
4864 L:      linux-input@vger.kernel.org
4865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4866 S:      Maintained
4867 F:      drivers/hid/
4868 F:      include/linux/hid*
4869 F:      include/uapi/linux/hid*
4870
4871 HID SENSOR HUB DRIVERS
4872 M:      Jiri Kosina <jikos@kernel.org>
4873 M:      Jonathan Cameron <jic23@kernel.org>
4874 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4875 L:      linux-input@vger.kernel.org
4876 L:      linux-iio@vger.kernel.org
4877 S:      Maintained
4878 F:      Documentation/hid/hid-sensor*
4879 F:      drivers/hid/hid-sensor-*
4880 F:      drivers/iio/*/hid-*
4881 F:      include/linux/hid-sensor-*
4882
4883 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4884 M:      Thomas Gleixner <tglx@linutronix.de>
4885 L:      linux-kernel@vger.kernel.org
4886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4887 S:      Maintained
4888 F:      Documentation/timers/
4889 F:      kernel/time/hrtimer.c
4890 F:      kernel/time/clockevents.c
4891 F:      kernel/time/tick*.*
4892 F:      kernel/time/timer_*.c
4893 F:      include/linux/clockchips.h
4894 F:      include/linux/hrtimer.h
4895
4896 HIGH-SPEED SCC DRIVER FOR AX.25
4897 L:      linux-hams@vger.kernel.org
4898 S:      Orphan
4899 F:      drivers/net/hamradio/dmascc.c
4900 F:      drivers/net/hamradio/scc.c
4901
4902 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4903 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4904 W:      http://www.highpoint-tech.com
4905 S:      Supported
4906 F:      Documentation/scsi/hptiop.txt
4907 F:      drivers/scsi/hptiop.c
4908
4909 HIPPI
4910 M:      Jes Sorensen <jes@trained-monkey.org>
4911 L:      linux-hippi@sunsite.dk
4912 S:      Maintained
4913 F:      include/linux/hippidevice.h
4914 F:      include/uapi/linux/if_hippi.h
4915 F:      net/802/hippi.c
4916 F:      drivers/net/hippi/
4917
4918 HOST AP DRIVER
4919 M:      Jouni Malinen <j@w1.fi>
4920 L:      hostap@shmoo.com (subscribers-only)
4921 L:      linux-wireless@vger.kernel.org
4922 W:      http://hostap.epitest.fi/
4923 S:      Maintained
4924 F:      drivers/net/wireless/hostap/
4925
4926 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4927 L:      platform-driver-x86@vger.kernel.org
4928 S:      Orphan
4929 F:      drivers/platform/x86/tc1100-wmi.c
4930
4931 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4932 M:      Jaroslav Kysela <perex@perex.cz>
4933 S:      Maintained
4934 F:      drivers/net/ethernet/hp/hp100.*
4935
4936 HPET:   High Precision Event Timers driver
4937 M:      Clemens Ladisch <clemens@ladisch.de>
4938 S:      Maintained
4939 F:      Documentation/timers/hpet.txt
4940 F:      drivers/char/hpet.c
4941 F:      include/linux/hpet.h
4942 F:      include/uapi/linux/hpet.h
4943
4944 HPET:   x86
4945 S:      Orphan
4946 F:      arch/x86/kernel/hpet.c
4947 F:      arch/x86/include/asm/hpet.h
4948
4949 HPFS FILESYSTEM
4950 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4951 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4952 S:      Maintained
4953 F:      fs/hpfs/
4954
4955 HSI SUBSYSTEM
4956 M:      Sebastian Reichel <sre@kernel.org>
4957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4958 S:      Maintained
4959 F:      Documentation/ABI/testing/sysfs-bus-hsi
4960 F:      Documentation/hsi.txt
4961 F:      drivers/hsi/
4962 F:      include/linux/hsi/
4963 F:      include/uapi/linux/hsi/
4964
4965 HSO 3G MODEM DRIVER
4966 M:      Jan Dumon <j.dumon@option.com>
4967 W:      http://www.pharscape.org
4968 S:      Maintained
4969 F:      drivers/net/usb/hso.c
4970
4971 HSR NETWORK PROTOCOL
4972 M:      Arvid Brodin <arvid.brodin@alten.se>
4973 L:      netdev@vger.kernel.org
4974 S:      Maintained
4975 F:      net/hsr/
4976
4977 HTCPEN TOUCHSCREEN DRIVER
4978 M:      Pau Oliva Fora <pof@eslack.org>
4979 L:      linux-input@vger.kernel.org
4980 S:      Maintained
4981 F:      drivers/input/touchscreen/htcpen.c
4982
4983 HUGETLB FILESYSTEM
4984 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
4985 S:      Maintained
4986 F:      fs/hugetlbfs/
4987
4988 Hyper-V CORE AND DRIVERS
4989 M:      "K. Y. Srinivasan" <kys@microsoft.com>
4990 M:      Haiyang Zhang <haiyangz@microsoft.com>
4991 L:      devel@linuxdriverproject.org
4992 S:      Maintained
4993 F:      arch/x86/include/asm/mshyperv.h
4994 F:      arch/x86/include/uapi/asm/hyperv.h
4995 F:      arch/x86/kernel/cpu/mshyperv.c
4996 F:      drivers/hid/hid-hyperv.c
4997 F:      drivers/hv/
4998 F:      drivers/input/serio/hyperv-keyboard.c
4999 F:      drivers/net/hyperv/
5000 F:      drivers/scsi/storvsc_drv.c
5001 F:      drivers/video/fbdev/hyperv_fb.c
5002 F:      include/linux/hyperv.h
5003 F:      tools/hv/
5004 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5005
5006 I2C OVER PARALLEL PORT
5007 M:      Jean Delvare <jdelvare@suse.com>
5008 L:      linux-i2c@vger.kernel.org
5009 S:      Maintained
5010 F:      Documentation/i2c/busses/i2c-parport
5011 F:      Documentation/i2c/busses/i2c-parport-light
5012 F:      drivers/i2c/busses/i2c-parport.c
5013 F:      drivers/i2c/busses/i2c-parport-light.c
5014
5015 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5016 M:      Jean Delvare <jdelvare@suse.com>
5017 L:      linux-i2c@vger.kernel.org
5018 S:      Maintained
5019 F:      Documentation/i2c/busses/i2c-ali1535
5020 F:      Documentation/i2c/busses/i2c-ali1563
5021 F:      Documentation/i2c/busses/i2c-ali15x3
5022 F:      Documentation/i2c/busses/i2c-amd756
5023 F:      Documentation/i2c/busses/i2c-amd8111
5024 F:      Documentation/i2c/busses/i2c-i801
5025 F:      Documentation/i2c/busses/i2c-nforce2
5026 F:      Documentation/i2c/busses/i2c-piix4
5027 F:      Documentation/i2c/busses/i2c-sis5595
5028 F:      Documentation/i2c/busses/i2c-sis630
5029 F:      Documentation/i2c/busses/i2c-sis96x
5030 F:      Documentation/i2c/busses/i2c-via
5031 F:      Documentation/i2c/busses/i2c-viapro
5032 F:      drivers/i2c/busses/i2c-ali1535.c
5033 F:      drivers/i2c/busses/i2c-ali1563.c
5034 F:      drivers/i2c/busses/i2c-ali15x3.c
5035 F:      drivers/i2c/busses/i2c-amd756.c
5036 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5037 F:      drivers/i2c/busses/i2c-amd8111.c
5038 F:      drivers/i2c/busses/i2c-i801.c
5039 F:      drivers/i2c/busses/i2c-isch.c
5040 F:      drivers/i2c/busses/i2c-nforce2.c
5041 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5042 F:      drivers/i2c/busses/i2c-piix4.c
5043 F:      drivers/i2c/busses/i2c-sis5595.c
5044 F:      drivers/i2c/busses/i2c-sis630.c
5045 F:      drivers/i2c/busses/i2c-sis96x.c
5046 F:      drivers/i2c/busses/i2c-via.c
5047 F:      drivers/i2c/busses/i2c-viapro.c
5048
5049 I2C/SMBUS ISMT DRIVER
5050 M:      Seth Heasley <seth.heasley@intel.com>
5051 M:      Neil Horman <nhorman@tuxdriver.com>
5052 L:      linux-i2c@vger.kernel.org
5053 F:      drivers/i2c/busses/i2c-ismt.c
5054 F:      Documentation/i2c/busses/i2c-ismt
5055
5056 I2C/SMBUS STUB DRIVER
5057 M:      Jean Delvare <jdelvare@suse.com>
5058 L:      linux-i2c@vger.kernel.org
5059 S:      Maintained
5060 F:      drivers/i2c/i2c-stub.c
5061
5062 I2C SUBSYSTEM
5063 M:      Wolfram Sang <wsa@the-dreams.de>
5064 L:      linux-i2c@vger.kernel.org
5065 W:      https://i2c.wiki.kernel.org/
5066 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5068 S:      Maintained
5069 F:      Documentation/devicetree/bindings/i2c/
5070 F:      Documentation/i2c/
5071 F:      drivers/i2c/
5072 F:      include/linux/i2c.h
5073 F:      include/linux/i2c-*.h
5074 F:      include/uapi/linux/i2c.h
5075 F:      include/uapi/linux/i2c-*.h
5076
5077 I2C ACPI SUPPORT
5078 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5079 L:      linux-i2c@vger.kernel.org
5080 L:      linux-acpi@vger.kernel.org
5081 S:      Maintained
5082
5083 I2C-TAOS-EVM DRIVER
5084 M:      Jean Delvare <jdelvare@suse.com>
5085 L:      linux-i2c@vger.kernel.org
5086 S:      Maintained
5087 F:      Documentation/i2c/busses/i2c-taos-evm
5088 F:      drivers/i2c/busses/i2c-taos-evm.c
5089
5090 I2C-TINY-USB DRIVER
5091 M:      Till Harbaum <till@harbaum.org>
5092 L:      linux-i2c@vger.kernel.org
5093 W:      http://www.harbaum.org/till/i2c_tiny_usb
5094 S:      Maintained
5095 F:      drivers/i2c/busses/i2c-tiny-usb.c
5096
5097 i386 BOOT CODE
5098 M:      "H. Peter Anvin" <hpa@zytor.com>
5099 S:      Maintained
5100 F:      arch/x86/boot/
5101
5102 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5103 M:      "H. Peter Anvin" <hpa@zytor.com>
5104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5105 S:      Maintained
5106
5107 IA64 (Itanium) PLATFORM
5108 M:      Tony Luck <tony.luck@intel.com>
5109 M:      Fenghua Yu <fenghua.yu@intel.com>
5110 L:      linux-ia64@vger.kernel.org
5111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5112 S:      Maintained
5113 F:      arch/ia64/
5114
5115 IBM Power VMX Cryptographic instructions
5116 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5117 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5118 L:      linux-crypto@vger.kernel.org
5119 S:      Supported
5120 F:      drivers/crypto/vmx/Makefile
5121 F:      drivers/crypto/vmx/Kconfig
5122 F:      drivers/crypto/vmx/vmx.c
5123 F:      drivers/crypto/vmx/aes*
5124 F:      drivers/crypto/vmx/ghash*
5125 F:      drivers/crypto/vmx/ppc-xlate.pl
5126
5127 IBM Power in-Nest Crypto Acceleration
5128 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5129 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5130 L:      linux-crypto@vger.kernel.org
5131 S:      Supported
5132 F:      drivers/crypto/nx/Makefile
5133 F:      drivers/crypto/nx/Kconfig
5134 F:      drivers/crypto/nx/nx-aes*
5135 F:      drivers/crypto/nx/nx-sha*
5136 F:      drivers/crypto/nx/nx.*
5137 F:      drivers/crypto/nx/nx_csbcpb.h
5138 F:      drivers/crypto/nx/nx_debugfs.h
5139
5140 IBM Power 842 compression accelerator
5141 M:      Dan Streetman <ddstreet@ieee.org>
5142 S:      Supported
5143 F:      drivers/crypto/nx/Makefile
5144 F:      drivers/crypto/nx/Kconfig
5145 F:      drivers/crypto/nx/nx-842*
5146 F:      include/linux/sw842.h
5147 F:      crypto/842.c
5148 F:      lib/842/
5149
5150 IBM Power Linux RAID adapter
5151 M:      Brian King <brking@us.ibm.com>
5152 S:      Supported
5153 F:      drivers/scsi/ipr.*
5154
5155 IBM Power Virtual Ethernet Device Driver
5156 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5157 L:      netdev@vger.kernel.org
5158 S:      Supported
5159 F:      drivers/net/ethernet/ibm/ibmveth.*
5160
5161 IBM Power Virtual SCSI Device Drivers
5162 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5163 L:      linux-scsi@vger.kernel.org
5164 S:      Supported
5165 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5166 F:      drivers/scsi/ibmvscsi/viosrp.h
5167
5168 IBM Power Virtual FC Device Drivers
5169 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5170 L:      linux-scsi@vger.kernel.org
5171 S:      Supported
5172 F:      drivers/scsi/ibmvscsi/ibmvfc*
5173
5174 IBM ServeRAID RAID DRIVER
5175 S:      Orphan
5176 F:      drivers/scsi/ips.*
5177
5178 ICH LPC AND GPIO DRIVER
5179 M:      Peter Tyser <ptyser@xes-inc.com>
5180 S:      Maintained
5181 F:      drivers/mfd/lpc_ich.c
5182 F:      drivers/gpio/gpio-ich.c
5183
5184 IDE SUBSYSTEM
5185 M:      "David S. Miller" <davem@davemloft.net>
5186 L:      linux-ide@vger.kernel.org
5187 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5189 S:      Maintained
5190 F:      Documentation/ide/
5191 F:      drivers/ide/
5192 F:      include/linux/ide.h
5193
5194 IDEAPAD LAPTOP EXTRAS DRIVER
5195 M:      Ike Panhc <ike.pan@canonical.com>
5196 L:      platform-driver-x86@vger.kernel.org
5197 W:      http://launchpad.net/ideapad-laptop
5198 S:      Maintained
5199 F:      drivers/platform/x86/ideapad-laptop.c
5200
5201 IDEAPAD LAPTOP SLIDEBAR DRIVER
5202 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5203 L:      linux-input@vger.kernel.org
5204 W:      https://github.com/o2genum/ideapad-slidebar
5205 S:      Maintained
5206 F:      drivers/input/misc/ideapad_slidebar.c
5207
5208 IDE/ATAPI DRIVERS
5209 M:      Borislav Petkov <bp@alien8.de>
5210 L:      linux-ide@vger.kernel.org
5211 S:      Maintained
5212 F:      Documentation/cdrom/ide-cd
5213 F:      drivers/ide/ide-cd*
5214
5215 IDLE-I7300
5216 M:      Andy Henroid <andrew.d.henroid@intel.com>
5217 L:      linux-pm@vger.kernel.org
5218 S:      Supported
5219 F:      drivers/idle/i7300_idle.c
5220
5221 IEEE 802.15.4 SUBSYSTEM
5222 M:      Alexander Aring <alex.aring@gmail.com>
5223 L:      linux-wpan@vger.kernel.org
5224 W:      https://github.com/linux-wpan
5225 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5226 S:      Maintained
5227 F:      net/ieee802154/
5228 F:      net/mac802154/
5229 F:      drivers/net/ieee802154/
5230 F:      include/linux/nl802154.h
5231 F:      include/linux/ieee802154.h
5232 F:      include/net/nl802154.h
5233 F:      include/net/mac802154.h
5234 F:      include/net/af_ieee802154.h
5235 F:      include/net/cfg802154.h
5236 F:      include/net/ieee802154_netdev.h
5237 F:      Documentation/networking/ieee802154.txt
5238
5239 IGORPLUG-USB IR RECEIVER
5240 M:      Sean Young <sean@mess.org>
5241 L:      linux-media@vger.kernel.org
5242 S:      Maintained
5243 F:      drivers/media/rc/igorplugusb.c
5244
5245 IGUANAWORKS USB IR TRANSCEIVER
5246 M:      Sean Young <sean@mess.org>
5247 L:      linux-media@vger.kernel.org
5248 S:      Maintained
5249 F:      drivers/media/rc/iguanair.c
5250
5251 IIO SUBSYSTEM AND DRIVERS
5252 M:      Jonathan Cameron <jic23@kernel.org>
5253 R:      Hartmut Knaack <knaack.h@gmx.de>
5254 R:      Lars-Peter Clausen <lars@metafoo.de>
5255 R:      Peter Meerwald <pmeerw@pmeerw.net>
5256 L:      linux-iio@vger.kernel.org
5257 S:      Maintained
5258 F:      drivers/iio/
5259 F:      drivers/staging/iio/
5260 F:      include/linux/iio/
5261 F:      tools/iio/
5262
5263 IKANOS/ADI EAGLE ADSL USB DRIVER
5264 M:      Matthieu Castet <castet.matthieu@free.fr>
5265 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5266 S:      Maintained
5267 F:      drivers/usb/atm/ueagle-atm.c
5268
5269 INA209 HARDWARE MONITOR DRIVER
5270 M:      Guenter Roeck <linux@roeck-us.net>
5271 L:      lm-sensors@lm-sensors.org
5272 S:      Maintained
5273 F:      Documentation/hwmon/ina209
5274 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5275 F:      drivers/hwmon/ina209.c
5276
5277 INA2XX HARDWARE MONITOR DRIVER
5278 M:      Guenter Roeck <linux@roeck-us.net>
5279 L:      lm-sensors@lm-sensors.org
5280 S:      Maintained
5281 F:      Documentation/hwmon/ina2xx
5282 F:      drivers/hwmon/ina2xx.c
5283 F:      include/linux/platform_data/ina2xx.h
5284
5285 INDUSTRY PACK SUBSYSTEM (IPACK)
5286 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5287 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5288 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5289 L:      industrypack-devel@lists.sourceforge.net
5290 W:      http://industrypack.sourceforge.net
5291 S:      Maintained
5292 F:      drivers/ipack/
5293
5294 INGENIC JZ4780 DMA Driver
5295 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5296 S:      Maintained
5297 F:      drivers/dma/dma-jz4780.c
5298
5299 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5300 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5301 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5302 L:      linux-ima-devel@lists.sourceforge.net
5303 L:      linux-ima-user@lists.sourceforge.net
5304 L:      linux-security-module@vger.kernel.org
5305 S:      Supported
5306 F:      security/integrity/ima/
5307
5308 IMGTEC IR DECODER DRIVER
5309 M:      James Hogan <james.hogan@imgtec.com>
5310 S:      Maintained
5311 F:      drivers/media/rc/img-ir/
5312
5313 IMS TWINTURBO FRAMEBUFFER DRIVER
5314 L:      linux-fbdev@vger.kernel.org
5315 S:      Orphan
5316 F:      drivers/video/fbdev/imsttfb.c
5317
5318 INFINIBAND SUBSYSTEM
5319 M:      Doug Ledford <dledford@redhat.com>
5320 M:      Sean Hefty <sean.hefty@intel.com>
5321 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5322 L:      linux-rdma@vger.kernel.org
5323 W:      http://www.openfabrics.org/
5324 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5326 S:      Supported
5327 F:      Documentation/infiniband/
5328 F:      drivers/infiniband/
5329 F:      include/uapi/linux/if_infiniband.h
5330 F:      include/uapi/rdma/
5331 F:      include/rdma/
5332
5333 INOTIFY
5334 M:      John McCutchan <john@johnmccutchan.com>
5335 M:      Robert Love <rlove@rlove.org>
5336 M:      Eric Paris <eparis@parisplace.org>
5337 S:      Maintained
5338 F:      Documentation/filesystems/inotify.txt
5339 F:      fs/notify/inotify/
5340 F:      include/linux/inotify.h
5341 F:      include/uapi/linux/inotify.h
5342
5343 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5344 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5345 L:      linux-input@vger.kernel.org
5346 Q:      http://patchwork.kernel.org/project/linux-input/list/
5347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5348 S:      Maintained
5349 F:      drivers/input/
5350 F:      include/linux/input.h
5351 F:      include/uapi/linux/input.h
5352 F:      include/linux/input/
5353
5354 INPUT MULTITOUCH (MT) PROTOCOL
5355 M:      Henrik Rydberg <rydberg@bitmath.org>
5356 L:      linux-input@vger.kernel.org
5357 S:      Odd fixes
5358 F:      Documentation/input/multi-touch-protocol.txt
5359 F:      drivers/input/input-mt.c
5360 K:      \b(ABS|SYN)_MT_
5361
5362 INTEL ASoC BDW/HSW DRIVERS
5363 M:      Jie Yang <yang.jie@linux.intel.com>
5364 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5365 S:      Supported
5366 F:      sound/soc/intel/common/sst-dsp*
5367 F:      sound/soc/intel/common/sst-firmware.c
5368 F:      sound/soc/intel/boards/broadwell.c
5369 F:      sound/soc/intel/haswell/
5370
5371 INTEL C600 SERIES SAS CONTROLLER DRIVER
5372 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5373 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5374 L:      linux-scsi@vger.kernel.org
5375 T:      git git://git.code.sf.net/p/intel-sas/isci
5376 S:      Supported
5377 F:      drivers/scsi/isci/
5378
5379 INTEL IDLE DRIVER
5380 M:      Len Brown <lenb@kernel.org>
5381 L:      linux-pm@vger.kernel.org
5382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5383 S:      Supported
5384 F:      drivers/idle/intel_idle.c
5385
5386 INTEL PSTATE DRIVER
5387 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5388 L:      linux-pm@vger.kernel.org
5389 S:      Supported
5390 F:      drivers/cpufreq/intel_pstate.c
5391
5392 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5393 M:      Maik Broemme <mbroemme@plusserver.de>
5394 L:      linux-fbdev@vger.kernel.org
5395 S:      Maintained
5396 F:      Documentation/fb/intelfb.txt
5397 F:      drivers/video/fbdev/intelfb/
5398
5399 INTEL 810/815 FRAMEBUFFER DRIVER
5400 M:      Antonino Daplas <adaplas@gmail.com>
5401 L:      linux-fbdev@vger.kernel.org
5402 S:      Maintained
5403 F:      drivers/video/fbdev/i810/
5404
5405 INTEL MENLOW THERMAL DRIVER
5406 M:      Sujith Thomas <sujith.thomas@intel.com>
5407 L:      platform-driver-x86@vger.kernel.org
5408 W:      https://01.org/linux-acpi
5409 S:      Supported
5410 F:      drivers/platform/x86/intel_menlow.c
5411
5412 INTEL IA32 MICROCODE UPDATE SUPPORT
5413 M:      Borislav Petkov <bp@alien8.de>
5414 S:      Maintained
5415 F:      arch/x86/kernel/cpu/microcode/core*
5416 F:      arch/x86/kernel/cpu/microcode/intel*
5417
5418 INTEL I/OAT DMA DRIVER
5419 M:      Dave Jiang <dave.jiang@intel.com>
5420 R:      Dan Williams <dan.j.williams@intel.com>
5421 L:      dmaengine@vger.kernel.org
5422 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5423 S:      Supported
5424 F:      drivers/dma/ioat*
5425
5426 INTEL IOMMU (VT-d)
5427 M:      David Woodhouse <dwmw2@infradead.org>
5428 L:      iommu@lists.linux-foundation.org
5429 T:      git git://git.infradead.org/iommu-2.6.git
5430 S:      Supported
5431 F:      drivers/iommu/intel-iommu.c
5432 F:      include/linux/intel-iommu.h
5433
5434 INTEL IOP-ADMA DMA DRIVER
5435 R:      Dan Williams <dan.j.williams@intel.com>
5436 S:      Odd fixes
5437 F:      drivers/dma/iop-adma.c
5438
5439 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5440 M:      Krzysztof Halasa <khalasa@piap.pl>
5441 S:      Maintained
5442 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5443 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5444 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5445 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5446 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5447 F:      drivers/net/wan/ixp4xx_hss.c
5448
5449 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5450 M:      Deepak Saxena <dsaxena@plexity.net>
5451 S:      Maintained
5452 F:      drivers/char/hw_random/ixp4xx-rng.c
5453
5454 INTEL ETHERNET DRIVERS
5455 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5456 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5457 R:      Shannon Nelson <shannon.nelson@intel.com>
5458 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5459 R:      Don Skidmore <donald.c.skidmore@intel.com>
5460 R:      Matthew Vick <matthew.vick@intel.com>
5461 R:      John Ronciak <john.ronciak@intel.com>
5462 R:      Mitch Williams <mitch.a.williams@intel.com>
5463 L:      intel-wired-lan@lists.osuosl.org
5464 W:      http://www.intel.com/support/feedback.htm
5465 W:      http://e1000.sourceforge.net/
5466 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5469 S:      Supported
5470 F:      Documentation/networking/e100.txt
5471 F:      Documentation/networking/e1000.txt
5472 F:      Documentation/networking/e1000e.txt
5473 F:      Documentation/networking/igb.txt
5474 F:      Documentation/networking/igbvf.txt
5475 F:      Documentation/networking/ixgb.txt
5476 F:      Documentation/networking/ixgbe.txt
5477 F:      Documentation/networking/ixgbevf.txt
5478 F:      Documentation/networking/i40e.txt
5479 F:      Documentation/networking/i40evf.txt
5480 F:      drivers/net/ethernet/intel/
5481 F:      drivers/net/ethernet/intel/*/
5482
5483 INTEL-MID GPIO DRIVER
5484 M:      David Cohen <david.a.cohen@linux.intel.com>
5485 L:      linux-gpio@vger.kernel.org
5486 S:      Maintained
5487 F:      drivers/gpio/gpio-intel-mid.c
5488
5489 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5490 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5491 L:      linux-wireless@vger.kernel.org
5492 S:      Maintained
5493 F:      Documentation/networking/README.ipw2100
5494 F:      Documentation/networking/README.ipw2200
5495 F:      drivers/net/wireless/ipw2x00/
5496
5497 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5498 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5499 M:      Gang Wei <gang.wei@intel.com>
5500 M:      Shane Wang <shane.wang@intel.com>
5501 L:      tboot-devel@lists.sourceforge.net
5502 W:      http://tboot.sourceforge.net
5503 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5504 S:      Supported
5505 F:      Documentation/intel_txt.txt
5506 F:      include/linux/tboot.h
5507 F:      arch/x86/kernel/tboot.c
5508
5509 INTEL WIRELESS WIMAX CONNECTION 2400
5510 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5511 M:      linux-wimax@intel.com
5512 L:      wimax@linuxwimax.org (subscribers-only)
5513 S:      Supported
5514 W:      http://linuxwimax.org
5515 F:      Documentation/wimax/README.i2400m
5516 F:      drivers/net/wimax/i2400m/
5517 F:      include/uapi/linux/wimax/i2400m.h
5518
5519 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5520 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5521 L:      linux-wireless@vger.kernel.org
5522 S:      Supported
5523 F:      drivers/net/wireless/iwlegacy/
5524
5525 INTEL WIRELESS WIFI LINK (iwlwifi)
5526 M:      Johannes Berg <johannes.berg@intel.com>
5527 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5528 M:      Intel Linux Wireless <ilw@linux.intel.com>
5529 L:      linux-wireless@vger.kernel.org
5530 W:      http://intellinuxwireless.org
5531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5532 S:      Supported
5533 F:      drivers/net/wireless/iwlwifi/
5534
5535 INTEL MANAGEMENT ENGINE (mei)
5536 M:      Tomas Winkler <tomas.winkler@intel.com>
5537 L:      linux-kernel@vger.kernel.org
5538 S:      Supported
5539 F:      include/uapi/linux/mei.h
5540 F:      include/linux/mei_cl_bus.h
5541 F:      drivers/misc/mei/*
5542 F:      Documentation/misc-devices/mei/*
5543
5544 INTEL PMC IPC DRIVER
5545 M:      Zha Qipeng<qipeng.zha@intel.com>
5546 L:      platform-driver-x86@vger.kernel.org
5547 S:      Maintained
5548 F:      drivers/platform/x86/intel_pmc_ipc.c
5549 F:      arch/x86/include/asm/intel_pmc_ipc.h
5550
5551 IOC3 ETHERNET DRIVER
5552 M:      Ralf Baechle <ralf@linux-mips.org>
5553 L:      linux-mips@linux-mips.org
5554 S:      Maintained
5555 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5556
5557 IOC3 SERIAL DRIVER
5558 M:      Pat Gefre <pfg@sgi.com>
5559 L:      linux-serial@vger.kernel.org
5560 S:      Maintained
5561 F:      drivers/tty/serial/ioc3_serial.c
5562
5563 IOMMU DRIVERS
5564 M:      Joerg Roedel <joro@8bytes.org>
5565 L:      iommu@lists.linux-foundation.org
5566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5567 S:      Maintained
5568 F:      drivers/iommu/
5569
5570 IP MASQUERADING
5571 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5572 S:      Maintained
5573 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5574
5575 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5576 M:      Francois Romieu <romieu@fr.zoreil.com>
5577 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5578 L:      netdev@vger.kernel.org
5579 S:      Maintained
5580 F:      drivers/net/ethernet/icplus/ipg.*
5581
5582 IPATH DRIVER
5583 M:      Mike Marciniszyn <infinipath@intel.com>
5584 L:      linux-rdma@vger.kernel.org
5585 S:      Maintained
5586 F:      drivers/infiniband/hw/ipath/
5587
5588 IPMI SUBSYSTEM
5589 M:      Corey Minyard <minyard@acm.org>
5590 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5591 W:      http://openipmi.sourceforge.net/
5592 S:      Supported
5593 F:      Documentation/IPMI.txt
5594 F:      drivers/char/ipmi/
5595 F:      include/linux/ipmi*
5596 F:      include/uapi/linux/ipmi*
5597
5598 QCOM AUDIO (ASoC) DRIVERS
5599 M:      Patrick Lai <plai@codeaurora.org>
5600 M:      Banajit Goswami <bgoswami@codeaurora.org>
5601 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5602 S:      Supported
5603 F:      sound/soc/qcom/
5604
5605 IPS SCSI RAID DRIVER
5606 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5607 L:      linux-scsi@vger.kernel.org
5608 W:      http://www.adaptec.com/
5609 S:      Maintained
5610 F:      drivers/scsi/ips*
5611
5612 IPVS
5613 M:      Wensong Zhang <wensong@linux-vs.org>
5614 M:      Simon Horman <horms@verge.net.au>
5615 M:      Julian Anastasov <ja@ssi.bg>
5616 L:      netdev@vger.kernel.org
5617 L:      lvs-devel@vger.kernel.org
5618 S:      Maintained
5619 F:      Documentation/networking/ipvs-sysctl.txt
5620 F:      include/net/ip_vs.h
5621 F:      include/uapi/linux/ip_vs.h
5622 F:      net/netfilter/ipvs/
5623
5624 IPWIRELESS DRIVER
5625 M:      Jiri Kosina <jikos@kernel.org>
5626 M:      David Sterba <dsterba@suse.com>
5627 S:      Odd Fixes
5628 F:      drivers/tty/ipwireless/
5629
5630 IPX NETWORK LAYER
5631 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5632 L:      netdev@vger.kernel.org
5633 S:      Maintained
5634 F:      include/net/ipx.h
5635 F:      include/uapi/linux/ipx.h
5636 F:      net/ipx/
5637
5638 IRDA SUBSYSTEM
5639 M:      Samuel Ortiz <samuel@sortiz.org>
5640 L:      irda-users@lists.sourceforge.net (subscribers-only)
5641 L:      netdev@vger.kernel.org
5642 W:      http://irda.sourceforge.net/
5643 S:      Maintained
5644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5645 F:      Documentation/networking/irda.txt
5646 F:      drivers/net/irda/
5647 F:      include/net/irda/
5648 F:      net/irda/
5649
5650 IRQ SUBSYSTEM
5651 M:      Thomas Gleixner <tglx@linutronix.de>
5652 L:      linux-kernel@vger.kernel.org
5653 S:      Maintained
5654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5655 F:      kernel/irq/
5656
5657 IRQCHIP DRIVERS
5658 M:      Thomas Gleixner <tglx@linutronix.de>
5659 M:      Jason Cooper <jason@lakedaemon.net>
5660 M:      Marc Zyngier <marc.zyngier@arm.com>
5661 L:      linux-kernel@vger.kernel.org
5662 S:      Maintained
5663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5664 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5665 F:      Documentation/devicetree/bindings/interrupt-controller/
5666 F:      drivers/irqchip/
5667
5668 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5669 M:      Jiang Liu <jiang.liu@linux.intel.com>
5670 M:      Marc Zyngier <marc.zyngier@arm.com>
5671 S:      Maintained
5672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5673 F:      Documentation/IRQ-domain.txt
5674 F:      include/linux/irqdomain.h
5675 F:      kernel/irq/irqdomain.c
5676 F:      kernel/irq/msi.c
5677
5678 ISAPNP
5679 M:      Jaroslav Kysela <perex@perex.cz>
5680 S:      Maintained
5681 F:      Documentation/isapnp.txt
5682 F:      drivers/pnp/isapnp/
5683 F:      include/linux/isapnp.h
5684
5685 ISA RADIO MODULE
5686 M:      Hans Verkuil <hverkuil@xs4all.nl>
5687 L:      linux-media@vger.kernel.org
5688 T:      git git://linuxtv.org/media_tree.git
5689 W:      http://linuxtv.org
5690 S:      Maintained
5691 F:      drivers/media/radio/radio-isa*
5692
5693 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5694 M:      Peter Jones <pjones@redhat.com>
5695 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5696 S:      Maintained
5697 F:      drivers/firmware/iscsi_ibft*
5698
5699 ISCSI
5700 M:      Mike Christie <michaelc@cs.wisc.edu>
5701 L:      open-iscsi@googlegroups.com
5702 W:      www.open-iscsi.org
5703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5704 S:      Maintained
5705 F:      drivers/scsi/*iscsi*
5706 F:      include/scsi/*iscsi*
5707
5708 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5709 M:      Or Gerlitz <ogerlitz@mellanox.com>
5710 M:      Sagi Grimberg <sagig@mellanox.com>
5711 M:      Roi Dayan <roid@mellanox.com>
5712 L:      linux-rdma@vger.kernel.org
5713 S:      Supported
5714 W:      http://www.openfabrics.org
5715 W:      www.open-iscsi.org
5716 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5717 F:      drivers/infiniband/ulp/iser/
5718
5719 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5720 M:      Sagi Grimberg <sagig@mellanox.com>
5721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5722 L:      linux-rdma@vger.kernel.org
5723 L:      target-devel@vger.kernel.org
5724 S:      Supported
5725 W:      http://www.linux-iscsi.org
5726 F:      drivers/infiniband/ulp/isert
5727
5728 ISDN SUBSYSTEM
5729 M:      Karsten Keil <isdn@linux-pingi.de>
5730 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5731 L:      netdev@vger.kernel.org
5732 W:      http://www.isdn4linux.de
5733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5734 S:      Maintained
5735 F:      Documentation/isdn/
5736 F:      drivers/isdn/
5737 F:      include/linux/isdn.h
5738 F:      include/linux/isdn/
5739 F:      include/uapi/linux/isdn.h
5740 F:      include/uapi/linux/isdn/
5741
5742 ISDN SUBSYSTEM (Eicon active card driver)
5743 M:      Armin Schindler <mac@melware.de>
5744 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5745 W:      http://www.melware.de
5746 S:      Maintained
5747 F:      drivers/isdn/hardware/eicon/
5748
5749 IT87 HARDWARE MONITORING DRIVER
5750 M:      Jean Delvare <jdelvare@suse.com>
5751 L:      lm-sensors@lm-sensors.org
5752 S:      Maintained
5753 F:      Documentation/hwmon/it87
5754 F:      drivers/hwmon/it87.c
5755
5756 IT913X MEDIA DRIVER
5757 M:      Antti Palosaari <crope@iki.fi>
5758 L:      linux-media@vger.kernel.org
5759 W:      http://linuxtv.org/
5760 W:      http://palosaari.fi/linux/
5761 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5762 T:      git git://linuxtv.org/anttip/media_tree.git
5763 S:      Maintained
5764 F:      drivers/media/tuners/it913x*
5765
5766 IVTV VIDEO4LINUX DRIVER
5767 M:      Andy Walls <awalls@md.metrocast.net>
5768 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5769 L:      linux-media@vger.kernel.org
5770 T:      git git://linuxtv.org/media_tree.git
5771 W:      http://www.ivtvdriver.org
5772 S:      Maintained
5773 F:      Documentation/video4linux/*.ivtv
5774 F:      drivers/media/pci/ivtv/
5775 F:      include/uapi/linux/ivtv*
5776
5777 IX2505V MEDIA DRIVER
5778 M:      Malcolm Priestley <tvboxspy@gmail.com>
5779 L:      linux-media@vger.kernel.org
5780 W:      http://linuxtv.org/
5781 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5782 S:      Maintained
5783 F:      drivers/media/dvb-frontends/ix2505v*
5784
5785 JC42.4 TEMPERATURE SENSOR DRIVER
5786 M:      Guenter Roeck <linux@roeck-us.net>
5787 L:      lm-sensors@lm-sensors.org
5788 S:      Maintained
5789 F:      drivers/hwmon/jc42.c
5790 F:      Documentation/hwmon/jc42
5791
5792 JFS FILESYSTEM
5793 M:      Dave Kleikamp <shaggy@kernel.org>
5794 L:      jfs-discussion@lists.sourceforge.net
5795 W:      http://jfs.sourceforge.net/
5796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5797 S:      Maintained
5798 F:      Documentation/filesystems/jfs.txt
5799 F:      fs/jfs/
5800
5801 JME NETWORK DRIVER
5802 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5803 L:      netdev@vger.kernel.org
5804 S:      Maintained
5805 F:      drivers/net/ethernet/jme.*
5806
5807 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5808 M:      David Woodhouse <dwmw2@infradead.org>
5809 L:      linux-mtd@lists.infradead.org
5810 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5811 S:      Maintained
5812 F:      fs/jffs2/
5813 F:      include/uapi/linux/jffs2.h
5814
5815 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5816 M:      "Theodore Ts'o" <tytso@mit.edu>
5817 M:      Jan Kara <jack@suse.com>
5818 L:      linux-ext4@vger.kernel.org
5819 S:      Maintained
5820 F:      fs/jbd2/
5821 F:      include/linux/jbd2.h
5822
5823 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5824 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5825 L:      linux-media@vger.kernel.org
5826 S:      Maintained
5827 F:      drivers/media/platform/rcar_jpu.c
5828
5829 JSM Neo PCI based serial card
5830 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5831 L:      linux-serial@vger.kernel.org
5832 S:      Maintained
5833 F:      drivers/tty/serial/jsm/
5834
5835 K10TEMP HARDWARE MONITORING DRIVER
5836 M:      Clemens Ladisch <clemens@ladisch.de>
5837 L:      lm-sensors@lm-sensors.org
5838 S:      Maintained
5839 F:      Documentation/hwmon/k10temp
5840 F:      drivers/hwmon/k10temp.c
5841
5842 K8TEMP HARDWARE MONITORING DRIVER
5843 M:      Rudolf Marek <r.marek@assembler.cz>
5844 L:      lm-sensors@lm-sensors.org
5845 S:      Maintained
5846 F:      Documentation/hwmon/k8temp
5847 F:      drivers/hwmon/k8temp.c
5848
5849 KCONFIG
5850 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5851 L:      linux-kbuild@vger.kernel.org
5852 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5853 S:      Maintained
5854 F:      Documentation/kbuild/kconfig-language.txt
5855 F:      scripts/kconfig/
5856
5857 KDUMP
5858 M:      Vivek Goyal <vgoyal@redhat.com>
5859 M:      Haren Myneni <hbabu@us.ibm.com>
5860 L:      kexec@lists.infradead.org
5861 W:      http://lse.sourceforge.net/kdump/
5862 S:      Maintained
5863 F:      Documentation/kdump/
5864
5865 KEENE FM RADIO TRANSMITTER DRIVER
5866 M:      Hans Verkuil <hverkuil@xs4all.nl>
5867 L:      linux-media@vger.kernel.org
5868 T:      git git://linuxtv.org/media_tree.git
5869 W:      http://linuxtv.org
5870 S:      Maintained
5871 F:      drivers/media/radio/radio-keene*
5872
5873 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5874 M:      Ian Kent <raven@themaw.net>
5875 L:      autofs@vger.kernel.org
5876 S:      Maintained
5877 F:      fs/autofs4/
5878
5879 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5880 M:      Michal Marek <mmarek@suse.com>
5881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5883 L:      linux-kbuild@vger.kernel.org
5884 S:      Maintained
5885 F:      Documentation/kbuild/
5886 F:      Makefile
5887 F:      scripts/Makefile.*
5888 F:      scripts/basic/
5889 F:      scripts/mk*
5890 F:      scripts/package/
5891
5892 KERNEL JANITORS
5893 L:      kernel-janitors@vger.kernel.org
5894 W:      http://kernelnewbies.org/KernelJanitors
5895 S:      Odd Fixes
5896
5897 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5898 M:      "J. Bruce Fields" <bfields@fieldses.org>
5899 M:      Jeff Layton <jlayton@poochiereds.net>
5900 L:      linux-nfs@vger.kernel.org
5901 W:      http://nfs.sourceforge.net/
5902 S:      Supported
5903 F:      fs/nfsd/
5904 F:      include/uapi/linux/nfsd/
5905 F:      fs/lockd/
5906 F:      fs/nfs_common/
5907 F:      net/sunrpc/
5908 F:      include/linux/lockd/
5909 F:      include/linux/sunrpc/
5910 F:      include/uapi/linux/sunrpc/
5911
5912 KERNEL SELFTEST FRAMEWORK
5913 M:      Shuah Khan <shuahkh@osg.samsung.com>
5914 L:      linux-api@vger.kernel.org
5915 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5916 S:      Maintained
5917 F:      tools/testing/selftests
5918
5919 KERNEL VIRTUAL MACHINE (KVM)
5920 M:      Gleb Natapov <gleb@kernel.org>
5921 M:      Paolo Bonzini <pbonzini@redhat.com>
5922 L:      kvm@vger.kernel.org
5923 W:      http://www.linux-kvm.org
5924 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5925 S:      Supported
5926 F:      Documentation/*/kvm*.txt
5927 F:      Documentation/virtual/kvm/
5928 F:      arch/*/kvm/
5929 F:      arch/x86/kernel/kvm.c
5930 F:      arch/x86/kernel/kvmclock.c
5931 F:      arch/*/include/asm/kvm*
5932 F:      include/linux/kvm*
5933 F:      include/uapi/linux/kvm*
5934 F:      virt/kvm/
5935
5936 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5937 M:      Joerg Roedel <joro@8bytes.org>
5938 L:      kvm@vger.kernel.org
5939 W:      http://kvm.qumranet.com
5940 S:      Maintained
5941 F:      arch/x86/include/asm/svm.h
5942 F:      arch/x86/kvm/svm.c
5943
5944 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5945 M:      Alexander Graf <agraf@suse.com>
5946 L:      kvm-ppc@vger.kernel.org
5947 W:      http://kvm.qumranet.com
5948 T:      git git://github.com/agraf/linux-2.6.git
5949 S:      Supported
5950 F:      arch/powerpc/include/asm/kvm*
5951 F:      arch/powerpc/kvm/
5952
5953 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5954 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5955 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5956 L:      linux-s390@vger.kernel.org
5957 W:      http://www.ibm.com/developerworks/linux/linux390/
5958 S:      Supported
5959 F:      Documentation/s390/kvm.txt
5960 F:      arch/s390/include/asm/kvm*
5961 F:      arch/s390/kvm/
5962
5963 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5964 M:      Christoffer Dall <christoffer.dall@linaro.org>
5965 M:      Marc Zyngier <marc.zyngier@arm.com>
5966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5967 L:      kvmarm@lists.cs.columbia.edu
5968 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5969 S:      Supported
5970 F:      arch/arm/include/uapi/asm/kvm*
5971 F:      arch/arm/include/asm/kvm*
5972 F:      arch/arm/kvm/
5973 F:      virt/kvm/arm/
5974 F:      include/kvm/arm_*
5975
5976 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5977 M:      Christoffer Dall <christoffer.dall@linaro.org>
5978 M:      Marc Zyngier <marc.zyngier@arm.com>
5979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5980 L:      kvmarm@lists.cs.columbia.edu
5981 S:      Maintained
5982 F:      arch/arm64/include/uapi/asm/kvm*
5983 F:      arch/arm64/include/asm/kvm*
5984 F:      arch/arm64/kvm/
5985
5986 KEXEC
5987 M:      Eric Biederman <ebiederm@xmission.com>
5988 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
5989 L:      kexec@lists.infradead.org
5990 S:      Maintained
5991 F:      include/linux/kexec.h
5992 F:      include/uapi/linux/kexec.h
5993 F:      kernel/kexec.c
5994
5995 KEYS/KEYRINGS:
5996 M:      David Howells <dhowells@redhat.com>
5997 L:      keyrings@linux-nfs.org
5998 S:      Maintained
5999 F:      Documentation/security/keys.txt
6000 F:      include/linux/key.h
6001 F:      include/linux/key-type.h
6002 F:      include/keys/
6003 F:      security/keys/
6004
6005 KEYS-TRUSTED
6006 M:      David Safford <safford@us.ibm.com>
6007 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6008 L:      linux-security-module@vger.kernel.org
6009 L:      keyrings@linux-nfs.org
6010 S:      Supported
6011 F:      Documentation/security/keys-trusted-encrypted.txt
6012 F:      include/keys/trusted-type.h
6013 F:      security/keys/trusted.c
6014 F:      security/keys/trusted.h
6015
6016 KEYS-ENCRYPTED
6017 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6018 M:      David Safford <safford@us.ibm.com>
6019 L:      linux-security-module@vger.kernel.org
6020 L:      keyrings@linux-nfs.org
6021 S:      Supported
6022 F:      Documentation/security/keys-trusted-encrypted.txt
6023 F:      include/keys/encrypted-type.h
6024 F:      security/keys/encrypted-keys/
6025
6026 KGDB / KDB /debug_core
6027 M:      Jason Wessel <jason.wessel@windriver.com>
6028 W:      http://kgdb.wiki.kernel.org/
6029 L:      kgdb-bugreport@lists.sourceforge.net
6030 S:      Maintained
6031 F:      Documentation/DocBook/kgdb.tmpl
6032 F:      drivers/misc/kgdbts.c
6033 F:      drivers/tty/serial/kgdboc.c
6034 F:      include/linux/kdb.h
6035 F:      include/linux/kgdb.h
6036 F:      kernel/debug/
6037
6038 KMEMCHECK
6039 M:      Vegard Nossum <vegardno@ifi.uio.no>
6040 M:      Pekka Enberg <penberg@kernel.org>
6041 S:      Maintained
6042 F:      Documentation/kmemcheck.txt
6043 F:      arch/x86/include/asm/kmemcheck.h
6044 F:      arch/x86/mm/kmemcheck/
6045 F:      include/linux/kmemcheck.h
6046 F:      mm/kmemcheck.c
6047
6048 KMEMLEAK
6049 M:      Catalin Marinas <catalin.marinas@arm.com>
6050 S:      Maintained
6051 F:      Documentation/kmemleak.txt
6052 F:      include/linux/kmemleak.h
6053 F:      mm/kmemleak.c
6054 F:      mm/kmemleak-test.c
6055
6056 KPROBES
6057 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6058 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6059 M:      "David S. Miller" <davem@davemloft.net>
6060 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6061 S:      Maintained
6062 F:      Documentation/kprobes.txt
6063 F:      include/linux/kprobes.h
6064 F:      kernel/kprobes.c
6065
6066 KS0108 LCD CONTROLLER DRIVER
6067 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6068 W:      http://miguelojeda.es/auxdisplay.htm
6069 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6070 S:      Maintained
6071 F:      Documentation/auxdisplay/ks0108
6072 F:      drivers/auxdisplay/ks0108.c
6073 F:      include/linux/ks0108.h
6074
6075 LAPB module
6076 L:      linux-x25@vger.kernel.org
6077 S:      Orphan
6078 F:      Documentation/networking/lapb-module.txt
6079 F:      include/*/lapb.h
6080 F:      net/lapb/
6081
6082 LASI 53c700 driver for PARISC
6083 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6084 L:      linux-scsi@vger.kernel.org
6085 S:      Maintained
6086 F:      Documentation/scsi/53c700.txt
6087 F:      drivers/scsi/53c700*
6088
6089 LED SUBSYSTEM
6090 M:      Richard Purdie <rpurdie@rpsys.net>
6091 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6092 L:      linux-leds@vger.kernel.org
6093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6094 S:      Maintained
6095 F:      drivers/leds/
6096 F:      include/linux/leds.h
6097
6098 LEGACY EEPROM DRIVER
6099 M:      Jean Delvare <jdelvare@suse.com>
6100 S:      Maintained
6101 F:      Documentation/misc-devices/eeprom
6102 F:      drivers/misc/eeprom/eeprom.c
6103
6104 LEGO USB Tower driver
6105 M:      Juergen Stuber <starblue@users.sourceforge.net>
6106 L:      legousb-devel@lists.sourceforge.net
6107 W:      http://legousb.sourceforge.net/
6108 S:      Maintained
6109 F:      drivers/usb/misc/legousbtower.c
6110
6111 LG2160 MEDIA DRIVER
6112 M:      Michael Krufky <mkrufky@linuxtv.org>
6113 L:      linux-media@vger.kernel.org
6114 W:      http://linuxtv.org/
6115 W:      http://github.com/mkrufky
6116 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6117 T:      git git://linuxtv.org/mkrufky/tuners.git
6118 S:      Maintained
6119 F:      drivers/media/dvb-frontends/lg2160.*
6120
6121 LGDT3305 MEDIA DRIVER
6122 M:      Michael Krufky <mkrufky@linuxtv.org>
6123 L:      linux-media@vger.kernel.org
6124 W:      http://linuxtv.org/
6125 W:      http://github.com/mkrufky
6126 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6127 T:      git git://linuxtv.org/mkrufky/tuners.git
6128 S:      Maintained
6129 F:      drivers/media/dvb-frontends/lgdt3305.*
6130
6131 LGUEST
6132 M:      Rusty Russell <rusty@rustcorp.com.au>
6133 L:      lguest@lists.ozlabs.org
6134 W:      http://lguest.ozlabs.org/
6135 S:      Odd Fixes
6136 F:      arch/x86/include/asm/lguest*.h
6137 F:      arch/x86/lguest/
6138 F:      drivers/lguest/
6139 F:      include/linux/lguest*.h
6140 F:      tools/lguest/
6141
6142 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6143 M:      Tejun Heo <tj@kernel.org>
6144 L:      linux-ide@vger.kernel.org
6145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6146 S:      Maintained
6147 F:      drivers/ata/
6148 F:      include/linux/ata.h
6149 F:      include/linux/libata.h
6150
6151 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6152 M:      Viresh Kumar <vireshk@kernel.org>
6153 L:      linux-ide@vger.kernel.org
6154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6155 S:      Maintained
6156 F:      include/linux/pata_arasan_cf_data.h
6157 F:      drivers/ata/pata_arasan_cf.c
6158
6159 LIBATA PATA DRIVERS
6160 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6161 M:      Tejun Heo <tj@kernel.org>
6162 L:      linux-ide@vger.kernel.org
6163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6164 S:      Maintained
6165 F:      drivers/ata/pata_*.c
6166 F:      drivers/ata/ata_generic.c
6167
6168 LIBATA SATA AHCI PLATFORM devices support
6169 M:      Hans de Goede <hdegoede@redhat.com>
6170 M:      Tejun Heo <tj@kernel.org>
6171 L:      linux-ide@vger.kernel.org
6172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6173 S:      Maintained
6174 F:      drivers/ata/ahci_platform.c
6175 F:      drivers/ata/libahci_platform.c
6176 F:      include/linux/ahci_platform.h
6177
6178 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6179 M:      Mikael Pettersson <mikpelinux@gmail.com>
6180 L:      linux-ide@vger.kernel.org
6181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6182 S:      Maintained
6183 F:      drivers/ata/sata_promise.*
6184
6185 LIBLOCKDEP
6186 M:      Sasha Levin <sasha.levin@oracle.com>
6187 S:      Maintained
6188 F:      tools/lib/lockdep/
6189
6190 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6191 M:      Dan Williams <dan.j.williams@intel.com>
6192 L:      linux-nvdimm@lists.01.org
6193 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6194 S:      Supported
6195 F:      drivers/nvdimm/*
6196 F:      include/linux/nd.h
6197 F:      include/linux/libnvdimm.h
6198 F:      include/uapi/linux/ndctl.h
6199
6200 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6201 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6202 L:      linux-nvdimm@lists.01.org
6203 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6204 S:      Supported
6205 F:      drivers/nvdimm/blk.c
6206 F:      drivers/nvdimm/region_devs.c
6207 F:      drivers/acpi/nfit*
6208
6209 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6210 M:      Vishal Verma <vishal.l.verma@intel.com>
6211 L:      linux-nvdimm@lists.01.org
6212 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6213 S:      Supported
6214 F:      drivers/nvdimm/btt*
6215
6216 LIBNVDIMM PMEM: PERSISTENT MEMORY 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/pmem.c
6222 F:      include/linux/pmem.h
6223
6224 LINUX FOR IBM pSERIES (RS/6000)
6225 M:      Paul Mackerras <paulus@au.ibm.com>
6226 W:      http://www.ibm.com/linux/ltc/projects/ppc
6227 S:      Supported
6228 F:      arch/powerpc/boot/rs6000.h
6229
6230 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6231 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6232 M:      Paul Mackerras <paulus@samba.org>
6233 M:      Michael Ellerman <mpe@ellerman.id.au>
6234 W:      http://www.penguinppc.org/
6235 L:      linuxppc-dev@lists.ozlabs.org
6236 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6238 S:      Supported
6239 F:      Documentation/powerpc/
6240 F:      arch/powerpc/
6241
6242 LINUX FOR POWER MACINTOSH
6243 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6244 W:      http://www.penguinppc.org/
6245 L:      linuxppc-dev@lists.ozlabs.org
6246 S:      Maintained
6247 F:      arch/powerpc/platforms/powermac/
6248 F:      drivers/macintosh/
6249
6250 LINUX FOR POWERPC EMBEDDED MPC5XXX
6251 M:      Anatolij Gustschin <agust@denx.de>
6252 L:      linuxppc-dev@lists.ozlabs.org
6253 T:      git git://git.denx.de/linux-denx-agust.git
6254 S:      Maintained
6255 F:      arch/powerpc/platforms/512x/
6256 F:      arch/powerpc/platforms/52xx/
6257
6258 LINUX FOR POWERPC EMBEDDED PPC4XX
6259 M:      Alistair Popple <alistair@popple.id.au>
6260 M:      Matt Porter <mporter@kernel.crashing.org>
6261 W:      http://www.penguinppc.org/
6262 L:      linuxppc-dev@lists.ozlabs.org
6263 S:      Maintained
6264 F:      arch/powerpc/platforms/40x/
6265 F:      arch/powerpc/platforms/44x/
6266
6267 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6268 L:      linuxppc-dev@lists.ozlabs.org
6269 S:      Orphan
6270 F:      arch/powerpc/*/*virtex*
6271 F:      arch/powerpc/*/*/*virtex*
6272
6273 LINUX FOR POWERPC EMBEDDED PPC8XX
6274 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6275 W:      http://www.penguinppc.org/
6276 L:      linuxppc-dev@lists.ozlabs.org
6277 S:      Maintained
6278 F:      arch/powerpc/platforms/8xx/
6279
6280 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6281 M:      Scott Wood <scottwood@freescale.com>
6282 M:      Kumar Gala <galak@kernel.crashing.org>
6283 W:      http://www.penguinppc.org/
6284 L:      linuxppc-dev@lists.ozlabs.org
6285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6286 S:      Maintained
6287 F:      arch/powerpc/platforms/83xx/
6288 F:      arch/powerpc/platforms/85xx/
6289
6290 LINUX FOR POWERPC PA SEMI PWRFICIENT
6291 M:      Olof Johansson <olof@lixom.net>
6292 L:      linuxppc-dev@lists.ozlabs.org
6293 S:      Maintained
6294 F:      arch/powerpc/platforms/pasemi/
6295 F:      drivers/*/*pasemi*
6296 F:      drivers/*/*/*pasemi*
6297
6298 LINUX SECURITY MODULE (LSM) FRAMEWORK
6299 M:      Chris Wright <chrisw@sous-sol.org>
6300 L:      linux-security-module@vger.kernel.org
6301 S:      Supported
6302
6303 LIS3LV02D ACCELEROMETER DRIVER
6304 M:      Eric Piel <eric.piel@tremplin-utc.net>
6305 S:      Maintained
6306 F:      Documentation/misc-devices/lis3lv02d
6307 F:      drivers/misc/lis3lv02d/
6308 F:      drivers/platform/x86/hp_accel.c
6309
6310 LIVE PATCHING
6311 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6312 M:      Seth Jennings <sjenning@redhat.com>
6313 M:      Jiri Kosina <jikos@kernel.org>
6314 M:      Vojtech Pavlik <vojtech@suse.com>
6315 S:      Maintained
6316 F:      kernel/livepatch/
6317 F:      include/linux/livepatch.h
6318 F:      arch/x86/include/asm/livepatch.h
6319 F:      arch/x86/kernel/livepatch.c
6320 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6321 F:      samples/livepatch/
6322 L:      live-patching@vger.kernel.org
6323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6324
6325 LLC (802.2)
6326 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6327 S:      Maintained
6328 F:      include/linux/llc.h
6329 F:      include/uapi/linux/llc.h
6330 F:      include/net/llc*
6331 F:      net/llc/
6332
6333 LM73 HARDWARE MONITOR DRIVER
6334 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6335 L:      lm-sensors@lm-sensors.org
6336 S:      Maintained
6337 F:      drivers/hwmon/lm73.c
6338
6339 LM78 HARDWARE MONITOR DRIVER
6340 M:      Jean Delvare <jdelvare@suse.com>
6341 L:      lm-sensors@lm-sensors.org
6342 S:      Maintained
6343 F:      Documentation/hwmon/lm78
6344 F:      drivers/hwmon/lm78.c
6345
6346 LM83 HARDWARE MONITOR DRIVER
6347 M:      Jean Delvare <jdelvare@suse.com>
6348 L:      lm-sensors@lm-sensors.org
6349 S:      Maintained
6350 F:      Documentation/hwmon/lm83
6351 F:      drivers/hwmon/lm83.c
6352
6353 LM90 HARDWARE MONITOR DRIVER
6354 M:      Jean Delvare <jdelvare@suse.com>
6355 L:      lm-sensors@lm-sensors.org
6356 S:      Maintained
6357 F:      Documentation/hwmon/lm90
6358 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6359 F:      drivers/hwmon/lm90.c
6360
6361 LM95234 HARDWARE MONITOR DRIVER
6362 M:      Guenter Roeck <linux@roeck-us.net>
6363 L:      lm-sensors@lm-sensors.org
6364 S:      Maintained
6365 F:      Documentation/hwmon/lm95234
6366 F:      drivers/hwmon/lm95234.c
6367
6368 LME2510 MEDIA DRIVER
6369 M:      Malcolm Priestley <tvboxspy@gmail.com>
6370 L:      linux-media@vger.kernel.org
6371 W:      http://linuxtv.org/
6372 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6373 S:      Maintained
6374 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6375
6376 LOCKDEP AND LOCKSTAT
6377 M:      Peter Zijlstra <peterz@infradead.org>
6378 M:      Ingo Molnar <mingo@redhat.com>
6379 L:      linux-kernel@vger.kernel.org
6380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6381 S:      Maintained
6382 F:      Documentation/locking/lockdep*.txt
6383 F:      Documentation/locking/lockstat.txt
6384 F:      include/linux/lockdep.h
6385 F:      kernel/locking/
6386
6387 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6388 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6389 L:      linux-ntfs-dev@lists.sourceforge.net
6390 W:      http://www.linux-ntfs.org/content/view/19/37/
6391 S:      Maintained
6392 F:      Documentation/ldm.txt
6393 F:      block/partitions/ldm.*
6394
6395 LogFS
6396 M:      Joern Engel <joern@logfs.org>
6397 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6398 L:      logfs@logfs.org
6399 W:      logfs.org
6400 S:      Maintained
6401 F:      fs/logfs/
6402
6403 LPC32XX MACHINE SUPPORT
6404 M:      Roland Stigge <stigge@antcom.de>
6405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6406 S:      Maintained
6407 F:      arch/arm/mach-lpc32xx/
6408
6409 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6410 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6411 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6412 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6413 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6414 L:      MPT-FusionLinux.pdl@avagotech.com
6415 L:      linux-scsi@vger.kernel.org
6416 W:      http://www.lsilogic.com/support
6417 S:      Supported
6418 F:      drivers/message/fusion/
6419 F:      drivers/scsi/mpt2sas/
6420 F:      drivers/scsi/mpt3sas/
6421
6422 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6423 M:      Matthew Wilcox <matthew@wil.cx>
6424 L:      linux-scsi@vger.kernel.org
6425 S:      Maintained
6426 F:      drivers/scsi/sym53c8xx_2/
6427
6428 LTC4261 HARDWARE MONITOR DRIVER
6429 M:      Guenter Roeck <linux@roeck-us.net>
6430 L:      lm-sensors@lm-sensors.org
6431 S:      Maintained
6432 F:      Documentation/hwmon/ltc4261
6433 F:      drivers/hwmon/ltc4261.c
6434
6435 LTP (Linux Test Project)
6436 M:      Mike Frysinger <vapier@gentoo.org>
6437 M:      Cyril Hrubis <chrubis@suse.cz>
6438 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
6439 M:      Jan Stancek <jstancek@redhat.com>
6440 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6441 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6442 L:      ltp-list@lists.sourceforge.net (subscribers-only)
6443 W:      http://linux-test-project.github.io/
6444 T:      git git://github.com/linux-test-project/ltp.git
6445 S:      Maintained
6446
6447 M32R ARCHITECTURE
6448 W:      http://www.linux-m32r.org/
6449 S:      Orphan
6450 F:      arch/m32r/
6451
6452 M68K ARCHITECTURE
6453 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6454 L:      linux-m68k@lists.linux-m68k.org
6455 W:      http://www.linux-m68k.org/
6456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6457 S:      Maintained
6458 F:      arch/m68k/
6459 F:      drivers/zorro/
6460
6461 M68K ON APPLE MACINTOSH
6462 M:      Joshua Thompson <funaho@jurai.org>
6463 W:      http://www.mac.linux-m68k.org/
6464 L:      linux-m68k@lists.linux-m68k.org
6465 S:      Maintained
6466 F:      arch/m68k/mac/
6467
6468 M68K ON HP9000/300
6469 M:      Philip Blundell <philb@gnu.org>
6470 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6471 S:      Maintained
6472 F:      arch/m68k/hp300/
6473
6474 M88DS3103 MEDIA DRIVER
6475 M:      Antti Palosaari <crope@iki.fi>
6476 L:      linux-media@vger.kernel.org
6477 W:      http://linuxtv.org/
6478 W:      http://palosaari.fi/linux/
6479 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6480 T:      git git://linuxtv.org/anttip/media_tree.git
6481 S:      Maintained
6482 F:      drivers/media/dvb-frontends/m88ds3103*
6483
6484 M88RS2000 MEDIA DRIVER
6485 M:      Malcolm Priestley <tvboxspy@gmail.com>
6486 L:      linux-media@vger.kernel.org
6487 W:      http://linuxtv.org/
6488 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6489 S:      Maintained
6490 F:      drivers/media/dvb-frontends/m88rs2000*
6491
6492 MA901 MASTERKIT USB FM RADIO DRIVER
6493 M:      Alexey Klimov <klimov.linux@gmail.com>
6494 L:      linux-media@vger.kernel.org
6495 T:      git git://linuxtv.org/media_tree.git
6496 S:      Maintained
6497 F:      drivers/media/radio/radio-ma901.c
6498
6499 MAC80211
6500 M:      Johannes Berg <johannes@sipsolutions.net>
6501 L:      linux-wireless@vger.kernel.org
6502 W:      http://wireless.kernel.org/
6503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6505 S:      Maintained
6506 F:      Documentation/networking/mac80211-injection.txt
6507 F:      include/net/mac80211.h
6508 F:      net/mac80211/
6509
6510 MACVLAN DRIVER
6511 M:      Patrick McHardy <kaber@trash.net>
6512 L:      netdev@vger.kernel.org
6513 S:      Maintained
6514 F:      drivers/net/macvlan.c
6515 F:      include/linux/if_macvlan.h
6516
6517 MAILBOX API
6518 M:      Jassi Brar <jassisinghbrar@gmail.com>
6519 L:      linux-kernel@vger.kernel.org
6520 S:      Maintained
6521 F:      drivers/mailbox/
6522 F:      include/linux/mailbox_client.h
6523 F:      include/linux/mailbox_controller.h
6524
6525 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6526 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6527 W:      http://www.kernel.org/doc/man-pages
6528 L:      linux-man@vger.kernel.org
6529 S:      Maintained
6530
6531 MARVELL ARMADA DRM SUPPORT
6532 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6533 S:      Maintained
6534 F:      drivers/gpu/drm/armada/
6535
6536 MARVELL 88E6352 DSA support
6537 M:      Guenter Roeck <linux@roeck-us.net>
6538 S:      Maintained
6539 F:      drivers/net/dsa/mv88e6352.c
6540
6541 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6542 M:      Mirko Lindner <mlindner@marvell.com>
6543 M:      Stephen Hemminger <stephen@networkplumber.org>
6544 L:      netdev@vger.kernel.org
6545 S:      Maintained
6546 F:      drivers/net/ethernet/marvell/sk*
6547
6548 MARVELL LIBERTAS WIRELESS DRIVER
6549 L:      libertas-dev@lists.infradead.org
6550 S:      Orphan
6551 F:      drivers/net/wireless/libertas/
6552
6553 MARVELL MV643XX ETHERNET DRIVER
6554 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6555 L:      netdev@vger.kernel.org
6556 S:      Maintained
6557 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6558 F:      include/linux/mv643xx.h
6559
6560 MARVELL MVNETA ETHERNET DRIVER
6561 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6562 L:      netdev@vger.kernel.org
6563 S:      Maintained
6564 F:      drivers/net/ethernet/marvell/mvneta.*
6565
6566 MARVELL MWIFIEX WIRELESS DRIVER
6567 M:      Amitkumar Karwar <akarwar@marvell.com>
6568 M:      Nishant Sarmukadam <nishants@marvell.com>
6569 L:      linux-wireless@vger.kernel.org
6570 S:      Maintained
6571 F:      drivers/net/wireless/mwifiex/
6572
6573 MARVELL MWL8K WIRELESS DRIVER
6574 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6575 L:      linux-wireless@vger.kernel.org
6576 S:      Odd Fixes
6577 F:      drivers/net/wireless/mwl8k.c
6578
6579 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6580 M:      Nicolas Pitre <nico@fluxnic.net>
6581 S:      Odd Fixes
6582 F:      drivers/mmc/host/mvsdio.*
6583
6584 MATROX FRAMEBUFFER DRIVER
6585 L:      linux-fbdev@vger.kernel.org
6586 S:      Orphan
6587 F:      drivers/video/fbdev/matrox/matroxfb_*
6588 F:      include/uapi/linux/matroxfb.h
6589
6590 MAX16065 HARDWARE MONITOR DRIVER
6591 M:      Guenter Roeck <linux@roeck-us.net>
6592 L:      lm-sensors@lm-sensors.org
6593 S:      Maintained
6594 F:      Documentation/hwmon/max16065
6595 F:      drivers/hwmon/max16065.c
6596
6597 MAX20751 HARDWARE MONITOR DRIVER
6598 M:      Guenter Roeck <linux@roeck-us.net>
6599 L:      lm-sensors@lm-sensors.org
6600 S:      Maintained
6601 F:      Documentation/hwmon/max20751
6602 F:      drivers/hwmon/max20751.c
6603
6604 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6605 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6606 L:      lm-sensors@lm-sensors.org
6607 S:      Maintained
6608 F:      Documentation/hwmon/max6650
6609 F:      drivers/hwmon/max6650.c
6610
6611 MAX6697 HARDWARE MONITOR DRIVER
6612 M:      Guenter Roeck <linux@roeck-us.net>
6613 L:      lm-sensors@lm-sensors.org
6614 S:      Maintained
6615 F:      Documentation/hwmon/max6697
6616 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6617 F:      drivers/hwmon/max6697.c
6618 F:      include/linux/platform_data/max6697.h
6619
6620 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6621 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6622 L:      linux-pm@vger.kernel.org
6623 S:      Supported
6624 F:      drivers/power/max14577_charger.c
6625 F:      drivers/power/max77693_charger.c
6626
6627 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6628 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6629 L:      linux-kernel@vger.kernel.org
6630 S:      Supported
6631 F:      drivers/*/*max77802.c
6632 F:      Documentation/devicetree/bindings/*/*max77802.txt
6633 F:      include/dt-bindings/*/*max77802.h
6634
6635 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6636 M:      Chanwoo Choi <cw00.choi@samsung.com>
6637 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6638 L:      linux-kernel@vger.kernel.org
6639 S:      Supported
6640 F:      drivers/*/max14577.c
6641 F:      drivers/*/max77686.c
6642 F:      drivers/*/max77693.c
6643 F:      drivers/extcon/extcon-max14577.c
6644 F:      drivers/extcon/extcon-max77693.c
6645 F:      drivers/rtc/rtc-max77686.c
6646 F:      drivers/clk/clk-max77686.c
6647 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6648 F:      Documentation/devicetree/bindings/*/max77686.txt
6649 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6650 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6651 F:      include/linux/mfd/max14577*.h
6652 F:      include/linux/mfd/max77686*.h
6653 F:      include/linux/mfd/max77693*.h
6654
6655 MAXIRADIO FM RADIO RECEIVER DRIVER
6656 M:      Hans Verkuil <hverkuil@xs4all.nl>
6657 L:      linux-media@vger.kernel.org
6658 T:      git git://linuxtv.org/media_tree.git
6659 W:      http://linuxtv.org
6660 S:      Maintained
6661 F:      drivers/media/radio/radio-maxiradio*
6662
6663 MEDIA DRIVERS FOR RENESAS - VSP1
6664 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6665 L:      linux-media@vger.kernel.org
6666 L:      linux-sh@vger.kernel.org
6667 T:      git git://linuxtv.org/media_tree.git
6668 S:      Supported
6669 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6670 F:      drivers/media/platform/vsp1/
6671
6672 MEDIA DRIVERS FOR ASCOT2E
6673 M:      Sergey Kozlov <serjk@netup.ru>
6674 L:      linux-media@vger.kernel.org
6675 W:      http://linuxtv.org
6676 W:      http://netup.tv/
6677 T:      git git://linuxtv.org/media_tree.git
6678 S:      Supported
6679 F:      drivers/media/dvb-frontends/ascot2e*
6680
6681 MEDIA DRIVERS FOR CXD2841ER
6682 M:      Sergey Kozlov <serjk@netup.ru>
6683 L:      linux-media@vger.kernel.org
6684 W:      http://linuxtv.org/
6685 W:      http://netup.tv/
6686 T:      git git://linuxtv.org/media_tree.git
6687 S:      Supported
6688 F:      drivers/media/dvb-frontends/cxd2841er*
6689
6690 MEDIA DRIVERS FOR HORUS3A
6691 M:      Sergey Kozlov <serjk@netup.ru>
6692 L:      linux-media@vger.kernel.org
6693 W:      http://linuxtv.org/
6694 W:      http://netup.tv/
6695 T:      git git://linuxtv.org/media_tree.git
6696 S:      Supported
6697 F:      drivers/media/dvb-frontends/horus3a*
6698
6699 MEDIA DRIVERS FOR LNBH25
6700 M:      Sergey Kozlov <serjk@netup.ru>
6701 L:      linux-media@vger.kernel.org
6702 W:      http://linuxtv.org/
6703 W:      http://netup.tv/
6704 T:      git git://linuxtv.org/media_tree.git
6705 S:      Supported
6706 F:      drivers/media/dvb-frontends/lnbh25*
6707
6708 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6709 M:      Sergey Kozlov <serjk@netup.ru>
6710 L:      linux-media@vger.kernel.org
6711 W:      http://linuxtv.org/
6712 W:      http://netup.tv/
6713 T:      git git://linuxtv.org/media_tree.git
6714 S:      Supported
6715 F:      drivers/media/pci/netup_unidvb/*
6716
6717 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6718 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6719 P:      LinuxTV.org Project
6720 L:      linux-media@vger.kernel.org
6721 W:      http://linuxtv.org
6722 Q:      http://patchwork.kernel.org/project/linux-media/list/
6723 T:      git git://linuxtv.org/media_tree.git
6724 S:      Maintained
6725 F:      Documentation/dvb/
6726 F:      Documentation/video4linux/
6727 F:      Documentation/DocBook/media/
6728 F:      drivers/media/
6729 F:      drivers/staging/media/
6730 F:      include/media/
6731 F:      include/uapi/linux/dvb/
6732 F:      include/uapi/linux/videodev2.h
6733 F:      include/uapi/linux/media.h
6734 F:      include/uapi/linux/v4l2-*
6735 F:      include/uapi/linux/meye.h
6736 F:      include/uapi/linux/ivtv*
6737 F:      include/uapi/linux/uvcvideo.h
6738
6739 MEDIATEK MT7601U WIRELESS LAN DRIVER
6740 M:      Jakub Kicinski <kubakici@wp.pl>
6741 L:      linux-wireless@vger.kernel.org
6742 S:      Maintained
6743 F:      drivers/net/wireless/mediatek/mt7601u/
6744
6745 MEGARAID SCSI/SAS DRIVERS
6746 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6747 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6748 M:      Uday Lingala <uday.lingala@avagotech.com>
6749 L:      megaraidlinux.pdl@avagotech.com
6750 L:      linux-scsi@vger.kernel.org
6751 W:      http://www.lsi.com
6752 S:      Maintained
6753 F:      Documentation/scsi/megaraid.txt
6754 F:      drivers/scsi/megaraid.*
6755 F:      drivers/scsi/megaraid/
6756
6757 MELLANOX ETHERNET DRIVER (mlx4_en)
6758 M:      Amir Vadai <amirv@mellanox.com>
6759 M:      Ido Shamay <idos@mellanox.com>
6760 L:      netdev@vger.kernel.org
6761 S:      Supported
6762 W:      http://www.mellanox.com
6763 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6764 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6765
6766 MELLANOX ETHERNET SWITCH DRIVERS
6767 M:      Jiri Pirko <jiri@mellanox.com>
6768 M:      Ido Schimmel <idosch@mellanox.com>
6769 L:      netdev@vger.kernel.org
6770 S:      Supported
6771 W:      http://www.mellanox.com
6772 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6773 F:      drivers/net/ethernet/mellanox/mlxsw/
6774
6775 MEMORY MANAGEMENT
6776 L:      linux-mm@kvack.org
6777 W:      http://www.linux-mm.org
6778 S:      Maintained
6779 F:      include/linux/mm.h
6780 F:      include/linux/gfp.h
6781 F:      include/linux/mmzone.h
6782 F:      include/linux/memory_hotplug.h
6783 F:      include/linux/vmalloc.h
6784 F:      mm/
6785
6786 MEMORY TECHNOLOGY DEVICES (MTD)
6787 M:      David Woodhouse <dwmw2@infradead.org>
6788 M:      Brian Norris <computersforpeace@gmail.com>
6789 L:      linux-mtd@lists.infradead.org
6790 W:      http://www.linux-mtd.infradead.org/
6791 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6792 T:      git git://git.infradead.org/linux-mtd.git
6793 T:      git git://git.infradead.org/l2-mtd.git
6794 S:      Maintained
6795 F:      drivers/mtd/
6796 F:      include/linux/mtd/
6797 F:      include/uapi/mtd/
6798
6799 MEN A21 WATCHDOG DRIVER
6800 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6801 L:      linux-watchdog@vger.kernel.org
6802 S:      Maintained
6803 F:      drivers/watchdog/mena21_wdt.c
6804
6805 MEN CHAMELEON BUS (mcb)
6806 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6807 S:      Maintained
6808 F:      drivers/mcb/
6809 F:      include/linux/mcb.h
6810 F:      Documentation/men-chameleon-bus.txt
6811
6812 MEN F21BMC (Board Management Controller)
6813 M:      Andreas Werner <andreas.werner@men.de>
6814 S:      Supported
6815 F:      drivers/mfd/menf21bmc.c
6816 F:      drivers/watchdog/menf21bmc_wdt.c
6817 F:      drivers/leds/leds-menf21bmc.c
6818 F:      drivers/hwmon/menf21bmc_hwmon.c
6819 F:      Documentation/hwmon/menf21bmc
6820
6821 METAG ARCHITECTURE
6822 M:      James Hogan <james.hogan@imgtec.com>
6823 L:      linux-metag@vger.kernel.org
6824 S:      Supported
6825 F:      arch/metag/
6826 F:      Documentation/metag/
6827 F:      Documentation/devicetree/bindings/metag/
6828 F:      drivers/clocksource/metag_generic.c
6829 F:      drivers/irqchip/irq-metag.c
6830 F:      drivers/irqchip/irq-metag-ext.c
6831 F:      drivers/tty/metag_da.c
6832
6833 MICROBLAZE ARCHITECTURE
6834 M:      Michal Simek <monstr@monstr.eu>
6835 W:      http://www.monstr.eu/fdt/
6836 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6837 S:      Supported
6838 F:      arch/microblaze/
6839
6840 MICROTEK X6 SCANNER
6841 M:      Oliver Neukum <oliver@neukum.org>
6842 S:      Maintained
6843 F:      drivers/usb/image/microtek.*
6844
6845 MIPS
6846 M:      Ralf Baechle <ralf@linux-mips.org>
6847 L:      linux-mips@linux-mips.org
6848 W:      http://www.linux-mips.org/
6849 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6850 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6851 S:      Supported
6852 F:      Documentation/mips/
6853 F:      arch/mips/
6854
6855 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6856 M:      Hans Verkuil <hverkuil@xs4all.nl>
6857 L:      linux-media@vger.kernel.org
6858 T:      git git://linuxtv.org/media_tree.git
6859 W:      http://linuxtv.org
6860 S:      Odd Fixes
6861 F:      drivers/media/radio/radio-miropcm20*
6862
6863 Mellanox MLX5 core VPI driver
6864 M:      Eli Cohen <eli@mellanox.com>
6865 L:      netdev@vger.kernel.org
6866 L:      linux-rdma@vger.kernel.org
6867 W:      http://www.mellanox.com
6868 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6869 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6870 T:      git git://openfabrics.org/~eli/connect-ib.git
6871 S:      Supported
6872 F:      drivers/net/ethernet/mellanox/mlx5/core/
6873 F:      include/linux/mlx5/
6874
6875 Mellanox MLX5 IB driver
6876 M:      Eli Cohen <eli@mellanox.com>
6877 L:      linux-rdma@vger.kernel.org
6878 W:      http://www.mellanox.com
6879 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6880 T:      git git://openfabrics.org/~eli/connect-ib.git
6881 S:      Supported
6882 F:      include/linux/mlx5/
6883 F:      drivers/infiniband/hw/mlx5/
6884
6885 MN88472 MEDIA DRIVER
6886 M:      Antti Palosaari <crope@iki.fi>
6887 L:      linux-media@vger.kernel.org
6888 W:      http://linuxtv.org/
6889 W:      http://palosaari.fi/linux/
6890 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6891 T:      git git://linuxtv.org/anttip/media_tree.git
6892 S:      Maintained
6893 F:      drivers/staging/media/mn88472/
6894 F:      drivers/media/dvb-frontends/mn88472.h
6895
6896 MN88473 MEDIA DRIVER
6897 M:      Antti Palosaari <crope@iki.fi>
6898 L:      linux-media@vger.kernel.org
6899 W:      http://linuxtv.org/
6900 W:      http://palosaari.fi/linux/
6901 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6902 T:      git git://linuxtv.org/anttip/media_tree.git
6903 S:      Maintained
6904 F:      drivers/staging/media/mn88473/
6905 F:      drivers/media/dvb-frontends/mn88473.h
6906
6907 MODULE SUPPORT
6908 M:      Rusty Russell <rusty@rustcorp.com.au>
6909 S:      Maintained
6910 F:      include/linux/module.h
6911 F:      kernel/module.c
6912
6913 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6914 W:      http://popies.net/meye/
6915 S:      Orphan
6916 F:      Documentation/video4linux/meye.txt
6917 F:      drivers/media/pci/meye/
6918 F:      include/uapi/linux/meye.h
6919
6920 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6921 M:      Jiri Slaby <jirislaby@gmail.com>
6922 S:      Maintained
6923 F:      Documentation/serial/moxa-smartio
6924 F:      drivers/tty/mxser.*
6925
6926 MR800 AVERMEDIA USB FM RADIO DRIVER
6927 M:      Alexey Klimov <klimov.linux@gmail.com>
6928 L:      linux-media@vger.kernel.org
6929 T:      git git://linuxtv.org/media_tree.git
6930 S:      Maintained
6931 F:      drivers/media/radio/radio-mr800.c
6932
6933 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6934 M:      Alan Ott <alan@signal11.us>
6935 L:      linux-wpan@vger.kernel.org
6936 S:      Maintained
6937 F:      drivers/net/ieee802154/mrf24j40.c
6938
6939 MSI LAPTOP SUPPORT
6940 M:      "Lee, Chun-Yi" <jlee@suse.com>
6941 L:      platform-driver-x86@vger.kernel.org
6942 S:      Maintained
6943 F:      drivers/platform/x86/msi-laptop.c
6944
6945 MSI WMI SUPPORT
6946 L:      platform-driver-x86@vger.kernel.org
6947 S:      Orphan
6948 F:      drivers/platform/x86/msi-wmi.c
6949
6950 MSI001 MEDIA DRIVER
6951 M:      Antti Palosaari <crope@iki.fi>
6952 L:      linux-media@vger.kernel.org
6953 W:      http://linuxtv.org/
6954 W:      http://palosaari.fi/linux/
6955 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6956 T:      git git://linuxtv.org/anttip/media_tree.git
6957 S:      Maintained
6958 F:      drivers/media/tuners/msi001*
6959
6960 MSI2500 MEDIA DRIVER
6961 M:      Antti Palosaari <crope@iki.fi>
6962 L:      linux-media@vger.kernel.org
6963 W:      http://linuxtv.org/
6964 W:      http://palosaari.fi/linux/
6965 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6966 T:      git git://linuxtv.org/anttip/media_tree.git
6967 S:      Maintained
6968 F:      drivers/media/usb/msi2500/
6969
6970 MSYSTEMS DISKONCHIP G3 MTD DRIVER
6971 M:      Robert Jarzmik <robert.jarzmik@free.fr>
6972 L:      linux-mtd@lists.infradead.org
6973 S:      Maintained
6974 F:      drivers/mtd/devices/docg3*
6975
6976 MT9M032 APTINA SENSOR DRIVER
6977 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6978 L:      linux-media@vger.kernel.org
6979 T:      git git://linuxtv.org/media_tree.git
6980 S:      Maintained
6981 F:      drivers/media/i2c/mt9m032.c
6982 F:      include/media/mt9m032.h
6983
6984 MT9P031 APTINA CAMERA SENSOR
6985 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6986 L:      linux-media@vger.kernel.org
6987 T:      git git://linuxtv.org/media_tree.git
6988 S:      Maintained
6989 F:      drivers/media/i2c/mt9p031.c
6990 F:      include/media/mt9p031.h
6991
6992 MT9T001 APTINA CAMERA SENSOR
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/mt9t001.c
6998 F:      include/media/mt9t001.h
6999
7000 MT9V032 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:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7006 F:      drivers/media/i2c/mt9v032.c
7007 F:      include/media/mt9v032.h
7008
7009 MULTIFUNCTION DEVICES (MFD)
7010 M:      Samuel Ortiz <sameo@linux.intel.com>
7011 M:      Lee Jones <lee.jones@linaro.org>
7012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7013 S:      Supported
7014 F:      drivers/mfd/
7015 F:      include/linux/mfd/
7016
7017 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7018 M:      Ulf Hansson <ulf.hansson@linaro.org>
7019 L:      linux-mmc@vger.kernel.org
7020 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7021 S:      Maintained
7022 F:      drivers/mmc/
7023 F:      include/linux/mmc/
7024 F:      include/uapi/linux/mmc/
7025
7026 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7027 S:      Orphan
7028 F:      drivers/mmc/host/mmc_spi.c
7029 F:      include/linux/spi/mmc_spi.h
7030
7031 MULTISOUND SOUND DRIVER
7032 M:      Andrew Veliath <andrewtv@usa.net>
7033 S:      Maintained
7034 F:      Documentation/sound/oss/MultiSound
7035 F:      sound/oss/msnd*
7036
7037 MULTITECH MULTIPORT CARD (ISICOM)
7038 S:      Orphan
7039 F:      drivers/tty/isicom.c
7040 F:      include/linux/isicom.h
7041
7042 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7043 M:      Felipe Balbi <balbi@ti.com>
7044 L:      linux-usb@vger.kernel.org
7045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7046 S:      Maintained
7047 F:      drivers/usb/musb/
7048
7049 MXL5007T MEDIA DRIVER
7050 M:      Michael Krufky <mkrufky@linuxtv.org>
7051 L:      linux-media@vger.kernel.org
7052 W:      http://linuxtv.org/
7053 W:      http://github.com/mkrufky
7054 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7055 T:      git git://linuxtv.org/mkrufky/tuners.git
7056 S:      Maintained
7057 F:      drivers/media/tuners/mxl5007t.*
7058
7059 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7060 M:      Hyong-Youb Kim <hykim@myri.com>
7061 L:      netdev@vger.kernel.org
7062 W:      https://www.myricom.com/support/downloads/myri10ge.html
7063 S:      Supported
7064 F:      drivers/net/ethernet/myricom/myri10ge/
7065
7066 NATSEMI ETHERNET DRIVER (DP8381x)
7067 S:      Orphan
7068 F:      drivers/net/ethernet/natsemi/natsemi.c
7069
7070 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7071 M:      Daniel Mack <zonque@gmail.com>
7072 S:      Maintained
7073 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7074 W:      http://www.native-instruments.com
7075 F:      sound/usb/caiaq/
7076
7077 NCP FILESYSTEM
7078 M:      Petr Vandrovec <petr@vandrovec.name>
7079 S:      Odd Fixes
7080 F:      fs/ncpfs/
7081
7082 NCR 5380 SCSI DRIVERS
7083 M:      Finn Thain <fthain@telegraphics.com.au>
7084 M:      Michael Schmitz <schmitzmic@gmail.com>
7085 L:      linux-scsi@vger.kernel.org
7086 S:      Maintained
7087 F:      Documentation/scsi/g_NCR5380.txt
7088 F:      drivers/scsi/NCR5380.*
7089 F:      drivers/scsi/arm/cumana_1.c
7090 F:      drivers/scsi/arm/oak.c
7091 F:      drivers/scsi/atari_NCR5380.c
7092 F:      drivers/scsi/atari_scsi.*
7093 F:      drivers/scsi/dmx3191d.c
7094 F:      drivers/scsi/dtc.*
7095 F:      drivers/scsi/g_NCR5380.*
7096 F:      drivers/scsi/g_NCR5380_mmio.c
7097 F:      drivers/scsi/mac_scsi.*
7098 F:      drivers/scsi/pas16.*
7099 F:      drivers/scsi/sun3_scsi.*
7100 F:      drivers/scsi/sun3_scsi_vme.c
7101 F:      drivers/scsi/t128.*
7102
7103 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7104 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7105 L:      linux-scsi@vger.kernel.org
7106 S:      Maintained
7107 F:      drivers/scsi/NCR_D700.*
7108
7109 NCT6775 HARDWARE MONITOR DRIVER
7110 M:      Guenter Roeck <linux@roeck-us.net>
7111 L:      lm-sensors@lm-sensors.org
7112 S:      Maintained
7113 F:      Documentation/hwmon/nct6775
7114 F:      drivers/hwmon/nct6775.c
7115
7116 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7117 M:      Faisal Latif <faisal.latif@intel.com>
7118 L:      linux-rdma@vger.kernel.org
7119 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7120 S:      Supported
7121 F:      drivers/infiniband/hw/nes/
7122
7123 NETEM NETWORK EMULATOR
7124 M:      Stephen Hemminger <stephen@networkplumber.org>
7125 L:      netem@lists.linux-foundation.org
7126 S:      Maintained
7127 F:      net/sched/sch_netem.c
7128
7129 NETERION 10GbE DRIVERS (s2io/vxge)
7130 M:      Jon Mason <jdmason@kudzu.us>
7131 L:      netdev@vger.kernel.org
7132 S:      Supported
7133 F:      Documentation/networking/s2io.txt
7134 F:      Documentation/networking/vxge.txt
7135 F:      drivers/net/ethernet/neterion/
7136
7137 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7138 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7139 M:      Patrick McHardy <kaber@trash.net>
7140 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7141 L:      netfilter-devel@vger.kernel.org
7142 L:      coreteam@netfilter.org
7143 W:      http://www.netfilter.org/
7144 W:      http://www.iptables.org/
7145 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7148 S:      Supported
7149 F:      include/linux/netfilter*
7150 F:      include/linux/netfilter/
7151 F:      include/net/netfilter/
7152 F:      include/uapi/linux/netfilter*
7153 F:      include/uapi/linux/netfilter/
7154 F:      net/*/netfilter.c
7155 F:      net/*/netfilter/
7156 F:      net/netfilter/
7157 F:      net/bridge/br_netfilter*.c
7158
7159 NETLABEL
7160 M:      Paul Moore <paul@paul-moore.com>
7161 W:      http://netlabel.sf.net
7162 L:      netdev@vger.kernel.org
7163 S:      Maintained
7164 F:      Documentation/netlabel/
7165 F:      include/net/netlabel.h
7166 F:      net/netlabel/
7167
7168 NETROM NETWORK LAYER
7169 M:      Ralf Baechle <ralf@linux-mips.org>
7170 L:      linux-hams@vger.kernel.org
7171 W:      http://www.linux-ax25.org/
7172 S:      Maintained
7173 F:      include/net/netrom.h
7174 F:      include/uapi/linux/netrom.h
7175 F:      net/netrom/
7176
7177 NETWORK BLOCK DEVICE (NBD)
7178 M:      Markus Pargmann <mpa@pengutronix.de>
7179 S:      Maintained
7180 L:      nbd-general@lists.sourceforge.net
7181 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7182 F:      Documentation/blockdev/nbd.txt
7183 F:      drivers/block/nbd.c
7184 F:      include/uapi/linux/nbd.h
7185
7186 NETWORK DROP MONITOR
7187 M:      Neil Horman <nhorman@tuxdriver.com>
7188 L:      netdev@vger.kernel.org
7189 S:      Maintained
7190 W:      https://fedorahosted.org/dropwatch/
7191 F:      net/core/drop_monitor.c
7192
7193 NETWORKING [GENERAL]
7194 M:      "David S. Miller" <davem@davemloft.net>
7195 L:      netdev@vger.kernel.org
7196 W:      http://www.linuxfoundation.org/en/Net
7197 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7200 S:      Maintained
7201 F:      net/
7202 F:      include/net/
7203 F:      include/linux/in.h
7204 F:      include/linux/net.h
7205 F:      include/linux/netdevice.h
7206 F:      include/uapi/linux/in.h
7207 F:      include/uapi/linux/net.h
7208 F:      include/uapi/linux/netdevice.h
7209 F:      include/uapi/linux/net_namespace.h
7210 F:      tools/net/
7211 F:      tools/testing/selftests/net/
7212 F:      lib/random32.c
7213 F:      lib/test_bpf.c
7214
7215 NETWORKING [IPv4/IPv6]
7216 M:      "David S. Miller" <davem@davemloft.net>
7217 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7218 M:      James Morris <jmorris@namei.org>
7219 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7220 M:      Patrick McHardy <kaber@trash.net>
7221 L:      netdev@vger.kernel.org
7222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7223 S:      Maintained
7224 F:      net/ipv4/
7225 F:      net/ipv6/
7226 F:      include/net/ip*
7227 F:      arch/x86/net/*
7228
7229 NETWORKING [IPSEC]
7230 M:      Steffen Klassert <steffen.klassert@secunet.com>
7231 M:      Herbert Xu <herbert@gondor.apana.org.au>
7232 M:      "David S. Miller" <davem@davemloft.net>
7233 L:      netdev@vger.kernel.org
7234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7236 S:      Maintained
7237 F:      net/core/flow.c
7238 F:      net/xfrm/
7239 F:      net/key/
7240 F:      net/ipv4/xfrm*
7241 F:      net/ipv4/esp4.c
7242 F:      net/ipv4/ah4.c
7243 F:      net/ipv4/ipcomp.c
7244 F:      net/ipv4/ip_vti.c
7245 F:      net/ipv6/xfrm*
7246 F:      net/ipv6/esp6.c
7247 F:      net/ipv6/ah6.c
7248 F:      net/ipv6/ipcomp6.c
7249 F:      net/ipv6/ip6_vti.c
7250 F:      include/uapi/linux/xfrm.h
7251 F:      include/net/xfrm.h
7252
7253 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7254 M:      Paul Moore <paul@paul-moore.com>
7255 L:      netdev@vger.kernel.org
7256 S:      Maintained
7257
7258 NETWORKING [WIRELESS]
7259 L:      linux-wireless@vger.kernel.org
7260 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7261
7262 NETWORKING DRIVERS
7263 L:      netdev@vger.kernel.org
7264 W:      http://www.linuxfoundation.org/en/Net
7265 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7268 S:      Odd Fixes
7269 F:      drivers/net/
7270 F:      include/linux/if_*
7271 F:      include/linux/netdevice.h
7272 F:      include/linux/arcdevice.h
7273 F:      include/linux/etherdevice.h
7274 F:      include/linux/fcdevice.h
7275 F:      include/linux/fddidevice.h
7276 F:      include/linux/hippidevice.h
7277 F:      include/linux/inetdevice.h
7278 F:      include/uapi/linux/if_*
7279 F:      include/uapi/linux/netdevice.h
7280
7281 NETWORKING DRIVERS (WIRELESS)
7282 M:      Kalle Valo <kvalo@codeaurora.org>
7283 L:      linux-wireless@vger.kernel.org
7284 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7286 S:      Maintained
7287 F:      drivers/net/wireless/
7288
7289 NETXEN (1/10) GbE SUPPORT
7290 M:      Manish Chopra <manish.chopra@qlogic.com>
7291 M:      Sony Chacko <sony.chacko@qlogic.com>
7292 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7293 L:      netdev@vger.kernel.org
7294 W:      http://www.qlogic.com
7295 S:      Supported
7296 F:      drivers/net/ethernet/qlogic/netxen/
7297
7298 NFC SUBSYSTEM
7299 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7300 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7301 M:      Samuel Ortiz <sameo@linux.intel.com>
7302 L:      linux-wireless@vger.kernel.org
7303 L:      linux-nfc@lists.01.org (subscribers-only)
7304 S:      Supported
7305 F:      net/nfc/
7306 F:      include/net/nfc/
7307 F:      include/uapi/linux/nfc.h
7308 F:      drivers/nfc/
7309 F:      include/linux/platform_data/pn544.h
7310 F:      Documentation/devicetree/bindings/net/nfc/
7311
7312 NFS, SUNRPC, AND LOCKD CLIENTS
7313 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7314 M:      Anna Schumaker <anna.schumaker@netapp.com>
7315 L:      linux-nfs@vger.kernel.org
7316 W:      http://client.linux-nfs.org
7317 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7318 S:      Maintained
7319 F:      fs/lockd/
7320 F:      fs/nfs/
7321 F:      fs/nfs_common/
7322 F:      net/sunrpc/
7323 F:      include/linux/lockd/
7324 F:      include/linux/nfs*
7325 F:      include/linux/sunrpc/
7326 F:      include/uapi/linux/nfs*
7327 F:      include/uapi/linux/sunrpc/
7328
7329 NILFS2 FILESYSTEM
7330 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7331 L:      linux-nilfs@vger.kernel.org
7332 W:      http://nilfs.sourceforge.net/
7333 T:      git git://github.com/konis/nilfs2.git
7334 S:      Supported
7335 F:      Documentation/filesystems/nilfs2.txt
7336 F:      fs/nilfs2/
7337 F:      include/linux/nilfs2_fs.h
7338
7339 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7340 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7341 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7342 S:      Maintained
7343 F:      Documentation/scsi/NinjaSCSI.txt
7344 F:      drivers/scsi/pcmcia/nsp_*
7345
7346 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7347 M:      GOTO Masanori <gotom@debian.or.jp>
7348 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7349 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7350 S:      Maintained
7351 F:      Documentation/scsi/NinjaSCSI.txt
7352 F:      drivers/scsi/nsp32*
7353
7354 NIOS2 ARCHITECTURE
7355 M:      Ley Foon Tan <lftan@altera.com>
7356 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7357 T:      git git://git.rocketboards.org/linux-socfpga-next.git
7358 S:      Maintained
7359 F:      arch/nios2/
7360
7361 NOKIA N900 POWER SUPPLY DRIVERS
7362 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7363 S:      Maintained
7364 F:      include/linux/power/bq2415x_charger.h
7365 F:      include/linux/power/bq27x00_battery.h
7366 F:      include/linux/power/isp1704_charger.h
7367 F:      drivers/power/bq2415x_charger.c
7368 F:      drivers/power/bq27x00_battery.c
7369 F:      drivers/power/isp1704_charger.c
7370 F:      drivers/power/rx51_battery.c
7371
7372 NTB DRIVER CORE
7373 M:      Jon Mason <jdmason@kudzu.us>
7374 M:      Dave Jiang <dave.jiang@intel.com>
7375 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7376 S:      Supported
7377 W:      https://github.com/jonmason/ntb/wiki
7378 T:      git git://github.com/jonmason/ntb.git
7379 F:      drivers/ntb/
7380 F:      drivers/net/ntb_netdev.c
7381 F:      include/linux/ntb.h
7382 F:      include/linux/ntb_transport.h
7383
7384 NTB INTEL DRIVER
7385 M:      Jon Mason <jdmason@kudzu.us>
7386 M:      Dave Jiang <dave.jiang@intel.com>
7387 S:      Supported
7388 W:      https://github.com/jonmason/ntb/wiki
7389 T:      git git://github.com/jonmason/ntb.git
7390 F:      drivers/ntb/hw/intel/
7391
7392 NTFS FILESYSTEM
7393 M:      Anton Altaparmakov <anton@tuxera.com>
7394 L:      linux-ntfs-dev@lists.sourceforge.net
7395 W:      http://www.tuxera.com/
7396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7397 S:      Supported
7398 F:      Documentation/filesystems/ntfs.txt
7399 F:      fs/ntfs/
7400
7401 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7402 M:      Antonino Daplas <adaplas@gmail.com>
7403 L:      linux-fbdev@vger.kernel.org
7404 S:      Maintained
7405 F:      drivers/video/fbdev/riva/
7406 F:      drivers/video/fbdev/nvidia/
7407
7408 NVM EXPRESS DRIVER
7409 M:      Matthew Wilcox <willy@linux.intel.com>
7410 L:      linux-nvme@lists.infradead.org
7411 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7412 S:      Supported
7413 F:      drivers/block/nvme*
7414 F:      include/linux/nvme.h
7415
7416 NVMEM FRAMEWORK
7417 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7418 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7419 S:      Maintained
7420 F:      drivers/nvmem/
7421 F:      Documentation/devicetree/bindings/nvmem/
7422 F:      include/linux/nvmem-consumer.h
7423 F:      include/linux/nvmem-provider.h
7424
7425 NXP-NCI NFC DRIVER
7426 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7427 R:      Charles Gorand <charles.gorand@effinnov.com>
7428 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7429 S:      Supported
7430 F:      drivers/nfc/nxp-nci
7431
7432 NXP TDA998X DRM DRIVER
7433 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7434 S:      Supported
7435 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7436 F:      include/drm/i2c/tda998x.h
7437
7438 NXP TFA9879 DRIVER
7439 M:      Peter Rosin <peda@axentia.se>
7440 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7441 S:      Maintained
7442 F:      sound/soc/codecs/tfa9879*
7443
7444 OMAP SUPPORT
7445 M:      Tony Lindgren <tony@atomide.com>
7446 L:      linux-omap@vger.kernel.org
7447 W:      http://www.muru.com/linux/omap/
7448 W:      http://linux.omap.com/
7449 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7451 S:      Maintained
7452 F:      arch/arm/*omap*/
7453 F:      arch/arm/configs/omap1_defconfig
7454 F:      arch/arm/configs/omap2plus_defconfig
7455 F:      drivers/i2c/busses/i2c-omap.c
7456 F:      drivers/irqchip/irq-omap-intc.c
7457 F:      drivers/mfd/*omap*.c
7458 F:      drivers/mfd/menelaus.c
7459 F:      drivers/mfd/palmas.c
7460 F:      drivers/mfd/tps65217.c
7461 F:      drivers/mfd/tps65218.c
7462 F:      drivers/mfd/tps65910.c
7463 F:      drivers/mfd/twl-core.[ch]
7464 F:      drivers/mfd/twl4030*.c
7465 F:      drivers/mfd/twl6030*.c
7466 F:      drivers/mfd/twl6040*.c
7467 F:      drivers/regulator/palmas-regulator*.c
7468 F:      drivers/regulator/pbias-regulator.c
7469 F:      drivers/regulator/tps65217-regulator.c
7470 F:      drivers/regulator/tps65218-regulator.c
7471 F:      drivers/regulator/tps65910-regulator.c
7472 F:      drivers/regulator/twl-regulator.c
7473 F:      include/linux/i2c-omap.h
7474
7475 OMAP DEVICE TREE SUPPORT
7476 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7477 M:      Tony Lindgren <tony@atomide.com>
7478 L:      linux-omap@vger.kernel.org
7479 L:      devicetree@vger.kernel.org
7480 S:      Maintained
7481 F:      arch/arm/boot/dts/*omap*
7482 F:      arch/arm/boot/dts/*am3*
7483 F:      arch/arm/boot/dts/*am4*
7484 F:      arch/arm/boot/dts/*am5*
7485 F:      arch/arm/boot/dts/*dra7*
7486
7487 OMAP CLOCK FRAMEWORK SUPPORT
7488 M:      Paul Walmsley <paul@pwsan.com>
7489 L:      linux-omap@vger.kernel.org
7490 S:      Maintained
7491 F:      arch/arm/*omap*/*clock*
7492
7493 OMAP POWER MANAGEMENT SUPPORT
7494 M:      Kevin Hilman <khilman@deeprootsystems.com>
7495 L:      linux-omap@vger.kernel.org
7496 S:      Maintained
7497 F:      arch/arm/*omap*/*pm*
7498 F:      drivers/cpufreq/omap-cpufreq.c
7499
7500 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7501 M:      Rajendra Nayak <rnayak@ti.com>
7502 M:      Paul Walmsley <paul@pwsan.com>
7503 L:      linux-omap@vger.kernel.org
7504 S:      Maintained
7505 F:      arch/arm/mach-omap2/prm*
7506
7507 OMAP AUDIO SUPPORT
7508 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7509 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7510 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7511 L:      linux-omap@vger.kernel.org
7512 S:      Maintained
7513 F:      sound/soc/omap/
7514
7515 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7516 M:      Roger Quadros <rogerq@ti.com>
7517 M:      Tony Lindgren <tony@atomide.com>
7518 L:      linux-omap@vger.kernel.org
7519 S:      Maintained
7520 F:      drivers/memory/omap-gpmc.c
7521 F:      arch/arm/mach-omap2/*gpmc*
7522
7523 OMAP FRAMEBUFFER SUPPORT
7524 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7525 L:      linux-fbdev@vger.kernel.org
7526 L:      linux-omap@vger.kernel.org
7527 S:      Maintained
7528 F:      drivers/video/fbdev/omap/
7529
7530 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7531 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7532 L:      linux-omap@vger.kernel.org
7533 L:      linux-fbdev@vger.kernel.org
7534 S:      Maintained
7535 F:      drivers/video/fbdev/omap2/
7536 F:      Documentation/arm/OMAP/DSS
7537
7538 OMAP HARDWARE SPINLOCK SUPPORT
7539 M:      Ohad Ben-Cohen <ohad@wizery.com>
7540 L:      linux-omap@vger.kernel.org
7541 S:      Maintained
7542 F:      drivers/hwspinlock/omap_hwspinlock.c
7543
7544 OMAP MMC SUPPORT
7545 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7546 L:      linux-omap@vger.kernel.org
7547 S:      Maintained
7548 F:      drivers/mmc/host/omap.c
7549
7550 OMAP HS MMC SUPPORT
7551 L:      linux-mmc@vger.kernel.org
7552 L:      linux-omap@vger.kernel.org
7553 S:      Orphan
7554 F:      drivers/mmc/host/omap_hsmmc.c
7555
7556 OMAP RANDOM NUMBER GENERATOR SUPPORT
7557 M:      Deepak Saxena <dsaxena@plexity.net>
7558 S:      Maintained
7559 F:      drivers/char/hw_random/omap-rng.c
7560
7561 OMAP HWMOD SUPPORT
7562 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7563 M:      Paul Walmsley <paul@pwsan.com>
7564 L:      linux-omap@vger.kernel.org
7565 S:      Maintained
7566 F:      arch/arm/mach-omap2/omap_hwmod.*
7567
7568 OMAP HWMOD DATA
7569 M:      Paul Walmsley <paul@pwsan.com>
7570 L:      linux-omap@vger.kernel.org
7571 S:      Maintained
7572 F:      arch/arm/mach-omap2/omap_hwmod*data*
7573
7574 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7575 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7576 L:      linux-omap@vger.kernel.org
7577 S:      Maintained
7578 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7579
7580 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7581 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7582 L:      linux-media@vger.kernel.org
7583 S:      Maintained
7584 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7585 F:      drivers/media/platform/omap3isp/
7586 F:      drivers/staging/media/omap4iss/
7587
7588 OMAP USB SUPPORT
7589 M:      Felipe Balbi <balbi@ti.com>
7590 L:      linux-usb@vger.kernel.org
7591 L:      linux-omap@vger.kernel.org
7592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7593 S:      Maintained
7594 F:      drivers/usb/*/*omap*
7595 F:      arch/arm/*omap*/usb*
7596
7597 OMAP GPIO DRIVER
7598 M:      Javier Martinez Canillas <javier@dowhile0.org>
7599 M:      Santosh Shilimkar <ssantosh@kernel.org>
7600 M:      Kevin Hilman <khilman@deeprootsystems.com>
7601 L:      linux-omap@vger.kernel.org
7602 S:      Maintained
7603 F:      drivers/gpio/gpio-omap.c
7604
7605 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7606 M:      Mark Jackson <mpfj@newflow.co.uk>
7607 L:      linux-omap@vger.kernel.org
7608 S:      Maintained
7609 F:      arch/arm/boot/dts/am335x-nano.dts
7610
7611 OMFS FILESYSTEM
7612 M:      Bob Copeland <me@bobcopeland.com>
7613 L:      linux-karma-devel@lists.sourceforge.net
7614 S:      Maintained
7615 F:      Documentation/filesystems/omfs.txt
7616 F:      fs/omfs/
7617
7618 OMNIKEY CARDMAN 4000 DRIVER
7619 M:      Harald Welte <laforge@gnumonks.org>
7620 S:      Maintained
7621 F:      drivers/char/pcmcia/cm4000_cs.c
7622 F:      include/linux/cm4000_cs.h
7623 F:      include/uapi/linux/cm4000_cs.h
7624
7625 OMNIKEY CARDMAN 4040 DRIVER
7626 M:      Harald Welte <laforge@gnumonks.org>
7627 S:      Maintained
7628 F:      drivers/char/pcmcia/cm4040_cs.*
7629
7630 OMNIVISION OV7670 SENSOR DRIVER
7631 M:      Jonathan Corbet <corbet@lwn.net>
7632 L:      linux-media@vger.kernel.org
7633 T:      git git://linuxtv.org/media_tree.git
7634 S:      Maintained
7635 F:      drivers/media/i2c/ov7670.c
7636
7637 ONENAND FLASH DRIVER
7638 M:      Kyungmin Park <kyungmin.park@samsung.com>
7639 L:      linux-mtd@lists.infradead.org
7640 S:      Maintained
7641 F:      drivers/mtd/onenand/
7642 F:      include/linux/mtd/onenand*.h
7643
7644 ONSTREAM SCSI TAPE DRIVER
7645 M:      Willem Riede <osst@riede.org>
7646 L:      osst-users@lists.sourceforge.net
7647 L:      linux-scsi@vger.kernel.org
7648 S:      Maintained
7649 F:      Documentation/scsi/osst.txt
7650 F:      drivers/scsi/osst.*
7651 F:      drivers/scsi/osst_*.h
7652 F:      drivers/scsi/st.h
7653
7654 OPENCORES I2C BUS DRIVER
7655 M:      Peter Korsgaard <jacmet@sunsite.dk>
7656 L:      linux-i2c@vger.kernel.org
7657 S:      Maintained
7658 F:      Documentation/i2c/busses/i2c-ocores
7659 F:      drivers/i2c/busses/i2c-ocores.c
7660
7661 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7662 M:      Rob Herring <robh+dt@kernel.org>
7663 M:      Frank Rowand <frowand.list@gmail.com>
7664 M:      Grant Likely <grant.likely@linaro.org>
7665 L:      devicetree@vger.kernel.org
7666 W:      http://www.devicetree.org/
7667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7668 S:      Maintained
7669 F:      drivers/of/
7670 F:      include/linux/of*.h
7671 F:      scripts/dtc/
7672
7673 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7674 M:      Rob Herring <robh+dt@kernel.org>
7675 M:      Pawel Moll <pawel.moll@arm.com>
7676 M:      Mark Rutland <mark.rutland@arm.com>
7677 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7678 M:      Kumar Gala <galak@codeaurora.org>
7679 L:      devicetree@vger.kernel.org
7680 S:      Maintained
7681 F:      Documentation/devicetree/
7682 F:      arch/*/boot/dts/
7683 F:      include/dt-bindings/
7684
7685 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7686 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7687 L:      devicetree@vger.kernel.org
7688 S:      Maintained
7689 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7690 F:      Documentation/devicetree/overlay-notes.txt
7691 F:      drivers/of/overlay.c
7692 F:      drivers/of/resolver.c
7693
7694 OPENRISC ARCHITECTURE
7695 M:      Jonas Bonn <jonas@southpole.se>
7696 W:      http://openrisc.net
7697 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7698 S:      Maintained
7699 T:      git git://openrisc.net/~jonas/linux
7700 F:      arch/openrisc/
7701
7702 OPENVSWITCH
7703 M:      Pravin Shelar <pshelar@nicira.com>
7704 L:      netdev@vger.kernel.org
7705 L:      dev@openvswitch.org
7706 W:      http://openvswitch.org
7707 S:      Maintained
7708 F:      net/openvswitch/
7709 F:      include/uapi/linux/openvswitch.h
7710
7711 OPL4 DRIVER
7712 M:      Clemens Ladisch <clemens@ladisch.de>
7713 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7714 T:      git git://git.alsa-project.org/alsa-kernel.git
7715 S:      Maintained
7716 F:      sound/drivers/opl4/
7717
7718 OPROFILE
7719 M:      Robert Richter <rric@kernel.org>
7720 L:      oprofile-list@lists.sf.net
7721 S:      Maintained
7722 F:      arch/*/include/asm/oprofile*.h
7723 F:      arch/*/oprofile/
7724 F:      drivers/oprofile/
7725 F:      include/linux/oprofile.h
7726
7727 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7728 M:      Mark Fasheh <mfasheh@suse.com>
7729 M:      Joel Becker <jlbec@evilplan.org>
7730 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7731 W:      http://ocfs2.wiki.kernel.org
7732 S:      Supported
7733 F:      Documentation/filesystems/ocfs2.txt
7734 F:      Documentation/filesystems/dlmfs.txt
7735 F:      fs/ocfs2/
7736
7737 ORINOCO DRIVER
7738 L:      linux-wireless@vger.kernel.org
7739 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7740 W:      http://www.nongnu.org/orinoco/
7741 S:      Orphan
7742 F:      drivers/net/wireless/orinoco/
7743
7744 OSD LIBRARY and FILESYSTEM
7745 M:      Boaz Harrosh <ooo@electrozaur.com>
7746 M:      Benny Halevy <bhalevy@primarydata.com>
7747 L:      osd-dev@open-osd.org
7748 W:      http://open-osd.org
7749 T:      git git://git.open-osd.org/open-osd.git
7750 S:      Maintained
7751 F:      drivers/scsi/osd/
7752 F:      include/scsi/osd_*
7753 F:      fs/exofs/
7754
7755 OVERLAY FILESYSTEM
7756 M:      Miklos Szeredi <miklos@szeredi.hu>
7757 L:      linux-unionfs@vger.kernel.org
7758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7759 S:      Supported
7760 F:      fs/overlayfs/
7761 F:      Documentation/filesystems/overlayfs.txt
7762
7763 P54 WIRELESS DRIVER
7764 M:      Christian Lamparter <chunkeey@googlemail.com>
7765 L:      linux-wireless@vger.kernel.org
7766 W:      http://wireless.kernel.org/en/users/Drivers/p54
7767 S:      Maintained
7768 F:      drivers/net/wireless/p54/
7769
7770 PA SEMI ETHERNET DRIVER
7771 M:      Olof Johansson <olof@lixom.net>
7772 L:      netdev@vger.kernel.org
7773 S:      Maintained
7774 F:      drivers/net/ethernet/pasemi/*
7775
7776 PA SEMI SMBUS DRIVER
7777 M:      Olof Johansson <olof@lixom.net>
7778 L:      linux-i2c@vger.kernel.org
7779 S:      Maintained
7780 F:      drivers/i2c/busses/i2c-pasemi.c
7781
7782 PADATA PARALLEL EXECUTION MECHANISM
7783 M:      Steffen Klassert <steffen.klassert@secunet.com>
7784 L:      linux-crypto@vger.kernel.org
7785 S:      Maintained
7786 F:      kernel/padata.c
7787 F:      include/linux/padata.h
7788 F:      Documentation/padata.txt
7789
7790 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7791 M:      Harald Welte <laforge@gnumonks.org>
7792 L:      platform-driver-x86@vger.kernel.org
7793 S:      Maintained
7794 F:      drivers/platform/x86/panasonic-laptop.c
7795
7796 PANASONIC MN10300/AM33/AM34 PORT
7797 M:      David Howells <dhowells@redhat.com>
7798 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7799 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7800 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7801 S:      Maintained
7802 F:      Documentation/mn10300/
7803 F:      arch/mn10300/
7804
7805 PARALLEL PORT SUBSYSTEM
7806 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7807 M:      Sudip Mukherjee <sudip@vectorindia.org>
7808 L:      linux-parport@lists.infradead.org (subscribers-only)
7809 S:      Maintained
7810 F:      drivers/parport/
7811 F:      include/linux/parport*.h
7812 F:      drivers/char/ppdev.c
7813 F:      include/uapi/linux/ppdev.h
7814 F:      Documentation/parport*.txt
7815
7816 PARAVIRT_OPS INTERFACE
7817 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7818 M:      Chris Wright <chrisw@sous-sol.org>
7819 M:      Alok Kataria <akataria@vmware.com>
7820 M:      Rusty Russell <rusty@rustcorp.com.au>
7821 L:      virtualization@lists.linux-foundation.org
7822 S:      Supported
7823 F:      Documentation/virtual/paravirt_ops.txt
7824 F:      arch/*/kernel/paravirt*
7825 F:      arch/*/include/asm/paravirt.h
7826
7827 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7828 M:      Tim Waugh <tim@cyberelk.net>
7829 L:      linux-parport@lists.infradead.org (subscribers-only)
7830 S:      Maintained
7831 F:      Documentation/blockdev/paride.txt
7832 F:      drivers/block/paride/
7833
7834 PARISC ARCHITECTURE
7835 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7836 M:      Helge Deller <deller@gmx.de>
7837 L:      linux-parisc@vger.kernel.org
7838 W:      http://www.parisc-linux.org/
7839 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7842 S:      Maintained
7843 F:      arch/parisc/
7844 F:      Documentation/parisc/
7845 F:      drivers/parisc/
7846 F:      drivers/char/agp/parisc-agp.c
7847 F:      drivers/input/serio/gscps2.c
7848 F:      drivers/parport/parport_gsc.*
7849 F:      drivers/tty/serial/8250/8250_gsc.c
7850 F:      drivers/video/fbdev/sti*
7851 F:      drivers/video/console/sti*
7852 F:      drivers/video/logo/logo_parisc*
7853
7854 PC87360 HARDWARE MONITORING DRIVER
7855 M:      Jim Cromie <jim.cromie@gmail.com>
7856 L:      lm-sensors@lm-sensors.org
7857 S:      Maintained
7858 F:      Documentation/hwmon/pc87360
7859 F:      drivers/hwmon/pc87360.c
7860
7861 PC8736x GPIO DRIVER
7862 M:      Jim Cromie <jim.cromie@gmail.com>
7863 S:      Maintained
7864 F:      drivers/char/pc8736x_gpio.c
7865
7866 PC87427 HARDWARE MONITORING DRIVER
7867 M:      Jean Delvare <jdelvare@suse.com>
7868 L:      lm-sensors@lm-sensors.org
7869 S:      Maintained
7870 F:      Documentation/hwmon/pc87427
7871 F:      drivers/hwmon/pc87427.c
7872
7873 PCA9532 LED DRIVER
7874 M:      Riku Voipio <riku.voipio@iki.fi>
7875 S:      Maintained
7876 F:      drivers/leds/leds-pca9532.c
7877 F:      include/linux/leds-pca9532.h
7878
7879 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7880 M:      Guenter Roeck <linux@roeck-us.net>
7881 L:      linux-i2c@vger.kernel.org
7882 S:      Maintained
7883 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7884
7885 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7886 M:      Khalid Aziz <khalid@gonehiking.org>
7887 S:      Maintained
7888 F:      drivers/firmware/pcdp.*
7889
7890 PCI ERROR RECOVERY
7891 M:      Linas Vepstas <linasvepstas@gmail.com>
7892 L:      linux-pci@vger.kernel.org
7893 S:      Supported
7894 F:      Documentation/PCI/pci-error-recovery.txt
7895
7896 PCI SUBSYSTEM
7897 M:      Bjorn Helgaas <bhelgaas@google.com>
7898 L:      linux-pci@vger.kernel.org
7899 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7901 S:      Supported
7902 F:      Documentation/PCI/
7903 F:      drivers/pci/
7904 F:      include/linux/pci*
7905 F:      arch/x86/pci/
7906 F:      arch/x86/kernel/quirks.c
7907
7908 PCI DRIVER FOR ARM VERSATILE PLATFORM
7909 M:      Rob Herring <robh@kernel.org>
7910 L:      linux-pci@vger.kernel.org
7911 L:      linux-arm-kernel@lists.infradead.org
7912 S:      Maintained
7913 F:      Documentation/devicetree/bindings/pci/versatile.txt
7914 F:      drivers/pci/host/pci-versatile.c
7915
7916 PCI DRIVER FOR APPLIEDMICRO XGENE
7917 M:      Tanmay Inamdar <tinamdar@apm.com>
7918 L:      linux-pci@vger.kernel.org
7919 L:      linux-arm-kernel@lists.infradead.org
7920 S:      Maintained
7921 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7922 F:      drivers/pci/host/pci-xgene.c
7923
7924 PCI DRIVER FOR FREESCALE LAYERSCAPE
7925 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7926 M:      Mingkai Hu <mingkai.hu@freescale.com>
7927 M:      Roy Zang <tie-fei.zang@freescale.com>
7928 L:      linuxppc-dev@lists.ozlabs.org
7929 L:      linux-pci@vger.kernel.org
7930 L:      linux-arm-kernel@lists.infradead.org
7931 S:      Maintained
7932 F:      drivers/pci/host/*layerscape*
7933
7934 PCI DRIVER FOR IMX6
7935 M:      Richard Zhu <Richard.Zhu@freescale.com>
7936 M:      Lucas Stach <l.stach@pengutronix.de>
7937 L:      linux-pci@vger.kernel.org
7938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7939 S:      Maintained
7940 F:      drivers/pci/host/*imx6*
7941
7942 PCI DRIVER FOR TI KEYSTONE
7943 M:      Murali Karicheri <m-karicheri2@ti.com>
7944 L:      linux-pci@vger.kernel.org
7945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7946 S:      Maintained
7947 F:      drivers/pci/host/*keystone*
7948
7949 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7950 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7951 M:      Jason Cooper <jason@lakedaemon.net>
7952 L:      linux-pci@vger.kernel.org
7953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7954 S:      Maintained
7955 F:      drivers/pci/host/*mvebu*
7956
7957 PCI DRIVER FOR NVIDIA TEGRA
7958 M:      Thierry Reding <thierry.reding@gmail.com>
7959 L:      linux-tegra@vger.kernel.org
7960 L:      linux-pci@vger.kernel.org
7961 S:      Supported
7962 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
7963 F:      drivers/pci/host/pci-tegra.c
7964
7965 PCI DRIVER FOR TI DRA7XX
7966 M:      Kishon Vijay Abraham I <kishon@ti.com>
7967 L:      linux-omap@vger.kernel.org
7968 L:      linux-pci@vger.kernel.org
7969 S:      Supported
7970 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
7971 F:      drivers/pci/host/pci-dra7xx.c
7972
7973 PCI DRIVER FOR RENESAS R-CAR
7974 M:      Simon Horman <horms@verge.net.au>
7975 L:      linux-pci@vger.kernel.org
7976 L:      linux-sh@vger.kernel.org
7977 S:      Maintained
7978 F:      drivers/pci/host/*rcar*
7979
7980 PCI DRIVER FOR SAMSUNG EXYNOS
7981 M:      Jingoo Han <jingoohan1@gmail.com>
7982 L:      linux-pci@vger.kernel.org
7983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7984 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7985 S:      Maintained
7986 F:      drivers/pci/host/pci-exynos.c
7987
7988 PCI DRIVER FOR SYNOPSIS DESIGNWARE
7989 M:      Jingoo Han <jingoohan1@gmail.com>
7990 M:      Pratyush Anand <pratyush.anand@gmail.com>
7991 L:      linux-pci@vger.kernel.org
7992 S:      Maintained
7993 F:      drivers/pci/host/*designware*
7994
7995 PCI DRIVER FOR GENERIC OF HOSTS
7996 M:      Will Deacon <will.deacon@arm.com>
7997 L:      linux-pci@vger.kernel.org
7998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7999 S:      Maintained
8000 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8001 F:      drivers/pci/host/pci-host-generic.c
8002
8003 PCIE DRIVER FOR ST SPEAR13XX
8004 M:      Pratyush Anand <pratyush.anand@gmail.com>
8005 L:      linux-pci@vger.kernel.org
8006 S:      Maintained
8007 F:      drivers/pci/host/*spear*
8008
8009 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8010 M:      Duc Dang <dhdang@apm.com>
8011 L:      linux-pci@vger.kernel.org
8012 L:      linux-arm-kernel@lists.infradead.org
8013 S:      Maintained
8014 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8015 F:      drivers/pci/host/pci-xgene-msi.c
8016
8017 PCMCIA SUBSYSTEM
8018 P:      Linux PCMCIA Team
8019 L:      linux-pcmcia@lists.infradead.org
8020 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8022 S:      Maintained
8023 F:      Documentation/pcmcia/
8024 F:      drivers/pcmcia/
8025 F:      include/pcmcia/
8026
8027 PCNET32 NETWORK DRIVER
8028 M:      Don Fry <pcnet32@frontier.com>
8029 L:      netdev@vger.kernel.org
8030 S:      Maintained
8031 F:      drivers/net/ethernet/amd/pcnet32.c
8032
8033 PCRYPT PARALLEL CRYPTO ENGINE
8034 M:      Steffen Klassert <steffen.klassert@secunet.com>
8035 L:      linux-crypto@vger.kernel.org
8036 S:      Maintained
8037 F:      crypto/pcrypt.c
8038 F:      include/crypto/pcrypt.h
8039
8040 PER-CPU MEMORY ALLOCATOR
8041 M:      Tejun Heo <tj@kernel.org>
8042 M:      Christoph Lameter <cl@linux-foundation.org>
8043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8044 S:      Maintained
8045 F:      include/linux/percpu*.h
8046 F:      mm/percpu*.c
8047 F:      arch/*/include/asm/percpu.h
8048
8049 PER-TASK DELAY ACCOUNTING
8050 M:      Balbir Singh <bsingharora@gmail.com>
8051 S:      Maintained
8052 F:      include/linux/delayacct.h
8053 F:      kernel/delayacct.c
8054
8055 PERFORMANCE EVENTS SUBSYSTEM
8056 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8057 M:      Ingo Molnar <mingo@redhat.com>
8058 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8059 L:      linux-kernel@vger.kernel.org
8060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8061 S:      Supported
8062 F:      kernel/events/*
8063 F:      include/linux/perf_event.h
8064 F:      include/uapi/linux/perf_event.h
8065 F:      arch/*/kernel/perf_event*.c
8066 F:      arch/*/kernel/*/perf_event*.c
8067 F:      arch/*/kernel/*/*/perf_event*.c
8068 F:      arch/*/include/asm/perf_event.h
8069 F:      arch/*/kernel/perf_callchain.c
8070 F:      tools/perf/
8071
8072 PERSONALITY HANDLING
8073 M:      Christoph Hellwig <hch@infradead.org>
8074 L:      linux-abi-devel@lists.sourceforge.net
8075 S:      Maintained
8076 F:      include/linux/personality.h
8077 F:      include/uapi/linux/personality.h
8078
8079 PHONET PROTOCOL
8080 M:      Remi Denis-Courmont <courmisch@gmail.com>
8081 S:      Supported
8082 F:      Documentation/networking/phonet.txt
8083 F:      include/linux/phonet.h
8084 F:      include/net/phonet/
8085 F:      include/uapi/linux/phonet.h
8086 F:      net/phonet/
8087
8088 PHRAM MTD DRIVER
8089 M:      Joern Engel <joern@lazybastard.org>
8090 L:      linux-mtd@lists.infradead.org
8091 S:      Maintained
8092 F:      drivers/mtd/devices/phram.c
8093
8094 PICOLCD HID DRIVER
8095 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8096 L:      linux-input@vger.kernel.org
8097 S:      Maintained
8098 F:      drivers/hid/hid-picolcd*
8099
8100 PICOXCELL SUPPORT
8101 M:      Jamie Iles <jamie@jamieiles.com>
8102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8103 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8104 S:      Supported
8105 F:      arch/arm/boot/dts/picoxcell*
8106 F:      arch/arm/mach-picoxcell/
8107 F:      drivers/crypto/picoxcell*
8108
8109 PIN CONTROL SUBSYSTEM
8110 M:      Linus Walleij <linus.walleij@linaro.org>
8111 L:      linux-gpio@vger.kernel.org
8112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8113 S:      Maintained
8114 F:      drivers/pinctrl/
8115 F:      include/linux/pinctrl/
8116
8117 PIN CONTROLLER - ATMEL AT91
8118 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8120 S:      Maintained
8121 F:      drivers/pinctrl/pinctrl-at91.*
8122
8123 PIN CONTROLLER - INTEL
8124 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8125 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8126 S:      Maintained
8127 F:      drivers/pinctrl/intel/
8128
8129 PIN CONTROLLER - RENESAS
8130 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8131 L:      linux-sh@vger.kernel.org
8132 S:      Maintained
8133 F:      drivers/pinctrl/sh-pfc/
8134
8135 PIN CONTROLLER - SAMSUNG
8136 M:      Tomasz Figa <tomasz.figa@gmail.com>
8137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8138 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8139 S:      Maintained
8140 F:      drivers/pinctrl/samsung/
8141
8142 PIN CONTROLLER - ST SPEAR
8143 M:      Viresh Kumar <vireshk@kernel.org>
8144 L:      spear-devel@list.st.com
8145 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8146 W:      http://www.st.com/spear
8147 S:      Maintained
8148 F:      drivers/pinctrl/spear/
8149
8150 PKTCDVD DRIVER
8151 M:      Jiri Kosina <jikos@kernel.org>
8152 S:      Maintained
8153 F:      drivers/block/pktcdvd.c
8154 F:      include/linux/pktcdvd.h
8155 F:      include/uapi/linux/pktcdvd.h
8156
8157 PKUNITY SOC DRIVERS
8158 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8159 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8160 S:      Maintained
8161 T:      git git://github.com/gxt/linux.git
8162 F:      drivers/input/serio/i8042-unicore32io.h
8163 F:      drivers/i2c/busses/i2c-puv3.c
8164 F:      drivers/video/fbdev/fb-puv3.c
8165 F:      drivers/rtc/rtc-puv3.c
8166
8167 PMBUS HARDWARE MONITORING DRIVERS
8168 M:      Guenter Roeck <linux@roeck-us.net>
8169 L:      lm-sensors@lm-sensors.org
8170 W:      http://www.lm-sensors.org/
8171 W:      http://www.roeck-us.net/linux/drivers/
8172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8173 S:      Maintained
8174 F:      Documentation/hwmon/pmbus
8175 F:      drivers/hwmon/pmbus/
8176 F:      include/linux/i2c/pmbus.h
8177
8178 PMC SIERRA MaxRAID DRIVER
8179 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
8180 L:      linux-scsi@vger.kernel.org
8181 W:      http://www.pmc-sierra.com/
8182 S:      Supported
8183 F:      drivers/scsi/pmcraid.*
8184
8185 PMC SIERRA PM8001 DRIVER
8186 M:      Jack Wang <jinpu.wang@profitbricks.com>
8187 M:      lindar_liu@usish.com
8188 L:      pmchba@pmcs.com
8189 L:      linux-scsi@vger.kernel.org
8190 S:      Supported
8191 F:      drivers/scsi/pm8001/
8192
8193 POSIX CLOCKS and TIMERS
8194 M:      Thomas Gleixner <tglx@linutronix.de>
8195 L:      linux-kernel@vger.kernel.org
8196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8197 S:      Maintained
8198 F:      fs/timerfd.c
8199 F:      include/linux/timer*
8200 F:      kernel/time/*timer*
8201
8202 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8203 M:      Sebastian Reichel <sre@kernel.org>
8204 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8205 M:      David Woodhouse <dwmw2@infradead.org>
8206 L:      linux-pm@vger.kernel.org
8207 T:      git git://git.infradead.org/battery-2.6.git
8208 S:      Maintained
8209 F:      include/linux/power_supply.h
8210 F:      drivers/power/
8211 X:      drivers/power/avs/
8212
8213 POWER STATE COORDINATION INTERFACE (PSCI)
8214 M:      Mark Rutland <mark.rutland@arm.com>
8215 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8216 L:      linux-arm-kernel@lists.infradead.org
8217 S:      Maintained
8218 F:      drivers/firmware/psci.c
8219 F:      include/linux/psci.h
8220 F:      include/uapi/linux/psci.h
8221
8222 PNP SUPPORT
8223 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8224 S:      Maintained
8225 F:      drivers/pnp/
8226
8227 PNXxxxx I2C DRIVER
8228 M:      Vitaly Wool <vitalywool@gmail.com>
8229 L:      linux-i2c@vger.kernel.org
8230 S:      Maintained
8231 F:      drivers/i2c/busses/i2c-pnx.c
8232
8233 PPP PROTOCOL DRIVERS AND COMPRESSORS
8234 M:      Paul Mackerras <paulus@samba.org>
8235 L:      linux-ppp@vger.kernel.org
8236 S:      Maintained
8237 F:      drivers/net/ppp/ppp_*
8238
8239 PPP OVER ATM (RFC 2364)
8240 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8241 S:      Maintained
8242 F:      net/atm/pppoatm.c
8243 F:      include/uapi/linux/atmppp.h
8244
8245 PPP OVER ETHERNET
8246 M:      Michal Ostrowski <mostrows@earthlink.net>
8247 S:      Maintained
8248 F:      drivers/net/ppp/pppoe.c
8249 F:      drivers/net/ppp/pppox.c
8250
8251 PPP OVER L2TP
8252 M:      James Chapman <jchapman@katalix.com>
8253 S:      Maintained
8254 F:      net/l2tp/l2tp_ppp.c
8255 F:      include/linux/if_pppol2tp.h
8256 F:      include/uapi/linux/if_pppol2tp.h
8257
8258 PPS SUPPORT
8259 M:      Rodolfo Giometti <giometti@enneenne.com>
8260 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8261 L:      linuxpps@ml.enneenne.com (subscribers-only)
8262 S:      Maintained
8263 F:      Documentation/pps/
8264 F:      drivers/pps/
8265 F:      include/linux/pps*.h
8266
8267 PPTP DRIVER
8268 M:      Dmitry Kozlov <xeb@mail.ru>
8269 L:      netdev@vger.kernel.org
8270 S:      Maintained
8271 F:      drivers/net/ppp/pptp.c
8272 W:      http://sourceforge.net/projects/accel-pptp
8273
8274 PREEMPTIBLE KERNEL
8275 M:      Robert Love <rml@tech9.net>
8276 L:      kpreempt-tech@lists.sourceforge.net
8277 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8278 S:      Supported
8279 F:      Documentation/preempt-locking.txt
8280 F:      include/linux/preempt.h
8281
8282 PRISM54 WIRELESS DRIVER
8283 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8284 L:      linux-wireless@vger.kernel.org
8285 W:      http://wireless.kernel.org/en/users/Drivers/p54
8286 S:      Obsolete
8287 F:      drivers/net/wireless/prism54/
8288
8289 PS3 NETWORK SUPPORT
8290 M:      Geoff Levand <geoff@infradead.org>
8291 L:      netdev@vger.kernel.org
8292 L:      linuxppc-dev@lists.ozlabs.org
8293 S:      Maintained
8294 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8295
8296 PS3 PLATFORM SUPPORT
8297 M:      Geoff Levand <geoff@infradead.org>
8298 L:      linuxppc-dev@lists.ozlabs.org
8299 S:      Maintained
8300 F:      arch/powerpc/boot/ps3*
8301 F:      arch/powerpc/include/asm/lv1call.h
8302 F:      arch/powerpc/include/asm/ps3*.h
8303 F:      arch/powerpc/platforms/ps3/
8304 F:      drivers/*/ps3*
8305 F:      drivers/ps3/
8306 F:      drivers/rtc/rtc-ps3.c
8307 F:      drivers/usb/host/*ps3.c
8308 F:      sound/ppc/snd_ps3*
8309
8310 PS3VRAM DRIVER
8311 M:      Jim Paris <jim@jtan.com>
8312 M:      Geoff Levand <geoff@infradead.org>
8313 L:      linuxppc-dev@lists.ozlabs.org
8314 S:      Maintained
8315 F:      drivers/block/ps3vram.c
8316
8317 PSTORE FILESYSTEM
8318 M:      Anton Vorontsov <anton@enomsg.org>
8319 M:      Colin Cross <ccross@android.com>
8320 M:      Kees Cook <keescook@chromium.org>
8321 M:      Tony Luck <tony.luck@intel.com>
8322 S:      Maintained
8323 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8324 F:      fs/pstore/
8325 F:      include/linux/pstore*
8326 F:      drivers/firmware/efi/efi-pstore.c
8327 F:      drivers/acpi/apei/erst.c
8328
8329 PTP HARDWARE CLOCK SUPPORT
8330 M:      Richard Cochran <richardcochran@gmail.com>
8331 L:      netdev@vger.kernel.org
8332 S:      Maintained
8333 W:      http://linuxptp.sourceforge.net/
8334 F:      Documentation/ABI/testing/sysfs-ptp
8335 F:      Documentation/ptp/*
8336 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8337 F:      drivers/net/phy/dp83640*
8338 F:      drivers/ptp/*
8339 F:      include/linux/ptp_cl*
8340
8341 PTRACE SUPPORT
8342 M:      Roland McGrath <roland@hack.frob.com>
8343 M:      Oleg Nesterov <oleg@redhat.com>
8344 S:      Maintained
8345 F:      include/asm-generic/syscall.h
8346 F:      include/linux/ptrace.h
8347 F:      include/linux/regset.h
8348 F:      include/linux/tracehook.h
8349 F:      include/uapi/linux/ptrace.h
8350 F:      kernel/ptrace.c
8351
8352 PVRUSB2 VIDEO4LINUX DRIVER
8353 M:      Mike Isely <isely@pobox.com>
8354 L:      pvrusb2@isely.net       (subscribers-only)
8355 L:      linux-media@vger.kernel.org
8356 W:      http://www.isely.net/pvrusb2/
8357 T:      git git://linuxtv.org/media_tree.git
8358 S:      Maintained
8359 F:      Documentation/video4linux/README.pvrusb2
8360 F:      drivers/media/usb/pvrusb2/
8361
8362 PWC WEBCAM DRIVER
8363 M:      Hans de Goede <hdegoede@redhat.com>
8364 L:      linux-media@vger.kernel.org
8365 T:      git git://linuxtv.org/media_tree.git
8366 S:      Maintained
8367 F:      drivers/media/usb/pwc/*
8368
8369 PWM FAN DRIVER
8370 M:      Kamil Debski <k.debski@samsung.com>
8371 L:      lm-sensors@lm-sensors.org
8372 S:      Supported
8373 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8374 F:      Documentation/hwmon/pwm-fan
8375 F:      drivers/hwmon/pwm-fan.c
8376
8377 PWM SUBSYSTEM
8378 M:      Thierry Reding <thierry.reding@gmail.com>
8379 L:      linux-pwm@vger.kernel.org
8380 S:      Maintained
8381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8382 F:      Documentation/pwm.txt
8383 F:      Documentation/devicetree/bindings/pwm/
8384 F:      include/linux/pwm.h
8385 F:      drivers/pwm/
8386 F:      drivers/video/backlight/pwm_bl.c
8387 F:      include/linux/pwm_backlight.h
8388
8389 PXA2xx/PXA3xx SUPPORT
8390 M:      Daniel Mack <daniel@zonque.org>
8391 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8392 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8394 T:      git git://github.com/hzhuang1/linux.git
8395 T:      git git://github.com/rjarzmik/linux.git
8396 S:      Maintained
8397 F:      arch/arm/mach-pxa/
8398 F:      drivers/dma/pxa*
8399 F:      drivers/pcmcia/pxa2xx*
8400 F:      drivers/spi/spi-pxa2xx*
8401 F:      drivers/usb/gadget/udc/pxa2*
8402 F:      include/sound/pxa2xx-lib.h
8403 F:      sound/arm/pxa*
8404 F:      sound/soc/pxa/
8405
8406 PXA3xx NAND FLASH DRIVER
8407 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8408 L:      linux-mtd@lists.infradead.org
8409 S:      Maintained
8410 F:      drivers/mtd/nand/pxa3xx_nand.c
8411
8412 MMP SUPPORT
8413 M:      Eric Miao <eric.y.miao@gmail.com>
8414 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8416 T:      git git://github.com/hzhuang1/linux.git
8417 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8418 S:      Maintained
8419 F:      arch/arm/mach-mmp/
8420
8421 PXA MMCI DRIVER
8422 S:      Orphan
8423
8424 PXA RTC DRIVER
8425 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8426 L:      rtc-linux@googlegroups.com
8427 S:      Maintained
8428
8429 QAT DRIVER
8430 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8431 L:      qat-linux@intel.com
8432 S:      Supported
8433 F:      drivers/crypto/qat/
8434
8435 QIB DRIVER
8436 M:      Mike Marciniszyn <infinipath@intel.com>
8437 L:      linux-rdma@vger.kernel.org
8438 S:      Supported
8439 F:      drivers/infiniband/hw/qib/
8440
8441 QLOGIC QLA1280 SCSI DRIVER
8442 M:      Michael Reed <mdr@sgi.com>
8443 L:      linux-scsi@vger.kernel.org
8444 S:      Maintained
8445 F:      drivers/scsi/qla1280.[ch]
8446
8447 QLOGIC QLA2XXX FC-SCSI DRIVER
8448 M:      qla2xxx-upstream@qlogic.com
8449 L:      linux-scsi@vger.kernel.org
8450 S:      Supported
8451 F:      Documentation/scsi/LICENSE.qla2xxx
8452 F:      drivers/scsi/qla2xxx/
8453
8454 QLOGIC QLA4XXX iSCSI DRIVER
8455 M:      QLogic-Storage-Upstream@qlogic.com
8456 L:      linux-scsi@vger.kernel.org
8457 S:      Supported
8458 F:      Documentation/scsi/LICENSE.qla4xxx
8459 F:      drivers/scsi/qla4xxx/
8460
8461 QLOGIC QLA3XXX NETWORK DRIVER
8462 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8463 M:      Ron Mercer <ron.mercer@qlogic.com>
8464 M:      linux-driver@qlogic.com
8465 L:      netdev@vger.kernel.org
8466 S:      Supported
8467 F:      Documentation/networking/LICENSE.qla3xxx
8468 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8469
8470 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8471 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
8472 M:      Dept-GELinuxNICDev@qlogic.com
8473 L:      netdev@vger.kernel.org
8474 S:      Supported
8475 F:      drivers/net/ethernet/qlogic/qlcnic/
8476
8477 QLOGIC QLGE 10Gb ETHERNET DRIVER
8478 M:      Harish Patil <harish.patil@qlogic.com>
8479 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8480 M:      Dept-GELinuxNICDev@qlogic.com
8481 M:      linux-driver@qlogic.com
8482 L:      netdev@vger.kernel.org
8483 S:      Supported
8484 F:      drivers/net/ethernet/qlogic/qlge/
8485
8486 QNX4 FILESYSTEM
8487 M:      Anders Larsen <al@alarsen.net>
8488 W:      http://www.alarsen.net/linux/qnx4fs/
8489 S:      Maintained
8490 F:      fs/qnx4/
8491 F:      include/uapi/linux/qnx4_fs.h
8492 F:      include/uapi/linux/qnxtypes.h
8493
8494 QT1010 MEDIA DRIVER
8495 M:      Antti Palosaari <crope@iki.fi>
8496 L:      linux-media@vger.kernel.org
8497 W:      http://linuxtv.org/
8498 W:      http://palosaari.fi/linux/
8499 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8500 T:      git git://linuxtv.org/anttip/media_tree.git
8501 S:      Maintained
8502 F:      drivers/media/tuners/qt1010*
8503
8504 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8505 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8506 L:      linux-wireless@vger.kernel.org
8507 L:      ath9k-devel@lists.ath9k.org
8508 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8509 S:      Supported
8510 F:      drivers/net/wireless/ath/ath9k/
8511
8512 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8513 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8514 L:      ath10k@lists.infradead.org
8515 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8516 T:      git git://github.com/kvalo/ath.git
8517 S:      Supported
8518 F:      drivers/net/wireless/ath/ath10k/
8519
8520 QUALCOMM HEXAGON ARCHITECTURE
8521 M:      Richard Kuo <rkuo@codeaurora.org>
8522 L:      linux-hexagon@vger.kernel.org
8523 S:      Supported
8524 F:      arch/hexagon/
8525
8526 QUALCOMM WCN36XX WIRELESS DRIVER
8527 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8528 L:      wcn36xx@lists.infradead.org
8529 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8530 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8531 S:      Supported
8532 F:      drivers/net/wireless/ath/wcn36xx/
8533
8534 RADOS BLOCK DEVICE (RBD)
8535 M:      Ilya Dryomov <idryomov@gmail.com>
8536 M:      Sage Weil <sage@redhat.com>
8537 M:      Alex Elder <elder@kernel.org>
8538 L:      ceph-devel@vger.kernel.org
8539 W:      http://ceph.com/
8540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8541 T:      git git://github.com/ceph/ceph-client.git
8542 S:      Supported
8543 F:      Documentation/ABI/testing/sysfs-bus-rbd
8544 F:      drivers/block/rbd.c
8545 F:      drivers/block/rbd_types.h
8546
8547 RADEON FRAMEBUFFER DISPLAY DRIVER
8548 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8549 L:      linux-fbdev@vger.kernel.org
8550 S:      Maintained
8551 F:      drivers/video/fbdev/aty/radeon*
8552 F:      include/uapi/linux/radeonfb.h
8553
8554 RADIOSHARK RADIO DRIVER
8555 M:      Hans de Goede <hdegoede@redhat.com>
8556 L:      linux-media@vger.kernel.org
8557 T:      git git://linuxtv.org/media_tree.git
8558 S:      Maintained
8559 F:      drivers/media/radio/radio-shark.c
8560
8561 RADIOSHARK2 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-shark2.c
8567 F:      drivers/media/radio/radio-tea5777.c
8568
8569 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8570 M:      Paul Mackerras <paulus@samba.org>
8571 L:      linux-fbdev@vger.kernel.org
8572 S:      Maintained
8573 F:      drivers/video/fbdev/aty/aty128fb.c
8574
8575 RALINK RT2X00 WIRELESS LAN DRIVER
8576 P:      rt2x00 project
8577 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8578 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8579 L:      linux-wireless@vger.kernel.org
8580 S:      Maintained
8581 F:      drivers/net/wireless/rt2x00/
8582
8583 RAMDISK RAM BLOCK DEVICE DRIVER
8584 M:      Jens Axboe <axboe@kernel.dk>
8585 S:      Maintained
8586 F:      Documentation/blockdev/ramdisk.txt
8587 F:      drivers/block/brd.c
8588
8589 RANDOM NUMBER DRIVER
8590 M:      "Theodore Ts'o" <tytso@mit.edu>
8591 S:      Maintained
8592 F:      drivers/char/random.c
8593
8594 RAPIDIO SUBSYSTEM
8595 M:      Matt Porter <mporter@kernel.crashing.org>
8596 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8597 S:      Maintained
8598 F:      drivers/rapidio/
8599
8600 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8601 L:      linux-wireless@vger.kernel.org
8602 S:      Orphan
8603 F:      drivers/net/wireless/ray*
8604
8605 RCUTORTURE MODULE
8606 M:      Josh Triplett <josh@joshtriplett.org>
8607 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8608 L:      linux-kernel@vger.kernel.org
8609 S:      Supported
8610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8611 F:      Documentation/RCU/torture.txt
8612 F:      kernel/rcu/rcutorture.c
8613
8614 RCUTORTURE TEST FRAMEWORK
8615 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8616 M:      Josh Triplett <josh@joshtriplett.org>
8617 R:      Steven Rostedt <rostedt@goodmis.org>
8618 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8619 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8620 L:      linux-kernel@vger.kernel.org
8621 S:      Supported
8622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8623 F:      tools/testing/selftests/rcutorture
8624
8625 RDC R-321X SoC
8626 M:      Florian Fainelli <florian@openwrt.org>
8627 S:      Maintained
8628
8629 RDC R6040 FAST ETHERNET DRIVER
8630 M:      Florian Fainelli <florian@openwrt.org>
8631 L:      netdev@vger.kernel.org
8632 S:      Maintained
8633 F:      drivers/net/ethernet/rdc/r6040.c
8634
8635 RDS - RELIABLE DATAGRAM SOCKETS
8636 M:      Chien Yen <chien.yen@oracle.com>
8637 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8638 S:      Supported
8639 F:      net/rds/
8640
8641 READ-COPY UPDATE (RCU)
8642 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8643 M:      Josh Triplett <josh@joshtriplett.org>
8644 R:      Steven Rostedt <rostedt@goodmis.org>
8645 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8646 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8647 L:      linux-kernel@vger.kernel.org
8648 W:      http://www.rdrop.com/users/paulmck/RCU/
8649 S:      Supported
8650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8651 F:      Documentation/RCU/
8652 X:      Documentation/RCU/torture.txt
8653 F:      include/linux/rcu*
8654 X:      include/linux/srcu.h
8655 F:      kernel/rcu/
8656 X:      kernel/torture.c
8657
8658 REAL TIME CLOCK (RTC) SUBSYSTEM
8659 M:      Alessandro Zummo <a.zummo@towertech.it>
8660 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8661 L:      rtc-linux@googlegroups.com
8662 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8664 S:      Maintained
8665 F:      Documentation/rtc.txt
8666 F:      drivers/rtc/
8667 F:      include/linux/rtc.h
8668 F:      include/uapi/linux/rtc.h
8669
8670 REALTEK AUDIO CODECS
8671 M:      Bard Liao <bardliao@realtek.com>
8672 M:      Oder Chiou <oder_chiou@realtek.com>
8673 S:      Maintained
8674 F:      sound/soc/codecs/rt*
8675 F:      include/sound/rt*.h
8676
8677 REISERFS FILE SYSTEM
8678 L:      reiserfs-devel@vger.kernel.org
8679 S:      Supported
8680 F:      fs/reiserfs/
8681
8682 REGISTER MAP ABSTRACTION
8683 M:      Mark Brown <broonie@kernel.org>
8684 L:      linux-kernel@vger.kernel.org
8685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8686 S:      Supported
8687 F:      drivers/base/regmap/
8688 F:      include/linux/regmap.h
8689
8690 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8691 M:      Ohad Ben-Cohen <ohad@wizery.com>
8692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8693 S:      Maintained
8694 F:      drivers/remoteproc/
8695 F:      Documentation/remoteproc.txt
8696 F:      include/linux/remoteproc.h
8697
8698 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8699 M:      Ohad Ben-Cohen <ohad@wizery.com>
8700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8701 S:      Maintained
8702 F:      drivers/rpmsg/
8703 F:      Documentation/rpmsg.txt
8704 F:      include/linux/rpmsg.h
8705
8706 RESET CONTROLLER FRAMEWORK
8707 M:      Philipp Zabel <p.zabel@pengutronix.de>
8708 S:      Maintained
8709 F:      drivers/reset/
8710 F:      Documentation/devicetree/bindings/reset/
8711 F:      include/dt-bindings/reset/
8712 F:      include/linux/reset.h
8713 F:      include/linux/reset-controller.h
8714
8715 RFKILL
8716 M:      Johannes Berg <johannes@sipsolutions.net>
8717 L:      linux-wireless@vger.kernel.org
8718 W:      http://wireless.kernel.org/
8719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8721 S:      Maintained
8722 F:      Documentation/rfkill.txt
8723 F:      net/rfkill/
8724
8725 RHASHTABLE
8726 M:      Thomas Graf <tgraf@suug.ch>
8727 L:      netdev@vger.kernel.org
8728 S:      Maintained
8729 F:      lib/rhashtable.c
8730 F:      include/linux/rhashtable.h
8731
8732 RICOH SMARTMEDIA/XD DRIVER
8733 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8734 S:      Maintained
8735 F:      drivers/mtd/nand/r852.c
8736 F:      drivers/mtd/nand/r852.h
8737
8738 RICOH R5C592 MEMORYSTICK DRIVER
8739 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8740 S:      Maintained
8741 F:      drivers/memstick/host/r592.*
8742
8743 ROCCAT DRIVERS
8744 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8745 W:      http://sourceforge.net/projects/roccat/
8746 S:      Maintained
8747 F:      drivers/hid/hid-roccat*
8748 F:      include/linux/hid-roccat*
8749 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8750
8751 ROCKER DRIVER
8752 M:      Jiri Pirko <jiri@resnulli.us>
8753 M:      Scott Feldman <sfeldma@gmail.com>
8754 L:      netdev@vger.kernel.org
8755 S:      Supported
8756 F:      drivers/net/ethernet/rocker/
8757
8758 ROCKETPORT DRIVER
8759 P:      Comtrol Corp.
8760 W:      http://www.comtrol.com
8761 S:      Maintained
8762 F:      Documentation/serial/rocket.txt
8763 F:      drivers/tty/rocket*
8764
8765 ROCKETPORT EXPRESS/INFINITY DRIVER
8766 M:      Kevin Cernekee <cernekee@gmail.com>
8767 L:      linux-serial@vger.kernel.org
8768 S:      Odd Fixes
8769 F:      drivers/tty/serial/rp2.*
8770
8771 ROSE NETWORK LAYER
8772 M:      Ralf Baechle <ralf@linux-mips.org>
8773 L:      linux-hams@vger.kernel.org
8774 W:      http://www.linux-ax25.org/
8775 S:      Maintained
8776 F:      include/net/rose.h
8777 F:      include/uapi/linux/rose.h
8778 F:      net/rose/
8779
8780 RTL2830 MEDIA DRIVER
8781 M:      Antti Palosaari <crope@iki.fi>
8782 L:      linux-media@vger.kernel.org
8783 W:      http://linuxtv.org/
8784 W:      http://palosaari.fi/linux/
8785 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8786 T:      git git://linuxtv.org/anttip/media_tree.git
8787 S:      Maintained
8788 F:      drivers/media/dvb-frontends/rtl2830*
8789
8790 RTL2832 MEDIA DRIVER
8791 M:      Antti Palosaari <crope@iki.fi>
8792 L:      linux-media@vger.kernel.org
8793 W:      http://linuxtv.org/
8794 W:      http://palosaari.fi/linux/
8795 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8796 T:      git git://linuxtv.org/anttip/media_tree.git
8797 S:      Maintained
8798 F:      drivers/media/dvb-frontends/rtl2832*
8799
8800 RTL2832_SDR MEDIA DRIVER
8801 M:      Antti Palosaari <crope@iki.fi>
8802 L:      linux-media@vger.kernel.org
8803 W:      http://linuxtv.org/
8804 W:      http://palosaari.fi/linux/
8805 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8806 T:      git git://linuxtv.org/anttip/media_tree.git
8807 S:      Maintained
8808 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8809
8810 RTL8180 WIRELESS DRIVER
8811 L:      linux-wireless@vger.kernel.org
8812 W:      http://wireless.kernel.org/
8813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8814 S:      Orphan
8815 F:      drivers/net/wireless/rtl818x/rtl8180/
8816
8817 RTL8187 WIRELESS DRIVER
8818 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8819 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8820 M:      Larry Finger <Larry.Finger@lwfinger.net>
8821 L:      linux-wireless@vger.kernel.org
8822 W:      http://wireless.kernel.org/
8823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8824 S:      Maintained
8825 F:      drivers/net/wireless/rtl818x/rtl8187/
8826
8827 RTL8192CE WIRELESS DRIVER
8828 M:      Larry Finger <Larry.Finger@lwfinger.net>
8829 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8830 L:      linux-wireless@vger.kernel.org
8831 W:      http://wireless.kernel.org/
8832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8833 S:      Maintained
8834 F:      drivers/net/wireless/rtlwifi/
8835 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8836
8837 S3 SAVAGE FRAMEBUFFER DRIVER
8838 M:      Antonino Daplas <adaplas@gmail.com>
8839 L:      linux-fbdev@vger.kernel.org
8840 S:      Maintained
8841 F:      drivers/video/fbdev/savage/
8842
8843 S390
8844 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8845 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8846 L:      linux-s390@vger.kernel.org
8847 W:      http://www.ibm.com/developerworks/linux/linux390/
8848 S:      Supported
8849 F:      arch/s390/
8850 F:      drivers/s390/
8851 F:      Documentation/s390/
8852 F:      Documentation/DocBook/s390*
8853
8854 S390 COMMON I/O LAYER
8855 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8856 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8857 L:      linux-s390@vger.kernel.org
8858 W:      http://www.ibm.com/developerworks/linux/linux390/
8859 S:      Supported
8860 F:      drivers/s390/cio/
8861
8862 S390 DASD DRIVER
8863 M:      Stefan Weinhuber <wein@de.ibm.com>
8864 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8865 L:      linux-s390@vger.kernel.org
8866 W:      http://www.ibm.com/developerworks/linux/linux390/
8867 S:      Supported
8868 F:      drivers/s390/block/dasd*
8869 F:      block/partitions/ibm.c
8870
8871 S390 NETWORK DRIVERS
8872 M:      Ursula Braun <ursula.braun@de.ibm.com>
8873 L:      linux-s390@vger.kernel.org
8874 W:      http://www.ibm.com/developerworks/linux/linux390/
8875 S:      Supported
8876 F:      drivers/s390/net/
8877
8878 S390 PCI SUBSYSTEM
8879 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8880 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8881 L:      linux-s390@vger.kernel.org
8882 W:      http://www.ibm.com/developerworks/linux/linux390/
8883 S:      Supported
8884 F:      arch/s390/pci/
8885 F:      drivers/pci/hotplug/s390_pci_hpc.c
8886
8887 S390 ZCRYPT DRIVER
8888 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8889 L:      linux-s390@vger.kernel.org
8890 W:      http://www.ibm.com/developerworks/linux/linux390/
8891 S:      Supported
8892 F:      drivers/s390/crypto/
8893
8894 S390 ZFCP DRIVER
8895 M:      Steffen Maier <maier@linux.vnet.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/scsi/zfcp_*
8900
8901 S390 IUCV NETWORK LAYER
8902 M:      Ursula Braun <ursula.braun@de.ibm.com>
8903 L:      linux-s390@vger.kernel.org
8904 W:      http://www.ibm.com/developerworks/linux/linux390/
8905 S:      Supported
8906 F:      drivers/s390/net/*iucv*
8907 F:      include/net/iucv/
8908 F:      net/iucv/
8909
8910 S3C24XX SD/MMC Driver
8911 M:      Ben Dooks <ben-linux@fluff.org>
8912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8913 S:      Supported
8914 F:      drivers/mmc/host/s3cmci.*
8915
8916 SAA6588 RDS RECEIVER DRIVER
8917 M:      Hans Verkuil <hverkuil@xs4all.nl>
8918 L:      linux-media@vger.kernel.org
8919 T:      git git://linuxtv.org/media_tree.git
8920 W:      http://linuxtv.org
8921 S:      Odd Fixes
8922 F:      drivers/media/i2c/saa6588*
8923
8924 SAA7134 VIDEO4LINUX DRIVER
8925 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8926 L:      linux-media@vger.kernel.org
8927 W:      http://linuxtv.org
8928 T:      git git://linuxtv.org/media_tree.git
8929 S:      Odd fixes
8930 F:      Documentation/video4linux/*.saa7134
8931 F:      drivers/media/pci/saa7134/
8932
8933 SAA7146 VIDEO4LINUX-2 DRIVER
8934 M:      Hans Verkuil <hverkuil@xs4all.nl>
8935 L:      linux-media@vger.kernel.org
8936 T:      git git://linuxtv.org/media_tree.git
8937 S:      Maintained
8938 F:      drivers/media/common/saa7146/
8939 F:      drivers/media/pci/saa7146/
8940 F:      include/media/saa7146*
8941
8942 SAMSUNG LAPTOP DRIVER
8943 M:      Corentin Chary <corentin.chary@gmail.com>
8944 L:      platform-driver-x86@vger.kernel.org
8945 S:      Maintained
8946 F:      drivers/platform/x86/samsung-laptop.c
8947
8948 SAMSUNG AUDIO (ASoC) DRIVERS
8949 M:      Sangbeom Kim <sbkim73@samsung.com>
8950 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8951 S:      Supported
8952 F:      sound/soc/samsung/
8953
8954 SAMSUNG FRAMEBUFFER DRIVER
8955 M:      Jingoo Han <jingoohan1@gmail.com>
8956 L:      linux-fbdev@vger.kernel.org
8957 S:      Maintained
8958 F:      drivers/video/fbdev/s3c-fb.c
8959
8960 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
8961 M:      Sangbeom Kim <sbkim73@samsung.com>
8962 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
8963 L:      linux-kernel@vger.kernel.org
8964 L:      linux-samsung-soc@vger.kernel.org
8965 S:      Supported
8966 F:      drivers/mfd/sec*.c
8967 F:      drivers/regulator/s2m*.c
8968 F:      drivers/regulator/s5m*.c
8969 F:      drivers/clk/clk-s2mps11.c
8970 F:      drivers/rtc/rtc-s5m.c
8971 F:      include/linux/mfd/samsung/
8972 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
8973 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
8974
8975 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
8976 M:      Kyungmin Park <kyungmin.park@samsung.com>
8977 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8978 L:      linux-media@vger.kernel.org
8979 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
8980 S:      Supported
8981 F:      drivers/media/platform/exynos4-is/
8982
8983 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
8984 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
8985 L:      linux-media@vger.kernel.org
8986 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8987 S:      Maintained
8988 F:      drivers/media/platform/s3c-camif/
8989 F:      include/media/s3c_camif.h
8990
8991 SAMSUNG S5C73M3 CAMERA DRIVER
8992 M:      Kyungmin Park <kyungmin.park@samsung.com>
8993 M:      Andrzej Hajda <a.hajda@samsung.com>
8994 L:      linux-media@vger.kernel.org
8995 S:      Supported
8996 F:      drivers/media/i2c/s5c73m3/*
8997
8998 SAMSUNG S5K5BAF 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/s5k5baf.c
9004
9005 SAMSUNG S3FWRN5 NFC DRIVER
9006 M:      Robert Baldyga <r.baldyga@samsung.com>
9007 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9008 S:      Supported
9009 F:      drivers/nfc/s3fwrn5
9010
9011 SAMSUNG SOC CLOCK DRIVERS
9012 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9013 M:      Tomasz Figa <tomasz.figa@gmail.com>
9014 S:      Supported
9015 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9016 F:      drivers/clk/samsung/
9017
9018 SAMSUNG SXGBE DRIVERS
9019 M:      Byungho An <bh74.an@samsung.com>
9020 M:      Girish K S <ks.giri@samsung.com>
9021 M:      Vipul Pandya <vipul.pandya@samsung.com>
9022 S:      Supported
9023 L:      netdev@vger.kernel.org
9024 F:      drivers/net/ethernet/samsung/sxgbe/
9025
9026 SAMSUNG THERMAL DRIVER
9027 M:      Lukasz Majewski <l.majewski@samsung.com>
9028 L:      linux-pm@vger.kernel.org
9029 L:      linux-samsung-soc@vger.kernel.org
9030 S:      Supported
9031 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9032 F:      drivers/thermal/samsung/
9033
9034 SAMSUNG USB2 PHY DRIVER
9035 M:      Kamil Debski <k.debski@samsung.com>
9036 L:      linux-kernel@vger.kernel.org
9037 S:      Supported
9038 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9039 F:      Documentation/phy/samsung-usb2.txt
9040 F:      drivers/phy/phy-exynos4210-usb2.c
9041 F:      drivers/phy/phy-exynos4x12-usb2.c
9042 F:      drivers/phy/phy-exynos5250-usb2.c
9043 F:      drivers/phy/phy-s5pv210-usb2.c
9044 F:      drivers/phy/phy-samsung-usb2.c
9045 F:      drivers/phy/phy-samsung-usb2.h
9046
9047 SERIAL DRIVERS
9048 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9049 L:      linux-serial@vger.kernel.org
9050 S:      Maintained
9051 F:      drivers/tty/serial/
9052
9053 SYNOPSYS DESIGNWARE DMAC DRIVER
9054 M:      Viresh Kumar <vireshk@kernel.org>
9055 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9056 S:      Maintained
9057 F:      include/linux/dma/dw.h
9058 F:      include/linux/platform_data/dma-dw.h
9059 F:      drivers/dma/dw/
9060
9061 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9062 M: Lars Persson <lars.persson@axis.com>
9063 L: netdev@vger.kernel.org
9064 S: Supported
9065 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9066 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9067
9068 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9069 M:      Seungwon Jeon <tgih.jun@samsung.com>
9070 M:      Jaehoon Chung <jh80.chung@samsung.com>
9071 L:      linux-mmc@vger.kernel.org
9072 S:      Maintained
9073 F:      include/linux/mmc/dw_mmc.h
9074 F:      drivers/mmc/host/dw_mmc*
9075
9076 THUNDERBOLT DRIVER
9077 M:      Andreas Noever <andreas.noever@gmail.com>
9078 S:      Maintained
9079 F:      drivers/thunderbolt/
9080
9081 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9082 M:      John Stultz <john.stultz@linaro.org>
9083 M:      Thomas Gleixner <tglx@linutronix.de>
9084 L:      linux-kernel@vger.kernel.org
9085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9086 S:      Supported
9087 F:      include/linux/clocksource.h
9088 F:      include/linux/time.h
9089 F:      include/linux/timex.h
9090 F:      include/uapi/linux/time.h
9091 F:      include/uapi/linux/timex.h
9092 F:      kernel/time/clocksource.c
9093 F:      kernel/time/time*.c
9094 F:      kernel/time/ntp.c
9095 F:      tools/testing/selftests/timers/
9096
9097 SC1200 WDT DRIVER
9098 M:      Zwane Mwaikambo <zwanem@gmail.com>
9099 S:      Maintained
9100 F:      drivers/watchdog/sc1200wdt.c
9101
9102 SCHEDULER
9103 M:      Ingo Molnar <mingo@redhat.com>
9104 M:      Peter Zijlstra <peterz@infradead.org>
9105 L:      linux-kernel@vger.kernel.org
9106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9107 S:      Maintained
9108 F:      kernel/sched/
9109 F:      include/linux/sched.h
9110 F:      include/uapi/linux/sched.h
9111 F:      include/linux/wait.h
9112
9113 SCORE ARCHITECTURE
9114 M:      Chen Liqin <liqin.linux@gmail.com>
9115 M:      Lennox Wu <lennox.wu@gmail.com>
9116 W:      http://www.sunplus.com
9117 S:      Supported
9118 F:      arch/score/
9119
9120 SCSI CDROM DRIVER
9121 M:      Jens Axboe <axboe@kernel.dk>
9122 L:      linux-scsi@vger.kernel.org
9123 W:      http://www.kernel.dk
9124 S:      Maintained
9125 F:      drivers/scsi/sr*
9126
9127 SCSI RDMA PROTOCOL (SRP) INITIATOR
9128 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9129 L:      linux-rdma@vger.kernel.org
9130 S:      Supported
9131 W:      http://www.openfabrics.org
9132 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9134 F:      drivers/infiniband/ulp/srp/
9135 F:      include/scsi/srp.h
9136
9137 SCSI SG DRIVER
9138 M:      Doug Gilbert <dgilbert@interlog.com>
9139 L:      linux-scsi@vger.kernel.org
9140 W:      http://sg.danny.cz/sg
9141 S:      Maintained
9142 F:      Documentation/scsi/scsi-generic.txt
9143 F:      drivers/scsi/sg.c
9144 F:      include/scsi/sg.h
9145
9146 SCSI SUBSYSTEM
9147 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9148 L:      linux-scsi@vger.kernel.org
9149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9150 S:      Maintained
9151 F:      drivers/scsi/
9152 F:      include/scsi/
9153
9154 SCSI TAPE DRIVER
9155 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9156 L:      linux-scsi@vger.kernel.org
9157 S:      Maintained
9158 F:      Documentation/scsi/st.txt
9159 F:      drivers/scsi/st.*
9160 F:      drivers/scsi/st_*.h
9161
9162 SCTP PROTOCOL
9163 M:      Vlad Yasevich <vyasevich@gmail.com>
9164 M:      Neil Horman <nhorman@tuxdriver.com>
9165 L:      linux-sctp@vger.kernel.org
9166 W:      http://lksctp.sourceforge.net
9167 S:      Maintained
9168 F:      Documentation/networking/sctp.txt
9169 F:      include/linux/sctp.h
9170 F:      include/uapi/linux/sctp.h
9171 F:      include/net/sctp/
9172 F:      net/sctp/
9173
9174 SCx200 CPU SUPPORT
9175 M:      Jim Cromie <jim.cromie@gmail.com>
9176 S:      Odd Fixes
9177 F:      Documentation/i2c/busses/scx200_acb
9178 F:      arch/x86/platform/scx200/
9179 F:      drivers/watchdog/scx200_wdt.c
9180 F:      drivers/i2c/busses/scx200*
9181 F:      drivers/mtd/maps/scx200_docflash.c
9182 F:      include/linux/scx200.h
9183
9184 SCx200 GPIO DRIVER
9185 M:      Jim Cromie <jim.cromie@gmail.com>
9186 S:      Maintained
9187 F:      drivers/char/scx200_gpio.c
9188 F:      include/linux/scx200_gpio.h
9189
9190 SCx200 HRT CLOCKSOURCE DRIVER
9191 M:      Jim Cromie <jim.cromie@gmail.com>
9192 S:      Maintained
9193 F:      drivers/clocksource/scx200_hrt.c
9194
9195 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9196 M:      Sascha Sommer <saschasommer@freenet.de>
9197 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9198 S:      Maintained
9199 F:      drivers/mmc/host/sdricoh_cs.c
9200
9201 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9202 L:      linux-mmc@vger.kernel.org
9203 S:      Orphan
9204 F:      drivers/mmc/host/sdhci.*
9205 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9206
9207 SECURE COMPUTING
9208 M:      Kees Cook <keescook@chromium.org>
9209 R:      Andy Lutomirski <luto@amacapital.net>
9210 R:      Will Drewry <wad@chromium.org>
9211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9212 S:      Supported
9213 F:      kernel/seccomp.c
9214 F:      include/uapi/linux/seccomp.h
9215 F:      include/linux/seccomp.h
9216 F:      tools/testing/selftests/seccomp/*
9217 K:      \bsecure_computing
9218 K:      \bTIF_SECCOMP\b
9219
9220 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9221 M:      Ben Dooks <ben-linux@fluff.org>
9222 M:      Jaehoon Chung <jh80.chung@samsung.com>
9223 L:      linux-mmc@vger.kernel.org
9224 S:      Maintained
9225 F:      drivers/mmc/host/sdhci-s3c*
9226
9227 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9228 M:      Viresh Kumar <vireshk@kernel.org>
9229 L:      spear-devel@list.st.com
9230 L:      linux-mmc@vger.kernel.org
9231 S:      Maintained
9232 F:      drivers/mmc/host/sdhci-spear.c
9233
9234 SECURITY SUBSYSTEM
9235 M:      James Morris <james.l.morris@oracle.com>
9236 M:      "Serge E. Hallyn" <serge@hallyn.com>
9237 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9239 W:      http://kernsec.org/
9240 S:      Supported
9241 F:      security/
9242
9243 SECURITY CONTACT
9244 M:      Security Officers <security@kernel.org>
9245 S:      Supported
9246
9247 SELINUX SECURITY MODULE
9248 M:      Paul Moore <paul@paul-moore.com>
9249 M:      Stephen Smalley <sds@tycho.nsa.gov>
9250 M:      Eric Paris <eparis@parisplace.org>
9251 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9252 W:      http://selinuxproject.org
9253 T:      git git://git.infradead.org/users/pcmoore/selinux
9254 S:      Supported
9255 F:      include/linux/selinux*
9256 F:      security/selinux/
9257 F:      scripts/selinux/
9258
9259 APPARMOR SECURITY MODULE
9260 M:      John Johansen <john.johansen@canonical.com>
9261 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9262 W:      apparmor.wiki.kernel.org
9263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9264 S:      Supported
9265 F:      security/apparmor/
9266
9267 SENSABLE PHANTOM
9268 M:      Jiri Slaby <jirislaby@gmail.com>
9269 S:      Maintained
9270 F:      drivers/misc/phantom.c
9271 F:      include/uapi/linux/phantom.h
9272
9273 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9274 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9275 M:      Minh Tran <minh.tran@avagotech.com>
9276 M:      John Soni Jose <sony.john-n@avagotech.com>
9277 L:      linux-scsi@vger.kernel.org
9278 W:      http://www.avagotech.com
9279 S:      Supported
9280 F:      drivers/scsi/be2iscsi/
9281
9282 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9283 M:      Sathya Perla <sathya.perla@avagotech.com>
9284 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9285 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9286 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9287 L:      netdev@vger.kernel.org
9288 W:      http://www.emulex.com
9289 S:      Supported
9290 F:      drivers/net/ethernet/emulex/benet/
9291
9292 EMULEX ONECONNECT ROCE DRIVER
9293 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9294 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9295 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9296 L:      linux-rdma@vger.kernel.org
9297 W:      http://www.emulex.com
9298 S:      Supported
9299 F:      drivers/infiniband/hw/ocrdma/
9300
9301 SFC NETWORK DRIVER
9302 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9303 M:      Shradha Shah <sshah@solarflare.com>
9304 L:      netdev@vger.kernel.org
9305 S:      Supported
9306 F:      drivers/net/ethernet/sfc/
9307
9308 SGI GRU DRIVER
9309 M:      Dimitri Sivanich <sivanich@sgi.com>
9310 S:      Maintained
9311 F:      drivers/misc/sgi-gru/
9312
9313 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9314 M:      Pat Gefre <pfg@sgi.com>
9315 L:      linux-ia64@vger.kernel.org
9316 S:      Supported
9317 F:      Documentation/ia64/serial.txt
9318 F:      drivers/tty/serial/ioc?_serial.c
9319 F:      include/linux/ioc?.h
9320
9321 SGI XP/XPC/XPNET DRIVER
9322 M:      Cliff Whickman <cpw@sgi.com>
9323 M:      Robin Holt <robinmholt@gmail.com>
9324 S:      Maintained
9325 F:      drivers/misc/sgi-xp/
9326
9327 SI2157 MEDIA DRIVER
9328 M:      Antti Palosaari <crope@iki.fi>
9329 L:      linux-media@vger.kernel.org
9330 W:      http://linuxtv.org/
9331 W:      http://palosaari.fi/linux/
9332 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9333 T:      git git://linuxtv.org/anttip/media_tree.git
9334 S:      Maintained
9335 F:      drivers/media/tuners/si2157*
9336
9337 SI2168 MEDIA DRIVER
9338 M:      Antti Palosaari <crope@iki.fi>
9339 L:      linux-media@vger.kernel.org
9340 W:      http://linuxtv.org/
9341 W:      http://palosaari.fi/linux/
9342 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9343 T:      git git://linuxtv.org/anttip/media_tree.git
9344 S:      Maintained
9345 F:      drivers/media/dvb-frontends/si2168*
9346
9347 SI470X FM RADIO RECEIVER I2C DRIVER
9348 M:      Hans Verkuil <hverkuil@xs4all.nl>
9349 L:      linux-media@vger.kernel.org
9350 T:      git git://linuxtv.org/media_tree.git
9351 W:      http://linuxtv.org
9352 S:      Odd Fixes
9353 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9354
9355 SI470X FM RADIO RECEIVER USB DRIVER
9356 M:      Hans Verkuil <hverkuil@xs4all.nl>
9357 L:      linux-media@vger.kernel.org
9358 T:      git git://linuxtv.org/media_tree.git
9359 W:      http://linuxtv.org
9360 S:      Maintained
9361 F:      drivers/media/radio/si470x/radio-si470x-common.c
9362 F:      drivers/media/radio/si470x/radio-si470x.h
9363 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9364
9365 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9366 M:      Eduardo Valentin <edubezval@gmail.com>
9367 L:      linux-media@vger.kernel.org
9368 T:      git git://linuxtv.org/media_tree.git
9369 W:      http://linuxtv.org
9370 S:      Odd Fixes
9371 F:      drivers/media/radio/si4713/si4713.?
9372
9373 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9374 M:      Eduardo Valentin <edubezval@gmail.com>
9375 L:      linux-media@vger.kernel.org
9376 T:      git git://linuxtv.org/media_tree.git
9377 W:      http://linuxtv.org
9378 S:      Odd Fixes
9379 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9380
9381 SI4713 FM RADIO TRANSMITTER USB DRIVER
9382 M:      Hans Verkuil <hverkuil@xs4all.nl>
9383 L:      linux-media@vger.kernel.org
9384 T:      git git://linuxtv.org/media_tree.git
9385 W:      http://linuxtv.org
9386 S:      Maintained
9387 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9388
9389 SIANO DVB DRIVER
9390 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9391 L:      linux-media@vger.kernel.org
9392 W:      http://linuxtv.org
9393 T:      git git://linuxtv.org/media_tree.git
9394 S:      Odd fixes
9395 F:      drivers/media/common/siano/
9396 F:      drivers/media/usb/siano/
9397 F:      drivers/media/usb/siano/
9398 F:      drivers/media/mmc/siano/
9399
9400 SIMPLEFB FB DRIVER
9401 M:      Hans de Goede <hdegoede@redhat.com>
9402 L:      linux-fbdev@vger.kernel.org
9403 S:      Maintained
9404 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9405 F:      drivers/video/fbdev/simplefb.c
9406 F:      include/linux/platform_data/simplefb.h
9407
9408 SH_VEU V4L2 MEM2MEM DRIVER
9409 L:      linux-media@vger.kernel.org
9410 S:      Orphan
9411 F:      drivers/media/platform/sh_veu.c
9412
9413 SH_VOU V4L2 OUTPUT DRIVER
9414 L:      linux-media@vger.kernel.org
9415 S:      Orphan
9416 F:      drivers/media/platform/sh_vou.c
9417 F:      include/media/sh_vou.h
9418
9419 SIMPLE FIRMWARE INTERFACE (SFI)
9420 M:      Len Brown <lenb@kernel.org>
9421 L:      sfi-devel@simplefirmware.org
9422 W:      http://simplefirmware.org/
9423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9424 S:      Supported
9425 F:      arch/x86/platform/sfi/
9426 F:      drivers/sfi/
9427 F:      include/linux/sfi*.h
9428
9429 SIMTEC EB110ATX (Chalice CATS)
9430 P:      Ben Dooks
9431 P:      Vincent Sanders <vince@simtec.co.uk>
9432 M:      Simtec Linux Team <linux@simtec.co.uk>
9433 W:      http://www.simtec.co.uk/products/EB110ATX/
9434 S:      Supported
9435
9436 SIMTEC EB2410ITX (BAST)
9437 P:      Ben Dooks
9438 P:      Vincent Sanders <vince@simtec.co.uk>
9439 M:      Simtec Linux Team <linux@simtec.co.uk>
9440 W:      http://www.simtec.co.uk/products/EB2410ITX/
9441 S:      Supported
9442 F:      arch/arm/mach-s3c24xx/mach-bast.c
9443 F:      arch/arm/mach-s3c24xx/bast-ide.c
9444 F:      arch/arm/mach-s3c24xx/bast-irq.c
9445
9446 TI DAVINCI MACHINE SUPPORT
9447 M:      Sekhar Nori <nsekhar@ti.com>
9448 M:      Kevin Hilman <khilman@deeprootsystems.com>
9449 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9450 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9451 S:      Supported
9452 F:      arch/arm/mach-davinci/
9453 F:      drivers/i2c/busses/i2c-davinci.c
9454
9455 TI DAVINCI SERIES MEDIA DRIVER
9456 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9457 L:      linux-media@vger.kernel.org
9458 W:      http://linuxtv.org/
9459 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9460 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9461 S:      Maintained
9462 F:      drivers/media/platform/davinci/
9463 F:      include/media/davinci/
9464
9465 TI AM437X VPFE DRIVER
9466 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9467 L:      linux-media@vger.kernel.org
9468 W:      http://linuxtv.org/
9469 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9470 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9471 S:      Maintained
9472 F:      drivers/media/platform/am437x/
9473
9474 OV2659 OMNIVISION SENSOR DRIVER
9475 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9476 L:      linux-media@vger.kernel.org
9477 W:      http://linuxtv.org/
9478 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9479 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9480 S:      Maintained
9481 F:      drivers/media/i2c/ov2659.c
9482 F:      include/media/ov2659.h
9483
9484 SILICON MOTION SM712 FRAME BUFFER DRIVER
9485 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9486 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9487 M:      Sudip Mukherjee <sudip@vectorindia.org>
9488 L:      linux-fbdev@vger.kernel.org
9489 S:      Maintained
9490 F:      drivers/video/fbdev/sm712*
9491 F:      Documentation/fb/sm712fb.txt
9492
9493 SIS 190 ETHERNET DRIVER
9494 M:      Francois Romieu <romieu@fr.zoreil.com>
9495 L:      netdev@vger.kernel.org
9496 S:      Maintained
9497 F:      drivers/net/ethernet/sis/sis190.c
9498
9499 SIS 900/7016 FAST ETHERNET DRIVER
9500 M:      Daniele Venzano <venza@brownhat.org>
9501 W:      http://www.brownhat.org/sis900.html
9502 L:      netdev@vger.kernel.org
9503 S:      Maintained
9504 F:      drivers/net/ethernet/sis/sis900.*
9505
9506 SIS FRAMEBUFFER DRIVER
9507 M:      Thomas Winischhofer <thomas@winischhofer.net>
9508 W:      http://www.winischhofer.net/linuxsisvga.shtml
9509 S:      Maintained
9510 F:      Documentation/fb/sisfb.txt
9511 F:      drivers/video/fbdev/sis/
9512 F:      include/video/sisfb.h
9513
9514 SIS USB2VGA DRIVER
9515 M:      Thomas Winischhofer <thomas@winischhofer.net>
9516 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9517 S:      Maintained
9518 F:      drivers/usb/misc/sisusbvga/
9519
9520 SLAB ALLOCATOR
9521 M:      Christoph Lameter <cl@linux.com>
9522 M:      Pekka Enberg <penberg@kernel.org>
9523 M:      David Rientjes <rientjes@google.com>
9524 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9525 M:      Andrew Morton <akpm@linux-foundation.org>
9526 L:      linux-mm@kvack.org
9527 S:      Maintained
9528 F:      include/linux/sl?b*.h
9529 F:      mm/sl?b*
9530
9531 SLEEPABLE READ-COPY UPDATE (SRCU)
9532 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9533 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9534 M:      Josh Triplett <josh@joshtriplett.org>
9535 R:      Steven Rostedt <rostedt@goodmis.org>
9536 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9537 L:      linux-kernel@vger.kernel.org
9538 W:      http://www.rdrop.com/users/paulmck/RCU/
9539 S:      Supported
9540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9541 F:      include/linux/srcu.h
9542 F:      kernel/rcu/srcu.c
9543
9544 SMACK SECURITY MODULE
9545 M:      Casey Schaufler <casey@schaufler-ca.com>
9546 L:      linux-security-module@vger.kernel.org
9547 W:      http://schaufler-ca.com
9548 T:      git git://git.gitorious.org/smack-next/kernel.git
9549 S:      Maintained
9550 F:      Documentation/security/Smack.txt
9551 F:      security/smack/
9552
9553 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9554 M:      Kevin Hilman <khilman@kernel.org>
9555 M:      Nishanth Menon <nm@ti.com>
9556 S:      Maintained
9557 F:      drivers/power/avs/
9558 F:      include/linux/power/smartreflex.h
9559 L:      linux-pm@vger.kernel.org
9560
9561 SMC91x ETHERNET DRIVER
9562 M:      Nicolas Pitre <nico@fluxnic.net>
9563 S:      Odd Fixes
9564 F:      drivers/net/ethernet/smsc/smc91x.*
9565
9566 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9567 M:      Sakari Ailus <sakari.ailus@iki.fi>
9568 L:      linux-media@vger.kernel.org
9569 S:      Maintained
9570 F:      drivers/media/i2c/smiapp/
9571 F:      include/media/smiapp.h
9572 F:      drivers/media/i2c/smiapp-pll.c
9573 F:      drivers/media/i2c/smiapp-pll.h
9574 F:      include/uapi/linux/smiapp.h
9575 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9576
9577 SMM665 HARDWARE MONITOR DRIVER
9578 M:      Guenter Roeck <linux@roeck-us.net>
9579 L:      lm-sensors@lm-sensors.org
9580 S:      Maintained
9581 F:      Documentation/hwmon/smm665
9582 F:      drivers/hwmon/smm665.c
9583
9584 SMSC EMC2103 HARDWARE MONITOR DRIVER
9585 M:      Steve Glendinning <steve.glendinning@shawell.net>
9586 L:      lm-sensors@lm-sensors.org
9587 S:      Maintained
9588 F:      Documentation/hwmon/emc2103
9589 F:      drivers/hwmon/emc2103.c
9590
9591 SMSC SCH5627 HARDWARE MONITOR DRIVER
9592 M:      Hans de Goede <hdegoede@redhat.com>
9593 L:      lm-sensors@lm-sensors.org
9594 S:      Supported
9595 F:      Documentation/hwmon/sch5627
9596 F:      drivers/hwmon/sch5627.c
9597
9598 SMSC47B397 HARDWARE MONITOR DRIVER
9599 M:      Jean Delvare <jdelvare@suse.com>
9600 L:      lm-sensors@lm-sensors.org
9601 S:      Maintained
9602 F:      Documentation/hwmon/smsc47b397
9603 F:      drivers/hwmon/smsc47b397.c
9604
9605 SMSC911x ETHERNET DRIVER
9606 M:      Steve Glendinning <steve.glendinning@shawell.net>
9607 L:      netdev@vger.kernel.org
9608 S:      Maintained
9609 F:      include/linux/smsc911x.h
9610 F:      drivers/net/ethernet/smsc/smsc911x.*
9611
9612 SMSC9420 PCI ETHERNET DRIVER
9613 M:      Steve Glendinning <steve.glendinning@shawell.net>
9614 L:      netdev@vger.kernel.org
9615 S:      Maintained
9616 F:      drivers/net/ethernet/smsc/smsc9420.*
9617
9618 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9619 M:      Steve Glendinning <steve.glendinning@shawell.net>
9620 L:      linux-fbdev@vger.kernel.org
9621 S:      Maintained
9622 F:      drivers/video/fbdev/smscufx.c
9623
9624 SOC-CAMERA V4L2 SUBSYSTEM
9625 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9626 L:      linux-media@vger.kernel.org
9627 T:      git git://linuxtv.org/media_tree.git
9628 S:      Maintained
9629 F:      include/media/soc*
9630 F:      drivers/media/i2c/soc_camera/
9631 F:      drivers/media/platform/soc_camera/
9632
9633 SOEKRIS NET48XX LED SUPPORT
9634 M:      Chris Boot <bootc@bootc.net>
9635 S:      Maintained
9636 F:      drivers/leds/leds-net48xx.c
9637
9638 SOFTLOGIC 6x10 MPEG CODEC
9639 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9640 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9641 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9642 M:      Ismael Luceno <ismael@iodev.co.uk>
9643 L:      linux-media@vger.kernel.org
9644 S:      Supported
9645 F:      drivers/media/pci/solo6x10/
9646
9647 SOFTWARE RAID (Multiple Disks) SUPPORT
9648 M:      Neil Brown <neilb@suse.com>
9649 L:      linux-raid@vger.kernel.org
9650 S:      Supported
9651 F:      drivers/md/
9652 F:      include/linux/raid/
9653 F:      include/uapi/linux/raid/
9654
9655 SONIC NETWORK DRIVER
9656 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9657 L:      netdev@vger.kernel.org
9658 S:      Maintained
9659 F:      drivers/net/ethernet/natsemi/sonic.*
9660
9661 SONICS SILICON BACKPLANE DRIVER (SSB)
9662 M:      Michael Buesch <m@bues.ch>
9663 L:      netdev@vger.kernel.org
9664 S:      Maintained
9665 F:      drivers/ssb/
9666 F:      include/linux/ssb/
9667
9668 SONY VAIO CONTROL DEVICE DRIVER
9669 M:      Mattia Dongili <malattia@linux.it>
9670 L:      platform-driver-x86@vger.kernel.org
9671 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9672 S:      Maintained
9673 F:      Documentation/laptops/sony-laptop.txt
9674 F:      drivers/char/sonypi.c
9675 F:      drivers/platform/x86/sony-laptop.c
9676 F:      include/linux/sony-laptop.h
9677
9678 SONY MEMORYSTICK CARD SUPPORT
9679 M:      Alex Dubov <oakad@yahoo.com>
9680 W:      http://tifmxx.berlios.de/
9681 S:      Maintained
9682 F:      drivers/memstick/host/tifm_ms.c
9683
9684 SONY MEMORYSTICK STANDARD SUPPORT
9685 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9686 S:      Maintained
9687 F:      drivers/memstick/core/ms_block.*
9688
9689 SOUND
9690 M:      Jaroslav Kysela <perex@perex.cz>
9691 M:      Takashi Iwai <tiwai@suse.com>
9692 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9693 W:      http://www.alsa-project.org/
9694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9695 T:      git git://git.alsa-project.org/alsa-kernel.git
9696 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9697 S:      Maintained
9698 F:      Documentation/sound/
9699 F:      include/sound/
9700 F:      include/uapi/sound/
9701 F:      sound/
9702
9703 SOUND - COMPRESSED AUDIO
9704 M:      Vinod Koul <vinod.koul@intel.com>
9705 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9707 S:      Supported
9708 F:      Documentation/sound/alsa/compress_offload.txt
9709 F:      include/sound/compress_driver.h
9710 F:      include/uapi/sound/compress_*
9711 F:      sound/core/compress_offload.c
9712 F:      sound/soc/soc-compress.c
9713
9714 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9715 M:      Liam Girdwood <lgirdwood@gmail.com>
9716 M:      Mark Brown <broonie@kernel.org>
9717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9718 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9719 W:      http://alsa-project.org/main/index.php/ASoC
9720 S:      Supported
9721 F:      Documentation/sound/alsa/soc/
9722 F:      sound/soc/
9723 F:      include/sound/soc*
9724
9725 SOUND - DMAENGINE HELPERS
9726 M:      Lars-Peter Clausen <lars@metafoo.de>
9727 S:      Supported
9728 F:      include/sound/dmaengine_pcm.h
9729 F:      sound/core/pcm_dmaengine.c
9730 F:      sound/soc/soc-generic-dmaengine-pcm.c
9731
9732 SP2 MEDIA DRIVER
9733 M:      Olli Salonen <olli.salonen@iki.fi>
9734 L:      linux-media@vger.kernel.org
9735 W:      http://linuxtv.org/
9736 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9737 S:      Maintained
9738 F:      drivers/media/dvb-frontends/sp2*
9739
9740 SPARC + UltraSPARC (sparc/sparc64)
9741 M:      "David S. Miller" <davem@davemloft.net>
9742 L:      sparclinux@vger.kernel.org
9743 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9746 S:      Maintained
9747 F:      arch/sparc/
9748 F:      drivers/sbus/
9749
9750 SPARC SERIAL DRIVERS
9751 M:      "David S. Miller" <davem@davemloft.net>
9752 L:      sparclinux@vger.kernel.org
9753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9755 S:      Maintained
9756 F:      include/linux/sunserialcore.h
9757 F:      drivers/tty/serial/suncore.c
9758 F:      drivers/tty/serial/sunhv.c
9759 F:      drivers/tty/serial/sunsab.c
9760 F:      drivers/tty/serial/sunsab.h
9761 F:      drivers/tty/serial/sunsu.c
9762 F:      drivers/tty/serial/sunzilog.c
9763 F:      drivers/tty/serial/sunzilog.h
9764
9765 SPARSE CHECKER
9766 M:      "Christopher Li" <sparse@chrisli.org>
9767 L:      linux-sparse@vger.kernel.org
9768 W:      https://sparse.wiki.kernel.org/
9769 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9770 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9771 S:      Maintained
9772 F:      include/linux/compiler.h
9773
9774 SPEAR PLATFORM SUPPORT
9775 M:      Viresh Kumar <vireshk@kernel.org>
9776 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9777 L:      spear-devel@list.st.com
9778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9779 W:      http://www.st.com/spear
9780 S:      Maintained
9781 F:      arch/arm/mach-spear/
9782
9783 SPEAR CLOCK FRAMEWORK SUPPORT
9784 M:      Viresh Kumar <vireshk@kernel.org>
9785 L:      spear-devel@list.st.com
9786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9787 W:      http://www.st.com/spear
9788 S:      Maintained
9789 F:      drivers/clk/spear/
9790
9791 SPI SUBSYSTEM
9792 M:      Mark Brown <broonie@kernel.org>
9793 L:      linux-spi@vger.kernel.org
9794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9795 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9796 S:      Maintained
9797 F:      Documentation/spi/
9798 F:      drivers/spi/
9799 F:      include/linux/spi/
9800 F:      include/uapi/linux/spi/
9801
9802 SPIDERNET NETWORK DRIVER for CELL
9803 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9804 L:      netdev@vger.kernel.org
9805 S:      Supported
9806 F:      Documentation/networking/spider_net.txt
9807 F:      drivers/net/ethernet/toshiba/spider_net*
9808
9809 SPU FILE SYSTEM
9810 M:      Jeremy Kerr <jk@ozlabs.org>
9811 L:      linuxppc-dev@lists.ozlabs.org
9812 W:      http://www.ibm.com/developerworks/power/cell/
9813 S:      Supported
9814 F:      Documentation/filesystems/spufs.txt
9815 F:      arch/powerpc/platforms/cell/spufs/
9816
9817 SQUASHFS FILE SYSTEM
9818 M:      Phillip Lougher <phillip@squashfs.org.uk>
9819 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9820 W:      http://squashfs.org.uk
9821 S:      Maintained
9822 F:      Documentation/filesystems/squashfs.txt
9823 F:      fs/squashfs/
9824
9825 SRM (Alpha) environment access
9826 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9827 S:      Maintained
9828 F:      arch/alpha/kernel/srm_env.c
9829
9830 STABLE BRANCH
9831 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9832 L:      stable@vger.kernel.org
9833 S:      Supported
9834 F:      Documentation/stable_kernel_rules.txt
9835
9836 STAGING SUBSYSTEM
9837 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9839 L:      devel@driverdev.osuosl.org
9840 S:      Supported
9841 F:      drivers/staging/
9842
9843 STAGING - COMEDI
9844 M:      Ian Abbott <abbotti@mev.co.uk>
9845 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9846 S:      Odd Fixes
9847 F:      drivers/staging/comedi/
9848
9849 STAGING - FLARION FT1000 DRIVERS
9850 M:      Marek Belisko <marek.belisko@gmail.com>
9851 S:      Odd Fixes
9852 F:      drivers/staging/ft1000/
9853
9854 STAGING - INDUSTRIAL IO
9855 M:      Jonathan Cameron <jic23@kernel.org>
9856 L:      linux-iio@vger.kernel.org
9857 S:      Odd Fixes
9858 F:      drivers/staging/iio/
9859
9860 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9861 M:      Jarod Wilson <jarod@wilsonet.com>
9862 W:      http://www.lirc.org/
9863 S:      Odd Fixes
9864 F:      drivers/staging/media/lirc/
9865
9866 STAGING - LUSTRE PARALLEL FILESYSTEM
9867 M:      Oleg Drokin <oleg.drokin@intel.com>
9868 M:      Andreas Dilger <andreas.dilger@intel.com>
9869 L:      HPDD-discuss@lists.01.org (moderated for non-subscribers)
9870 W:      http://lustre.opensfs.org/
9871 S:      Maintained
9872 F:      drivers/staging/lustre
9873
9874 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9875 M:      Julian Andres Klode <jak@jak-linux.org>
9876 M:      Marc Dietrich <marvin24@gmx.de>
9877 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9878 L:      linux-tegra@vger.kernel.org
9879 S:      Maintained
9880 F:      drivers/staging/nvec/
9881
9882 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9883 M:      Jens Frederich <jfrederich@gmail.com>
9884 M:      Daniel Drake <dsd@laptop.org>
9885 M:      Jon Nettleton <jon.nettleton@gmail.com>
9886 W:      http://wiki.laptop.org/go/DCON
9887 S:      Maintained
9888 F:      drivers/staging/olpc_dcon/
9889
9890 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9891 M:      Willy Tarreau <willy@meta-x.org>
9892 S:      Odd Fixes
9893 F:      drivers/staging/panel/
9894
9895 STAGING - REALTEK RTL8712U DRIVERS
9896 M:      Larry Finger <Larry.Finger@lwfinger.net>
9897 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9898 S:      Odd Fixes
9899 F:      drivers/staging/rtl8712/
9900
9901 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9902 M:      Larry Finger <Larry.Finger@lwfinger.net>
9903 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9904 L:      linux-wireless@vger.kernel.org
9905 S:      Maintained
9906 F:      drivers/staging/rtl8723au/
9907
9908 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9909 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9910 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9911 M:      Sudip Mukherjee <sudip@vectorindia.org>
9912 L:      linux-fbdev@vger.kernel.org
9913 S:      Maintained
9914 F:      drivers/staging/sm750fb/
9915
9916 STAGING - SLICOSS
9917 M:      Lior Dotan <liodot@gmail.com>
9918 M:      Christopher Harrer <charrer@alacritech.com>
9919 S:      Odd Fixes
9920 F:      drivers/staging/slicoss/
9921
9922 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9923 M:      William Hubbs <w.d.hubbs@gmail.com>
9924 M:      Chris Brannon <chris@the-brannons.com>
9925 M:      Kirk Reiser <kirk@reisers.ca>
9926 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9927 L:      speakup@linux-speakup.org
9928 W:      http://www.linux-speakup.org/
9929 S:      Odd Fixes
9930 F:      drivers/staging/speakup/
9931
9932 STAGING - VIA VT665X DRIVERS
9933 M:      Forest Bond <forest@alittletooquiet.net>
9934 S:      Odd Fixes
9935 F:      drivers/staging/vt665?/
9936
9937 STAGING - WILC1000 WIFI DRIVER
9938 M:      Johnny Kim <johnny.kim@atmel.com>
9939 M:      Rachel Kim <rachel.kim@atmel.com>
9940 M:      Dean Lee <dean.lee@atmel.com>
9941 M:      Chris Park <chris.park@atmel.com>
9942 L:      linux-wireless@vger.kernel.org
9943 S:      Supported
9944 F:      drivers/staging/wilc1000/
9945
9946 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
9947 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
9948 S:      Odd Fixes
9949 F:      drivers/staging/xgifb/
9950
9951 STARFIRE/DURALAN NETWORK DRIVER
9952 M:      Ion Badulescu <ionut@badula.org>
9953 S:      Odd Fixes
9954 F:      drivers/net/ethernet/adaptec/starfire*
9955
9956 SUN3/3X
9957 M:      Sam Creasey <sammy@sammy.net>
9958 W:      http://sammy.net/sun3/
9959 S:      Maintained
9960 F:      arch/m68k/kernel/*sun3*
9961 F:      arch/m68k/sun3*/
9962 F:      arch/m68k/include/asm/sun3*
9963 F:      drivers/net/ethernet/i825xx/sun3*
9964
9965 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
9966 M:      Hans de Goede <hdegoede@redhat.com>
9967 L:      linux-input@vger.kernel.org
9968 S:      Maintained
9969 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
9970 F:      drivers/input/keyboard/sun4i-lradc-keys.c
9971
9972 SUNDANCE NETWORK DRIVER
9973 M:      Denis Kirjanov <kda@linux-powerpc.org>
9974 L:      netdev@vger.kernel.org
9975 S:      Maintained
9976 F:      drivers/net/ethernet/dlink/sundance.c
9977
9978 SUPERH
9979 L:      linux-sh@vger.kernel.org
9980 Q:      http://patchwork.kernel.org/project/linux-sh/list/
9981 S:      Orphan
9982 F:      Documentation/sh/
9983 F:      arch/sh/
9984 F:      drivers/sh/
9985
9986 SUSPEND TO RAM
9987 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9988 M:      Len Brown <len.brown@intel.com>
9989 M:      Pavel Machek <pavel@ucw.cz>
9990 L:      linux-pm@vger.kernel.org
9991 S:      Supported
9992 F:      Documentation/power/
9993 F:      arch/x86/kernel/acpi/
9994 F:      drivers/base/power/
9995 F:      kernel/power/
9996 F:      include/linux/suspend.h
9997 F:      include/linux/freezer.h
9998 F:      include/linux/pm.h
9999
10000 SVGA HANDLING
10001 M:      Martin Mares <mj@ucw.cz>
10002 L:      linux-video@atrey.karlin.mff.cuni.cz
10003 S:      Maintained
10004 F:      Documentation/svga.txt
10005 F:      arch/x86/boot/video*
10006
10007 SWIOTLB SUBSYSTEM
10008 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10009 L:      linux-kernel@vger.kernel.org
10010 S:      Supported
10011 F:      lib/swiotlb.c
10012 F:      arch/*/kernel/pci-swiotlb.c
10013 F:      include/linux/swiotlb.h
10014
10015 SWITCHDEV
10016 M:      Jiri Pirko <jiri@resnulli.us>
10017 L:      netdev@vger.kernel.org
10018 S:      Supported
10019 F:      net/switchdev/
10020 F:      include/net/switchdev.h
10021
10022 SYNOPSYS ARC ARCHITECTURE
10023 M:      Vineet Gupta <vgupta@synopsys.com>
10024 S:      Supported
10025 F:      arch/arc/
10026 F:      Documentation/devicetree/bindings/arc/*
10027 F:      drivers/tty/serial/arc_uart.c
10028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10029
10030 SYNOPSYS ARC SDP platform support
10031 M:      Alexey Brodkin <abrodkin@synopsys.com>
10032 S:      Supported
10033 F:      arch/arc/plat-axs10x
10034 F:      arch/arc/boot/dts/ax*
10035 F:      Documentation/devicetree/bindings/arc/axs10*
10036
10037 SYSTEM CONFIGURATION (SYSCON)
10038 M:      Lee Jones <lee.jones@linaro.org>
10039 M:      Arnd Bergmann <arnd@arndb.de>
10040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10041 S:      Supported
10042 F:      drivers/mfd/syscon.c
10043
10044 SYSV FILESYSTEM
10045 M:      Christoph Hellwig <hch@infradead.org>
10046 S:      Maintained
10047 F:      Documentation/filesystems/sysv-fs.txt
10048 F:      fs/sysv/
10049 F:      include/linux/sysv_fs.h
10050
10051 TARGET SUBSYSTEM
10052 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10053 L:      linux-scsi@vger.kernel.org
10054 L:      target-devel@vger.kernel.org
10055 W:      http://www.linux-iscsi.org
10056 W:      http://groups.google.com/group/linux-iscsi-target-dev
10057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10058 S:      Supported
10059 F:      drivers/target/
10060 F:      include/target/
10061 F:      Documentation/target/
10062
10063 TASKSTATS STATISTICS INTERFACE
10064 M:      Balbir Singh <bsingharora@gmail.com>
10065 S:      Maintained
10066 F:      Documentation/accounting/taskstats*
10067 F:      include/linux/taskstats*
10068 F:      kernel/taskstats.c
10069
10070 TC CLASSIFIER
10071 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10072 L:      netdev@vger.kernel.org
10073 S:      Maintained
10074 F:      include/net/pkt_cls.h
10075 F:      include/uapi/linux/pkt_cls.h
10076 F:      net/sched/
10077
10078 TCP LOW PRIORITY MODULE
10079 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10080 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10081 W:      http://tcp-lp-mod.sourceforge.net/
10082 S:      Maintained
10083 F:      net/ipv4/tcp_lp.c
10084
10085 TDA10071 MEDIA DRIVER
10086 M:      Antti Palosaari <crope@iki.fi>
10087 L:      linux-media@vger.kernel.org
10088 W:      http://linuxtv.org/
10089 W:      http://palosaari.fi/linux/
10090 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10091 T:      git git://linuxtv.org/anttip/media_tree.git
10092 S:      Maintained
10093 F:      drivers/media/dvb-frontends/tda10071*
10094
10095 TDA18212 MEDIA DRIVER
10096 M:      Antti Palosaari <crope@iki.fi>
10097 L:      linux-media@vger.kernel.org
10098 W:      http://linuxtv.org/
10099 W:      http://palosaari.fi/linux/
10100 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10101 T:      git git://linuxtv.org/anttip/media_tree.git
10102 S:      Maintained
10103 F:      drivers/media/tuners/tda18212*
10104
10105 TDA18218 MEDIA DRIVER
10106 M:      Antti Palosaari <crope@iki.fi>
10107 L:      linux-media@vger.kernel.org
10108 W:      http://linuxtv.org/
10109 W:      http://palosaari.fi/linux/
10110 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10111 T:      git git://linuxtv.org/anttip/media_tree.git
10112 S:      Maintained
10113 F:      drivers/media/tuners/tda18218*
10114
10115 TDA18271 MEDIA DRIVER
10116 M:      Michael Krufky <mkrufky@linuxtv.org>
10117 L:      linux-media@vger.kernel.org
10118 W:      http://linuxtv.org/
10119 W:      http://github.com/mkrufky
10120 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10121 T:      git git://linuxtv.org/mkrufky/tuners.git
10122 S:      Maintained
10123 F:      drivers/media/tuners/tda18271*
10124
10125 TDA827x MEDIA DRIVER
10126 M:      Michael Krufky <mkrufky@linuxtv.org>
10127 L:      linux-media@vger.kernel.org
10128 W:      http://linuxtv.org/
10129 W:      http://github.com/mkrufky
10130 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10131 T:      git git://linuxtv.org/mkrufky/tuners.git
10132 S:      Maintained
10133 F:      drivers/media/tuners/tda8290.*
10134
10135 TDA8290 MEDIA DRIVER
10136 M:      Michael Krufky <mkrufky@linuxtv.org>
10137 L:      linux-media@vger.kernel.org
10138 W:      http://linuxtv.org/
10139 W:      http://github.com/mkrufky
10140 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10141 T:      git git://linuxtv.org/mkrufky/tuners.git
10142 S:      Maintained
10143 F:      drivers/media/tuners/tda8290.*
10144
10145 TDA9840 MEDIA DRIVER
10146 M:      Hans Verkuil <hverkuil@xs4all.nl>
10147 L:      linux-media@vger.kernel.org
10148 T:      git git://linuxtv.org/media_tree.git
10149 W:      http://linuxtv.org
10150 S:      Maintained
10151 F:      drivers/media/i2c/tda9840*
10152
10153 TEA5761 TUNER DRIVER
10154 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10155 L:      linux-media@vger.kernel.org
10156 W:      http://linuxtv.org
10157 T:      git git://linuxtv.org/media_tree.git
10158 S:      Odd fixes
10159 F:      drivers/media/tuners/tea5761.*
10160
10161 TEA5767 TUNER DRIVER
10162 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10163 L:      linux-media@vger.kernel.org
10164 W:      http://linuxtv.org
10165 T:      git git://linuxtv.org/media_tree.git
10166 S:      Maintained
10167 F:      drivers/media/tuners/tea5767.*
10168
10169 TEA6415C MEDIA DRIVER
10170 M:      Hans Verkuil <hverkuil@xs4all.nl>
10171 L:      linux-media@vger.kernel.org
10172 T:      git git://linuxtv.org/media_tree.git
10173 W:      http://linuxtv.org
10174 S:      Maintained
10175 F:      drivers/media/i2c/tea6415c*
10176
10177 TEA6420 MEDIA DRIVER
10178 M:      Hans Verkuil <hverkuil@xs4all.nl>
10179 L:      linux-media@vger.kernel.org
10180 T:      git git://linuxtv.org/media_tree.git
10181 W:      http://linuxtv.org
10182 S:      Maintained
10183 F:      drivers/media/i2c/tea6420*
10184
10185 TEAM DRIVER
10186 M:      Jiri Pirko <jiri@resnulli.us>
10187 L:      netdev@vger.kernel.org
10188 S:      Supported
10189 F:      drivers/net/team/
10190 F:      include/linux/if_team.h
10191 F:      include/uapi/linux/if_team.h
10192
10193 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10194 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10195 S:      Maintained
10196 F:      arch/x86/platform/ts5500/
10197
10198 TECHNOTREND USB IR RECEIVER
10199 M:      Sean Young <sean@mess.org>
10200 L:      linux-media@vger.kernel.org
10201 S:      Maintained
10202 F:      drivers/media/rc/ttusbir.c
10203
10204 TEGRA ARCHITECTURE SUPPORT
10205 M:      Stephen Warren <swarren@wwwdotorg.org>
10206 M:      Thierry Reding <thierry.reding@gmail.com>
10207 M:      Alexandre Courbot <gnurou@gmail.com>
10208 L:      linux-tegra@vger.kernel.org
10209 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10211 S:      Supported
10212 N:      [^a-z]tegra
10213
10214 TEGRA CLOCK DRIVER
10215 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10216 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10217 S:      Supported
10218 F:      drivers/clk/tegra/
10219
10220 TEGRA DMA DRIVER
10221 M:      Laxman Dewangan <ldewangan@nvidia.com>
10222 S:      Supported
10223 F:      drivers/dma/tegra20-apb-dma.c
10224
10225 TEGRA I2C DRIVER
10226 M:      Laxman Dewangan <ldewangan@nvidia.com>
10227 S:      Supported
10228 F:      drivers/i2c/busses/i2c-tegra.c
10229
10230 TEGRA IOMMU DRIVERS
10231 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10232 S:      Supported
10233 F:      drivers/iommu/tegra*
10234
10235 TEGRA KBC DRIVER
10236 M:      Rakesh Iyer <riyer@nvidia.com>
10237 M:      Laxman Dewangan <ldewangan@nvidia.com>
10238 S:      Supported
10239 F:      drivers/input/keyboard/tegra-kbc.c
10240
10241 TEGRA PWM DRIVER
10242 M:      Thierry Reding <thierry.reding@gmail.com>
10243 S:      Supported
10244 F:      drivers/pwm/pwm-tegra.c
10245
10246 TEGRA SERIAL DRIVER
10247 M:      Laxman Dewangan <ldewangan@nvidia.com>
10248 S:      Supported
10249 F:      drivers/tty/serial/serial-tegra.c
10250
10251 TEGRA SPI DRIVER
10252 M:      Laxman Dewangan <ldewangan@nvidia.com>
10253 S:      Supported
10254 F:      drivers/spi/spi-tegra*
10255
10256 TEHUTI ETHERNET DRIVER
10257 M:      Andy Gospodarek <andy@greyhouse.net>
10258 L:      netdev@vger.kernel.org
10259 S:      Supported
10260 F:      drivers/net/ethernet/tehuti/*
10261
10262 Telecom Clock Driver for MCPL0010
10263 M:      Mark Gross <mark.gross@intel.com>
10264 S:      Supported
10265 F:      drivers/char/tlclk.c
10266
10267 TENSILICA XTENSA PORT (xtensa)
10268 M:      Chris Zankel <chris@zankel.net>
10269 M:      Max Filippov <jcmvbkbc@gmail.com>
10270 L:      linux-xtensa@linux-xtensa.org
10271 S:      Maintained
10272 F:      arch/xtensa/
10273 F:      drivers/irqchip/irq-xtensa-*
10274
10275 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10276 M:      Hans Verkuil <hverkuil@xs4all.nl>
10277 L:      linux-media@vger.kernel.org
10278 T:      git git://linuxtv.org/media_tree.git
10279 W:      http://linuxtv.org
10280 S:      Maintained
10281 F:      drivers/media/radio/radio-raremono.c
10282
10283 THERMAL
10284 M:      Zhang Rui <rui.zhang@intel.com>
10285 M:      Eduardo Valentin <edubezval@gmail.com>
10286 L:      linux-pm@vger.kernel.org
10287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10289 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10290 S:      Supported
10291 F:      drivers/thermal/
10292 F:      include/linux/thermal.h
10293 F:      include/uapi/linux/thermal.h
10294 F:      include/linux/cpu_cooling.h
10295 F:      Documentation/devicetree/bindings/thermal/
10296
10297 THINGM BLINK(1) USB RGB LED DRIVER
10298 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10299 S:      Maintained
10300 F:      drivers/hid/hid-thingm.c
10301
10302 THINKPAD ACPI EXTRAS DRIVER
10303 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10304 L:      ibm-acpi-devel@lists.sourceforge.net
10305 L:      platform-driver-x86@vger.kernel.org
10306 W:      http://ibm-acpi.sourceforge.net
10307 W:      http://thinkwiki.org/wiki/Ibm-acpi
10308 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10309 S:      Maintained
10310 F:      drivers/platform/x86/thinkpad_acpi.c
10311
10312 TI BANDGAP AND THERMAL DRIVER
10313 M:      Eduardo Valentin <edubezval@gmail.com>
10314 L:      linux-pm@vger.kernel.org
10315 L:      linux-omap@vger.kernel.org
10316 S:      Maintained
10317 F:      drivers/thermal/ti-soc-thermal/
10318
10319 TI CDCE706 CLOCK DRIVER
10320 M:      Max Filippov <jcmvbkbc@gmail.com>
10321 S:      Maintained
10322 F:      drivers/clk/clk-cdce706.c
10323
10324 TI CLOCK DRIVER
10325 M:      Tero Kristo <t-kristo@ti.com>
10326 L:      linux-omap@vger.kernel.org
10327 S:      Maintained
10328 F:      drivers/clk/ti/
10329 F:      include/linux/clk/ti.h
10330
10331 TI FLASH MEDIA INTERFACE DRIVER
10332 M:      Alex Dubov <oakad@yahoo.com>
10333 S:      Maintained
10334 F:      drivers/misc/tifm*
10335 F:      drivers/mmc/host/tifm_sd.c
10336 F:      include/linux/tifm.h
10337
10338 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10339 M:      Santosh Shilimkar <ssantosh@kernel.org>
10340 L:      linux-kernel@vger.kernel.org
10341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10342 S:      Maintained
10343 F:      drivers/soc/ti/*
10344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10345
10346
10347 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10348 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10349 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10350 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10351 S:      Maintained
10352 F:      sound/soc/codecs/lm49453*
10353 F:      sound/soc/codecs/isabelle*
10354
10355 TI LP855x BACKLIGHT DRIVER
10356 M:      Milo Kim <milo.kim@ti.com>
10357 S:      Maintained
10358 F:      Documentation/backlight/lp855x-driver.txt
10359 F:      drivers/video/backlight/lp855x_bl.c
10360 F:      include/linux/platform_data/lp855x.h
10361
10362 TI LP8727 CHARGER DRIVER
10363 M:      Milo Kim <milo.kim@ti.com>
10364 S:      Maintained
10365 F:      drivers/power/lp8727_charger.c
10366 F:      include/linux/platform_data/lp8727.h
10367
10368 TI LP8788 MFD DRIVER
10369 M:      Milo Kim <milo.kim@ti.com>
10370 S:      Maintained
10371 F:      drivers/iio/adc/lp8788_adc.c
10372 F:      drivers/leds/leds-lp8788.c
10373 F:      drivers/mfd/lp8788*.c
10374 F:      drivers/power/lp8788-charger.c
10375 F:      drivers/regulator/lp8788-*.c
10376 F:      include/linux/mfd/lp8788*.h
10377
10378 TI NETCP ETHERNET DRIVER
10379 M:      Wingman Kwok <w-kwok2@ti.com>
10380 M:      Murali Karicheri <m-karicheri2@ti.com>
10381 L:      netdev@vger.kernel.org
10382 S:      Maintained
10383 F:      drivers/net/ethernet/ti/netcp*
10384
10385 TI TAS571X FAMILY ASoC CODEC DRIVER
10386 M:      Kevin Cernekee <cernekee@chromium.org>
10387 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10388 S:      Odd Fixes
10389 F:      sound/soc/codecs/tas571x*
10390
10391 TI TWL4030 SERIES SOC CODEC DRIVER
10392 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10393 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10394 S:      Maintained
10395 F:      sound/soc/codecs/twl4030*
10396
10397 TI WILINK WIRELESS DRIVERS
10398 L:      linux-wireless@vger.kernel.org
10399 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10400 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10402 S:      Orphan
10403 F:      drivers/net/wireless/ti/
10404 F:      include/linux/wl12xx.h
10405
10406 TIPC NETWORK LAYER
10407 M:      Jon Maloy <jon.maloy@ericsson.com>
10408 M:      Ying Xue <ying.xue@windriver.com>
10409 L:      netdev@vger.kernel.org (core kernel code)
10410 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10411 W:      http://tipc.sourceforge.net/
10412 S:      Maintained
10413 F:      include/uapi/linux/tipc*.h
10414 F:      net/tipc/
10415
10416 TILE ARCHITECTURE
10417 M:      Chris Metcalf <cmetcalf@ezchip.com>
10418 W:      http://www.ezchip.com/scm/
10419 S:      Supported
10420 F:      arch/tile/
10421 F:      drivers/char/tile-srom.c
10422 F:      drivers/edac/tile_edac.c
10423 F:      drivers/net/ethernet/tile/
10424 F:      drivers/rtc/rtc-tile.c
10425 F:      drivers/tty/hvc/hvc_tile.c
10426 F:      drivers/tty/serial/tilegx.c
10427 F:      drivers/usb/host/*-tilegx.c
10428 F:      include/linux/usb/tilegx.h
10429
10430 TLAN NETWORK DRIVER
10431 M:      Samuel Chessman <chessman@tux.org>
10432 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10433 W:      http://sourceforge.net/projects/tlan/
10434 S:      Maintained
10435 F:      Documentation/networking/tlan.txt
10436 F:      drivers/net/ethernet/ti/tlan.*
10437
10438 TOMOYO SECURITY MODULE
10439 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10440 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10441 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10442 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10443 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10444 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10445 W:      http://tomoyo.sourceforge.jp/
10446 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10447 S:      Maintained
10448 F:      security/tomoyo/
10449
10450 TOPSTAR LAPTOP EXTRAS DRIVER
10451 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10452 L:      platform-driver-x86@vger.kernel.org
10453 S:      Maintained
10454 F:      drivers/platform/x86/topstar-laptop.c
10455
10456 TOSHIBA ACPI EXTRAS DRIVER
10457 M:      Azael Avalos <coproscefalo@gmail.com>
10458 L:      platform-driver-x86@vger.kernel.org
10459 S:      Maintained
10460 F:      drivers/platform/x86/toshiba_acpi.c
10461
10462 TOSHIBA BLUETOOTH DRIVER
10463 M:      Azael Avalos <coproscefalo@gmail.com>
10464 L:      platform-driver-x86@vger.kernel.org
10465 S:      Maintained
10466 F:      drivers/platform/x86/toshiba_bluetooth.c
10467
10468 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10469 M:      Azael Avalos <coproscefalo@gmail.com>
10470 L:      platform-driver-x86@vger.kernel.org
10471 S:      Maintained
10472 F:      drivers/platform/x86/toshiba_haps.c
10473
10474 TOSHIBA SMM DRIVER
10475 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10476 L:      tlinux-users@tce.toshiba-dme.co.jp
10477 W:      http://www.buzzard.org.uk/toshiba/
10478 S:      Maintained
10479 F:      drivers/char/toshiba.c
10480 F:      include/linux/toshiba.h
10481 F:      include/uapi/linux/toshiba.h
10482
10483 TOSHIBA TC358743 DRIVER
10484 M:      Mats Randgaard <matrandg@cisco.com>
10485 L:      linux-media@vger.kernel.org
10486 S:      Maintained
10487 F:      drivers/media/i2c/tc358743*
10488 F:      include/media/tc358743.h
10489
10490 TMIO MMC DRIVER
10491 M:      Ian Molton <ian@mnementh.co.uk>
10492 L:      linux-mmc@vger.kernel.org
10493 S:      Maintained
10494 F:      drivers/mmc/host/tmio_mmc*
10495 F:      drivers/mmc/host/sh_mobile_sdhi.c
10496 F:      include/linux/mmc/tmio.h
10497 F:      include/linux/mmc/sh_mobile_sdhi.h
10498
10499 TMP401 HARDWARE MONITOR DRIVER
10500 M:      Guenter Roeck <linux@roeck-us.net>
10501 L:      lm-sensors@lm-sensors.org
10502 S:      Maintained
10503 F:      Documentation/hwmon/tmp401
10504 F:      drivers/hwmon/tmp401.c
10505
10506 TMPFS (SHMEM FILESYSTEM)
10507 M:      Hugh Dickins <hughd@google.com>
10508 L:      linux-mm@kvack.org
10509 S:      Maintained
10510 F:      include/linux/shmem_fs.h
10511 F:      mm/shmem.c
10512
10513 TM6000 VIDEO4LINUX DRIVER
10514 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10515 L:      linux-media@vger.kernel.org
10516 W:      http://linuxtv.org
10517 T:      git git://linuxtv.org/media_tree.git
10518 S:      Odd fixes
10519 F:      drivers/media/usb/tm6000/
10520
10521 TW68 VIDEO4LINUX DRIVER
10522 M:      Hans Verkuil <hverkuil@xs4all.nl>
10523 L:      linux-media@vger.kernel.org
10524 T:      git git://linuxtv.org/media_tree.git
10525 W:      http://linuxtv.org
10526 S:      Odd Fixes
10527 F:      drivers/media/pci/tw68/
10528
10529 TPM DEVICE DRIVER
10530 M:      Peter Huewe <peterhuewe@gmx.de>
10531 M:      Marcel Selhorst <tpmdd@selhorst.net>
10532 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10533 W:      http://tpmdd.sourceforge.net
10534 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10535 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10536 T:      https://github.com/PeterHuewe/linux-tpmdd
10537 S:      Maintained
10538 F:      drivers/char/tpm/
10539
10540 TPM IBM_VTPM DEVICE DRIVER
10541 M:      Ashley Lai <ashleydlai@gmail.com>
10542 W:      http://tpmdd.sourceforge.net
10543 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10544 S:      Maintained
10545 F:      drivers/char/tpm/tpm_ibmvtpm*
10546
10547 TRACING
10548 M:      Steven Rostedt <rostedt@goodmis.org>
10549 M:      Ingo Molnar <mingo@redhat.com>
10550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10551 S:      Maintained
10552 F:      Documentation/trace/ftrace.txt
10553 F:      arch/*/*/*/ftrace.h
10554 F:      arch/*/kernel/ftrace.c
10555 F:      include/*/ftrace.h
10556 F:      include/linux/trace*.h
10557 F:      include/trace/
10558 F:      kernel/trace/
10559 F:      tools/testing/selftests/ftrace/
10560
10561 TRIVIAL PATCHES
10562 M:      Jiri Kosina <trivial@kernel.org>
10563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10564 S:      Maintained
10565 K:      ^Subject:.*(?i)trivial
10566
10567 TTY LAYER
10568 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10569 M:      Jiri Slaby <jslaby@suse.com>
10570 S:      Supported
10571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10572 F:      Documentation/serial/
10573 F:      drivers/tty/
10574 F:      drivers/tty/serial/serial_core.c
10575 F:      include/linux/serial_core.h
10576 F:      include/linux/serial.h
10577 F:      include/linux/tty.h
10578 F:      include/uapi/linux/serial_core.h
10579 F:      include/uapi/linux/serial.h
10580 F:      include/uapi/linux/tty.h
10581
10582 TUA9001 MEDIA DRIVER
10583 M:      Antti Palosaari <crope@iki.fi>
10584 L:      linux-media@vger.kernel.org
10585 W:      http://linuxtv.org/
10586 W:      http://palosaari.fi/linux/
10587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10588 T:      git git://linuxtv.org/anttip/media_tree.git
10589 S:      Maintained
10590 F:      drivers/media/tuners/tua9001*
10591
10592 TULIP NETWORK DRIVERS
10593 M:      Grant Grundler <grundler@parisc-linux.org>
10594 L:      netdev@vger.kernel.org
10595 S:      Maintained
10596 F:      drivers/net/ethernet/dec/tulip/
10597
10598 TUN/TAP driver
10599 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10600 W:      http://vtun.sourceforge.net/tun
10601 S:      Maintained
10602 F:      Documentation/networking/tuntap.txt
10603 F:      arch/um/os-Linux/drivers/
10604
10605 TURBOCHANNEL SUBSYSTEM
10606 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10607 M:      Ralf Baechle <ralf@linux-mips.org>
10608 L:      linux-mips@linux-mips.org
10609 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10610 S:      Maintained
10611 F:      drivers/tc/
10612 F:      include/linux/tc.h
10613
10614 U14-34F SCSI DRIVER
10615 M:      Dario Ballabio <ballabio_dario@emc.com>
10616 L:      linux-scsi@vger.kernel.org
10617 S:      Maintained
10618 F:      drivers/scsi/u14-34f.c
10619
10620 UBI FILE SYSTEM (UBIFS)
10621 M:      Artem Bityutskiy <dedekind1@gmail.com>
10622 M:      Adrian Hunter <adrian.hunter@intel.com>
10623 L:      linux-mtd@lists.infradead.org
10624 T:      git git://git.infradead.org/ubifs-2.6.git
10625 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10626 S:      Maintained
10627 F:      Documentation/filesystems/ubifs.txt
10628 F:      fs/ubifs/
10629
10630 UCLINUX (M68KNOMMU AND COLDFIRE)
10631 M:      Greg Ungerer <gerg@uclinux.org>
10632 W:      http://www.uclinux.org/
10633 L:      linux-m68k@lists.linux-m68k.org
10634 L:      uclinux-dev@uclinux.org  (subscribers-only)
10635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10636 S:      Maintained
10637 F:      arch/m68k/coldfire/
10638 F:      arch/m68k/68*/
10639 F:      arch/m68k/*/*_no.*
10640 F:      arch/m68k/include/asm/*_no.*
10641
10642 UDF FILESYSTEM
10643 M:      Jan Kara <jack@suse.com>
10644 S:      Maintained
10645 F:      Documentation/filesystems/udf.txt
10646 F:      fs/udf/
10647
10648 UFS FILESYSTEM
10649 M:      Evgeniy Dushistov <dushistov@mail.ru>
10650 S:      Maintained
10651 F:      Documentation/filesystems/ufs.txt
10652 F:      fs/ufs/
10653
10654 UHID USERSPACE HID IO DRIVER:
10655 M:      David Herrmann <dh.herrmann@googlemail.com>
10656 L:      linux-input@vger.kernel.org
10657 S:      Maintained
10658 F:      drivers/hid/uhid.c
10659 F:      include/uapi/linux/uhid.h
10660
10661 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10662 L:      linux-usb@vger.kernel.org
10663 S:      Orphan
10664 F:      drivers/uwb/
10665 F:      include/linux/uwb.h
10666 F:      include/linux/uwb/
10667
10668 UNICORE32 ARCHITECTURE:
10669 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10670 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10671 S:      Maintained
10672 T:      git git://github.com/gxt/linux.git
10673 F:      arch/unicore32/
10674
10675 UNIFDEF
10676 M:      Tony Finch <dot@dotat.at>
10677 W:      http://dotat.at/prog/unifdef
10678 S:      Maintained
10679 F:      scripts/unifdef.c
10680
10681 UNIFORM CDROM DRIVER
10682 M:      Jens Axboe <axboe@kernel.dk>
10683 W:      http://www.kernel.dk
10684 S:      Maintained
10685 F:      Documentation/cdrom/
10686 F:      drivers/cdrom/cdrom.c
10687 F:      include/linux/cdrom.h
10688 F:      include/uapi/linux/cdrom.h
10689
10690 UNISYS S-PAR DRIVERS
10691 M:      Benjamin Romer <benjamin.romer@unisys.com>
10692 M:      David Kershner <david.kershner@unisys.com>
10693 L:      sparmaintainer@unisys.com (Unisys internal)
10694 S:      Supported
10695 F:      drivers/staging/unisys/
10696
10697 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10698 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10699 L:      linux-scsi@vger.kernel.org
10700 S:      Supported
10701 F:      Documentation/scsi/ufs.txt
10702 F:      drivers/scsi/ufs/
10703
10704 UNSORTED BLOCK IMAGES (UBI)
10705 M:      Artem Bityutskiy <dedekind1@gmail.com>
10706 M:      Richard Weinberger <richard@nod.at>
10707 W:      http://www.linux-mtd.infradead.org/
10708 L:      linux-mtd@lists.infradead.org
10709 T:      git git://git.infradead.org/ubifs-2.6.git
10710 S:      Supported
10711 F:      drivers/mtd/ubi/
10712 F:      include/linux/mtd/ubi.h
10713 F:      include/uapi/mtd/ubi-user.h
10714
10715 USB ACM DRIVER
10716 M:      Oliver Neukum <oliver@neukum.org>
10717 L:      linux-usb@vger.kernel.org
10718 S:      Maintained
10719 F:      Documentation/usb/acm.txt
10720 F:      drivers/usb/class/cdc-acm.*
10721
10722 USB AR5523 WIRELESS DRIVER
10723 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10724 L:      linux-wireless@vger.kernel.org
10725 S:      Maintained
10726 F:      drivers/net/wireless/ath/ar5523/
10727
10728 USB ATTACHED SCSI
10729 M:      Hans de Goede <hdegoede@redhat.com>
10730 M:      Gerd Hoffmann <kraxel@redhat.com>
10731 L:      linux-usb@vger.kernel.org
10732 L:      linux-scsi@vger.kernel.org
10733 S:      Maintained
10734 F:      drivers/usb/storage/uas.c
10735
10736 USB CDC ETHERNET DRIVER
10737 M:      Oliver Neukum <oliver@neukum.org>
10738 L:      linux-usb@vger.kernel.org
10739 S:      Maintained
10740 F:      drivers/net/usb/cdc_*.c
10741 F:      include/uapi/linux/usb/cdc.h
10742
10743 USB CHAOSKEY DRIVER
10744 M:      Keith Packard <keithp@keithp.com>
10745 L:      linux-usb@vger.kernel.org
10746 S:      Maintained
10747 F:      drivers/usb/misc/chaoskey.c
10748
10749 USB CYPRESS C67X00 DRIVER
10750 M:      Peter Korsgaard <jacmet@sunsite.dk>
10751 L:      linux-usb@vger.kernel.org
10752 S:      Maintained
10753 F:      drivers/usb/c67x00/
10754
10755 USB DAVICOM DM9601 DRIVER
10756 M:      Peter Korsgaard <jacmet@sunsite.dk>
10757 L:      netdev@vger.kernel.org
10758 W:      http://www.linux-usb.org/usbnet
10759 S:      Maintained
10760 F:      drivers/net/usb/dm9601.c
10761
10762 USB DIAMOND RIO500 DRIVER
10763 M:      Cesar Miquel <miquel@df.uba.ar>
10764 L:      rio500-users@lists.sourceforge.net
10765 W:      http://rio500.sourceforge.net
10766 S:      Maintained
10767 F:      drivers/usb/misc/rio500*
10768
10769 USB EHCI DRIVER
10770 M:      Alan Stern <stern@rowland.harvard.edu>
10771 L:      linux-usb@vger.kernel.org
10772 S:      Maintained
10773 F:      Documentation/usb/ehci.txt
10774 F:      drivers/usb/host/ehci*
10775
10776 USB GADGET/PERIPHERAL SUBSYSTEM
10777 M:      Felipe Balbi <balbi@ti.com>
10778 L:      linux-usb@vger.kernel.org
10779 W:      http://www.linux-usb.org/gadget
10780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10781 S:      Maintained
10782 F:      drivers/usb/gadget/
10783 F:      include/linux/usb/gadget*
10784
10785 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10786 M:      Jiri Kosina <jikos@kernel.org>
10787 L:      linux-usb@vger.kernel.org
10788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10789 S:      Maintained
10790 F:      Documentation/hid/hiddev.txt
10791 F:      drivers/hid/usbhid/
10792
10793 USB ISP116X DRIVER
10794 M:      Olav Kongas <ok@artecdesign.ee>
10795 L:      linux-usb@vger.kernel.org
10796 S:      Maintained
10797 F:      drivers/usb/host/isp116x*
10798 F:      include/linux/usb/isp116x.h
10799
10800 USB MASS STORAGE DRIVER
10801 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10802 L:      linux-usb@vger.kernel.org
10803 L:      usb-storage@lists.one-eyed-alien.net
10804 S:      Maintained
10805 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10806 F:      drivers/usb/storage/
10807
10808 USB MIDI DRIVER
10809 M:      Clemens Ladisch <clemens@ladisch.de>
10810 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10811 T:      git git://git.alsa-project.org/alsa-kernel.git
10812 S:      Maintained
10813 F:      sound/usb/midi.*
10814
10815 USB NETWORKING DRIVERS
10816 L:      linux-usb@vger.kernel.org
10817 S:      Odd Fixes
10818 F:      drivers/net/usb/
10819
10820 USB OHCI DRIVER
10821 M:      Alan Stern <stern@rowland.harvard.edu>
10822 L:      linux-usb@vger.kernel.org
10823 S:      Maintained
10824 F:      Documentation/usb/ohci.txt
10825 F:      drivers/usb/host/ohci*
10826
10827 USB OTG FSM (Finite State Machine)
10828 M:      Peter Chen <Peter.Chen@freescale.com>
10829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10830 L:      linux-usb@vger.kernel.org
10831 S:      Maintained
10832 F:      drivers/usb/common/usb-otg-fsm.c
10833
10834 USB OVER IP DRIVER
10835 M:      Valentina Manea <valentina.manea.m@gmail.com>
10836 M:      Shuah Khan <shuah.kh@samsung.com>
10837 L:      linux-usb@vger.kernel.org
10838 S:      Maintained
10839 F:      drivers/usb/usbip/
10840 F:      tools/usb/usbip/
10841
10842 USB PEGASUS DRIVER
10843 M:      Petko Manolov <petkan@nucleusys.com>
10844 L:      linux-usb@vger.kernel.org
10845 L:      netdev@vger.kernel.org
10846 T:      git git://github.com/petkan/pegasus.git
10847 W:      https://github.com/petkan/pegasus
10848 S:      Maintained
10849 F:      drivers/net/usb/pegasus.*
10850
10851 USB PHY LAYER
10852 M:      Felipe Balbi <balbi@ti.com>
10853 L:      linux-usb@vger.kernel.org
10854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10855 S:      Maintained
10856 F:      drivers/usb/phy/
10857
10858 USB PRINTER DRIVER (usblp)
10859 M:      Pete Zaitcev <zaitcev@redhat.com>
10860 L:      linux-usb@vger.kernel.org
10861 S:      Supported
10862 F:      drivers/usb/class/usblp.c
10863
10864 USB RTL8150 DRIVER
10865 M:      Petko Manolov <petkan@nucleusys.com>
10866 L:      linux-usb@vger.kernel.org
10867 L:      netdev@vger.kernel.org
10868 T:      git git://github.com/petkan/rtl8150.git
10869 W:      https://github.com/petkan/rtl8150
10870 S:      Maintained
10871 F:      drivers/net/usb/rtl8150.c
10872
10873 USB SERIAL SUBSYSTEM
10874 M:      Johan Hovold <johan@kernel.org>
10875 L:      linux-usb@vger.kernel.org
10876 S:      Maintained
10877 F:      Documentation/usb/usb-serial.txt
10878 F:      drivers/usb/serial/
10879 F:      include/linux/usb/serial.h
10880
10881 USB SMSC75XX ETHERNET DRIVER
10882 M:      Steve Glendinning <steve.glendinning@shawell.net>
10883 L:      netdev@vger.kernel.org
10884 S:      Maintained
10885 F:      drivers/net/usb/smsc75xx.*
10886
10887 USB SMSC95XX ETHERNET DRIVER
10888 M:      Steve Glendinning <steve.glendinning@shawell.net>
10889 L:      netdev@vger.kernel.org
10890 S:      Maintained
10891 F:      drivers/net/usb/smsc95xx.*
10892
10893 USB SUBSYSTEM
10894 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10895 L:      linux-usb@vger.kernel.org
10896 W:      http://www.linux-usb.org
10897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10898 S:      Supported
10899 F:      Documentation/usb/
10900 F:      drivers/usb/
10901 F:      include/linux/usb.h
10902 F:      include/linux/usb/
10903
10904 USB UHCI DRIVER
10905 M:      Alan Stern <stern@rowland.harvard.edu>
10906 L:      linux-usb@vger.kernel.org
10907 S:      Maintained
10908 F:      drivers/usb/host/uhci*
10909
10910 USB "USBNET" DRIVER FRAMEWORK
10911 M:      Oliver Neukum <oneukum@suse.com>
10912 L:      netdev@vger.kernel.org
10913 W:      http://www.linux-usb.org/usbnet
10914 S:      Maintained
10915 F:      drivers/net/usb/usbnet.c
10916 F:      include/linux/usb/usbnet.h
10917
10918 USB VIDEO CLASS
10919 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10920 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10921 L:      linux-media@vger.kernel.org
10922 T:      git git://linuxtv.org/media_tree.git
10923 W:      http://www.ideasonboard.org/uvc/
10924 S:      Maintained
10925 F:      drivers/media/usb/uvc/
10926 F:      include/uapi/linux/uvcvideo.h
10927
10928 USB VISION DRIVER
10929 M:      Hans Verkuil <hverkuil@xs4all.nl>
10930 L:      linux-media@vger.kernel.org
10931 T:      git git://linuxtv.org/media_tree.git
10932 W:      http://linuxtv.org
10933 S:      Odd Fixes
10934 F:      drivers/media/usb/usbvision/
10935
10936 USB WEBCAM GADGET
10937 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10938 L:      linux-usb@vger.kernel.org
10939 S:      Maintained
10940 F:      drivers/usb/gadget/function/*uvc*
10941 F:      drivers/usb/gadget/legacy/webcam.c
10942
10943 USB WIRELESS RNDIS DRIVER (rndis_wlan)
10944 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
10945 L:      linux-wireless@vger.kernel.org
10946 S:      Maintained
10947 F:      drivers/net/wireless/rndis_wlan.c
10948
10949 USB XHCI DRIVER
10950 M:      Mathias Nyman <mathias.nyman@intel.com>
10951 L:      linux-usb@vger.kernel.org
10952 S:      Supported
10953 F:      drivers/usb/host/xhci*
10954 F:      drivers/usb/host/pci-quirks*
10955
10956 USB ZD1201 DRIVER
10957 L:      linux-wireless@vger.kernel.org
10958 W:      http://linux-lc100020.sourceforge.net
10959 S:      Orphan
10960 F:      drivers/net/wireless/zd1201.*
10961
10962 USB ZR364XX DRIVER
10963 M:      Antoine Jacquet <royale@zerezo.com>
10964 L:      linux-usb@vger.kernel.org
10965 L:      linux-media@vger.kernel.org
10966 T:      git git://linuxtv.org/media_tree.git
10967 W:      http://royale.zerezo.com/zr364xx/
10968 S:      Maintained
10969 F:      Documentation/video4linux/zr364xx.txt
10970 F:      drivers/media/usb/zr364xx/
10971
10972 ULPI BUS
10973 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
10974 L:      linux-usb@vger.kernel.org
10975 S:      Maintained
10976 F:      drivers/usb/common/ulpi.c
10977 F:      include/linux/ulpi/
10978
10979 USER-MODE LINUX (UML)
10980 M:      Jeff Dike <jdike@addtoit.com>
10981 M:      Richard Weinberger <richard@nod.at>
10982 L:      user-mode-linux-devel@lists.sourceforge.net
10983 L:      user-mode-linux-user@lists.sourceforge.net
10984 W:      http://user-mode-linux.sourceforge.net
10985 S:      Maintained
10986 F:      Documentation/virtual/uml/
10987 F:      arch/um/
10988 F:      arch/x86/um/
10989 F:      fs/hostfs/
10990 F:      fs/hppfs/
10991
10992 USERSPACE I/O (UIO)
10993 M:      "Hans J. Koch" <hjk@hansjkoch.de>
10994 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10995 S:      Maintained
10996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
10997 F:      Documentation/DocBook/uio-howto.tmpl
10998 F:      drivers/uio/
10999 F:      include/linux/uio*.h
11000
11001 UTIL-LINUX PACKAGE
11002 M:      Karel Zak <kzak@redhat.com>
11003 L:      util-linux@vger.kernel.org
11004 W:      http://en.wikipedia.org/wiki/Util-linux
11005 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11006 S:      Maintained
11007
11008 UVESAFB DRIVER
11009 M:      Michal Januszewski <spock@gentoo.org>
11010 L:      linux-fbdev@vger.kernel.org
11011 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11012 S:      Maintained
11013 F:      Documentation/fb/uvesafb.txt
11014 F:      drivers/video/fbdev/uvesafb.*
11015
11016 VFAT/FAT/MSDOS FILESYSTEM
11017 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11018 S:      Maintained
11019 F:      Documentation/filesystems/vfat.txt
11020 F:      fs/fat/
11021
11022 VFIO DRIVER
11023 M:      Alex Williamson <alex.williamson@redhat.com>
11024 L:      kvm@vger.kernel.org
11025 S:      Maintained
11026 F:      Documentation/vfio.txt
11027 F:      drivers/vfio/
11028 F:      include/linux/vfio.h
11029 F:      include/uapi/linux/vfio.h
11030
11031 VFIO PLATFORM DRIVER
11032 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11033 L:      kvm@vger.kernel.org
11034 S:      Maintained
11035 F:      drivers/vfio/platform/
11036
11037 VIDEOBUF2 FRAMEWORK
11038 M:      Pawel Osciak <pawel@osciak.com>
11039 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11040 M:      Kyungmin Park <kyungmin.park@samsung.com>
11041 L:      linux-media@vger.kernel.org
11042 S:      Maintained
11043 F:      drivers/media/v4l2-core/videobuf2-*
11044 F:      include/media/videobuf2-*
11045
11046 VIRTIO CONSOLE DRIVER
11047 M:      Amit Shah <amit.shah@redhat.com>
11048 L:      virtualization@lists.linux-foundation.org
11049 S:      Maintained
11050 F:      drivers/char/virtio_console.c
11051 F:      include/linux/virtio_console.h
11052 F:      include/uapi/linux/virtio_console.h
11053
11054 VIRTIO CORE, NET AND BLOCK DRIVERS
11055 M:      "Michael S. Tsirkin" <mst@redhat.com>
11056 L:      virtualization@lists.linux-foundation.org
11057 S:      Maintained
11058 F:      drivers/virtio/
11059 F:      tools/virtio/
11060 F:      drivers/net/virtio_net.c
11061 F:      drivers/block/virtio_blk.c
11062 F:      include/linux/virtio_*.h
11063 F:      include/uapi/linux/virtio_*.h
11064
11065 VIRTIO DRIVERS FOR S390
11066 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11067 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11068 L:      linux-s390@vger.kernel.org
11069 L:      virtualization@lists.linux-foundation.org
11070 L:      kvm@vger.kernel.org
11071 S:      Supported
11072 F:      drivers/s390/virtio/
11073
11074 VIRTIO GPU DRIVER
11075 M:      David Airlie <airlied@linux.ie>
11076 M:      Gerd Hoffmann <kraxel@redhat.com>
11077 L:      dri-devel@lists.freedesktop.org
11078 L:      virtualization@lists.linux-foundation.org
11079 S:      Maintained
11080 F:      drivers/gpu/drm/virtio/
11081 F:      include/uapi/linux/virtio_gpu.h
11082
11083 VIRTIO HOST (VHOST)
11084 M:      "Michael S. Tsirkin" <mst@redhat.com>
11085 L:      kvm@vger.kernel.org
11086 L:      virtualization@lists.linux-foundation.org
11087 L:      netdev@vger.kernel.org
11088 S:      Maintained
11089 F:      drivers/vhost/
11090 F:      include/uapi/linux/vhost.h
11091
11092 VIRTIO INPUT DRIVER
11093 M:      Gerd Hoffmann <kraxel@redhat.com>
11094 S:      Maintained
11095 F:      drivers/virtio/virtio_input.c
11096 F:      include/uapi/linux/virtio_input.h
11097
11098 VIA RHINE NETWORK DRIVER
11099 S:      Orphan
11100 F:      drivers/net/ethernet/via/via-rhine.c
11101
11102 VIA SD/MMC CARD CONTROLLER DRIVER
11103 M:      Bruce Chang <brucechang@via.com.tw>
11104 M:      Harald Welte <HaraldWelte@viatech.com>
11105 S:      Maintained
11106 F:      drivers/mmc/host/via-sdmmc.c
11107
11108 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11109 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11110 L:      linux-fbdev@vger.kernel.org
11111 S:      Maintained
11112 F:      include/linux/via-core.h
11113 F:      include/linux/via-gpio.h
11114 F:      include/linux/via_i2c.h
11115 F:      drivers/video/fbdev/via/
11116
11117 VIA VELOCITY NETWORK DRIVER
11118 M:      Francois Romieu <romieu@fr.zoreil.com>
11119 L:      netdev@vger.kernel.org
11120 S:      Maintained
11121 F:      drivers/net/ethernet/via/via-velocity.*
11122
11123 VIVID VIRTUAL VIDEO DRIVER
11124 M:      Hans Verkuil <hverkuil@xs4all.nl>
11125 L:      linux-media@vger.kernel.org
11126 T:      git git://linuxtv.org/media_tree.git
11127 W:      http://linuxtv.org
11128 S:      Maintained
11129 F:      drivers/media/platform/vivid/*
11130
11131 VLAN (802.1Q)
11132 M:      Patrick McHardy <kaber@trash.net>
11133 L:      netdev@vger.kernel.org
11134 S:      Maintained
11135 F:      drivers/net/macvlan.c
11136 F:      include/linux/if_*vlan.h
11137 F:      net/8021q/
11138
11139 VLYNQ BUS
11140 M:      Florian Fainelli <florian@openwrt.org>
11141 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11142 S:      Maintained
11143 F:      drivers/vlynq/vlynq.c
11144 F:      include/linux/vlynq.h
11145
11146 VME SUBSYSTEM
11147 M:      Martyn Welch <martyn.welch@ge.com>
11148 M:      Manohar Vanga <manohar.vanga@gmail.com>
11149 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11150 L:      devel@driverdev.osuosl.org
11151 S:      Maintained
11152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11153 F:      Documentation/vme_api.txt
11154 F:      drivers/staging/vme/
11155 F:      drivers/vme/
11156 F:      include/linux/vme*
11157
11158 VMWARE HYPERVISOR INTERFACE
11159 M:      Alok Kataria <akataria@vmware.com>
11160 L:      virtualization@lists.linux-foundation.org
11161 S:      Supported
11162 F:      arch/x86/kernel/cpu/vmware.c
11163
11164 VMWARE BALLOON DRIVER
11165 M:      Xavier Deguillard <xdeguillard@vmware.com>
11166 M:      Philip Moltmann <moltmann@vmware.com>
11167 M:      "VMware, Inc." <pv-drivers@vmware.com>
11168 L:      linux-kernel@vger.kernel.org
11169 S:      Maintained
11170 F:      drivers/misc/vmw_balloon.c
11171
11172 VMWARE VMMOUSE SUBDRIVER
11173 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11174 M:      "VMware, Inc." <pv-drivers@vmware.com>
11175 L:      linux-input@vger.kernel.org
11176 S:      Maintained
11177 F:      drivers/input/mouse/vmmouse.c
11178 F:      drivers/input/mouse/vmmouse.h
11179
11180 VMWARE VMXNET3 ETHERNET DRIVER
11181 M:      Shrikrishna Khare <skhare@vmware.com>
11182 M:      "VMware, Inc." <pv-drivers@vmware.com>
11183 L:      netdev@vger.kernel.org
11184 S:      Maintained
11185 F:      drivers/net/vmxnet3/
11186
11187 VMware PVSCSI driver
11188 M:      Arvind Kumar <arvindkumar@vmware.com>
11189 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11190 L:      linux-scsi@vger.kernel.org
11191 S:      Maintained
11192 F:      drivers/scsi/vmw_pvscsi.c
11193 F:      drivers/scsi/vmw_pvscsi.h
11194
11195 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11196 M:      Liam Girdwood <lgirdwood@gmail.com>
11197 M:      Mark Brown <broonie@kernel.org>
11198 L:      linux-kernel@vger.kernel.org
11199 W:      http://opensource.wolfsonmicro.com/node/15
11200 W:      http://www.slimlogic.co.uk/?p=48
11201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11202 S:      Supported
11203 F:      drivers/regulator/
11204 F:      include/linux/regulator/
11205
11206 VRF
11207 M:      David Ahern <dsa@cumulusnetworks.com>
11208 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11209 L:      netdev@vger.kernel.org
11210 S:      Maintained
11211 F:      drivers/net/vrf.c
11212 F:      include/net/vrf.h
11213
11214 VT1211 HARDWARE MONITOR DRIVER
11215 M:      Juerg Haefliger <juergh@gmail.com>
11216 L:      lm-sensors@lm-sensors.org
11217 S:      Maintained
11218 F:      Documentation/hwmon/vt1211
11219 F:      drivers/hwmon/vt1211.c
11220
11221 VT8231 HARDWARE MONITOR DRIVER
11222 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11223 L:      lm-sensors@lm-sensors.org
11224 S:      Maintained
11225 F:      drivers/hwmon/vt8231.c
11226
11227 VUB300 USB to SDIO/SD/MMC bridge chip
11228 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11229 L:      linux-mmc@vger.kernel.org
11230 L:      linux-usb@vger.kernel.org
11231 S:      Supported
11232 F:      drivers/mmc/host/vub300.c
11233
11234 W1 DALLAS'S 1-WIRE BUS
11235 M:      Evgeniy Polyakov <zbr@ioremap.net>
11236 S:      Maintained
11237 F:      Documentation/w1/
11238 F:      drivers/w1/
11239
11240 W83791D HARDWARE MONITORING DRIVER
11241 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11242 L:      lm-sensors@lm-sensors.org
11243 S:      Maintained
11244 F:      Documentation/hwmon/w83791d
11245 F:      drivers/hwmon/w83791d.c
11246
11247 W83793 HARDWARE MONITORING DRIVER
11248 M:      Rudolf Marek <r.marek@assembler.cz>
11249 L:      lm-sensors@lm-sensors.org
11250 S:      Maintained
11251 F:      Documentation/hwmon/w83793
11252 F:      drivers/hwmon/w83793.c
11253
11254 W83795 HARDWARE MONITORING DRIVER
11255 M:      Jean Delvare <jdelvare@suse.com>
11256 L:      lm-sensors@lm-sensors.org
11257 S:      Maintained
11258 F:      drivers/hwmon/w83795.c
11259
11260 W83L51xD SD/MMC CARD INTERFACE DRIVER
11261 M:      Pierre Ossman <pierre@ossman.eu>
11262 S:      Maintained
11263 F:      drivers/mmc/host/wbsd.*
11264
11265 WACOM PROTOCOL 4 SERIAL TABLETS
11266 M:      Julian Squires <julian@cipht.net>
11267 M:      Hans de Goede <hdegoede@redhat.com>
11268 L:      linux-input@vger.kernel.org
11269 S:      Maintained
11270 F:      drivers/input/tablet/wacom_serial4.c
11271
11272 WATCHDOG DEVICE DRIVERS
11273 M:      Wim Van Sebroeck <wim@iguana.be>
11274 L:      linux-watchdog@vger.kernel.org
11275 W:      http://www.linux-watchdog.org/
11276 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11277 S:      Maintained
11278 F:      Documentation/watchdog/
11279 F:      drivers/watchdog/
11280 F:      include/linux/watchdog.h
11281 F:      include/uapi/linux/watchdog.h
11282
11283 WD7000 SCSI DRIVER
11284 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11285 L:      linux-scsi@vger.kernel.org
11286 S:      Maintained
11287 F:      drivers/scsi/wd7000.c
11288
11289 WIIMOTE HID DRIVER
11290 M:      David Herrmann <dh.herrmann@googlemail.com>
11291 L:      linux-input@vger.kernel.org
11292 S:      Maintained
11293 F:      drivers/hid/hid-wiimote*
11294
11295 WINBOND CIR DRIVER
11296 M:      David Härdeman <david@hardeman.nu>
11297 S:      Maintained
11298 F:      drivers/media/rc/winbond-cir.c
11299
11300 WIMAX STACK
11301 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11302 M:      linux-wimax@intel.com
11303 L:      wimax@linuxwimax.org (subscribers-only)
11304 S:      Supported
11305 W:      http://linuxwimax.org
11306 F:      Documentation/wimax/README.wimax
11307 F:      include/linux/wimax/debug.h
11308 F:      include/net/wimax.h
11309 F:      include/uapi/linux/wimax.h
11310 F:      net/wimax/
11311
11312 WISTRON LAPTOP BUTTON DRIVER
11313 M:      Miloslav Trmac <mitr@volny.cz>
11314 S:      Maintained
11315 F:      drivers/input/misc/wistron_btns.c
11316
11317 WL3501 WIRELESS PCMCIA CARD DRIVER
11318 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11319 L:      linux-wireless@vger.kernel.org
11320 W:      http://oops.ghostprotocols.net:81/blog
11321 S:      Maintained
11322 F:      drivers/net/wireless/wl3501*
11323
11324 WM97XX TOUCHSCREEN DRIVERS
11325 M:      Mark Brown <broonie@kernel.org>
11326 M:      Liam Girdwood <lrg@slimlogic.co.uk>
11327 L:      linux-input@vger.kernel.org
11328 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
11329 W:      http://opensource.wolfsonmicro.com/node/7
11330 S:      Supported
11331 F:      drivers/input/touchscreen/*wm97*
11332 F:      include/linux/wm97xx.h
11333
11334 WOLFSON MICROELECTRONICS DRIVERS
11335 L:      patches@opensource.wolfsonmicro.com
11336 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
11337 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
11338 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
11339 S:      Supported
11340 F:      Documentation/hwmon/wm83??
11341 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11342 F:      drivers/clk/clk-wm83*.c
11343 F:      drivers/extcon/extcon-arizona.c
11344 F:      drivers/leds/leds-wm83*.c
11345 F:      drivers/gpio/gpio-*wm*.c
11346 F:      drivers/gpio/gpio-arizona.c
11347 F:      drivers/hwmon/wm83??-hwmon.c
11348 F:      drivers/input/misc/wm831x-on.c
11349 F:      drivers/input/touchscreen/wm831x-ts.c
11350 F:      drivers/input/touchscreen/wm97*.c
11351 F:      drivers/mfd/arizona*
11352 F:      drivers/mfd/wm*.c
11353 F:      drivers/power/wm83*.c
11354 F:      drivers/rtc/rtc-wm83*.c
11355 F:      drivers/regulator/wm8*.c
11356 F:      drivers/video/backlight/wm83*_bl.c
11357 F:      drivers/watchdog/wm83*_wdt.c
11358 F:      include/linux/mfd/arizona/
11359 F:      include/linux/mfd/wm831x/
11360 F:      include/linux/mfd/wm8350/
11361 F:      include/linux/mfd/wm8400*
11362 F:      include/linux/wm97xx.h
11363 F:      include/sound/wm????.h
11364 F:      sound/soc/codecs/arizona.?
11365 F:      sound/soc/codecs/wm*
11366
11367 WORKQUEUE
11368 M:      Tejun Heo <tj@kernel.org>
11369 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11371 S:      Maintained
11372 F:      include/linux/workqueue.h
11373 F:      kernel/workqueue.c
11374 F:      Documentation/workqueue.txt
11375
11376 X.25 NETWORK LAYER
11377 M:      Andrew Hendry <andrew.hendry@gmail.com>
11378 L:      linux-x25@vger.kernel.org
11379 S:      Odd Fixes
11380 F:      Documentation/networking/x25*
11381 F:      include/net/x25*
11382 F:      net/x25/
11383
11384 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11385 M:      Thomas Gleixner <tglx@linutronix.de>
11386 M:      Ingo Molnar <mingo@redhat.com>
11387 M:      "H. Peter Anvin" <hpa@zytor.com>
11388 M:      x86@kernel.org
11389 L:      linux-kernel@vger.kernel.org
11390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11391 S:      Maintained
11392 F:      Documentation/x86/
11393 F:      arch/x86/
11394
11395 X86 PLATFORM DRIVERS
11396 M:      Darren Hart <dvhart@infradead.org>
11397 L:      platform-driver-x86@vger.kernel.org
11398 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11399 S:      Maintained
11400 F:      drivers/platform/x86/
11401
11402 X86 MCE INFRASTRUCTURE
11403 M:      Tony Luck <tony.luck@intel.com>
11404 M:      Borislav Petkov <bp@alien8.de>
11405 L:      linux-edac@vger.kernel.org
11406 S:      Maintained
11407 F:      arch/x86/kernel/cpu/mcheck/*
11408
11409 X86 VDSO
11410 M:      Andy Lutomirski <luto@amacapital.net>
11411 L:      linux-kernel@vger.kernel.org
11412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11413 S:      Maintained
11414 F:      arch/x86/entry/vdso/
11415
11416 XC2028/3028 TUNER DRIVER
11417 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11418 L:      linux-media@vger.kernel.org
11419 W:      http://linuxtv.org
11420 T:      git git://linuxtv.org/media_tree.git
11421 S:      Maintained
11422 F:      drivers/media/tuners/tuner-xc2028.*
11423
11424 XEN HYPERVISOR INTERFACE
11425 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11426 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11427 M:      David Vrabel <david.vrabel@citrix.com>
11428 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11430 S:      Supported
11431 F:      arch/x86/xen/
11432 F:      drivers/*/xen-*front.c
11433 F:      drivers/xen/
11434 F:      arch/x86/include/asm/xen/
11435 F:      include/xen/
11436 F:      include/uapi/xen/
11437
11438 XEN HYPERVISOR ARM
11439 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11440 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11441 S:      Supported
11442 F:      arch/arm/xen/
11443 F:      arch/arm/include/asm/xen/
11444
11445 XEN HYPERVISOR ARM64
11446 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11447 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11448 S:      Supported
11449 F:      arch/arm64/xen/
11450 F:      arch/arm64/include/asm/xen/
11451
11452 XEN NETWORK BACKEND DRIVER
11453 M:      Ian Campbell <ian.campbell@citrix.com>
11454 M:      Wei Liu <wei.liu2@citrix.com>
11455 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11456 L:      netdev@vger.kernel.org
11457 S:      Supported
11458 F:      drivers/net/xen-netback/*
11459
11460 XEN PCI SUBSYSTEM
11461 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11462 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11463 S:      Supported
11464 F:      arch/x86/pci/*xen*
11465 F:      drivers/pci/*xen*
11466
11467 XEN BLOCK SUBSYSTEM
11468 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11469 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11470 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11471 S:      Supported
11472 F:      drivers/block/xen-blkback/*
11473 F:      drivers/block/xen*
11474
11475 XEN PVSCSI DRIVERS
11476 M:      Juergen Gross <jgross@suse.com>
11477 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11478 L:      linux-scsi@vger.kernel.org
11479 S:      Supported
11480 F:      drivers/scsi/xen-scsifront.c
11481 F:      drivers/xen/xen-scsiback.c
11482 F:      include/xen/interface/io/vscsiif.h
11483
11484 XEN SWIOTLB SUBSYSTEM
11485 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11486 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11487 S:      Supported
11488 F:      arch/x86/xen/*swiotlb*
11489 F:      drivers/xen/*swiotlb*
11490
11491 XFS FILESYSTEM
11492 P:      Silicon Graphics Inc
11493 M:      Dave Chinner <david@fromorbit.com>
11494 M:      xfs@oss.sgi.com
11495 L:      xfs@oss.sgi.com
11496 W:      http://oss.sgi.com/projects/xfs
11497 T:      git git://oss.sgi.com/xfs/xfs.git
11498 S:      Supported
11499 F:      Documentation/filesystems/xfs.txt
11500 F:      fs/xfs/
11501
11502 XILINX AXI ETHERNET DRIVER
11503 M:      Anirudha Sarangi <anirudh@xilinx.com>
11504 M:      John Linn <John.Linn@xilinx.com>
11505 S:      Maintained
11506 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11507
11508 XILINX UARTLITE SERIAL DRIVER
11509 M:      Peter Korsgaard <jacmet@sunsite.dk>
11510 L:      linux-serial@vger.kernel.org
11511 S:      Maintained
11512 F:      drivers/tty/serial/uartlite.c
11513
11514 XILINX VIDEO IP CORES
11515 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11516 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11517 L:      linux-media@vger.kernel.org
11518 T:      git git://linuxtv.org/media_tree.git
11519 S:      Supported
11520 F:      Documentation/devicetree/bindings/media/xilinx/
11521 F:      drivers/media/platform/xilinx/
11522 F:      include/uapi/linux/xilinx-v4l2-controls.h
11523
11524 XILLYBUS DRIVER
11525 M:      Eli Billauer <eli.billauer@gmail.com>
11526 L:      linux-kernel@vger.kernel.org
11527 S:      Supported
11528 F:      drivers/char/xillybus/
11529
11530 XTENSA XTFPGA PLATFORM SUPPORT
11531 M:      Max Filippov <jcmvbkbc@gmail.com>
11532 L:      linux-xtensa@linux-xtensa.org
11533 S:      Maintained
11534 F:      drivers/spi/spi-xtensa-xtfpga.c
11535 F:      sound/soc/xtensa/xtfpga-i2s.c
11536
11537 YAM DRIVER FOR AX.25
11538 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11539 L:      linux-hams@vger.kernel.org
11540 S:      Maintained
11541 F:      drivers/net/hamradio/yam*
11542 F:      include/linux/yam.h
11543
11544 YEALINK PHONE DRIVER
11545 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11546 L:      usbb2k-api-dev@nongnu.org
11547 S:      Maintained
11548 F:      Documentation/input/yealink.txt
11549 F:      drivers/input/misc/yealink.*
11550
11551 Z8530 DRIVER FOR AX.25
11552 M:      Joerg Reuter <jreuter@yaina.de>
11553 W:      http://yaina.de/jreuter/
11554 W:      http://www.qsl.net/dl1bke/
11555 L:      linux-hams@vger.kernel.org
11556 S:      Maintained
11557 F:      Documentation/networking/z8530drv.txt
11558 F:      drivers/net/hamradio/*scc.c
11559 F:      drivers/net/hamradio/z8530.h
11560
11561 ZBUD COMPRESSED PAGE ALLOCATOR
11562 M:      Seth Jennings <sjennings@variantweb.net>
11563 L:      linux-mm@kvack.org
11564 S:      Maintained
11565 F:      mm/zbud.c
11566 F:      include/linux/zbud.h
11567
11568 ZD1211RW WIRELESS DRIVER
11569 M:      Daniel Drake <dsd@gentoo.org>
11570 M:      Ulrich Kunitz <kune@deine-taler.de>
11571 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11572 L:      linux-wireless@vger.kernel.org
11573 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11574 S:      Maintained
11575 F:      drivers/net/wireless/zd1211rw/
11576
11577 ZPOOL COMPRESSED PAGE STORAGE API
11578 M:      Dan Streetman <ddstreet@ieee.org>
11579 L:      linux-mm@kvack.org
11580 S:      Maintained
11581 F:      mm/zpool.c
11582 F:      include/linux/zpool.h
11583
11584 ZR36067 VIDEO FOR LINUX DRIVER
11585 L:      mjpeg-users@lists.sourceforge.net
11586 L:      linux-media@vger.kernel.org
11587 W:      http://mjpeg.sourceforge.net/driver-zoran/
11588 T:      hg http://linuxtv.org/hg/v4l-dvb
11589 S:      Odd Fixes
11590 F:      drivers/media/pci/zoran/
11591
11592 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11593 M:      Minchan Kim <minchan@kernel.org>
11594 M:      Nitin Gupta <ngupta@vflare.org>
11595 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11596 L:      linux-kernel@vger.kernel.org
11597 S:      Maintained
11598 F:      drivers/block/zram/
11599 F:      Documentation/blockdev/zram.txt
11600
11601 ZS DECSTATION Z85C30 SERIAL DRIVER
11602 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11603 S:      Maintained
11604 F:      drivers/tty/serial/zs.*
11605
11606 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11607 M:      Minchan Kim <minchan@kernel.org>
11608 M:      Nitin Gupta <ngupta@vflare.org>
11609 L:      linux-mm@kvack.org
11610 S:      Maintained
11611 F:      mm/zsmalloc.c
11612 F:      include/linux/zsmalloc.h
11613 F:      Documentation/vm/zsmalloc.txt
11614
11615 ZSWAP COMPRESSED SWAP CACHING
11616 M:      Seth Jennings <sjennings@variantweb.net>
11617 L:      linux-mm@kvack.org
11618 S:      Maintained
11619 F:      mm/zswap.c
11620
11621 THE REST
11622 M:      Linus Torvalds <torvalds@linux-foundation.org>
11623 L:      linux-kernel@vger.kernel.org
11624 Q:      http://patchwork.kernel.org/project/LKML/list/
11625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11626 S:      Buried alive in reporters
11627 F:      *
11628 F:      */