Merge tag 'armsoc-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[linux-2.6-block.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 ACCES 104-IDIO-16 GPIO DRIVER
244 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
245 L:      linux-gpio@vger.kernel.org
246 S:      Maintained
247 F:      drivers/gpio/gpio-104-idio-16.c
248
249 ACENIC DRIVER
250 M:      Jes Sorensen <jes@trained-monkey.org>
251 L:      linux-acenic@sunsite.dk
252 S:      Maintained
253 F:      drivers/net/ethernet/alteon/acenic*
254
255 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
256 M:      Peter Feuerer <peter@piie.net>
257 L:      platform-driver-x86@vger.kernel.org
258 W:      http://piie.net/?section=acerhdf
259 S:      Maintained
260 F:      drivers/platform/x86/acerhdf.c
261
262 ACER WMI LAPTOP EXTRAS
263 M:      "Lee, Chun-Yi" <jlee@suse.com>
264 L:      platform-driver-x86@vger.kernel.org
265 S:      Maintained
266 F:      drivers/platform/x86/acer-wmi.c
267
268 ACPI
269 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
270 M:      Len Brown <lenb@kernel.org>
271 L:      linux-acpi@vger.kernel.org
272 W:      https://01.org/linux-acpi
273 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
275 S:      Supported
276 F:      drivers/acpi/
277 F:      drivers/pnp/pnpacpi/
278 F:      include/linux/acpi.h
279 F:      include/acpi/
280 F:      Documentation/acpi/
281 F:      Documentation/ABI/testing/sysfs-bus-acpi
282 F:      drivers/pci/*acpi*
283 F:      drivers/pci/*/*acpi*
284 F:      drivers/pci/*/*/*acpi*
285 F:      tools/power/acpi/
286
287 ACPI COMPONENT ARCHITECTURE (ACPICA)
288 M:      Robert Moore <robert.moore@intel.com>
289 M:      Lv Zheng <lv.zheng@intel.com>
290 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
291 L:      linux-acpi@vger.kernel.org
292 L:      devel@acpica.org
293 W:      https://acpica.org/
294 W:      https://github.com/acpica/acpica/
295 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
297 S:      Supported
298 F:      drivers/acpi/acpica/
299 F:      include/acpi/
300 F:      tools/power/acpi/
301
302 ACPI FAN DRIVER
303 M:      Zhang Rui <rui.zhang@intel.com>
304 L:      linux-acpi@vger.kernel.org
305 W:      https://01.org/linux-acpi
306 S:      Supported
307 F:      drivers/acpi/fan.c
308
309 ACPI THERMAL DRIVER
310 M:      Zhang Rui <rui.zhang@intel.com>
311 L:      linux-acpi@vger.kernel.org
312 W:      https://01.org/linux-acpi
313 S:      Supported
314 F:      drivers/acpi/*thermal*
315
316 ACPI VIDEO DRIVER
317 M:      Zhang Rui <rui.zhang@intel.com>
318 L:      linux-acpi@vger.kernel.org
319 W:      https://01.org/linux-acpi
320 S:      Supported
321 F:      drivers/acpi/video.c
322
323 ACPI WMI DRIVER
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Orphan
326 F:      drivers/platform/x86/wmi.c
327
328 AD1889 ALSA SOUND DRIVER
329 M:      Thibaut Varene <T-Bone@parisc-linux.org>
330 W:      http://wiki.parisc-linux.org/AD1889
331 L:      linux-parisc@vger.kernel.org
332 S:      Maintained
333 F:      sound/pci/ad1889.*
334
335 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
336 M:      Michael Hennerich <michael.hennerich@analog.com>
337 W:      http://wiki.analog.com/AD5254
338 W:      http://ez.analog.com/community/linux-device-drivers
339 S:      Supported
340 F:      drivers/misc/ad525x_dpot.c
341
342 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
343 M:      Michael Hennerich <michael.hennerich@analog.com>
344 W:      http://wiki.analog.com/AD5398
345 W:      http://ez.analog.com/community/linux-device-drivers
346 S:      Supported
347 F:      drivers/regulator/ad5398.c
348
349 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
350 M:      Michael Hennerich <michael.hennerich@analog.com>
351 W:      http://wiki.analog.com/AD7142
352 W:      http://ez.analog.com/community/linux-device-drivers
353 S:      Supported
354 F:      drivers/input/misc/ad714x.c
355
356 AD7877 TOUCHSCREEN DRIVER
357 M:      Michael Hennerich <michael.hennerich@analog.com>
358 W:      http://wiki.analog.com/AD7877
359 W:      http://ez.analog.com/community/linux-device-drivers
360 S:      Supported
361 F:      drivers/input/touchscreen/ad7877.c
362
363 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
364 M:      Michael Hennerich <michael.hennerich@analog.com>
365 W:      http://wiki.analog.com/AD7879
366 W:      http://ez.analog.com/community/linux-device-drivers
367 S:      Supported
368 F:      drivers/input/touchscreen/ad7879.c
369
370 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
371 M:      Jiri Kosina <jikos@kernel.org>
372 S:      Maintained
373
374 ADM1025 HARDWARE MONITOR DRIVER
375 M:      Jean Delvare <jdelvare@suse.com>
376 L:      lm-sensors@lm-sensors.org
377 S:      Maintained
378 F:      Documentation/hwmon/adm1025
379 F:      drivers/hwmon/adm1025.c
380
381 ADM1029 HARDWARE MONITOR DRIVER
382 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
383 L:      lm-sensors@lm-sensors.org
384 S:      Maintained
385 F:      drivers/hwmon/adm1029.c
386
387 ADM8211 WIRELESS DRIVER
388 L:      linux-wireless@vger.kernel.org
389 W:      http://wireless.kernel.org/
390 S:      Orphan
391 F:      drivers/net/wireless/adm8211.*
392
393 ADP1653 FLASH CONTROLLER DRIVER
394 M:      Sakari Ailus <sakari.ailus@iki.fi>
395 L:      linux-media@vger.kernel.org
396 S:      Maintained
397 F:      drivers/media/i2c/adp1653.c
398 F:      include/media/adp1653.h
399
400 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
401 M:      Michael Hennerich <michael.hennerich@analog.com>
402 W:      http://wiki.analog.com/ADP5520
403 W:      http://ez.analog.com/community/linux-device-drivers
404 S:      Supported
405 F:      drivers/mfd/adp5520.c
406 F:      drivers/video/backlight/adp5520_bl.c
407 F:      drivers/leds/leds-adp5520.c
408 F:      drivers/gpio/gpio-adp5520.c
409 F:      drivers/input/keyboard/adp5520-keys.c
410
411 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
412 M:      Michael Hennerich <michael.hennerich@analog.com>
413 W:      http://wiki.analog.com/ADP5588
414 W:      http://ez.analog.com/community/linux-device-drivers
415 S:      Supported
416 F:      drivers/input/keyboard/adp5588-keys.c
417 F:      drivers/gpio/gpio-adp5588.c
418
419 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
420 M:      Michael Hennerich <michael.hennerich@analog.com>
421 W:      http://wiki.analog.com/ADP8860
422 W:      http://ez.analog.com/community/linux-device-drivers
423 S:      Supported
424 F:      drivers/video/backlight/adp8860_bl.c
425
426 ADS1015 HARDWARE MONITOR DRIVER
427 M:      Dirk Eibach <eibach@gdsys.de>
428 L:      lm-sensors@lm-sensors.org
429 S:      Maintained
430 F:      Documentation/hwmon/ads1015
431 F:      drivers/hwmon/ads1015.c
432 F:      include/linux/i2c/ads1015.h
433
434 ADT746X FAN DRIVER
435 M:      Colin Leroy <colin@colino.net>
436 S:      Maintained
437 F:      drivers/macintosh/therm_adt746x.c
438
439 ADT7475 HARDWARE MONITOR DRIVER
440 M:      Jean Delvare <jdelvare@suse.com>
441 L:      lm-sensors@lm-sensors.org
442 S:      Maintained
443 F:      Documentation/hwmon/adt7475
444 F:      drivers/hwmon/adt7475.c
445
446 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
447 M:      Michael Hennerich <michael.hennerich@analog.com>
448 W:      http://wiki.analog.com/ADXL345
449 W:      http://ez.analog.com/community/linux-device-drivers
450 S:      Supported
451 F:      drivers/input/misc/adxl34x.c
452
453 ADVANSYS SCSI DRIVER
454 M:      Matthew Wilcox <matthew@wil.cx>
455 M:      Hannes Reinecke <hare@suse.com>
456 L:      linux-scsi@vger.kernel.org
457 S:      Maintained
458 F:      Documentation/scsi/advansys.txt
459 F:      drivers/scsi/advansys.c
460
461 AEDSP16 DRIVER
462 M:      Riccardo Facchetti <fizban@tin.it>
463 S:      Maintained
464 F:      sound/oss/aedsp16.c
465
466 AF9013 MEDIA DRIVER
467 M:      Antti Palosaari <crope@iki.fi>
468 L:      linux-media@vger.kernel.org
469 W:      http://linuxtv.org/
470 W:      http://palosaari.fi/linux/
471 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
472 T:      git git://linuxtv.org/anttip/media_tree.git
473 S:      Maintained
474 F:      drivers/media/dvb-frontends/af9013*
475
476 AF9033 MEDIA DRIVER
477 M:      Antti Palosaari <crope@iki.fi>
478 L:      linux-media@vger.kernel.org
479 W:      http://linuxtv.org/
480 W:      http://palosaari.fi/linux/
481 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
482 T:      git git://linuxtv.org/anttip/media_tree.git
483 S:      Maintained
484 F:      drivers/media/dvb-frontends/af9033*
485
486 AFFS FILE SYSTEM
487 L:      linux-fsdevel@vger.kernel.org
488 S:      Orphan
489 F:      Documentation/filesystems/affs.txt
490 F:      fs/affs/
491
492 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
493 M:      David Howells <dhowells@redhat.com>
494 L:      linux-afs@lists.infradead.org
495 S:      Supported
496 F:      fs/afs/
497 F:      include/net/af_rxrpc.h
498 F:      net/rxrpc/af_rxrpc.c
499
500 AGPGART DRIVER
501 M:      David Airlie <airlied@linux.ie>
502 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
503 S:      Maintained
504 F:      drivers/char/agp/
505 F:      include/linux/agp*
506 F:      include/uapi/linux/agp*
507
508 AHA152X SCSI DRIVER
509 M:      "Juergen E. Fischer" <fischer@norbit.de>
510 L:      linux-scsi@vger.kernel.org
511 S:      Maintained
512 F:      drivers/scsi/aha152x*
513 F:      drivers/scsi/pcmcia/aha152x*
514
515 AIC7XXX / AIC79XX SCSI DRIVER
516 M:      Hannes Reinecke <hare@suse.com>
517 L:      linux-scsi@vger.kernel.org
518 S:      Maintained
519 F:      drivers/scsi/aic7xxx/
520
521 AIMSLAB FM RADIO RECEIVER DRIVER
522 M:      Hans Verkuil <hverkuil@xs4all.nl>
523 L:      linux-media@vger.kernel.org
524 T:      git git://linuxtv.org/media_tree.git
525 W:      http://linuxtv.org
526 S:      Maintained
527 F:      drivers/media/radio/radio-aimslab*
528
529 AIO
530 M:      Benjamin LaHaise <bcrl@kvack.org>
531 L:      linux-aio@kvack.org
532 S:      Supported
533 F:      fs/aio.c
534 F:      include/linux/*aio*.h
535
536 AIRSPY MEDIA DRIVER
537 M:      Antti Palosaari <crope@iki.fi>
538 L:      linux-media@vger.kernel.org
539 W:      http://linuxtv.org/
540 W:      http://palosaari.fi/linux/
541 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
542 T:      git git://linuxtv.org/anttip/media_tree.git
543 S:      Maintained
544 F:      drivers/media/usb/airspy/
545
546 ALCATEL SPEEDTOUCH USB DRIVER
547 M:      Duncan Sands <duncan.sands@free.fr>
548 L:      linux-usb@vger.kernel.org
549 W:      http://www.linux-usb.org/SpeedTouch/
550 S:      Maintained
551 F:      drivers/usb/atm/speedtch.c
552 F:      drivers/usb/atm/usbatm.c
553
554 ALCHEMY AU1XX0 MMC DRIVER
555 M:      Manuel Lauss <manuel.lauss@gmail.com>
556 S:      Maintained
557 F:      drivers/mmc/host/au1xmmc.c
558
559 ALI1563 I2C DRIVER
560 M:      Rudolf Marek <r.marek@assembler.cz>
561 L:      linux-i2c@vger.kernel.org
562 S:      Maintained
563 F:      Documentation/i2c/busses/i2c-ali1563
564 F:      drivers/i2c/busses/i2c-ali1563.c
565
566 ALLWINNER SECURITY SYSTEM
567 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
568 L:      linux-crypto@vger.kernel.org
569 S:      Maintained
570 F:      drivers/crypto/sunxi-ss/
571
572 ALPHA PORT
573 M:      Richard Henderson <rth@twiddle.net>
574 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
575 M:      Matt Turner <mattst88@gmail.com>
576 S:      Odd Fixes
577 L:      linux-alpha@vger.kernel.org
578 F:      arch/alpha/
579
580 ALTERA MAILBOX DRIVER
581 M:      Ley Foon Tan <lftan@altera.com>
582 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
583 S:      Maintained
584 F:      drivers/mailbox/mailbox-altera.c
585
586 ALTERA PIO DRIVER
587 M:      Tien Hock Loh <thloh@altera.com>
588 L:      linux-gpio@vger.kernel.org
589 S:      Maintained
590 F:      drivers/gpio/gpio-altera.c
591
592 ALTERA TRIPLE SPEED ETHERNET DRIVER
593 M:      Vince Bridgers <vbridger@opensource.altera.com>
594 L:      netdev@vger.kernel.org
595 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
596 S:      Maintained
597 F:      drivers/net/ethernet/altera/
598
599 ALTERA UART/JTAG UART SERIAL DRIVERS
600 M:      Tobias Klauser <tklauser@distanz.ch>
601 L:      linux-serial@vger.kernel.org
602 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
603 S:      Maintained
604 F:      drivers/tty/serial/altera_uart.c
605 F:      drivers/tty/serial/altera_jtaguart.c
606 F:      include/linux/altera_uart.h
607 F:      include/linux/altera_jtaguart.h
608
609 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
610 M:      Tom Lendacky <thomas.lendacky@amd.com>
611 L:      linux-crypto@vger.kernel.org
612 S:      Supported
613 F:      drivers/crypto/ccp/
614 F:      include/linux/ccp.h
615
616 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
617 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
618 L:      lm-sensors@lm-sensors.org
619 S:      Maintained
620 F:      Documentation/hwmon/fam15h_power
621 F:      drivers/hwmon/fam15h_power.c
622
623 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
624 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
625 S:      Orphan
626 F:      drivers/usb/gadget/udc/amd5536udc.*
627
628 AMD GEODE PROCESSOR/CHIPSET SUPPORT
629 P:      Andres Salomon <dilinger@queued.net>
630 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
631 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
632 S:      Supported
633 F:      drivers/char/hw_random/geode-rng.c
634 F:      drivers/crypto/geode*
635 F:      drivers/video/fbdev/geode/
636 F:      arch/x86/include/asm/geode.h
637
638 AMD IOMMU (AMD-VI)
639 M:      Joerg Roedel <joro@8bytes.org>
640 L:      iommu@lists.linux-foundation.org
641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
642 S:      Maintained
643 F:      drivers/iommu/amd_iommu*.[ch]
644 F:      include/linux/amd-iommu.h
645
646 AMD KFD
647 M:      Oded Gabbay <oded.gabbay@gmail.com>
648 L:      dri-devel@lists.freedesktop.org
649 T:      git git://people.freedesktop.org/~gabbayo/linux.git
650 S:      Supported
651 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
652 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
653 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
654 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
655 F:      drivers/gpu/drm/amd/amdkfd/
656 F:      drivers/gpu/drm/amd/include/cik_structs.h
657 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
658 F:      drivers/gpu/drm/amd/include/vi_structs.h
659 F:      drivers/gpu/drm/radeon/radeon_kfd.c
660 F:      drivers/gpu/drm/radeon/radeon_kfd.h
661 F:      include/uapi/linux/kfd_ioctl.h
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 ARCNET NETWORK LAYER
812 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
813 L:      netdev@vger.kernel.org
814 S:      Maintained
815 F:      drivers/net/arcnet/
816 F:      include/uapi/linux/if_arcnet.h
817
818 ARM MFM AND FLOPPY DRIVERS
819 M:      Ian Molton <spyro@f2s.com>
820 S:      Maintained
821 F:      arch/arm/lib/floppydma.S
822 F:      arch/arm/include/asm/floppy.h
823
824 ARM PMU PROFILING AND DEBUGGING
825 M:      Will Deacon <will.deacon@arm.com>
826 R:      Mark Rutland <mark.rutland@arm.com>
827 S:      Maintained
828 F:      arch/arm*/kernel/perf_*
829 F:      arch/arm/oprofile/common.c
830 F:      arch/arm*/kernel/hw_breakpoint.c
831 F:      arch/arm*/include/asm/hw_breakpoint.h
832 F:      arch/arm*/include/asm/perf_event.h
833 F:      drivers/perf/arm_pmu.c
834 F:      include/linux/perf/arm_pmu.h
835
836 ARM PORT
837 M:      Russell King <linux@arm.linux.org.uk>
838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
839 W:      http://www.arm.linux.org.uk/
840 S:      Maintained
841 F:      arch/arm/
842
843 ARM SUB-ARCHITECTURES
844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
845 S:      Maintained
846 F:      arch/arm/mach-*/
847 F:      arch/arm/plat-*/
848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
849
850 ARM PRIMECELL AACI PL041 DRIVER
851 M:      Russell King <linux@arm.linux.org.uk>
852 S:      Maintained
853 F:      sound/arm/aaci.*
854
855 ARM PRIMECELL CLCD PL110 DRIVER
856 M:      Russell King <linux@arm.linux.org.uk>
857 S:      Maintained
858 F:      drivers/video/fbdev/amba-clcd.*
859
860 ARM PRIMECELL KMI PL050 DRIVER
861 M:      Russell King <linux@arm.linux.org.uk>
862 S:      Maintained
863 F:      drivers/input/serio/ambakmi.*
864 F:      include/linux/amba/kmi.h
865
866 ARM PRIMECELL MMCI PL180/1 DRIVER
867 M:      Russell King <linux@arm.linux.org.uk>
868 S:      Maintained
869 F:      drivers/mmc/host/mmci.*
870 F:      include/linux/amba/mmci.h
871
872 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
873 M:      Russell King <linux@arm.linux.org.uk>
874 S:      Maintained
875 F:      drivers/tty/serial/amba-pl01*.c
876 F:      include/linux/amba/serial.h
877
878 ARM PRIMECELL BUS SUPPORT
879 M:      Russell King <linux@arm.linux.org.uk>
880 S:      Maintained
881 F:      drivers/amba/
882 F:      include/linux/amba/bus.h
883
884 ARM/ADS SPHERE MACHINE SUPPORT
885 M:      Lennert Buytenhek <kernel@wantstofly.org>
886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
887 S:      Maintained
888
889 ARM/AFEB9260 MACHINE SUPPORT
890 M:      Sergey Lapin <slapin@ossfans.org>
891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
892 S:      Maintained
893
894 ARM/AJECO 1ARM MACHINE SUPPORT
895 M:      Lennert Buytenhek <kernel@wantstofly.org>
896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
897 S:      Maintained
898
899 ARM/Allwinner sunXi SoC support
900 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
901 M:      Chen-Yu Tsai <wens@csie.org>
902 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
903 S:      Maintained
904 N:      sun[x456789]i
905
906 ARM/Allwinner SoC Clock Support
907 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
908 S:      Maintained
909 F:      drivers/clk/sunxi/
910
911 ARM/Amlogic MesonX SoC support
912 M:      Carlo Caione <carlo@caione.org>
913 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
914 S:      Maintained
915 F:      drivers/media/rc/meson-ir.c
916 N:      meson[x68]
917
918 ARM/Annapurna Labs ALPINE ARCHITECTURE
919 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
920 S:      Maintained
921 F:      arch/arm/mach-alpine/
922
923 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
924 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
925 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
926 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
928 W:      http://www.linux4sam.org
929 S:      Supported
930 F:      arch/arm/mach-at91/
931 F:      include/soc/at91/
932 F:      arch/arm/boot/dts/at91*.dts
933 F:      arch/arm/boot/dts/at91*.dtsi
934 F:      arch/arm/boot/dts/sama*.dts
935 F:      arch/arm/boot/dts/sama*.dtsi
936 F:      arch/arm/include/debug/at91.S
937
938 ARM/ATMEL AT91 Clock Support
939 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
940 S:      Maintained
941 F:      drivers/clk/at91
942
943 ARM/CALXEDA HIGHBANK ARCHITECTURE
944 M:      Rob Herring <robh@kernel.org>
945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
946 S:      Maintained
947 F:      arch/arm/mach-highbank/
948
949 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
950 M:      Krzysztof Halasa <khalasa@piap.pl>
951 S:      Maintained
952 F:      arch/arm/mach-cns3xxx/
953
954 ARM/CAVIUM THUNDER NETWORK DRIVER
955 M:      Sunil Goutham <sgoutham@cavium.com>
956 M:      Robert Richter <rric@kernel.org>
957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
958 S:      Supported
959 F:      drivers/net/ethernet/cavium/thunder/
960
961 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
962 M:      Alexander Shiyan <shc_work@mail.ru>
963 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
964 S:      Odd Fixes
965 N:      clps711x
966
967 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
968 M:      Hartley Sweeten <hsweeten@visionengravers.com>
969 M:      Ryan Mallon <rmallon@gmail.com>
970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
971 S:      Maintained
972 F:      arch/arm/mach-ep93xx/
973 F:      arch/arm/mach-ep93xx/include/mach/
974
975 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
976 M:      Lennert Buytenhek <kernel@wantstofly.org>
977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
978 S:      Maintained
979
980 ARM/CLKDEV SUPPORT
981 M:      Russell King <linux@arm.linux.org.uk>
982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
983 S:      Maintained
984 F:      arch/arm/include/asm/clkdev.h
985 F:      drivers/clk/clkdev.c
986
987 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
988 M:      Mike Rapoport <mike@compulab.co.il>
989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
990 S:      Maintained
991
992 ARM/CONTEC MICRO9 MACHINE SUPPORT
993 M:      Hubert Feurstein <hubert.feurstein@contec.at>
994 S:      Maintained
995 F:      arch/arm/mach-ep93xx/micro9.c
996
997 ARM/CORESIGHT FRAMEWORK AND DRIVERS
998 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1000 S:      Maintained
1001 F:      drivers/hwtracing/coresight/*
1002 F:      Documentation/trace/coresight.txt
1003 F:      Documentation/devicetree/bindings/arm/coresight.txt
1004 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1005
1006 ARM/CORGI MACHINE SUPPORT
1007 M:      Richard Purdie <rpurdie@rpsys.net>
1008 S:      Maintained
1009
1010 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1011 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1013 T:      git git://github.com/ulli-kroll/linux.git
1014 S:      Maintained
1015 F:      arch/arm/mach-gemini/
1016 F:      drivers/rtc/rtc-gemini.c
1017
1018 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1019 M:      Barry Song <baohua@kernel.org>
1020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1022 S:      Maintained
1023 F:      arch/arm/mach-prima2/
1024 F:      drivers/clk/sirf/
1025 F:      drivers/clocksource/timer-prima2.c
1026 F:      drivers/clocksource/timer-atlas7.c
1027 N:      [^a-z]sirf
1028
1029 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1030 M:      Baruch Siach <baruch@tkos.co.il>
1031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1032 S:      Maintained
1033 F:      arch/arm/boot/dts/cx92755*
1034 N:      digicolor
1035
1036 ARM/EBSA110 MACHINE SUPPORT
1037 M:      Russell King <linux@arm.linux.org.uk>
1038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1039 W:      http://www.arm.linux.org.uk/
1040 S:      Maintained
1041 F:      arch/arm/mach-ebsa110/
1042 F:      drivers/net/ethernet/amd/am79c961a.*
1043
1044 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1045 M:      Uwe Kleine-König <kernel@pengutronix.de>
1046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1047 S:      Maintained
1048 N:      efm32
1049
1050 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1051 M:      Daniel Ribeiro <drwyrm@gmail.com>
1052 M:      Stefan Schmidt <stefan@openezx.org>
1053 M:      Harald Welte <laforge@openezx.org>
1054 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1055 W:      http://www.openezx.org/
1056 S:      Maintained
1057 T:      topgit git://git.openezx.org/openezx.git
1058 F:      arch/arm/mach-pxa/ezx.c
1059
1060 ARM/FARADAY FA526 PORT
1061 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1063 S:      Maintained
1064 T:      git git://git.berlios.de/gemini-board
1065 F:      arch/arm/mm/*-fa*
1066
1067 ARM/FOOTBRIDGE ARCHITECTURE
1068 M:      Russell King <linux@arm.linux.org.uk>
1069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1070 W:      http://www.arm.linux.org.uk/
1071 S:      Maintained
1072 F:      arch/arm/include/asm/hardware/dec21285.h
1073 F:      arch/arm/mach-footbridge/
1074
1075 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1076 M:      Shawn Guo <shawnguo@kernel.org>
1077 M:      Sascha Hauer <kernel@pengutronix.de>
1078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1079 S:      Maintained
1080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1081 F:      arch/arm/mach-imx/
1082 F:      arch/arm/mach-mxs/
1083 F:      arch/arm/boot/dts/imx*
1084 F:      arch/arm/configs/imx*_defconfig
1085 F:      drivers/clk/imx/
1086 F:      include/soc/imx/
1087
1088 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1089 M:      Shawn Guo <shawnguo@kernel.org>
1090 M:      Sascha Hauer <kernel@pengutronix.de>
1091 R:      Stefan Agner <stefan@agner.ch>
1092 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1093 S:      Maintained
1094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1095 F:      arch/arm/mach-imx/*vf610*
1096 F:      arch/arm/boot/dts/vf*
1097
1098 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1099 M:      Lennert Buytenhek <kernel@wantstofly.org>
1100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1101 S:      Maintained
1102
1103 ARM/GUMSTIX MACHINE SUPPORT
1104 M:      Steve Sakoman <sakoman@gmail.com>
1105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1106 S:      Maintained
1107
1108 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1109 M:      Philipp Zabel <philipp.zabel@gmail.com>
1110 M:      Paul Parsons <lost.distance@yahoo.com>
1111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1112 S:      Maintained
1113 F:      arch/arm/mach-pxa/hx4700.c
1114 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1115 F:      sound/soc/pxa/hx4700.c
1116
1117 ARM/HISILICON SOC SUPPORT
1118 M:      Wei Xu <xuwei5@hisilicon.com>
1119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1120 W:      http://www.hisilicon.com
1121 S:      Supported
1122 T:      git git://github.com/hisilicon/linux-hisi.git
1123 F:      arch/arm/mach-hisi/
1124
1125 ARM/HP JORNADA 7XX MACHINE SUPPORT
1126 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1127 W:      www.jlime.com
1128 S:      Maintained
1129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1130 F:      arch/arm/mach-sa1100/jornada720.c
1131 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1132
1133 ARM/IGEP MACHINE SUPPORT
1134 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1135 M:      Javier Martinez Canillas <javier@dowhile0.org>
1136 L:      linux-omap@vger.kernel.org
1137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1138 S:      Maintained
1139 F:      arch/arm/boot/dts/omap3-igep*
1140
1141 ARM/INCOME PXA270 SUPPORT
1142 M:      Marek Vasut <marek.vasut@gmail.com>
1143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1144 S:      Maintained
1145 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1146
1147 ARM/INTEL IOP32X 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 IOP33X ARM ARCHITECTURE
1153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1154 S:      Orphan
1155
1156 ARM/INTEL IOP13XX ARM ARCHITECTURE
1157 M:      Lennert Buytenhek <kernel@wantstofly.org>
1158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1159 S:      Maintained
1160
1161 ARM/INTEL IQ81342EX MACHINE SUPPORT
1162 M:      Lennert Buytenhek <kernel@wantstofly.org>
1163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1164 S:      Maintained
1165
1166 ARM/INTEL IXDP2850 MACHINE SUPPORT
1167 M:      Lennert Buytenhek <kernel@wantstofly.org>
1168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1169 S:      Maintained
1170
1171 ARM/INTEL IXP4XX ARM ARCHITECTURE
1172 M:      Imre Kaloz <kaloz@openwrt.org>
1173 M:      Krzysztof Halasa <khalasa@piap.pl>
1174 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1175 S:      Maintained
1176 F:      arch/arm/mach-ixp4xx/
1177
1178 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1179 M:      Jonathan Cameron <jic23@cam.ac.uk>
1180 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1181 S:      Maintained
1182 F:      arch/arm/mach-pxa/stargate2.c
1183 F:      drivers/pcmcia/pxa2xx_stargate2.c
1184
1185 ARM/INTEL XSC3 (MANZANO) ARM CORE
1186 M:      Lennert Buytenhek <kernel@wantstofly.org>
1187 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1188 S:      Maintained
1189
1190 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1191 M:      Lennert Buytenhek <kernel@wantstofly.org>
1192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1193 S:      Maintained
1194
1195 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1196 M:      Santosh Shilimkar <ssantosh@kernel.org>
1197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1198 S:      Maintained
1199 F:      arch/arm/mach-keystone/
1200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1201
1202 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1203 M:      Santosh Shilimkar <ssantosh@kernel.org>
1204 L:      linux-kernel@vger.kernel.org
1205 S:      Maintained
1206 F:      drivers/clk/keystone/
1207
1208 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1209 M:      Santosh Shilimkar <ssantosh@kernel.org>
1210 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1211 L:      linux-kernel@vger.kernel.org
1212 S:      Maintained
1213 F:      drivers/clocksource/timer-keystone.c
1214
1215 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1216 M:      Santosh Shilimkar <ssantosh@kernel.org>
1217 L:      linux-kernel@vger.kernel.org
1218 S:      Maintained
1219 F:      drivers/power/reset/keystone-reset.c
1220
1221 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1222 M:      Santosh Shilimkar <ssantosh@kernel.org>
1223 L:      linux-kernel@vger.kernel.org
1224 S:      Maintained
1225 F:      drivers/memory/*emif*
1226
1227 ARM/LOGICPD PXA270 MACHINE SUPPORT
1228 M:      Lennert Buytenhek <kernel@wantstofly.org>
1229 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1230 S:      Maintained
1231
1232 ARM/LPC18XX ARCHITECTURE
1233 M:      Joachim Eastwood <manabian@gmail.com>
1234 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1235 S:      Maintained
1236 F:      arch/arm/boot/dts/lpc43*
1237 F:      drivers/clk/nxp/clk-lpc18xx*
1238 F:      drivers/clocksource/time-lpc32xx.c
1239 F:      drivers/i2c/busses/i2c-lpc2k.c
1240 F:      drivers/memory/pl172.c
1241 F:      drivers/mtd/spi-nor/nxp-spifi.c
1242 F:      drivers/rtc/rtc-lpc24xx.c
1243 N:      lpc18xx
1244
1245 ARM/MAGICIAN MACHINE SUPPORT
1246 M:      Philipp Zabel <philipp.zabel@gmail.com>
1247 S:      Maintained
1248
1249 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1250 M:      Jason Cooper <jason@lakedaemon.net>
1251 M:      Andrew Lunn <andrew@lunn.ch>
1252 M:      Gregory Clement <gregory.clement@free-electrons.com>
1253 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1255 S:      Maintained
1256 F:      arch/arm/mach-mvebu/
1257 F:      drivers/rtc/rtc-armada38x.c
1258 F:      arch/arm/boot/dts/armada*
1259 F:      arch/arm/boot/dts/kirkwood*
1260
1261
1262 ARM/Marvell Berlin SoC support
1263 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1264 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1265 S:      Maintained
1266 F:      arch/arm/mach-berlin/
1267 F:      arch/arm/boot/dts/berlin*
1268
1269
1270 ARM/Marvell Dove/MV78xx0/Orion SOC support
1271 M:      Jason Cooper <jason@lakedaemon.net>
1272 M:      Andrew Lunn <andrew@lunn.ch>
1273 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1274 M:      Gregory Clement <gregory.clement@free-electrons.com>
1275 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1276 S:      Maintained
1277 F:      arch/arm/mach-dove/
1278 F:      arch/arm/mach-mv78xx0/
1279 F:      arch/arm/mach-orion5x/
1280 F:      arch/arm/plat-orion/
1281 F:      arch/arm/boot/dts/dove*
1282 F:      arch/arm/boot/dts/orion5x*
1283
1284
1285 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1286 M:      Alexander Clouter <alex@digriz.org.uk>
1287 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1288 W:      http://www.digriz.org.uk/ts78xx/kernel
1289 S:      Maintained
1290 F:      arch/arm/mach-orion5x/ts78xx-*
1291
1292 ARM/Mediatek RTC DRIVER
1293 M:      Eddie Huang <eddie.huang@mediatek.com>
1294 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1295 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1296 S:      Maintained
1297 F:      drivers/rtc/rtc-mt6397.c
1298
1299 ARM/Mediatek SoC support
1300 M:      Matthias Brugger <matthias.bgg@gmail.com>
1301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1302 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1303 S:      Maintained
1304 F:      arch/arm/boot/dts/mt6*
1305 F:      arch/arm/boot/dts/mt8*
1306 F:      arch/arm/mach-mediatek/
1307 N:      mtk
1308 K:      mediatek
1309
1310 ARM/Mediatek USB3 PHY DRIVER
1311 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1312 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1313 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1314 S:      Maintained
1315 F:      drivers/phy/phy-mt65xx-usb3.c
1316
1317 ARM/MICREL KS8695 ARCHITECTURE
1318 M:      Greg Ungerer <gerg@uclinux.org>
1319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1320 F:      arch/arm/mach-ks8695/
1321 S:      Odd Fixes
1322
1323 ARM/MIOA701 MACHINE SUPPORT
1324 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1325 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1326 F:      arch/arm/mach-pxa/mioa701.c
1327 S:      Maintained
1328
1329 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1330 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1331 S:      Maintained
1332
1333 ARM/NOMADIK ARCHITECTURE
1334 M:      Alessandro Rubini <rubini@unipv.it>
1335 M:      Linus Walleij <linus.walleij@linaro.org>
1336 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1337 S:      Maintained
1338 F:      arch/arm/mach-nomadik/
1339 F:      drivers/pinctrl/nomadik/
1340 F:      drivers/i2c/busses/i2c-nomadik.c
1341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1342
1343 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1344 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1345 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1346 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1347 S:      Supported
1348
1349 ARM/TOSA MACHINE SUPPORT
1350 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1351 M:      Dirk Opfer <dirk@opfer-online.de>
1352 S:      Maintained
1353
1354 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1355 M:      Marek Vasut <marek.vasut@gmail.com>
1356 L:      linux-arm-kernel@lists.infradead.org
1357 W:      http://hackndev.com
1358 S:      Maintained
1359 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1360 F:      arch/arm/mach-pxa/palmtx.c
1361 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1362 F:      arch/arm/mach-pxa/palmt5.c
1363 F:      arch/arm/mach-pxa/include/mach/palmld.h
1364 F:      arch/arm/mach-pxa/palmld.c
1365 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1366 F:      arch/arm/mach-pxa/palmte2.c
1367 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1368 F:      arch/arm/mach-pxa/palmtc.c
1369
1370 ARM/PALM TREO SUPPORT
1371 M:      Tomas Cech <sleep_walker@suse.com>
1372 L:      linux-arm-kernel@lists.infradead.org
1373 W:      http://hackndev.com
1374 S:      Maintained
1375 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1376 F:      arch/arm/mach-pxa/palmtreo.c
1377
1378 ARM/PALMZ72 SUPPORT
1379 M:      Sergey Lapin <slapin@ossfans.org>
1380 L:      linux-arm-kernel@lists.infradead.org
1381 W:      http://hackndev.com
1382 S:      Maintained
1383 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1384 F:      arch/arm/mach-pxa/palmz72.c
1385
1386 ARM/PLEB SUPPORT
1387 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1388 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1389 S:      Maintained
1390
1391 ARM/PT DIGITAL BOARD PORT
1392 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1394 W:      http://www.arm.linux.org.uk/
1395 S:      Maintained
1396
1397 ARM/QUALCOMM SUPPORT
1398 M:      Kumar Gala <galak@codeaurora.org>
1399 M:      Andy Gross <agross@codeaurora.org>
1400 M:      David Brown <davidb@codeaurora.org>
1401 L:      linux-arm-msm@vger.kernel.org
1402 L:      linux-soc@vger.kernel.org
1403 S:      Maintained
1404 F:      arch/arm/mach-qcom/
1405 F:      drivers/soc/qcom/
1406 F:      drivers/tty/serial/msm_serial.h
1407 F:      drivers/tty/serial/msm_serial.c
1408 F:      drivers/*/pm8???-*
1409 F:      drivers/mfd/ssbi.c
1410 F:      drivers/firmware/qcom_scm.c
1411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1412
1413 ARM/RADISYS ENP2611 MACHINE SUPPORT
1414 M:      Lennert Buytenhek <kernel@wantstofly.org>
1415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1416 S:      Maintained
1417
1418 ARM/RISCPC ARCHITECTURE
1419 M:      Russell King <linux@arm.linux.org.uk>
1420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1421 W:      http://www.arm.linux.org.uk/
1422 S:      Maintained
1423 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1424 F:      arch/arm/include/asm/hardware/ioc.h
1425 F:      arch/arm/include/asm/hardware/iomd.h
1426 F:      arch/arm/include/asm/hardware/memc.h
1427 F:      arch/arm/mach-rpc/
1428 F:      drivers/net/ethernet/8390/etherh.c
1429 F:      drivers/net/ethernet/i825xx/ether1*
1430 F:      drivers/net/ethernet/seeq/ether3*
1431 F:      drivers/scsi/arm/
1432
1433 ARM/Rockchip SoC support
1434 M:      Heiko Stuebner <heiko@sntech.de>
1435 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1436 L:      linux-rockchip@lists.infradead.org
1437 S:      Maintained
1438 F:      arch/arm/boot/dts/rk3*
1439 F:      arch/arm/mach-rockchip/
1440 F:      drivers/clk/rockchip/
1441 F:      drivers/i2c/busses/i2c-rk3x.c
1442 F:      drivers/*/*rockchip*
1443 F:      drivers/*/*/*rockchip*
1444 F:      sound/soc/rockchip/
1445 N:      rockchip
1446
1447 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1448 M:      Kukjin Kim <kgene@kernel.org>
1449 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1450 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1451 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1452 S:      Maintained
1453 F:      arch/arm/boot/dts/s3c*
1454 F:      arch/arm/boot/dts/exynos*
1455 F:      arch/arm64/boot/dts/exynos/
1456 F:      arch/arm/plat-samsung/
1457 F:      arch/arm/mach-s3c24*/
1458 F:      arch/arm/mach-s3c64xx/
1459 F:      arch/arm/mach-s5p*/
1460 F:      arch/arm/mach-exynos*/
1461 F:      drivers/*/*s3c2410*
1462 F:      drivers/*/*/*s3c2410*
1463 F:      drivers/spi/spi-s3c*
1464 F:      sound/soc/samsung/*
1465 N:      exynos
1466
1467 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1468 M:      Kyungmin Park <kyungmin.park@samsung.com>
1469 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1470 S:      Maintained
1471 F:      arch/arm/mach-s5pv210/
1472
1473 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1474 M:      Kyungmin Park <kyungmin.park@samsung.com>
1475 M:      Kamil Debski <k.debski@samsung.com>
1476 L:      linux-arm-kernel@lists.infradead.org
1477 L:      linux-media@vger.kernel.org
1478 S:      Maintained
1479 F:      drivers/media/platform/s5p-g2d/
1480
1481 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1482 M:      Kyungmin Park <kyungmin.park@samsung.com>
1483 M:      Kamil Debski <k.debski@samsung.com>
1484 M:      Jeongtae Park <jtp.park@samsung.com>
1485 L:      linux-arm-kernel@lists.infradead.org
1486 L:      linux-media@vger.kernel.org
1487 S:      Maintained
1488 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1489 F:      drivers/media/platform/s5p-mfc/
1490
1491 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1492 M:      Kyungmin Park <kyungmin.park@samsung.com>
1493 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1494 L:      linux-arm-kernel@lists.infradead.org
1495 L:      linux-media@vger.kernel.org
1496 S:      Maintained
1497 F:      drivers/media/platform/s5p-tv/
1498
1499 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1500 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1501 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1502 L:      linux-arm-kernel@lists.infradead.org
1503 L:      linux-media@vger.kernel.org
1504 S:      Maintained
1505 F:      drivers/media/platform/s5p-jpeg/
1506
1507 ARM/SHMOBILE ARM ARCHITECTURE
1508 M:      Simon Horman <horms@verge.net.au>
1509 M:      Magnus Damm <magnus.damm@gmail.com>
1510 L:      linux-sh@vger.kernel.org
1511 W:      http://oss.renesas.com
1512 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1514 S:      Supported
1515 F:      arch/arm/boot/dts/emev2*
1516 F:      arch/arm/boot/dts/r7s*
1517 F:      arch/arm/boot/dts/r8a*
1518 F:      arch/arm/boot/dts/sh*
1519 F:      arch/arm/configs/shmobile_defconfig
1520 F:      arch/arm/include/debug/renesas-scif.S
1521 F:      arch/arm/mach-shmobile/
1522 F:      drivers/sh/
1523
1524 ARM/SOCFPGA ARCHITECTURE
1525 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1526 S:      Maintained
1527 F:      arch/arm/mach-socfpga/
1528 F:      arch/arm/boot/dts/socfpga*
1529 F:      arch/arm/configs/socfpga_defconfig
1530 W:      http://www.rocketboards.org
1531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1532
1533 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1534 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1535 S:      Maintained
1536 F:      drivers/clk/socfpga/
1537
1538 ARM/SOCFPGA EDAC SUPPORT
1539 M:      Thor Thayer <tthayer@opensource.altera.com>
1540 S:      Maintained
1541 F:      drivers/edac/altera_edac.
1542
1543 ARM/STI ARCHITECTURE
1544 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1545 M:      Maxime Coquelin <maxime.coquelin@st.com>
1546 M:      Patrice Chotard <patrice.chotard@st.com>
1547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1548 L:      kernel@stlinux.com
1549 W:      http://www.stlinux.com
1550 S:      Maintained
1551 F:      arch/arm/mach-sti/
1552 F:      arch/arm/boot/dts/sti*
1553 F:      drivers/char/hw_random/st-rng.c
1554 F:      drivers/clocksource/arm_global_timer.c
1555 F:      drivers/clocksource/clksrc_st_lpc.c
1556 F:      drivers/i2c/busses/i2c-st.c
1557 F:      drivers/media/rc/st_rc.c
1558 F:      drivers/media/platform/sti/c8sectpfe/
1559 F:      drivers/mmc/host/sdhci-st.c
1560 F:      drivers/phy/phy-miphy28lp.c
1561 F:      drivers/phy/phy-miphy365x.c
1562 F:      drivers/phy/phy-stih407-usb.c
1563 F:      drivers/phy/phy-stih41x-usb.c
1564 F:      drivers/pinctrl/pinctrl-st.c
1565 F:      drivers/reset/sti/
1566 F:      drivers/rtc/rtc-st-lpc.c
1567 F:      drivers/tty/serial/st-asc.c
1568 F:      drivers/usb/dwc3/dwc3-st.c
1569 F:      drivers/usb/host/ehci-st.c
1570 F:      drivers/usb/host/ohci-st.c
1571 F:      drivers/watchdog/st_lpc_wdt.c
1572 F:      drivers/ata/ahci_st.c
1573
1574 ARM/STM32 ARCHITECTURE
1575 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1576 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1577 S:      Maintained
1578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1579 N:      stm32
1580 F:      drivers/clocksource/armv7m_systick.c
1581
1582 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1583 M:      Lennert Buytenhek <kernel@wantstofly.org>
1584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1585 S:      Maintained
1586
1587 ARM/TETON BGA MACHINE SUPPORT
1588 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1590 S:      Maintained
1591
1592 ARM/THECUS N2100 MACHINE SUPPORT
1593 M:      Lennert Buytenhek <kernel@wantstofly.org>
1594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1595 S:      Maintained
1596
1597 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1598 M:      Wan ZongShun <mcuos.com@gmail.com>
1599 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1600 W:      http://www.mcuos.com
1601 S:      Maintained
1602 F:      arch/arm/mach-w90x900/
1603 F:      drivers/input/keyboard/w90p910_keypad.c
1604 F:      drivers/input/touchscreen/w90p910_ts.c
1605 F:      drivers/watchdog/nuc900_wdt.c
1606 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1607 F:      drivers/mtd/nand/nuc900_nand.c
1608 F:      drivers/rtc/rtc-nuc900.c
1609 F:      drivers/spi/spi-nuc900.c
1610 F:      drivers/usb/host/ehci-w90x900.c
1611 F:      drivers/video/fbdev/nuc900fb.c
1612
1613 ARM/U300 MACHINE SUPPORT
1614 M:      Linus Walleij <linus.walleij@linaro.org>
1615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1616 S:      Supported
1617 F:      arch/arm/mach-u300/
1618 F:      drivers/clocksource/timer-u300.c
1619 F:      drivers/i2c/busses/i2c-stu300.c
1620 F:      drivers/rtc/rtc-coh901331.c
1621 F:      drivers/watchdog/coh901327_wdt.c
1622 F:      drivers/dma/coh901318*
1623 F:      drivers/mfd/ab3100*
1624 F:      drivers/rtc/rtc-ab3100.c
1625 F:      drivers/rtc/rtc-coh901331.c
1626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1627
1628 ARM/UNIPHIER ARCHITECTURE
1629 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1631 S:      Maintained
1632 F:      arch/arm/boot/dts/uniphier*
1633 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1634 F:      arch/arm/mach-uniphier/
1635 F:      arch/arm/mm/cache-uniphier.c
1636 F:      drivers/i2c/busses/i2c-uniphier*
1637 F:      drivers/pinctrl/uniphier/
1638 F:      drivers/tty/serial/8250/8250_uniphier.c
1639 N:      uniphier
1640
1641 ARM/Ux500 ARM ARCHITECTURE
1642 M:      Linus Walleij <linus.walleij@linaro.org>
1643 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1644 S:      Maintained
1645 F:      arch/arm/mach-ux500/
1646 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1647 F:      drivers/dma/ste_dma40*
1648 F:      drivers/hwspinlock/u8500_hsem.c
1649 F:      drivers/mfd/abx500*
1650 F:      drivers/mfd/ab8500*
1651 F:      drivers/mfd/dbx500*
1652 F:      drivers/mfd/db8500*
1653 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1654 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1655 F:      drivers/rtc/rtc-ab8500.c
1656 F:      drivers/rtc/rtc-pl031.c
1657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1658
1659 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1660 M:      Ulf Hansson <ulf.hansson@linaro.org>
1661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1662 T:      git git://git.linaro.org/people/ulfh/clk.git
1663 S:      Maintained
1664 F:      drivers/clk/ux500/
1665 F:      include/linux/platform_data/clk-ux500.h
1666
1667 ARM/VERSATILE EXPRESS PLATFORM
1668 M:      Liviu Dudau <liviu.dudau@arm.com>
1669 M:      Sudeep Holla <sudeep.holla@arm.com>
1670 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1672 S:      Maintained
1673 F:      arch/arm/boot/dts/vexpress*
1674 F:      arch/arm64/boot/dts/arm/vexpress*
1675 F:      arch/arm/mach-vexpress/
1676 F:      */*/vexpress*
1677 F:      */*/*/vexpress*
1678 F:      drivers/clk/versatile/clk-vexpress-osc.c
1679 F:      drivers/clocksource/versatile.c
1680
1681 ARM/VFP SUPPORT
1682 M:      Russell King <linux@arm.linux.org.uk>
1683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1684 W:      http://www.arm.linux.org.uk/
1685 S:      Maintained
1686 F:      arch/arm/vfp/
1687
1688 ARM/VOIPAC PXA270 SUPPORT
1689 M:      Marek Vasut <marek.vasut@gmail.com>
1690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1691 S:      Maintained
1692 F:      arch/arm/mach-pxa/vpac270.c
1693 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1694
1695 ARM/VT8500 ARM ARCHITECTURE
1696 M:      Tony Prisk <linux@prisktech.co.nz>
1697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1698 S:      Maintained
1699 F:      arch/arm/mach-vt8500/
1700 F:      drivers/clocksource/vt8500_timer.c
1701 F:      drivers/i2c/busses/i2c-wmt.c
1702 F:      drivers/mmc/host/wmt-sdmmc.c
1703 F:      drivers/pwm/pwm-vt8500.c
1704 F:      drivers/rtc/rtc-vt8500.c
1705 F:      drivers/tty/serial/vt8500_serial.c
1706 F:      drivers/usb/host/ehci-platform.c
1707 F:      drivers/usb/host/uhci-platform.c
1708 F:      drivers/video/fbdev/vt8500lcdfb.*
1709 F:      drivers/video/fbdev/wm8505fb*
1710 F:      drivers/video/fbdev/wmt_ge_rops.*
1711
1712 ARM/ZIPIT Z2 SUPPORT
1713 M:      Marek Vasut <marek.vasut@gmail.com>
1714 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1715 S:      Maintained
1716 F:      arch/arm/mach-pxa/z2.c
1717 F:      arch/arm/mach-pxa/include/mach/z2.h
1718
1719 ARM/ZTE ARCHITECTURE
1720 M:      Jun Nie <jun.nie@linaro.org>
1721 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1722 S:      Maintained
1723 F:      arch/arm/mach-zx/
1724 F:      drivers/clk/zte/
1725 F:      Documentation/devicetree/bindings/arm/zte.txt
1726 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1727
1728 ARM/ZYNQ ARCHITECTURE
1729 M:      Michal Simek <michal.simek@xilinx.com>
1730 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1732 W:      http://wiki.xilinx.com
1733 T:      git https://github.com/Xilinx/linux-xlnx.git
1734 S:      Supported
1735 F:      arch/arm/mach-zynq/
1736 F:      drivers/cpuidle/cpuidle-zynq.c
1737 F:      drivers/block/xsysace.c
1738 N:      zynq
1739 N:      xilinx
1740 F:      drivers/clocksource/cadence_ttc_timer.c
1741 F:      drivers/i2c/busses/i2c-cadence.c
1742 F:      drivers/mmc/host/sdhci-of-arasan.c
1743 F:      drivers/edac/synopsys_edac.c
1744
1745 ARM SMMU DRIVERS
1746 M:      Will Deacon <will.deacon@arm.com>
1747 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1748 S:      Maintained
1749 F:      drivers/iommu/arm-smmu.c
1750 F:      drivers/iommu/arm-smmu-v3.c
1751 F:      drivers/iommu/io-pgtable-arm.c
1752
1753 ARM64 PORT (AARCH64 ARCHITECTURE)
1754 M:      Catalin Marinas <catalin.marinas@arm.com>
1755 M:      Will Deacon <will.deacon@arm.com>
1756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1757 S:      Maintained
1758 F:      arch/arm64/
1759 F:      Documentation/arm64/
1760
1761 AS3645A LED FLASH CONTROLLER DRIVER
1762 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1763 L:      linux-media@vger.kernel.org
1764 T:      git git://linuxtv.org/media_tree.git
1765 S:      Maintained
1766 F:      drivers/media/i2c/as3645a.c
1767 F:      include/media/as3645a.h
1768
1769 ASC7621 HARDWARE MONITOR DRIVER
1770 M:      George Joseph <george.joseph@fairview5.com>
1771 L:      lm-sensors@lm-sensors.org
1772 S:      Maintained
1773 F:      Documentation/hwmon/asc7621
1774 F:      drivers/hwmon/asc7621.c
1775
1776 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1777 M:      Corentin Chary <corentin.chary@gmail.com>
1778 L:      acpi4asus-user@lists.sourceforge.net
1779 L:      platform-driver-x86@vger.kernel.org
1780 W:      http://acpi4asus.sf.net
1781 S:      Maintained
1782 F:      drivers/platform/x86/asus*.c
1783 F:      drivers/platform/x86/eeepc*.c
1784
1785 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1786 R:      Dan Williams <dan.j.williams@intel.com>
1787 W:      http://sourceforge.net/projects/xscaleiop
1788 S:      Odd fixes
1789 F:      Documentation/crypto/async-tx-api.txt
1790 F:      crypto/async_tx/
1791 F:      drivers/dma/
1792 F:      include/linux/dmaengine.h
1793 F:      include/linux/async_tx.h
1794
1795 AT24 EEPROM DRIVER
1796 M:      Wolfram Sang <wsa@the-dreams.de>
1797 L:      linux-i2c@vger.kernel.org
1798 S:      Maintained
1799 F:      drivers/misc/eeprom/at24.c
1800 F:      include/linux/platform_data/at24.h
1801
1802 ATA OVER ETHERNET (AOE) DRIVER
1803 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1804 W:      http://www.openaoe.org/
1805 S:      Supported
1806 F:      Documentation/aoe/
1807 F:      drivers/block/aoe/
1808
1809 ATHEROS 71XX/9XXX GPIO DRIVER
1810 M:      Alban Bedel <albeu@free.fr>
1811 W:      https://github.com/AlbanBedel/linux
1812 T:      git git://github.com/AlbanBedel/linux
1813 S:      Maintained
1814 F:      drivers/gpio/gpio-ath79.c
1815 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1816
1817 ATHEROS ATH GENERIC UTILITIES
1818 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1819 L:      linux-wireless@vger.kernel.org
1820 S:      Supported
1821 F:      drivers/net/wireless/ath/*
1822
1823 ATHEROS ATH5K WIRELESS DRIVER
1824 M:      Jiri Slaby <jirislaby@gmail.com>
1825 M:      Nick Kossifidis <mickflemm@gmail.com>
1826 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1827 L:      linux-wireless@vger.kernel.org
1828 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1829 S:      Maintained
1830 F:      drivers/net/wireless/ath/ath5k/
1831
1832 ATHEROS ATH6KL WIRELESS DRIVER
1833 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1834 L:      linux-wireless@vger.kernel.org
1835 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1836 T:      git git://github.com/kvalo/ath.git
1837 S:      Supported
1838 F:      drivers/net/wireless/ath/ath6kl/
1839
1840 WILOCITY WIL6210 WIRELESS DRIVER
1841 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1842 L:      linux-wireless@vger.kernel.org
1843 L:      wil6210@qca.qualcomm.com
1844 S:      Supported
1845 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1846 F:      drivers/net/wireless/ath/wil6210/
1847 F:      include/uapi/linux/wil6210_uapi.h
1848
1849 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1850 M:      Christian Lamparter <chunkeey@googlemail.com>
1851 L:      linux-wireless@vger.kernel.org
1852 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1853 S:      Maintained
1854 F:      drivers/net/wireless/ath/carl9170/
1855
1856 ATK0110 HWMON DRIVER
1857 M:      Luca Tettamanti <kronos.it@gmail.com>
1858 L:      lm-sensors@lm-sensors.org
1859 S:      Maintained
1860 F:      drivers/hwmon/asus_atk0110.c
1861
1862 ATI_REMOTE2 DRIVER
1863 M:      Ville Syrjala <syrjala@sci.fi>
1864 S:      Maintained
1865 F:      drivers/input/misc/ati_remote2.c
1866
1867 ATLX ETHERNET DRIVERS
1868 M:      Jay Cliburn <jcliburn@gmail.com>
1869 M:      Chris Snook <chris.snook@gmail.com>
1870 L:      netdev@vger.kernel.org
1871 W:      http://sourceforge.net/projects/atl1
1872 W:      http://atl1.sourceforge.net
1873 S:      Maintained
1874 F:      drivers/net/ethernet/atheros/
1875
1876 ATM
1877 M:      Chas Williams <3chas3@gmail.com>
1878 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1879 L:      netdev@vger.kernel.org
1880 W:      http://linux-atm.sourceforge.net
1881 S:      Maintained
1882 F:      drivers/atm/
1883 F:      include/linux/atm*
1884 F:      include/uapi/linux/atm*
1885
1886 ATMEL AT91 / AT32 MCI DRIVER
1887 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1888 S:      Maintained
1889 F:      drivers/mmc/host/atmel-mci.c
1890 F:      drivers/mmc/host/atmel-mci-regs.h
1891
1892 ATMEL AT91 / AT32 SERIAL DRIVER
1893 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1894 S:      Supported
1895 F:      drivers/tty/serial/atmel_serial.c
1896
1897 ATMEL Audio ALSA driver
1898 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1899 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1900 S:      Supported
1901 F:      sound/soc/atmel
1902
1903 ATMEL DMA DRIVER
1904 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1906 S:      Supported
1907 F:      drivers/dma/at_hdmac.c
1908 F:      drivers/dma/at_hdmac_regs.h
1909 F:      include/linux/platform_data/dma-atmel.h
1910
1911 ATMEL XDMA DRIVER
1912 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1913 L:      linux-arm-kernel@lists.infradead.org
1914 L:      dmaengine@vger.kernel.org
1915 S:      Supported
1916 F:      drivers/dma/at_xdmac.c
1917
1918 ATMEL I2C DRIVER
1919 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1920 L:      linux-i2c@vger.kernel.org
1921 S:      Supported
1922 F:      drivers/i2c/busses/i2c-at91.c
1923
1924 ATMEL ISI DRIVER
1925 M:      Josh Wu <josh.wu@atmel.com>
1926 L:      linux-media@vger.kernel.org
1927 S:      Supported
1928 F:      drivers/media/platform/soc_camera/atmel-isi.c
1929 F:      include/media/atmel-isi.h
1930
1931 ATMEL LCDFB DRIVER
1932 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1933 L:      linux-fbdev@vger.kernel.org
1934 S:      Maintained
1935 F:      drivers/video/fbdev/atmel_lcdfb.c
1936 F:      include/video/atmel_lcdc.h
1937
1938 ATMEL MACB ETHERNET DRIVER
1939 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1940 S:      Supported
1941 F:      drivers/net/ethernet/cadence/
1942
1943 ATMEL NAND DRIVER
1944 M:      Josh Wu <josh.wu@atmel.com>
1945 L:      linux-mtd@lists.infradead.org
1946 S:      Supported
1947 F:      drivers/mtd/nand/atmel_nand*
1948
1949 ATMEL SDMMC DRIVER
1950 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1951 L:      linux-mmc@vger.kernel.org
1952 S:      Supported
1953 F:      drivers/mmc/host/sdhci-of-at91.c
1954
1955 ATMEL SPI DRIVER
1956 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1957 S:      Supported
1958 F:      drivers/spi/spi-atmel.*
1959
1960 ATMEL SSC DRIVER
1961 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1963 S:      Supported
1964 F:      drivers/misc/atmel-ssc.c
1965 F:      include/linux/atmel-ssc.h
1966
1967 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1968 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 S:      Supported
1971 F:      drivers/misc/atmel_tclib.c
1972 F:      drivers/clocksource/tcb_clksrc.c
1973
1974 ATMEL USBA UDC DRIVER
1975 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S:      Supported
1978 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1979
1980 ATMEL WIRELESS DRIVER
1981 M:      Simon Kelley <simon@thekelleys.org.uk>
1982 L:      linux-wireless@vger.kernel.org
1983 W:      http://www.thekelleys.org.uk/atmel
1984 W:      http://atmelwlandriver.sourceforge.net/
1985 S:      Maintained
1986 F:      drivers/net/wireless/atmel*
1987
1988 ATMEL MAXTOUCH DRIVER
1989 M:      Nick Dyer <nick.dyer@itdev.co.uk>
1990 T:      git git://github.com/atmel-maxtouch/linux.git
1991 S:      Supported
1992 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1993 F:      drivers/input/touchscreen/atmel_mxt_ts.c
1994 F:      include/linux/platform_data/atmel_mxt_ts.h
1995
1996 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1997 M:      Bradley Grove <linuxdrivers@attotech.com>
1998 L:      linux-scsi@vger.kernel.org
1999 W:      http://www.attotech.com
2000 S:      Supported
2001 F:      drivers/scsi/esas2r
2002
2003 ATUSB IEEE 802.15.4 RADIO DRIVER
2004 M:      Stefan Schmidt <stefan@osg.samsung.com>
2005 L:      linux-wpan@vger.kernel.org
2006 S:      Maintained
2007 F:      drivers/net/ieee802154/atusb.c
2008 F:      drivers/net/ieee802154/atusb.h
2009 F:      drivers/net/ieee802154/at86rf230.h
2010
2011 AUDIT SUBSYSTEM
2012 M:      Paul Moore <paul@paul-moore.com>
2013 M:      Eric Paris <eparis@redhat.com>
2014 L:      linux-audit@redhat.com (moderated for non-subscribers)
2015 W:      http://people.redhat.com/sgrubb/audit/
2016 T:      git git://git.infradead.org/users/pcmoore/audit
2017 S:      Maintained
2018 F:      include/linux/audit.h
2019 F:      include/uapi/linux/audit.h
2020 F:      kernel/audit*
2021
2022 AUXILIARY DISPLAY DRIVERS
2023 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2024 W:      http://miguelojeda.es/auxdisplay.htm
2025 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2026 S:      Maintained
2027 F:      drivers/auxdisplay/
2028 F:      include/linux/cfag12864b.h
2029
2030 AVR32 ARCHITECTURE
2031 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2032 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2033 W:      http://www.atmel.com/products/AVR32/
2034 W:      http://mirror.egtvedt.no/avr32linux.org/
2035 W:      http://avrfreaks.net/
2036 S:      Maintained
2037 F:      arch/avr32/
2038
2039 AVR32/AT32AP MACHINE SUPPORT
2040 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2041 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2042 S:      Maintained
2043 F:      arch/avr32/mach-at32ap/
2044
2045 AX.25 NETWORK LAYER
2046 M:      Ralf Baechle <ralf@linux-mips.org>
2047 L:      linux-hams@vger.kernel.org
2048 W:      http://www.linux-ax25.org/
2049 S:      Maintained
2050 F:      include/uapi/linux/ax25.h
2051 F:      include/net/ax25.h
2052 F:      net/ax25/
2053
2054 AZ6007 DVB DRIVER
2055 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2056 L:      linux-media@vger.kernel.org
2057 W:      http://linuxtv.org
2058 T:      git git://linuxtv.org/media_tree.git
2059 S:      Maintained
2060 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2061
2062 AZTECH FM RADIO RECEIVER DRIVER
2063 M:      Hans Verkuil <hverkuil@xs4all.nl>
2064 L:      linux-media@vger.kernel.org
2065 T:      git git://linuxtv.org/media_tree.git
2066 W:      http://linuxtv.org
2067 S:      Maintained
2068 F:      drivers/media/radio/radio-aztech*
2069
2070 B43 WIRELESS DRIVER
2071 L:      linux-wireless@vger.kernel.org
2072 L:      b43-dev@lists.infradead.org
2073 W:      http://wireless.kernel.org/en/users/Drivers/b43
2074 S:      Odd Fixes
2075 F:      drivers/net/wireless/b43/
2076
2077 B43LEGACY WIRELESS DRIVER
2078 M:      Larry Finger <Larry.Finger@lwfinger.net>
2079 L:      linux-wireless@vger.kernel.org
2080 L:      b43-dev@lists.infradead.org
2081 W:      http://wireless.kernel.org/en/users/Drivers/b43
2082 S:      Maintained
2083 F:      drivers/net/wireless/b43legacy/
2084
2085 BACKLIGHT CLASS/SUBSYSTEM
2086 M:      Jingoo Han <jingoohan1@gmail.com>
2087 M:      Lee Jones <lee.jones@linaro.org>
2088 S:      Maintained
2089 F:      drivers/video/backlight/
2090 F:      include/linux/backlight.h
2091
2092 BATMAN ADVANCED
2093 M:      Marek Lindner <mareklindner@neomailbox.ch>
2094 M:      Simon Wunderlich <sw@simonwunderlich.de>
2095 M:      Antonio Quartulli <antonio@meshcoding.com>
2096 L:      b.a.t.m.a.n@lists.open-mesh.org
2097 W:      http://www.open-mesh.org/
2098 S:      Maintained
2099 F:      net/batman-adv/
2100
2101 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2102 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2103 L:      linux-hams@vger.kernel.org
2104 W:      http://www.baycom.org/~tom/ham/ham.html
2105 S:      Maintained
2106 F:      drivers/net/hamradio/baycom*
2107
2108 BCACHE (BLOCK LAYER CACHE)
2109 M:      Kent Overstreet <kent.overstreet@gmail.com>
2110 L:      linux-bcache@vger.kernel.org
2111 W:      http://bcache.evilpiepirate.org
2112 S:      Maintained
2113 F:      drivers/md/bcache/
2114
2115 BDISP ST MEDIA DRIVER
2116 M:      Fabien Dessenne <fabien.dessenne@st.com>
2117 L:      linux-media@vger.kernel.org
2118 T:      git git://linuxtv.org/media_tree.git
2119 W:      http://linuxtv.org
2120 S:      Supported
2121 F:      drivers/media/platform/sti/bdisp
2122
2123 BEFS FILE SYSTEM
2124 S:      Orphan
2125 F:      Documentation/filesystems/befs.txt
2126 F:      fs/befs/
2127
2128 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2129 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2130 L:      netdev@vger.kernel.org
2131 S:      Maintained
2132 F:      drivers/net/ethernet/ec_bhf.c
2133
2134 BFS FILE SYSTEM
2135 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2136 S:      Maintained
2137 F:      Documentation/filesystems/bfs.txt
2138 F:      fs/bfs/
2139 F:      include/uapi/linux/bfs_fs.h
2140
2141 BLACKFIN ARCHITECTURE
2142 M:      Steven Miao <realmz6@gmail.com>
2143 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2144 T:      git git://git.code.sf.net/p/adi-linux/code
2145 W:      http://blackfin.uclinux.org
2146 S:      Supported
2147 F:      arch/blackfin/
2148
2149 BLACKFIN EMAC DRIVER
2150 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2151 W:      http://blackfin.uclinux.org
2152 S:      Supported
2153 F:      drivers/net/ethernet/adi/
2154
2155 BLACKFIN RTC DRIVER
2156 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2157 W:      http://blackfin.uclinux.org
2158 S:      Supported
2159 F:      drivers/rtc/rtc-bfin.c
2160
2161 BLACKFIN SDH DRIVER
2162 M:      Sonic Zhang <sonic.zhang@analog.com>
2163 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2164 W:      http://blackfin.uclinux.org
2165 S:      Supported
2166 F:      drivers/mmc/host/bfin_sdh.c
2167
2168 BLACKFIN SERIAL DRIVER
2169 M:      Sonic Zhang <sonic.zhang@analog.com>
2170 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2171 W:      http://blackfin.uclinux.org
2172 S:      Supported
2173 F:      drivers/tty/serial/bfin_uart.c
2174
2175 BLACKFIN WATCHDOG DRIVER
2176 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2177 W:      http://blackfin.uclinux.org
2178 S:      Supported
2179 F:      drivers/watchdog/bfin_wdt.c
2180
2181 BLACKFIN I2C TWI DRIVER
2182 M:      Sonic Zhang <sonic.zhang@analog.com>
2183 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2184 W:      http://blackfin.uclinux.org/
2185 S:      Supported
2186 F:      drivers/i2c/busses/i2c-bfin-twi.c
2187
2188 BLACKFIN MEDIA DRIVER
2189 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2190 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2191 W:      http://blackfin.uclinux.org/
2192 S:      Supported
2193 F:      drivers/media/platform/blackfin/
2194 F:      drivers/media/i2c/adv7183*
2195 F:      drivers/media/i2c/vs6624*
2196
2197 BLINKM RGB LED DRIVER
2198 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2199 S:      Maintained
2200 F:      drivers/leds/leds-blinkm.c
2201
2202 BLOCK LAYER
2203 M:      Jens Axboe <axboe@kernel.dk>
2204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2205 S:      Maintained
2206 F:      block/
2207 F:      kernel/trace/blktrace.c
2208
2209 BLOCK2MTD DRIVER
2210 M:      Joern Engel <joern@lazybastard.org>
2211 L:      linux-mtd@lists.infradead.org
2212 S:      Maintained
2213 F:      drivers/mtd/devices/block2mtd.c
2214
2215 BLUETOOTH DRIVERS
2216 M:      Marcel Holtmann <marcel@holtmann.org>
2217 M:      Gustavo Padovan <gustavo@padovan.org>
2218 M:      Johan Hedberg <johan.hedberg@gmail.com>
2219 L:      linux-bluetooth@vger.kernel.org
2220 W:      http://www.bluez.org/
2221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2223 S:      Maintained
2224 F:      drivers/bluetooth/
2225
2226 BLUETOOTH SUBSYSTEM
2227 M:      Marcel Holtmann <marcel@holtmann.org>
2228 M:      Gustavo Padovan <gustavo@padovan.org>
2229 M:      Johan Hedberg <johan.hedberg@gmail.com>
2230 L:      linux-bluetooth@vger.kernel.org
2231 W:      http://www.bluez.org/
2232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2234 S:      Maintained
2235 F:      net/bluetooth/
2236 F:      include/net/bluetooth/
2237
2238 BONDING DRIVER
2239 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2240 M:      Veaceslav Falico <vfalico@gmail.com>
2241 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2242 L:      netdev@vger.kernel.org
2243 W:      http://sourceforge.net/projects/bonding/
2244 S:      Supported
2245 F:      drivers/net/bonding/
2246 F:      include/uapi/linux/if_bonding.h
2247
2248 BPF (Safe dynamic programs and tools)
2249 M:      Alexei Starovoitov <ast@kernel.org>
2250 L:      netdev@vger.kernel.org
2251 L:      linux-kernel@vger.kernel.org
2252 S:      Supported
2253 F:      kernel/bpf/
2254
2255 BROADCOM B44 10/100 ETHERNET DRIVER
2256 M:      Gary Zambrano <zambrano@broadcom.com>
2257 L:      netdev@vger.kernel.org
2258 S:      Supported
2259 F:      drivers/net/ethernet/broadcom/b44.*
2260
2261 BROADCOM GENET ETHERNET DRIVER
2262 M:      Florian Fainelli <f.fainelli@gmail.com>
2263 L:      netdev@vger.kernel.org
2264 S:      Supported
2265 F:      drivers/net/ethernet/broadcom/genet/
2266
2267 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2268 M:      Sony Chacko <sony.chacko@qlogic.com>
2269 M:      Dept-HSGLinuxNICDev@qlogic.com
2270 L:      netdev@vger.kernel.org
2271 S:      Supported
2272 F:      drivers/net/ethernet/broadcom/bnx2.*
2273 F:      drivers/net/ethernet/broadcom/bnx2_*
2274
2275 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2276 M:      Ariel Elior <ariel.elior@qlogic.com>
2277 L:      netdev@vger.kernel.org
2278 S:      Supported
2279 F:      drivers/net/ethernet/broadcom/bnx2x/
2280
2281 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2282 M:      Florian Fainelli <f.fainelli@gmail.com>
2283 M:      Ray Jui <rjui@broadcom.com>
2284 M:      Scott Branden <sbranden@broadcom.com>
2285 L:      bcm-kernel-feedback-list@broadcom.com
2286 T:      git git://github.com/broadcom/mach-bcm
2287 S:      Maintained
2288 F:      arch/arm/mach-bcm/
2289 F:      arch/arm/boot/dts/bcm113*
2290 F:      arch/arm/boot/dts/bcm216*
2291 F:      arch/arm/boot/dts/bcm281*
2292 F:      arch/arm/configs/bcm_defconfig
2293 F:      drivers/mmc/host/sdhci-bcm-kona.c
2294 F:      drivers/clocksource/bcm_kona_timer.c
2295
2296 BROADCOM BCM2835 ARM ARCHITECTURE
2297 M:      Stephen Warren <swarren@wwwdotorg.org>
2298 M:      Lee Jones <lee@kernel.org>
2299 M:      Eric Anholt <eric@anholt.net>
2300 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2303 S:      Maintained
2304 N:      bcm2835
2305
2306 BROADCOM BCM33XX MIPS ARCHITECTURE
2307 M:      Kevin Cernekee <cernekee@gmail.com>
2308 L:      linux-mips@linux-mips.org
2309 S:      Maintained
2310 F:      arch/mips/bcm3384/*
2311 F:      arch/mips/include/asm/mach-bcm3384/*
2312 F:      arch/mips/kernel/*bmips*
2313
2314 BROADCOM BCM47XX MIPS ARCHITECTURE
2315 M:      Hauke Mehrtens <hauke@hauke-m.de>
2316 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2317 L:      linux-mips@linux-mips.org
2318 S:      Maintained
2319 F:      arch/mips/bcm47xx/*
2320 F:      arch/mips/include/asm/mach-bcm47xx/*
2321
2322 BROADCOM BCM5301X ARM ARCHITECTURE
2323 M:      Hauke Mehrtens <hauke@hauke-m.de>
2324 L:      linux-arm-kernel@lists.infradead.org
2325 S:      Maintained
2326 F:      arch/arm/mach-bcm/bcm_5301x.c
2327 F:      arch/arm/boot/dts/bcm5301x.dtsi
2328 F:      arch/arm/boot/dts/bcm470*
2329
2330 BROADCOM BCM63XX ARM ARCHITECTURE
2331 M:      Florian Fainelli <f.fainelli@gmail.com>
2332 L:      linux-arm-kernel@lists.infradead.org
2333 T:      git git://github.com/broadcom/arm-bcm63xx.git
2334 S:      Maintained
2335 F:      arch/arm/mach-bcm/bcm63xx.c
2336 F:      arch/arm/include/debug/bcm63xx.S
2337
2338 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2339 M:      Kevin Cernekee <cernekee@gmail.com>
2340 L:      linux-usb@vger.kernel.org
2341 S:      Maintained
2342 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2343
2344 BROADCOM BCM7XXX ARM ARCHITECTURE
2345 M:      Brian Norris <computersforpeace@gmail.com>
2346 M:      Gregory Fong <gregory.0xf0@gmail.com>
2347 M:      Florian Fainelli <f.fainelli@gmail.com>
2348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2349 T:      git git://github.com/broadcom/stblinux.git
2350 S:      Maintained
2351 F:      arch/arm/mach-bcm/*brcmstb*
2352 F:      arch/arm/boot/dts/bcm7*.dts*
2353 F:      drivers/bus/brcmstb_gisb.c
2354 N:      brcmstb
2355
2356 BROADCOM BMIPS MIPS ARCHITECTURE
2357 M:      Kevin Cernekee <cernekee@gmail.com>
2358 M:      Florian Fainelli <f.fainelli@gmail.com>
2359 L:      linux-mips@linux-mips.org
2360 T:      git git://github.com/broadcom/stblinux.git
2361 S:      Maintained
2362 F:      arch/mips/bmips/*
2363 F:      arch/mips/include/asm/mach-bmips/*
2364 F:      arch/mips/kernel/*bmips*
2365 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2366 F:      drivers/irqchip/irq-bcm7*
2367 F:      drivers/irqchip/irq-brcmstb*
2368
2369 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2370 M:      Prashant Sreedharan <prashant@broadcom.com>
2371 M:      Michael Chan <mchan@broadcom.com>
2372 L:      netdev@vger.kernel.org
2373 S:      Supported
2374 F:      drivers/net/ethernet/broadcom/tg3.*
2375
2376 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2377 M:      Brett Rudley <brudley@broadcom.com>
2378 M:      Arend van Spriel <arend@broadcom.com>
2379 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2380 M:      Hante Meuleman <meuleman@broadcom.com>
2381 L:      linux-wireless@vger.kernel.org
2382 L:      brcm80211-dev-list@broadcom.com
2383 S:      Supported
2384 F:      drivers/net/wireless/brcm80211/
2385
2386 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2387 M:      QLogic-Storage-Upstream@qlogic.com
2388 L:      linux-scsi@vger.kernel.org
2389 S:      Supported
2390 F:      drivers/scsi/bnx2fc/
2391
2392 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2393 M:      QLogic-Storage-Upstream@qlogic.com
2394 L:      linux-scsi@vger.kernel.org
2395 S:      Supported
2396 F:      drivers/scsi/bnx2i/
2397
2398 BROADCOM IPROC ARM ARCHITECTURE
2399 M:      Ray Jui <rjui@broadcom.com>
2400 M:      Scott Branden <sbranden@broadcom.com>
2401 M:      Jon Mason <jonmason@broadcom.com>
2402 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2403 L:      bcm-kernel-feedback-list@broadcom.com
2404 T:      git git://github.com/broadcom/cygnus-linux.git
2405 S:      Maintained
2406 N:      iproc
2407 N:      cygnus
2408 N:      nsp
2409 N:      bcm9113*
2410 N:      bcm9583*
2411 N:      bcm9585*
2412 N:      bcm9586*
2413 N:      bcm988312
2414 N:      bcm113*
2415 N:      bcm583*
2416 N:      bcm585*
2417 N:      bcm586*
2418 N:      bcm88312
2419
2420 BROADCOM BRCMSTB GPIO DRIVER
2421 M:      Gregory Fong <gregory.0xf0@gmail.com>
2422 L:      bcm-kernel-feedback-list@broadcom.com>
2423 S:      Supported
2424 F:      drivers/gpio/gpio-brcmstb.c
2425 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2426
2427 BROADCOM KONA GPIO DRIVER
2428 M:      Ray Jui <rjui@broadcom.com>
2429 L:      bcm-kernel-feedback-list@broadcom.com
2430 S:      Supported
2431 F:      drivers/gpio/gpio-bcm-kona.c
2432 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2433
2434 BROADCOM NVRAM DRIVER
2435 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2436 L:      linux-mips@linux-mips.org
2437 S:      Maintained
2438 F:      drivers/firmware/broadcom/*
2439
2440 BROADCOM STB NAND FLASH DRIVER
2441 M:      Brian Norris <computersforpeace@gmail.com>
2442 L:      linux-mtd@lists.infradead.org
2443 S:      Maintained
2444 F:      drivers/mtd/nand/brcmnand/
2445
2446 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2447 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2448 L:      linux-wireless@vger.kernel.org
2449 S:      Maintained
2450 F:      drivers/bcma/
2451 F:      include/linux/bcma/
2452
2453 BROADCOM SYSTEMPORT ETHERNET DRIVER
2454 M:      Florian Fainelli <f.fainelli@gmail.com>
2455 L:      netdev@vger.kernel.org
2456 S:      Supported
2457 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2458
2459 BROCADE BFA FC SCSI DRIVER
2460 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2461 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2462 L:      linux-scsi@vger.kernel.org
2463 S:      Supported
2464 F:      drivers/scsi/bfa/
2465
2466 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2467 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2468 L:      netdev@vger.kernel.org
2469 S:      Supported
2470 F:      drivers/net/ethernet/brocade/bna/
2471
2472 BSG (block layer generic sg v4 driver)
2473 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2474 L:      linux-scsi@vger.kernel.org
2475 S:      Supported
2476 F:      block/bsg.c
2477 F:      include/linux/bsg.h
2478 F:      include/uapi/linux/bsg.h
2479
2480 BT87X AUDIO DRIVER
2481 M:      Clemens Ladisch <clemens@ladisch.de>
2482 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2483 T:      git git://git.alsa-project.org/alsa-kernel.git
2484 S:      Maintained
2485 F:      Documentation/sound/alsa/Bt87x.txt
2486 F:      sound/pci/bt87x.c
2487
2488 BT8XXGPIO DRIVER
2489 M:      Michael Buesch <m@bues.ch>
2490 W:      http://bu3sch.de/btgpio.php
2491 S:      Maintained
2492 F:      drivers/gpio/gpio-bt8xx.c
2493
2494 BTRFS FILE SYSTEM
2495 M:      Chris Mason <clm@fb.com>
2496 M:      Josef Bacik <jbacik@fb.com>
2497 M:      David Sterba <dsterba@suse.com>
2498 L:      linux-btrfs@vger.kernel.org
2499 W:      http://btrfs.wiki.kernel.org/
2500 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2502 S:      Maintained
2503 F:      Documentation/filesystems/btrfs.txt
2504 F:      fs/btrfs/
2505
2506 BTTV VIDEO4LINUX DRIVER
2507 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2508 L:      linux-media@vger.kernel.org
2509 W:      http://linuxtv.org
2510 T:      git git://linuxtv.org/media_tree.git
2511 S:      Odd fixes
2512 F:      Documentation/video4linux/bttv/
2513 F:      drivers/media/pci/bt8xx/bttv*
2514
2515 BUSLOGIC SCSI DRIVER
2516 M:      Khalid Aziz <khalid@gonehiking.org>
2517 L:      linux-scsi@vger.kernel.org
2518 S:      Maintained
2519 F:      drivers/scsi/BusLogic.*
2520 F:      drivers/scsi/FlashPoint.*
2521
2522 C-MEDIA CMI8788 DRIVER
2523 M:      Clemens Ladisch <clemens@ladisch.de>
2524 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2525 T:      git git://git.alsa-project.org/alsa-kernel.git
2526 S:      Maintained
2527 F:      sound/pci/oxygen/
2528
2529 C6X ARCHITECTURE
2530 M:      Mark Salter <msalter@redhat.com>
2531 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2532 L:      linux-c6x-dev@linux-c6x.org
2533 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2534 S:      Maintained
2535 F:      arch/c6x/
2536
2537 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2538 M:      David Howells <dhowells@redhat.com>
2539 L:      linux-cachefs@redhat.com
2540 S:      Supported
2541 F:      Documentation/filesystems/caching/cachefiles.txt
2542 F:      fs/cachefiles/
2543
2544 CADET FM/AM RADIO RECEIVER DRIVER
2545 M:      Hans Verkuil <hverkuil@xs4all.nl>
2546 L:      linux-media@vger.kernel.org
2547 T:      git git://linuxtv.org/media_tree.git
2548 W:      http://linuxtv.org
2549 S:      Maintained
2550 F:      drivers/media/radio/radio-cadet*
2551
2552 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2553 M:      Jonathan Corbet <corbet@lwn.net>
2554 L:      linux-media@vger.kernel.org
2555 T:      git git://linuxtv.org/media_tree.git
2556 S:      Maintained
2557 F:      Documentation/video4linux/cafe_ccic
2558 F:      drivers/media/platform/marvell-ccic/
2559
2560 CAIF NETWORK LAYER
2561 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2562 L:      netdev@vger.kernel.org
2563 S:      Supported
2564 F:      Documentation/networking/caif/
2565 F:      drivers/net/caif/
2566 F:      include/uapi/linux/caif/
2567 F:      include/net/caif/
2568 F:      net/caif/
2569
2570 CALGARY x86-64 IOMMU
2571 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2572 M:      "Jon D. Mason" <jdmason@kudzu.us>
2573 L:      discuss@x86-64.org
2574 S:      Maintained
2575 F:      arch/x86/kernel/pci-calgary_64.c
2576 F:      arch/x86/kernel/tce_64.c
2577 F:      arch/x86/include/asm/calgary.h
2578 F:      arch/x86/include/asm/tce.h
2579
2580 CAN NETWORK LAYER
2581 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2582 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2583 L:      linux-can@vger.kernel.org
2584 W:      https://github.com/linux-can
2585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2587 S:      Maintained
2588 F:      Documentation/networking/can.txt
2589 F:      net/can/
2590 F:      include/linux/can/core.h
2591 F:      include/uapi/linux/can.h
2592 F:      include/uapi/linux/can/bcm.h
2593 F:      include/uapi/linux/can/raw.h
2594 F:      include/uapi/linux/can/gw.h
2595
2596 CAN NETWORK DRIVERS
2597 M:      Wolfgang Grandegger <wg@grandegger.com>
2598 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2599 L:      linux-can@vger.kernel.org
2600 W:      https://github.com/linux-can
2601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2603 S:      Maintained
2604 F:      drivers/net/can/
2605 F:      include/linux/can/dev.h
2606 F:      include/linux/can/platform/
2607 F:      include/uapi/linux/can/error.h
2608 F:      include/uapi/linux/can/netlink.h
2609
2610 CAPABILITIES
2611 M:      Serge Hallyn <serge.hallyn@canonical.com>
2612 L:      linux-security-module@vger.kernel.org
2613 S:      Supported
2614 F:      include/linux/capability.h
2615 F:      include/uapi/linux/capability.h
2616 F:      security/commoncap.c
2617 F:      kernel/capability.c
2618
2619 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2620 M:      Kevin Tsai <ktsai@capellamicro.com>
2621 S:      Maintained
2622 F:      drivers/iio/light/cm*
2623 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2624
2625 CAVIUM LIQUIDIO NETWORK DRIVER
2626 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2627 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2628 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2629 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2630 L:     netdev@vger.kernel.org
2631 W:     http://www.cavium.com
2632 S:     Supported
2633 F:     drivers/net/ethernet/cavium/liquidio/
2634
2635 CC2520 IEEE-802.15.4 RADIO DRIVER
2636 M:      Varka Bhadram <varkabhadram@gmail.com>
2637 L:      linux-wpan@vger.kernel.org
2638 S:      Maintained
2639 F:      drivers/net/ieee802154/cc2520.c
2640 F:      include/linux/spi/cc2520.h
2641 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2642
2643 CELL BROADBAND ENGINE ARCHITECTURE
2644 M:      Arnd Bergmann <arnd@arndb.de>
2645 L:      linuxppc-dev@lists.ozlabs.org
2646 W:      http://www.ibm.com/developerworks/power/cell/
2647 S:      Supported
2648 F:      arch/powerpc/include/asm/cell*.h
2649 F:      arch/powerpc/include/asm/spu*.h
2650 F:      arch/powerpc/include/uapi/asm/spu*.h
2651 F:      arch/powerpc/oprofile/*cell*
2652 F:      arch/powerpc/platforms/cell/
2653
2654 CEPH COMMON CODE (LIBCEPH)
2655 M:      Ilya Dryomov <idryomov@gmail.com>
2656 M:      "Yan, Zheng" <zyan@redhat.com>
2657 M:      Sage Weil <sage@redhat.com>
2658 L:      ceph-devel@vger.kernel.org
2659 W:      http://ceph.com/
2660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2661 T:      git git://github.com/ceph/ceph-client.git
2662 S:      Supported
2663 F:      net/ceph/
2664 F:      include/linux/ceph/
2665 F:      include/linux/crush/
2666
2667 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2668 M:      "Yan, Zheng" <zyan@redhat.com>
2669 M:      Sage Weil <sage@redhat.com>
2670 M:      Ilya Dryomov <idryomov@gmail.com>
2671 L:      ceph-devel@vger.kernel.org
2672 W:      http://ceph.com/
2673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2674 T:      git git://github.com/ceph/ceph-client.git
2675 S:      Supported
2676 F:      Documentation/filesystems/ceph.txt
2677 F:      fs/ceph/
2678
2679 CERTIFICATE HANDLING:
2680 M:      David Howells <dhowells@redhat.com>
2681 M:      David Woodhouse <dwmw2@infradead.org>
2682 L:      keyrings@linux-nfs.org
2683 S:      Maintained
2684 F:      Documentation/module-signing.txt
2685 F:      certs/
2686 F:      scripts/extract-cert.c
2687
2688 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2689 L:      linux-usb@vger.kernel.org
2690 S:      Orphan
2691 F:      Documentation/usb/WUSB-Design-overview.txt
2692 F:      Documentation/usb/wusb-cbaf
2693 F:      drivers/usb/host/hwa-hc.c
2694 F:      drivers/usb/host/whci/
2695 F:      drivers/usb/wusbcore/
2696 F:      include/linux/usb/wusb*
2697
2698 CFAG12864B LCD DRIVER
2699 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2700 W:      http://miguelojeda.es/auxdisplay.htm
2701 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2702 S:      Maintained
2703 F:      drivers/auxdisplay/cfag12864b.c
2704 F:      include/linux/cfag12864b.h
2705
2706 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2707 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2708 W:      http://miguelojeda.es/auxdisplay.htm
2709 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2710 S:      Maintained
2711 F:      drivers/auxdisplay/cfag12864bfb.c
2712 F:      include/linux/cfag12864b.h
2713
2714 CFG80211 and NL80211
2715 M:      Johannes Berg <johannes@sipsolutions.net>
2716 L:      linux-wireless@vger.kernel.org
2717 W:      http://wireless.kernel.org/
2718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2720 S:      Maintained
2721 F:      include/uapi/linux/nl80211.h
2722 F:      include/net/cfg80211.h
2723 F:      net/wireless/*
2724 X:      net/wireless/wext*
2725
2726 CHAR and MISC DRIVERS
2727 M:      Arnd Bergmann <arnd@arndb.de>
2728 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2730 S:      Supported
2731 F:      drivers/char/*
2732 F:      drivers/misc/*
2733 F:      include/linux/miscdevice.h
2734
2735 CHECKPATCH
2736 M:      Andy Whitcroft <apw@canonical.com>
2737 M:      Joe Perches <joe@perches.com>
2738 S:      Maintained
2739 F:      scripts/checkpatch.pl
2740
2741 CHINESE DOCUMENTATION
2742 M:      Harry Wei <harryxiyou@gmail.com>
2743 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2744 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2745 S:      Maintained
2746 F:      Documentation/zh_CN/
2747
2748 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2749 M:      Peter Chen <Peter.Chen@freescale.com>
2750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2751 L:      linux-usb@vger.kernel.org
2752 S:      Maintained
2753 F:      drivers/usb/chipidea/
2754
2755 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2756 M:      Hans de Goede <hdegoede@redhat.com>
2757 L:      linux-input@vger.kernel.org
2758 S:      Maintained
2759 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2760 F:      drivers/input/touchscreen/chipone_icn8318.c
2761
2762 CHROME HARDWARE PLATFORM SUPPORT
2763 M:      Olof Johansson <olof@lixom.net>
2764 S:      Maintained
2765 F:      drivers/platform/chrome/
2766
2767 CISCO VIC ETHERNET NIC DRIVER
2768 M:      Christian Benvenuti <benve@cisco.com>
2769 M:      Sujith Sankar <ssujith@cisco.com>
2770 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2771 M:      Neel Patel <neepatel@cisco.com>
2772 S:      Supported
2773 F:      drivers/net/ethernet/cisco/enic/
2774
2775 CISCO VIC LOW LATENCY NIC DRIVER
2776 M:      Christian Benvenuti <benve@cisco.com>
2777 M:      Dave Goodell <dgoodell@cisco.com>
2778 S:      Supported
2779 F:      drivers/infiniband/hw/usnic/
2780
2781 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2782 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2783 L:      netdev@vger.kernel.org
2784 S:      Maintained
2785 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2786
2787 CIRRUS LOGIC AUDIO CODEC DRIVERS
2788 M:      Brian Austin <brian.austin@cirrus.com>
2789 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2790 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2791 S:      Maintained
2792 F:      sound/soc/codecs/cs*
2793
2794 CLEANCACHE API
2795 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2796 L:      linux-kernel@vger.kernel.org
2797 S:      Maintained
2798 F:      mm/cleancache.c
2799 F:      include/linux/cleancache.h
2800
2801 CLK API
2802 M:      Russell King <linux@arm.linux.org.uk>
2803 L:      linux-clk@vger.kernel.org
2804 S:      Maintained
2805 F:      include/linux/clk.h
2806
2807 CLOCKSOURCE, CLOCKEVENT DRIVERS
2808 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2809 M:      Thomas Gleixner <tglx@linutronix.de>
2810 L:      linux-kernel@vger.kernel.org
2811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2812 S:      Supported
2813 F:      drivers/clocksource
2814
2815 CISCO FCOE HBA DRIVER
2816 M:      Hiral Patel <hiralpat@cisco.com>
2817 M:      Suma Ramars <sramars@cisco.com>
2818 M:      Brian Uchino <buchino@cisco.com>
2819 L:      linux-scsi@vger.kernel.org
2820 S:      Supported
2821 F:      drivers/scsi/fnic/
2822
2823 CISCO SCSI HBA DRIVER
2824 M:      Narsimhulu Musini <nmusini@cisco.com>
2825 M:      Sesidhar Baddela <sebaddel@cisco.com>
2826 L:      linux-scsi@vger.kernel.org
2827 S:      Supported
2828 F:      drivers/scsi/snic/
2829
2830 CMPC ACPI DRIVER
2831 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2832 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2833 L:      platform-driver-x86@vger.kernel.org
2834 S:      Supported
2835 F:      drivers/platform/x86/classmate-laptop.c
2836
2837 COBALT MEDIA DRIVER
2838 M:      Hans Verkuil <hans.verkuil@cisco.com>
2839 L:      linux-media@vger.kernel.org
2840 T:      git git://linuxtv.org/media_tree.git
2841 W:      http://linuxtv.org
2842 S:      Supported
2843 F:      drivers/media/pci/cobalt/
2844
2845 COCCINELLE/Semantic Patches (SmPL)
2846 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2847 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2848 M:      Nicolas Palix <nicolas.palix@imag.fr>
2849 M:      Michal Marek <mmarek@suse.com>
2850 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2852 W:      http://coccinelle.lip6.fr/
2853 S:      Supported
2854 F:      Documentation/coccinelle.txt
2855 F:      scripts/coccinelle/
2856 F:      scripts/coccicheck
2857
2858 CODA FILE SYSTEM
2859 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2860 M:      coda@cs.cmu.edu
2861 L:      codalist@coda.cs.cmu.edu
2862 W:      http://www.coda.cs.cmu.edu/
2863 S:      Maintained
2864 F:      Documentation/filesystems/coda.txt
2865 F:      fs/coda/
2866 F:      include/linux/coda*.h
2867 F:      include/uapi/linux/coda*.h
2868
2869 CODA V4L2 MEM2MEM DRIVER
2870 M:      Philipp Zabel <p.zabel@pengutronix.de>
2871 L:      linux-media@vger.kernel.org
2872 S:      Maintained
2873 F:      Documentation/devicetree/bindings/media/coda.txt
2874 F:      drivers/media/platform/coda/
2875
2876 COMMON CLK FRAMEWORK
2877 M:      Michael Turquette <mturquette@baylibre.com>
2878 M:      Stephen Boyd <sboyd@codeaurora.org>
2879 L:      linux-clk@vger.kernel.org
2880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2881 S:      Maintained
2882 F:      drivers/clk/
2883 X:      drivers/clk/clkdev.c
2884 F:      include/linux/clk-pr*
2885 F:      include/linux/clk/
2886
2887 COMMON INTERNET FILE SYSTEM (CIFS)
2888 M:      Steve French <sfrench@samba.org>
2889 L:      linux-cifs@vger.kernel.org
2890 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2891 W:      http://linux-cifs.samba.org/
2892 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2893 S:      Supported
2894 F:      Documentation/filesystems/cifs/
2895 F:      fs/cifs/
2896
2897 COMPACTPCI HOTPLUG CORE
2898 M:      Scott Murray <scott@spiteful.org>
2899 L:      linux-pci@vger.kernel.org
2900 S:      Maintained
2901 F:      drivers/pci/hotplug/cpci_hotplug*
2902
2903 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2904 M:      Scott Murray <scott@spiteful.org>
2905 L:      linux-pci@vger.kernel.org
2906 S:      Maintained
2907 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2908
2909 COMPACTPCI HOTPLUG GENERIC DRIVER
2910 M:      Scott Murray <scott@spiteful.org>
2911 L:      linux-pci@vger.kernel.org
2912 S:      Maintained
2913 F:      drivers/pci/hotplug/cpcihp_generic.c
2914
2915 COMPAL LAPTOP SUPPORT
2916 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2917 L:      platform-driver-x86@vger.kernel.org
2918 S:      Maintained
2919 F:      drivers/platform/x86/compal-laptop.c
2920
2921 CONEXANT ACCESSRUNNER USB DRIVER
2922 M:      Simon Arlott <cxacru@fire.lp0.eu>
2923 L:      accessrunner-general@lists.sourceforge.net
2924 W:      http://accessrunner.sourceforge.net/
2925 S:      Maintained
2926 F:      drivers/usb/atm/cxacru.c
2927
2928 CONFIGFS
2929 M:      Joel Becker <jlbec@evilplan.org>
2930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2931 S:      Supported
2932 F:      fs/configfs/
2933 F:      include/linux/configfs.h
2934
2935 CONNECTOR
2936 M:      Evgeniy Polyakov <zbr@ioremap.net>
2937 L:      netdev@vger.kernel.org
2938 S:      Maintained
2939 F:      drivers/connector/
2940
2941 CONTROL GROUP (CGROUP)
2942 M:      Tejun Heo <tj@kernel.org>
2943 M:      Li Zefan <lizefan@huawei.com>
2944 M:      Johannes Weiner <hannes@cmpxchg.org>
2945 L:      cgroups@vger.kernel.org
2946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2947 S:      Maintained
2948 F:      Documentation/cgroups/
2949 F:      include/linux/cgroup*
2950 F:      kernel/cgroup*
2951
2952 CONTROL GROUP - CPUSET
2953 M:      Li Zefan <lizefan@huawei.com>
2954 L:      cgroups@vger.kernel.org
2955 W:      http://www.bullopensource.org/cpuset/
2956 W:      http://oss.sgi.com/projects/cpusets/
2957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2958 S:      Maintained
2959 F:      Documentation/cgroups/cpusets.txt
2960 F:      include/linux/cpuset.h
2961 F:      kernel/cpuset.c
2962
2963 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2964 M:      Johannes Weiner <hannes@cmpxchg.org>
2965 M:      Michal Hocko <mhocko@kernel.org>
2966 L:      cgroups@vger.kernel.org
2967 L:      linux-mm@kvack.org
2968 S:      Maintained
2969 F:      mm/memcontrol.c
2970 F:      mm/swap_cgroup.c
2971
2972 CORETEMP HARDWARE MONITORING DRIVER
2973 M:      Fenghua Yu <fenghua.yu@intel.com>
2974 L:      lm-sensors@lm-sensors.org
2975 S:      Maintained
2976 F:      Documentation/hwmon/coretemp
2977 F:      drivers/hwmon/coretemp.c
2978
2979 COSA/SRP SYNC SERIAL DRIVER
2980 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2981 W:      http://www.fi.muni.cz/~kas/cosa/
2982 S:      Maintained
2983 F:      drivers/net/wan/cosa*
2984
2985 CPMAC ETHERNET DRIVER
2986 M:      Florian Fainelli <florian@openwrt.org>
2987 L:      netdev@vger.kernel.org
2988 S:      Maintained
2989 F:      drivers/net/ethernet/ti/cpmac.c
2990
2991 CPU FREQUENCY DRIVERS
2992 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2993 M:      Viresh Kumar <viresh.kumar@linaro.org>
2994 L:      linux-pm@vger.kernel.org
2995 S:      Maintained
2996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2997 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2998 F:      drivers/cpufreq/
2999 F:      include/linux/cpufreq.h
3000
3001 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3002 M:      Viresh Kumar <viresh.kumar@linaro.org>
3003 M:      Sudeep Holla <sudeep.holla@arm.com>
3004 L:      linux-pm@vger.kernel.org
3005 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3006 S:      Maintained
3007 F:      drivers/cpufreq/arm_big_little.h
3008 F:      drivers/cpufreq/arm_big_little.c
3009 F:      drivers/cpufreq/arm_big_little_dt.c
3010
3011 CPUIDLE DRIVER - ARM BIG LITTLE
3012 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3013 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3014 L:      linux-pm@vger.kernel.org
3015 L:      linux-arm-kernel@lists.infradead.org
3016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3017 S:      Maintained
3018 F:      drivers/cpuidle/cpuidle-big_little.c
3019
3020 CPUIDLE DRIVER - ARM EXYNOS
3021 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3022 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3023 M:      Kukjin Kim <kgene@kernel.org>
3024 L:      linux-pm@vger.kernel.org
3025 L:      linux-samsung-soc@vger.kernel.org
3026 S:      Supported
3027 F:      drivers/cpuidle/cpuidle-exynos.c
3028 F:      arch/arm/mach-exynos/pm.c
3029
3030 CPUIDLE DRIVERS
3031 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3032 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3033 L:      linux-pm@vger.kernel.org
3034 S:      Maintained
3035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3036 F:      drivers/cpuidle/*
3037 F:      include/linux/cpuidle.h
3038
3039 CPUID/MSR DRIVER
3040 M:      "H. Peter Anvin" <hpa@zytor.com>
3041 S:      Maintained
3042 F:      arch/x86/kernel/cpuid.c
3043 F:      arch/x86/kernel/msr.c
3044
3045 CPU POWER MONITORING SUBSYSTEM
3046 M:      Thomas Renninger <trenn@suse.com>
3047 L:      linux-pm@vger.kernel.org
3048 S:      Maintained
3049 F:      tools/power/cpupower/
3050
3051 CRAMFS FILESYSTEM
3052 W:      http://sourceforge.net/projects/cramfs/
3053 S:      Orphan / Obsolete
3054 F:      Documentation/filesystems/cramfs.txt
3055 F:      fs/cramfs/
3056
3057 CRIS PORT
3058 M:      Mikael Starvik <starvik@axis.com>
3059 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3060 L:      linux-cris-kernel@axis.com
3061 W:      http://developer.axis.com
3062 S:      Maintained
3063 F:      arch/cris/
3064 F:      drivers/tty/serial/crisv10.*
3065
3066 CRYPTO API
3067 M:      Herbert Xu <herbert@gondor.apana.org.au>
3068 M:      "David S. Miller" <davem@davemloft.net>
3069 L:      linux-crypto@vger.kernel.org
3070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3071 S:      Maintained
3072 F:      Documentation/crypto/
3073 F:      Documentation/DocBook/crypto-API.tmpl
3074 F:      arch/*/crypto/
3075 F:      crypto/
3076 F:      drivers/crypto/
3077 F:      include/crypto/
3078
3079 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3080 M:      Neil Horman <nhorman@tuxdriver.com>
3081 L:      linux-crypto@vger.kernel.org
3082 S:      Maintained
3083 F:      crypto/ansi_cprng.c
3084 F:      crypto/rng.c
3085
3086 CS5535 Audio ALSA driver
3087 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3088 S:      Maintained
3089 F:      sound/pci/cs5535audio/
3090
3091 CW1200 WLAN driver
3092 M:      Solomon Peachy <pizza@shaftnet.org>
3093 S:      Maintained
3094 F:      drivers/net/wireless/cw1200/
3095
3096 CX18 VIDEO4LINUX DRIVER
3097 M:      Andy Walls <awalls@md.metrocast.net>
3098 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3099 L:      linux-media@vger.kernel.org
3100 T:      git git://linuxtv.org/media_tree.git
3101 W:      http://linuxtv.org
3102 W:      http://www.ivtvdriver.org/index.php/Cx18
3103 S:      Maintained
3104 F:      Documentation/video4linux/cx18.txt
3105 F:      drivers/media/pci/cx18/
3106 F:      include/uapi/linux/ivtv*
3107
3108 CX2341X MPEG ENCODER HELPER MODULE
3109 M:      Hans Verkuil <hverkuil@xs4all.nl>
3110 L:      linux-media@vger.kernel.org
3111 T:      git git://linuxtv.org/media_tree.git
3112 W:      http://linuxtv.org
3113 S:      Maintained
3114 F:      drivers/media/common/cx2341x*
3115 F:      include/media/cx2341x*
3116
3117 CX24120 MEDIA DRIVER
3118 M:      Jemma Denson <jdenson@gmail.com>
3119 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3120 L:      linux-media@vger.kernel.org
3121 W:      http://linuxtv.org/
3122 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3123 S:      Maintained
3124 F:      drivers/media/dvb-frontends/cx24120*
3125
3126 CX88 VIDEO4LINUX DRIVER
3127 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3128 L:      linux-media@vger.kernel.org
3129 W:      http://linuxtv.org
3130 T:      git git://linuxtv.org/media_tree.git
3131 S:      Odd fixes
3132 F:      Documentation/video4linux/cx88/
3133 F:      drivers/media/pci/cx88/
3134
3135 CXD2820R MEDIA DRIVER
3136 M:      Antti Palosaari <crope@iki.fi>
3137 L:      linux-media@vger.kernel.org
3138 W:      http://linuxtv.org/
3139 W:      http://palosaari.fi/linux/
3140 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3141 T:      git git://linuxtv.org/anttip/media_tree.git
3142 S:      Maintained
3143 F:      drivers/media/dvb-frontends/cxd2820r*
3144
3145 CXGB3 ETHERNET DRIVER (CXGB3)
3146 M:      Santosh Raspatur <santosh@chelsio.com>
3147 L:      netdev@vger.kernel.org
3148 W:      http://www.chelsio.com
3149 S:      Supported
3150 F:      drivers/net/ethernet/chelsio/cxgb3/
3151
3152 CXGB3 ISCSI DRIVER (CXGB3I)
3153 M:      Karen Xie <kxie@chelsio.com>
3154 L:      linux-scsi@vger.kernel.org
3155 W:      http://www.chelsio.com
3156 S:      Supported
3157 F:      drivers/scsi/cxgbi/cxgb3i
3158
3159 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3160 M:      Steve Wise <swise@chelsio.com>
3161 L:      linux-rdma@vger.kernel.org
3162 W:      http://www.openfabrics.org
3163 S:      Supported
3164 F:      drivers/infiniband/hw/cxgb3/
3165
3166 CXGB4 ETHERNET DRIVER (CXGB4)
3167 M:      Hariprasad S <hariprasad@chelsio.com>
3168 L:      netdev@vger.kernel.org
3169 W:      http://www.chelsio.com
3170 S:      Supported
3171 F:      drivers/net/ethernet/chelsio/cxgb4/
3172
3173 CXGB4 ISCSI DRIVER (CXGB4I)
3174 M:      Karen Xie <kxie@chelsio.com>
3175 L:      linux-scsi@vger.kernel.org
3176 W:      http://www.chelsio.com
3177 S:      Supported
3178 F:      drivers/scsi/cxgbi/cxgb4i
3179
3180 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3181 M:      Steve Wise <swise@chelsio.com>
3182 L:      linux-rdma@vger.kernel.org
3183 W:      http://www.openfabrics.org
3184 S:      Supported
3185 F:      drivers/infiniband/hw/cxgb4/
3186
3187 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3188 M:      Casey Leedom <leedom@chelsio.com>
3189 L:      netdev@vger.kernel.org
3190 W:      http://www.chelsio.com
3191 S:      Supported
3192 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3193
3194 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3195 M:      Ian Munsie <imunsie@au1.ibm.com>
3196 M:      Michael Neuling <mikey@neuling.org>
3197 L:      linuxppc-dev@lists.ozlabs.org
3198 S:      Supported
3199 F:      drivers/misc/cxl/
3200 F:      include/misc/cxl*
3201 F:      include/uapi/misc/cxl.h
3202 F:      Documentation/powerpc/cxl.txt
3203 F:      Documentation/powerpc/cxl.txt
3204 F:      Documentation/ABI/testing/sysfs-class-cxl
3205
3206 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3207 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3208 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3209 L:      linux-scsi@vger.kernel.org
3210 S:      Supported
3211 F:      drivers/scsi/cxlflash/
3212 F:      include/uapi/scsi/cxlflash_ioctls.h
3213 F:      Documentation/powerpc/cxlflash.txt
3214
3215 STMMAC ETHERNET DRIVER
3216 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3217 L:      netdev@vger.kernel.org
3218 W:      http://www.stlinux.com
3219 S:      Supported
3220 F:      drivers/net/ethernet/stmicro/stmmac/
3221
3222 CYBERPRO FB DRIVER
3223 M:      Russell King <linux@arm.linux.org.uk>
3224 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3225 W:      http://www.arm.linux.org.uk/
3226 S:      Maintained
3227 F:      drivers/video/fbdev/cyber2000fb.*
3228
3229 CYCLADES ASYNC MUX DRIVER
3230 W:      http://www.cyclades.com/
3231 S:      Orphan
3232 F:      drivers/tty/cyclades.c
3233 F:      include/linux/cyclades.h
3234 F:      include/uapi/linux/cyclades.h
3235
3236 CYCLADES PC300 DRIVER
3237 W:      http://www.cyclades.com/
3238 S:      Orphan
3239 F:      drivers/net/wan/pc300*
3240
3241 CYPRESS_FIRMWARE MEDIA DRIVER
3242 M:      Antti Palosaari <crope@iki.fi>
3243 L:      linux-media@vger.kernel.org
3244 W:      http://linuxtv.org/
3245 W:      http://palosaari.fi/linux/
3246 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3247 T:      git git://linuxtv.org/anttip/media_tree.git
3248 S:      Maintained
3249 F:      drivers/media/common/cypress_firmware*
3250
3251 CYTTSP TOUCHSCREEN DRIVER
3252 M:      Ferruh Yigit <fery@cypress.com>
3253 L:      linux-input@vger.kernel.org
3254 S:      Supported
3255 F:      drivers/input/touchscreen/cyttsp*
3256 F:      include/linux/input/cyttsp.h
3257
3258 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3259 M:      Joshua Kinard <kumba@gentoo.org>
3260 S:      Maintained
3261 F:      drivers/rtc/rtc-ds1685.c
3262 F:      include/linux/rtc/ds1685.h
3263
3264 DAMA SLAVE for AX.25
3265 M:      Joerg Reuter <jreuter@yaina.de>
3266 W:      http://yaina.de/jreuter/
3267 W:      http://www.qsl.net/dl1bke/
3268 L:      linux-hams@vger.kernel.org
3269 S:      Maintained
3270 F:      net/ax25/af_ax25.c
3271 F:      net/ax25/ax25_dev.c
3272 F:      net/ax25/ax25_ds_*
3273 F:      net/ax25/ax25_in.c
3274 F:      net/ax25/ax25_out.c
3275 F:      net/ax25/ax25_timer.c
3276 F:      net/ax25/sysctl_net_ax25.c
3277
3278 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3279 L:      netdev@vger.kernel.org
3280 S:      Orphan
3281 F:      Documentation/networking/dmfe.txt
3282 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3283
3284 DC390/AM53C974 SCSI driver
3285 M:      Hannes Reinecke <hare@suse.com>
3286 L:      linux-scsi@vger.kernel.org
3287 S:      Maintained
3288 F:      drivers/scsi/am53c974.c
3289
3290 DC395x SCSI driver
3291 M:      Oliver Neukum <oliver@neukum.org>
3292 M:      Ali Akcaagac <aliakc@web.de>
3293 M:      Jamie Lenehan <lenehan@twibble.org>
3294 L:      dc395x@twibble.org
3295 W:      http://twibble.org/dist/dc395x/
3296 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3297 S:      Maintained
3298 F:      Documentation/scsi/dc395x.txt
3299 F:      drivers/scsi/dc395x.*
3300
3301 DCCP PROTOCOL
3302 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3303 L:      dccp@vger.kernel.org
3304 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3305 S:      Maintained
3306 F:      include/linux/dccp.h
3307 F:      include/uapi/linux/dccp.h
3308 F:      include/linux/tfrc.h
3309 F:      net/dccp/
3310
3311 DECnet NETWORK LAYER
3312 W:      http://linux-decnet.sourceforge.net
3313 L:      linux-decnet-user@lists.sourceforge.net
3314 S:      Orphan
3315 F:      Documentation/networking/decnet.txt
3316 F:      net/decnet/
3317
3318 DECSTATION PLATFORM SUPPORT
3319 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3320 L:      linux-mips@linux-mips.org
3321 W:      http://www.linux-mips.org/wiki/DECstation
3322 S:      Maintained
3323 F:      arch/mips/dec/
3324 F:      arch/mips/include/asm/dec/
3325 F:      arch/mips/include/asm/mach-dec/
3326
3327 DEFXX FDDI NETWORK DRIVER
3328 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3329 S:      Maintained
3330 F:      drivers/net/fddi/defxx.*
3331
3332 DELL LAPTOP DRIVER
3333 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3334 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3335 L:      platform-driver-x86@vger.kernel.org
3336 S:      Maintained
3337 F:      drivers/platform/x86/dell-laptop.c
3338
3339 DELL LAPTOP RBTN DRIVER
3340 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3341 S:      Maintained
3342 F:      drivers/platform/x86/dell-rbtn.*
3343
3344 DELL LAPTOP FREEFALL DRIVER
3345 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3346 S:      Maintained
3347 F:      drivers/platform/x86/dell-smo8800.c
3348
3349 DELL LAPTOP SMM DRIVER
3350 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3351 S:      Maintained
3352 F:      drivers/hwmon/dell-smm-hwmon.c
3353 F:      include/uapi/linux/i8k.h
3354
3355 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3356 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3357 S:      Maintained
3358 F:      Documentation/dcdbas.txt
3359 F:      drivers/firmware/dcdbas.*
3360
3361 DELL WMI EXTRAS DRIVER
3362 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3363 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3364 S:      Maintained
3365 F:      drivers/platform/x86/dell-wmi.c
3366
3367 DESIGNWARE USB2 DRD IP DRIVER
3368 M:      John Youn <johnyoun@synopsys.com>
3369 L:      linux-usb@vger.kernel.org
3370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3371 S:      Maintained
3372 F:      drivers/usb/dwc2/
3373
3374 DESIGNWARE USB3 DRD IP DRIVER
3375 M:      Felipe Balbi <balbi@ti.com>
3376 L:      linux-usb@vger.kernel.org
3377 L:      linux-omap@vger.kernel.org
3378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3379 S:      Maintained
3380 F:      drivers/usb/dwc3/
3381
3382 DEVICE COREDUMP (DEV_COREDUMP)
3383 M:      Johannes Berg <johannes@sipsolutions.net>
3384 L:      linux-kernel@vger.kernel.org
3385 S:      Maintained
3386 F:      drivers/base/devcoredump.c
3387 F:      include/linux/devcoredump.h
3388
3389 DEVICE FREQUENCY (DEVFREQ)
3390 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3391 M:      Kyungmin Park <kyungmin.park@samsung.com>
3392 L:      linux-pm@vger.kernel.org
3393 S:      Maintained
3394 F:      drivers/devfreq/
3395
3396 DEVICE NUMBER REGISTRY
3397 M:      Torben Mathiasen <device@lanana.org>
3398 W:      http://lanana.org/docs/device-list/index.html
3399 S:      Maintained
3400
3401 DEVICE-MAPPER  (LVM)
3402 M:      Alasdair Kergon <agk@redhat.com>
3403 M:      Mike Snitzer <snitzer@redhat.com>
3404 M:      dm-devel@redhat.com
3405 L:      dm-devel@redhat.com
3406 W:      http://sources.redhat.com/dm
3407 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3409 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3410 S:      Maintained
3411 F:      Documentation/device-mapper/
3412 F:      drivers/md/dm*
3413 F:      drivers/md/persistent-data/
3414 F:      include/linux/device-mapper.h
3415 F:      include/linux/dm-*.h
3416 F:      include/uapi/linux/dm-*.h
3417
3418 DIALOG SEMICONDUCTOR DRIVERS
3419 M:      Support Opensource <support.opensource@diasemi.com>
3420 W:      http://www.dialog-semiconductor.com/products
3421 S:      Supported
3422 F:      Documentation/hwmon/da90??
3423 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3424 F:      drivers/gpio/gpio-da90??.c
3425 F:      drivers/hwmon/da90??-hwmon.c
3426 F:      drivers/iio/adc/da91??-*.c
3427 F:      drivers/input/misc/da90??_onkey.c
3428 F:      drivers/input/touchscreen/da9052_tsi.c
3429 F:      drivers/leds/leds-da90??.c
3430 F:      drivers/mfd/da903x.c
3431 F:      drivers/mfd/da90??-*.c
3432 F:      drivers/mfd/da91??-*.c
3433 F:      drivers/power/da9052-battery.c
3434 F:      drivers/power/da91??-*.c
3435 F:      drivers/regulator/da903x.c
3436 F:      drivers/regulator/da9???-regulator.[ch]
3437 F:      drivers/rtc/rtc-da90??.c
3438 F:      drivers/video/backlight/da90??_bl.c
3439 F:      drivers/watchdog/da90??_wdt.c
3440 F:      include/linux/mfd/da903x.h
3441 F:      include/linux/mfd/da9052/
3442 F:      include/linux/mfd/da9055/
3443 F:      include/linux/mfd/da9063/
3444 F:      include/linux/mfd/da9150/
3445 F:      include/sound/da[79]*.h
3446 F:      sound/soc/codecs/da[79]*.[ch]
3447
3448 DIGI NEO AND CLASSIC PCI PRODUCTS
3449 M:      Lidza Louina <lidza.louina@gmail.com>
3450 M:      Mark Hounschell <markh@compro.net>
3451 L:      driverdev-devel@linuxdriverproject.org
3452 S:      Maintained
3453 F:      drivers/staging/dgnc/
3454
3455 DIGI EPCA PCI PRODUCTS
3456 M:      Lidza Louina <lidza.louina@gmail.com>
3457 M:      Daeseok Youn <daeseok.youn@gmail.com>
3458 L:      driverdev-devel@linuxdriverproject.org
3459 S:      Maintained
3460 F:      drivers/staging/dgap/
3461
3462 DIOLAN U2C-12 I2C DRIVER
3463 M:      Guenter Roeck <linux@roeck-us.net>
3464 L:      linux-i2c@vger.kernel.org
3465 S:      Maintained
3466 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3467
3468 DIRECT ACCESS (DAX)
3469 M:      Matthew Wilcox <willy@linux.intel.com>
3470 L:      linux-fsdevel@vger.kernel.org
3471 S:      Supported
3472 F:      fs/dax.c
3473
3474 DIRECTORY NOTIFICATION (DNOTIFY)
3475 M:      Eric Paris <eparis@parisplace.org>
3476 S:      Maintained
3477 F:      Documentation/filesystems/dnotify.txt
3478 F:      fs/notify/dnotify/
3479 F:      include/linux/dnotify.h
3480
3481 DISK GEOMETRY AND PARTITION HANDLING
3482 M:      Andries Brouwer <aeb@cwi.nl>
3483 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3484 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3485 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3486 S:      Maintained
3487
3488 DISKQUOTA
3489 M:      Jan Kara <jack@suse.com>
3490 S:      Maintained
3491 F:      Documentation/filesystems/quota.txt
3492 F:      fs/quota/
3493 F:      include/linux/quota*.h
3494 F:      include/uapi/linux/quota*.h
3495
3496 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3497 M:      Bernie Thompson <bernie@plugable.com>
3498 L:      linux-fbdev@vger.kernel.org
3499 S:      Maintained
3500 W:      http://plugable.com/category/projects/udlfb/
3501 F:      drivers/video/fbdev/udlfb.c
3502 F:      include/video/udlfb.h
3503 F:      Documentation/fb/udlfb.txt
3504
3505 DISTRIBUTED LOCK MANAGER (DLM)
3506 M:      Christine Caulfield <ccaulfie@redhat.com>
3507 M:      David Teigland <teigland@redhat.com>
3508 L:      cluster-devel@redhat.com
3509 W:      http://sources.redhat.com/cluster/
3510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3511 S:      Supported
3512 F:      fs/dlm/
3513
3514 DMA BUFFER SHARING FRAMEWORK
3515 M:      Sumit Semwal <sumit.semwal@linaro.org>
3516 S:      Maintained
3517 L:      linux-media@vger.kernel.org
3518 L:      dri-devel@lists.freedesktop.org
3519 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3520 F:      drivers/dma-buf/
3521 F:      include/linux/dma-buf*
3522 F:      include/linux/reservation.h
3523 F:      include/linux/*fence.h
3524 F:      Documentation/dma-buf-sharing.txt
3525 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3526
3527 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3528 M:      Vinod Koul <vinod.koul@intel.com>
3529 L:      dmaengine@vger.kernel.org
3530 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3531 S:      Maintained
3532 F:      drivers/dma/
3533 F:      include/linux/dmaengine.h
3534 F:      Documentation/dmaengine/
3535 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3536
3537 DME1737 HARDWARE MONITOR DRIVER
3538 M:      Juerg Haefliger <juergh@gmail.com>
3539 L:      lm-sensors@lm-sensors.org
3540 S:      Maintained
3541 F:      Documentation/hwmon/dme1737
3542 F:      drivers/hwmon/dme1737.c
3543
3544 DMI/SMBIOS SUPPORT
3545 M:      Jean Delvare <jdelvare@suse.com>
3546 S:      Maintained
3547 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3548 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3549 F:      drivers/firmware/dmi-id.c
3550 F:      drivers/firmware/dmi_scan.c
3551 F:      include/linux/dmi.h
3552
3553 DOCUMENTATION
3554 M:      Jonathan Corbet <corbet@lwn.net>
3555 L:      linux-doc@vger.kernel.org
3556 S:      Maintained
3557 F:      Documentation/
3558 F:      scripts/docproc.c
3559 F:      scripts/kernel-doc*
3560 X:      Documentation/ABI/
3561 X:      Documentation/devicetree/
3562 X:      Documentation/acpi
3563 X:      Documentation/power
3564 X:      Documentation/spi
3565 X:      Documentation/DocBook/media
3566 T:      git git://git.lwn.net/linux.git docs-next
3567
3568 DOUBLETALK DRIVER
3569 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3570 L:      blinux-list@redhat.com
3571 S:      Maintained
3572 F:      drivers/char/dtlk.c
3573 F:      include/linux/dtlk.h
3574
3575 DPT_I2O SCSI RAID DRIVER
3576 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3577 L:      linux-scsi@vger.kernel.org
3578 W:      http://www.adaptec.com/
3579 S:      Maintained
3580 F:      drivers/scsi/dpt*
3581 F:      drivers/scsi/dpt/
3582
3583 DRBD DRIVER
3584 P:      Philipp Reisner
3585 P:      Lars Ellenberg
3586 M:      drbd-dev@lists.linbit.com
3587 L:      drbd-user@lists.linbit.com
3588 W:      http://www.drbd.org
3589 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3590 T:      git git://git.drbd.org/drbd-8.3.git
3591 S:      Supported
3592 F:      drivers/block/drbd/
3593 F:      lib/lru_cache.c
3594 F:      Documentation/blockdev/drbd/
3595
3596 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3597 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3599 S:      Supported
3600 F:      Documentation/kobject.txt
3601 F:      drivers/base/
3602 F:      fs/debugfs/
3603 F:      fs/kernfs/
3604 F:      fs/sysfs/
3605 F:      include/linux/debugfs.h
3606 F:      include/linux/kobj*
3607 F:      lib/kobj*
3608
3609 DRM DRIVERS
3610 M:      David Airlie <airlied@linux.ie>
3611 L:      dri-devel@lists.freedesktop.org
3612 T:      git git://people.freedesktop.org/~airlied/linux
3613 S:      Maintained
3614 F:      drivers/gpu/drm/
3615 F:      drivers/gpu/vga/
3616 F:      include/drm/
3617 F:      include/uapi/drm/
3618
3619 RADEON DRM DRIVERS
3620 M:      Alex Deucher <alexander.deucher@amd.com>
3621 M:      Christian König <christian.koenig@amd.com>
3622 L:      dri-devel@lists.freedesktop.org
3623 T:      git git://people.freedesktop.org/~agd5f/linux
3624 S:      Supported
3625 F:      drivers/gpu/drm/radeon/
3626 F:      include/uapi/drm/radeon*
3627
3628 DRM PANEL DRIVERS
3629 M:      Thierry Reding <thierry.reding@gmail.com>
3630 L:      dri-devel@lists.freedesktop.org
3631 T:      git git://anongit.freedesktop.org/tegra/linux.git
3632 S:      Maintained
3633 F:      drivers/gpu/drm/drm_panel.c
3634 F:      drivers/gpu/drm/panel/
3635 F:      include/drm/drm_panel.h
3636 F:      Documentation/devicetree/bindings/display/panel/
3637
3638 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3639 M:      Daniel Vetter <daniel.vetter@intel.com>
3640 M:      Jani Nikula <jani.nikula@linux.intel.com>
3641 L:      intel-gfx@lists.freedesktop.org
3642 L:      dri-devel@lists.freedesktop.org
3643 W:      https://01.org/linuxgraphics/
3644 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3645 T:      git git://anongit.freedesktop.org/drm-intel
3646 S:      Supported
3647 F:      drivers/gpu/drm/i915/
3648 F:      include/drm/i915*
3649 F:      include/uapi/drm/i915*
3650
3651 DRM DRIVERS FOR ATMEL HLCDC
3652 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3653 L:      dri-devel@lists.freedesktop.org
3654 S:      Supported
3655 F:      drivers/gpu/drm/atmel-hlcdc/
3656 F:      Documentation/devicetree/bindings/drm/atmel/
3657
3658 DRM DRIVERS FOR EXYNOS
3659 M:      Inki Dae <inki.dae@samsung.com>
3660 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3661 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3662 M:      Kyungmin Park <kyungmin.park@samsung.com>
3663 L:      dri-devel@lists.freedesktop.org
3664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3665 S:      Supported
3666 F:      drivers/gpu/drm/exynos/
3667 F:      include/drm/exynos*
3668 F:      include/uapi/drm/exynos*
3669
3670 DRM DRIVERS FOR FREESCALE DCU
3671 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3672 M:      Alison Wang <alison.wang@freescale.com>
3673 L:      dri-devel@lists.freedesktop.org
3674 S:      Supported
3675 F:      drivers/gpu/drm/fsl-dcu/
3676 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3677 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3678
3679 DRM DRIVERS FOR FREESCALE IMX
3680 M:      Philipp Zabel <p.zabel@pengutronix.de>
3681 L:      dri-devel@lists.freedesktop.org
3682 S:      Maintained
3683 F:      drivers/gpu/drm/imx/
3684 F:      drivers/gpu/ipu-v3/
3685 F:      Documentation/devicetree/bindings/display/imx/
3686
3687 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3688 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3689 L:      dri-devel@lists.freedesktop.org
3690 T:      git git://github.com/patjak/drm-gma500
3691 S:      Maintained
3692 F:      drivers/gpu/drm/gma500
3693 F:      include/drm/gma500*
3694
3695 DRM DRIVERS FOR NVIDIA TEGRA
3696 M:      Thierry Reding <thierry.reding@gmail.com>
3697 M:      Terje Bergström <tbergstrom@nvidia.com>
3698 L:      dri-devel@lists.freedesktop.org
3699 L:      linux-tegra@vger.kernel.org
3700 T:      git git://anongit.freedesktop.org/tegra/linux.git
3701 S:      Supported
3702 F:      drivers/gpu/drm/tegra/
3703 F:      drivers/gpu/host1x/
3704 F:      include/linux/host1x.h
3705 F:      include/uapi/drm/tegra_drm.h
3706 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3707
3708 DRM DRIVERS FOR RENESAS
3709 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3710 L:      dri-devel@lists.freedesktop.org
3711 L:      linux-sh@vger.kernel.org
3712 T:      git git://people.freedesktop.org/~airlied/linux
3713 S:      Supported
3714 F:      drivers/gpu/drm/rcar-du/
3715 F:      drivers/gpu/drm/shmobile/
3716 F:      include/linux/platform_data/shmob_drm.h
3717
3718 DRM DRIVERS FOR ROCKCHIP
3719 M:      Mark Yao <mark.yao@rock-chips.com>
3720 L:      dri-devel@lists.freedesktop.org
3721 S:      Maintained
3722 F:      drivers/gpu/drm/rockchip/
3723 F:      Documentation/devicetree/bindings/display/rockchip*
3724
3725 DRM DRIVERS FOR STI
3726 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3727 M:      Vincent Abriou <vincent.abriou@st.com>
3728 L:      dri-devel@lists.freedesktop.org
3729 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3730 S:      Maintained
3731 F:      drivers/gpu/drm/sti
3732 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3733
3734 DSBR100 USB FM RADIO DRIVER
3735 M:      Alexey Klimov <klimov.linux@gmail.com>
3736 L:      linux-media@vger.kernel.org
3737 T:      git git://linuxtv.org/media_tree.git
3738 S:      Maintained
3739 F:      drivers/media/radio/dsbr100.c
3740
3741 DSCC4 DRIVER
3742 M:      Francois Romieu <romieu@fr.zoreil.com>
3743 L:      netdev@vger.kernel.org
3744 S:      Maintained
3745 F:      drivers/net/wan/dscc4.c
3746
3747 DT3155 MEDIA DRIVER
3748 M:      Hans Verkuil <hverkuil@xs4all.nl>
3749 L:      linux-media@vger.kernel.org
3750 T:      git git://linuxtv.org/media_tree.git
3751 W:      http://linuxtv.org
3752 S:      Odd Fixes
3753 F:      drivers/media/pci/dt3155/
3754
3755 DVB_USB_AF9015 MEDIA DRIVER
3756 M:      Antti Palosaari <crope@iki.fi>
3757 L:      linux-media@vger.kernel.org
3758 W:      http://linuxtv.org/
3759 W:      http://palosaari.fi/linux/
3760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3761 T:      git git://linuxtv.org/anttip/media_tree.git
3762 S:      Maintained
3763 F:      drivers/media/usb/dvb-usb-v2/af9015*
3764
3765 DVB_USB_AF9035 MEDIA DRIVER
3766 M:      Antti Palosaari <crope@iki.fi>
3767 L:      linux-media@vger.kernel.org
3768 W:      http://linuxtv.org/
3769 W:      http://palosaari.fi/linux/
3770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3771 T:      git git://linuxtv.org/anttip/media_tree.git
3772 S:      Maintained
3773 F:      drivers/media/usb/dvb-usb-v2/af9035*
3774
3775 DVB_USB_ANYSEE MEDIA DRIVER
3776 M:      Antti Palosaari <crope@iki.fi>
3777 L:      linux-media@vger.kernel.org
3778 W:      http://linuxtv.org/
3779 W:      http://palosaari.fi/linux/
3780 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3781 T:      git git://linuxtv.org/anttip/media_tree.git
3782 S:      Maintained
3783 F:      drivers/media/usb/dvb-usb-v2/anysee*
3784
3785 DVB_USB_AU6610 MEDIA DRIVER
3786 M:      Antti Palosaari <crope@iki.fi>
3787 L:      linux-media@vger.kernel.org
3788 W:      http://linuxtv.org/
3789 W:      http://palosaari.fi/linux/
3790 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3791 T:      git git://linuxtv.org/anttip/media_tree.git
3792 S:      Maintained
3793 F:      drivers/media/usb/dvb-usb-v2/au6610*
3794
3795 DVB_USB_CE6230 MEDIA DRIVER
3796 M:      Antti Palosaari <crope@iki.fi>
3797 L:      linux-media@vger.kernel.org
3798 W:      http://linuxtv.org/
3799 W:      http://palosaari.fi/linux/
3800 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3801 T:      git git://linuxtv.org/anttip/media_tree.git
3802 S:      Maintained
3803 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3804
3805 DVB_USB_CXUSB MEDIA DRIVER
3806 M:      Michael Krufky <mkrufky@linuxtv.org>
3807 L:      linux-media@vger.kernel.org
3808 W:      http://linuxtv.org/
3809 W:      http://github.com/mkrufky
3810 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3811 T:      git git://linuxtv.org/media_tree.git
3812 S:      Maintained
3813 F:      drivers/media/usb/dvb-usb/cxusb*
3814
3815 DVB_USB_EC168 MEDIA DRIVER
3816 M:      Antti Palosaari <crope@iki.fi>
3817 L:      linux-media@vger.kernel.org
3818 W:      http://linuxtv.org/
3819 W:      http://palosaari.fi/linux/
3820 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3821 T:      git git://linuxtv.org/anttip/media_tree.git
3822 S:      Maintained
3823 F:      drivers/media/usb/dvb-usb-v2/ec168*
3824
3825 DVB_USB_GL861 MEDIA DRIVER
3826 M:      Antti Palosaari <crope@iki.fi>
3827 L:      linux-media@vger.kernel.org
3828 W:      http://linuxtv.org/
3829 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3830 T:      git git://linuxtv.org/anttip/media_tree.git
3831 S:      Maintained
3832 F:      drivers/media/usb/dvb-usb-v2/gl861*
3833
3834 DVB_USB_MXL111SF MEDIA DRIVER
3835 M:      Michael Krufky <mkrufky@linuxtv.org>
3836 L:      linux-media@vger.kernel.org
3837 W:      http://linuxtv.org/
3838 W:      http://github.com/mkrufky
3839 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3840 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3841 S:      Maintained
3842 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3843
3844 DVB_USB_RTL28XXU MEDIA DRIVER
3845 M:      Antti Palosaari <crope@iki.fi>
3846 L:      linux-media@vger.kernel.org
3847 W:      http://linuxtv.org/
3848 W:      http://palosaari.fi/linux/
3849 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3850 T:      git git://linuxtv.org/anttip/media_tree.git
3851 S:      Maintained
3852 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3853
3854 DVB_USB_V2 MEDIA DRIVER
3855 M:      Antti Palosaari <crope@iki.fi>
3856 L:      linux-media@vger.kernel.org
3857 W:      http://linuxtv.org/
3858 W:      http://palosaari.fi/linux/
3859 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3860 T:      git git://linuxtv.org/anttip/media_tree.git
3861 S:      Maintained
3862 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3863 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3864
3865 DYNAMIC DEBUG
3866 M:      Jason Baron <jbaron@akamai.com>
3867 S:      Maintained
3868 F:      lib/dynamic_debug.c
3869 F:      include/linux/dynamic_debug.h
3870
3871 DZ DECSTATION DZ11 SERIAL DRIVER
3872 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3873 S:      Maintained
3874 F:      drivers/tty/serial/dz.*
3875
3876 E3X0 POWER BUTTON DRIVER
3877 M:      Moritz Fischer <moritz.fischer@ettus.com>
3878 L:      usrp-users@lists.ettus.com
3879 W:      http://www.ettus.com
3880 S:      Supported
3881 F:      drivers/input/misc/e3x0-button.c
3882 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3883
3884 E4000 MEDIA DRIVER
3885 M:      Antti Palosaari <crope@iki.fi>
3886 L:      linux-media@vger.kernel.org
3887 W:      http://linuxtv.org/
3888 W:      http://palosaari.fi/linux/
3889 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3890 T:      git git://linuxtv.org/anttip/media_tree.git
3891 S:      Maintained
3892 F:      drivers/media/tuners/e4000*
3893
3894 EATA ISA/EISA/PCI SCSI DRIVER
3895 M:      Dario Ballabio <ballabio_dario@emc.com>
3896 L:      linux-scsi@vger.kernel.org
3897 S:      Maintained
3898 F:      drivers/scsi/eata.c
3899
3900 EC100 MEDIA DRIVER
3901 M:      Antti Palosaari <crope@iki.fi>
3902 L:      linux-media@vger.kernel.org
3903 W:      http://linuxtv.org/
3904 W:      http://palosaari.fi/linux/
3905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3906 T:      git git://linuxtv.org/anttip/media_tree.git
3907 S:      Maintained
3908 F:      drivers/media/dvb-frontends/ec100*
3909
3910 ECRYPT FILE SYSTEM
3911 M:      Tyler Hicks <tyhicks@canonical.com>
3912 L:      ecryptfs@vger.kernel.org
3913 W:      http://ecryptfs.org
3914 W:      https://launchpad.net/ecryptfs
3915 S:      Supported
3916 F:      Documentation/filesystems/ecryptfs.txt
3917 F:      fs/ecryptfs/
3918
3919 EDAC-CORE
3920 M:      Doug Thompson <dougthompson@xmission.com>
3921 M:      Borislav Petkov <bp@alien8.de>
3922 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3923 L:      linux-edac@vger.kernel.org
3924 W:      bluesmoke.sourceforge.net
3925 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3926 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3927 S:      Supported
3928 F:      Documentation/edac.txt
3929 F:      drivers/edac/
3930 F:      include/linux/edac.h
3931
3932 EDAC-AMD64
3933 M:      Doug Thompson <dougthompson@xmission.com>
3934 M:      Borislav Petkov <bp@alien8.de>
3935 L:      linux-edac@vger.kernel.org
3936 W:      bluesmoke.sourceforge.net
3937 S:      Maintained
3938 F:      drivers/edac/amd64_edac*
3939
3940 EDAC-CALXEDA
3941 M:      Doug Thompson <dougthompson@xmission.com>
3942 M:      Robert Richter <rric@kernel.org>
3943 L:      linux-edac@vger.kernel.org
3944 W:      bluesmoke.sourceforge.net
3945 S:      Maintained
3946 F:      drivers/edac/highbank*
3947
3948 EDAC-CAVIUM
3949 M:      Ralf Baechle <ralf@linux-mips.org>
3950 M:      David Daney <david.daney@cavium.com>
3951 L:      linux-edac@vger.kernel.org
3952 L:      linux-mips@linux-mips.org
3953 W:      bluesmoke.sourceforge.net
3954 S:      Supported
3955 F:      drivers/edac/octeon_edac*
3956
3957 EDAC-E752X
3958 M:      Mark Gross <mark.gross@intel.com>
3959 M:      Doug Thompson <dougthompson@xmission.com>
3960 L:      linux-edac@vger.kernel.org
3961 W:      bluesmoke.sourceforge.net
3962 S:      Maintained
3963 F:      drivers/edac/e752x_edac.c
3964
3965 EDAC-E7XXX
3966 M:      Doug Thompson <dougthompson@xmission.com>
3967 L:      linux-edac@vger.kernel.org
3968 W:      bluesmoke.sourceforge.net
3969 S:      Maintained
3970 F:      drivers/edac/e7xxx_edac.c
3971
3972 EDAC-GHES
3973 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3974 L:      linux-edac@vger.kernel.org
3975 W:      bluesmoke.sourceforge.net
3976 S:      Maintained
3977 F:      drivers/edac/ghes_edac.c
3978
3979 EDAC-I82443BXGX
3980 M:      Tim Small <tim@buttersideup.com>
3981 L:      linux-edac@vger.kernel.org
3982 W:      bluesmoke.sourceforge.net
3983 S:      Maintained
3984 F:      drivers/edac/i82443bxgx_edac.c
3985
3986 EDAC-I3000
3987 M:      Jason Uhlenkott <juhlenko@akamai.com>
3988 L:      linux-edac@vger.kernel.org
3989 W:      bluesmoke.sourceforge.net
3990 S:      Maintained
3991 F:      drivers/edac/i3000_edac.c
3992
3993 EDAC-I5000
3994 M:      Doug Thompson <dougthompson@xmission.com>
3995 L:      linux-edac@vger.kernel.org
3996 W:      bluesmoke.sourceforge.net
3997 S:      Maintained
3998 F:      drivers/edac/i5000_edac.c
3999
4000 EDAC-I5400
4001 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4002 L:      linux-edac@vger.kernel.org
4003 W:      bluesmoke.sourceforge.net
4004 S:      Maintained
4005 F:      drivers/edac/i5400_edac.c
4006
4007 EDAC-I7300
4008 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4009 L:      linux-edac@vger.kernel.org
4010 W:      bluesmoke.sourceforge.net
4011 S:      Maintained
4012 F:      drivers/edac/i7300_edac.c
4013
4014 EDAC-I7CORE
4015 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4016 L:      linux-edac@vger.kernel.org
4017 W:      bluesmoke.sourceforge.net
4018 S:      Maintained
4019 F:      drivers/edac/i7core_edac.c
4020
4021 EDAC-I82975X
4022 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4023 M:      "Arvind R." <arvino55@gmail.com>
4024 L:      linux-edac@vger.kernel.org
4025 W:      bluesmoke.sourceforge.net
4026 S:      Maintained
4027 F:      drivers/edac/i82975x_edac.c
4028
4029 EDAC-IE31200
4030 M:      Jason Baron <jbaron@akamai.com>
4031 L:      linux-edac@vger.kernel.org
4032 W:      bluesmoke.sourceforge.net
4033 S:      Maintained
4034 F:      drivers/edac/ie31200_edac.c
4035
4036 EDAC-MPC85XX
4037 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4038 L:      linux-edac@vger.kernel.org
4039 W:      bluesmoke.sourceforge.net
4040 S:      Maintained
4041 F:      drivers/edac/mpc85xx_edac.[ch]
4042
4043 EDAC-PASEMI
4044 M:      Egor Martovetsky <egor@pasemi.com>
4045 L:      linux-edac@vger.kernel.org
4046 W:      bluesmoke.sourceforge.net
4047 S:      Maintained
4048 F:      drivers/edac/pasemi_edac.c
4049
4050 EDAC-R82600
4051 M:      Tim Small <tim@buttersideup.com>
4052 L:      linux-edac@vger.kernel.org
4053 W:      bluesmoke.sourceforge.net
4054 S:      Maintained
4055 F:      drivers/edac/r82600_edac.c
4056
4057 EDAC-SBRIDGE
4058 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4059 L:      linux-edac@vger.kernel.org
4060 W:      bluesmoke.sourceforge.net
4061 S:      Maintained
4062 F:      drivers/edac/sb_edac.c
4063
4064 EDAC-XGENE
4065 APPLIED MICRO (APM) X-GENE SOC EDAC
4066 M:     Loc Ho <lho@apm.com>
4067 S:     Supported
4068 F:     drivers/edac/xgene_edac.c
4069 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4070
4071 EDIROL UA-101/UA-1000 DRIVER
4072 M:      Clemens Ladisch <clemens@ladisch.de>
4073 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4074 T:      git git://git.alsa-project.org/alsa-kernel.git
4075 S:      Maintained
4076 F:      sound/usb/misc/ua101.c
4077
4078 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4079 M:      Matt Fleming <matt@codeblueprint.co.uk>
4080 L:      linux-efi@vger.kernel.org
4081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4082 S:      Maintained
4083 F:      Documentation/efi-stub.txt
4084 F:      arch/ia64/kernel/efi.c
4085 F:      arch/x86/boot/compressed/eboot.[ch]
4086 F:      arch/x86/include/asm/efi.h
4087 F:      arch/x86/platform/efi/*
4088 F:      drivers/firmware/efi/*
4089 F:      include/linux/efi*.h
4090
4091 EFI VARIABLE FILESYSTEM
4092 M:      Matthew Garrett <matthew.garrett@nebula.com>
4093 M:      Jeremy Kerr <jk@ozlabs.org>
4094 M:      Matt Fleming <matt@codeblueprint.co.uk>
4095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4096 L:      linux-efi@vger.kernel.org
4097 S:      Maintained
4098 F:      fs/efivarfs/
4099
4100 EFIFB FRAMEBUFFER DRIVER
4101 L:      linux-fbdev@vger.kernel.org
4102 M:      Peter Jones <pjones@redhat.com>
4103 S:      Maintained
4104 F:      drivers/video/fbdev/efifb.c
4105
4106 EFS FILESYSTEM
4107 W:      http://aeschi.ch.eu.org/efs/
4108 S:      Orphan
4109 F:      fs/efs/
4110
4111 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4112 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4113 M:      Christoph Raisch <raisch@de.ibm.com>
4114 L:      linux-rdma@vger.kernel.org
4115 S:      Supported
4116 F:      drivers/infiniband/hw/ehca/
4117
4118 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4119 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4120 L:      netdev@vger.kernel.org
4121 S:      Maintained
4122 F:      drivers/net/ethernet/ibm/ehea/
4123
4124 EM28XX VIDEO4LINUX DRIVER
4125 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4126 L:      linux-media@vger.kernel.org
4127 W:      http://linuxtv.org
4128 T:      git git://linuxtv.org/media_tree.git
4129 S:      Maintained
4130 F:      drivers/media/usb/em28xx/
4131
4132 EMBEDDED LINUX
4133 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4134 M:      Matt Mackall <mpm@selenic.com>
4135 M:      David Woodhouse <dwmw2@infradead.org>
4136 L:      linux-embedded@vger.kernel.org
4137 S:      Maintained
4138
4139 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4140 M:      James Smart <james.smart@avagotech.com>
4141 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4142 L:      linux-scsi@vger.kernel.org
4143 W:      http://www.avagotech.com
4144 S:      Supported
4145 F:      drivers/scsi/lpfc/
4146
4147 ENE CB710 FLASH CARD READER DRIVER
4148 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4149 S:      Maintained
4150 F:      drivers/misc/cb710/
4151 F:      drivers/mmc/host/cb710-mmc.*
4152 F:      include/linux/cb710.h
4153
4154 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4155 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4156 S:      Maintained
4157 F:      drivers/media/rc/ene_ir.*
4158
4159 ENHANCED ERROR HANDLING (EEH)
4160 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4161 L:      linuxppc-dev@lists.ozlabs.org
4162 S:      Supported
4163 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4164 F:      arch/powerpc/kernel/eeh*.c
4165
4166 EPSON S1D13XXX FRAMEBUFFER DRIVER
4167 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4168 S:      Maintained
4169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4170 F:      drivers/video/fbdev/s1d13xxxfb.c
4171 F:      include/video/s1d13xxxfb.h
4172
4173 ET131X NETWORK DRIVER
4174 M:      Mark Einon <mark.einon@gmail.com>
4175 S:      Odd Fixes
4176 F:      drivers/net/ethernet/agere/
4177
4178 ETHERNET BRIDGE
4179 M:      Stephen Hemminger <stephen@networkplumber.org>
4180 L:      bridge@lists.linux-foundation.org
4181 L:      netdev@vger.kernel.org
4182 W:      http://www.linuxfoundation.org/en/Net:Bridge
4183 S:      Maintained
4184 F:      include/linux/netfilter_bridge/
4185 F:      net/bridge/
4186
4187 ETHERNET PHY LIBRARY
4188 M:      Florian Fainelli <f.fainelli@gmail.com>
4189 L:      netdev@vger.kernel.org
4190 S:      Maintained
4191 F:      include/linux/phy.h
4192 F:      include/linux/phy_fixed.h
4193 F:      drivers/net/phy/
4194 F:      Documentation/networking/phy.txt
4195 F:      drivers/of/of_mdio.c
4196 F:      drivers/of/of_net.c
4197
4198 EXT2 FILE SYSTEM
4199 M:      Jan Kara <jack@suse.com>
4200 L:      linux-ext4@vger.kernel.org
4201 S:      Maintained
4202 F:      Documentation/filesystems/ext2.txt
4203 F:      fs/ext2/
4204 F:      include/linux/ext2*
4205
4206 EXT4 FILE SYSTEM
4207 M:      "Theodore Ts'o" <tytso@mit.edu>
4208 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4209 L:      linux-ext4@vger.kernel.org
4210 W:      http://ext4.wiki.kernel.org
4211 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4212 S:      Maintained
4213 F:      Documentation/filesystems/ext4.txt
4214 F:      fs/ext4/
4215
4216 Extended Verification Module (EVM)
4217 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4218 L:      linux-ima-devel@lists.sourceforge.net
4219 L:      linux-security-module@vger.kernel.org
4220 S:      Supported
4221 F:      security/integrity/evm/
4222
4223 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4224 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4225 M:      Chanwoo Choi <cw00.choi@samsung.com>
4226 L:      linux-kernel@vger.kernel.org
4227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4228 S:      Maintained
4229 F:      drivers/extcon/
4230 F:      include/linux/extcon/
4231 F:      include/linux/extcon.h
4232 F:      Documentation/extcon/
4233 F:      Documentation/devicetree/bindings/extcon/
4234
4235 EXYNOS DP DRIVER
4236 M:      Jingoo Han <jingoohan1@gmail.com>
4237 L:      dri-devel@lists.freedesktop.org
4238 S:      Maintained
4239 F:      drivers/gpu/drm/exynos/exynos_dp*
4240
4241 EXYNOS MIPI DISPLAY DRIVERS
4242 M:      Inki Dae <inki.dae@samsung.com>
4243 M:      Donghwa Lee <dh09.lee@samsung.com>
4244 M:      Kyungmin Park <kyungmin.park@samsung.com>
4245 L:      linux-fbdev@vger.kernel.org
4246 S:      Maintained
4247 F:      drivers/video/fbdev/exynos/exynos_mipi*
4248 F:      include/video/exynos_mipi*
4249
4250 F71805F HARDWARE MONITORING DRIVER
4251 M:      Jean Delvare <jdelvare@suse.com>
4252 L:      lm-sensors@lm-sensors.org
4253 S:      Maintained
4254 F:      Documentation/hwmon/f71805f
4255 F:      drivers/hwmon/f71805f.c
4256
4257 FC0011 TUNER DRIVER
4258 M:      Michael Buesch <m@bues.ch>
4259 L:      linux-media@vger.kernel.org
4260 S:      Maintained
4261 F:      drivers/media/tuners/fc0011.h
4262 F:      drivers/media/tuners/fc0011.c
4263
4264 FC2580 MEDIA DRIVER
4265 M:      Antti Palosaari <crope@iki.fi>
4266 L:      linux-media@vger.kernel.org
4267 W:      http://linuxtv.org/
4268 W:      http://palosaari.fi/linux/
4269 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4270 T:      git git://linuxtv.org/anttip/media_tree.git
4271 S:      Maintained
4272 F:      drivers/media/tuners/fc2580*
4273
4274 FANOTIFY
4275 M:      Eric Paris <eparis@redhat.com>
4276 S:      Maintained
4277 F:      fs/notify/fanotify/
4278 F:      include/linux/fanotify.h
4279 F:      include/uapi/linux/fanotify.h
4280
4281 FARSYNC SYNCHRONOUS DRIVER
4282 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4283 W:      http://www.farsite.co.uk/
4284 S:      Supported
4285 F:      drivers/net/wan/farsync.*
4286
4287 FAULT INJECTION SUPPORT
4288 M:      Akinobu Mita <akinobu.mita@gmail.com>
4289 S:      Supported
4290 F:      Documentation/fault-injection/
4291 F:      lib/fault-inject.c
4292
4293 FBTFT Framebuffer drivers
4294 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4295 M:      Noralf Trønnes <noralf@tronnes.org>
4296 S:      Maintained
4297 F:      drivers/staging/fbtft/
4298
4299 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4300 M:      Vasu Dev <vasu.dev@intel.com>
4301 L:      fcoe-devel@open-fcoe.org
4302 W:      www.Open-FCoE.org
4303 S:      Supported
4304 F:      drivers/scsi/libfc/
4305 F:      drivers/scsi/fcoe/
4306 F:      include/scsi/fc/
4307 F:      include/scsi/libfc.h
4308 F:      include/scsi/libfcoe.h
4309 F:      include/uapi/scsi/fc/
4310
4311 FILE LOCKING (flock() and fcntl()/lockf())
4312 M:      Jeff Layton <jlayton@poochiereds.net>
4313 M:      "J. Bruce Fields" <bfields@fieldses.org>
4314 L:      linux-fsdevel@vger.kernel.org
4315 S:      Maintained
4316 F:      include/linux/fcntl.h
4317 F:      include/linux/fs.h
4318 F:      include/uapi/linux/fcntl.h
4319 F:      include/uapi/linux/fs.h
4320 F:      fs/fcntl.c
4321 F:      fs/locks.c
4322
4323 FILESYSTEMS (VFS and infrastructure)
4324 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4325 L:      linux-fsdevel@vger.kernel.org
4326 S:      Maintained
4327 F:      fs/*
4328
4329 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4330 M:      Riku Voipio <riku.voipio@iki.fi>
4331 L:      lm-sensors@lm-sensors.org
4332 S:      Maintained
4333 F:      drivers/hwmon/f75375s.c
4334 F:      include/linux/f75375s.h
4335
4336 FIREWIRE AUDIO DRIVERS
4337 M:      Clemens Ladisch <clemens@ladisch.de>
4338 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4339 T:      git git://git.alsa-project.org/alsa-kernel.git
4340 S:      Maintained
4341 F:      sound/firewire/
4342
4343 FIREWIRE MEDIA DRIVERS (firedtv)
4344 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4345 L:      linux-media@vger.kernel.org
4346 L:      linux1394-devel@lists.sourceforge.net
4347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4348 S:      Maintained
4349 F:      drivers/media/firewire/
4350
4351 FIREWIRE SBP-2 TARGET
4352 M:      Chris Boot <bootc@bootc.net>
4353 L:      linux-scsi@vger.kernel.org
4354 L:      target-devel@vger.kernel.org
4355 L:      linux1394-devel@lists.sourceforge.net
4356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4357 S:      Maintained
4358 F:      drivers/target/sbp/
4359
4360 FIREWIRE SUBSYSTEM
4361 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4362 L:      linux1394-devel@lists.sourceforge.net
4363 W:      http://ieee1394.wiki.kernel.org/
4364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4365 S:      Maintained
4366 F:      drivers/firewire/
4367 F:      include/linux/firewire.h
4368 F:      include/uapi/linux/firewire*.h
4369 F:      tools/firewire/
4370
4371 FIRMWARE LOADER (request_firmware)
4372 M:      Ming Lei <ming.lei@canonical.com>
4373 L:      linux-kernel@vger.kernel.org
4374 S:      Maintained
4375 F:      Documentation/firmware_class/
4376 F:      drivers/base/firmware*.c
4377 F:      include/linux/firmware.h
4378
4379 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4380 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4381 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4382 S:      Maintained
4383 F:      drivers/block/rsxx/
4384
4385 FLOPPY DRIVER
4386 M:      Jiri Kosina <jikos@kernel.org>
4387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4388 S:      Odd fixes
4389 F:      drivers/block/floppy.c
4390
4391 FMC SUBSYSTEM
4392 M:      Alessandro Rubini <rubini@gnudd.com>
4393 W:      http://www.ohwr.org/projects/fmc-bus
4394 S:      Supported
4395 F:      drivers/fmc/
4396 F:      include/linux/fmc*.h
4397 F:      include/linux/ipmi-fru.h
4398 K:      fmc_d.*register
4399
4400 FPGA MANAGER FRAMEWORK
4401 M:      Alan Tull <atull@opensource.altera.com>
4402 S:      Maintained
4403 F:      drivers/fpga/
4404 F:      include/linux/fpga/fpga-mgr.h
4405 W:      http://www.rocketboards.org
4406
4407 FPU EMULATOR
4408 M:      Bill Metzenthen <billm@melbpc.org.au>
4409 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4410 S:      Maintained
4411 F:      arch/x86/math-emu/
4412
4413 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4414 L:      netdev@vger.kernel.org
4415 S:      Orphan
4416 F:      drivers/net/wan/dlci.c
4417 F:      drivers/net/wan/sdla.c
4418
4419 FRAMEBUFFER LAYER
4420 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4421 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4422 L:      linux-fbdev@vger.kernel.org
4423 W:      http://linux-fbdev.sourceforge.net/
4424 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4426 S:      Maintained
4427 F:      Documentation/fb/
4428 F:      drivers/video/
4429 F:      include/video/
4430 F:      include/linux/fb.h
4431 F:      include/uapi/video/
4432 F:      include/uapi/linux/fb.h
4433
4434 FREESCALE DIU FRAMEBUFFER DRIVER
4435 M:      Timur Tabi <timur@tabi.org>
4436 L:      linux-fbdev@vger.kernel.org
4437 S:      Maintained
4438 F:      drivers/video/fbdev/fsl-diu-fb.*
4439
4440 FREESCALE DMA DRIVER
4441 M:      Li Yang <leoli@freescale.com>
4442 M:      Zhang Wei <zw@zh-kernel.org>
4443 L:      linuxppc-dev@lists.ozlabs.org
4444 S:      Maintained
4445 F:      drivers/dma/fsldma.*
4446
4447 FREESCALE I2C CPM DRIVER
4448 M:      Jochen Friedrich <jochen@scram.de>
4449 L:      linuxppc-dev@lists.ozlabs.org
4450 L:      linux-i2c@vger.kernel.org
4451 S:      Maintained
4452 F:      drivers/i2c/busses/i2c-cpm.c
4453
4454 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4455 M:      Sascha Hauer <kernel@pengutronix.de>
4456 L:      linux-fbdev@vger.kernel.org
4457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4458 S:      Maintained
4459 F:      include/linux/platform_data/video-imxfb.h
4460 F:      drivers/video/fbdev/imxfb.c
4461
4462 FREESCALE QUAD SPI DRIVER
4463 M:      Han Xu <han.xu@freescale.com>
4464 L:      linux-mtd@lists.infradead.org
4465 S:      Maintained
4466 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4467
4468 FREESCALE SOC FS_ENET DRIVER
4469 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4470 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4471 L:      linuxppc-dev@lists.ozlabs.org
4472 L:      netdev@vger.kernel.org
4473 S:      Maintained
4474 F:      drivers/net/ethernet/freescale/fs_enet/
4475 F:      include/linux/fs_enet_pd.h
4476
4477 FREESCALE QUICC ENGINE LIBRARY
4478 L:      linuxppc-dev@lists.ozlabs.org
4479 S:      Orphan
4480 F:      arch/powerpc/sysdev/qe_lib/
4481 F:      arch/powerpc/include/asm/*qe.h
4482
4483 FREESCALE USB PERIPHERAL DRIVERS
4484 M:      Li Yang <leoli@freescale.com>
4485 L:      linux-usb@vger.kernel.org
4486 L:      linuxppc-dev@lists.ozlabs.org
4487 S:      Maintained
4488 F:      drivers/usb/gadget/udc/fsl*
4489
4490 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4491 M:      Li Yang <leoli@freescale.com>
4492 L:      netdev@vger.kernel.org
4493 L:      linuxppc-dev@lists.ozlabs.org
4494 S:      Maintained
4495 F:      drivers/net/ethernet/freescale/ucc_geth*
4496
4497 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4498 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4499 L:      netdev@vger.kernel.org
4500 S:      Maintained
4501 F:      drivers/net/ethernet/freescale/gianfar*
4502 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4503 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4504
4505 FREESCALE QUICC ENGINE UCC UART DRIVER
4506 M:      Timur Tabi <timur@tabi.org>
4507 L:      linuxppc-dev@lists.ozlabs.org
4508 S:      Maintained
4509 F:      drivers/tty/serial/ucc_uart.c
4510
4511 FREESCALE SOC SOUND DRIVERS
4512 M:      Timur Tabi <timur@tabi.org>
4513 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4514 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4515 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4516 L:      linuxppc-dev@lists.ozlabs.org
4517 S:      Maintained
4518 F:      sound/soc/fsl/fsl*
4519 F:      sound/soc/fsl/imx*
4520 F:      sound/soc/fsl/mpc8610_hpcd.c
4521
4522 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4523 M:      "J. German Rivera" <German.Rivera@freescale.com>
4524 L:      linux-kernel@vger.kernel.org
4525 S:      Maintained
4526 F:      drivers/staging/fsl-mc/
4527
4528 FREEVXFS FILESYSTEM
4529 M:      Christoph Hellwig <hch@infradead.org>
4530 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4531 S:      Maintained
4532 F:      fs/freevxfs/
4533
4534 FREEZER
4535 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4536 M:      Pavel Machek <pavel@ucw.cz>
4537 L:      linux-pm@vger.kernel.org
4538 S:      Supported
4539 F:      Documentation/power/freezing-of-tasks.txt
4540 F:      include/linux/freezer.h
4541 F:      kernel/freezer.c
4542
4543 FRONTSWAP API
4544 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4545 L:      linux-kernel@vger.kernel.org
4546 S:      Maintained
4547 F:      mm/frontswap.c
4548 F:      include/linux/frontswap.h
4549
4550 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4551 M:      David Howells <dhowells@redhat.com>
4552 L:      linux-cachefs@redhat.com
4553 S:      Supported
4554 F:      Documentation/filesystems/caching/
4555 F:      fs/fscache/
4556 F:      include/linux/fscache*.h
4557
4558 F2FS FILE SYSTEM
4559 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4560 M:      Changman Lee <cm224.lee@samsung.com>
4561 R:      Chao Yu <chao2.yu@samsung.com>
4562 L:      linux-f2fs-devel@lists.sourceforge.net
4563 W:      http://en.wikipedia.org/wiki/F2FS
4564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4565 S:      Maintained
4566 F:      Documentation/filesystems/f2fs.txt
4567 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4568 F:      fs/f2fs/
4569 F:      include/linux/f2fs_fs.h
4570 F:      include/trace/events/f2fs.h
4571
4572 FUJITSU FR-V (FRV) PORT
4573 M:      David Howells <dhowells@redhat.com>
4574 S:      Maintained
4575 F:      arch/frv/
4576
4577 FUJITSU LAPTOP EXTRAS
4578 M:      Jonathan Woithe <jwoithe@just42.net>
4579 L:      platform-driver-x86@vger.kernel.org
4580 S:      Maintained
4581 F:      drivers/platform/x86/fujitsu-laptop.c
4582
4583 FUJITSU M-5MO LS CAMERA ISP DRIVER
4584 M:      Kyungmin Park <kyungmin.park@samsung.com>
4585 M:      Heungjun Kim <riverful.kim@samsung.com>
4586 L:      linux-media@vger.kernel.org
4587 S:      Maintained
4588 F:      drivers/media/i2c/m5mols/
4589 F:      include/media/m5mols.h
4590
4591 FUJITSU TABLET EXTRAS
4592 M:      Robert Gerlach <khnz@gmx.de>
4593 L:      platform-driver-x86@vger.kernel.org
4594 S:      Maintained
4595 F:      drivers/platform/x86/fujitsu-tablet.c
4596
4597 FUSE: FILESYSTEM IN USERSPACE
4598 M:      Miklos Szeredi <miklos@szeredi.hu>
4599 L:      fuse-devel@lists.sourceforge.net
4600 W:      http://fuse.sourceforge.net/
4601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4602 S:      Maintained
4603 F:      fs/fuse/
4604 F:      include/uapi/linux/fuse.h
4605 F:      Documentation/filesystems/fuse.txt
4606
4607 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4608 M:      Rik Faith <faith@cs.unc.edu>
4609 L:      linux-scsi@vger.kernel.org
4610 S:      Odd Fixes (e.g., new signatures)
4611 F:      drivers/scsi/fdomain.*
4612
4613 GCOV BASED KERNEL PROFILING
4614 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4615 S:      Maintained
4616 F:      kernel/gcov/
4617 F:      Documentation/gcov.txt
4618
4619 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4620 M:      Achim Leubner <achim_leubner@adaptec.com>
4621 L:      linux-scsi@vger.kernel.org
4622 W:      http://www.icp-vortex.com/
4623 S:      Supported
4624 F:      drivers/scsi/gdt*
4625
4626 GDB KERNEL DEBUGGING HELPER SCRIPTS
4627 M:      Jan Kiszka <jan.kiszka@siemens.com>
4628 S:      Supported
4629 F:      scripts/gdb/
4630
4631 GEMTEK FM RADIO RECEIVER DRIVER
4632 M:      Hans Verkuil <hverkuil@xs4all.nl>
4633 L:      linux-media@vger.kernel.org
4634 T:      git git://linuxtv.org/media_tree.git
4635 W:      http://linuxtv.org
4636 S:      Maintained
4637 F:      drivers/media/radio/radio-gemtek*
4638
4639 GENERIC GPIO I2C DRIVER
4640 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4641 S:      Supported
4642 F:      drivers/i2c/busses/i2c-gpio.c
4643 F:      include/linux/i2c-gpio.h
4644
4645 GENERIC GPIO I2C MULTIPLEXER DRIVER
4646 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4647 L:      linux-i2c@vger.kernel.org
4648 S:      Supported
4649 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4650 F:      include/linux/i2c-mux-gpio.h
4651 F:      Documentation/i2c/muxes/i2c-mux-gpio
4652
4653 GENERIC HDLC (WAN) DRIVERS
4654 M:      Krzysztof Halasa <khc@pm.waw.pl>
4655 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4656 S:      Maintained
4657 F:      drivers/net/wan/c101.c
4658 F:      drivers/net/wan/hd6457*
4659 F:      drivers/net/wan/hdlc*
4660 F:      drivers/net/wan/n2.c
4661 F:      drivers/net/wan/pc300too.c
4662 F:      drivers/net/wan/pci200syn.c
4663 F:      drivers/net/wan/wanxl*
4664
4665 GENERIC INCLUDE/ASM HEADER FILES
4666 M:      Arnd Bergmann <arnd@arndb.de>
4667 L:      linux-arch@vger.kernel.org
4668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4669 S:      Maintained
4670 F:      include/asm-generic/
4671 F:      include/uapi/asm-generic/
4672
4673 GENERIC PHY FRAMEWORK
4674 M:      Kishon Vijay Abraham I <kishon@ti.com>
4675 L:      linux-kernel@vger.kernel.org
4676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4677 S:      Supported
4678 F:      drivers/phy/
4679 F:      include/linux/phy/
4680
4681 GENERIC PM DOMAINS
4682 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4683 M:      Kevin Hilman <khilman@kernel.org>
4684 M:      Ulf Hansson <ulf.hansson@linaro.org>
4685 L:      linux-pm@vger.kernel.org
4686 S:      Supported
4687 F:      drivers/base/power/domain*.c
4688 F:      include/linux/pm_domain.h
4689
4690 GENERIC UIO DRIVER FOR PCI DEVICES
4691 M:      "Michael S. Tsirkin" <mst@redhat.com>
4692 L:      kvm@vger.kernel.org
4693 S:      Supported
4694 F:      drivers/uio/uio_pci_generic.c
4695
4696 GET_MAINTAINER SCRIPT
4697 M:      Joe Perches <joe@perches.com>
4698 S:      Maintained
4699 F:      scripts/get_maintainer.pl
4700
4701 GFS2 FILE SYSTEM
4702 M:      Steven Whitehouse <swhiteho@redhat.com>
4703 M:      Bob Peterson <rpeterso@redhat.com>
4704 L:      cluster-devel@redhat.com
4705 W:      http://sources.redhat.com/cluster/
4706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4707 S:      Supported
4708 F:      Documentation/filesystems/gfs2*.txt
4709 F:      fs/gfs2/
4710 F:      include/uapi/linux/gfs2_ondisk.h
4711
4712 GIGASET ISDN DRIVERS
4713 M:      Paul Bolle <pebolle@tiscali.nl>
4714 L:      gigaset307x-common@lists.sourceforge.net
4715 W:      http://gigaset307x.sourceforge.net/
4716 S:      Odd Fixes
4717 F:      Documentation/isdn/README.gigaset
4718 F:      drivers/isdn/gigaset/
4719 F:      include/uapi/linux/gigaset_dev.h
4720
4721 GO7007 MPEG CODEC
4722 M:      Hans Verkuil <hans.verkuil@cisco.com>
4723 L:      linux-media@vger.kernel.org
4724 S:      Maintained
4725 F:      drivers/media/usb/go7007/
4726
4727 GOODIX TOUCHSCREEN
4728 M:      Bastien Nocera <hadess@hadess.net>
4729 L:      linux-input@vger.kernel.org
4730 S:      Maintained
4731 F:      drivers/input/touchscreen/goodix.c
4732
4733 GPIO SUBSYSTEM
4734 M:      Linus Walleij <linus.walleij@linaro.org>
4735 M:      Alexandre Courbot <gnurou@gmail.com>
4736 L:      linux-gpio@vger.kernel.org
4737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4738 S:      Maintained
4739 F:      Documentation/gpio/
4740 F:      drivers/gpio/
4741 F:      include/linux/gpio/
4742 F:      include/linux/gpio.h
4743 F:      include/asm-generic/gpio.h
4744
4745 GRE DEMULTIPLEXER DRIVER
4746 M:      Dmitry Kozlov <xeb@mail.ru>
4747 L:      netdev@vger.kernel.org
4748 S:      Maintained
4749 F:      net/ipv4/gre_demux.c
4750 F:      net/ipv4/gre_offload.c
4751 F:      include/net/gre.h
4752
4753 GRETH 10/100/1G Ethernet MAC device driver
4754 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4755 L:      netdev@vger.kernel.org
4756 S:      Maintained
4757 F:      drivers/net/ethernet/aeroflex/
4758
4759 GSPCA FINEPIX SUBDRIVER
4760 M:      Frank Zago <frank@zago.net>
4761 L:      linux-media@vger.kernel.org
4762 T:      git git://linuxtv.org/media_tree.git
4763 S:      Maintained
4764 F:      drivers/media/usb/gspca/finepix.c
4765
4766 GSPCA GL860 SUBDRIVER
4767 M:      Olivier Lorin <o.lorin@laposte.net>
4768 L:      linux-media@vger.kernel.org
4769 T:      git git://linuxtv.org/media_tree.git
4770 S:      Maintained
4771 F:      drivers/media/usb/gspca/gl860/
4772
4773 GSPCA M5602 SUBDRIVER
4774 M:      Erik Andren <erik.andren@gmail.com>
4775 L:      linux-media@vger.kernel.org
4776 T:      git git://linuxtv.org/media_tree.git
4777 S:      Maintained
4778 F:      drivers/media/usb/gspca/m5602/
4779
4780 GSPCA PAC207 SONIXB SUBDRIVER
4781 M:      Hans de Goede <hdegoede@redhat.com>
4782 L:      linux-media@vger.kernel.org
4783 T:      git git://linuxtv.org/media_tree.git
4784 S:      Maintained
4785 F:      drivers/media/usb/gspca/pac207.c
4786
4787 GSPCA SN9C20X SUBDRIVER
4788 M:      Brian Johnson <brijohn@gmail.com>
4789 L:      linux-media@vger.kernel.org
4790 T:      git git://linuxtv.org/media_tree.git
4791 S:      Maintained
4792 F:      drivers/media/usb/gspca/sn9c20x.c
4793
4794 GSPCA T613 SUBDRIVER
4795 M:      Leandro Costantino <lcostantino@gmail.com>
4796 L:      linux-media@vger.kernel.org
4797 T:      git git://linuxtv.org/media_tree.git
4798 S:      Maintained
4799 F:      drivers/media/usb/gspca/t613.c
4800
4801 GSPCA USB WEBCAM DRIVER
4802 M:      Hans de Goede <hdegoede@redhat.com>
4803 L:      linux-media@vger.kernel.org
4804 T:      git git://linuxtv.org/media_tree.git
4805 S:      Maintained
4806 F:      drivers/media/usb/gspca/
4807
4808 GUID PARTITION TABLE (GPT)
4809 M:      Davidlohr Bueso <dave@stgolabs.net>
4810 L:      linux-efi@vger.kernel.org
4811 S:      Maintained
4812 F:      block/partitions/efi.*
4813
4814 STK1160 USB VIDEO CAPTURE DRIVER
4815 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4816 L:      linux-media@vger.kernel.org
4817 T:      git git://linuxtv.org/media_tree.git
4818 S:      Maintained
4819 F:      drivers/media/usb/stk1160/
4820
4821 H8/300 ARCHITECTURE
4822 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4823 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4824 W:      http://uclinux-h8.sourceforge.jp
4825 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4826 S:      Maintained
4827 F:      arch/h8300/
4828 F:      drivers/clocksource/h8300_*.c
4829 F:      drivers/clk/h8300/
4830 F:      drivers/irqchip/irq-renesas-h8*.c
4831
4832 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4833 M:      Frank Seidel <frank@f-seidel.de>
4834 L:      platform-driver-x86@vger.kernel.org
4835 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4836 S:      Maintained
4837 F:      drivers/platform/x86/hdaps.c
4838
4839 HDPVR USB VIDEO ENCODER DRIVER
4840 M:      Hans Verkuil <hverkuil@xs4all.nl>
4841 L:      linux-media@vger.kernel.org
4842 T:      git git://linuxtv.org/media_tree.git
4843 W:      http://linuxtv.org
4844 S:      Odd Fixes
4845 F:      drivers/media/usb/hdpvr/
4846
4847 HWPOISON MEMORY FAILURE HANDLING
4848 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4849 L:      linux-mm@kvack.org
4850 S:      Maintained
4851 F:      mm/memory-failure.c
4852 F:      mm/hwpoison-inject.c
4853
4854 HYPERVISOR VIRTUAL CONSOLE DRIVER
4855 L:      linuxppc-dev@lists.ozlabs.org
4856 S:      Odd Fixes
4857 F:      drivers/tty/hvc/
4858
4859 HACKRF MEDIA DRIVER
4860 M:      Antti Palosaari <crope@iki.fi>
4861 L:      linux-media@vger.kernel.org
4862 W:      http://linuxtv.org/
4863 W:      http://palosaari.fi/linux/
4864 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4865 T:      git git://linuxtv.org/anttip/media_tree.git
4866 S:      Maintained
4867 F:      drivers/media/usb/hackrf/
4868
4869 HARDWARE MONITORING
4870 M:      Jean Delvare <jdelvare@suse.com>
4871 M:      Guenter Roeck <linux@roeck-us.net>
4872 L:      lm-sensors@lm-sensors.org
4873 W:      http://www.lm-sensors.org/
4874 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4876 S:      Maintained
4877 F:      Documentation/hwmon/
4878 F:      drivers/hwmon/
4879 F:      include/linux/hwmon*.h
4880
4881 HARDWARE RANDOM NUMBER GENERATOR CORE
4882 M:      Matt Mackall <mpm@selenic.com>
4883 M:      Herbert Xu <herbert@gondor.apana.org.au>
4884 L:      linux-crypto@vger.kernel.org
4885 S:      Odd fixes
4886 F:      Documentation/hw_random.txt
4887 F:      drivers/char/hw_random/
4888 F:      include/linux/hw_random.h
4889
4890 HARDWARE SPINLOCK CORE
4891 M:      Ohad Ben-Cohen <ohad@wizery.com>
4892 S:      Maintained
4893 F:      Documentation/hwspinlock.txt
4894 F:      drivers/hwspinlock/hwspinlock_*
4895 F:      include/linux/hwspinlock.h
4896
4897 HARMONY SOUND DRIVER
4898 L:      linux-parisc@vger.kernel.org
4899 S:      Maintained
4900 F:      sound/parisc/harmony.*
4901
4902 HD29L2 MEDIA DRIVER
4903 M:      Antti Palosaari <crope@iki.fi>
4904 L:      linux-media@vger.kernel.org
4905 W:      http://linuxtv.org/
4906 W:      http://palosaari.fi/linux/
4907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4908 T:      git git://linuxtv.org/anttip/media_tree.git
4909 S:      Maintained
4910 F:      drivers/media/dvb-frontends/hd29l2*
4911
4912 HEWLETT-PACKARD SMART2 RAID DRIVER
4913 L:      iss_storagedev@hp.com
4914 S:      Orphan
4915 F:      Documentation/blockdev/cpqarray.txt
4916 F:      drivers/block/cpqarray.*
4917
4918 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4919 M:      Don Brace <don.brace@pmcs.com>
4920 L:      iss_storagedev@hp.com
4921 L:      storagedev@pmcs.com
4922 L:      linux-scsi@vger.kernel.org
4923 S:      Supported
4924 F:      Documentation/scsi/hpsa.txt
4925 F:      drivers/scsi/hpsa*.[ch]
4926 F:      include/linux/cciss*.h
4927 F:      include/uapi/linux/cciss*.h
4928
4929 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4930 M:      Don Brace <don.brace@pmcs.com>
4931 L:      iss_storagedev@hp.com
4932 L:      storagedev@pmcs.com
4933 L:      linux-scsi@vger.kernel.org
4934 S:      Supported
4935 F:      Documentation/blockdev/cciss.txt
4936 F:      drivers/block/cciss*
4937 F:      include/linux/cciss_ioctl.h
4938 F:      include/uapi/linux/cciss_ioctl.h
4939
4940 HFS FILESYSTEM
4941 L:      linux-fsdevel@vger.kernel.org
4942 S:      Orphan
4943 F:      Documentation/filesystems/hfs.txt
4944 F:      fs/hfs/
4945
4946 HFSPLUS FILESYSTEM
4947 L:      linux-fsdevel@vger.kernel.org
4948 S:      Orphan
4949 F:      Documentation/filesystems/hfsplus.txt
4950 F:      fs/hfsplus/
4951
4952 HGA FRAMEBUFFER DRIVER
4953 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4954 L:      linux-nvidia@lists.surfsouth.com
4955 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4956 S:      Maintained
4957 F:      drivers/video/fbdev/hgafb.c
4958
4959 HIBERNATION (aka Software Suspend, aka swsusp)
4960 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4961 M:      Pavel Machek <pavel@ucw.cz>
4962 L:      linux-pm@vger.kernel.org
4963 S:      Supported
4964 F:      arch/x86/power/
4965 F:      drivers/base/power/
4966 F:      kernel/power/
4967 F:      include/linux/suspend.h
4968 F:      include/linux/freezer.h
4969 F:      include/linux/pm.h
4970 F:      arch/*/include/asm/suspend*.h
4971
4972 HID CORE LAYER
4973 M:      Jiri Kosina <jikos@kernel.org>
4974 L:      linux-input@vger.kernel.org
4975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4976 S:      Maintained
4977 F:      drivers/hid/
4978 F:      include/linux/hid*
4979 F:      include/uapi/linux/hid*
4980
4981 HID SENSOR HUB DRIVERS
4982 M:      Jiri Kosina <jikos@kernel.org>
4983 M:      Jonathan Cameron <jic23@kernel.org>
4984 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4985 L:      linux-input@vger.kernel.org
4986 L:      linux-iio@vger.kernel.org
4987 S:      Maintained
4988 F:      Documentation/hid/hid-sensor*
4989 F:      drivers/hid/hid-sensor-*
4990 F:      drivers/iio/*/hid-*
4991 F:      include/linux/hid-sensor-*
4992
4993 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4994 M:      Thomas Gleixner <tglx@linutronix.de>
4995 L:      linux-kernel@vger.kernel.org
4996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4997 S:      Maintained
4998 F:      Documentation/timers/
4999 F:      kernel/time/hrtimer.c
5000 F:      kernel/time/clockevents.c
5001 F:      kernel/time/tick*.*
5002 F:      kernel/time/timer_*.c
5003 F:      include/linux/clockchips.h
5004 F:      include/linux/hrtimer.h
5005
5006 HIGH-SPEED SCC DRIVER FOR AX.25
5007 L:      linux-hams@vger.kernel.org
5008 S:      Orphan
5009 F:      drivers/net/hamradio/dmascc.c
5010 F:      drivers/net/hamradio/scc.c
5011
5012 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5013 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5014 W:      http://www.highpoint-tech.com
5015 S:      Supported
5016 F:      Documentation/scsi/hptiop.txt
5017 F:      drivers/scsi/hptiop.c
5018
5019 HIPPI
5020 M:      Jes Sorensen <jes@trained-monkey.org>
5021 L:      linux-hippi@sunsite.dk
5022 S:      Maintained
5023 F:      include/linux/hippidevice.h
5024 F:      include/uapi/linux/if_hippi.h
5025 F:      net/802/hippi.c
5026 F:      drivers/net/hippi/
5027
5028 HOST AP DRIVER
5029 M:      Jouni Malinen <j@w1.fi>
5030 L:      hostap@shmoo.com (subscribers-only)
5031 L:      linux-wireless@vger.kernel.org
5032 W:      http://hostap.epitest.fi/
5033 S:      Maintained
5034 F:      drivers/net/wireless/hostap/
5035
5036 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5037 L:      platform-driver-x86@vger.kernel.org
5038 S:      Orphan
5039 F:      drivers/platform/x86/tc1100-wmi.c
5040
5041 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5042 M:      Jaroslav Kysela <perex@perex.cz>
5043 S:      Maintained
5044 F:      drivers/net/ethernet/hp/hp100.*
5045
5046 HPET:   High Precision Event Timers driver
5047 M:      Clemens Ladisch <clemens@ladisch.de>
5048 S:      Maintained
5049 F:      Documentation/timers/hpet.txt
5050 F:      drivers/char/hpet.c
5051 F:      include/linux/hpet.h
5052 F:      include/uapi/linux/hpet.h
5053
5054 HPET:   x86
5055 S:      Orphan
5056 F:      arch/x86/kernel/hpet.c
5057 F:      arch/x86/include/asm/hpet.h
5058
5059 HPFS FILESYSTEM
5060 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5061 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5062 S:      Maintained
5063 F:      fs/hpfs/
5064
5065 HSI SUBSYSTEM
5066 M:      Sebastian Reichel <sre@kernel.org>
5067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5068 S:      Maintained
5069 F:      Documentation/ABI/testing/sysfs-bus-hsi
5070 F:      Documentation/hsi.txt
5071 F:      drivers/hsi/
5072 F:      include/linux/hsi/
5073 F:      include/uapi/linux/hsi/
5074
5075 HSO 3G MODEM DRIVER
5076 M:      Jan Dumon <j.dumon@option.com>
5077 W:      http://www.pharscape.org
5078 S:      Maintained
5079 F:      drivers/net/usb/hso.c
5080
5081 HSR NETWORK PROTOCOL
5082 M:      Arvid Brodin <arvid.brodin@alten.se>
5083 L:      netdev@vger.kernel.org
5084 S:      Maintained
5085 F:      net/hsr/
5086
5087 HTCPEN TOUCHSCREEN DRIVER
5088 M:      Pau Oliva Fora <pof@eslack.org>
5089 L:      linux-input@vger.kernel.org
5090 S:      Maintained
5091 F:      drivers/input/touchscreen/htcpen.c
5092
5093 HUGETLB FILESYSTEM
5094 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5095 S:      Maintained
5096 F:      fs/hugetlbfs/
5097
5098 Hyper-V CORE AND DRIVERS
5099 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5100 M:      Haiyang Zhang <haiyangz@microsoft.com>
5101 L:      devel@linuxdriverproject.org
5102 S:      Maintained
5103 F:      arch/x86/include/asm/mshyperv.h
5104 F:      arch/x86/include/uapi/asm/hyperv.h
5105 F:      arch/x86/kernel/cpu/mshyperv.c
5106 F:      drivers/hid/hid-hyperv.c
5107 F:      drivers/hv/
5108 F:      drivers/input/serio/hyperv-keyboard.c
5109 F:      drivers/net/hyperv/
5110 F:      drivers/scsi/storvsc_drv.c
5111 F:      drivers/video/fbdev/hyperv_fb.c
5112 F:      include/linux/hyperv.h
5113 F:      tools/hv/
5114 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5115
5116 I2C OVER PARALLEL PORT
5117 M:      Jean Delvare <jdelvare@suse.com>
5118 L:      linux-i2c@vger.kernel.org
5119 S:      Maintained
5120 F:      Documentation/i2c/busses/i2c-parport
5121 F:      Documentation/i2c/busses/i2c-parport-light
5122 F:      drivers/i2c/busses/i2c-parport.c
5123 F:      drivers/i2c/busses/i2c-parport-light.c
5124
5125 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5126 M:      Jean Delvare <jdelvare@suse.com>
5127 L:      linux-i2c@vger.kernel.org
5128 S:      Maintained
5129 F:      Documentation/i2c/busses/i2c-ali1535
5130 F:      Documentation/i2c/busses/i2c-ali1563
5131 F:      Documentation/i2c/busses/i2c-ali15x3
5132 F:      Documentation/i2c/busses/i2c-amd756
5133 F:      Documentation/i2c/busses/i2c-amd8111
5134 F:      Documentation/i2c/busses/i2c-i801
5135 F:      Documentation/i2c/busses/i2c-nforce2
5136 F:      Documentation/i2c/busses/i2c-piix4
5137 F:      Documentation/i2c/busses/i2c-sis5595
5138 F:      Documentation/i2c/busses/i2c-sis630
5139 F:      Documentation/i2c/busses/i2c-sis96x
5140 F:      Documentation/i2c/busses/i2c-via
5141 F:      Documentation/i2c/busses/i2c-viapro
5142 F:      drivers/i2c/busses/i2c-ali1535.c
5143 F:      drivers/i2c/busses/i2c-ali1563.c
5144 F:      drivers/i2c/busses/i2c-ali15x3.c
5145 F:      drivers/i2c/busses/i2c-amd756.c
5146 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5147 F:      drivers/i2c/busses/i2c-amd8111.c
5148 F:      drivers/i2c/busses/i2c-i801.c
5149 F:      drivers/i2c/busses/i2c-isch.c
5150 F:      drivers/i2c/busses/i2c-nforce2.c
5151 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5152 F:      drivers/i2c/busses/i2c-piix4.c
5153 F:      drivers/i2c/busses/i2c-sis5595.c
5154 F:      drivers/i2c/busses/i2c-sis630.c
5155 F:      drivers/i2c/busses/i2c-sis96x.c
5156 F:      drivers/i2c/busses/i2c-via.c
5157 F:      drivers/i2c/busses/i2c-viapro.c
5158
5159 I2C/SMBUS ISMT DRIVER
5160 M:      Seth Heasley <seth.heasley@intel.com>
5161 M:      Neil Horman <nhorman@tuxdriver.com>
5162 L:      linux-i2c@vger.kernel.org
5163 F:      drivers/i2c/busses/i2c-ismt.c
5164 F:      Documentation/i2c/busses/i2c-ismt
5165
5166 I2C/SMBUS STUB DRIVER
5167 M:      Jean Delvare <jdelvare@suse.com>
5168 L:      linux-i2c@vger.kernel.org
5169 S:      Maintained
5170 F:      drivers/i2c/i2c-stub.c
5171
5172 I2C SUBSYSTEM
5173 M:      Wolfram Sang <wsa@the-dreams.de>
5174 L:      linux-i2c@vger.kernel.org
5175 W:      https://i2c.wiki.kernel.org/
5176 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5178 S:      Maintained
5179 F:      Documentation/devicetree/bindings/i2c/
5180 F:      Documentation/i2c/
5181 F:      drivers/i2c/
5182 F:      drivers/i2c/*/
5183 F:      include/linux/i2c.h
5184 F:      include/linux/i2c-*.h
5185 F:      include/uapi/linux/i2c.h
5186 F:      include/uapi/linux/i2c-*.h
5187
5188 I2C ACPI SUPPORT
5189 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5190 L:      linux-i2c@vger.kernel.org
5191 L:      linux-acpi@vger.kernel.org
5192 S:      Maintained
5193
5194 I2C-TAOS-EVM DRIVER
5195 M:      Jean Delvare <jdelvare@suse.com>
5196 L:      linux-i2c@vger.kernel.org
5197 S:      Maintained
5198 F:      Documentation/i2c/busses/i2c-taos-evm
5199 F:      drivers/i2c/busses/i2c-taos-evm.c
5200
5201 I2C-TINY-USB DRIVER
5202 M:      Till Harbaum <till@harbaum.org>
5203 L:      linux-i2c@vger.kernel.org
5204 W:      http://www.harbaum.org/till/i2c_tiny_usb
5205 S:      Maintained
5206 F:      drivers/i2c/busses/i2c-tiny-usb.c
5207
5208 i386 BOOT CODE
5209 M:      "H. Peter Anvin" <hpa@zytor.com>
5210 S:      Maintained
5211 F:      arch/x86/boot/
5212
5213 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5214 M:      "H. Peter Anvin" <hpa@zytor.com>
5215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5216 S:      Maintained
5217
5218 IA64 (Itanium) PLATFORM
5219 M:      Tony Luck <tony.luck@intel.com>
5220 M:      Fenghua Yu <fenghua.yu@intel.com>
5221 L:      linux-ia64@vger.kernel.org
5222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5223 S:      Maintained
5224 F:      arch/ia64/
5225
5226 IBM Power VMX Cryptographic instructions
5227 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5228 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5229 L:      linux-crypto@vger.kernel.org
5230 S:      Supported
5231 F:      drivers/crypto/vmx/Makefile
5232 F:      drivers/crypto/vmx/Kconfig
5233 F:      drivers/crypto/vmx/vmx.c
5234 F:      drivers/crypto/vmx/aes*
5235 F:      drivers/crypto/vmx/ghash*
5236 F:      drivers/crypto/vmx/ppc-xlate.pl
5237
5238 IBM Power in-Nest Crypto Acceleration
5239 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5240 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5241 L:      linux-crypto@vger.kernel.org
5242 S:      Supported
5243 F:      drivers/crypto/nx/Makefile
5244 F:      drivers/crypto/nx/Kconfig
5245 F:      drivers/crypto/nx/nx-aes*
5246 F:      drivers/crypto/nx/nx-sha*
5247 F:      drivers/crypto/nx/nx.*
5248 F:      drivers/crypto/nx/nx_csbcpb.h
5249 F:      drivers/crypto/nx/nx_debugfs.h
5250
5251 IBM Power 842 compression accelerator
5252 M:      Dan Streetman <ddstreet@ieee.org>
5253 S:      Supported
5254 F:      drivers/crypto/nx/Makefile
5255 F:      drivers/crypto/nx/Kconfig
5256 F:      drivers/crypto/nx/nx-842*
5257 F:      include/linux/sw842.h
5258 F:      crypto/842.c
5259 F:      lib/842/
5260
5261 IBM Power Linux RAID adapter
5262 M:      Brian King <brking@us.ibm.com>
5263 S:      Supported
5264 F:      drivers/scsi/ipr.*
5265
5266 IBM Power Virtual Ethernet Device Driver
5267 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5268 L:      netdev@vger.kernel.org
5269 S:      Supported
5270 F:      drivers/net/ethernet/ibm/ibmveth.*
5271
5272 IBM Power Virtual SCSI Device Drivers
5273 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5274 L:      linux-scsi@vger.kernel.org
5275 S:      Supported
5276 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5277 F:      drivers/scsi/ibmvscsi/viosrp.h
5278
5279 IBM Power Virtual FC Device Drivers
5280 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5281 L:      linux-scsi@vger.kernel.org
5282 S:      Supported
5283 F:      drivers/scsi/ibmvscsi/ibmvfc*
5284
5285 IBM ServeRAID RAID DRIVER
5286 S:      Orphan
5287 F:      drivers/scsi/ips.*
5288
5289 ICH LPC AND GPIO DRIVER
5290 M:      Peter Tyser <ptyser@xes-inc.com>
5291 S:      Maintained
5292 F:      drivers/mfd/lpc_ich.c
5293 F:      drivers/gpio/gpio-ich.c
5294
5295 IDE SUBSYSTEM
5296 M:      "David S. Miller" <davem@davemloft.net>
5297 L:      linux-ide@vger.kernel.org
5298 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5300 S:      Maintained
5301 F:      Documentation/ide/
5302 F:      drivers/ide/
5303 F:      include/linux/ide.h
5304
5305 IDEAPAD LAPTOP EXTRAS DRIVER
5306 M:      Ike Panhc <ike.pan@canonical.com>
5307 L:      platform-driver-x86@vger.kernel.org
5308 W:      http://launchpad.net/ideapad-laptop
5309 S:      Maintained
5310 F:      drivers/platform/x86/ideapad-laptop.c
5311
5312 IDEAPAD LAPTOP SLIDEBAR DRIVER
5313 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5314 L:      linux-input@vger.kernel.org
5315 W:      https://github.com/o2genum/ideapad-slidebar
5316 S:      Maintained
5317 F:      drivers/input/misc/ideapad_slidebar.c
5318
5319 IDE/ATAPI DRIVERS
5320 M:      Borislav Petkov <bp@alien8.de>
5321 L:      linux-ide@vger.kernel.org
5322 S:      Maintained
5323 F:      Documentation/cdrom/ide-cd
5324 F:      drivers/ide/ide-cd*
5325
5326 IDLE-I7300
5327 M:      Andy Henroid <andrew.d.henroid@intel.com>
5328 L:      linux-pm@vger.kernel.org
5329 S:      Supported
5330 F:      drivers/idle/i7300_idle.c
5331
5332 IEEE 802.15.4 SUBSYSTEM
5333 M:      Alexander Aring <alex.aring@gmail.com>
5334 L:      linux-wpan@vger.kernel.org
5335 W:      https://github.com/linux-wpan
5336 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5337 S:      Maintained
5338 F:      net/ieee802154/
5339 F:      net/mac802154/
5340 F:      drivers/net/ieee802154/
5341 F:      include/linux/nl802154.h
5342 F:      include/linux/ieee802154.h
5343 F:      include/net/nl802154.h
5344 F:      include/net/mac802154.h
5345 F:      include/net/af_ieee802154.h
5346 F:      include/net/cfg802154.h
5347 F:      include/net/ieee802154_netdev.h
5348 F:      Documentation/networking/ieee802154.txt
5349
5350 IGORPLUG-USB IR RECEIVER
5351 M:      Sean Young <sean@mess.org>
5352 L:      linux-media@vger.kernel.org
5353 S:      Maintained
5354 F:      drivers/media/rc/igorplugusb.c
5355
5356 IGUANAWORKS USB IR TRANSCEIVER
5357 M:      Sean Young <sean@mess.org>
5358 L:      linux-media@vger.kernel.org
5359 S:      Maintained
5360 F:      drivers/media/rc/iguanair.c
5361
5362 IIO SUBSYSTEM AND DRIVERS
5363 M:      Jonathan Cameron <jic23@kernel.org>
5364 R:      Hartmut Knaack <knaack.h@gmx.de>
5365 R:      Lars-Peter Clausen <lars@metafoo.de>
5366 R:      Peter Meerwald <pmeerw@pmeerw.net>
5367 L:      linux-iio@vger.kernel.org
5368 S:      Maintained
5369 F:      drivers/iio/
5370 F:      drivers/staging/iio/
5371 F:      include/linux/iio/
5372 F:      tools/iio/
5373
5374 IKANOS/ADI EAGLE ADSL USB DRIVER
5375 M:      Matthieu Castet <castet.matthieu@free.fr>
5376 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5377 S:      Maintained
5378 F:      drivers/usb/atm/ueagle-atm.c
5379
5380 INA209 HARDWARE MONITOR DRIVER
5381 M:      Guenter Roeck <linux@roeck-us.net>
5382 L:      lm-sensors@lm-sensors.org
5383 S:      Maintained
5384 F:      Documentation/hwmon/ina209
5385 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5386 F:      drivers/hwmon/ina209.c
5387
5388 INA2XX HARDWARE MONITOR DRIVER
5389 M:      Guenter Roeck <linux@roeck-us.net>
5390 L:      lm-sensors@lm-sensors.org
5391 S:      Maintained
5392 F:      Documentation/hwmon/ina2xx
5393 F:      drivers/hwmon/ina2xx.c
5394 F:      include/linux/platform_data/ina2xx.h
5395
5396 INDUSTRY PACK SUBSYSTEM (IPACK)
5397 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5398 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5399 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5400 L:      industrypack-devel@lists.sourceforge.net
5401 W:      http://industrypack.sourceforge.net
5402 S:      Maintained
5403 F:      drivers/ipack/
5404
5405 INGENIC JZ4780 DMA Driver
5406 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5407 S:      Maintained
5408 F:      drivers/dma/dma-jz4780.c
5409
5410 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5411 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5412 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5413 L:      linux-ima-devel@lists.sourceforge.net
5414 L:      linux-ima-user@lists.sourceforge.net
5415 L:      linux-security-module@vger.kernel.org
5416 S:      Supported
5417 F:      security/integrity/ima/
5418
5419 IMGTEC IR DECODER DRIVER
5420 M:      James Hogan <james.hogan@imgtec.com>
5421 S:      Maintained
5422 F:      drivers/media/rc/img-ir/
5423
5424 IMS TWINTURBO FRAMEBUFFER DRIVER
5425 L:      linux-fbdev@vger.kernel.org
5426 S:      Orphan
5427 F:      drivers/video/fbdev/imsttfb.c
5428
5429 INFINIBAND SUBSYSTEM
5430 M:      Doug Ledford <dledford@redhat.com>
5431 M:      Sean Hefty <sean.hefty@intel.com>
5432 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5433 L:      linux-rdma@vger.kernel.org
5434 W:      http://www.openfabrics.org/
5435 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5437 S:      Supported
5438 F:      Documentation/infiniband/
5439 F:      drivers/infiniband/
5440 F:      drivers/staging/rdma/
5441 F:      include/uapi/linux/if_infiniband.h
5442 F:      include/uapi/rdma/
5443 F:      include/rdma/
5444
5445 INOTIFY
5446 M:      John McCutchan <john@johnmccutchan.com>
5447 M:      Robert Love <rlove@rlove.org>
5448 M:      Eric Paris <eparis@parisplace.org>
5449 S:      Maintained
5450 F:      Documentation/filesystems/inotify.txt
5451 F:      fs/notify/inotify/
5452 F:      include/linux/inotify.h
5453 F:      include/uapi/linux/inotify.h
5454
5455 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5456 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5457 L:      linux-input@vger.kernel.org
5458 Q:      http://patchwork.kernel.org/project/linux-input/list/
5459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5460 S:      Maintained
5461 F:      drivers/input/
5462 F:      include/linux/input.h
5463 F:      include/uapi/linux/input.h
5464 F:      include/linux/input/
5465
5466 INPUT MULTITOUCH (MT) PROTOCOL
5467 M:      Henrik Rydberg <rydberg@bitmath.org>
5468 L:      linux-input@vger.kernel.org
5469 S:      Odd fixes
5470 F:      Documentation/input/multi-touch-protocol.txt
5471 F:      drivers/input/input-mt.c
5472 K:      \b(ABS|SYN)_MT_
5473
5474 INTEL ASoC BDW/HSW DRIVERS
5475 M:      Jie Yang <yang.jie@linux.intel.com>
5476 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5477 S:      Supported
5478 F:      sound/soc/intel/common/sst-dsp*
5479 F:      sound/soc/intel/common/sst-firmware.c
5480 F:      sound/soc/intel/boards/broadwell.c
5481 F:      sound/soc/intel/haswell/
5482
5483 INTEL C600 SERIES SAS CONTROLLER DRIVER
5484 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5485 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5486 L:      linux-scsi@vger.kernel.org
5487 T:      git git://git.code.sf.net/p/intel-sas/isci
5488 S:      Supported
5489 F:      drivers/scsi/isci/
5490
5491 INTEL IDLE DRIVER
5492 M:      Len Brown <lenb@kernel.org>
5493 L:      linux-pm@vger.kernel.org
5494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5495 S:      Supported
5496 F:      drivers/idle/intel_idle.c
5497
5498 INTEL PSTATE DRIVER
5499 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5500 L:      linux-pm@vger.kernel.org
5501 S:      Supported
5502 F:      drivers/cpufreq/intel_pstate.c
5503
5504 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5505 M:      Maik Broemme <mbroemme@plusserver.de>
5506 L:      linux-fbdev@vger.kernel.org
5507 S:      Maintained
5508 F:      Documentation/fb/intelfb.txt
5509 F:      drivers/video/fbdev/intelfb/
5510
5511 INTEL 810/815 FRAMEBUFFER DRIVER
5512 M:      Antonino Daplas <adaplas@gmail.com>
5513 L:      linux-fbdev@vger.kernel.org
5514 S:      Maintained
5515 F:      drivers/video/fbdev/i810/
5516
5517 INTEL MENLOW THERMAL DRIVER
5518 M:      Sujith Thomas <sujith.thomas@intel.com>
5519 L:      platform-driver-x86@vger.kernel.org
5520 W:      https://01.org/linux-acpi
5521 S:      Supported
5522 F:      drivers/platform/x86/intel_menlow.c
5523
5524 INTEL I/OAT DMA DRIVER
5525 M:      Dave Jiang <dave.jiang@intel.com>
5526 R:      Dan Williams <dan.j.williams@intel.com>
5527 L:      dmaengine@vger.kernel.org
5528 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5529 S:      Supported
5530 F:      drivers/dma/ioat*
5531
5532 INTEL IOMMU (VT-d)
5533 M:      David Woodhouse <dwmw2@infradead.org>
5534 L:      iommu@lists.linux-foundation.org
5535 T:      git git://git.infradead.org/iommu-2.6.git
5536 S:      Supported
5537 F:      drivers/iommu/intel-iommu.c
5538 F:      include/linux/intel-iommu.h
5539
5540 INTEL IOP-ADMA DMA DRIVER
5541 R:      Dan Williams <dan.j.williams@intel.com>
5542 S:      Odd fixes
5543 F:      drivers/dma/iop-adma.c
5544
5545 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5546 M:      Krzysztof Halasa <khalasa@piap.pl>
5547 S:      Maintained
5548 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5549 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5550 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5551 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5552 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5553 F:      drivers/net/wan/ixp4xx_hss.c
5554
5555 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5556 M:      Deepak Saxena <dsaxena@plexity.net>
5557 S:      Maintained
5558 F:      drivers/char/hw_random/ixp4xx-rng.c
5559
5560 INTEL ETHERNET DRIVERS
5561 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5562 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5563 R:      Shannon Nelson <shannon.nelson@intel.com>
5564 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5565 R:      Don Skidmore <donald.c.skidmore@intel.com>
5566 R:      Matthew Vick <matthew.vick@intel.com>
5567 R:      John Ronciak <john.ronciak@intel.com>
5568 R:      Mitch Williams <mitch.a.williams@intel.com>
5569 L:      intel-wired-lan@lists.osuosl.org
5570 W:      http://www.intel.com/support/feedback.htm
5571 W:      http://e1000.sourceforge.net/
5572 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5575 S:      Supported
5576 F:      Documentation/networking/e100.txt
5577 F:      Documentation/networking/e1000.txt
5578 F:      Documentation/networking/e1000e.txt
5579 F:      Documentation/networking/igb.txt
5580 F:      Documentation/networking/igbvf.txt
5581 F:      Documentation/networking/ixgb.txt
5582 F:      Documentation/networking/ixgbe.txt
5583 F:      Documentation/networking/ixgbevf.txt
5584 F:      Documentation/networking/i40e.txt
5585 F:      Documentation/networking/i40evf.txt
5586 F:      drivers/net/ethernet/intel/
5587 F:      drivers/net/ethernet/intel/*/
5588
5589 INTEL-MID GPIO DRIVER
5590 M:      David Cohen <david.a.cohen@linux.intel.com>
5591 L:      linux-gpio@vger.kernel.org
5592 S:      Maintained
5593 F:      drivers/gpio/gpio-intel-mid.c
5594
5595 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5596 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5597 L:      linux-wireless@vger.kernel.org
5598 S:      Maintained
5599 F:      Documentation/networking/README.ipw2100
5600 F:      Documentation/networking/README.ipw2200
5601 F:      drivers/net/wireless/ipw2x00/
5602
5603 INTEL(R) TRACE HUB
5604 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5605 S:      Supported
5606 F:      Documentation/trace/intel_th.txt
5607 F:      drivers/hwtracing/intel_th/
5608
5609 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5610 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5611 M:      Gang Wei <gang.wei@intel.com>
5612 M:      Shane Wang <shane.wang@intel.com>
5613 L:      tboot-devel@lists.sourceforge.net
5614 W:      http://tboot.sourceforge.net
5615 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5616 S:      Supported
5617 F:      Documentation/intel_txt.txt
5618 F:      include/linux/tboot.h
5619 F:      arch/x86/kernel/tboot.c
5620
5621 INTEL WIRELESS WIMAX CONNECTION 2400
5622 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5623 M:      linux-wimax@intel.com
5624 L:      wimax@linuxwimax.org (subscribers-only)
5625 S:      Supported
5626 W:      http://linuxwimax.org
5627 F:      Documentation/wimax/README.i2400m
5628 F:      drivers/net/wimax/i2400m/
5629 F:      include/uapi/linux/wimax/i2400m.h
5630
5631 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5632 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5633 L:      linux-wireless@vger.kernel.org
5634 S:      Supported
5635 F:      drivers/net/wireless/iwlegacy/
5636
5637 INTEL WIRELESS WIFI LINK (iwlwifi)
5638 M:      Johannes Berg <johannes.berg@intel.com>
5639 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5640 M:      Intel Linux Wireless <linuxwifi@intel.com>
5641 L:      linux-wireless@vger.kernel.org
5642 W:      http://intellinuxwireless.org
5643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5644 S:      Supported
5645 F:      drivers/net/wireless/iwlwifi/
5646
5647 INTEL MANAGEMENT ENGINE (mei)
5648 M:      Tomas Winkler <tomas.winkler@intel.com>
5649 L:      linux-kernel@vger.kernel.org
5650 S:      Supported
5651 F:      include/uapi/linux/mei.h
5652 F:      include/linux/mei_cl_bus.h
5653 F:      drivers/misc/mei/*
5654 F:      Documentation/misc-devices/mei/*
5655
5656 INTEL MIC DRIVERS (mic)
5657 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5658 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5659 S:      Supported
5660 W:      https://github.com/sudeepdutt/mic
5661 W:      http://software.intel.com/en-us/mic-developer
5662 F:      include/linux/mic_bus.h
5663 F:      include/linux/scif.h
5664 F:      include/uapi/linux/mic_common.h
5665 F:      include/uapi/linux/mic_ioctl.h
5666 F       include/uapi/linux/scif_ioctl.h
5667 F:      drivers/misc/mic/
5668 F:      drivers/dma/mic_x100_dma.c
5669 F:      drivers/dma/mic_x100_dma.h
5670 F       Documentation/mic/
5671
5672 INTEL PMC IPC DRIVER
5673 M:      Zha Qipeng<qipeng.zha@intel.com>
5674 L:      platform-driver-x86@vger.kernel.org
5675 S:      Maintained
5676 F:      drivers/platform/x86/intel_pmc_ipc.c
5677 F:      arch/x86/include/asm/intel_pmc_ipc.h
5678
5679 IOC3 ETHERNET DRIVER
5680 M:      Ralf Baechle <ralf@linux-mips.org>
5681 L:      linux-mips@linux-mips.org
5682 S:      Maintained
5683 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5684
5685 IOC3 SERIAL DRIVER
5686 M:      Pat Gefre <pfg@sgi.com>
5687 L:      linux-serial@vger.kernel.org
5688 S:      Maintained
5689 F:      drivers/tty/serial/ioc3_serial.c
5690
5691 IOMMU DRIVERS
5692 M:      Joerg Roedel <joro@8bytes.org>
5693 L:      iommu@lists.linux-foundation.org
5694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5695 S:      Maintained
5696 F:      drivers/iommu/
5697
5698 IP MASQUERADING
5699 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5700 S:      Maintained
5701 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5702
5703 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5704 M:      Francois Romieu <romieu@fr.zoreil.com>
5705 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5706 L:      netdev@vger.kernel.org
5707 S:      Maintained
5708 F:      drivers/net/ethernet/icplus/ipg.*
5709
5710 IPATH DRIVER
5711 M:      Mike Marciniszyn <infinipath@intel.com>
5712 L:      linux-rdma@vger.kernel.org
5713 S:      Maintained
5714 F:      drivers/staging/rdma/ipath/
5715
5716 IPMI SUBSYSTEM
5717 M:      Corey Minyard <minyard@acm.org>
5718 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5719 W:      http://openipmi.sourceforge.net/
5720 S:      Supported
5721 F:      Documentation/IPMI.txt
5722 F:      drivers/char/ipmi/
5723 F:      include/linux/ipmi*
5724 F:      include/uapi/linux/ipmi*
5725
5726 QCOM AUDIO (ASoC) DRIVERS
5727 M:      Patrick Lai <plai@codeaurora.org>
5728 M:      Banajit Goswami <bgoswami@codeaurora.org>
5729 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5730 S:      Supported
5731 F:      sound/soc/qcom/
5732
5733 IPS SCSI RAID DRIVER
5734 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5735 L:      linux-scsi@vger.kernel.org
5736 W:      http://www.adaptec.com/
5737 S:      Maintained
5738 F:      drivers/scsi/ips*
5739
5740 IPVS
5741 M:      Wensong Zhang <wensong@linux-vs.org>
5742 M:      Simon Horman <horms@verge.net.au>
5743 M:      Julian Anastasov <ja@ssi.bg>
5744 L:      netdev@vger.kernel.org
5745 L:      lvs-devel@vger.kernel.org
5746 S:      Maintained
5747 F:      Documentation/networking/ipvs-sysctl.txt
5748 F:      include/net/ip_vs.h
5749 F:      include/uapi/linux/ip_vs.h
5750 F:      net/netfilter/ipvs/
5751
5752 IPWIRELESS DRIVER
5753 M:      Jiri Kosina <jikos@kernel.org>
5754 M:      David Sterba <dsterba@suse.com>
5755 S:      Odd Fixes
5756 F:      drivers/tty/ipwireless/
5757
5758 IPX NETWORK LAYER
5759 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5760 L:      netdev@vger.kernel.org
5761 S:      Maintained
5762 F:      include/net/ipx.h
5763 F:      include/uapi/linux/ipx.h
5764 F:      net/ipx/
5765
5766 IRDA SUBSYSTEM
5767 M:      Samuel Ortiz <samuel@sortiz.org>
5768 L:      irda-users@lists.sourceforge.net (subscribers-only)
5769 L:      netdev@vger.kernel.org
5770 W:      http://irda.sourceforge.net/
5771 S:      Maintained
5772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5773 F:      Documentation/networking/irda.txt
5774 F:      drivers/net/irda/
5775 F:      include/net/irda/
5776 F:      net/irda/
5777
5778 IRQ SUBSYSTEM
5779 M:      Thomas Gleixner <tglx@linutronix.de>
5780 L:      linux-kernel@vger.kernel.org
5781 S:      Maintained
5782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5783 F:      kernel/irq/
5784
5785 IRQCHIP DRIVERS
5786 M:      Thomas Gleixner <tglx@linutronix.de>
5787 M:      Jason Cooper <jason@lakedaemon.net>
5788 M:      Marc Zyngier <marc.zyngier@arm.com>
5789 L:      linux-kernel@vger.kernel.org
5790 S:      Maintained
5791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5792 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5793 F:      Documentation/devicetree/bindings/interrupt-controller/
5794 F:      drivers/irqchip/
5795
5796 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5797 M:      Jiang Liu <jiang.liu@linux.intel.com>
5798 M:      Marc Zyngier <marc.zyngier@arm.com>
5799 S:      Maintained
5800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5801 F:      Documentation/IRQ-domain.txt
5802 F:      include/linux/irqdomain.h
5803 F:      kernel/irq/irqdomain.c
5804 F:      kernel/irq/msi.c
5805
5806 ISAPNP
5807 M:      Jaroslav Kysela <perex@perex.cz>
5808 S:      Maintained
5809 F:      Documentation/isapnp.txt
5810 F:      drivers/pnp/isapnp/
5811 F:      include/linux/isapnp.h
5812
5813 ISA RADIO MODULE
5814 M:      Hans Verkuil <hverkuil@xs4all.nl>
5815 L:      linux-media@vger.kernel.org
5816 T:      git git://linuxtv.org/media_tree.git
5817 W:      http://linuxtv.org
5818 S:      Maintained
5819 F:      drivers/media/radio/radio-isa*
5820
5821 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5822 M:      Peter Jones <pjones@redhat.com>
5823 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5824 S:      Maintained
5825 F:      drivers/firmware/iscsi_ibft*
5826
5827 ISCSI
5828 M:      Mike Christie <michaelc@cs.wisc.edu>
5829 L:      open-iscsi@googlegroups.com
5830 W:      www.open-iscsi.org
5831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5832 S:      Maintained
5833 F:      drivers/scsi/*iscsi*
5834 F:      include/scsi/*iscsi*
5835
5836 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5837 M:      Or Gerlitz <ogerlitz@mellanox.com>
5838 M:      Sagi Grimberg <sagig@mellanox.com>
5839 M:      Roi Dayan <roid@mellanox.com>
5840 L:      linux-rdma@vger.kernel.org
5841 S:      Supported
5842 W:      http://www.openfabrics.org
5843 W:      www.open-iscsi.org
5844 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5845 F:      drivers/infiniband/ulp/iser/
5846
5847 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5848 M:      Sagi Grimberg <sagig@mellanox.com>
5849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5850 L:      linux-rdma@vger.kernel.org
5851 L:      target-devel@vger.kernel.org
5852 S:      Supported
5853 W:      http://www.linux-iscsi.org
5854 F:      drivers/infiniband/ulp/isert
5855
5856 ISDN SUBSYSTEM
5857 M:      Karsten Keil <isdn@linux-pingi.de>
5858 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5859 L:      netdev@vger.kernel.org
5860 W:      http://www.isdn4linux.de
5861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5862 S:      Maintained
5863 F:      Documentation/isdn/
5864 F:      drivers/isdn/
5865 F:      include/linux/isdn.h
5866 F:      include/linux/isdn/
5867 F:      include/uapi/linux/isdn.h
5868 F:      include/uapi/linux/isdn/
5869
5870 ISDN SUBSYSTEM (Eicon active card driver)
5871 M:      Armin Schindler <mac@melware.de>
5872 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5873 W:      http://www.melware.de
5874 S:      Maintained
5875 F:      drivers/isdn/hardware/eicon/
5876
5877 IT87 HARDWARE MONITORING DRIVER
5878 M:      Jean Delvare <jdelvare@suse.com>
5879 L:      lm-sensors@lm-sensors.org
5880 S:      Maintained
5881 F:      Documentation/hwmon/it87
5882 F:      drivers/hwmon/it87.c
5883
5884 IT913X MEDIA DRIVER
5885 M:      Antti Palosaari <crope@iki.fi>
5886 L:      linux-media@vger.kernel.org
5887 W:      http://linuxtv.org/
5888 W:      http://palosaari.fi/linux/
5889 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5890 T:      git git://linuxtv.org/anttip/media_tree.git
5891 S:      Maintained
5892 F:      drivers/media/tuners/it913x*
5893
5894 IVTV VIDEO4LINUX DRIVER
5895 M:      Andy Walls <awalls@md.metrocast.net>
5896 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5897 L:      linux-media@vger.kernel.org
5898 T:      git git://linuxtv.org/media_tree.git
5899 W:      http://www.ivtvdriver.org
5900 S:      Maintained
5901 F:      Documentation/video4linux/*.ivtv
5902 F:      drivers/media/pci/ivtv/
5903 F:      include/uapi/linux/ivtv*
5904
5905 IX2505V MEDIA DRIVER
5906 M:      Malcolm Priestley <tvboxspy@gmail.com>
5907 L:      linux-media@vger.kernel.org
5908 W:      http://linuxtv.org/
5909 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5910 S:      Maintained
5911 F:      drivers/media/dvb-frontends/ix2505v*
5912
5913 JC42.4 TEMPERATURE SENSOR DRIVER
5914 M:      Guenter Roeck <linux@roeck-us.net>
5915 L:      lm-sensors@lm-sensors.org
5916 S:      Maintained
5917 F:      drivers/hwmon/jc42.c
5918 F:      Documentation/hwmon/jc42
5919
5920 JFS FILESYSTEM
5921 M:      Dave Kleikamp <shaggy@kernel.org>
5922 L:      jfs-discussion@lists.sourceforge.net
5923 W:      http://jfs.sourceforge.net/
5924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5925 S:      Maintained
5926 F:      Documentation/filesystems/jfs.txt
5927 F:      fs/jfs/
5928
5929 JME NETWORK DRIVER
5930 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5931 L:      netdev@vger.kernel.org
5932 S:      Maintained
5933 F:      drivers/net/ethernet/jme.*
5934
5935 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5936 M:      David Woodhouse <dwmw2@infradead.org>
5937 L:      linux-mtd@lists.infradead.org
5938 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5939 S:      Maintained
5940 F:      fs/jffs2/
5941 F:      include/uapi/linux/jffs2.h
5942
5943 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5944 M:      "Theodore Ts'o" <tytso@mit.edu>
5945 M:      Jan Kara <jack@suse.com>
5946 L:      linux-ext4@vger.kernel.org
5947 S:      Maintained
5948 F:      fs/jbd2/
5949 F:      include/linux/jbd2.h
5950
5951 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5952 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5953 L:      linux-media@vger.kernel.org
5954 S:      Maintained
5955 F:      drivers/media/platform/rcar_jpu.c
5956
5957 JSM Neo PCI based serial card
5958 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5959 L:      linux-serial@vger.kernel.org
5960 S:      Maintained
5961 F:      drivers/tty/serial/jsm/
5962
5963 K10TEMP HARDWARE MONITORING DRIVER
5964 M:      Clemens Ladisch <clemens@ladisch.de>
5965 L:      lm-sensors@lm-sensors.org
5966 S:      Maintained
5967 F:      Documentation/hwmon/k10temp
5968 F:      drivers/hwmon/k10temp.c
5969
5970 K8TEMP HARDWARE MONITORING DRIVER
5971 M:      Rudolf Marek <r.marek@assembler.cz>
5972 L:      lm-sensors@lm-sensors.org
5973 S:      Maintained
5974 F:      Documentation/hwmon/k8temp
5975 F:      drivers/hwmon/k8temp.c
5976
5977 KCONFIG
5978 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5979 L:      linux-kbuild@vger.kernel.org
5980 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5981 S:      Maintained
5982 F:      Documentation/kbuild/kconfig-language.txt
5983 F:      scripts/kconfig/
5984
5985 KDUMP
5986 M:      Vivek Goyal <vgoyal@redhat.com>
5987 M:      Haren Myneni <hbabu@us.ibm.com>
5988 L:      kexec@lists.infradead.org
5989 W:      http://lse.sourceforge.net/kdump/
5990 S:      Maintained
5991 F:      Documentation/kdump/
5992
5993 KEENE FM RADIO TRANSMITTER DRIVER
5994 M:      Hans Verkuil <hverkuil@xs4all.nl>
5995 L:      linux-media@vger.kernel.org
5996 T:      git git://linuxtv.org/media_tree.git
5997 W:      http://linuxtv.org
5998 S:      Maintained
5999 F:      drivers/media/radio/radio-keene*
6000
6001 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6002 M:      Ian Kent <raven@themaw.net>
6003 L:      autofs@vger.kernel.org
6004 S:      Maintained
6005 F:      fs/autofs4/
6006
6007 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6008 M:      Michal Marek <mmarek@suse.com>
6009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6011 L:      linux-kbuild@vger.kernel.org
6012 S:      Maintained
6013 F:      Documentation/kbuild/
6014 F:      Makefile
6015 F:      scripts/Makefile.*
6016 F:      scripts/basic/
6017 F:      scripts/mk*
6018 F:      scripts/package/
6019
6020 KERNEL JANITORS
6021 L:      kernel-janitors@vger.kernel.org
6022 W:      http://kernelnewbies.org/KernelJanitors
6023 S:      Odd Fixes
6024
6025 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6026 M:      "J. Bruce Fields" <bfields@fieldses.org>
6027 M:      Jeff Layton <jlayton@poochiereds.net>
6028 L:      linux-nfs@vger.kernel.org
6029 W:      http://nfs.sourceforge.net/
6030 S:      Supported
6031 F:      fs/nfsd/
6032 F:      include/uapi/linux/nfsd/
6033 F:      fs/lockd/
6034 F:      fs/nfs_common/
6035 F:      net/sunrpc/
6036 F:      include/linux/lockd/
6037 F:      include/linux/sunrpc/
6038 F:      include/uapi/linux/sunrpc/
6039
6040 KERNEL SELFTEST FRAMEWORK
6041 M:      Shuah Khan <shuahkh@osg.samsung.com>
6042 L:      linux-api@vger.kernel.org
6043 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6044 S:      Maintained
6045 F:      tools/testing/selftests
6046
6047 KERNEL VIRTUAL MACHINE (KVM)
6048 M:      Gleb Natapov <gleb@kernel.org>
6049 M:      Paolo Bonzini <pbonzini@redhat.com>
6050 L:      kvm@vger.kernel.org
6051 W:      http://www.linux-kvm.org
6052 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6053 S:      Supported
6054 F:      Documentation/*/kvm*.txt
6055 F:      Documentation/virtual/kvm/
6056 F:      arch/*/kvm/
6057 F:      arch/x86/kernel/kvm.c
6058 F:      arch/x86/kernel/kvmclock.c
6059 F:      arch/*/include/asm/kvm*
6060 F:      include/linux/kvm*
6061 F:      include/uapi/linux/kvm*
6062 F:      virt/kvm/
6063
6064 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6065 M:      Joerg Roedel <joro@8bytes.org>
6066 L:      kvm@vger.kernel.org
6067 W:      http://www.linux-kvm.org/
6068 S:      Maintained
6069 F:      arch/x86/include/asm/svm.h
6070 F:      arch/x86/kvm/svm.c
6071
6072 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6073 M:      Alexander Graf <agraf@suse.com>
6074 L:      kvm-ppc@vger.kernel.org
6075 W:      http://www.linux-kvm.org/
6076 T:      git git://github.com/agraf/linux-2.6.git
6077 S:      Supported
6078 F:      arch/powerpc/include/asm/kvm*
6079 F:      arch/powerpc/kvm/
6080
6081 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6082 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6083 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6084 L:      linux-s390@vger.kernel.org
6085 W:      http://www.ibm.com/developerworks/linux/linux390/
6086 S:      Supported
6087 F:      Documentation/s390/kvm.txt
6088 F:      arch/s390/include/asm/kvm*
6089 F:      arch/s390/kvm/
6090
6091 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6092 M:      Christoffer Dall <christoffer.dall@linaro.org>
6093 M:      Marc Zyngier <marc.zyngier@arm.com>
6094 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6095 L:      kvmarm@lists.cs.columbia.edu
6096 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6097 S:      Supported
6098 F:      arch/arm/include/uapi/asm/kvm*
6099 F:      arch/arm/include/asm/kvm*
6100 F:      arch/arm/kvm/
6101 F:      virt/kvm/arm/
6102 F:      include/kvm/arm_*
6103
6104 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6105 M:      Christoffer Dall <christoffer.dall@linaro.org>
6106 M:      Marc Zyngier <marc.zyngier@arm.com>
6107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6108 L:      kvmarm@lists.cs.columbia.edu
6109 S:      Maintained
6110 F:      arch/arm64/include/uapi/asm/kvm*
6111 F:      arch/arm64/include/asm/kvm*
6112 F:      arch/arm64/kvm/
6113
6114 KEXEC
6115 M:      Eric Biederman <ebiederm@xmission.com>
6116 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6117 L:      kexec@lists.infradead.org
6118 S:      Maintained
6119 F:      include/linux/kexec.h
6120 F:      include/uapi/linux/kexec.h
6121 F:      kernel/kexec.c
6122
6123 KEYS/KEYRINGS:
6124 M:      David Howells <dhowells@redhat.com>
6125 L:      keyrings@vger.kernel.org
6126 S:      Maintained
6127 F:      Documentation/security/keys.txt
6128 F:      include/linux/key.h
6129 F:      include/linux/key-type.h
6130 F:      include/keys/
6131 F:      security/keys/
6132
6133 KEYS-TRUSTED
6134 M:      David Safford <safford@us.ibm.com>
6135 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6136 L:      linux-security-module@vger.kernel.org
6137 L:      keyrings@vger.kernel.org
6138 S:      Supported
6139 F:      Documentation/security/keys-trusted-encrypted.txt
6140 F:      include/keys/trusted-type.h
6141 F:      security/keys/trusted.c
6142 F:      security/keys/trusted.h
6143
6144 KEYS-ENCRYPTED
6145 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6146 M:      David Safford <safford@us.ibm.com>
6147 L:      linux-security-module@vger.kernel.org
6148 L:      keyrings@vger.kernel.org
6149 S:      Supported
6150 F:      Documentation/security/keys-trusted-encrypted.txt
6151 F:      include/keys/encrypted-type.h
6152 F:      security/keys/encrypted-keys/
6153
6154 KGDB / KDB /debug_core
6155 M:      Jason Wessel <jason.wessel@windriver.com>
6156 W:      http://kgdb.wiki.kernel.org/
6157 L:      kgdb-bugreport@lists.sourceforge.net
6158 S:      Maintained
6159 F:      Documentation/DocBook/kgdb.tmpl
6160 F:      drivers/misc/kgdbts.c
6161 F:      drivers/tty/serial/kgdboc.c
6162 F:      include/linux/kdb.h
6163 F:      include/linux/kgdb.h
6164 F:      kernel/debug/
6165
6166 KMEMCHECK
6167 M:      Vegard Nossum <vegardno@ifi.uio.no>
6168 M:      Pekka Enberg <penberg@kernel.org>
6169 S:      Maintained
6170 F:      Documentation/kmemcheck.txt
6171 F:      arch/x86/include/asm/kmemcheck.h
6172 F:      arch/x86/mm/kmemcheck/
6173 F:      include/linux/kmemcheck.h
6174 F:      mm/kmemcheck.c
6175
6176 KMEMLEAK
6177 M:      Catalin Marinas <catalin.marinas@arm.com>
6178 S:      Maintained
6179 F:      Documentation/kmemleak.txt
6180 F:      include/linux/kmemleak.h
6181 F:      mm/kmemleak.c
6182 F:      mm/kmemleak-test.c
6183
6184 KPROBES
6185 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6186 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6187 M:      "David S. Miller" <davem@davemloft.net>
6188 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6189 S:      Maintained
6190 F:      Documentation/kprobes.txt
6191 F:      include/linux/kprobes.h
6192 F:      kernel/kprobes.c
6193
6194 KS0108 LCD CONTROLLER DRIVER
6195 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6196 W:      http://miguelojeda.es/auxdisplay.htm
6197 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6198 S:      Maintained
6199 F:      Documentation/auxdisplay/ks0108
6200 F:      drivers/auxdisplay/ks0108.c
6201 F:      include/linux/ks0108.h
6202
6203 L3MDEV
6204 M:      David Ahern <dsa@cumulusnetworks.com>
6205 L:      netdev@vger.kernel.org
6206 S:      Maintained
6207 F:      net/l3mdev
6208 F:      include/net/l3mdev.h
6209
6210 LAPB module
6211 L:      linux-x25@vger.kernel.org
6212 S:      Orphan
6213 F:      Documentation/networking/lapb-module.txt
6214 F:      include/*/lapb.h
6215 F:      net/lapb/
6216
6217 LASI 53c700 driver for PARISC
6218 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6219 L:      linux-scsi@vger.kernel.org
6220 S:      Maintained
6221 F:      Documentation/scsi/53c700.txt
6222 F:      drivers/scsi/53c700*
6223
6224 LED SUBSYSTEM
6225 M:      Richard Purdie <rpurdie@rpsys.net>
6226 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6227 L:      linux-leds@vger.kernel.org
6228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6229 S:      Maintained
6230 F:      drivers/leds/
6231 F:      include/linux/leds.h
6232
6233 LEGACY EEPROM DRIVER
6234 M:      Jean Delvare <jdelvare@suse.com>
6235 S:      Maintained
6236 F:      Documentation/misc-devices/eeprom
6237 F:      drivers/misc/eeprom/eeprom.c
6238
6239 LEGO USB Tower driver
6240 M:      Juergen Stuber <starblue@users.sourceforge.net>
6241 L:      legousb-devel@lists.sourceforge.net
6242 W:      http://legousb.sourceforge.net/
6243 S:      Maintained
6244 F:      drivers/usb/misc/legousbtower.c
6245
6246 LG2160 MEDIA DRIVER
6247 M:      Michael Krufky <mkrufky@linuxtv.org>
6248 L:      linux-media@vger.kernel.org
6249 W:      http://linuxtv.org/
6250 W:      http://github.com/mkrufky
6251 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6252 T:      git git://linuxtv.org/mkrufky/tuners.git
6253 S:      Maintained
6254 F:      drivers/media/dvb-frontends/lg2160.*
6255
6256 LGDT3305 MEDIA DRIVER
6257 M:      Michael Krufky <mkrufky@linuxtv.org>
6258 L:      linux-media@vger.kernel.org
6259 W:      http://linuxtv.org/
6260 W:      http://github.com/mkrufky
6261 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6262 T:      git git://linuxtv.org/mkrufky/tuners.git
6263 S:      Maintained
6264 F:      drivers/media/dvb-frontends/lgdt3305.*
6265
6266 LGUEST
6267 M:      Rusty Russell <rusty@rustcorp.com.au>
6268 L:      lguest@lists.ozlabs.org
6269 W:      http://lguest.ozlabs.org/
6270 S:      Odd Fixes
6271 F:      arch/x86/include/asm/lguest*.h
6272 F:      arch/x86/lguest/
6273 F:      drivers/lguest/
6274 F:      include/linux/lguest*.h
6275 F:      tools/lguest/
6276
6277 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6278 M:      Tejun Heo <tj@kernel.org>
6279 L:      linux-ide@vger.kernel.org
6280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6281 S:      Maintained
6282 F:      drivers/ata/
6283 F:      include/linux/ata.h
6284 F:      include/linux/libata.h
6285
6286 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6287 M:      Viresh Kumar <vireshk@kernel.org>
6288 L:      linux-ide@vger.kernel.org
6289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6290 S:      Maintained
6291 F:      include/linux/pata_arasan_cf_data.h
6292 F:      drivers/ata/pata_arasan_cf.c
6293
6294 LIBATA PATA DRIVERS
6295 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6296 M:      Tejun Heo <tj@kernel.org>
6297 L:      linux-ide@vger.kernel.org
6298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6299 S:      Maintained
6300 F:      drivers/ata/pata_*.c
6301 F:      drivers/ata/ata_generic.c
6302
6303 LIBATA SATA AHCI PLATFORM devices support
6304 M:      Hans de Goede <hdegoede@redhat.com>
6305 M:      Tejun Heo <tj@kernel.org>
6306 L:      linux-ide@vger.kernel.org
6307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6308 S:      Maintained
6309 F:      drivers/ata/ahci_platform.c
6310 F:      drivers/ata/libahci_platform.c
6311 F:      include/linux/ahci_platform.h
6312
6313 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6314 M:      Mikael Pettersson <mikpelinux@gmail.com>
6315 L:      linux-ide@vger.kernel.org
6316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6317 S:      Maintained
6318 F:      drivers/ata/sata_promise.*
6319
6320 LIBLOCKDEP
6321 M:      Sasha Levin <sasha.levin@oracle.com>
6322 S:      Maintained
6323 F:      tools/lib/lockdep/
6324
6325 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6326 M:      Dan Williams <dan.j.williams@intel.com>
6327 L:      linux-nvdimm@lists.01.org
6328 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6329 S:      Supported
6330 F:      drivers/nvdimm/*
6331 F:      include/linux/nd.h
6332 F:      include/linux/libnvdimm.h
6333 F:      include/uapi/linux/ndctl.h
6334
6335 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6336 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6337 L:      linux-nvdimm@lists.01.org
6338 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6339 S:      Supported
6340 F:      drivers/nvdimm/blk.c
6341 F:      drivers/nvdimm/region_devs.c
6342 F:      drivers/acpi/nfit*
6343
6344 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6345 M:      Vishal Verma <vishal.l.verma@intel.com>
6346 L:      linux-nvdimm@lists.01.org
6347 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6348 S:      Supported
6349 F:      drivers/nvdimm/btt*
6350
6351 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6352 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6353 L:      linux-nvdimm@lists.01.org
6354 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6355 S:      Supported
6356 F:      drivers/nvdimm/pmem.c
6357 F:      include/linux/pmem.h
6358 F:      arch/*/include/asm/pmem.h
6359
6360 LIGHTNVM PLATFORM SUPPORT
6361 M:      Matias Bjorling <mb@lightnvm.io>
6362 W:      http://github/OpenChannelSSD
6363 S:      Maintained
6364 F:      drivers/lightnvm/
6365 F:      include/linux/lightnvm.h
6366 F:      include/uapi/linux/lightnvm.h
6367
6368 LINUX FOR IBM pSERIES (RS/6000)
6369 M:      Paul Mackerras <paulus@au.ibm.com>
6370 W:      http://www.ibm.com/linux/ltc/projects/ppc
6371 S:      Supported
6372 F:      arch/powerpc/boot/rs6000.h
6373
6374 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6375 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6376 M:      Paul Mackerras <paulus@samba.org>
6377 M:      Michael Ellerman <mpe@ellerman.id.au>
6378 W:      http://www.penguinppc.org/
6379 L:      linuxppc-dev@lists.ozlabs.org
6380 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6382 S:      Supported
6383 F:      Documentation/powerpc/
6384 F:      arch/powerpc/
6385
6386 LINUX FOR POWER MACINTOSH
6387 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6388 W:      http://www.penguinppc.org/
6389 L:      linuxppc-dev@lists.ozlabs.org
6390 S:      Maintained
6391 F:      arch/powerpc/platforms/powermac/
6392 F:      drivers/macintosh/
6393
6394 LINUX FOR POWERPC EMBEDDED MPC5XXX
6395 M:      Anatolij Gustschin <agust@denx.de>
6396 L:      linuxppc-dev@lists.ozlabs.org
6397 T:      git git://git.denx.de/linux-denx-agust.git
6398 S:      Maintained
6399 F:      arch/powerpc/platforms/512x/
6400 F:      arch/powerpc/platforms/52xx/
6401
6402 LINUX FOR POWERPC EMBEDDED PPC4XX
6403 M:      Alistair Popple <alistair@popple.id.au>
6404 M:      Matt Porter <mporter@kernel.crashing.org>
6405 W:      http://www.penguinppc.org/
6406 L:      linuxppc-dev@lists.ozlabs.org
6407 S:      Maintained
6408 F:      arch/powerpc/platforms/40x/
6409 F:      arch/powerpc/platforms/44x/
6410
6411 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6412 L:      linuxppc-dev@lists.ozlabs.org
6413 S:      Orphan
6414 F:      arch/powerpc/*/*virtex*
6415 F:      arch/powerpc/*/*/*virtex*
6416
6417 LINUX FOR POWERPC EMBEDDED PPC8XX
6418 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6419 W:      http://www.penguinppc.org/
6420 L:      linuxppc-dev@lists.ozlabs.org
6421 S:      Maintained
6422 F:      arch/powerpc/platforms/8xx/
6423
6424 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6425 M:      Scott Wood <scottwood@freescale.com>
6426 M:      Kumar Gala <galak@kernel.crashing.org>
6427 W:      http://www.penguinppc.org/
6428 L:      linuxppc-dev@lists.ozlabs.org
6429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6430 S:      Maintained
6431 F:      arch/powerpc/platforms/83xx/
6432 F:      arch/powerpc/platforms/85xx/
6433
6434 LINUX FOR POWERPC PA SEMI PWRFICIENT
6435 M:      Olof Johansson <olof@lixom.net>
6436 L:      linuxppc-dev@lists.ozlabs.org
6437 S:      Maintained
6438 F:      arch/powerpc/platforms/pasemi/
6439 F:      drivers/*/*pasemi*
6440 F:      drivers/*/*/*pasemi*
6441
6442 LINUX SECURITY MODULE (LSM) FRAMEWORK
6443 M:      Chris Wright <chrisw@sous-sol.org>
6444 L:      linux-security-module@vger.kernel.org
6445 S:      Supported
6446
6447 LIS3LV02D ACCELEROMETER DRIVER
6448 M:      Eric Piel <eric.piel@tremplin-utc.net>
6449 S:      Maintained
6450 F:      Documentation/misc-devices/lis3lv02d
6451 F:      drivers/misc/lis3lv02d/
6452 F:      drivers/platform/x86/hp_accel.c
6453
6454 LIVE PATCHING
6455 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6456 M:      Seth Jennings <sjenning@redhat.com>
6457 M:      Jiri Kosina <jikos@kernel.org>
6458 M:      Vojtech Pavlik <vojtech@suse.com>
6459 S:      Maintained
6460 F:      kernel/livepatch/
6461 F:      include/linux/livepatch.h
6462 F:      arch/x86/include/asm/livepatch.h
6463 F:      arch/x86/kernel/livepatch.c
6464 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6465 F:      samples/livepatch/
6466 L:      live-patching@vger.kernel.org
6467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6468
6469 LLC (802.2)
6470 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6471 S:      Maintained
6472 F:      include/linux/llc.h
6473 F:      include/uapi/linux/llc.h
6474 F:      include/net/llc*
6475 F:      net/llc/
6476
6477 LM73 HARDWARE MONITOR DRIVER
6478 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6479 L:      lm-sensors@lm-sensors.org
6480 S:      Maintained
6481 F:      drivers/hwmon/lm73.c
6482
6483 LM78 HARDWARE MONITOR DRIVER
6484 M:      Jean Delvare <jdelvare@suse.com>
6485 L:      lm-sensors@lm-sensors.org
6486 S:      Maintained
6487 F:      Documentation/hwmon/lm78
6488 F:      drivers/hwmon/lm78.c
6489
6490 LM83 HARDWARE MONITOR DRIVER
6491 M:      Jean Delvare <jdelvare@suse.com>
6492 L:      lm-sensors@lm-sensors.org
6493 S:      Maintained
6494 F:      Documentation/hwmon/lm83
6495 F:      drivers/hwmon/lm83.c
6496
6497 LM90 HARDWARE MONITOR DRIVER
6498 M:      Jean Delvare <jdelvare@suse.com>
6499 L:      lm-sensors@lm-sensors.org
6500 S:      Maintained
6501 F:      Documentation/hwmon/lm90
6502 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6503 F:      drivers/hwmon/lm90.c
6504
6505 LM95234 HARDWARE MONITOR DRIVER
6506 M:      Guenter Roeck <linux@roeck-us.net>
6507 L:      lm-sensors@lm-sensors.org
6508 S:      Maintained
6509 F:      Documentation/hwmon/lm95234
6510 F:      drivers/hwmon/lm95234.c
6511
6512 LME2510 MEDIA DRIVER
6513 M:      Malcolm Priestley <tvboxspy@gmail.com>
6514 L:      linux-media@vger.kernel.org
6515 W:      http://linuxtv.org/
6516 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6517 S:      Maintained
6518 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6519
6520 LOCKDEP AND LOCKSTAT
6521 M:      Peter Zijlstra <peterz@infradead.org>
6522 M:      Ingo Molnar <mingo@redhat.com>
6523 L:      linux-kernel@vger.kernel.org
6524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6525 S:      Maintained
6526 F:      Documentation/locking/lockdep*.txt
6527 F:      Documentation/locking/lockstat.txt
6528 F:      include/linux/lockdep.h
6529 F:      kernel/locking/
6530
6531 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6532 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6533 L:      linux-ntfs-dev@lists.sourceforge.net
6534 W:      http://www.linux-ntfs.org/content/view/19/37/
6535 S:      Maintained
6536 F:      Documentation/ldm.txt
6537 F:      block/partitions/ldm.*
6538
6539 LogFS
6540 M:      Joern Engel <joern@logfs.org>
6541 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6542 L:      logfs@logfs.org
6543 W:      logfs.org
6544 S:      Maintained
6545 F:      fs/logfs/
6546
6547 LPC32XX MACHINE SUPPORT
6548 M:      Roland Stigge <stigge@antcom.de>
6549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6550 S:      Maintained
6551 F:      arch/arm/mach-lpc32xx/
6552
6553 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6554 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6555 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6556 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6557 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6558 L:      MPT-FusionLinux.pdl@avagotech.com
6559 L:      linux-scsi@vger.kernel.org
6560 W:      http://www.lsilogic.com/support
6561 S:      Supported
6562 F:      drivers/message/fusion/
6563 F:      drivers/scsi/mpt2sas/
6564 F:      drivers/scsi/mpt3sas/
6565
6566 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6567 M:      Matthew Wilcox <matthew@wil.cx>
6568 L:      linux-scsi@vger.kernel.org
6569 S:      Maintained
6570 F:      drivers/scsi/sym53c8xx_2/
6571
6572 LTC4261 HARDWARE MONITOR DRIVER
6573 M:      Guenter Roeck <linux@roeck-us.net>
6574 L:      lm-sensors@lm-sensors.org
6575 S:      Maintained
6576 F:      Documentation/hwmon/ltc4261
6577 F:      drivers/hwmon/ltc4261.c
6578
6579 LTP (Linux Test Project)
6580 M:      Mike Frysinger <vapier@gentoo.org>
6581 M:      Cyril Hrubis <chrubis@suse.cz>
6582 M:      Wanlong Gao <wanlong.gao@gmail.com>
6583 M:      Jan Stancek <jstancek@redhat.com>
6584 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6585 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6586 L:      ltp@lists.linux.it (subscribers-only)
6587 W:      http://linux-test-project.github.io/
6588 T:      git git://github.com/linux-test-project/ltp.git
6589 S:      Maintained
6590
6591 M32R ARCHITECTURE
6592 W:      http://www.linux-m32r.org/
6593 S:      Orphan
6594 F:      arch/m32r/
6595
6596 M68K ARCHITECTURE
6597 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6598 L:      linux-m68k@lists.linux-m68k.org
6599 W:      http://www.linux-m68k.org/
6600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6601 S:      Maintained
6602 F:      arch/m68k/
6603 F:      drivers/zorro/
6604
6605 M68K ON APPLE MACINTOSH
6606 M:      Joshua Thompson <funaho@jurai.org>
6607 W:      http://www.mac.linux-m68k.org/
6608 L:      linux-m68k@lists.linux-m68k.org
6609 S:      Maintained
6610 F:      arch/m68k/mac/
6611
6612 M68K ON HP9000/300
6613 M:      Philip Blundell <philb@gnu.org>
6614 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6615 S:      Maintained
6616 F:      arch/m68k/hp300/
6617
6618 M88DS3103 MEDIA DRIVER
6619 M:      Antti Palosaari <crope@iki.fi>
6620 L:      linux-media@vger.kernel.org
6621 W:      http://linuxtv.org/
6622 W:      http://palosaari.fi/linux/
6623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6624 T:      git git://linuxtv.org/anttip/media_tree.git
6625 S:      Maintained
6626 F:      drivers/media/dvb-frontends/m88ds3103*
6627
6628 M88RS2000 MEDIA DRIVER
6629 M:      Malcolm Priestley <tvboxspy@gmail.com>
6630 L:      linux-media@vger.kernel.org
6631 W:      http://linuxtv.org/
6632 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6633 S:      Maintained
6634 F:      drivers/media/dvb-frontends/m88rs2000*
6635
6636 MA901 MASTERKIT USB FM RADIO DRIVER
6637 M:      Alexey Klimov <klimov.linux@gmail.com>
6638 L:      linux-media@vger.kernel.org
6639 T:      git git://linuxtv.org/media_tree.git
6640 S:      Maintained
6641 F:      drivers/media/radio/radio-ma901.c
6642
6643 MAC80211
6644 M:      Johannes Berg <johannes@sipsolutions.net>
6645 L:      linux-wireless@vger.kernel.org
6646 W:      http://wireless.kernel.org/
6647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6649 S:      Maintained
6650 F:      Documentation/networking/mac80211-injection.txt
6651 F:      include/net/mac80211.h
6652 F:      net/mac80211/
6653
6654 MACVLAN DRIVER
6655 M:      Patrick McHardy <kaber@trash.net>
6656 L:      netdev@vger.kernel.org
6657 S:      Maintained
6658 F:      drivers/net/macvlan.c
6659 F:      include/linux/if_macvlan.h
6660
6661 MAILBOX API
6662 M:      Jassi Brar <jassisinghbrar@gmail.com>
6663 L:      linux-kernel@vger.kernel.org
6664 S:      Maintained
6665 F:      drivers/mailbox/
6666 F:      include/linux/mailbox_client.h
6667 F:      include/linux/mailbox_controller.h
6668
6669 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6670 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6671 W:      http://www.kernel.org/doc/man-pages
6672 L:      linux-man@vger.kernel.org
6673 S:      Maintained
6674
6675 MARVELL ARMADA DRM SUPPORT
6676 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6677 S:      Maintained
6678 F:      drivers/gpu/drm/armada/
6679
6680 MARVELL 88E6352 DSA support
6681 M:      Guenter Roeck <linux@roeck-us.net>
6682 S:      Maintained
6683 F:      drivers/net/dsa/mv88e6352.c
6684
6685 MARVELL CRYPTO DRIVER
6686 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6687 M:      Arnaud Ebalard <arno@natisbad.org>
6688 F:      drivers/crypto/marvell/
6689 S:      Maintained
6690 L:      linux-crypto@vger.kernel.org
6691
6692 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6693 M:      Mirko Lindner <mlindner@marvell.com>
6694 M:      Stephen Hemminger <stephen@networkplumber.org>
6695 L:      netdev@vger.kernel.org
6696 S:      Maintained
6697 F:      drivers/net/ethernet/marvell/sk*
6698
6699 MARVELL LIBERTAS WIRELESS DRIVER
6700 L:      libertas-dev@lists.infradead.org
6701 S:      Orphan
6702 F:      drivers/net/wireless/libertas/
6703
6704 MARVELL MV643XX ETHERNET DRIVER
6705 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6706 L:      netdev@vger.kernel.org
6707 S:      Maintained
6708 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6709 F:      include/linux/mv643xx.h
6710
6711 MARVELL MVNETA ETHERNET DRIVER
6712 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6713 L:      netdev@vger.kernel.org
6714 S:      Maintained
6715 F:      drivers/net/ethernet/marvell/mvneta.*
6716
6717 MARVELL MWIFIEX WIRELESS DRIVER
6718 M:      Amitkumar Karwar <akarwar@marvell.com>
6719 M:      Nishant Sarmukadam <nishants@marvell.com>
6720 L:      linux-wireless@vger.kernel.org
6721 S:      Maintained
6722 F:      drivers/net/wireless/mwifiex/
6723
6724 MARVELL MWL8K WIRELESS DRIVER
6725 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6726 L:      linux-wireless@vger.kernel.org
6727 S:      Odd Fixes
6728 F:      drivers/net/wireless/mwl8k.c
6729
6730 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6731 M:      Nicolas Pitre <nico@fluxnic.net>
6732 S:      Odd Fixes
6733 F:      drivers/mmc/host/mvsdio.*
6734
6735 MATROX FRAMEBUFFER DRIVER
6736 L:      linux-fbdev@vger.kernel.org
6737 S:      Orphan
6738 F:      drivers/video/fbdev/matrox/matroxfb_*
6739 F:      include/uapi/linux/matroxfb.h
6740
6741 MAX16065 HARDWARE MONITOR DRIVER
6742 M:      Guenter Roeck <linux@roeck-us.net>
6743 L:      lm-sensors@lm-sensors.org
6744 S:      Maintained
6745 F:      Documentation/hwmon/max16065
6746 F:      drivers/hwmon/max16065.c
6747
6748 MAX20751 HARDWARE MONITOR DRIVER
6749 M:      Guenter Roeck <linux@roeck-us.net>
6750 L:      lm-sensors@lm-sensors.org
6751 S:      Maintained
6752 F:      Documentation/hwmon/max20751
6753 F:      drivers/hwmon/max20751.c
6754
6755 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6756 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6757 L:      lm-sensors@lm-sensors.org
6758 S:      Maintained
6759 F:      Documentation/hwmon/max6650
6760 F:      drivers/hwmon/max6650.c
6761
6762 MAX6697 HARDWARE MONITOR DRIVER
6763 M:      Guenter Roeck <linux@roeck-us.net>
6764 L:      lm-sensors@lm-sensors.org
6765 S:      Maintained
6766 F:      Documentation/hwmon/max6697
6767 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6768 F:      drivers/hwmon/max6697.c
6769 F:      include/linux/platform_data/max6697.h
6770
6771 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6772 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6773 L:      linux-pm@vger.kernel.org
6774 S:      Supported
6775 F:      drivers/power/max14577_charger.c
6776 F:      drivers/power/max77693_charger.c
6777
6778 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6779 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6780 L:      linux-kernel@vger.kernel.org
6781 S:      Supported
6782 F:      drivers/*/*max77802.c
6783 F:      Documentation/devicetree/bindings/*/*max77802.txt
6784 F:      include/dt-bindings/*/*max77802.h
6785
6786 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6787 M:      Chanwoo Choi <cw00.choi@samsung.com>
6788 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6789 L:      linux-kernel@vger.kernel.org
6790 S:      Supported
6791 F:      drivers/*/max14577.c
6792 F:      drivers/*/max77686.c
6793 F:      drivers/*/max77693.c
6794 F:      drivers/extcon/extcon-max14577.c
6795 F:      drivers/extcon/extcon-max77693.c
6796 F:      drivers/rtc/rtc-max77686.c
6797 F:      drivers/clk/clk-max77686.c
6798 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6799 F:      Documentation/devicetree/bindings/*/max77686.txt
6800 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6801 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6802 F:      include/linux/mfd/max14577*.h
6803 F:      include/linux/mfd/max77686*.h
6804 F:      include/linux/mfd/max77693*.h
6805
6806 MAXIRADIO FM RADIO RECEIVER DRIVER
6807 M:      Hans Verkuil <hverkuil@xs4all.nl>
6808 L:      linux-media@vger.kernel.org
6809 T:      git git://linuxtv.org/media_tree.git
6810 W:      http://linuxtv.org
6811 S:      Maintained
6812 F:      drivers/media/radio/radio-maxiradio*
6813
6814 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6815 M:      Peter Rosin <peda@axentia.se>
6816 L:      linux-iio@vger.kernel.org
6817 S:      Maintained
6818 F:      drivers/iio/potentiometer/mcp4531.c
6819
6820 MEDIA DRIVERS FOR RENESAS - VSP1
6821 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6822 L:      linux-media@vger.kernel.org
6823 L:      linux-sh@vger.kernel.org
6824 T:      git git://linuxtv.org/media_tree.git
6825 S:      Supported
6826 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6827 F:      drivers/media/platform/vsp1/
6828
6829 MEDIA DRIVERS FOR ASCOT2E
6830 M:      Sergey Kozlov <serjk@netup.ru>
6831 L:      linux-media@vger.kernel.org
6832 W:      http://linuxtv.org
6833 W:      http://netup.tv/
6834 T:      git git://linuxtv.org/media_tree.git
6835 S:      Supported
6836 F:      drivers/media/dvb-frontends/ascot2e*
6837
6838 MEDIA DRIVERS FOR CXD2841ER
6839 M:      Sergey Kozlov <serjk@netup.ru>
6840 L:      linux-media@vger.kernel.org
6841 W:      http://linuxtv.org/
6842 W:      http://netup.tv/
6843 T:      git git://linuxtv.org/media_tree.git
6844 S:      Supported
6845 F:      drivers/media/dvb-frontends/cxd2841er*
6846
6847 MEDIA DRIVERS FOR HORUS3A
6848 M:      Sergey Kozlov <serjk@netup.ru>
6849 L:      linux-media@vger.kernel.org
6850 W:      http://linuxtv.org/
6851 W:      http://netup.tv/
6852 T:      git git://linuxtv.org/media_tree.git
6853 S:      Supported
6854 F:      drivers/media/dvb-frontends/horus3a*
6855
6856 MEDIA DRIVERS FOR LNBH25
6857 M:      Sergey Kozlov <serjk@netup.ru>
6858 L:      linux-media@vger.kernel.org
6859 W:      http://linuxtv.org/
6860 W:      http://netup.tv/
6861 T:      git git://linuxtv.org/media_tree.git
6862 S:      Supported
6863 F:      drivers/media/dvb-frontends/lnbh25*
6864
6865 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6866 M:      Sergey Kozlov <serjk@netup.ru>
6867 L:      linux-media@vger.kernel.org
6868 W:      http://linuxtv.org/
6869 W:      http://netup.tv/
6870 T:      git git://linuxtv.org/media_tree.git
6871 S:      Supported
6872 F:      drivers/media/pci/netup_unidvb/*
6873
6874 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6875 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6876 P:      LinuxTV.org Project
6877 L:      linux-media@vger.kernel.org
6878 W:      http://linuxtv.org
6879 Q:      http://patchwork.kernel.org/project/linux-media/list/
6880 T:      git git://linuxtv.org/media_tree.git
6881 S:      Maintained
6882 F:      Documentation/dvb/
6883 F:      Documentation/video4linux/
6884 F:      Documentation/DocBook/media/
6885 F:      drivers/media/
6886 F:      drivers/staging/media/
6887 F:      include/media/
6888 F:      include/uapi/linux/dvb/
6889 F:      include/uapi/linux/videodev2.h
6890 F:      include/uapi/linux/media.h
6891 F:      include/uapi/linux/v4l2-*
6892 F:      include/uapi/linux/meye.h
6893 F:      include/uapi/linux/ivtv*
6894 F:      include/uapi/linux/uvcvideo.h
6895
6896 MEDIATEK MT7601U WIRELESS LAN DRIVER
6897 M:      Jakub Kicinski <kubakici@wp.pl>
6898 L:      linux-wireless@vger.kernel.org
6899 S:      Maintained
6900 F:      drivers/net/wireless/mediatek/mt7601u/
6901
6902 MEGARAID SCSI/SAS DRIVERS
6903 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6904 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6905 M:      Uday Lingala <uday.lingala@avagotech.com>
6906 L:      megaraidlinux.pdl@avagotech.com
6907 L:      linux-scsi@vger.kernel.org
6908 W:      http://www.lsi.com
6909 S:      Maintained
6910 F:      Documentation/scsi/megaraid.txt
6911 F:      drivers/scsi/megaraid.*
6912 F:      drivers/scsi/megaraid/
6913
6914 MELLANOX ETHERNET DRIVER (mlx4_en)
6915 M:      Amir Vadai <amirv@mellanox.com>
6916 L:      netdev@vger.kernel.org
6917 S:      Supported
6918 W:      http://www.mellanox.com
6919 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6920 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6921
6922 MELLANOX ETHERNET SWITCH DRIVERS
6923 M:      Jiri Pirko <jiri@mellanox.com>
6924 M:      Ido Schimmel <idosch@mellanox.com>
6925 L:      netdev@vger.kernel.org
6926 S:      Supported
6927 W:      http://www.mellanox.com
6928 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6929 F:      drivers/net/ethernet/mellanox/mlxsw/
6930
6931 MEMBARRIER SUPPORT
6932 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6933 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6934 L:      linux-kernel@vger.kernel.org
6935 S:      Supported
6936 F:      kernel/membarrier.c
6937 F:      include/uapi/linux/membarrier.h
6938
6939 MEMORY MANAGEMENT
6940 L:      linux-mm@kvack.org
6941 W:      http://www.linux-mm.org
6942 S:      Maintained
6943 F:      include/linux/mm.h
6944 F:      include/linux/gfp.h
6945 F:      include/linux/mmzone.h
6946 F:      include/linux/memory_hotplug.h
6947 F:      include/linux/vmalloc.h
6948 F:      mm/
6949
6950 MEMORY TECHNOLOGY DEVICES (MTD)
6951 M:      David Woodhouse <dwmw2@infradead.org>
6952 M:      Brian Norris <computersforpeace@gmail.com>
6953 L:      linux-mtd@lists.infradead.org
6954 W:      http://www.linux-mtd.infradead.org/
6955 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6956 T:      git git://git.infradead.org/linux-mtd.git
6957 T:      git git://git.infradead.org/l2-mtd.git
6958 S:      Maintained
6959 F:      drivers/mtd/
6960 F:      include/linux/mtd/
6961 F:      include/uapi/mtd/
6962
6963 MEN A21 WATCHDOG DRIVER
6964 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6965 L:      linux-watchdog@vger.kernel.org
6966 S:      Maintained
6967 F:      drivers/watchdog/mena21_wdt.c
6968
6969 MEN CHAMELEON BUS (mcb)
6970 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6971 S:      Maintained
6972 F:      drivers/mcb/
6973 F:      include/linux/mcb.h
6974 F:      Documentation/men-chameleon-bus.txt
6975
6976 MEN F21BMC (Board Management Controller)
6977 M:      Andreas Werner <andreas.werner@men.de>
6978 S:      Supported
6979 F:      drivers/mfd/menf21bmc.c
6980 F:      drivers/watchdog/menf21bmc_wdt.c
6981 F:      drivers/leds/leds-menf21bmc.c
6982 F:      drivers/hwmon/menf21bmc_hwmon.c
6983 F:      Documentation/hwmon/menf21bmc
6984
6985 METAG ARCHITECTURE
6986 M:      James Hogan <james.hogan@imgtec.com>
6987 L:      linux-metag@vger.kernel.org
6988 S:      Supported
6989 F:      arch/metag/
6990 F:      Documentation/metag/
6991 F:      Documentation/devicetree/bindings/metag/
6992 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
6993 F:      drivers/clocksource/metag_generic.c
6994 F:      drivers/irqchip/irq-metag.c
6995 F:      drivers/irqchip/irq-metag-ext.c
6996 F:      drivers/tty/metag_da.c
6997
6998 MICROBLAZE ARCHITECTURE
6999 M:      Michal Simek <monstr@monstr.eu>
7000 W:      http://www.monstr.eu/fdt/
7001 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7002 S:      Supported
7003 F:      arch/microblaze/
7004
7005 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7006 M:      Chen Yu <yu.c.chen@intel.com>
7007 L:      platform-driver-x86@vger.kernel.org
7008 S:      Supported
7009 F:      drivers/platform/x86/surfacepro3_button.c
7010
7011 MICROTEK X6 SCANNER
7012 M:      Oliver Neukum <oliver@neukum.org>
7013 S:      Maintained
7014 F:      drivers/usb/image/microtek.*
7015
7016 MIPS
7017 M:      Ralf Baechle <ralf@linux-mips.org>
7018 L:      linux-mips@linux-mips.org
7019 W:      http://www.linux-mips.org/
7020 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7021 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7022 S:      Supported
7023 F:      Documentation/mips/
7024 F:      arch/mips/
7025
7026 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7027 M:      Hans Verkuil <hverkuil@xs4all.nl>
7028 L:      linux-media@vger.kernel.org
7029 T:      git git://linuxtv.org/media_tree.git
7030 W:      http://linuxtv.org
7031 S:      Odd Fixes
7032 F:      drivers/media/radio/radio-miropcm20*
7033
7034 Mellanox MLX5 core VPI driver
7035 M:      Eli Cohen <eli@mellanox.com>
7036 L:      netdev@vger.kernel.org
7037 L:      linux-rdma@vger.kernel.org
7038 W:      http://www.mellanox.com
7039 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7040 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7041 T:      git git://openfabrics.org/~eli/connect-ib.git
7042 S:      Supported
7043 F:      drivers/net/ethernet/mellanox/mlx5/core/
7044 F:      include/linux/mlx5/
7045
7046 Mellanox MLX5 IB driver
7047 M:      Eli Cohen <eli@mellanox.com>
7048 L:      linux-rdma@vger.kernel.org
7049 W:      http://www.mellanox.com
7050 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7051 T:      git git://openfabrics.org/~eli/connect-ib.git
7052 S:      Supported
7053 F:      include/linux/mlx5/
7054 F:      drivers/infiniband/hw/mlx5/
7055
7056 MELEXIS MLX90614 DRIVER
7057 M:      Crt Mori <cmo@melexis.com>
7058 L:      linux-iio@vger.kernel.org
7059 W:      http://www.melexis.com
7060 S:      Supported
7061 F:      drivers/iio/temperature/mlx90614.c
7062
7063 MN88472 MEDIA DRIVER
7064 M:      Antti Palosaari <crope@iki.fi>
7065 L:      linux-media@vger.kernel.org
7066 W:      http://linuxtv.org/
7067 W:      http://palosaari.fi/linux/
7068 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7069 T:      git git://linuxtv.org/anttip/media_tree.git
7070 S:      Maintained
7071 F:      drivers/staging/media/mn88472/
7072 F:      drivers/media/dvb-frontends/mn88472.h
7073
7074 MN88473 MEDIA DRIVER
7075 M:      Antti Palosaari <crope@iki.fi>
7076 L:      linux-media@vger.kernel.org
7077 W:      http://linuxtv.org/
7078 W:      http://palosaari.fi/linux/
7079 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7080 T:      git git://linuxtv.org/anttip/media_tree.git
7081 S:      Maintained
7082 F:      drivers/staging/media/mn88473/
7083 F:      drivers/media/dvb-frontends/mn88473.h
7084
7085 MODULE SUPPORT
7086 M:      Rusty Russell <rusty@rustcorp.com.au>
7087 S:      Maintained
7088 F:      include/linux/module.h
7089 F:      kernel/module.c
7090
7091 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7092 W:      http://popies.net/meye/
7093 S:      Orphan
7094 F:      Documentation/video4linux/meye.txt
7095 F:      drivers/media/pci/meye/
7096 F:      include/uapi/linux/meye.h
7097
7098 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7099 M:      Jiri Slaby <jirislaby@gmail.com>
7100 S:      Maintained
7101 F:      Documentation/serial/moxa-smartio
7102 F:      drivers/tty/mxser.*
7103
7104 MR800 AVERMEDIA USB FM RADIO DRIVER
7105 M:      Alexey Klimov <klimov.linux@gmail.com>
7106 L:      linux-media@vger.kernel.org
7107 T:      git git://linuxtv.org/media_tree.git
7108 S:      Maintained
7109 F:      drivers/media/radio/radio-mr800.c
7110
7111 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7112 M:      Alan Ott <alan@signal11.us>
7113 L:      linux-wpan@vger.kernel.org
7114 S:      Maintained
7115 F:      drivers/net/ieee802154/mrf24j40.c
7116 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7117
7118 MSI LAPTOP SUPPORT
7119 M:      "Lee, Chun-Yi" <jlee@suse.com>
7120 L:      platform-driver-x86@vger.kernel.org
7121 S:      Maintained
7122 F:      drivers/platform/x86/msi-laptop.c
7123
7124 MSI WMI SUPPORT
7125 L:      platform-driver-x86@vger.kernel.org
7126 S:      Orphan
7127 F:      drivers/platform/x86/msi-wmi.c
7128
7129 MSI001 MEDIA DRIVER
7130 M:      Antti Palosaari <crope@iki.fi>
7131 L:      linux-media@vger.kernel.org
7132 W:      http://linuxtv.org/
7133 W:      http://palosaari.fi/linux/
7134 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7135 T:      git git://linuxtv.org/anttip/media_tree.git
7136 S:      Maintained
7137 F:      drivers/media/tuners/msi001*
7138
7139 MSI2500 MEDIA DRIVER
7140 M:      Antti Palosaari <crope@iki.fi>
7141 L:      linux-media@vger.kernel.org
7142 W:      http://linuxtv.org/
7143 W:      http://palosaari.fi/linux/
7144 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7145 T:      git git://linuxtv.org/anttip/media_tree.git
7146 S:      Maintained
7147 F:      drivers/media/usb/msi2500/
7148
7149 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7150 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7151 L:      linux-mtd@lists.infradead.org
7152 S:      Maintained
7153 F:      drivers/mtd/devices/docg3*
7154
7155 MT9M032 APTINA SENSOR DRIVER
7156 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7157 L:      linux-media@vger.kernel.org
7158 T:      git git://linuxtv.org/media_tree.git
7159 S:      Maintained
7160 F:      drivers/media/i2c/mt9m032.c
7161 F:      include/media/mt9m032.h
7162
7163 MT9P031 APTINA CAMERA SENSOR
7164 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7165 L:      linux-media@vger.kernel.org
7166 T:      git git://linuxtv.org/media_tree.git
7167 S:      Maintained
7168 F:      drivers/media/i2c/mt9p031.c
7169 F:      include/media/mt9p031.h
7170
7171 MT9T001 APTINA CAMERA SENSOR
7172 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7173 L:      linux-media@vger.kernel.org
7174 T:      git git://linuxtv.org/media_tree.git
7175 S:      Maintained
7176 F:      drivers/media/i2c/mt9t001.c
7177 F:      include/media/mt9t001.h
7178
7179 MT9V032 APTINA CAMERA SENSOR
7180 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7181 L:      linux-media@vger.kernel.org
7182 T:      git git://linuxtv.org/media_tree.git
7183 S:      Maintained
7184 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7185 F:      drivers/media/i2c/mt9v032.c
7186 F:      include/media/mt9v032.h
7187
7188 MULTIFUNCTION DEVICES (MFD)
7189 M:      Lee Jones <lee.jones@linaro.org>
7190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7191 S:      Supported
7192 F:      drivers/mfd/
7193 F:      include/linux/mfd/
7194
7195 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7196 M:      Ulf Hansson <ulf.hansson@linaro.org>
7197 L:      linux-mmc@vger.kernel.org
7198 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7199 S:      Maintained
7200 F:      drivers/mmc/
7201 F:      include/linux/mmc/
7202 F:      include/uapi/linux/mmc/
7203
7204 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7205 S:      Orphan
7206 F:      drivers/mmc/host/mmc_spi.c
7207 F:      include/linux/spi/mmc_spi.h
7208
7209 MULTISOUND SOUND DRIVER
7210 M:      Andrew Veliath <andrewtv@usa.net>
7211 S:      Maintained
7212 F:      Documentation/sound/oss/MultiSound
7213 F:      sound/oss/msnd*
7214
7215 MULTITECH MULTIPORT CARD (ISICOM)
7216 S:      Orphan
7217 F:      drivers/tty/isicom.c
7218 F:      include/linux/isicom.h
7219
7220 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7221 M:      Felipe Balbi <balbi@ti.com>
7222 L:      linux-usb@vger.kernel.org
7223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7224 S:      Maintained
7225 F:      drivers/usb/musb/
7226
7227 MXL5007T MEDIA DRIVER
7228 M:      Michael Krufky <mkrufky@linuxtv.org>
7229 L:      linux-media@vger.kernel.org
7230 W:      http://linuxtv.org/
7231 W:      http://github.com/mkrufky
7232 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7233 T:      git git://linuxtv.org/mkrufky/tuners.git
7234 S:      Maintained
7235 F:      drivers/media/tuners/mxl5007t.*
7236
7237 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7238 M:      Hyong-Youb Kim <hykim@myri.com>
7239 L:      netdev@vger.kernel.org
7240 W:      https://www.myricom.com/support/downloads/myri10ge.html
7241 S:      Supported
7242 F:      drivers/net/ethernet/myricom/myri10ge/
7243
7244 NATSEMI ETHERNET DRIVER (DP8381x)
7245 S:      Orphan
7246 F:      drivers/net/ethernet/natsemi/natsemi.c
7247
7248 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7249 M:      Daniel Mack <zonque@gmail.com>
7250 S:      Maintained
7251 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7252 W:      http://www.native-instruments.com
7253 F:      sound/usb/caiaq/
7254
7255 NCP FILESYSTEM
7256 M:      Petr Vandrovec <petr@vandrovec.name>
7257 S:      Odd Fixes
7258 F:      fs/ncpfs/
7259
7260 NCR 5380 SCSI DRIVERS
7261 M:      Finn Thain <fthain@telegraphics.com.au>
7262 M:      Michael Schmitz <schmitzmic@gmail.com>
7263 L:      linux-scsi@vger.kernel.org
7264 S:      Maintained
7265 F:      Documentation/scsi/g_NCR5380.txt
7266 F:      drivers/scsi/NCR5380.*
7267 F:      drivers/scsi/arm/cumana_1.c
7268 F:      drivers/scsi/arm/oak.c
7269 F:      drivers/scsi/atari_NCR5380.c
7270 F:      drivers/scsi/atari_scsi.*
7271 F:      drivers/scsi/dmx3191d.c
7272 F:      drivers/scsi/dtc.*
7273 F:      drivers/scsi/g_NCR5380.*
7274 F:      drivers/scsi/g_NCR5380_mmio.c
7275 F:      drivers/scsi/mac_scsi.*
7276 F:      drivers/scsi/pas16.*
7277 F:      drivers/scsi/sun3_scsi.*
7278 F:      drivers/scsi/sun3_scsi_vme.c
7279 F:      drivers/scsi/t128.*
7280
7281 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7282 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7283 L:      linux-scsi@vger.kernel.org
7284 S:      Maintained
7285 F:      drivers/scsi/NCR_D700.*
7286
7287 NCT6775 HARDWARE MONITOR DRIVER
7288 M:      Guenter Roeck <linux@roeck-us.net>
7289 L:      lm-sensors@lm-sensors.org
7290 S:      Maintained
7291 F:      Documentation/hwmon/nct6775
7292 F:      drivers/hwmon/nct6775.c
7293
7294 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7295 M:      Faisal Latif <faisal.latif@intel.com>
7296 L:      linux-rdma@vger.kernel.org
7297 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7298 S:      Supported
7299 F:      drivers/infiniband/hw/nes/
7300
7301 NETEM NETWORK EMULATOR
7302 M:      Stephen Hemminger <stephen@networkplumber.org>
7303 L:      netem@lists.linux-foundation.org
7304 S:      Maintained
7305 F:      net/sched/sch_netem.c
7306
7307 NETERION 10GbE DRIVERS (s2io/vxge)
7308 M:      Jon Mason <jdmason@kudzu.us>
7309 L:      netdev@vger.kernel.org
7310 S:      Supported
7311 F:      Documentation/networking/s2io.txt
7312 F:      Documentation/networking/vxge.txt
7313 F:      drivers/net/ethernet/neterion/
7314
7315 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7316 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7317 M:      Patrick McHardy <kaber@trash.net>
7318 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7319 L:      netfilter-devel@vger.kernel.org
7320 L:      coreteam@netfilter.org
7321 W:      http://www.netfilter.org/
7322 W:      http://www.iptables.org/
7323 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7326 S:      Supported
7327 F:      include/linux/netfilter*
7328 F:      include/linux/netfilter/
7329 F:      include/net/netfilter/
7330 F:      include/uapi/linux/netfilter*
7331 F:      include/uapi/linux/netfilter/
7332 F:      net/*/netfilter.c
7333 F:      net/*/netfilter/
7334 F:      net/netfilter/
7335 F:      net/bridge/br_netfilter*.c
7336
7337 NETLABEL
7338 M:      Paul Moore <paul@paul-moore.com>
7339 W:      http://netlabel.sf.net
7340 L:      netdev@vger.kernel.org
7341 S:      Maintained
7342 F:      Documentation/netlabel/
7343 F:      include/net/netlabel.h
7344 F:      net/netlabel/
7345
7346 NETROM NETWORK LAYER
7347 M:      Ralf Baechle <ralf@linux-mips.org>
7348 L:      linux-hams@vger.kernel.org
7349 W:      http://www.linux-ax25.org/
7350 S:      Maintained
7351 F:      include/net/netrom.h
7352 F:      include/uapi/linux/netrom.h
7353 F:      net/netrom/
7354
7355 NETWORK BLOCK DEVICE (NBD)
7356 M:      Markus Pargmann <mpa@pengutronix.de>
7357 S:      Maintained
7358 L:      nbd-general@lists.sourceforge.net
7359 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7360 F:      Documentation/blockdev/nbd.txt
7361 F:      drivers/block/nbd.c
7362 F:      include/uapi/linux/nbd.h
7363
7364 NETWORK DROP MONITOR
7365 M:      Neil Horman <nhorman@tuxdriver.com>
7366 L:      netdev@vger.kernel.org
7367 S:      Maintained
7368 W:      https://fedorahosted.org/dropwatch/
7369 F:      net/core/drop_monitor.c
7370
7371 NETWORKING [GENERAL]
7372 M:      "David S. Miller" <davem@davemloft.net>
7373 L:      netdev@vger.kernel.org
7374 W:      http://www.linuxfoundation.org/en/Net
7375 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7378 S:      Maintained
7379 F:      net/
7380 F:      include/net/
7381 F:      include/linux/in.h
7382 F:      include/linux/net.h
7383 F:      include/linux/netdevice.h
7384 F:      include/uapi/linux/in.h
7385 F:      include/uapi/linux/net.h
7386 F:      include/uapi/linux/netdevice.h
7387 F:      include/uapi/linux/net_namespace.h
7388 F:      tools/net/
7389 F:      tools/testing/selftests/net/
7390 F:      lib/random32.c
7391 F:      lib/test_bpf.c
7392
7393 NETWORKING [IPv4/IPv6]
7394 M:      "David S. Miller" <davem@davemloft.net>
7395 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7396 M:      James Morris <jmorris@namei.org>
7397 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7398 M:      Patrick McHardy <kaber@trash.net>
7399 L:      netdev@vger.kernel.org
7400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7401 S:      Maintained
7402 F:      net/ipv4/
7403 F:      net/ipv6/
7404 F:      include/net/ip*
7405 F:      arch/x86/net/*
7406
7407 NETWORKING [IPSEC]
7408 M:      Steffen Klassert <steffen.klassert@secunet.com>
7409 M:      Herbert Xu <herbert@gondor.apana.org.au>
7410 M:      "David S. Miller" <davem@davemloft.net>
7411 L:      netdev@vger.kernel.org
7412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7414 S:      Maintained
7415 F:      net/core/flow.c
7416 F:      net/xfrm/
7417 F:      net/key/
7418 F:      net/ipv4/xfrm*
7419 F:      net/ipv4/esp4.c
7420 F:      net/ipv4/ah4.c
7421 F:      net/ipv4/ipcomp.c
7422 F:      net/ipv4/ip_vti.c
7423 F:      net/ipv6/xfrm*
7424 F:      net/ipv6/esp6.c
7425 F:      net/ipv6/ah6.c
7426 F:      net/ipv6/ipcomp6.c
7427 F:      net/ipv6/ip6_vti.c
7428 F:      include/uapi/linux/xfrm.h
7429 F:      include/net/xfrm.h
7430
7431 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7432 M:      Paul Moore <paul@paul-moore.com>
7433 L:      netdev@vger.kernel.org
7434 S:      Maintained
7435
7436 NETWORKING [WIRELESS]
7437 L:      linux-wireless@vger.kernel.org
7438 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7439
7440 NETWORKING DRIVERS
7441 L:      netdev@vger.kernel.org
7442 W:      http://www.linuxfoundation.org/en/Net
7443 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7446 S:      Odd Fixes
7447 F:      drivers/net/
7448 F:      include/linux/if_*
7449 F:      include/linux/netdevice.h
7450 F:      include/linux/etherdevice.h
7451 F:      include/linux/fcdevice.h
7452 F:      include/linux/fddidevice.h
7453 F:      include/linux/hippidevice.h
7454 F:      include/linux/inetdevice.h
7455 F:      include/uapi/linux/if_*
7456 F:      include/uapi/linux/netdevice.h
7457
7458 NETWORKING DRIVERS (WIRELESS)
7459 M:      Kalle Valo <kvalo@codeaurora.org>
7460 L:      linux-wireless@vger.kernel.org
7461 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7463 S:      Maintained
7464 F:      drivers/net/wireless/
7465
7466 NETXEN (1/10) GbE SUPPORT
7467 M:      Manish Chopra <manish.chopra@qlogic.com>
7468 M:      Sony Chacko <sony.chacko@qlogic.com>
7469 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7470 L:      netdev@vger.kernel.org
7471 W:      http://www.qlogic.com
7472 S:      Supported
7473 F:      drivers/net/ethernet/qlogic/netxen/
7474
7475 NFC SUBSYSTEM
7476 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7477 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7478 M:      Samuel Ortiz <sameo@linux.intel.com>
7479 L:      linux-wireless@vger.kernel.org
7480 L:      linux-nfc@lists.01.org (subscribers-only)
7481 S:      Supported
7482 F:      net/nfc/
7483 F:      include/net/nfc/
7484 F:      include/uapi/linux/nfc.h
7485 F:      drivers/nfc/
7486 F:      include/linux/platform_data/pn544.h
7487 F:      Documentation/devicetree/bindings/net/nfc/
7488
7489 NFS, SUNRPC, AND LOCKD CLIENTS
7490 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7491 M:      Anna Schumaker <anna.schumaker@netapp.com>
7492 L:      linux-nfs@vger.kernel.org
7493 W:      http://client.linux-nfs.org
7494 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7495 S:      Maintained
7496 F:      fs/lockd/
7497 F:      fs/nfs/
7498 F:      fs/nfs_common/
7499 F:      net/sunrpc/
7500 F:      include/linux/lockd/
7501 F:      include/linux/nfs*
7502 F:      include/linux/sunrpc/
7503 F:      include/uapi/linux/nfs*
7504 F:      include/uapi/linux/sunrpc/
7505
7506 NILFS2 FILESYSTEM
7507 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7508 L:      linux-nilfs@vger.kernel.org
7509 W:      http://nilfs.sourceforge.net/
7510 T:      git git://github.com/konis/nilfs2.git
7511 S:      Supported
7512 F:      Documentation/filesystems/nilfs2.txt
7513 F:      fs/nilfs2/
7514 F:      include/linux/nilfs2_fs.h
7515 F:      include/trace/events/nilfs2.h
7516
7517 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7518 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7519 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7520 S:      Maintained
7521 F:      Documentation/scsi/NinjaSCSI.txt
7522 F:      drivers/scsi/pcmcia/nsp_*
7523
7524 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7525 M:      GOTO Masanori <gotom@debian.or.jp>
7526 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7527 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7528 S:      Maintained
7529 F:      Documentation/scsi/NinjaSCSI.txt
7530 F:      drivers/scsi/nsp32*
7531
7532 NIOS2 ARCHITECTURE
7533 M:      Ley Foon Tan <lftan@altera.com>
7534 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7536 S:      Maintained
7537 F:      arch/nios2/
7538
7539 NOKIA N900 POWER SUPPLY DRIVERS
7540 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7541 S:      Maintained
7542 F:      include/linux/power/bq2415x_charger.h
7543 F:      include/linux/power/bq27xxx_battery.h
7544 F:      include/linux/power/isp1704_charger.h
7545 F:      drivers/power/bq2415x_charger.c
7546 F:      drivers/power/bq27xxx_battery.c
7547 F:      drivers/power/isp1704_charger.c
7548 F:      drivers/power/rx51_battery.c
7549
7550 NTB DRIVER CORE
7551 M:      Jon Mason <jdmason@kudzu.us>
7552 M:      Dave Jiang <dave.jiang@intel.com>
7553 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7554 L:      linux-ntb@googlegroups.com
7555 S:      Supported
7556 W:      https://github.com/jonmason/ntb/wiki
7557 T:      git git://github.com/jonmason/ntb.git
7558 F:      drivers/ntb/
7559 F:      drivers/net/ntb_netdev.c
7560 F:      include/linux/ntb.h
7561 F:      include/linux/ntb_transport.h
7562
7563 NTB INTEL DRIVER
7564 M:      Jon Mason <jdmason@kudzu.us>
7565 M:      Dave Jiang <dave.jiang@intel.com>
7566 L:      linux-ntb@googlegroups.com
7567 S:      Supported
7568 W:      https://github.com/jonmason/ntb/wiki
7569 T:      git git://github.com/jonmason/ntb.git
7570 F:      drivers/ntb/hw/intel/
7571
7572 NTFS FILESYSTEM
7573 M:      Anton Altaparmakov <anton@tuxera.com>
7574 L:      linux-ntfs-dev@lists.sourceforge.net
7575 W:      http://www.tuxera.com/
7576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7577 S:      Supported
7578 F:      Documentation/filesystems/ntfs.txt
7579 F:      fs/ntfs/
7580
7581 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7582 M:      Antonino Daplas <adaplas@gmail.com>
7583 L:      linux-fbdev@vger.kernel.org
7584 S:      Maintained
7585 F:      drivers/video/fbdev/riva/
7586 F:      drivers/video/fbdev/nvidia/
7587
7588 NVM EXPRESS DRIVER
7589 M:      Keith Busch <keith.busch@intel.com>
7590 M:      Jens Axboe <axboe@fb.com>
7591 L:      linux-nvme@lists.infradead.org
7592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7593 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7594 S:      Supported
7595 F:      drivers/nvme/host/
7596 F:      include/linux/nvme.h
7597
7598 NVMEM FRAMEWORK
7599 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7600 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7601 S:      Maintained
7602 F:      drivers/nvmem/
7603 F:      Documentation/devicetree/bindings/nvmem/
7604 F:      include/linux/nvmem-consumer.h
7605 F:      include/linux/nvmem-provider.h
7606
7607 NXP-NCI NFC DRIVER
7608 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7609 R:      Charles Gorand <charles.gorand@effinnov.com>
7610 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7611 S:      Supported
7612 F:      drivers/nfc/nxp-nci
7613
7614 NXP TDA998X DRM DRIVER
7615 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7616 S:      Supported
7617 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7618 F:      include/drm/i2c/tda998x.h
7619
7620 NXP TFA9879 DRIVER
7621 M:      Peter Rosin <peda@axentia.se>
7622 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7623 S:      Maintained
7624 F:      sound/soc/codecs/tfa9879*
7625
7626 OMAP SUPPORT
7627 M:      Tony Lindgren <tony@atomide.com>
7628 L:      linux-omap@vger.kernel.org
7629 W:      http://www.muru.com/linux/omap/
7630 W:      http://linux.omap.com/
7631 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7633 S:      Maintained
7634 F:      arch/arm/*omap*/
7635 F:      arch/arm/configs/omap1_defconfig
7636 F:      arch/arm/configs/omap2plus_defconfig
7637 F:      drivers/i2c/busses/i2c-omap.c
7638 F:      drivers/irqchip/irq-omap-intc.c
7639 F:      drivers/mfd/*omap*.c
7640 F:      drivers/mfd/menelaus.c
7641 F:      drivers/mfd/palmas.c
7642 F:      drivers/mfd/tps65217.c
7643 F:      drivers/mfd/tps65218.c
7644 F:      drivers/mfd/tps65910.c
7645 F:      drivers/mfd/twl-core.[ch]
7646 F:      drivers/mfd/twl4030*.c
7647 F:      drivers/mfd/twl6030*.c
7648 F:      drivers/mfd/twl6040*.c
7649 F:      drivers/regulator/palmas-regulator*.c
7650 F:      drivers/regulator/pbias-regulator.c
7651 F:      drivers/regulator/tps65217-regulator.c
7652 F:      drivers/regulator/tps65218-regulator.c
7653 F:      drivers/regulator/tps65910-regulator.c
7654 F:      drivers/regulator/twl-regulator.c
7655 F:      include/linux/i2c-omap.h
7656
7657 OMAP DEVICE TREE SUPPORT
7658 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7659 M:      Tony Lindgren <tony@atomide.com>
7660 L:      linux-omap@vger.kernel.org
7661 L:      devicetree@vger.kernel.org
7662 S:      Maintained
7663 F:      arch/arm/boot/dts/*omap*
7664 F:      arch/arm/boot/dts/*am3*
7665 F:      arch/arm/boot/dts/*am4*
7666 F:      arch/arm/boot/dts/*am5*
7667 F:      arch/arm/boot/dts/*dra7*
7668
7669 OMAP CLOCK FRAMEWORK SUPPORT
7670 M:      Paul Walmsley <paul@pwsan.com>
7671 L:      linux-omap@vger.kernel.org
7672 S:      Maintained
7673 F:      arch/arm/*omap*/*clock*
7674
7675 OMAP POWER MANAGEMENT SUPPORT
7676 M:      Kevin Hilman <khilman@deeprootsystems.com>
7677 L:      linux-omap@vger.kernel.org
7678 S:      Maintained
7679 F:      arch/arm/*omap*/*pm*
7680 F:      drivers/cpufreq/omap-cpufreq.c
7681
7682 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7683 M:      Rajendra Nayak <rnayak@ti.com>
7684 M:      Paul Walmsley <paul@pwsan.com>
7685 L:      linux-omap@vger.kernel.org
7686 S:      Maintained
7687 F:      arch/arm/mach-omap2/prm*
7688
7689 OMAP AUDIO SUPPORT
7690 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7691 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7692 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7693 L:      linux-omap@vger.kernel.org
7694 S:      Maintained
7695 F:      sound/soc/omap/
7696
7697 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7698 M:      Roger Quadros <rogerq@ti.com>
7699 M:      Tony Lindgren <tony@atomide.com>
7700 L:      linux-omap@vger.kernel.org
7701 S:      Maintained
7702 F:      drivers/memory/omap-gpmc.c
7703 F:      arch/arm/mach-omap2/*gpmc*
7704
7705 OMAP FRAMEBUFFER SUPPORT
7706 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7707 L:      linux-fbdev@vger.kernel.org
7708 L:      linux-omap@vger.kernel.org
7709 S:      Maintained
7710 F:      drivers/video/fbdev/omap/
7711
7712 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7713 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7714 L:      linux-omap@vger.kernel.org
7715 L:      linux-fbdev@vger.kernel.org
7716 S:      Maintained
7717 F:      drivers/video/fbdev/omap2/
7718 F:      Documentation/arm/OMAP/DSS
7719
7720 OMAP HARDWARE SPINLOCK SUPPORT
7721 M:      Ohad Ben-Cohen <ohad@wizery.com>
7722 L:      linux-omap@vger.kernel.org
7723 S:      Maintained
7724 F:      drivers/hwspinlock/omap_hwspinlock.c
7725
7726 OMAP MMC SUPPORT
7727 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7728 L:      linux-omap@vger.kernel.org
7729 S:      Maintained
7730 F:      drivers/mmc/host/omap.c
7731
7732 OMAP HS MMC SUPPORT
7733 L:      linux-mmc@vger.kernel.org
7734 L:      linux-omap@vger.kernel.org
7735 S:      Orphan
7736 F:      drivers/mmc/host/omap_hsmmc.c
7737
7738 OMAP RANDOM NUMBER GENERATOR SUPPORT
7739 M:      Deepak Saxena <dsaxena@plexity.net>
7740 S:      Maintained
7741 F:      drivers/char/hw_random/omap-rng.c
7742
7743 OMAP HWMOD SUPPORT
7744 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7745 M:      Paul Walmsley <paul@pwsan.com>
7746 L:      linux-omap@vger.kernel.org
7747 S:      Maintained
7748 F:      arch/arm/mach-omap2/omap_hwmod.*
7749
7750 OMAP HWMOD DATA
7751 M:      Paul Walmsley <paul@pwsan.com>
7752 L:      linux-omap@vger.kernel.org
7753 S:      Maintained
7754 F:      arch/arm/mach-omap2/omap_hwmod*data*
7755
7756 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7757 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7758 L:      linux-omap@vger.kernel.org
7759 S:      Maintained
7760 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7761
7762 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7763 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7764 L:      linux-media@vger.kernel.org
7765 S:      Maintained
7766 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7767 F:      drivers/media/platform/omap3isp/
7768 F:      drivers/staging/media/omap4iss/
7769
7770 OMAP USB SUPPORT
7771 M:      Felipe Balbi <balbi@ti.com>
7772 L:      linux-usb@vger.kernel.org
7773 L:      linux-omap@vger.kernel.org
7774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7775 S:      Maintained
7776 F:      drivers/usb/*/*omap*
7777 F:      arch/arm/*omap*/usb*
7778
7779 OMAP GPIO DRIVER
7780 M:      Javier Martinez Canillas <javier@dowhile0.org>
7781 M:      Santosh Shilimkar <ssantosh@kernel.org>
7782 M:      Kevin Hilman <khilman@deeprootsystems.com>
7783 L:      linux-omap@vger.kernel.org
7784 S:      Maintained
7785 F:      drivers/gpio/gpio-omap.c
7786
7787 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7788 M:      Mark Jackson <mpfj@newflow.co.uk>
7789 L:      linux-omap@vger.kernel.org
7790 S:      Maintained
7791 F:      arch/arm/boot/dts/am335x-nano.dts
7792
7793 OMFS FILESYSTEM
7794 M:      Bob Copeland <me@bobcopeland.com>
7795 L:      linux-karma-devel@lists.sourceforge.net
7796 S:      Maintained
7797 F:      Documentation/filesystems/omfs.txt
7798 F:      fs/omfs/
7799
7800 OMNIKEY CARDMAN 4000 DRIVER
7801 M:      Harald Welte <laforge@gnumonks.org>
7802 S:      Maintained
7803 F:      drivers/char/pcmcia/cm4000_cs.c
7804 F:      include/linux/cm4000_cs.h
7805 F:      include/uapi/linux/cm4000_cs.h
7806
7807 OMNIKEY CARDMAN 4040 DRIVER
7808 M:      Harald Welte <laforge@gnumonks.org>
7809 S:      Maintained
7810 F:      drivers/char/pcmcia/cm4040_cs.*
7811
7812 OMNIVISION OV7670 SENSOR DRIVER
7813 M:      Jonathan Corbet <corbet@lwn.net>
7814 L:      linux-media@vger.kernel.org
7815 T:      git git://linuxtv.org/media_tree.git
7816 S:      Maintained
7817 F:      drivers/media/i2c/ov7670.c
7818
7819 ONENAND FLASH DRIVER
7820 M:      Kyungmin Park <kyungmin.park@samsung.com>
7821 L:      linux-mtd@lists.infradead.org
7822 S:      Maintained
7823 F:      drivers/mtd/onenand/
7824 F:      include/linux/mtd/onenand*.h
7825
7826 ONSTREAM SCSI TAPE DRIVER
7827 M:      Willem Riede <osst@riede.org>
7828 L:      osst-users@lists.sourceforge.net
7829 L:      linux-scsi@vger.kernel.org
7830 S:      Maintained
7831 F:      Documentation/scsi/osst.txt
7832 F:      drivers/scsi/osst.*
7833 F:      drivers/scsi/osst_*.h
7834 F:      drivers/scsi/st.h
7835
7836 OPENCORES I2C BUS DRIVER
7837 M:      Peter Korsgaard <jacmet@sunsite.dk>
7838 L:      linux-i2c@vger.kernel.org
7839 S:      Maintained
7840 F:      Documentation/i2c/busses/i2c-ocores
7841 F:      drivers/i2c/busses/i2c-ocores.c
7842
7843 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7844 M:      Rob Herring <robh+dt@kernel.org>
7845 M:      Frank Rowand <frowand.list@gmail.com>
7846 M:      Grant Likely <grant.likely@linaro.org>
7847 L:      devicetree@vger.kernel.org
7848 W:      http://www.devicetree.org/
7849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7850 S:      Maintained
7851 F:      drivers/of/
7852 F:      include/linux/of*.h
7853 F:      scripts/dtc/
7854
7855 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7856 M:      Rob Herring <robh+dt@kernel.org>
7857 M:      Pawel Moll <pawel.moll@arm.com>
7858 M:      Mark Rutland <mark.rutland@arm.com>
7859 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7860 M:      Kumar Gala <galak@codeaurora.org>
7861 L:      devicetree@vger.kernel.org
7862 S:      Maintained
7863 F:      Documentation/devicetree/
7864 F:      arch/*/boot/dts/
7865 F:      include/dt-bindings/
7866
7867 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7868 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7869 L:      devicetree@vger.kernel.org
7870 S:      Maintained
7871 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7872 F:      Documentation/devicetree/overlay-notes.txt
7873 F:      drivers/of/overlay.c
7874 F:      drivers/of/resolver.c
7875
7876 OPENRISC ARCHITECTURE
7877 M:      Jonas Bonn <jonas@southpole.se>
7878 W:      http://openrisc.net
7879 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7880 S:      Maintained
7881 T:      git git://openrisc.net/~jonas/linux
7882 F:      arch/openrisc/
7883
7884 OPENVSWITCH
7885 M:      Pravin Shelar <pshelar@nicira.com>
7886 L:      netdev@vger.kernel.org
7887 L:      dev@openvswitch.org
7888 W:      http://openvswitch.org
7889 S:      Maintained
7890 F:      net/openvswitch/
7891 F:      include/uapi/linux/openvswitch.h
7892
7893 OPL4 DRIVER
7894 M:      Clemens Ladisch <clemens@ladisch.de>
7895 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7896 T:      git git://git.alsa-project.org/alsa-kernel.git
7897 S:      Maintained
7898 F:      sound/drivers/opl4/
7899
7900 OPROFILE
7901 M:      Robert Richter <rric@kernel.org>
7902 L:      oprofile-list@lists.sf.net
7903 S:      Maintained
7904 F:      arch/*/include/asm/oprofile*.h
7905 F:      arch/*/oprofile/
7906 F:      drivers/oprofile/
7907 F:      include/linux/oprofile.h
7908
7909 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7910 M:      Mark Fasheh <mfasheh@suse.com>
7911 M:      Joel Becker <jlbec@evilplan.org>
7912 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7913 W:      http://ocfs2.wiki.kernel.org
7914 S:      Supported
7915 F:      Documentation/filesystems/ocfs2.txt
7916 F:      Documentation/filesystems/dlmfs.txt
7917 F:      fs/ocfs2/
7918
7919 ORINOCO DRIVER
7920 L:      linux-wireless@vger.kernel.org
7921 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7922 W:      http://www.nongnu.org/orinoco/
7923 S:      Orphan
7924 F:      drivers/net/wireless/orinoco/
7925
7926 OSD LIBRARY and FILESYSTEM
7927 M:      Boaz Harrosh <ooo@electrozaur.com>
7928 M:      Benny Halevy <bhalevy@primarydata.com>
7929 L:      osd-dev@open-osd.org
7930 W:      http://open-osd.org
7931 T:      git git://git.open-osd.org/open-osd.git
7932 S:      Maintained
7933 F:      drivers/scsi/osd/
7934 F:      include/scsi/osd_*
7935 F:      fs/exofs/
7936
7937 OVERLAY FILESYSTEM
7938 M:      Miklos Szeredi <miklos@szeredi.hu>
7939 L:      linux-unionfs@vger.kernel.org
7940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7941 S:      Supported
7942 F:      fs/overlayfs/
7943 F:      Documentation/filesystems/overlayfs.txt
7944
7945 P54 WIRELESS DRIVER
7946 M:      Christian Lamparter <chunkeey@googlemail.com>
7947 L:      linux-wireless@vger.kernel.org
7948 W:      http://wireless.kernel.org/en/users/Drivers/p54
7949 S:      Maintained
7950 F:      drivers/net/wireless/p54/
7951
7952 PA SEMI ETHERNET DRIVER
7953 M:      Olof Johansson <olof@lixom.net>
7954 L:      netdev@vger.kernel.org
7955 S:      Maintained
7956 F:      drivers/net/ethernet/pasemi/*
7957
7958 PA SEMI SMBUS DRIVER
7959 M:      Olof Johansson <olof@lixom.net>
7960 L:      linux-i2c@vger.kernel.org
7961 S:      Maintained
7962 F:      drivers/i2c/busses/i2c-pasemi.c
7963
7964 PADATA PARALLEL EXECUTION MECHANISM
7965 M:      Steffen Klassert <steffen.klassert@secunet.com>
7966 L:      linux-crypto@vger.kernel.org
7967 S:      Maintained
7968 F:      kernel/padata.c
7969 F:      include/linux/padata.h
7970 F:      Documentation/padata.txt
7971
7972 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7973 M:      Harald Welte <laforge@gnumonks.org>
7974 L:      platform-driver-x86@vger.kernel.org
7975 S:      Maintained
7976 F:      drivers/platform/x86/panasonic-laptop.c
7977
7978 PANASONIC MN10300/AM33/AM34 PORT
7979 M:      David Howells <dhowells@redhat.com>
7980 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7981 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7982 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7983 S:      Maintained
7984 F:      Documentation/mn10300/
7985 F:      arch/mn10300/
7986
7987 PARALLEL PORT SUBSYSTEM
7988 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7989 M:      Sudip Mukherjee <sudip@vectorindia.org>
7990 L:      linux-parport@lists.infradead.org (subscribers-only)
7991 S:      Maintained
7992 F:      drivers/parport/
7993 F:      include/linux/parport*.h
7994 F:      drivers/char/ppdev.c
7995 F:      include/uapi/linux/ppdev.h
7996 F:      Documentation/parport*.txt
7997
7998 PARAVIRT_OPS INTERFACE
7999 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8000 M:      Chris Wright <chrisw@sous-sol.org>
8001 M:      Alok Kataria <akataria@vmware.com>
8002 M:      Rusty Russell <rusty@rustcorp.com.au>
8003 L:      virtualization@lists.linux-foundation.org
8004 S:      Supported
8005 F:      Documentation/virtual/paravirt_ops.txt
8006 F:      arch/*/kernel/paravirt*
8007 F:      arch/*/include/asm/paravirt.h
8008
8009 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8010 M:      Tim Waugh <tim@cyberelk.net>
8011 L:      linux-parport@lists.infradead.org (subscribers-only)
8012 S:      Maintained
8013 F:      Documentation/blockdev/paride.txt
8014 F:      drivers/block/paride/
8015
8016 PARISC ARCHITECTURE
8017 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8018 M:      Helge Deller <deller@gmx.de>
8019 L:      linux-parisc@vger.kernel.org
8020 W:      http://www.parisc-linux.org/
8021 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8024 S:      Maintained
8025 F:      arch/parisc/
8026 F:      Documentation/parisc/
8027 F:      drivers/parisc/
8028 F:      drivers/char/agp/parisc-agp.c
8029 F:      drivers/input/serio/gscps2.c
8030 F:      drivers/parport/parport_gsc.*
8031 F:      drivers/tty/serial/8250/8250_gsc.c
8032 F:      drivers/video/fbdev/sti*
8033 F:      drivers/video/console/sti*
8034 F:      drivers/video/logo/logo_parisc*
8035
8036 PC87360 HARDWARE MONITORING DRIVER
8037 M:      Jim Cromie <jim.cromie@gmail.com>
8038 L:      lm-sensors@lm-sensors.org
8039 S:      Maintained
8040 F:      Documentation/hwmon/pc87360
8041 F:      drivers/hwmon/pc87360.c
8042
8043 PC8736x GPIO DRIVER
8044 M:      Jim Cromie <jim.cromie@gmail.com>
8045 S:      Maintained
8046 F:      drivers/char/pc8736x_gpio.c
8047
8048 PC87427 HARDWARE MONITORING DRIVER
8049 M:      Jean Delvare <jdelvare@suse.com>
8050 L:      lm-sensors@lm-sensors.org
8051 S:      Maintained
8052 F:      Documentation/hwmon/pc87427
8053 F:      drivers/hwmon/pc87427.c
8054
8055 PCA9532 LED DRIVER
8056 M:      Riku Voipio <riku.voipio@iki.fi>
8057 S:      Maintained
8058 F:      drivers/leds/leds-pca9532.c
8059 F:      include/linux/leds-pca9532.h
8060
8061 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8062 M:      Guenter Roeck <linux@roeck-us.net>
8063 L:      linux-i2c@vger.kernel.org
8064 S:      Maintained
8065 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8066
8067 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8068 M:      Khalid Aziz <khalid@gonehiking.org>
8069 S:      Maintained
8070 F:      drivers/firmware/pcdp.*
8071
8072 PCI ERROR RECOVERY
8073 M:      Linas Vepstas <linasvepstas@gmail.com>
8074 L:      linux-pci@vger.kernel.org
8075 S:      Supported
8076 F:      Documentation/PCI/pci-error-recovery.txt
8077
8078 PCI SUBSYSTEM
8079 M:      Bjorn Helgaas <bhelgaas@google.com>
8080 L:      linux-pci@vger.kernel.org
8081 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8083 S:      Supported
8084 F:      Documentation/PCI/
8085 F:      drivers/pci/
8086 F:      include/linux/pci*
8087 F:      arch/x86/pci/
8088 F:      arch/x86/kernel/quirks.c
8089
8090 PCI DRIVER FOR ALTERA PCIE IP
8091 M:      Ley Foon Tan <lftan@altera.com>
8092 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8093 L:      linux-pci@vger.kernel.org
8094 S:      Supported
8095 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8096 F:      drivers/pci/host/pcie-altera.c
8097
8098 PCI DRIVER FOR ARM VERSATILE PLATFORM
8099 M:      Rob Herring <robh@kernel.org>
8100 L:      linux-pci@vger.kernel.org
8101 L:      linux-arm-kernel@lists.infradead.org
8102 S:      Maintained
8103 F:      Documentation/devicetree/bindings/pci/versatile.txt
8104 F:      drivers/pci/host/pci-versatile.c
8105
8106 PCI DRIVER FOR APPLIEDMICRO XGENE
8107 M:      Tanmay Inamdar <tinamdar@apm.com>
8108 L:      linux-pci@vger.kernel.org
8109 L:      linux-arm-kernel@lists.infradead.org
8110 S:      Maintained
8111 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8112 F:      drivers/pci/host/pci-xgene.c
8113
8114 PCI DRIVER FOR FREESCALE LAYERSCAPE
8115 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8116 M:      Mingkai Hu <mingkai.hu@freescale.com>
8117 M:      Roy Zang <tie-fei.zang@freescale.com>
8118 L:      linuxppc-dev@lists.ozlabs.org
8119 L:      linux-pci@vger.kernel.org
8120 L:      linux-arm-kernel@lists.infradead.org
8121 S:      Maintained
8122 F:      drivers/pci/host/*layerscape*
8123
8124 PCI DRIVER FOR IMX6
8125 M:      Richard Zhu <Richard.Zhu@freescale.com>
8126 M:      Lucas Stach <l.stach@pengutronix.de>
8127 L:      linux-pci@vger.kernel.org
8128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8129 S:      Maintained
8130 F:      drivers/pci/host/*imx6*
8131
8132 PCI DRIVER FOR TI KEYSTONE
8133 M:      Murali Karicheri <m-karicheri2@ti.com>
8134 L:      linux-pci@vger.kernel.org
8135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8136 S:      Maintained
8137 F:      drivers/pci/host/*keystone*
8138
8139 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8140 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8141 M:      Jason Cooper <jason@lakedaemon.net>
8142 L:      linux-pci@vger.kernel.org
8143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8144 S:      Maintained
8145 F:      drivers/pci/host/*mvebu*
8146
8147 PCI DRIVER FOR NVIDIA TEGRA
8148 M:      Thierry Reding <thierry.reding@gmail.com>
8149 L:      linux-tegra@vger.kernel.org
8150 L:      linux-pci@vger.kernel.org
8151 S:      Supported
8152 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8153 F:      drivers/pci/host/pci-tegra.c
8154
8155 PCI DRIVER FOR TI DRA7XX
8156 M:      Kishon Vijay Abraham I <kishon@ti.com>
8157 L:      linux-omap@vger.kernel.org
8158 L:      linux-pci@vger.kernel.org
8159 S:      Supported
8160 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8161 F:      drivers/pci/host/pci-dra7xx.c
8162
8163 PCI DRIVER FOR RENESAS R-CAR
8164 M:      Simon Horman <horms@verge.net.au>
8165 L:      linux-pci@vger.kernel.org
8166 L:      linux-sh@vger.kernel.org
8167 S:      Maintained
8168 F:      drivers/pci/host/*rcar*
8169
8170 PCI DRIVER FOR SAMSUNG EXYNOS
8171 M:      Jingoo Han <jingoohan1@gmail.com>
8172 L:      linux-pci@vger.kernel.org
8173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8174 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8175 S:      Maintained
8176 F:      drivers/pci/host/pci-exynos.c
8177
8178 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8179 M:      Jingoo Han <jingoohan1@gmail.com>
8180 M:      Pratyush Anand <pratyush.anand@gmail.com>
8181 L:      linux-pci@vger.kernel.org
8182 S:      Maintained
8183 F:      drivers/pci/host/*designware*
8184
8185 PCI DRIVER FOR GENERIC OF HOSTS
8186 M:      Will Deacon <will.deacon@arm.com>
8187 L:      linux-pci@vger.kernel.org
8188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8189 S:      Maintained
8190 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8191 F:      drivers/pci/host/pci-host-generic.c
8192
8193 PCIE DRIVER FOR ST SPEAR13XX
8194 M:      Pratyush Anand <pratyush.anand@gmail.com>
8195 L:      linux-pci@vger.kernel.org
8196 S:      Maintained
8197 F:      drivers/pci/host/*spear*
8198
8199 PCI MSI DRIVER FOR ALTERA MSI IP
8200 M:      Ley Foon Tan <lftan@altera.com>
8201 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8202 L:      linux-pci@vger.kernel.org
8203 S:      Supported
8204 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8205 F:      drivers/pci/host/pcie-altera-msi.c
8206
8207 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8208 M:      Duc Dang <dhdang@apm.com>
8209 L:      linux-pci@vger.kernel.org
8210 L:      linux-arm-kernel@lists.infradead.org
8211 S:      Maintained
8212 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8213 F:      drivers/pci/host/pci-xgene-msi.c
8214
8215 PCIE DRIVER FOR HISILICON
8216 M:      Zhou Wang <wangzhou1@hisilicon.com>
8217 L:      linux-pci@vger.kernel.org
8218 S:      Maintained
8219 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8220 F:      drivers/pci/host/pcie-hisi.c
8221
8222 PCMCIA SUBSYSTEM
8223 P:      Linux PCMCIA Team
8224 L:      linux-pcmcia@lists.infradead.org
8225 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8227 S:      Maintained
8228 F:      Documentation/pcmcia/
8229 F:      drivers/pcmcia/
8230 F:      include/pcmcia/
8231
8232 PCNET32 NETWORK DRIVER
8233 M:      Don Fry <pcnet32@frontier.com>
8234 L:      netdev@vger.kernel.org
8235 S:      Maintained
8236 F:      drivers/net/ethernet/amd/pcnet32.c
8237
8238 PCRYPT PARALLEL CRYPTO ENGINE
8239 M:      Steffen Klassert <steffen.klassert@secunet.com>
8240 L:      linux-crypto@vger.kernel.org
8241 S:      Maintained
8242 F:      crypto/pcrypt.c
8243 F:      include/crypto/pcrypt.h
8244
8245 PER-CPU MEMORY ALLOCATOR
8246 M:      Tejun Heo <tj@kernel.org>
8247 M:      Christoph Lameter <cl@linux-foundation.org>
8248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8249 S:      Maintained
8250 F:      include/linux/percpu*.h
8251 F:      mm/percpu*.c
8252 F:      arch/*/include/asm/percpu.h
8253
8254 PER-TASK DELAY ACCOUNTING
8255 M:      Balbir Singh <bsingharora@gmail.com>
8256 S:      Maintained
8257 F:      include/linux/delayacct.h
8258 F:      kernel/delayacct.c
8259
8260 PERFORMANCE EVENTS SUBSYSTEM
8261 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8262 M:      Ingo Molnar <mingo@redhat.com>
8263 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8264 L:      linux-kernel@vger.kernel.org
8265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8266 S:      Supported
8267 F:      kernel/events/*
8268 F:      include/linux/perf_event.h
8269 F:      include/uapi/linux/perf_event.h
8270 F:      arch/*/kernel/perf_event*.c
8271 F:      arch/*/kernel/*/perf_event*.c
8272 F:      arch/*/kernel/*/*/perf_event*.c
8273 F:      arch/*/include/asm/perf_event.h
8274 F:      arch/*/kernel/perf_callchain.c
8275 F:      tools/perf/
8276
8277 PERSONALITY HANDLING
8278 M:      Christoph Hellwig <hch@infradead.org>
8279 L:      linux-abi-devel@lists.sourceforge.net
8280 S:      Maintained
8281 F:      include/linux/personality.h
8282 F:      include/uapi/linux/personality.h
8283
8284 PHONET PROTOCOL
8285 M:      Remi Denis-Courmont <courmisch@gmail.com>
8286 S:      Supported
8287 F:      Documentation/networking/phonet.txt
8288 F:      include/linux/phonet.h
8289 F:      include/net/phonet/
8290 F:      include/uapi/linux/phonet.h
8291 F:      net/phonet/
8292
8293 PHRAM MTD DRIVER
8294 M:      Joern Engel <joern@lazybastard.org>
8295 L:      linux-mtd@lists.infradead.org
8296 S:      Maintained
8297 F:      drivers/mtd/devices/phram.c
8298
8299 PICOLCD HID DRIVER
8300 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8301 L:      linux-input@vger.kernel.org
8302 S:      Maintained
8303 F:      drivers/hid/hid-picolcd*
8304
8305 PICOXCELL SUPPORT
8306 M:      Jamie Iles <jamie@jamieiles.com>
8307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8308 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8309 S:      Supported
8310 F:      arch/arm/boot/dts/picoxcell*
8311 F:      arch/arm/mach-picoxcell/
8312 F:      drivers/crypto/picoxcell*
8313
8314 PIN CONTROL SUBSYSTEM
8315 M:      Linus Walleij <linus.walleij@linaro.org>
8316 L:      linux-gpio@vger.kernel.org
8317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8318 S:      Maintained
8319 F:      drivers/pinctrl/
8320 F:      include/linux/pinctrl/
8321
8322 PIN CONTROLLER - ATMEL AT91
8323 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8325 S:      Maintained
8326 F:      drivers/pinctrl/pinctrl-at91.*
8327
8328 PIN CONTROLLER - ATMEL AT91 PIO4
8329 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8331 L:      linux-gpio@vger.kernel.org
8332 S:      Supported
8333 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8334
8335 PIN CONTROLLER - INTEL
8336 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8337 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8338 S:      Maintained
8339 F:      drivers/pinctrl/intel/
8340
8341 PIN CONTROLLER - RENESAS
8342 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8343 L:      linux-sh@vger.kernel.org
8344 S:      Maintained
8345 F:      drivers/pinctrl/sh-pfc/
8346
8347 PIN CONTROLLER - SAMSUNG
8348 M:      Tomasz Figa <tomasz.figa@gmail.com>
8349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8350 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8351 S:      Maintained
8352 F:      drivers/pinctrl/samsung/
8353
8354 PIN CONTROLLER - ST SPEAR
8355 M:      Viresh Kumar <vireshk@kernel.org>
8356 L:      spear-devel@list.st.com
8357 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8358 W:      http://www.st.com/spear
8359 S:      Maintained
8360 F:      drivers/pinctrl/spear/
8361
8362 PKTCDVD DRIVER
8363 M:      Jiri Kosina <jikos@kernel.org>
8364 S:      Maintained
8365 F:      drivers/block/pktcdvd.c
8366 F:      include/linux/pktcdvd.h
8367 F:      include/uapi/linux/pktcdvd.h
8368
8369 PKUNITY SOC DRIVERS
8370 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8371 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8372 S:      Maintained
8373 T:      git git://github.com/gxt/linux.git
8374 F:      drivers/input/serio/i8042-unicore32io.h
8375 F:      drivers/i2c/busses/i2c-puv3.c
8376 F:      drivers/video/fbdev/fb-puv3.c
8377 F:      drivers/rtc/rtc-puv3.c
8378
8379 PMBUS HARDWARE MONITORING DRIVERS
8380 M:      Guenter Roeck <linux@roeck-us.net>
8381 L:      lm-sensors@lm-sensors.org
8382 W:      http://www.lm-sensors.org/
8383 W:      http://www.roeck-us.net/linux/drivers/
8384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8385 S:      Maintained
8386 F:      Documentation/hwmon/pmbus
8387 F:      drivers/hwmon/pmbus/
8388 F:      include/linux/i2c/pmbus.h
8389
8390 PMC SIERRA MaxRAID DRIVER
8391 L:      linux-scsi@vger.kernel.org
8392 W:      http://www.pmc-sierra.com/
8393 S:      Orphan
8394 F:      drivers/scsi/pmcraid.*
8395
8396 PMC SIERRA PM8001 DRIVER
8397 M:      Jack Wang <jinpu.wang@profitbricks.com>
8398 M:      lindar_liu@usish.com
8399 L:      pmchba@pmcs.com
8400 L:      linux-scsi@vger.kernel.org
8401 S:      Supported
8402 F:      drivers/scsi/pm8001/
8403
8404 POSIX CLOCKS and TIMERS
8405 M:      Thomas Gleixner <tglx@linutronix.de>
8406 L:      linux-kernel@vger.kernel.org
8407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8408 S:      Maintained
8409 F:      fs/timerfd.c
8410 F:      include/linux/timer*
8411 F:      kernel/time/*timer*
8412
8413 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8414 M:      Sebastian Reichel <sre@kernel.org>
8415 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8416 M:      David Woodhouse <dwmw2@infradead.org>
8417 L:      linux-pm@vger.kernel.org
8418 T:      git git://git.infradead.org/battery-2.6.git
8419 S:      Maintained
8420 F:      include/linux/power_supply.h
8421 F:      drivers/power/
8422 X:      drivers/power/avs/
8423
8424 POWER STATE COORDINATION INTERFACE (PSCI)
8425 M:      Mark Rutland <mark.rutland@arm.com>
8426 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8427 L:      linux-arm-kernel@lists.infradead.org
8428 S:      Maintained
8429 F:      drivers/firmware/psci.c
8430 F:      include/linux/psci.h
8431 F:      include/uapi/linux/psci.h
8432
8433 PNP SUPPORT
8434 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8435 S:      Maintained
8436 F:      drivers/pnp/
8437
8438 PPP PROTOCOL DRIVERS AND COMPRESSORS
8439 M:      Paul Mackerras <paulus@samba.org>
8440 L:      linux-ppp@vger.kernel.org
8441 S:      Maintained
8442 F:      drivers/net/ppp/ppp_*
8443
8444 PPP OVER ATM (RFC 2364)
8445 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8446 S:      Maintained
8447 F:      net/atm/pppoatm.c
8448 F:      include/uapi/linux/atmppp.h
8449
8450 PPP OVER ETHERNET
8451 M:      Michal Ostrowski <mostrows@earthlink.net>
8452 S:      Maintained
8453 F:      drivers/net/ppp/pppoe.c
8454 F:      drivers/net/ppp/pppox.c
8455
8456 PPP OVER L2TP
8457 M:      James Chapman <jchapman@katalix.com>
8458 S:      Maintained
8459 F:      net/l2tp/l2tp_ppp.c
8460 F:      include/linux/if_pppol2tp.h
8461 F:      include/uapi/linux/if_pppol2tp.h
8462
8463 PPS SUPPORT
8464 M:      Rodolfo Giometti <giometti@enneenne.com>
8465 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8466 L:      linuxpps@ml.enneenne.com (subscribers-only)
8467 S:      Maintained
8468 F:      Documentation/pps/
8469 F:      drivers/pps/
8470 F:      include/linux/pps*.h
8471
8472 PPTP DRIVER
8473 M:      Dmitry Kozlov <xeb@mail.ru>
8474 L:      netdev@vger.kernel.org
8475 S:      Maintained
8476 F:      drivers/net/ppp/pptp.c
8477 W:      http://sourceforge.net/projects/accel-pptp
8478
8479 PREEMPTIBLE KERNEL
8480 M:      Robert Love <rml@tech9.net>
8481 L:      kpreempt-tech@lists.sourceforge.net
8482 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8483 S:      Supported
8484 F:      Documentation/preempt-locking.txt
8485 F:      include/linux/preempt.h
8486
8487 PRISM54 WIRELESS DRIVER
8488 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8489 L:      linux-wireless@vger.kernel.org
8490 W:      http://wireless.kernel.org/en/users/Drivers/p54
8491 S:      Obsolete
8492 F:      drivers/net/wireless/prism54/
8493
8494 PS3 NETWORK SUPPORT
8495 M:      Geoff Levand <geoff@infradead.org>
8496 L:      netdev@vger.kernel.org
8497 L:      linuxppc-dev@lists.ozlabs.org
8498 S:      Maintained
8499 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8500
8501 PS3 PLATFORM SUPPORT
8502 M:      Geoff Levand <geoff@infradead.org>
8503 L:      linuxppc-dev@lists.ozlabs.org
8504 S:      Maintained
8505 F:      arch/powerpc/boot/ps3*
8506 F:      arch/powerpc/include/asm/lv1call.h
8507 F:      arch/powerpc/include/asm/ps3*.h
8508 F:      arch/powerpc/platforms/ps3/
8509 F:      drivers/*/ps3*
8510 F:      drivers/ps3/
8511 F:      drivers/rtc/rtc-ps3.c
8512 F:      drivers/usb/host/*ps3.c
8513 F:      sound/ppc/snd_ps3*
8514
8515 PS3VRAM DRIVER
8516 M:      Jim Paris <jim@jtan.com>
8517 M:      Geoff Levand <geoff@infradead.org>
8518 L:      linuxppc-dev@lists.ozlabs.org
8519 S:      Maintained
8520 F:      drivers/block/ps3vram.c
8521
8522 PSTORE FILESYSTEM
8523 M:      Anton Vorontsov <anton@enomsg.org>
8524 M:      Colin Cross <ccross@android.com>
8525 M:      Kees Cook <keescook@chromium.org>
8526 M:      Tony Luck <tony.luck@intel.com>
8527 S:      Maintained
8528 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8529 F:      fs/pstore/
8530 F:      include/linux/pstore*
8531 F:      drivers/firmware/efi/efi-pstore.c
8532 F:      drivers/acpi/apei/erst.c
8533
8534 PTP HARDWARE CLOCK SUPPORT
8535 M:      Richard Cochran <richardcochran@gmail.com>
8536 L:      netdev@vger.kernel.org
8537 S:      Maintained
8538 W:      http://linuxptp.sourceforge.net/
8539 F:      Documentation/ABI/testing/sysfs-ptp
8540 F:      Documentation/ptp/*
8541 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8542 F:      drivers/net/phy/dp83640*
8543 F:      drivers/ptp/*
8544 F:      include/linux/ptp_cl*
8545
8546 PTRACE SUPPORT
8547 M:      Roland McGrath <roland@hack.frob.com>
8548 M:      Oleg Nesterov <oleg@redhat.com>
8549 S:      Maintained
8550 F:      include/asm-generic/syscall.h
8551 F:      include/linux/ptrace.h
8552 F:      include/linux/regset.h
8553 F:      include/linux/tracehook.h
8554 F:      include/uapi/linux/ptrace.h
8555 F:      kernel/ptrace.c
8556
8557 PVRUSB2 VIDEO4LINUX DRIVER
8558 M:      Mike Isely <isely@pobox.com>
8559 L:      pvrusb2@isely.net       (subscribers-only)
8560 L:      linux-media@vger.kernel.org
8561 W:      http://www.isely.net/pvrusb2/
8562 T:      git git://linuxtv.org/media_tree.git
8563 S:      Maintained
8564 F:      Documentation/video4linux/README.pvrusb2
8565 F:      drivers/media/usb/pvrusb2/
8566
8567 PWC WEBCAM DRIVER
8568 M:      Hans de Goede <hdegoede@redhat.com>
8569 L:      linux-media@vger.kernel.org
8570 T:      git git://linuxtv.org/media_tree.git
8571 S:      Maintained
8572 F:      drivers/media/usb/pwc/*
8573
8574 PWM FAN DRIVER
8575 M:      Kamil Debski <k.debski@samsung.com>
8576 L:      lm-sensors@lm-sensors.org
8577 S:      Supported
8578 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8579 F:      Documentation/hwmon/pwm-fan
8580 F:      drivers/hwmon/pwm-fan.c
8581
8582 PWM SUBSYSTEM
8583 M:      Thierry Reding <thierry.reding@gmail.com>
8584 L:      linux-pwm@vger.kernel.org
8585 S:      Maintained
8586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8587 F:      Documentation/pwm.txt
8588 F:      Documentation/devicetree/bindings/pwm/
8589 F:      include/linux/pwm.h
8590 F:      drivers/pwm/
8591 F:      drivers/video/backlight/pwm_bl.c
8592 F:      include/linux/pwm_backlight.h
8593
8594 PXA2xx/PXA3xx SUPPORT
8595 M:      Daniel Mack <daniel@zonque.org>
8596 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8597 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8599 T:      git git://github.com/hzhuang1/linux.git
8600 T:      git git://github.com/rjarzmik/linux.git
8601 S:      Maintained
8602 F:      arch/arm/mach-pxa/
8603 F:      drivers/dma/pxa*
8604 F:      drivers/pcmcia/pxa2xx*
8605 F:      drivers/spi/spi-pxa2xx*
8606 F:      drivers/usb/gadget/udc/pxa2*
8607 F:      include/sound/pxa2xx-lib.h
8608 F:      sound/arm/pxa*
8609 F:      sound/soc/pxa/
8610
8611 PXA3xx NAND FLASH DRIVER
8612 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8613 L:      linux-mtd@lists.infradead.org
8614 S:      Maintained
8615 F:      drivers/mtd/nand/pxa3xx_nand.c
8616
8617 MMP SUPPORT
8618 M:      Eric Miao <eric.y.miao@gmail.com>
8619 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8620 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8621 T:      git git://github.com/hzhuang1/linux.git
8622 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8623 S:      Maintained
8624 F:      arch/arm/mach-mmp/
8625
8626 PXA MMCI DRIVER
8627 S:      Orphan
8628
8629 PXA RTC DRIVER
8630 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8631 L:      rtc-linux@googlegroups.com
8632 S:      Maintained
8633
8634 QAT DRIVER
8635 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8636 L:      qat-linux@intel.com
8637 S:      Supported
8638 F:      drivers/crypto/qat/
8639
8640 QIB DRIVER
8641 M:      Mike Marciniszyn <infinipath@intel.com>
8642 L:      linux-rdma@vger.kernel.org
8643 S:      Supported
8644 F:      drivers/infiniband/hw/qib/
8645
8646 QLOGIC QLA1280 SCSI DRIVER
8647 M:      Michael Reed <mdr@sgi.com>
8648 L:      linux-scsi@vger.kernel.org
8649 S:      Maintained
8650 F:      drivers/scsi/qla1280.[ch]
8651
8652 QLOGIC QLA2XXX FC-SCSI DRIVER
8653 M:      qla2xxx-upstream@qlogic.com
8654 L:      linux-scsi@vger.kernel.org
8655 S:      Supported
8656 F:      Documentation/scsi/LICENSE.qla2xxx
8657 F:      drivers/scsi/qla2xxx/
8658
8659 QLOGIC QLA4XXX iSCSI DRIVER
8660 M:      QLogic-Storage-Upstream@qlogic.com
8661 L:      linux-scsi@vger.kernel.org
8662 S:      Supported
8663 F:      Documentation/scsi/LICENSE.qla4xxx
8664 F:      drivers/scsi/qla4xxx/
8665
8666 QLOGIC QLA3XXX NETWORK DRIVER
8667 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8668 M:      Ron Mercer <ron.mercer@qlogic.com>
8669 M:      linux-driver@qlogic.com
8670 L:      netdev@vger.kernel.org
8671 S:      Supported
8672 F:      Documentation/networking/LICENSE.qla3xxx
8673 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8674
8675 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8676 M:      Dept-GELinuxNICDev@qlogic.com
8677 L:      netdev@vger.kernel.org
8678 S:      Supported
8679 F:      drivers/net/ethernet/qlogic/qlcnic/
8680
8681 QLOGIC QLGE 10Gb ETHERNET DRIVER
8682 M:      Harish Patil <harish.patil@qlogic.com>
8683 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8684 M:      Dept-GELinuxNICDev@qlogic.com
8685 M:      linux-driver@qlogic.com
8686 L:      netdev@vger.kernel.org
8687 S:      Supported
8688 F:      drivers/net/ethernet/qlogic/qlge/
8689
8690 QLOGIC QL4xxx ETHERNET DRIVER
8691 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8692 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8693 M:      everest-linux-l2@qlogic.com
8694 L:      netdev@vger.kernel.org
8695 S:      Supported
8696 F:      drivers/net/ethernet/qlogic/qed/
8697 F:      include/linux/qed/
8698 F:      drivers/net/ethernet/qlogic/qede/
8699
8700 QNX4 FILESYSTEM
8701 M:      Anders Larsen <al@alarsen.net>
8702 W:      http://www.alarsen.net/linux/qnx4fs/
8703 S:      Maintained
8704 F:      fs/qnx4/
8705 F:      include/uapi/linux/qnx4_fs.h
8706 F:      include/uapi/linux/qnxtypes.h
8707
8708 QT1010 MEDIA DRIVER
8709 M:      Antti Palosaari <crope@iki.fi>
8710 L:      linux-media@vger.kernel.org
8711 W:      http://linuxtv.org/
8712 W:      http://palosaari.fi/linux/
8713 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8714 T:      git git://linuxtv.org/anttip/media_tree.git
8715 S:      Maintained
8716 F:      drivers/media/tuners/qt1010*
8717
8718 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8719 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8720 L:      linux-wireless@vger.kernel.org
8721 L:      ath9k-devel@lists.ath9k.org
8722 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8723 S:      Supported
8724 F:      drivers/net/wireless/ath/ath9k/
8725
8726 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8727 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8728 L:      ath10k@lists.infradead.org
8729 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8730 T:      git git://github.com/kvalo/ath.git
8731 S:      Supported
8732 F:      drivers/net/wireless/ath/ath10k/
8733
8734 QUALCOMM HEXAGON ARCHITECTURE
8735 M:      Richard Kuo <rkuo@codeaurora.org>
8736 L:      linux-hexagon@vger.kernel.org
8737 S:      Supported
8738 F:      arch/hexagon/
8739
8740 QUALCOMM WCN36XX WIRELESS DRIVER
8741 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8742 L:      wcn36xx@lists.infradead.org
8743 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8744 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8745 S:      Supported
8746 F:      drivers/net/wireless/ath/wcn36xx/
8747
8748 RADOS BLOCK DEVICE (RBD)
8749 M:      Ilya Dryomov <idryomov@gmail.com>
8750 M:      Sage Weil <sage@redhat.com>
8751 M:      Alex Elder <elder@kernel.org>
8752 L:      ceph-devel@vger.kernel.org
8753 W:      http://ceph.com/
8754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8755 T:      git git://github.com/ceph/ceph-client.git
8756 S:      Supported
8757 F:      Documentation/ABI/testing/sysfs-bus-rbd
8758 F:      drivers/block/rbd.c
8759 F:      drivers/block/rbd_types.h
8760
8761 RADEON FRAMEBUFFER DISPLAY DRIVER
8762 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8763 L:      linux-fbdev@vger.kernel.org
8764 S:      Maintained
8765 F:      drivers/video/fbdev/aty/radeon*
8766 F:      include/uapi/linux/radeonfb.h
8767
8768 RADIOSHARK RADIO DRIVER
8769 M:      Hans de Goede <hdegoede@redhat.com>
8770 L:      linux-media@vger.kernel.org
8771 T:      git git://linuxtv.org/media_tree.git
8772 S:      Maintained
8773 F:      drivers/media/radio/radio-shark.c
8774
8775 RADIOSHARK2 RADIO DRIVER
8776 M:      Hans de Goede <hdegoede@redhat.com>
8777 L:      linux-media@vger.kernel.org
8778 T:      git git://linuxtv.org/media_tree.git
8779 S:      Maintained
8780 F:      drivers/media/radio/radio-shark2.c
8781 F:      drivers/media/radio/radio-tea5777.c
8782
8783 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8784 M:      Paul Mackerras <paulus@samba.org>
8785 L:      linux-fbdev@vger.kernel.org
8786 S:      Maintained
8787 F:      drivers/video/fbdev/aty/aty128fb.c
8788
8789 RALINK RT2X00 WIRELESS LAN DRIVER
8790 P:      rt2x00 project
8791 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8792 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8793 L:      linux-wireless@vger.kernel.org
8794 S:      Maintained
8795 F:      drivers/net/wireless/rt2x00/
8796
8797 RAMDISK RAM BLOCK DEVICE DRIVER
8798 M:      Jens Axboe <axboe@kernel.dk>
8799 S:      Maintained
8800 F:      Documentation/blockdev/ramdisk.txt
8801 F:      drivers/block/brd.c
8802
8803 RANDOM NUMBER DRIVER
8804 M:      "Theodore Ts'o" <tytso@mit.edu>
8805 S:      Maintained
8806 F:      drivers/char/random.c
8807
8808 RAPIDIO SUBSYSTEM
8809 M:      Matt Porter <mporter@kernel.crashing.org>
8810 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8811 S:      Maintained
8812 F:      drivers/rapidio/
8813
8814 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8815 L:      linux-wireless@vger.kernel.org
8816 S:      Orphan
8817 F:      drivers/net/wireless/ray*
8818
8819 RCUTORTURE MODULE
8820 M:      Josh Triplett <josh@joshtriplett.org>
8821 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8822 L:      linux-kernel@vger.kernel.org
8823 S:      Supported
8824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8825 F:      Documentation/RCU/torture.txt
8826 F:      kernel/rcu/rcutorture.c
8827
8828 RCUTORTURE TEST FRAMEWORK
8829 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8830 M:      Josh Triplett <josh@joshtriplett.org>
8831 R:      Steven Rostedt <rostedt@goodmis.org>
8832 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8833 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8834 L:      linux-kernel@vger.kernel.org
8835 S:      Supported
8836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8837 F:      tools/testing/selftests/rcutorture
8838
8839 RDC R-321X SoC
8840 M:      Florian Fainelli <florian@openwrt.org>
8841 S:      Maintained
8842
8843 RDC R6040 FAST ETHERNET DRIVER
8844 M:      Florian Fainelli <florian@openwrt.org>
8845 L:      netdev@vger.kernel.org
8846 S:      Maintained
8847 F:      drivers/net/ethernet/rdc/r6040.c
8848
8849 RDS - RELIABLE DATAGRAM SOCKETS
8850 M:      Chien Yen <chien.yen@oracle.com>
8851 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8852 S:      Supported
8853 F:      net/rds/
8854
8855 READ-COPY UPDATE (RCU)
8856 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8857 M:      Josh Triplett <josh@joshtriplett.org>
8858 R:      Steven Rostedt <rostedt@goodmis.org>
8859 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8860 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8861 L:      linux-kernel@vger.kernel.org
8862 W:      http://www.rdrop.com/users/paulmck/RCU/
8863 S:      Supported
8864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8865 F:      Documentation/RCU/
8866 X:      Documentation/RCU/torture.txt
8867 F:      include/linux/rcu*
8868 X:      include/linux/srcu.h
8869 F:      kernel/rcu/
8870 X:      kernel/torture.c
8871
8872 REAL TIME CLOCK (RTC) SUBSYSTEM
8873 M:      Alessandro Zummo <a.zummo@towertech.it>
8874 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8875 L:      rtc-linux@googlegroups.com
8876 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8878 S:      Maintained
8879 F:      Documentation/rtc.txt
8880 F:      drivers/rtc/
8881 F:      include/linux/rtc.h
8882 F:      include/uapi/linux/rtc.h
8883
8884 REALTEK AUDIO CODECS
8885 M:      Bard Liao <bardliao@realtek.com>
8886 M:      Oder Chiou <oder_chiou@realtek.com>
8887 S:      Maintained
8888 F:      sound/soc/codecs/rt*
8889 F:      include/sound/rt*.h
8890
8891 REISERFS FILE SYSTEM
8892 L:      reiserfs-devel@vger.kernel.org
8893 S:      Supported
8894 F:      fs/reiserfs/
8895
8896 REGISTER MAP ABSTRACTION
8897 M:      Mark Brown <broonie@kernel.org>
8898 L:      linux-kernel@vger.kernel.org
8899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8900 S:      Supported
8901 F:      drivers/base/regmap/
8902 F:      include/linux/regmap.h
8903
8904 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8905 M:      Ohad Ben-Cohen <ohad@wizery.com>
8906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8907 S:      Maintained
8908 F:      drivers/remoteproc/
8909 F:      Documentation/remoteproc.txt
8910 F:      include/linux/remoteproc.h
8911
8912 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8913 M:      Ohad Ben-Cohen <ohad@wizery.com>
8914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8915 S:      Maintained
8916 F:      drivers/rpmsg/
8917 F:      Documentation/rpmsg.txt
8918 F:      include/linux/rpmsg.h
8919
8920 RESET CONTROLLER FRAMEWORK
8921 M:      Philipp Zabel <p.zabel@pengutronix.de>
8922 S:      Maintained
8923 F:      drivers/reset/
8924 F:      Documentation/devicetree/bindings/reset/
8925 F:      include/dt-bindings/reset/
8926 F:      include/linux/reset.h
8927 F:      include/linux/reset-controller.h
8928
8929 RFKILL
8930 M:      Johannes Berg <johannes@sipsolutions.net>
8931 L:      linux-wireless@vger.kernel.org
8932 W:      http://wireless.kernel.org/
8933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8935 S:      Maintained
8936 F:      Documentation/rfkill.txt
8937 F:      net/rfkill/
8938
8939 RHASHTABLE
8940 M:      Thomas Graf <tgraf@suug.ch>
8941 L:      netdev@vger.kernel.org
8942 S:      Maintained
8943 F:      lib/rhashtable.c
8944 F:      include/linux/rhashtable.h
8945
8946 RICOH SMARTMEDIA/XD DRIVER
8947 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8948 S:      Maintained
8949 F:      drivers/mtd/nand/r852.c
8950 F:      drivers/mtd/nand/r852.h
8951
8952 RICOH R5C592 MEMORYSTICK DRIVER
8953 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8954 S:      Maintained
8955 F:      drivers/memstick/host/r592.*
8956
8957 ROCCAT DRIVERS
8958 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8959 W:      http://sourceforge.net/projects/roccat/
8960 S:      Maintained
8961 F:      drivers/hid/hid-roccat*
8962 F:      include/linux/hid-roccat*
8963 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8964
8965 ROCKER DRIVER
8966 M:      Jiri Pirko <jiri@resnulli.us>
8967 M:      Scott Feldman <sfeldma@gmail.com>
8968 L:      netdev@vger.kernel.org
8969 S:      Supported
8970 F:      drivers/net/ethernet/rocker/
8971
8972 ROCKETPORT DRIVER
8973 P:      Comtrol Corp.
8974 W:      http://www.comtrol.com
8975 S:      Maintained
8976 F:      Documentation/serial/rocket.txt
8977 F:      drivers/tty/rocket*
8978
8979 ROCKETPORT EXPRESS/INFINITY DRIVER
8980 M:      Kevin Cernekee <cernekee@gmail.com>
8981 L:      linux-serial@vger.kernel.org
8982 S:      Odd Fixes
8983 F:      drivers/tty/serial/rp2.*
8984
8985 ROSE NETWORK LAYER
8986 M:      Ralf Baechle <ralf@linux-mips.org>
8987 L:      linux-hams@vger.kernel.org
8988 W:      http://www.linux-ax25.org/
8989 S:      Maintained
8990 F:      include/net/rose.h
8991 F:      include/uapi/linux/rose.h
8992 F:      net/rose/
8993
8994 RTL2830 MEDIA DRIVER
8995 M:      Antti Palosaari <crope@iki.fi>
8996 L:      linux-media@vger.kernel.org
8997 W:      http://linuxtv.org/
8998 W:      http://palosaari.fi/linux/
8999 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9000 T:      git git://linuxtv.org/anttip/media_tree.git
9001 S:      Maintained
9002 F:      drivers/media/dvb-frontends/rtl2830*
9003
9004 RTL2832 MEDIA DRIVER
9005 M:      Antti Palosaari <crope@iki.fi>
9006 L:      linux-media@vger.kernel.org
9007 W:      http://linuxtv.org/
9008 W:      http://palosaari.fi/linux/
9009 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9010 T:      git git://linuxtv.org/anttip/media_tree.git
9011 S:      Maintained
9012 F:      drivers/media/dvb-frontends/rtl2832*
9013
9014 RTL2832_SDR MEDIA DRIVER
9015 M:      Antti Palosaari <crope@iki.fi>
9016 L:      linux-media@vger.kernel.org
9017 W:      http://linuxtv.org/
9018 W:      http://palosaari.fi/linux/
9019 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9020 T:      git git://linuxtv.org/anttip/media_tree.git
9021 S:      Maintained
9022 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9023
9024 RTL8180 WIRELESS DRIVER
9025 L:      linux-wireless@vger.kernel.org
9026 W:      http://wireless.kernel.org/
9027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9028 S:      Orphan
9029 F:      drivers/net/wireless/rtl818x/rtl8180/
9030
9031 RTL8187 WIRELESS DRIVER
9032 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9033 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9034 M:      Larry Finger <Larry.Finger@lwfinger.net>
9035 L:      linux-wireless@vger.kernel.org
9036 W:      http://wireless.kernel.org/
9037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9038 S:      Maintained
9039 F:      drivers/net/wireless/rtl818x/rtl8187/
9040
9041 RTL8192CE WIRELESS DRIVER
9042 M:      Larry Finger <Larry.Finger@lwfinger.net>
9043 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9044 L:      linux-wireless@vger.kernel.org
9045 W:      http://wireless.kernel.org/
9046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9047 S:      Maintained
9048 F:      drivers/net/wireless/rtlwifi/
9049 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
9050
9051 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9052 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9053 L:      linux-wireless@vger.kernel.org
9054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9055 S:      Maintained
9056 F:      drivers/net/wireless/realtek/rtl8xxxu/
9057
9058 S3 SAVAGE FRAMEBUFFER DRIVER
9059 M:      Antonino Daplas <adaplas@gmail.com>
9060 L:      linux-fbdev@vger.kernel.org
9061 S:      Maintained
9062 F:      drivers/video/fbdev/savage/
9063
9064 S390
9065 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9066 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9067 L:      linux-s390@vger.kernel.org
9068 W:      http://www.ibm.com/developerworks/linux/linux390/
9069 S:      Supported
9070 F:      arch/s390/
9071 F:      drivers/s390/
9072 F:      Documentation/s390/
9073 F:      Documentation/DocBook/s390*
9074
9075 S390 COMMON I/O LAYER
9076 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9077 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9078 L:      linux-s390@vger.kernel.org
9079 W:      http://www.ibm.com/developerworks/linux/linux390/
9080 S:      Supported
9081 F:      drivers/s390/cio/
9082
9083 S390 DASD DRIVER
9084 M:      Stefan Weinhuber <wein@de.ibm.com>
9085 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9086 L:      linux-s390@vger.kernel.org
9087 W:      http://www.ibm.com/developerworks/linux/linux390/
9088 S:      Supported
9089 F:      drivers/s390/block/dasd*
9090 F:      block/partitions/ibm.c
9091
9092 S390 NETWORK DRIVERS
9093 M:      Ursula Braun <ursula.braun@de.ibm.com>
9094 L:      linux-s390@vger.kernel.org
9095 W:      http://www.ibm.com/developerworks/linux/linux390/
9096 S:      Supported
9097 F:      drivers/s390/net/
9098
9099 S390 PCI SUBSYSTEM
9100 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9101 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9102 L:      linux-s390@vger.kernel.org
9103 W:      http://www.ibm.com/developerworks/linux/linux390/
9104 S:      Supported
9105 F:      arch/s390/pci/
9106 F:      drivers/pci/hotplug/s390_pci_hpc.c
9107
9108 S390 ZCRYPT DRIVER
9109 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9110 L:      linux-s390@vger.kernel.org
9111 W:      http://www.ibm.com/developerworks/linux/linux390/
9112 S:      Supported
9113 F:      drivers/s390/crypto/
9114
9115 S390 ZFCP DRIVER
9116 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9117 L:      linux-s390@vger.kernel.org
9118 W:      http://www.ibm.com/developerworks/linux/linux390/
9119 S:      Supported
9120 F:      drivers/s390/scsi/zfcp_*
9121
9122 S390 IUCV NETWORK LAYER
9123 M:      Ursula Braun <ursula.braun@de.ibm.com>
9124 L:      linux-s390@vger.kernel.org
9125 W:      http://www.ibm.com/developerworks/linux/linux390/
9126 S:      Supported
9127 F:      drivers/s390/net/*iucv*
9128 F:      include/net/iucv/
9129 F:      net/iucv/
9130
9131 S390 IOMMU (PCI)
9132 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9133 L:      linux-s390@vger.kernel.org
9134 W:      http://www.ibm.com/developerworks/linux/linux390/
9135 S:      Supported
9136 F:      drivers/iommu/s390-iommu.c
9137
9138 S3C24XX SD/MMC Driver
9139 M:      Ben Dooks <ben-linux@fluff.org>
9140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9141 S:      Supported
9142 F:      drivers/mmc/host/s3cmci.*
9143
9144 SAA6588 RDS RECEIVER DRIVER
9145 M:      Hans Verkuil <hverkuil@xs4all.nl>
9146 L:      linux-media@vger.kernel.org
9147 T:      git git://linuxtv.org/media_tree.git
9148 W:      http://linuxtv.org
9149 S:      Odd Fixes
9150 F:      drivers/media/i2c/saa6588*
9151
9152 SAA7134 VIDEO4LINUX DRIVER
9153 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9154 L:      linux-media@vger.kernel.org
9155 W:      http://linuxtv.org
9156 T:      git git://linuxtv.org/media_tree.git
9157 S:      Odd fixes
9158 F:      Documentation/video4linux/*.saa7134
9159 F:      drivers/media/pci/saa7134/
9160
9161 SAA7146 VIDEO4LINUX-2 DRIVER
9162 M:      Hans Verkuil <hverkuil@xs4all.nl>
9163 L:      linux-media@vger.kernel.org
9164 T:      git git://linuxtv.org/media_tree.git
9165 S:      Maintained
9166 F:      drivers/media/common/saa7146/
9167 F:      drivers/media/pci/saa7146/
9168 F:      include/media/saa7146*
9169
9170 SAMSUNG LAPTOP DRIVER
9171 M:      Corentin Chary <corentin.chary@gmail.com>
9172 L:      platform-driver-x86@vger.kernel.org
9173 S:      Maintained
9174 F:      drivers/platform/x86/samsung-laptop.c
9175
9176 SAMSUNG AUDIO (ASoC) DRIVERS
9177 M:      Sangbeom Kim <sbkim73@samsung.com>
9178 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9179 S:      Supported
9180 F:      sound/soc/samsung/
9181
9182 SAMSUNG FRAMEBUFFER DRIVER
9183 M:      Jingoo Han <jingoohan1@gmail.com>
9184 L:      linux-fbdev@vger.kernel.org
9185 S:      Maintained
9186 F:      drivers/video/fbdev/s3c-fb.c
9187
9188 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9189 M:      Sangbeom Kim <sbkim73@samsung.com>
9190 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9191 L:      linux-kernel@vger.kernel.org
9192 L:      linux-samsung-soc@vger.kernel.org
9193 S:      Supported
9194 F:      drivers/mfd/sec*.c
9195 F:      drivers/regulator/s2m*.c
9196 F:      drivers/regulator/s5m*.c
9197 F:      drivers/clk/clk-s2mps11.c
9198 F:      drivers/rtc/rtc-s5m.c
9199 F:      include/linux/mfd/samsung/
9200 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9201 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
9202
9203 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9204 M:      Kyungmin Park <kyungmin.park@samsung.com>
9205 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9206 L:      linux-media@vger.kernel.org
9207 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9208 S:      Supported
9209 F:      drivers/media/platform/exynos4-is/
9210
9211 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9212 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9213 L:      linux-media@vger.kernel.org
9214 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9215 S:      Maintained
9216 F:      drivers/media/platform/s3c-camif/
9217 F:      include/media/s3c_camif.h
9218
9219 SAMSUNG S5C73M3 CAMERA DRIVER
9220 M:      Kyungmin Park <kyungmin.park@samsung.com>
9221 M:      Andrzej Hajda <a.hajda@samsung.com>
9222 L:      linux-media@vger.kernel.org
9223 S:      Supported
9224 F:      drivers/media/i2c/s5c73m3/*
9225
9226 SAMSUNG S5K5BAF CAMERA DRIVER
9227 M:      Kyungmin Park <kyungmin.park@samsung.com>
9228 M:      Andrzej Hajda <a.hajda@samsung.com>
9229 L:      linux-media@vger.kernel.org
9230 S:      Supported
9231 F:      drivers/media/i2c/s5k5baf.c
9232
9233 SAMSUNG S3FWRN5 NFC DRIVER
9234 M:      Robert Baldyga <r.baldyga@samsung.com>
9235 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9236 S:      Supported
9237 F:      drivers/nfc/s3fwrn5
9238
9239 SAMSUNG SOC CLOCK DRIVERS
9240 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9241 M:      Tomasz Figa <tomasz.figa@gmail.com>
9242 S:      Supported
9243 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9244 F:      drivers/clk/samsung/
9245
9246 SAMSUNG SXGBE DRIVERS
9247 M:      Byungho An <bh74.an@samsung.com>
9248 M:      Girish K S <ks.giri@samsung.com>
9249 M:      Vipul Pandya <vipul.pandya@samsung.com>
9250 S:      Supported
9251 L:      netdev@vger.kernel.org
9252 F:      drivers/net/ethernet/samsung/sxgbe/
9253
9254 SAMSUNG THERMAL DRIVER
9255 M:      Lukasz Majewski <l.majewski@samsung.com>
9256 L:      linux-pm@vger.kernel.org
9257 L:      linux-samsung-soc@vger.kernel.org
9258 S:      Supported
9259 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9260 F:      drivers/thermal/samsung/
9261
9262 SAMSUNG USB2 PHY DRIVER
9263 M:      Kamil Debski <k.debski@samsung.com>
9264 L:      linux-kernel@vger.kernel.org
9265 S:      Supported
9266 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9267 F:      Documentation/phy/samsung-usb2.txt
9268 F:      drivers/phy/phy-exynos4210-usb2.c
9269 F:      drivers/phy/phy-exynos4x12-usb2.c
9270 F:      drivers/phy/phy-exynos5250-usb2.c
9271 F:      drivers/phy/phy-s5pv210-usb2.c
9272 F:      drivers/phy/phy-samsung-usb2.c
9273 F:      drivers/phy/phy-samsung-usb2.h
9274
9275 SERIAL DRIVERS
9276 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9277 L:      linux-serial@vger.kernel.org
9278 S:      Maintained
9279 F:      drivers/tty/serial/
9280
9281 SYNOPSYS DESIGNWARE DMAC DRIVER
9282 M:      Viresh Kumar <vireshk@kernel.org>
9283 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9284 S:      Maintained
9285 F:      include/linux/dma/dw.h
9286 F:      include/linux/platform_data/dma-dw.h
9287 F:      drivers/dma/dw/
9288
9289 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9290 M: Lars Persson <lars.persson@axis.com>
9291 L: netdev@vger.kernel.org
9292 S: Supported
9293 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9294 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9295
9296 SYNOPSYS DESIGNWARE I2C DRIVER
9297 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9298 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9299 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9300 L:      linux-i2c@vger.kernel.org
9301 S:      Maintained
9302 F:      drivers/i2c/busses/i2c-designware-*
9303 F:      include/linux/platform_data/i2c-designware.h
9304
9305 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9306 M:      Seungwon Jeon <tgih.jun@samsung.com>
9307 M:      Jaehoon Chung <jh80.chung@samsung.com>
9308 L:      linux-mmc@vger.kernel.org
9309 S:      Maintained
9310 F:      include/linux/mmc/dw_mmc.h
9311 F:      drivers/mmc/host/dw_mmc*
9312
9313 SYSTEM TRACE MODULE CLASS
9314 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9315 S:      Maintained
9316 F:      Documentation/trace/stm.txt
9317 F:      drivers/hwtracing/stm/
9318 F:      include/linux/stm.h
9319 F:      include/uapi/linux/stm.h
9320
9321 THUNDERBOLT DRIVER
9322 M:      Andreas Noever <andreas.noever@gmail.com>
9323 S:      Maintained
9324 F:      drivers/thunderbolt/
9325
9326 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9327 M:      John Stultz <john.stultz@linaro.org>
9328 M:      Thomas Gleixner <tglx@linutronix.de>
9329 L:      linux-kernel@vger.kernel.org
9330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9331 S:      Supported
9332 F:      include/linux/clocksource.h
9333 F:      include/linux/time.h
9334 F:      include/linux/timex.h
9335 F:      include/uapi/linux/time.h
9336 F:      include/uapi/linux/timex.h
9337 F:      kernel/time/clocksource.c
9338 F:      kernel/time/time*.c
9339 F:      kernel/time/ntp.c
9340 F:      tools/testing/selftests/timers/
9341
9342 SC1200 WDT DRIVER
9343 M:      Zwane Mwaikambo <zwanem@gmail.com>
9344 S:      Maintained
9345 F:      drivers/watchdog/sc1200wdt.c
9346
9347 SCHEDULER
9348 M:      Ingo Molnar <mingo@redhat.com>
9349 M:      Peter Zijlstra <peterz@infradead.org>
9350 L:      linux-kernel@vger.kernel.org
9351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9352 S:      Maintained
9353 F:      kernel/sched/
9354 F:      include/linux/sched.h
9355 F:      include/uapi/linux/sched.h
9356 F:      include/linux/wait.h
9357
9358 SCORE ARCHITECTURE
9359 M:      Chen Liqin <liqin.linux@gmail.com>
9360 M:      Lennox Wu <lennox.wu@gmail.com>
9361 W:      http://www.sunplus.com
9362 S:      Supported
9363 F:      arch/score/
9364
9365 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9366 M:      Sudeep Holla <sudeep.holla@arm.com>
9367 L:      linux-arm-kernel@lists.infradead.org
9368 S:      Maintained
9369 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9370 F:      drivers/clk/clk-scpi.c
9371 F:      drivers/cpufreq/scpi-cpufreq.c
9372 F:      drivers/firmware/arm_scpi.c
9373 F:      include/linux/scpi_protocol.h
9374
9375 SCSI CDROM DRIVER
9376 M:      Jens Axboe <axboe@kernel.dk>
9377 L:      linux-scsi@vger.kernel.org
9378 W:      http://www.kernel.dk
9379 S:      Maintained
9380 F:      drivers/scsi/sr*
9381
9382 SCSI RDMA PROTOCOL (SRP) INITIATOR
9383 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9384 L:      linux-rdma@vger.kernel.org
9385 S:      Supported
9386 W:      http://www.openfabrics.org
9387 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9389 F:      drivers/infiniband/ulp/srp/
9390 F:      include/scsi/srp.h
9391
9392 SCSI SG DRIVER
9393 M:      Doug Gilbert <dgilbert@interlog.com>
9394 L:      linux-scsi@vger.kernel.org
9395 W:      http://sg.danny.cz/sg
9396 S:      Maintained
9397 F:      Documentation/scsi/scsi-generic.txt
9398 F:      drivers/scsi/sg.c
9399 F:      include/scsi/sg.h
9400
9401 SCSI SUBSYSTEM
9402 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9403 L:      linux-scsi@vger.kernel.org
9404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9405 S:      Maintained
9406 F:      drivers/scsi/
9407 F:      include/scsi/
9408
9409 SCSI TAPE DRIVER
9410 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9411 L:      linux-scsi@vger.kernel.org
9412 S:      Maintained
9413 F:      Documentation/scsi/st.txt
9414 F:      drivers/scsi/st.*
9415 F:      drivers/scsi/st_*.h
9416
9417 SCTP PROTOCOL
9418 M:      Vlad Yasevich <vyasevich@gmail.com>
9419 M:      Neil Horman <nhorman@tuxdriver.com>
9420 L:      linux-sctp@vger.kernel.org
9421 W:      http://lksctp.sourceforge.net
9422 S:      Maintained
9423 F:      Documentation/networking/sctp.txt
9424 F:      include/linux/sctp.h
9425 F:      include/uapi/linux/sctp.h
9426 F:      include/net/sctp/
9427 F:      net/sctp/
9428
9429 SCx200 CPU SUPPORT
9430 M:      Jim Cromie <jim.cromie@gmail.com>
9431 S:      Odd Fixes
9432 F:      Documentation/i2c/busses/scx200_acb
9433 F:      arch/x86/platform/scx200/
9434 F:      drivers/watchdog/scx200_wdt.c
9435 F:      drivers/i2c/busses/scx200*
9436 F:      drivers/mtd/maps/scx200_docflash.c
9437 F:      include/linux/scx200.h
9438
9439 SCx200 GPIO DRIVER
9440 M:      Jim Cromie <jim.cromie@gmail.com>
9441 S:      Maintained
9442 F:      drivers/char/scx200_gpio.c
9443 F:      include/linux/scx200_gpio.h
9444
9445 SCx200 HRT CLOCKSOURCE DRIVER
9446 M:      Jim Cromie <jim.cromie@gmail.com>
9447 S:      Maintained
9448 F:      drivers/clocksource/scx200_hrt.c
9449
9450 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9451 M:      Sascha Sommer <saschasommer@freenet.de>
9452 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9453 S:      Maintained
9454 F:      drivers/mmc/host/sdricoh_cs.c
9455
9456 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9457 L:      linux-mmc@vger.kernel.org
9458 S:      Orphan
9459 F:      drivers/mmc/host/sdhci.*
9460 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9461
9462 SECURE COMPUTING
9463 M:      Kees Cook <keescook@chromium.org>
9464 R:      Andy Lutomirski <luto@amacapital.net>
9465 R:      Will Drewry <wad@chromium.org>
9466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9467 S:      Supported
9468 F:      kernel/seccomp.c
9469 F:      include/uapi/linux/seccomp.h
9470 F:      include/linux/seccomp.h
9471 F:      tools/testing/selftests/seccomp/*
9472 K:      \bsecure_computing
9473 K:      \bTIF_SECCOMP\b
9474
9475 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9476 M:      Ben Dooks <ben-linux@fluff.org>
9477 M:      Jaehoon Chung <jh80.chung@samsung.com>
9478 L:      linux-mmc@vger.kernel.org
9479 S:      Maintained
9480 F:      drivers/mmc/host/sdhci-s3c*
9481
9482 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9483 M:      Viresh Kumar <vireshk@kernel.org>
9484 L:      spear-devel@list.st.com
9485 L:      linux-mmc@vger.kernel.org
9486 S:      Maintained
9487 F:      drivers/mmc/host/sdhci-spear.c
9488
9489 SECURITY SUBSYSTEM
9490 M:      James Morris <james.l.morris@oracle.com>
9491 M:      "Serge E. Hallyn" <serge@hallyn.com>
9492 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9494 W:      http://kernsec.org/
9495 S:      Supported
9496 F:      security/
9497
9498 SECURITY CONTACT
9499 M:      Security Officers <security@kernel.org>
9500 S:      Supported
9501
9502 SELINUX SECURITY MODULE
9503 M:      Paul Moore <paul@paul-moore.com>
9504 M:      Stephen Smalley <sds@tycho.nsa.gov>
9505 M:      Eric Paris <eparis@parisplace.org>
9506 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9507 W:      http://selinuxproject.org
9508 T:      git git://git.infradead.org/users/pcmoore/selinux
9509 S:      Supported
9510 F:      include/linux/selinux*
9511 F:      security/selinux/
9512 F:      scripts/selinux/
9513
9514 APPARMOR SECURITY MODULE
9515 M:      John Johansen <john.johansen@canonical.com>
9516 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9517 W:      apparmor.wiki.kernel.org
9518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9519 S:      Supported
9520 F:      security/apparmor/
9521
9522 YAMA SECURITY MODULE
9523 M:      Kees Cook <keescook@chromium.org>
9524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9525 S:      Supported
9526 F:      security/yama/
9527
9528 SENSABLE PHANTOM
9529 M:      Jiri Slaby <jirislaby@gmail.com>
9530 S:      Maintained
9531 F:      drivers/misc/phantom.c
9532 F:      include/uapi/linux/phantom.h
9533
9534 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9535 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9536 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
9537 M:      John Soni Jose <sony.john@avagotech.com>
9538 L:      linux-scsi@vger.kernel.org
9539 W:      http://www.avagotech.com
9540 S:      Supported
9541 F:      drivers/scsi/be2iscsi/
9542
9543 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9544 M:      Sathya Perla <sathya.perla@avagotech.com>
9545 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9546 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9547 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9548 L:      netdev@vger.kernel.org
9549 W:      http://www.emulex.com
9550 S:      Supported
9551 F:      drivers/net/ethernet/emulex/benet/
9552
9553 EMULEX ONECONNECT ROCE DRIVER
9554 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9555 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9556 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9557 L:      linux-rdma@vger.kernel.org
9558 W:      http://www.emulex.com
9559 S:      Supported
9560 F:      drivers/infiniband/hw/ocrdma/
9561
9562 SFC NETWORK DRIVER
9563 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9564 M:      Shradha Shah <sshah@solarflare.com>
9565 L:      netdev@vger.kernel.org
9566 S:      Supported
9567 F:      drivers/net/ethernet/sfc/
9568
9569 SGI GRU DRIVER
9570 M:      Dimitri Sivanich <sivanich@sgi.com>
9571 S:      Maintained
9572 F:      drivers/misc/sgi-gru/
9573
9574 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9575 M:      Pat Gefre <pfg@sgi.com>
9576 L:      linux-ia64@vger.kernel.org
9577 S:      Supported
9578 F:      Documentation/ia64/serial.txt
9579 F:      drivers/tty/serial/ioc?_serial.c
9580 F:      include/linux/ioc?.h
9581
9582 SGI XP/XPC/XPNET DRIVER
9583 M:      Cliff Whickman <cpw@sgi.com>
9584 M:      Robin Holt <robinmholt@gmail.com>
9585 S:      Maintained
9586 F:      drivers/misc/sgi-xp/
9587
9588 SI2157 MEDIA DRIVER
9589 M:      Antti Palosaari <crope@iki.fi>
9590 L:      linux-media@vger.kernel.org
9591 W:      http://linuxtv.org/
9592 W:      http://palosaari.fi/linux/
9593 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9594 T:      git git://linuxtv.org/anttip/media_tree.git
9595 S:      Maintained
9596 F:      drivers/media/tuners/si2157*
9597
9598 SI2168 MEDIA DRIVER
9599 M:      Antti Palosaari <crope@iki.fi>
9600 L:      linux-media@vger.kernel.org
9601 W:      http://linuxtv.org/
9602 W:      http://palosaari.fi/linux/
9603 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9604 T:      git git://linuxtv.org/anttip/media_tree.git
9605 S:      Maintained
9606 F:      drivers/media/dvb-frontends/si2168*
9607
9608 SI470X FM RADIO RECEIVER I2C DRIVER
9609 M:      Hans Verkuil <hverkuil@xs4all.nl>
9610 L:      linux-media@vger.kernel.org
9611 T:      git git://linuxtv.org/media_tree.git
9612 W:      http://linuxtv.org
9613 S:      Odd Fixes
9614 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9615
9616 SI470X FM RADIO RECEIVER USB DRIVER
9617 M:      Hans Verkuil <hverkuil@xs4all.nl>
9618 L:      linux-media@vger.kernel.org
9619 T:      git git://linuxtv.org/media_tree.git
9620 W:      http://linuxtv.org
9621 S:      Maintained
9622 F:      drivers/media/radio/si470x/radio-si470x-common.c
9623 F:      drivers/media/radio/si470x/radio-si470x.h
9624 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9625
9626 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9627 M:      Eduardo Valentin <edubezval@gmail.com>
9628 L:      linux-media@vger.kernel.org
9629 T:      git git://linuxtv.org/media_tree.git
9630 W:      http://linuxtv.org
9631 S:      Odd Fixes
9632 F:      drivers/media/radio/si4713/si4713.?
9633
9634 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9635 M:      Eduardo Valentin <edubezval@gmail.com>
9636 L:      linux-media@vger.kernel.org
9637 T:      git git://linuxtv.org/media_tree.git
9638 W:      http://linuxtv.org
9639 S:      Odd Fixes
9640 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9641
9642 SI4713 FM RADIO TRANSMITTER USB DRIVER
9643 M:      Hans Verkuil <hverkuil@xs4all.nl>
9644 L:      linux-media@vger.kernel.org
9645 T:      git git://linuxtv.org/media_tree.git
9646 W:      http://linuxtv.org
9647 S:      Maintained
9648 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9649
9650 SIANO DVB DRIVER
9651 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9652 L:      linux-media@vger.kernel.org
9653 W:      http://linuxtv.org
9654 T:      git git://linuxtv.org/media_tree.git
9655 S:      Odd fixes
9656 F:      drivers/media/common/siano/
9657 F:      drivers/media/usb/siano/
9658 F:      drivers/media/usb/siano/
9659 F:      drivers/media/mmc/siano/
9660
9661 SIMPLEFB FB DRIVER
9662 M:      Hans de Goede <hdegoede@redhat.com>
9663 L:      linux-fbdev@vger.kernel.org
9664 S:      Maintained
9665 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
9666 F:      drivers/video/fbdev/simplefb.c
9667 F:      include/linux/platform_data/simplefb.h
9668
9669 SH_VEU V4L2 MEM2MEM DRIVER
9670 L:      linux-media@vger.kernel.org
9671 S:      Orphan
9672 F:      drivers/media/platform/sh_veu.c
9673
9674 SH_VOU V4L2 OUTPUT DRIVER
9675 L:      linux-media@vger.kernel.org
9676 S:      Orphan
9677 F:      drivers/media/platform/sh_vou.c
9678 F:      include/media/sh_vou.h
9679
9680 SIMPLE FIRMWARE INTERFACE (SFI)
9681 M:      Len Brown <lenb@kernel.org>
9682 L:      sfi-devel@simplefirmware.org
9683 W:      http://simplefirmware.org/
9684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9685 S:      Supported
9686 F:      arch/x86/platform/sfi/
9687 F:      drivers/sfi/
9688 F:      include/linux/sfi*.h
9689
9690 SIMTEC EB110ATX (Chalice CATS)
9691 P:      Ben Dooks
9692 P:      Vincent Sanders <vince@simtec.co.uk>
9693 M:      Simtec Linux Team <linux@simtec.co.uk>
9694 W:      http://www.simtec.co.uk/products/EB110ATX/
9695 S:      Supported
9696
9697 SIMTEC EB2410ITX (BAST)
9698 P:      Ben Dooks
9699 P:      Vincent Sanders <vince@simtec.co.uk>
9700 M:      Simtec Linux Team <linux@simtec.co.uk>
9701 W:      http://www.simtec.co.uk/products/EB2410ITX/
9702 S:      Supported
9703 F:      arch/arm/mach-s3c24xx/mach-bast.c
9704 F:      arch/arm/mach-s3c24xx/bast-ide.c
9705 F:      arch/arm/mach-s3c24xx/bast-irq.c
9706
9707 TI DAVINCI MACHINE SUPPORT
9708 M:      Sekhar Nori <nsekhar@ti.com>
9709 M:      Kevin Hilman <khilman@deeprootsystems.com>
9710 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9711 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9712 S:      Supported
9713 F:      arch/arm/mach-davinci/
9714 F:      drivers/i2c/busses/i2c-davinci.c
9715
9716 TI DAVINCI SERIES MEDIA DRIVER
9717 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9718 L:      linux-media@vger.kernel.org
9719 W:      http://linuxtv.org/
9720 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9721 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9722 S:      Maintained
9723 F:      drivers/media/platform/davinci/
9724 F:      include/media/davinci/
9725
9726 TI AM437X VPFE DRIVER
9727 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9728 L:      linux-media@vger.kernel.org
9729 W:      http://linuxtv.org/
9730 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9731 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9732 S:      Maintained
9733 F:      drivers/media/platform/am437x/
9734
9735 OV2659 OMNIVISION SENSOR DRIVER
9736 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9737 L:      linux-media@vger.kernel.org
9738 W:      http://linuxtv.org/
9739 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9740 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9741 S:      Maintained
9742 F:      drivers/media/i2c/ov2659.c
9743 F:      include/media/ov2659.h
9744
9745 SILICON MOTION SM712 FRAME BUFFER DRIVER
9746 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9747 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9748 M:      Sudip Mukherjee <sudip@vectorindia.org>
9749 L:      linux-fbdev@vger.kernel.org
9750 S:      Maintained
9751 F:      drivers/video/fbdev/sm712*
9752 F:      Documentation/fb/sm712fb.txt
9753
9754 SIS 190 ETHERNET DRIVER
9755 M:      Francois Romieu <romieu@fr.zoreil.com>
9756 L:      netdev@vger.kernel.org
9757 S:      Maintained
9758 F:      drivers/net/ethernet/sis/sis190.c
9759
9760 SIS 900/7016 FAST ETHERNET DRIVER
9761 M:      Daniele Venzano <venza@brownhat.org>
9762 W:      http://www.brownhat.org/sis900.html
9763 L:      netdev@vger.kernel.org
9764 S:      Maintained
9765 F:      drivers/net/ethernet/sis/sis900.*
9766
9767 SIS FRAMEBUFFER DRIVER
9768 M:      Thomas Winischhofer <thomas@winischhofer.net>
9769 W:      http://www.winischhofer.net/linuxsisvga.shtml
9770 S:      Maintained
9771 F:      Documentation/fb/sisfb.txt
9772 F:      drivers/video/fbdev/sis/
9773 F:      include/video/sisfb.h
9774
9775 SIS USB2VGA DRIVER
9776 M:      Thomas Winischhofer <thomas@winischhofer.net>
9777 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9778 S:      Maintained
9779 F:      drivers/usb/misc/sisusbvga/
9780
9781 SLAB ALLOCATOR
9782 M:      Christoph Lameter <cl@linux.com>
9783 M:      Pekka Enberg <penberg@kernel.org>
9784 M:      David Rientjes <rientjes@google.com>
9785 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9786 M:      Andrew Morton <akpm@linux-foundation.org>
9787 L:      linux-mm@kvack.org
9788 S:      Maintained
9789 F:      include/linux/sl?b*.h
9790 F:      mm/sl?b*
9791
9792 SLEEPABLE READ-COPY UPDATE (SRCU)
9793 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9794 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9795 M:      Josh Triplett <josh@joshtriplett.org>
9796 R:      Steven Rostedt <rostedt@goodmis.org>
9797 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9798 L:      linux-kernel@vger.kernel.org
9799 W:      http://www.rdrop.com/users/paulmck/RCU/
9800 S:      Supported
9801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9802 F:      include/linux/srcu.h
9803 F:      kernel/rcu/srcu.c
9804
9805 SMACK SECURITY MODULE
9806 M:      Casey Schaufler <casey@schaufler-ca.com>
9807 L:      linux-security-module@vger.kernel.org
9808 W:      http://schaufler-ca.com
9809 T:      git git://git.gitorious.org/smack-next/kernel.git
9810 S:      Maintained
9811 F:      Documentation/security/Smack.txt
9812 F:      security/smack/
9813
9814 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9815 M:      Kevin Hilman <khilman@kernel.org>
9816 M:      Nishanth Menon <nm@ti.com>
9817 S:      Maintained
9818 F:      drivers/power/avs/
9819 F:      include/linux/power/smartreflex.h
9820 L:      linux-pm@vger.kernel.org
9821
9822 SMC91x ETHERNET DRIVER
9823 M:      Nicolas Pitre <nico@fluxnic.net>
9824 S:      Odd Fixes
9825 F:      drivers/net/ethernet/smsc/smc91x.*
9826
9827 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9828 M:      Sakari Ailus <sakari.ailus@iki.fi>
9829 L:      linux-media@vger.kernel.org
9830 S:      Maintained
9831 F:      drivers/media/i2c/smiapp/
9832 F:      include/media/smiapp.h
9833 F:      drivers/media/i2c/smiapp-pll.c
9834 F:      drivers/media/i2c/smiapp-pll.h
9835 F:      include/uapi/linux/smiapp.h
9836 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9837
9838 SMM665 HARDWARE MONITOR DRIVER
9839 M:      Guenter Roeck <linux@roeck-us.net>
9840 L:      lm-sensors@lm-sensors.org
9841 S:      Maintained
9842 F:      Documentation/hwmon/smm665
9843 F:      drivers/hwmon/smm665.c
9844
9845 SMSC EMC2103 HARDWARE MONITOR DRIVER
9846 M:      Steve Glendinning <steve.glendinning@shawell.net>
9847 L:      lm-sensors@lm-sensors.org
9848 S:      Maintained
9849 F:      Documentation/hwmon/emc2103
9850 F:      drivers/hwmon/emc2103.c
9851
9852 SMSC SCH5627 HARDWARE MONITOR DRIVER
9853 M:      Hans de Goede <hdegoede@redhat.com>
9854 L:      lm-sensors@lm-sensors.org
9855 S:      Supported
9856 F:      Documentation/hwmon/sch5627
9857 F:      drivers/hwmon/sch5627.c
9858
9859 SMSC47B397 HARDWARE MONITOR DRIVER
9860 M:      Jean Delvare <jdelvare@suse.com>
9861 L:      lm-sensors@lm-sensors.org
9862 S:      Maintained
9863 F:      Documentation/hwmon/smsc47b397
9864 F:      drivers/hwmon/smsc47b397.c
9865
9866 SMSC911x ETHERNET DRIVER
9867 M:      Steve Glendinning <steve.glendinning@shawell.net>
9868 L:      netdev@vger.kernel.org
9869 S:      Maintained
9870 F:      include/linux/smsc911x.h
9871 F:      drivers/net/ethernet/smsc/smsc911x.*
9872
9873 SMSC9420 PCI ETHERNET DRIVER
9874 M:      Steve Glendinning <steve.glendinning@shawell.net>
9875 L:      netdev@vger.kernel.org
9876 S:      Maintained
9877 F:      drivers/net/ethernet/smsc/smsc9420.*
9878
9879 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9880 M:      Steve Glendinning <steve.glendinning@shawell.net>
9881 L:      linux-fbdev@vger.kernel.org
9882 S:      Maintained
9883 F:      drivers/video/fbdev/smscufx.c
9884
9885 SOC-CAMERA V4L2 SUBSYSTEM
9886 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9887 L:      linux-media@vger.kernel.org
9888 T:      git git://linuxtv.org/media_tree.git
9889 S:      Maintained
9890 F:      include/media/soc*
9891 F:      drivers/media/i2c/soc_camera/
9892 F:      drivers/media/platform/soc_camera/
9893
9894 SOEKRIS NET48XX LED SUPPORT
9895 M:      Chris Boot <bootc@bootc.net>
9896 S:      Maintained
9897 F:      drivers/leds/leds-net48xx.c
9898
9899 SOFTLOGIC 6x10 MPEG CODEC
9900 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9901 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9902 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9903 M:      Ismael Luceno <ismael@iodev.co.uk>
9904 L:      linux-media@vger.kernel.org
9905 S:      Supported
9906 F:      drivers/media/pci/solo6x10/
9907
9908 SOFTWARE RAID (Multiple Disks) SUPPORT
9909 M:      Neil Brown <neilb@suse.com>
9910 L:      linux-raid@vger.kernel.org
9911 S:      Supported
9912 F:      drivers/md/
9913 F:      include/linux/raid/
9914 F:      include/uapi/linux/raid/
9915
9916 SONIC NETWORK DRIVER
9917 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9918 L:      netdev@vger.kernel.org
9919 S:      Maintained
9920 F:      drivers/net/ethernet/natsemi/sonic.*
9921
9922 SONICS SILICON BACKPLANE DRIVER (SSB)
9923 M:      Michael Buesch <m@bues.ch>
9924 L:      netdev@vger.kernel.org
9925 S:      Maintained
9926 F:      drivers/ssb/
9927 F:      include/linux/ssb/
9928
9929 SONY VAIO CONTROL DEVICE DRIVER
9930 M:      Mattia Dongili <malattia@linux.it>
9931 L:      platform-driver-x86@vger.kernel.org
9932 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9933 S:      Maintained
9934 F:      Documentation/laptops/sony-laptop.txt
9935 F:      drivers/char/sonypi.c
9936 F:      drivers/platform/x86/sony-laptop.c
9937 F:      include/linux/sony-laptop.h
9938
9939 SONY MEMORYSTICK CARD SUPPORT
9940 M:      Alex Dubov <oakad@yahoo.com>
9941 W:      http://tifmxx.berlios.de/
9942 S:      Maintained
9943 F:      drivers/memstick/host/tifm_ms.c
9944
9945 SONY MEMORYSTICK STANDARD SUPPORT
9946 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9947 S:      Maintained
9948 F:      drivers/memstick/core/ms_block.*
9949
9950 SOUND
9951 M:      Jaroslav Kysela <perex@perex.cz>
9952 M:      Takashi Iwai <tiwai@suse.com>
9953 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9954 W:      http://www.alsa-project.org/
9955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9956 T:      git git://git.alsa-project.org/alsa-kernel.git
9957 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9958 S:      Maintained
9959 F:      Documentation/sound/
9960 F:      include/sound/
9961 F:      include/uapi/sound/
9962 F:      sound/
9963
9964 SOUND - COMPRESSED AUDIO
9965 M:      Vinod Koul <vinod.koul@intel.com>
9966 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9968 S:      Supported
9969 F:      Documentation/sound/alsa/compress_offload.txt
9970 F:      include/sound/compress_driver.h
9971 F:      include/uapi/sound/compress_*
9972 F:      sound/core/compress_offload.c
9973 F:      sound/soc/soc-compress.c
9974
9975 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9976 M:      Liam Girdwood <lgirdwood@gmail.com>
9977 M:      Mark Brown <broonie@kernel.org>
9978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9979 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9980 W:      http://alsa-project.org/main/index.php/ASoC
9981 S:      Supported
9982 F:      Documentation/sound/alsa/soc/
9983 F:      sound/soc/
9984 F:      include/sound/soc*
9985
9986 SOUND - DMAENGINE HELPERS
9987 M:      Lars-Peter Clausen <lars@metafoo.de>
9988 S:      Supported
9989 F:      include/sound/dmaengine_pcm.h
9990 F:      sound/core/pcm_dmaengine.c
9991 F:      sound/soc/soc-generic-dmaengine-pcm.c
9992
9993 SP2 MEDIA DRIVER
9994 M:      Olli Salonen <olli.salonen@iki.fi>
9995 L:      linux-media@vger.kernel.org
9996 W:      http://linuxtv.org/
9997 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9998 S:      Maintained
9999 F:      drivers/media/dvb-frontends/sp2*
10000
10001 SPARC + UltraSPARC (sparc/sparc64)
10002 M:      "David S. Miller" <davem@davemloft.net>
10003 L:      sparclinux@vger.kernel.org
10004 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10007 S:      Maintained
10008 F:      arch/sparc/
10009 F:      drivers/sbus/
10010
10011 SPARC SERIAL DRIVERS
10012 M:      "David S. Miller" <davem@davemloft.net>
10013 L:      sparclinux@vger.kernel.org
10014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10016 S:      Maintained
10017 F:      include/linux/sunserialcore.h
10018 F:      drivers/tty/serial/suncore.c
10019 F:      drivers/tty/serial/sunhv.c
10020 F:      drivers/tty/serial/sunsab.c
10021 F:      drivers/tty/serial/sunsab.h
10022 F:      drivers/tty/serial/sunsu.c
10023 F:      drivers/tty/serial/sunzilog.c
10024 F:      drivers/tty/serial/sunzilog.h
10025
10026 SPARSE CHECKER
10027 M:      "Christopher Li" <sparse@chrisli.org>
10028 L:      linux-sparse@vger.kernel.org
10029 W:      https://sparse.wiki.kernel.org/
10030 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10031 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10032 S:      Maintained
10033 F:      include/linux/compiler.h
10034
10035 SPEAR PLATFORM SUPPORT
10036 M:      Viresh Kumar <vireshk@kernel.org>
10037 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10038 L:      spear-devel@list.st.com
10039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10040 W:      http://www.st.com/spear
10041 S:      Maintained
10042 F:      arch/arm/mach-spear/
10043
10044 SPEAR CLOCK FRAMEWORK SUPPORT
10045 M:      Viresh Kumar <vireshk@kernel.org>
10046 L:      spear-devel@list.st.com
10047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10048 W:      http://www.st.com/spear
10049 S:      Maintained
10050 F:      drivers/clk/spear/
10051
10052 SPI SUBSYSTEM
10053 M:      Mark Brown <broonie@kernel.org>
10054 L:      linux-spi@vger.kernel.org
10055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10056 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10057 S:      Maintained
10058 F:      Documentation/spi/
10059 F:      drivers/spi/
10060 F:      include/linux/spi/
10061 F:      include/uapi/linux/spi/
10062
10063 SPIDERNET NETWORK DRIVER for CELL
10064 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10065 L:      netdev@vger.kernel.org
10066 S:      Supported
10067 F:      Documentation/networking/spider_net.txt
10068 F:      drivers/net/ethernet/toshiba/spider_net*
10069
10070 SPU FILE SYSTEM
10071 M:      Jeremy Kerr <jk@ozlabs.org>
10072 L:      linuxppc-dev@lists.ozlabs.org
10073 W:      http://www.ibm.com/developerworks/power/cell/
10074 S:      Supported
10075 F:      Documentation/filesystems/spufs.txt
10076 F:      arch/powerpc/platforms/cell/spufs/
10077
10078 SQUASHFS FILE SYSTEM
10079 M:      Phillip Lougher <phillip@squashfs.org.uk>
10080 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10081 W:      http://squashfs.org.uk
10082 S:      Maintained
10083 F:      Documentation/filesystems/squashfs.txt
10084 F:      fs/squashfs/
10085
10086 SRM (Alpha) environment access
10087 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10088 S:      Maintained
10089 F:      arch/alpha/kernel/srm_env.c
10090
10091 STABLE BRANCH
10092 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10093 L:      stable@vger.kernel.org
10094 S:      Supported
10095 F:      Documentation/stable_kernel_rules.txt
10096
10097 STAGING SUBSYSTEM
10098 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10100 L:      devel@driverdev.osuosl.org
10101 S:      Supported
10102 F:      drivers/staging/
10103
10104 STAGING - COMEDI
10105 M:      Ian Abbott <abbotti@mev.co.uk>
10106 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10107 S:      Odd Fixes
10108 F:      drivers/staging/comedi/
10109
10110 STAGING - FLARION FT1000 DRIVERS
10111 M:      Marek Belisko <marek.belisko@gmail.com>
10112 S:      Odd Fixes
10113 F:      drivers/staging/ft1000/
10114
10115 STAGING - INDUSTRIAL IO
10116 M:      Jonathan Cameron <jic23@kernel.org>
10117 L:      linux-iio@vger.kernel.org
10118 S:      Odd Fixes
10119 F:      drivers/staging/iio/
10120
10121 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10122 M:      Jarod Wilson <jarod@wilsonet.com>
10123 W:      http://www.lirc.org/
10124 S:      Odd Fixes
10125 F:      drivers/staging/media/lirc/
10126
10127 STAGING - LUSTRE PARALLEL FILESYSTEM
10128 M:      Oleg Drokin <oleg.drokin@intel.com>
10129 M:      Andreas Dilger <andreas.dilger@intel.com>
10130 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10131 W:      http://wiki.lustre.org/
10132 S:      Maintained
10133 F:      drivers/staging/lustre
10134
10135 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10136 M:      Marc Dietrich <marvin24@gmx.de>
10137 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10138 L:      linux-tegra@vger.kernel.org
10139 S:      Maintained
10140 F:      drivers/staging/nvec/
10141
10142 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10143 M:      Jens Frederich <jfrederich@gmail.com>
10144 M:      Daniel Drake <dsd@laptop.org>
10145 M:      Jon Nettleton <jon.nettleton@gmail.com>
10146 W:      http://wiki.laptop.org/go/DCON
10147 S:      Maintained
10148 F:      drivers/staging/olpc_dcon/
10149
10150 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10151 M:      Willy Tarreau <willy@meta-x.org>
10152 S:      Odd Fixes
10153 F:      drivers/staging/panel/
10154
10155 STAGING - REALTEK RTL8712U DRIVERS
10156 M:      Larry Finger <Larry.Finger@lwfinger.net>
10157 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10158 S:      Odd Fixes
10159 F:      drivers/staging/rtl8712/
10160
10161 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10162 M:      Larry Finger <Larry.Finger@lwfinger.net>
10163 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10164 L:      linux-wireless@vger.kernel.org
10165 S:      Maintained
10166 F:      drivers/staging/rtl8723au/
10167
10168 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10169 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10170 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10171 M:      Sudip Mukherjee <sudip@vectorindia.org>
10172 L:      linux-fbdev@vger.kernel.org
10173 S:      Maintained
10174 F:      drivers/staging/sm750fb/
10175
10176 STAGING - SLICOSS
10177 M:      Lior Dotan <liodot@gmail.com>
10178 M:      Christopher Harrer <charrer@alacritech.com>
10179 S:      Odd Fixes
10180 F:      drivers/staging/slicoss/
10181
10182 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10183 M:      William Hubbs <w.d.hubbs@gmail.com>
10184 M:      Chris Brannon <chris@the-brannons.com>
10185 M:      Kirk Reiser <kirk@reisers.ca>
10186 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10187 L:      speakup@linux-speakup.org
10188 W:      http://www.linux-speakup.org/
10189 S:      Odd Fixes
10190 F:      drivers/staging/speakup/
10191
10192 STAGING - VIA VT665X DRIVERS
10193 M:      Forest Bond <forest@alittletooquiet.net>
10194 S:      Odd Fixes
10195 F:      drivers/staging/vt665?/
10196
10197 STAGING - WILC1000 WIFI DRIVER
10198 M:      Johnny Kim <johnny.kim@atmel.com>
10199 M:      Austin Shin <austin.shin@atmel.com>
10200 M:      Chris Park <chris.park@atmel.com>
10201 M:      Tony Cho <tony.cho@atmel.com>
10202 M:      Glen Lee <glen.lee@atmel.com>
10203 M:      Leo Kim <leo.kim@atmel.com>
10204 L:      linux-wireless@vger.kernel.org
10205 S:      Supported
10206 F:      drivers/staging/wilc1000/
10207
10208 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10209 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10210 S:      Odd Fixes
10211 F:      drivers/staging/xgifb/
10212
10213 HFI1 DRIVER
10214 M:      Mike Marciniszyn <infinipath@intel.com>
10215 L:      linux-rdma@vger.kernel.org
10216 S:      Supported
10217 F:      drivers/staging/rdma/hfi1
10218
10219 STARFIRE/DURALAN NETWORK DRIVER
10220 M:      Ion Badulescu <ionut@badula.org>
10221 S:      Odd Fixes
10222 F:      drivers/net/ethernet/adaptec/starfire*
10223
10224 SUN3/3X
10225 M:      Sam Creasey <sammy@sammy.net>
10226 W:      http://sammy.net/sun3/
10227 S:      Maintained
10228 F:      arch/m68k/kernel/*sun3*
10229 F:      arch/m68k/sun3*/
10230 F:      arch/m68k/include/asm/sun3*
10231 F:      drivers/net/ethernet/i825xx/sun3*
10232
10233 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10234 M:      Hans de Goede <hdegoede@redhat.com>
10235 L:      linux-input@vger.kernel.org
10236 S:      Maintained
10237 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10238 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10239
10240 SUNDANCE NETWORK DRIVER
10241 M:      Denis Kirjanov <kda@linux-powerpc.org>
10242 L:      netdev@vger.kernel.org
10243 S:      Maintained
10244 F:      drivers/net/ethernet/dlink/sundance.c
10245
10246 SUPERH
10247 L:      linux-sh@vger.kernel.org
10248 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10249 S:      Orphan
10250 F:      Documentation/sh/
10251 F:      arch/sh/
10252 F:      drivers/sh/
10253
10254 SUSPEND TO RAM
10255 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10256 M:      Len Brown <len.brown@intel.com>
10257 M:      Pavel Machek <pavel@ucw.cz>
10258 L:      linux-pm@vger.kernel.org
10259 S:      Supported
10260 F:      Documentation/power/
10261 F:      arch/x86/kernel/acpi/
10262 F:      drivers/base/power/
10263 F:      kernel/power/
10264 F:      include/linux/suspend.h
10265 F:      include/linux/freezer.h
10266 F:      include/linux/pm.h
10267
10268 SVGA HANDLING
10269 M:      Martin Mares <mj@ucw.cz>
10270 L:      linux-video@atrey.karlin.mff.cuni.cz
10271 S:      Maintained
10272 F:      Documentation/svga.txt
10273 F:      arch/x86/boot/video*
10274
10275 SWIOTLB SUBSYSTEM
10276 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10277 L:      linux-kernel@vger.kernel.org
10278 S:      Supported
10279 F:      lib/swiotlb.c
10280 F:      arch/*/kernel/pci-swiotlb.c
10281 F:      include/linux/swiotlb.h
10282
10283 SWITCHDEV
10284 M:      Jiri Pirko <jiri@resnulli.us>
10285 L:      netdev@vger.kernel.org
10286 S:      Supported
10287 F:      net/switchdev/
10288 F:      include/net/switchdev.h
10289
10290 SYNOPSYS ARC ARCHITECTURE
10291 M:      Vineet Gupta <vgupta@synopsys.com>
10292 L:      linux-snps-arc@lists.infraded.org
10293 S:      Supported
10294 F:      arch/arc/
10295 F:      Documentation/devicetree/bindings/arc/*
10296 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10297 F:      drivers/tty/serial/arc_uart.c
10298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10299
10300 SYNOPSYS ARC SDP platform support
10301 M:      Alexey Brodkin <abrodkin@synopsys.com>
10302 S:      Supported
10303 F:      arch/arc/plat-axs10x
10304 F:      arch/arc/boot/dts/ax*
10305 F:      Documentation/devicetree/bindings/arc/axs10*
10306
10307 SYSTEM CONFIGURATION (SYSCON)
10308 M:      Lee Jones <lee.jones@linaro.org>
10309 M:      Arnd Bergmann <arnd@arndb.de>
10310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10311 S:      Supported
10312 F:      drivers/mfd/syscon.c
10313
10314 SYSV FILESYSTEM
10315 M:      Christoph Hellwig <hch@infradead.org>
10316 S:      Maintained
10317 F:      Documentation/filesystems/sysv-fs.txt
10318 F:      fs/sysv/
10319 F:      include/linux/sysv_fs.h
10320
10321 TARGET SUBSYSTEM
10322 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10323 L:      linux-scsi@vger.kernel.org
10324 L:      target-devel@vger.kernel.org
10325 W:      http://www.linux-iscsi.org
10326 W:      http://groups.google.com/group/linux-iscsi-target-dev
10327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10328 S:      Supported
10329 F:      drivers/target/
10330 F:      include/target/
10331 F:      Documentation/target/
10332
10333 TASKSTATS STATISTICS INTERFACE
10334 M:      Balbir Singh <bsingharora@gmail.com>
10335 S:      Maintained
10336 F:      Documentation/accounting/taskstats*
10337 F:      include/linux/taskstats*
10338 F:      kernel/taskstats.c
10339
10340 TC CLASSIFIER
10341 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10342 L:      netdev@vger.kernel.org
10343 S:      Maintained
10344 F:      include/net/pkt_cls.h
10345 F:      include/uapi/linux/pkt_cls.h
10346 F:      net/sched/
10347
10348 TCP LOW PRIORITY MODULE
10349 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10350 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10351 W:      http://tcp-lp-mod.sourceforge.net/
10352 S:      Maintained
10353 F:      net/ipv4/tcp_lp.c
10354
10355 TDA10071 MEDIA DRIVER
10356 M:      Antti Palosaari <crope@iki.fi>
10357 L:      linux-media@vger.kernel.org
10358 W:      http://linuxtv.org/
10359 W:      http://palosaari.fi/linux/
10360 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10361 T:      git git://linuxtv.org/anttip/media_tree.git
10362 S:      Maintained
10363 F:      drivers/media/dvb-frontends/tda10071*
10364
10365 TDA18212 MEDIA DRIVER
10366 M:      Antti Palosaari <crope@iki.fi>
10367 L:      linux-media@vger.kernel.org
10368 W:      http://linuxtv.org/
10369 W:      http://palosaari.fi/linux/
10370 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10371 T:      git git://linuxtv.org/anttip/media_tree.git
10372 S:      Maintained
10373 F:      drivers/media/tuners/tda18212*
10374
10375 TDA18218 MEDIA DRIVER
10376 M:      Antti Palosaari <crope@iki.fi>
10377 L:      linux-media@vger.kernel.org
10378 W:      http://linuxtv.org/
10379 W:      http://palosaari.fi/linux/
10380 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10381 T:      git git://linuxtv.org/anttip/media_tree.git
10382 S:      Maintained
10383 F:      drivers/media/tuners/tda18218*
10384
10385 TDA18271 MEDIA DRIVER
10386 M:      Michael Krufky <mkrufky@linuxtv.org>
10387 L:      linux-media@vger.kernel.org
10388 W:      http://linuxtv.org/
10389 W:      http://github.com/mkrufky
10390 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10391 T:      git git://linuxtv.org/mkrufky/tuners.git
10392 S:      Maintained
10393 F:      drivers/media/tuners/tda18271*
10394
10395 TDA827x MEDIA DRIVER
10396 M:      Michael Krufky <mkrufky@linuxtv.org>
10397 L:      linux-media@vger.kernel.org
10398 W:      http://linuxtv.org/
10399 W:      http://github.com/mkrufky
10400 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10401 T:      git git://linuxtv.org/mkrufky/tuners.git
10402 S:      Maintained
10403 F:      drivers/media/tuners/tda8290.*
10404
10405 TDA8290 MEDIA DRIVER
10406 M:      Michael Krufky <mkrufky@linuxtv.org>
10407 L:      linux-media@vger.kernel.org
10408 W:      http://linuxtv.org/
10409 W:      http://github.com/mkrufky
10410 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10411 T:      git git://linuxtv.org/mkrufky/tuners.git
10412 S:      Maintained
10413 F:      drivers/media/tuners/tda8290.*
10414
10415 TDA9840 MEDIA DRIVER
10416 M:      Hans Verkuil <hverkuil@xs4all.nl>
10417 L:      linux-media@vger.kernel.org
10418 T:      git git://linuxtv.org/media_tree.git
10419 W:      http://linuxtv.org
10420 S:      Maintained
10421 F:      drivers/media/i2c/tda9840*
10422
10423 TEA5761 TUNER DRIVER
10424 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10425 L:      linux-media@vger.kernel.org
10426 W:      http://linuxtv.org
10427 T:      git git://linuxtv.org/media_tree.git
10428 S:      Odd fixes
10429 F:      drivers/media/tuners/tea5761.*
10430
10431 TEA5767 TUNER DRIVER
10432 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10433 L:      linux-media@vger.kernel.org
10434 W:      http://linuxtv.org
10435 T:      git git://linuxtv.org/media_tree.git
10436 S:      Maintained
10437 F:      drivers/media/tuners/tea5767.*
10438
10439 TEA6415C MEDIA DRIVER
10440 M:      Hans Verkuil <hverkuil@xs4all.nl>
10441 L:      linux-media@vger.kernel.org
10442 T:      git git://linuxtv.org/media_tree.git
10443 W:      http://linuxtv.org
10444 S:      Maintained
10445 F:      drivers/media/i2c/tea6415c*
10446
10447 TEA6420 MEDIA DRIVER
10448 M:      Hans Verkuil <hverkuil@xs4all.nl>
10449 L:      linux-media@vger.kernel.org
10450 T:      git git://linuxtv.org/media_tree.git
10451 W:      http://linuxtv.org
10452 S:      Maintained
10453 F:      drivers/media/i2c/tea6420*
10454
10455 TEAM DRIVER
10456 M:      Jiri Pirko <jiri@resnulli.us>
10457 L:      netdev@vger.kernel.org
10458 S:      Supported
10459 F:      drivers/net/team/
10460 F:      include/linux/if_team.h
10461 F:      include/uapi/linux/if_team.h
10462
10463 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10464 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10465 S:      Maintained
10466 F:      arch/x86/platform/ts5500/
10467
10468 TECHNOTREND USB IR RECEIVER
10469 M:      Sean Young <sean@mess.org>
10470 L:      linux-media@vger.kernel.org
10471 S:      Maintained
10472 F:      drivers/media/rc/ttusbir.c
10473
10474 TEGRA ARCHITECTURE SUPPORT
10475 M:      Stephen Warren <swarren@wwwdotorg.org>
10476 M:      Thierry Reding <thierry.reding@gmail.com>
10477 M:      Alexandre Courbot <gnurou@gmail.com>
10478 L:      linux-tegra@vger.kernel.org
10479 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10481 S:      Supported
10482 N:      [^a-z]tegra
10483
10484 TEGRA CLOCK DRIVER
10485 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10486 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10487 S:      Supported
10488 F:      drivers/clk/tegra/
10489
10490 TEGRA DMA DRIVER
10491 M:      Laxman Dewangan <ldewangan@nvidia.com>
10492 S:      Supported
10493 F:      drivers/dma/tegra20-apb-dma.c
10494
10495 TEGRA I2C DRIVER
10496 M:      Laxman Dewangan <ldewangan@nvidia.com>
10497 S:      Supported
10498 F:      drivers/i2c/busses/i2c-tegra.c
10499
10500 TEGRA IOMMU DRIVERS
10501 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10502 S:      Supported
10503 F:      drivers/iommu/tegra*
10504
10505 TEGRA KBC DRIVER
10506 M:      Rakesh Iyer <riyer@nvidia.com>
10507 M:      Laxman Dewangan <ldewangan@nvidia.com>
10508 S:      Supported
10509 F:      drivers/input/keyboard/tegra-kbc.c
10510
10511 TEGRA PWM DRIVER
10512 M:      Thierry Reding <thierry.reding@gmail.com>
10513 S:      Supported
10514 F:      drivers/pwm/pwm-tegra.c
10515
10516 TEGRA SERIAL DRIVER
10517 M:      Laxman Dewangan <ldewangan@nvidia.com>
10518 S:      Supported
10519 F:      drivers/tty/serial/serial-tegra.c
10520
10521 TEGRA SPI DRIVER
10522 M:      Laxman Dewangan <ldewangan@nvidia.com>
10523 S:      Supported
10524 F:      drivers/spi/spi-tegra*
10525
10526 TEHUTI ETHERNET DRIVER
10527 M:      Andy Gospodarek <andy@greyhouse.net>
10528 L:      netdev@vger.kernel.org
10529 S:      Supported
10530 F:      drivers/net/ethernet/tehuti/*
10531
10532 Telecom Clock Driver for MCPL0010
10533 M:      Mark Gross <mark.gross@intel.com>
10534 S:      Supported
10535 F:      drivers/char/tlclk.c
10536
10537 TENSILICA XTENSA PORT (xtensa)
10538 M:      Chris Zankel <chris@zankel.net>
10539 M:      Max Filippov <jcmvbkbc@gmail.com>
10540 L:      linux-xtensa@linux-xtensa.org
10541 S:      Maintained
10542 F:      arch/xtensa/
10543 F:      drivers/irqchip/irq-xtensa-*
10544
10545 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10546 M:      Hans Verkuil <hverkuil@xs4all.nl>
10547 L:      linux-media@vger.kernel.org
10548 T:      git git://linuxtv.org/media_tree.git
10549 W:      http://linuxtv.org
10550 S:      Maintained
10551 F:      drivers/media/radio/radio-raremono.c
10552
10553 THERMAL
10554 M:      Zhang Rui <rui.zhang@intel.com>
10555 M:      Eduardo Valentin <edubezval@gmail.com>
10556 L:      linux-pm@vger.kernel.org
10557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10559 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10560 S:      Supported
10561 F:      drivers/thermal/
10562 F:      include/linux/thermal.h
10563 F:      include/uapi/linux/thermal.h
10564 F:      include/linux/cpu_cooling.h
10565 F:      Documentation/devicetree/bindings/thermal/
10566
10567 THERMAL/CPU_COOLING
10568 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10569 M:      Viresh Kumar <viresh.kumar@linaro.org>
10570 M:      Javi Merino <javi.merino@arm.com>
10571 L:      linux-pm@vger.kernel.org
10572 S:      Supported
10573 F:      Documentation/thermal/cpu-cooling-api.txt
10574 F:      drivers/thermal/cpu_cooling.c
10575 F:      include/linux/cpu_cooling.h
10576
10577 THINGM BLINK(1) USB RGB LED DRIVER
10578 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10579 S:      Maintained
10580 F:      drivers/hid/hid-thingm.c
10581
10582 THINKPAD ACPI EXTRAS DRIVER
10583 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10584 L:      ibm-acpi-devel@lists.sourceforge.net
10585 L:      platform-driver-x86@vger.kernel.org
10586 W:      http://ibm-acpi.sourceforge.net
10587 W:      http://thinkwiki.org/wiki/Ibm-acpi
10588 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10589 S:      Maintained
10590 F:      drivers/platform/x86/thinkpad_acpi.c
10591
10592 TI BANDGAP AND THERMAL DRIVER
10593 M:      Eduardo Valentin <edubezval@gmail.com>
10594 L:      linux-pm@vger.kernel.org
10595 L:      linux-omap@vger.kernel.org
10596 S:      Maintained
10597 F:      drivers/thermal/ti-soc-thermal/
10598
10599 TI CDCE706 CLOCK DRIVER
10600 M:      Max Filippov <jcmvbkbc@gmail.com>
10601 S:      Maintained
10602 F:      drivers/clk/clk-cdce706.c
10603
10604 TI CLOCK DRIVER
10605 M:      Tero Kristo <t-kristo@ti.com>
10606 L:      linux-omap@vger.kernel.org
10607 S:      Maintained
10608 F:      drivers/clk/ti/
10609 F:      include/linux/clk/ti.h
10610
10611 TI FLASH MEDIA INTERFACE DRIVER
10612 M:      Alex Dubov <oakad@yahoo.com>
10613 S:      Maintained
10614 F:      drivers/misc/tifm*
10615 F:      drivers/mmc/host/tifm_sd.c
10616 F:      include/linux/tifm.h
10617
10618 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10619 M:      Santosh Shilimkar <ssantosh@kernel.org>
10620 L:      linux-kernel@vger.kernel.org
10621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10622 S:      Maintained
10623 F:      drivers/soc/ti/*
10624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10625
10626
10627 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10628 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10629 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10630 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10631 S:      Maintained
10632 F:      sound/soc/codecs/lm49453*
10633 F:      sound/soc/codecs/isabelle*
10634
10635 TI LP855x BACKLIGHT DRIVER
10636 M:      Milo Kim <milo.kim@ti.com>
10637 S:      Maintained
10638 F:      Documentation/backlight/lp855x-driver.txt
10639 F:      drivers/video/backlight/lp855x_bl.c
10640 F:      include/linux/platform_data/lp855x.h
10641
10642 TI LP8727 CHARGER DRIVER
10643 M:      Milo Kim <milo.kim@ti.com>
10644 S:      Maintained
10645 F:      drivers/power/lp8727_charger.c
10646 F:      include/linux/platform_data/lp8727.h
10647
10648 TI LP8788 MFD DRIVER
10649 M:      Milo Kim <milo.kim@ti.com>
10650 S:      Maintained
10651 F:      drivers/iio/adc/lp8788_adc.c
10652 F:      drivers/leds/leds-lp8788.c
10653 F:      drivers/mfd/lp8788*.c
10654 F:      drivers/power/lp8788-charger.c
10655 F:      drivers/regulator/lp8788-*.c
10656 F:      include/linux/mfd/lp8788*.h
10657
10658 TI NETCP ETHERNET DRIVER
10659 M:      Wingman Kwok <w-kwok2@ti.com>
10660 M:      Murali Karicheri <m-karicheri2@ti.com>
10661 L:      netdev@vger.kernel.org
10662 S:      Maintained
10663 F:      drivers/net/ethernet/ti/netcp*
10664
10665 TI TAS571X FAMILY ASoC CODEC DRIVER
10666 M:      Kevin Cernekee <cernekee@chromium.org>
10667 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10668 S:      Odd Fixes
10669 F:      sound/soc/codecs/tas571x*
10670
10671 TI TWL4030 SERIES SOC CODEC DRIVER
10672 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10673 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10674 S:      Maintained
10675 F:      sound/soc/codecs/twl4030*
10676
10677 TI WILINK WIRELESS DRIVERS
10678 L:      linux-wireless@vger.kernel.org
10679 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10680 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10682 S:      Orphan
10683 F:      drivers/net/wireless/ti/
10684 F:      include/linux/wl12xx.h
10685
10686 TIPC NETWORK LAYER
10687 M:      Jon Maloy <jon.maloy@ericsson.com>
10688 M:      Ying Xue <ying.xue@windriver.com>
10689 L:      netdev@vger.kernel.org (core kernel code)
10690 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10691 W:      http://tipc.sourceforge.net/
10692 S:      Maintained
10693 F:      include/uapi/linux/tipc*.h
10694 F:      net/tipc/
10695
10696 TILE ARCHITECTURE
10697 M:      Chris Metcalf <cmetcalf@ezchip.com>
10698 W:      http://www.ezchip.com/scm/
10699 S:      Supported
10700 F:      arch/tile/
10701 F:      drivers/char/tile-srom.c
10702 F:      drivers/edac/tile_edac.c
10703 F:      drivers/net/ethernet/tile/
10704 F:      drivers/rtc/rtc-tile.c
10705 F:      drivers/tty/hvc/hvc_tile.c
10706 F:      drivers/tty/serial/tilegx.c
10707 F:      drivers/usb/host/*-tilegx.c
10708 F:      include/linux/usb/tilegx.h
10709
10710 TLAN NETWORK DRIVER
10711 M:      Samuel Chessman <chessman@tux.org>
10712 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10713 W:      http://sourceforge.net/projects/tlan/
10714 S:      Maintained
10715 F:      Documentation/networking/tlan.txt
10716 F:      drivers/net/ethernet/ti/tlan.*
10717
10718 TOMOYO SECURITY MODULE
10719 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10720 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10721 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10722 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10723 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10724 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10725 W:      http://tomoyo.sourceforge.jp/
10726 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10727 S:      Maintained
10728 F:      security/tomoyo/
10729
10730 TOPSTAR LAPTOP EXTRAS DRIVER
10731 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10732 L:      platform-driver-x86@vger.kernel.org
10733 S:      Maintained
10734 F:      drivers/platform/x86/topstar-laptop.c
10735
10736 TOSHIBA ACPI EXTRAS DRIVER
10737 M:      Azael Avalos <coproscefalo@gmail.com>
10738 L:      platform-driver-x86@vger.kernel.org
10739 S:      Maintained
10740 F:      drivers/platform/x86/toshiba_acpi.c
10741
10742 TOSHIBA BLUETOOTH DRIVER
10743 M:      Azael Avalos <coproscefalo@gmail.com>
10744 L:      platform-driver-x86@vger.kernel.org
10745 S:      Maintained
10746 F:      drivers/platform/x86/toshiba_bluetooth.c
10747
10748 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10749 M:      Azael Avalos <coproscefalo@gmail.com>
10750 L:      platform-driver-x86@vger.kernel.org
10751 S:      Maintained
10752 F:      drivers/platform/x86/toshiba_haps.c
10753
10754 TOSHIBA WMI HOTKEYS DRIVER
10755 M:      Azael Avalos <coproscefalo@gmail.com>
10756 L:      platform-driver-x86@vger.kernel.org
10757 S:      Maintained
10758 F:      drivers/platform/x86/toshiba-wmi.c
10759
10760 TOSHIBA SMM DRIVER
10761 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10762 W:      http://www.buzzard.org.uk/toshiba/
10763 S:      Maintained
10764 F:      drivers/char/toshiba.c
10765 F:      include/linux/toshiba.h
10766 F:      include/uapi/linux/toshiba.h
10767
10768 TOSHIBA TC358743 DRIVER
10769 M:      Mats Randgaard <matrandg@cisco.com>
10770 L:      linux-media@vger.kernel.org
10771 S:      Maintained
10772 F:      drivers/media/i2c/tc358743*
10773 F:      include/media/tc358743.h
10774
10775 TMIO MMC DRIVER
10776 M:      Ian Molton <ian@mnementh.co.uk>
10777 L:      linux-mmc@vger.kernel.org
10778 S:      Maintained
10779 F:      drivers/mmc/host/tmio_mmc*
10780 F:      drivers/mmc/host/sh_mobile_sdhi.c
10781 F:      include/linux/mmc/tmio.h
10782 F:      include/linux/mmc/sh_mobile_sdhi.h
10783
10784 TMP401 HARDWARE MONITOR DRIVER
10785 M:      Guenter Roeck <linux@roeck-us.net>
10786 L:      lm-sensors@lm-sensors.org
10787 S:      Maintained
10788 F:      Documentation/hwmon/tmp401
10789 F:      drivers/hwmon/tmp401.c
10790
10791 TMPFS (SHMEM FILESYSTEM)
10792 M:      Hugh Dickins <hughd@google.com>
10793 L:      linux-mm@kvack.org
10794 S:      Maintained
10795 F:      include/linux/shmem_fs.h
10796 F:      mm/shmem.c
10797
10798 TM6000 VIDEO4LINUX DRIVER
10799 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10800 L:      linux-media@vger.kernel.org
10801 W:      http://linuxtv.org
10802 T:      git git://linuxtv.org/media_tree.git
10803 S:      Odd fixes
10804 F:      drivers/media/usb/tm6000/
10805
10806 TW68 VIDEO4LINUX DRIVER
10807 M:      Hans Verkuil <hverkuil@xs4all.nl>
10808 L:      linux-media@vger.kernel.org
10809 T:      git git://linuxtv.org/media_tree.git
10810 W:      http://linuxtv.org
10811 S:      Odd Fixes
10812 F:      drivers/media/pci/tw68/
10813
10814 TPM DEVICE DRIVER
10815 M:      Peter Huewe <peterhuewe@gmx.de>
10816 M:      Marcel Selhorst <tpmdd@selhorst.net>
10817 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
10818 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10819 W:      http://tpmdd.sourceforge.net
10820 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10821 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10822 T:      https://github.com/PeterHuewe/linux-tpmdd
10823 S:      Maintained
10824 F:      drivers/char/tpm/
10825
10826 TPM IBM_VTPM DEVICE DRIVER
10827 M:      Ashley Lai <ashleydlai@gmail.com>
10828 W:      http://tpmdd.sourceforge.net
10829 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10830 S:      Maintained
10831 F:      drivers/char/tpm/tpm_ibmvtpm*
10832
10833 TRACING
10834 M:      Steven Rostedt <rostedt@goodmis.org>
10835 M:      Ingo Molnar <mingo@redhat.com>
10836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10837 S:      Maintained
10838 F:      Documentation/trace/ftrace.txt
10839 F:      arch/*/*/*/ftrace.h
10840 F:      arch/*/kernel/ftrace.c
10841 F:      include/*/ftrace.h
10842 F:      include/linux/trace*.h
10843 F:      include/trace/
10844 F:      kernel/trace/
10845 F:      tools/testing/selftests/ftrace/
10846
10847 TRIVIAL PATCHES
10848 M:      Jiri Kosina <trivial@kernel.org>
10849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10850 S:      Maintained
10851 K:      ^Subject:.*(?i)trivial
10852
10853 TTY LAYER
10854 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10855 M:      Jiri Slaby <jslaby@suse.com>
10856 S:      Supported
10857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10858 F:      Documentation/serial/
10859 F:      drivers/tty/
10860 F:      drivers/tty/serial/serial_core.c
10861 F:      include/linux/serial_core.h
10862 F:      include/linux/serial.h
10863 F:      include/linux/tty.h
10864 F:      include/uapi/linux/serial_core.h
10865 F:      include/uapi/linux/serial.h
10866 F:      include/uapi/linux/tty.h
10867
10868 TUA9001 MEDIA DRIVER
10869 M:      Antti Palosaari <crope@iki.fi>
10870 L:      linux-media@vger.kernel.org
10871 W:      http://linuxtv.org/
10872 W:      http://palosaari.fi/linux/
10873 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10874 T:      git git://linuxtv.org/anttip/media_tree.git
10875 S:      Maintained
10876 F:      drivers/media/tuners/tua9001*
10877
10878 TULIP NETWORK DRIVERS
10879 M:      Grant Grundler <grundler@parisc-linux.org>
10880 L:      netdev@vger.kernel.org
10881 S:      Maintained
10882 F:      drivers/net/ethernet/dec/tulip/
10883
10884 TUN/TAP driver
10885 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10886 W:      http://vtun.sourceforge.net/tun
10887 S:      Maintained
10888 F:      Documentation/networking/tuntap.txt
10889 F:      arch/um/os-Linux/drivers/
10890
10891 TURBOCHANNEL SUBSYSTEM
10892 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10893 M:      Ralf Baechle <ralf@linux-mips.org>
10894 L:      linux-mips@linux-mips.org
10895 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10896 S:      Maintained
10897 F:      drivers/tc/
10898 F:      include/linux/tc.h
10899
10900 U14-34F SCSI DRIVER
10901 M:      Dario Ballabio <ballabio_dario@emc.com>
10902 L:      linux-scsi@vger.kernel.org
10903 S:      Maintained
10904 F:      drivers/scsi/u14-34f.c
10905
10906 UBI FILE SYSTEM (UBIFS)
10907 M:      Artem Bityutskiy <dedekind1@gmail.com>
10908 M:      Adrian Hunter <adrian.hunter@intel.com>
10909 L:      linux-mtd@lists.infradead.org
10910 T:      git git://git.infradead.org/ubifs-2.6.git
10911 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10912 S:      Maintained
10913 F:      Documentation/filesystems/ubifs.txt
10914 F:      fs/ubifs/
10915
10916 UCLINUX (M68KNOMMU AND COLDFIRE)
10917 M:      Greg Ungerer <gerg@uclinux.org>
10918 W:      http://www.uclinux.org/
10919 L:      linux-m68k@lists.linux-m68k.org
10920 L:      uclinux-dev@uclinux.org  (subscribers-only)
10921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10922 S:      Maintained
10923 F:      arch/m68k/coldfire/
10924 F:      arch/m68k/68*/
10925 F:      arch/m68k/*/*_no.*
10926 F:      arch/m68k/include/asm/*_no.*
10927
10928 UDF FILESYSTEM
10929 M:      Jan Kara <jack@suse.com>
10930 S:      Maintained
10931 F:      Documentation/filesystems/udf.txt
10932 F:      fs/udf/
10933
10934 UFS FILESYSTEM
10935 M:      Evgeniy Dushistov <dushistov@mail.ru>
10936 S:      Maintained
10937 F:      Documentation/filesystems/ufs.txt
10938 F:      fs/ufs/
10939
10940 UHID USERSPACE HID IO DRIVER:
10941 M:      David Herrmann <dh.herrmann@googlemail.com>
10942 L:      linux-input@vger.kernel.org
10943 S:      Maintained
10944 F:      drivers/hid/uhid.c
10945 F:      include/uapi/linux/uhid.h
10946
10947 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10948 L:      linux-usb@vger.kernel.org
10949 S:      Orphan
10950 F:      drivers/uwb/
10951 F:      include/linux/uwb.h
10952 F:      include/linux/uwb/
10953
10954 UNICORE32 ARCHITECTURE:
10955 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10956 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10957 S:      Maintained
10958 T:      git git://github.com/gxt/linux.git
10959 F:      arch/unicore32/
10960
10961 UNIFDEF
10962 M:      Tony Finch <dot@dotat.at>
10963 W:      http://dotat.at/prog/unifdef
10964 S:      Maintained
10965 F:      scripts/unifdef.c
10966
10967 UNIFORM CDROM DRIVER
10968 M:      Jens Axboe <axboe@kernel.dk>
10969 W:      http://www.kernel.dk
10970 S:      Maintained
10971 F:      Documentation/cdrom/
10972 F:      drivers/cdrom/cdrom.c
10973 F:      include/linux/cdrom.h
10974 F:      include/uapi/linux/cdrom.h
10975
10976 UNISYS S-PAR DRIVERS
10977 M:      Benjamin Romer <benjamin.romer@unisys.com>
10978 M:      David Kershner <david.kershner@unisys.com>
10979 L:      sparmaintainer@unisys.com (Unisys internal)
10980 S:      Supported
10981 F:      drivers/staging/unisys/
10982
10983 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10984 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10985 L:      linux-scsi@vger.kernel.org
10986 S:      Supported
10987 F:      Documentation/scsi/ufs.txt
10988 F:      drivers/scsi/ufs/
10989
10990 UNSORTED BLOCK IMAGES (UBI)
10991 M:      Artem Bityutskiy <dedekind1@gmail.com>
10992 M:      Richard Weinberger <richard@nod.at>
10993 W:      http://www.linux-mtd.infradead.org/
10994 L:      linux-mtd@lists.infradead.org
10995 T:      git git://git.infradead.org/ubifs-2.6.git
10996 S:      Supported
10997 F:      drivers/mtd/ubi/
10998 F:      include/linux/mtd/ubi.h
10999 F:      include/uapi/mtd/ubi-user.h
11000
11001 USB ACM DRIVER
11002 M:      Oliver Neukum <oliver@neukum.org>
11003 L:      linux-usb@vger.kernel.org
11004 S:      Maintained
11005 F:      Documentation/usb/acm.txt
11006 F:      drivers/usb/class/cdc-acm.*
11007
11008 USB AR5523 WIRELESS DRIVER
11009 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11010 L:      linux-wireless@vger.kernel.org
11011 S:      Maintained
11012 F:      drivers/net/wireless/ath/ar5523/
11013
11014 USB ATTACHED SCSI
11015 M:      Hans de Goede <hdegoede@redhat.com>
11016 M:      Gerd Hoffmann <kraxel@redhat.com>
11017 L:      linux-usb@vger.kernel.org
11018 L:      linux-scsi@vger.kernel.org
11019 S:      Maintained
11020 F:      drivers/usb/storage/uas.c
11021
11022 USB CDC ETHERNET DRIVER
11023 M:      Oliver Neukum <oliver@neukum.org>
11024 L:      linux-usb@vger.kernel.org
11025 S:      Maintained
11026 F:      drivers/net/usb/cdc_*.c
11027 F:      include/uapi/linux/usb/cdc.h
11028
11029 USB CHAOSKEY DRIVER
11030 M:      Keith Packard <keithp@keithp.com>
11031 L:      linux-usb@vger.kernel.org
11032 S:      Maintained
11033 F:      drivers/usb/misc/chaoskey.c
11034
11035 USB CYPRESS C67X00 DRIVER
11036 M:      Peter Korsgaard <jacmet@sunsite.dk>
11037 L:      linux-usb@vger.kernel.org
11038 S:      Maintained
11039 F:      drivers/usb/c67x00/
11040
11041 USB DAVICOM DM9601 DRIVER
11042 M:      Peter Korsgaard <jacmet@sunsite.dk>
11043 L:      netdev@vger.kernel.org
11044 W:      http://www.linux-usb.org/usbnet
11045 S:      Maintained
11046 F:      drivers/net/usb/dm9601.c
11047
11048 USB DIAMOND RIO500 DRIVER
11049 M:      Cesar Miquel <miquel@df.uba.ar>
11050 L:      rio500-users@lists.sourceforge.net
11051 W:      http://rio500.sourceforge.net
11052 S:      Maintained
11053 F:      drivers/usb/misc/rio500*
11054
11055 USB EHCI DRIVER
11056 M:      Alan Stern <stern@rowland.harvard.edu>
11057 L:      linux-usb@vger.kernel.org
11058 S:      Maintained
11059 F:      Documentation/usb/ehci.txt
11060 F:      drivers/usb/host/ehci*
11061
11062 USB GADGET/PERIPHERAL SUBSYSTEM
11063 M:      Felipe Balbi <balbi@ti.com>
11064 L:      linux-usb@vger.kernel.org
11065 W:      http://www.linux-usb.org/gadget
11066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11067 S:      Maintained
11068 F:      drivers/usb/gadget/
11069 F:      include/linux/usb/gadget*
11070
11071 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11072 M:      Jiri Kosina <jikos@kernel.org>
11073 L:      linux-usb@vger.kernel.org
11074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11075 S:      Maintained
11076 F:      Documentation/hid/hiddev.txt
11077 F:      drivers/hid/usbhid/
11078
11079 USB ISP116X DRIVER
11080 M:      Olav Kongas <ok@artecdesign.ee>
11081 L:      linux-usb@vger.kernel.org
11082 S:      Maintained
11083 F:      drivers/usb/host/isp116x*
11084 F:      include/linux/usb/isp116x.h
11085
11086 USB MASS STORAGE DRIVER
11087 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11088 L:      linux-usb@vger.kernel.org
11089 L:      usb-storage@lists.one-eyed-alien.net
11090 S:      Maintained
11091 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11092 F:      drivers/usb/storage/
11093
11094 USB MIDI DRIVER
11095 M:      Clemens Ladisch <clemens@ladisch.de>
11096 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11097 T:      git git://git.alsa-project.org/alsa-kernel.git
11098 S:      Maintained
11099 F:      sound/usb/midi.*
11100
11101 USB NETWORKING DRIVERS
11102 L:      linux-usb@vger.kernel.org
11103 S:      Odd Fixes
11104 F:      drivers/net/usb/
11105
11106 USB OHCI DRIVER
11107 M:      Alan Stern <stern@rowland.harvard.edu>
11108 L:      linux-usb@vger.kernel.org
11109 S:      Maintained
11110 F:      Documentation/usb/ohci.txt
11111 F:      drivers/usb/host/ohci*
11112
11113 USB OTG FSM (Finite State Machine)
11114 M:      Peter Chen <Peter.Chen@freescale.com>
11115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11116 L:      linux-usb@vger.kernel.org
11117 S:      Maintained
11118 F:      drivers/usb/common/usb-otg-fsm.c
11119
11120 USB OVER IP DRIVER
11121 M:      Valentina Manea <valentina.manea.m@gmail.com>
11122 M:      Shuah Khan <shuah.kh@samsung.com>
11123 L:      linux-usb@vger.kernel.org
11124 S:      Maintained
11125 F:      drivers/usb/usbip/
11126 F:      tools/usb/usbip/
11127
11128 USB PEGASUS DRIVER
11129 M:      Petko Manolov <petkan@nucleusys.com>
11130 L:      linux-usb@vger.kernel.org
11131 L:      netdev@vger.kernel.org
11132 T:      git git://github.com/petkan/pegasus.git
11133 W:      https://github.com/petkan/pegasus
11134 S:      Maintained
11135 F:      drivers/net/usb/pegasus.*
11136
11137 USB PHY LAYER
11138 M:      Felipe Balbi <balbi@ti.com>
11139 L:      linux-usb@vger.kernel.org
11140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11141 S:      Maintained
11142 F:      drivers/usb/phy/
11143
11144 USB PRINTER DRIVER (usblp)
11145 M:      Pete Zaitcev <zaitcev@redhat.com>
11146 L:      linux-usb@vger.kernel.org
11147 S:      Supported
11148 F:      drivers/usb/class/usblp.c
11149
11150 USB RTL8150 DRIVER
11151 M:      Petko Manolov <petkan@nucleusys.com>
11152 L:      linux-usb@vger.kernel.org
11153 L:      netdev@vger.kernel.org
11154 T:      git git://github.com/petkan/rtl8150.git
11155 W:      https://github.com/petkan/rtl8150
11156 S:      Maintained
11157 F:      drivers/net/usb/rtl8150.c
11158
11159 USB SERIAL SUBSYSTEM
11160 M:      Johan Hovold <johan@kernel.org>
11161 L:      linux-usb@vger.kernel.org
11162 S:      Maintained
11163 F:      Documentation/usb/usb-serial.txt
11164 F:      drivers/usb/serial/
11165 F:      include/linux/usb/serial.h
11166
11167 USB SMSC75XX ETHERNET DRIVER
11168 M:      Steve Glendinning <steve.glendinning@shawell.net>
11169 L:      netdev@vger.kernel.org
11170 S:      Maintained
11171 F:      drivers/net/usb/smsc75xx.*
11172
11173 USB SMSC95XX ETHERNET DRIVER
11174 M:      Steve Glendinning <steve.glendinning@shawell.net>
11175 L:      netdev@vger.kernel.org
11176 S:      Maintained
11177 F:      drivers/net/usb/smsc95xx.*
11178
11179 USB SUBSYSTEM
11180 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11181 L:      linux-usb@vger.kernel.org
11182 W:      http://www.linux-usb.org
11183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11184 S:      Supported
11185 F:      Documentation/usb/
11186 F:      drivers/usb/
11187 F:      include/linux/usb.h
11188 F:      include/linux/usb/
11189
11190 USB UHCI DRIVER
11191 M:      Alan Stern <stern@rowland.harvard.edu>
11192 L:      linux-usb@vger.kernel.org
11193 S:      Maintained
11194 F:      drivers/usb/host/uhci*
11195
11196 USB "USBNET" DRIVER FRAMEWORK
11197 M:      Oliver Neukum <oneukum@suse.com>
11198 L:      netdev@vger.kernel.org
11199 W:      http://www.linux-usb.org/usbnet
11200 S:      Maintained
11201 F:      drivers/net/usb/usbnet.c
11202 F:      include/linux/usb/usbnet.h
11203
11204 USB VIDEO CLASS
11205 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11206 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11207 L:      linux-media@vger.kernel.org
11208 T:      git git://linuxtv.org/media_tree.git
11209 W:      http://www.ideasonboard.org/uvc/
11210 S:      Maintained
11211 F:      drivers/media/usb/uvc/
11212 F:      include/uapi/linux/uvcvideo.h
11213
11214 USB VISION DRIVER
11215 M:      Hans Verkuil <hverkuil@xs4all.nl>
11216 L:      linux-media@vger.kernel.org
11217 T:      git git://linuxtv.org/media_tree.git
11218 W:      http://linuxtv.org
11219 S:      Odd Fixes
11220 F:      drivers/media/usb/usbvision/
11221
11222 USB WEBCAM GADGET
11223 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11224 L:      linux-usb@vger.kernel.org
11225 S:      Maintained
11226 F:      drivers/usb/gadget/function/*uvc*
11227 F:      drivers/usb/gadget/legacy/webcam.c
11228
11229 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11230 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11231 L:      linux-wireless@vger.kernel.org
11232 S:      Maintained
11233 F:      drivers/net/wireless/rndis_wlan.c
11234
11235 USB XHCI DRIVER
11236 M:      Mathias Nyman <mathias.nyman@intel.com>
11237 L:      linux-usb@vger.kernel.org
11238 S:      Supported
11239 F:      drivers/usb/host/xhci*
11240 F:      drivers/usb/host/pci-quirks*
11241
11242 USB ZD1201 DRIVER
11243 L:      linux-wireless@vger.kernel.org
11244 W:      http://linux-lc100020.sourceforge.net
11245 S:      Orphan
11246 F:      drivers/net/wireless/zd1201.*
11247
11248 USB ZR364XX DRIVER
11249 M:      Antoine Jacquet <royale@zerezo.com>
11250 L:      linux-usb@vger.kernel.org
11251 L:      linux-media@vger.kernel.org
11252 T:      git git://linuxtv.org/media_tree.git
11253 W:      http://royale.zerezo.com/zr364xx/
11254 S:      Maintained
11255 F:      Documentation/video4linux/zr364xx.txt
11256 F:      drivers/media/usb/zr364xx/
11257
11258 ULPI BUS
11259 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11260 L:      linux-usb@vger.kernel.org
11261 S:      Maintained
11262 F:      drivers/usb/common/ulpi.c
11263 F:      include/linux/ulpi/
11264
11265 USER-MODE LINUX (UML)
11266 M:      Jeff Dike <jdike@addtoit.com>
11267 M:      Richard Weinberger <richard@nod.at>
11268 L:      user-mode-linux-devel@lists.sourceforge.net
11269 L:      user-mode-linux-user@lists.sourceforge.net
11270 W:      http://user-mode-linux.sourceforge.net
11271 S:      Maintained
11272 F:      Documentation/virtual/uml/
11273 F:      arch/um/
11274 F:      arch/x86/um/
11275 F:      fs/hostfs/
11276 F:      fs/hppfs/
11277
11278 USERSPACE I/O (UIO)
11279 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11280 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11281 S:      Maintained
11282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11283 F:      Documentation/DocBook/uio-howto.tmpl
11284 F:      drivers/uio/
11285 F:      include/linux/uio*.h
11286
11287 UTIL-LINUX PACKAGE
11288 M:      Karel Zak <kzak@redhat.com>
11289 L:      util-linux@vger.kernel.org
11290 W:      http://en.wikipedia.org/wiki/Util-linux
11291 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11292 S:      Maintained
11293
11294 UVESAFB DRIVER
11295 M:      Michal Januszewski <spock@gentoo.org>
11296 L:      linux-fbdev@vger.kernel.org
11297 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11298 S:      Maintained
11299 F:      Documentation/fb/uvesafb.txt
11300 F:      drivers/video/fbdev/uvesafb.*
11301
11302 VF610 NAND DRIVER
11303 M:      Stefan Agner <stefan@agner.ch>
11304 L:      linux-mtd@lists.infradead.org
11305 S:      Supported
11306 F:      drivers/mtd/nand/vf610_nfc.c
11307
11308 VFAT/FAT/MSDOS FILESYSTEM
11309 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11310 S:      Maintained
11311 F:      Documentation/filesystems/vfat.txt
11312 F:      fs/fat/
11313
11314 VFIO DRIVER
11315 M:      Alex Williamson <alex.williamson@redhat.com>
11316 L:      kvm@vger.kernel.org
11317 S:      Maintained
11318 F:      Documentation/vfio.txt
11319 F:      drivers/vfio/
11320 F:      include/linux/vfio.h
11321 F:      include/uapi/linux/vfio.h
11322
11323 VFIO PLATFORM DRIVER
11324 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11325 L:      kvm@vger.kernel.org
11326 S:      Maintained
11327 F:      drivers/vfio/platform/
11328
11329 VIDEOBUF2 FRAMEWORK
11330 M:      Pawel Osciak <pawel@osciak.com>
11331 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11332 M:      Kyungmin Park <kyungmin.park@samsung.com>
11333 L:      linux-media@vger.kernel.org
11334 S:      Maintained
11335 F:      drivers/media/v4l2-core/videobuf2-*
11336 F:      include/media/videobuf2-*
11337
11338 VIRTUAL SERIO DEVICE DRIVER
11339 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11340 S:      Maintained
11341 F:      drivers/input/serio/userio.c
11342 F:      include/uapi/linux/userio.h
11343
11344 VIRTIO CONSOLE DRIVER
11345 M:      Amit Shah <amit.shah@redhat.com>
11346 L:      virtualization@lists.linux-foundation.org
11347 S:      Maintained
11348 F:      drivers/char/virtio_console.c
11349 F:      include/linux/virtio_console.h
11350 F:      include/uapi/linux/virtio_console.h
11351
11352 VIRTIO CORE, NET AND BLOCK DRIVERS
11353 M:      "Michael S. Tsirkin" <mst@redhat.com>
11354 L:      virtualization@lists.linux-foundation.org
11355 S:      Maintained
11356 F:      drivers/virtio/
11357 F:      tools/virtio/
11358 F:      drivers/net/virtio_net.c
11359 F:      drivers/block/virtio_blk.c
11360 F:      include/linux/virtio_*.h
11361 F:      include/uapi/linux/virtio_*.h
11362
11363 VIRTIO DRIVERS FOR S390
11364 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11365 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11366 L:      linux-s390@vger.kernel.org
11367 L:      virtualization@lists.linux-foundation.org
11368 L:      kvm@vger.kernel.org
11369 S:      Supported
11370 F:      drivers/s390/virtio/
11371
11372 VIRTIO GPU DRIVER
11373 M:      David Airlie <airlied@linux.ie>
11374 M:      Gerd Hoffmann <kraxel@redhat.com>
11375 L:      dri-devel@lists.freedesktop.org
11376 L:      virtualization@lists.linux-foundation.org
11377 S:      Maintained
11378 F:      drivers/gpu/drm/virtio/
11379 F:      include/uapi/linux/virtio_gpu.h
11380
11381 VIRTIO HOST (VHOST)
11382 M:      "Michael S. Tsirkin" <mst@redhat.com>
11383 L:      kvm@vger.kernel.org
11384 L:      virtualization@lists.linux-foundation.org
11385 L:      netdev@vger.kernel.org
11386 S:      Maintained
11387 F:      drivers/vhost/
11388 F:      include/uapi/linux/vhost.h
11389
11390 VIRTIO INPUT DRIVER
11391 M:      Gerd Hoffmann <kraxel@redhat.com>
11392 S:      Maintained
11393 F:      drivers/virtio/virtio_input.c
11394 F:      include/uapi/linux/virtio_input.h
11395
11396 VIA RHINE NETWORK DRIVER
11397 S:      Orphan
11398 F:      drivers/net/ethernet/via/via-rhine.c
11399
11400 VIA SD/MMC CARD CONTROLLER DRIVER
11401 M:      Bruce Chang <brucechang@via.com.tw>
11402 M:      Harald Welte <HaraldWelte@viatech.com>
11403 S:      Maintained
11404 F:      drivers/mmc/host/via-sdmmc.c
11405
11406 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11407 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11408 L:      linux-fbdev@vger.kernel.org
11409 S:      Maintained
11410 F:      include/linux/via-core.h
11411 F:      include/linux/via-gpio.h
11412 F:      include/linux/via_i2c.h
11413 F:      drivers/video/fbdev/via/
11414
11415 VIA VELOCITY NETWORK DRIVER
11416 M:      Francois Romieu <romieu@fr.zoreil.com>
11417 L:      netdev@vger.kernel.org
11418 S:      Maintained
11419 F:      drivers/net/ethernet/via/via-velocity.*
11420
11421 VIRT LIB
11422 M:      Alex Williamson <alex.williamson@redhat.com>
11423 M:      Paolo Bonzini <pbonzini@redhat.com>
11424 L:      kvm@vger.kernel.org
11425 S:      Supported
11426 F:      virt/lib/
11427
11428 VIVID VIRTUAL VIDEO DRIVER
11429 M:      Hans Verkuil <hverkuil@xs4all.nl>
11430 L:      linux-media@vger.kernel.org
11431 T:      git git://linuxtv.org/media_tree.git
11432 W:      http://linuxtv.org
11433 S:      Maintained
11434 F:      drivers/media/platform/vivid/*
11435
11436 VLAN (802.1Q)
11437 M:      Patrick McHardy <kaber@trash.net>
11438 L:      netdev@vger.kernel.org
11439 S:      Maintained
11440 F:      drivers/net/macvlan.c
11441 F:      include/linux/if_*vlan.h
11442 F:      net/8021q/
11443
11444 VLYNQ BUS
11445 M:      Florian Fainelli <florian@openwrt.org>
11446 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11447 S:      Maintained
11448 F:      drivers/vlynq/vlynq.c
11449 F:      include/linux/vlynq.h
11450
11451 VME SUBSYSTEM
11452 M:      Martyn Welch <martyn@welchs.me.uk>
11453 M:      Manohar Vanga <manohar.vanga@gmail.com>
11454 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11455 L:      devel@driverdev.osuosl.org
11456 S:      Maintained
11457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11458 F:      Documentation/vme_api.txt
11459 F:      drivers/staging/vme/
11460 F:      drivers/vme/
11461 F:      include/linux/vme*
11462
11463 VMWARE HYPERVISOR INTERFACE
11464 M:      Alok Kataria <akataria@vmware.com>
11465 L:      virtualization@lists.linux-foundation.org
11466 S:      Supported
11467 F:      arch/x86/kernel/cpu/vmware.c
11468
11469 VMWARE BALLOON DRIVER
11470 M:      Xavier Deguillard <xdeguillard@vmware.com>
11471 M:      Philip Moltmann <moltmann@vmware.com>
11472 M:      "VMware, Inc." <pv-drivers@vmware.com>
11473 L:      linux-kernel@vger.kernel.org
11474 S:      Maintained
11475 F:      drivers/misc/vmw_balloon.c
11476
11477 VMWARE VMMOUSE SUBDRIVER
11478 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11479 M:      "VMware, Inc." <pv-drivers@vmware.com>
11480 L:      linux-input@vger.kernel.org
11481 S:      Maintained
11482 F:      drivers/input/mouse/vmmouse.c
11483 F:      drivers/input/mouse/vmmouse.h
11484
11485 VMWARE VMXNET3 ETHERNET DRIVER
11486 M:      Shrikrishna Khare <skhare@vmware.com>
11487 M:      "VMware, Inc." <pv-drivers@vmware.com>
11488 L:      netdev@vger.kernel.org
11489 S:      Maintained
11490 F:      drivers/net/vmxnet3/
11491
11492 VMware PVSCSI driver
11493 M:      Arvind Kumar <arvindkumar@vmware.com>
11494 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11495 L:      linux-scsi@vger.kernel.org
11496 S:      Maintained
11497 F:      drivers/scsi/vmw_pvscsi.c
11498 F:      drivers/scsi/vmw_pvscsi.h
11499
11500 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11501 M:      Liam Girdwood <lgirdwood@gmail.com>
11502 M:      Mark Brown <broonie@kernel.org>
11503 L:      linux-kernel@vger.kernel.org
11504 W:      http://www.slimlogic.co.uk/?p=48
11505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11506 S:      Supported
11507 F:      drivers/regulator/
11508 F:      include/linux/regulator/
11509
11510 VRF
11511 M:      David Ahern <dsa@cumulusnetworks.com>
11512 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11513 L:      netdev@vger.kernel.org
11514 S:      Maintained
11515 F:      drivers/net/vrf.c
11516 F:      Documentation/networking/vrf.txt
11517
11518 VT1211 HARDWARE MONITOR DRIVER
11519 M:      Juerg Haefliger <juergh@gmail.com>
11520 L:      lm-sensors@lm-sensors.org
11521 S:      Maintained
11522 F:      Documentation/hwmon/vt1211
11523 F:      drivers/hwmon/vt1211.c
11524
11525 VT8231 HARDWARE MONITOR DRIVER
11526 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11527 L:      lm-sensors@lm-sensors.org
11528 S:      Maintained
11529 F:      drivers/hwmon/vt8231.c
11530
11531 VUB300 USB to SDIO/SD/MMC bridge chip
11532 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11533 L:      linux-mmc@vger.kernel.org
11534 L:      linux-usb@vger.kernel.org
11535 S:      Supported
11536 F:      drivers/mmc/host/vub300.c
11537
11538 W1 DALLAS'S 1-WIRE BUS
11539 M:      Evgeniy Polyakov <zbr@ioremap.net>
11540 S:      Maintained
11541 F:      Documentation/w1/
11542 F:      drivers/w1/
11543
11544 W83791D HARDWARE MONITORING DRIVER
11545 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11546 L:      lm-sensors@lm-sensors.org
11547 S:      Maintained
11548 F:      Documentation/hwmon/w83791d
11549 F:      drivers/hwmon/w83791d.c
11550
11551 W83793 HARDWARE MONITORING DRIVER
11552 M:      Rudolf Marek <r.marek@assembler.cz>
11553 L:      lm-sensors@lm-sensors.org
11554 S:      Maintained
11555 F:      Documentation/hwmon/w83793
11556 F:      drivers/hwmon/w83793.c
11557
11558 W83795 HARDWARE MONITORING DRIVER
11559 M:      Jean Delvare <jdelvare@suse.com>
11560 L:      lm-sensors@lm-sensors.org
11561 S:      Maintained
11562 F:      drivers/hwmon/w83795.c
11563
11564 W83L51xD SD/MMC CARD INTERFACE DRIVER
11565 M:      Pierre Ossman <pierre@ossman.eu>
11566 S:      Maintained
11567 F:      drivers/mmc/host/wbsd.*
11568
11569 WACOM PROTOCOL 4 SERIAL TABLETS
11570 M:      Julian Squires <julian@cipht.net>
11571 M:      Hans de Goede <hdegoede@redhat.com>
11572 L:      linux-input@vger.kernel.org
11573 S:      Maintained
11574 F:      drivers/input/tablet/wacom_serial4.c
11575
11576 WATCHDOG DEVICE DRIVERS
11577 M:      Wim Van Sebroeck <wim@iguana.be>
11578 L:      linux-watchdog@vger.kernel.org
11579 W:      http://www.linux-watchdog.org/
11580 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11581 S:      Maintained
11582 F:      Documentation/watchdog/
11583 F:      drivers/watchdog/
11584 F:      include/linux/watchdog.h
11585 F:      include/uapi/linux/watchdog.h
11586
11587 WD7000 SCSI DRIVER
11588 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11589 L:      linux-scsi@vger.kernel.org
11590 S:      Maintained
11591 F:      drivers/scsi/wd7000.c
11592
11593 WIIMOTE HID DRIVER
11594 M:      David Herrmann <dh.herrmann@googlemail.com>
11595 L:      linux-input@vger.kernel.org
11596 S:      Maintained
11597 F:      drivers/hid/hid-wiimote*
11598
11599 WINBOND CIR DRIVER
11600 M:      David Härdeman <david@hardeman.nu>
11601 S:      Maintained
11602 F:      drivers/media/rc/winbond-cir.c
11603
11604 WIMAX STACK
11605 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11606 M:      linux-wimax@intel.com
11607 L:      wimax@linuxwimax.org (subscribers-only)
11608 S:      Supported
11609 W:      http://linuxwimax.org
11610 F:      Documentation/wimax/README.wimax
11611 F:      include/linux/wimax/debug.h
11612 F:      include/net/wimax.h
11613 F:      include/uapi/linux/wimax.h
11614 F:      net/wimax/
11615
11616 WISTRON LAPTOP BUTTON DRIVER
11617 M:      Miloslav Trmac <mitr@volny.cz>
11618 S:      Maintained
11619 F:      drivers/input/misc/wistron_btns.c
11620
11621 WL3501 WIRELESS PCMCIA CARD DRIVER
11622 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11623 L:      linux-wireless@vger.kernel.org
11624 W:      http://oops.ghostprotocols.net:81/blog
11625 S:      Maintained
11626 F:      drivers/net/wireless/wl3501*
11627
11628 WOLFSON MICROELECTRONICS DRIVERS
11629 L:      patches@opensource.wolfsonmicro.com
11630 T:      git https://github.com/CirrusLogic/linux-drivers.git
11631 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11632 S:      Supported
11633 F:      Documentation/hwmon/wm83??
11634 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11635 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11636 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11637 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11638 F:      drivers/clk/clk-wm83*.c
11639 F:      drivers/extcon/extcon-arizona.c
11640 F:      drivers/leds/leds-wm83*.c
11641 F:      drivers/gpio/gpio-*wm*.c
11642 F:      drivers/gpio/gpio-arizona.c
11643 F:      drivers/hwmon/wm83??-hwmon.c
11644 F:      drivers/input/misc/wm831x-on.c
11645 F:      drivers/input/touchscreen/wm831x-ts.c
11646 F:      drivers/input/touchscreen/wm97*.c
11647 F:      drivers/mfd/arizona*
11648 F:      drivers/mfd/wm*.c
11649 F:      drivers/power/wm83*.c
11650 F:      drivers/rtc/rtc-wm83*.c
11651 F:      drivers/regulator/wm8*.c
11652 F:      drivers/video/backlight/wm83*_bl.c
11653 F:      drivers/watchdog/wm83*_wdt.c
11654 F:      include/linux/mfd/arizona/
11655 F:      include/linux/mfd/wm831x/
11656 F:      include/linux/mfd/wm8350/
11657 F:      include/linux/mfd/wm8400*
11658 F:      include/linux/wm97xx.h
11659 F:      include/sound/wm????.h
11660 F:      sound/soc/codecs/arizona.?
11661 F:      sound/soc/codecs/wm*
11662
11663 WORKQUEUE
11664 M:      Tejun Heo <tj@kernel.org>
11665 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11667 S:      Maintained
11668 F:      include/linux/workqueue.h
11669 F:      kernel/workqueue.c
11670 F:      Documentation/workqueue.txt
11671
11672 X.25 NETWORK LAYER
11673 M:      Andrew Hendry <andrew.hendry@gmail.com>
11674 L:      linux-x25@vger.kernel.org
11675 S:      Odd Fixes
11676 F:      Documentation/networking/x25*
11677 F:      include/net/x25*
11678 F:      net/x25/
11679
11680 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11681 M:      Thomas Gleixner <tglx@linutronix.de>
11682 M:      Ingo Molnar <mingo@redhat.com>
11683 M:      "H. Peter Anvin" <hpa@zytor.com>
11684 M:      x86@kernel.org
11685 L:      linux-kernel@vger.kernel.org
11686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11687 S:      Maintained
11688 F:      Documentation/x86/
11689 F:      arch/x86/
11690
11691 X86 PLATFORM DRIVERS
11692 M:      Darren Hart <dvhart@infradead.org>
11693 L:      platform-driver-x86@vger.kernel.org
11694 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11695 S:      Maintained
11696 F:      drivers/platform/x86/
11697 F:      drivers/platform/olpc/
11698
11699 X86 MCE INFRASTRUCTURE
11700 M:      Tony Luck <tony.luck@intel.com>
11701 M:      Borislav Petkov <bp@alien8.de>
11702 L:      linux-edac@vger.kernel.org
11703 S:      Maintained
11704 F:      arch/x86/kernel/cpu/mcheck/*
11705
11706 X86 MICROCODE UPDATE SUPPORT
11707 M:      Borislav Petkov <bp@alien8.de>
11708 S:      Maintained
11709 F:      arch/x86/kernel/cpu/microcode/*
11710
11711 X86 VDSO
11712 M:      Andy Lutomirski <luto@amacapital.net>
11713 L:      linux-kernel@vger.kernel.org
11714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11715 S:      Maintained
11716 F:      arch/x86/entry/vdso/
11717
11718 XC2028/3028 TUNER DRIVER
11719 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11720 L:      linux-media@vger.kernel.org
11721 W:      http://linuxtv.org
11722 T:      git git://linuxtv.org/media_tree.git
11723 S:      Maintained
11724 F:      drivers/media/tuners/tuner-xc2028.*
11725
11726 XEN HYPERVISOR INTERFACE
11727 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11728 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11729 M:      David Vrabel <david.vrabel@citrix.com>
11730 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11732 S:      Supported
11733 F:      arch/x86/xen/
11734 F:      drivers/*/xen-*front.c
11735 F:      drivers/xen/
11736 F:      arch/x86/include/asm/xen/
11737 F:      include/xen/
11738 F:      include/uapi/xen/
11739
11740 XEN HYPERVISOR ARM
11741 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11742 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11743 S:      Supported
11744 F:      arch/arm/xen/
11745 F:      arch/arm/include/asm/xen/
11746
11747 XEN HYPERVISOR ARM64
11748 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11749 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11750 S:      Supported
11751 F:      arch/arm64/xen/
11752 F:      arch/arm64/include/asm/xen/
11753
11754 XEN NETWORK BACKEND DRIVER
11755 M:      Ian Campbell <ian.campbell@citrix.com>
11756 M:      Wei Liu <wei.liu2@citrix.com>
11757 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11758 L:      netdev@vger.kernel.org
11759 S:      Supported
11760 F:      drivers/net/xen-netback/*
11761
11762 XEN PCI SUBSYSTEM
11763 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11764 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11765 S:      Supported
11766 F:      arch/x86/pci/*xen*
11767 F:      drivers/pci/*xen*
11768
11769 XEN BLOCK SUBSYSTEM
11770 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11771 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11772 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11773 S:      Supported
11774 F:      drivers/block/xen-blkback/*
11775 F:      drivers/block/xen*
11776
11777 XEN PVSCSI DRIVERS
11778 M:      Juergen Gross <jgross@suse.com>
11779 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11780 L:      linux-scsi@vger.kernel.org
11781 S:      Supported
11782 F:      drivers/scsi/xen-scsifront.c
11783 F:      drivers/xen/xen-scsiback.c
11784 F:      include/xen/interface/io/vscsiif.h
11785
11786 XEN SWIOTLB SUBSYSTEM
11787 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11788 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11789 S:      Supported
11790 F:      arch/x86/xen/*swiotlb*
11791 F:      drivers/xen/*swiotlb*
11792
11793 XFS FILESYSTEM
11794 P:      Silicon Graphics Inc
11795 M:      Dave Chinner <david@fromorbit.com>
11796 M:      xfs@oss.sgi.com
11797 L:      xfs@oss.sgi.com
11798 W:      http://oss.sgi.com/projects/xfs
11799 T:      git git://oss.sgi.com/xfs/xfs.git
11800 S:      Supported
11801 F:      Documentation/filesystems/xfs.txt
11802 F:      fs/xfs/
11803
11804 XILINX AXI ETHERNET DRIVER
11805 M:      Anirudha Sarangi <anirudh@xilinx.com>
11806 M:      John Linn <John.Linn@xilinx.com>
11807 S:      Maintained
11808 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11809
11810 XILINX UARTLITE SERIAL DRIVER
11811 M:      Peter Korsgaard <jacmet@sunsite.dk>
11812 L:      linux-serial@vger.kernel.org
11813 S:      Maintained
11814 F:      drivers/tty/serial/uartlite.c
11815
11816 XILINX VIDEO IP CORES
11817 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11818 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11819 L:      linux-media@vger.kernel.org
11820 T:      git git://linuxtv.org/media_tree.git
11821 S:      Supported
11822 F:      Documentation/devicetree/bindings/media/xilinx/
11823 F:      drivers/media/platform/xilinx/
11824 F:      include/uapi/linux/xilinx-v4l2-controls.h
11825
11826 XILLYBUS DRIVER
11827 M:      Eli Billauer <eli.billauer@gmail.com>
11828 L:      linux-kernel@vger.kernel.org
11829 S:      Supported
11830 F:      drivers/char/xillybus/
11831
11832 XTENSA XTFPGA PLATFORM SUPPORT
11833 M:      Max Filippov <jcmvbkbc@gmail.com>
11834 L:      linux-xtensa@linux-xtensa.org
11835 S:      Maintained
11836 F:      drivers/spi/spi-xtensa-xtfpga.c
11837 F:      sound/soc/xtensa/xtfpga-i2s.c
11838
11839 YAM DRIVER FOR AX.25
11840 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11841 L:      linux-hams@vger.kernel.org
11842 S:      Maintained
11843 F:      drivers/net/hamradio/yam*
11844 F:      include/linux/yam.h
11845
11846 YEALINK PHONE DRIVER
11847 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11848 L:      usbb2k-api-dev@nongnu.org
11849 S:      Maintained
11850 F:      Documentation/input/yealink.txt
11851 F:      drivers/input/misc/yealink.*
11852
11853 Z8530 DRIVER FOR AX.25
11854 M:      Joerg Reuter <jreuter@yaina.de>
11855 W:      http://yaina.de/jreuter/
11856 W:      http://www.qsl.net/dl1bke/
11857 L:      linux-hams@vger.kernel.org
11858 S:      Maintained
11859 F:      Documentation/networking/z8530drv.txt
11860 F:      drivers/net/hamradio/*scc.c
11861 F:      drivers/net/hamradio/z8530.h
11862
11863 ZBUD COMPRESSED PAGE ALLOCATOR
11864 M:      Seth Jennings <sjennings@variantweb.net>
11865 L:      linux-mm@kvack.org
11866 S:      Maintained
11867 F:      mm/zbud.c
11868 F:      include/linux/zbud.h
11869
11870 ZD1211RW WIRELESS DRIVER
11871 M:      Daniel Drake <dsd@gentoo.org>
11872 M:      Ulrich Kunitz <kune@deine-taler.de>
11873 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11874 L:      linux-wireless@vger.kernel.org
11875 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11876 S:      Maintained
11877 F:      drivers/net/wireless/zd1211rw/
11878
11879 ZPOOL COMPRESSED PAGE STORAGE API
11880 M:      Dan Streetman <ddstreet@ieee.org>
11881 L:      linux-mm@kvack.org
11882 S:      Maintained
11883 F:      mm/zpool.c
11884 F:      include/linux/zpool.h
11885
11886 ZR36067 VIDEO FOR LINUX DRIVER
11887 L:      mjpeg-users@lists.sourceforge.net
11888 L:      linux-media@vger.kernel.org
11889 W:      http://mjpeg.sourceforge.net/driver-zoran/
11890 T:      hg http://linuxtv.org/hg/v4l-dvb
11891 S:      Odd Fixes
11892 F:      drivers/media/pci/zoran/
11893
11894 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11895 M:      Minchan Kim <minchan@kernel.org>
11896 M:      Nitin Gupta <ngupta@vflare.org>
11897 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11898 L:      linux-kernel@vger.kernel.org
11899 S:      Maintained
11900 F:      drivers/block/zram/
11901 F:      Documentation/blockdev/zram.txt
11902
11903 ZS DECSTATION Z85C30 SERIAL DRIVER
11904 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11905 S:      Maintained
11906 F:      drivers/tty/serial/zs.*
11907
11908 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11909 M:      Minchan Kim <minchan@kernel.org>
11910 M:      Nitin Gupta <ngupta@vflare.org>
11911 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11912 L:      linux-mm@kvack.org
11913 S:      Maintained
11914 F:      mm/zsmalloc.c
11915 F:      include/linux/zsmalloc.h
11916 F:      Documentation/vm/zsmalloc.txt
11917
11918 ZSWAP COMPRESSED SWAP CACHING
11919 M:      Seth Jennings <sjennings@variantweb.net>
11920 L:      linux-mm@kvack.org
11921 S:      Maintained
11922 F:      mm/zswap.c
11923
11924 THE REST
11925 M:      Linus Torvalds <torvalds@linux-foundation.org>
11926 L:      linux-kernel@vger.kernel.org
11927 Q:      http://patchwork.kernel.org/project/LKML/list/
11928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11929 S:      Buried alive in reporters
11930 F:      *
11931 F:      */