]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge remote-tracking branch 'mpc5xxx/next'
[karo-tx-linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      http://linuxtv.org/
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 ACENIC DRIVER
244 M:      Jes Sorensen <jes@trained-monkey.org>
245 L:      linux-acenic@sunsite.dk
246 S:      Maintained
247 F:      drivers/net/ethernet/alteon/acenic*
248
249 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
250 M:      Peter Feuerer <peter@piie.net>
251 L:      platform-driver-x86@vger.kernel.org
252 W:      http://piie.net/?section=acerhdf
253 S:      Maintained
254 F:      drivers/platform/x86/acerhdf.c
255
256 ACER WMI LAPTOP EXTRAS
257 M:      "Lee, Chun-Yi" <jlee@suse.com>
258 L:      platform-driver-x86@vger.kernel.org
259 S:      Maintained
260 F:      drivers/platform/x86/acer-wmi.c
261
262 ACPI
263 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
264 M:      Len Brown <lenb@kernel.org>
265 L:      linux-acpi@vger.kernel.org
266 W:      https://01.org/linux-acpi
267 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
269 S:      Supported
270 F:      drivers/acpi/
271 F:      drivers/pnp/pnpacpi/
272 F:      include/linux/acpi.h
273 F:      include/acpi/
274 F:      Documentation/acpi/
275 F:      Documentation/ABI/testing/sysfs-bus-acpi
276 F:      drivers/pci/*acpi*
277 F:      drivers/pci/*/*acpi*
278 F:      drivers/pci/*/*/*acpi*
279 F:      tools/power/acpi/
280
281 ACPI COMPONENT ARCHITECTURE (ACPICA)
282 M:      Robert Moore <robert.moore@intel.com>
283 M:      Lv Zheng <lv.zheng@intel.com>
284 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
285 L:      linux-acpi@vger.kernel.org
286 L:      devel@acpica.org
287 W:      https://acpica.org/
288 W:      https://github.com/acpica/acpica/
289 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
291 S:      Supported
292 F:      drivers/acpi/acpica/
293 F:      include/acpi/
294 F:      tools/power/acpi/
295
296 ACPI FAN DRIVER
297 M:      Zhang Rui <rui.zhang@intel.com>
298 L:      linux-acpi@vger.kernel.org
299 W:      https://01.org/linux-acpi
300 S:      Supported
301 F:      drivers/acpi/fan.c
302
303 ACPI THERMAL DRIVER
304 M:      Zhang Rui <rui.zhang@intel.com>
305 L:      linux-acpi@vger.kernel.org
306 W:      https://01.org/linux-acpi
307 S:      Supported
308 F:      drivers/acpi/*thermal*
309
310 ACPI VIDEO DRIVER
311 M:      Zhang Rui <rui.zhang@intel.com>
312 L:      linux-acpi@vger.kernel.org
313 W:      https://01.org/linux-acpi
314 S:      Supported
315 F:      drivers/acpi/video.c
316
317 ACPI WMI DRIVER
318 L:      platform-driver-x86@vger.kernel.org
319 S:      Orphan
320 F:      drivers/platform/x86/wmi.c
321
322 AD1889 ALSA SOUND DRIVER
323 M:      Thibaut Varene <T-Bone@parisc-linux.org>
324 W:      http://wiki.parisc-linux.org/AD1889
325 L:      linux-parisc@vger.kernel.org
326 S:      Maintained
327 F:      sound/pci/ad1889.*
328
329 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
330 M:      Michael Hennerich <michael.hennerich@analog.com>
331 W:      http://wiki.analog.com/AD5254
332 W:      http://ez.analog.com/community/linux-device-drivers
333 S:      Supported
334 F:      drivers/misc/ad525x_dpot.c
335
336 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
337 M:      Michael Hennerich <michael.hennerich@analog.com>
338 W:      http://wiki.analog.com/AD5398
339 W:      http://ez.analog.com/community/linux-device-drivers
340 S:      Supported
341 F:      drivers/regulator/ad5398.c
342
343 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
344 M:      Michael Hennerich <michael.hennerich@analog.com>
345 W:      http://wiki.analog.com/AD7142
346 W:      http://ez.analog.com/community/linux-device-drivers
347 S:      Supported
348 F:      drivers/input/misc/ad714x.c
349
350 AD7877 TOUCHSCREEN DRIVER
351 M:      Michael Hennerich <michael.hennerich@analog.com>
352 W:      http://wiki.analog.com/AD7877
353 W:      http://ez.analog.com/community/linux-device-drivers
354 S:      Supported
355 F:      drivers/input/touchscreen/ad7877.c
356
357 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
358 M:      Michael Hennerich <michael.hennerich@analog.com>
359 W:      http://wiki.analog.com/AD7879
360 W:      http://ez.analog.com/community/linux-device-drivers
361 S:      Supported
362 F:      drivers/input/touchscreen/ad7879.c
363
364 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
365 M:      Jiri Kosina <jikos@kernel.org>
366 S:      Maintained
367
368 ADM1025 HARDWARE MONITOR DRIVER
369 M:      Jean Delvare <jdelvare@suse.com>
370 L:      lm-sensors@lm-sensors.org
371 S:      Maintained
372 F:      Documentation/hwmon/adm1025
373 F:      drivers/hwmon/adm1025.c
374
375 ADM1029 HARDWARE MONITOR DRIVER
376 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
377 L:      lm-sensors@lm-sensors.org
378 S:      Maintained
379 F:      drivers/hwmon/adm1029.c
380
381 ADM8211 WIRELESS DRIVER
382 L:      linux-wireless@vger.kernel.org
383 W:      http://wireless.kernel.org/
384 S:      Orphan
385 F:      drivers/net/wireless/adm8211.*
386
387 ADP1653 FLASH CONTROLLER DRIVER
388 M:      Sakari Ailus <sakari.ailus@iki.fi>
389 L:      linux-media@vger.kernel.org
390 S:      Maintained
391 F:      drivers/media/i2c/adp1653.c
392 F:      include/media/adp1653.h
393
394 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
395 M:      Michael Hennerich <michael.hennerich@analog.com>
396 W:      http://wiki.analog.com/ADP5520
397 W:      http://ez.analog.com/community/linux-device-drivers
398 S:      Supported
399 F:      drivers/mfd/adp5520.c
400 F:      drivers/video/backlight/adp5520_bl.c
401 F:      drivers/leds/leds-adp5520.c
402 F:      drivers/gpio/gpio-adp5520.c
403 F:      drivers/input/keyboard/adp5520-keys.c
404
405 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
406 M:      Michael Hennerich <michael.hennerich@analog.com>
407 W:      http://wiki.analog.com/ADP5588
408 W:      http://ez.analog.com/community/linux-device-drivers
409 S:      Supported
410 F:      drivers/input/keyboard/adp5588-keys.c
411 F:      drivers/gpio/gpio-adp5588.c
412
413 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
414 M:      Michael Hennerich <michael.hennerich@analog.com>
415 W:      http://wiki.analog.com/ADP8860
416 W:      http://ez.analog.com/community/linux-device-drivers
417 S:      Supported
418 F:      drivers/video/backlight/adp8860_bl.c
419
420 ADS1015 HARDWARE MONITOR DRIVER
421 M:      Dirk Eibach <eibach@gdsys.de>
422 L:      lm-sensors@lm-sensors.org
423 S:      Maintained
424 F:      Documentation/hwmon/ads1015
425 F:      drivers/hwmon/ads1015.c
426 F:      include/linux/i2c/ads1015.h
427
428 ADT746X FAN DRIVER
429 M:      Colin Leroy <colin@colino.net>
430 S:      Maintained
431 F:      drivers/macintosh/therm_adt746x.c
432
433 ADT7475 HARDWARE MONITOR DRIVER
434 M:      Jean Delvare <jdelvare@suse.com>
435 L:      lm-sensors@lm-sensors.org
436 S:      Maintained
437 F:      Documentation/hwmon/adt7475
438 F:      drivers/hwmon/adt7475.c
439
440 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
441 M:      Michael Hennerich <michael.hennerich@analog.com>
442 W:      http://wiki.analog.com/ADXL345
443 W:      http://ez.analog.com/community/linux-device-drivers
444 S:      Supported
445 F:      drivers/input/misc/adxl34x.c
446
447 ADVANSYS SCSI DRIVER
448 M:      Matthew Wilcox <matthew@wil.cx>
449 M:      Hannes Reinecke <hare@suse.com>
450 L:      linux-scsi@vger.kernel.org
451 S:      Maintained
452 F:      Documentation/scsi/advansys.txt
453 F:      drivers/scsi/advansys.c
454
455 AEDSP16 DRIVER
456 M:      Riccardo Facchetti <fizban@tin.it>
457 S:      Maintained
458 F:      sound/oss/aedsp16.c
459
460 AF9013 MEDIA DRIVER
461 M:      Antti Palosaari <crope@iki.fi>
462 L:      linux-media@vger.kernel.org
463 W:      http://linuxtv.org/
464 W:      http://palosaari.fi/linux/
465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
466 T:      git git://linuxtv.org/anttip/media_tree.git
467 S:      Maintained
468 F:      drivers/media/dvb-frontends/af9013*
469
470 AF9033 MEDIA DRIVER
471 M:      Antti Palosaari <crope@iki.fi>
472 L:      linux-media@vger.kernel.org
473 W:      http://linuxtv.org/
474 W:      http://palosaari.fi/linux/
475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
476 T:      git git://linuxtv.org/anttip/media_tree.git
477 S:      Maintained
478 F:      drivers/media/dvb-frontends/af9033*
479
480 AFFS FILE SYSTEM
481 L:      linux-fsdevel@vger.kernel.org
482 S:      Orphan
483 F:      Documentation/filesystems/affs.txt
484 F:      fs/affs/
485
486 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
487 M:      David Howells <dhowells@redhat.com>
488 L:      linux-afs@lists.infradead.org
489 S:      Supported
490 F:      fs/afs/
491 F:      include/net/af_rxrpc.h
492 F:      net/rxrpc/af_rxrpc.c
493
494 AGPGART DRIVER
495 M:      David Airlie <airlied@linux.ie>
496 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
497 S:      Maintained
498 F:      drivers/char/agp/
499 F:      include/linux/agp*
500 F:      include/uapi/linux/agp*
501
502 AHA152X SCSI DRIVER
503 M:      "Juergen E. Fischer" <fischer@norbit.de>
504 L:      linux-scsi@vger.kernel.org
505 S:      Maintained
506 F:      drivers/scsi/aha152x*
507 F:      drivers/scsi/pcmcia/aha152x*
508
509 AIC7XXX / AIC79XX SCSI DRIVER
510 M:      Hannes Reinecke <hare@suse.com>
511 L:      linux-scsi@vger.kernel.org
512 S:      Maintained
513 F:      drivers/scsi/aic7xxx/
514
515 AIMSLAB FM RADIO RECEIVER DRIVER
516 M:      Hans Verkuil <hverkuil@xs4all.nl>
517 L:      linux-media@vger.kernel.org
518 T:      git git://linuxtv.org/media_tree.git
519 W:      http://linuxtv.org
520 S:      Maintained
521 F:      drivers/media/radio/radio-aimslab*
522
523 AIO
524 M:      Benjamin LaHaise <bcrl@kvack.org>
525 L:      linux-aio@kvack.org
526 S:      Supported
527 F:      fs/aio.c
528 F:      include/linux/*aio*.h
529
530 AIRSPY MEDIA DRIVER
531 M:      Antti Palosaari <crope@iki.fi>
532 L:      linux-media@vger.kernel.org
533 W:      http://linuxtv.org/
534 W:      http://palosaari.fi/linux/
535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
536 T:      git git://linuxtv.org/anttip/media_tree.git
537 S:      Maintained
538 F:      drivers/media/usb/airspy/
539
540 ALCATEL SPEEDTOUCH USB DRIVER
541 M:      Duncan Sands <duncan.sands@free.fr>
542 L:      linux-usb@vger.kernel.org
543 W:      http://www.linux-usb.org/SpeedTouch/
544 S:      Maintained
545 F:      drivers/usb/atm/speedtch.c
546 F:      drivers/usb/atm/usbatm.c
547
548 ALCHEMY AU1XX0 MMC DRIVER
549 M:      Manuel Lauss <manuel.lauss@gmail.com>
550 S:      Maintained
551 F:      drivers/mmc/host/au1xmmc.c
552
553 ALI1563 I2C DRIVER
554 M:      Rudolf Marek <r.marek@assembler.cz>
555 L:      linux-i2c@vger.kernel.org
556 S:      Maintained
557 F:      Documentation/i2c/busses/i2c-ali1563
558 F:      drivers/i2c/busses/i2c-ali1563.c
559
560 ALLWINNER SECURITY SYSTEM
561 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
562 L:      linux-crypto@vger.kernel.org
563 S:      Maintained
564 F:      drivers/crypto/sunxi-ss/
565
566 ALPHA PORT
567 M:      Richard Henderson <rth@twiddle.net>
568 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
569 M:      Matt Turner <mattst88@gmail.com>
570 S:      Odd Fixes
571 L:      linux-alpha@vger.kernel.org
572 F:      arch/alpha/
573
574 ALTERA MAILBOX DRIVER
575 M:      Ley Foon Tan <lftan@altera.com>
576 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
577 S:      Maintained
578 F:      drivers/mailbox/mailbox-altera.c
579
580 ALTERA PIO DRIVER
581 M:      Tien Hock Loh <thloh@altera.com>
582 L:      linux-gpio@vger.kernel.org
583 S:      Maintained
584 F:      drivers/gpio/gpio-altera.c
585
586 ALTERA TRIPLE SPEED ETHERNET DRIVER
587 M:      Vince Bridgers <vbridger@opensource.altera.com>
588 L:      netdev@vger.kernel.org
589 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
590 S:      Maintained
591 F:      drivers/net/ethernet/altera/
592
593 ALTERA UART/JTAG UART SERIAL DRIVERS
594 M:      Tobias Klauser <tklauser@distanz.ch>
595 L:      linux-serial@vger.kernel.org
596 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
597 S:      Maintained
598 F:      drivers/tty/serial/altera_uart.c
599 F:      drivers/tty/serial/altera_jtaguart.c
600 F:      include/linux/altera_uart.h
601 F:      include/linux/altera_jtaguart.h
602
603 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
604 M:      Tom Lendacky <thomas.lendacky@amd.com>
605 L:      linux-crypto@vger.kernel.org
606 S:      Supported
607 F:      drivers/crypto/ccp/
608 F:      include/linux/ccp.h
609
610 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
611 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
612 L:      lm-sensors@lm-sensors.org
613 S:      Maintained
614 F:      Documentation/hwmon/fam15h_power
615 F:      drivers/hwmon/fam15h_power.c
616
617 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
618 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
619 S:      Orphan
620 F:      drivers/usb/gadget/udc/amd5536udc.*
621
622 AMD GEODE PROCESSOR/CHIPSET SUPPORT
623 P:      Andres Salomon <dilinger@queued.net>
624 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
625 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
626 S:      Supported
627 F:      drivers/char/hw_random/geode-rng.c
628 F:      drivers/crypto/geode*
629 F:      drivers/video/fbdev/geode/
630 F:      arch/x86/include/asm/geode.h
631
632 AMD IOMMU (AMD-VI)
633 M:      Joerg Roedel <joro@8bytes.org>
634 L:      iommu@lists.linux-foundation.org
635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
636 S:      Maintained
637 F:      drivers/iommu/amd_iommu*.[ch]
638 F:      include/linux/amd-iommu.h
639
640 AMD KFD
641 M:      Oded Gabbay <oded.gabbay@gmail.com>
642 L:      dri-devel@lists.freedesktop.org
643 T:      git git://people.freedesktop.org/~gabbayo/linux.git
644 S:      Supported
645 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
646 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
647 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
648 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
649 F:      drivers/gpu/drm/amd/amdkfd/
650 F:      drivers/gpu/drm/amd/include/cik_structs.h
651 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
652 F:      drivers/gpu/drm/amd/include/vi_structs.h
653 F:      drivers/gpu/drm/radeon/radeon_kfd.c
654 F:      drivers/gpu/drm/radeon/radeon_kfd.h
655 F:      include/uapi/linux/kfd_ioctl.h
656
657 AMD MICROCODE UPDATE SUPPORT
658 M:      Borislav Petkov <bp@alien8.de>
659 S:      Maintained
660 F:      arch/x86/kernel/cpu/microcode/amd*
661
662 AMD XGBE DRIVER
663 M:      Tom Lendacky <thomas.lendacky@amd.com>
664 L:      netdev@vger.kernel.org
665 S:      Supported
666 F:      drivers/net/ethernet/amd/xgbe/
667
668 AMS (Apple Motion Sensor) DRIVER
669 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
670 S:      Supported
671 F:      drivers/macintosh/ams/
672
673 AMSO1100 RNIC DRIVER
674 M:      Tom Tucker <tom@opengridcomputing.com>
675 M:      Steve Wise <swise@opengridcomputing.com>
676 L:      linux-rdma@vger.kernel.org
677 S:      Maintained
678 F:      drivers/infiniband/hw/amso1100/
679
680 ANALOG DEVICES INC AD9389B DRIVER
681 M:      Hans Verkuil <hans.verkuil@cisco.com>
682 L:      linux-media@vger.kernel.org
683 S:      Maintained
684 F:      drivers/media/i2c/ad9389b*
685
686 ANALOG DEVICES INC ADV7180 DRIVER
687 M:      Lars-Peter Clausen <lars@metafoo.de>
688 L:      linux-media@vger.kernel.org
689 W:      http://ez.analog.com/community/linux-device-drivers
690 S:      Supported
691 F:      drivers/media/i2c/adv7180.c
692
693 ANALOG DEVICES INC ADV7511 DRIVER
694 M:      Hans Verkuil <hans.verkuil@cisco.com>
695 L:      linux-media@vger.kernel.org
696 S:      Maintained
697 F:      drivers/media/i2c/adv7511*
698
699 ANALOG DEVICES INC ADV7604 DRIVER
700 M:      Hans Verkuil <hans.verkuil@cisco.com>
701 L:      linux-media@vger.kernel.org
702 S:      Maintained
703 F:      drivers/media/i2c/adv7604*
704
705 ANALOG DEVICES INC ADV7842 DRIVER
706 M:      Hans Verkuil <hans.verkuil@cisco.com>
707 L:      linux-media@vger.kernel.org
708 S:      Maintained
709 F:      drivers/media/i2c/adv7842*
710
711 ANALOG DEVICES INC ASOC CODEC DRIVERS
712 M:      Lars-Peter Clausen <lars@metafoo.de>
713 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
714 W:      http://wiki.analog.com/
715 W:      http://ez.analog.com/community/linux-device-drivers
716 S:      Supported
717 F:      sound/soc/codecs/adau*
718 F:      sound/soc/codecs/adav*
719 F:      sound/soc/codecs/ad1*
720 F:      sound/soc/codecs/ad7*
721 F:      sound/soc/codecs/ssm*
722 F:      sound/soc/codecs/sigmadsp.*
723
724 ANALOG DEVICES INC ASOC DRIVERS
725 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
726 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
727 W:      http://blackfin.uclinux.org/
728 S:      Supported
729 F:      sound/soc/blackfin/*
730
731 ANALOG DEVICES INC IIO DRIVERS
732 M:      Lars-Peter Clausen <lars@metafoo.de>
733 M:      Michael Hennerich <Michael.Hennerich@analog.com>
734 W:      http://wiki.analog.com/
735 W:      http://ez.analog.com/community/linux-device-drivers
736 S:      Supported
737 F:      drivers/iio/*/ad*
738 X:      drivers/iio/*/adjd*
739 F:      drivers/staging/iio/*/ad*
740 F:      staging/iio/trigger/iio-trig-bfin-timer.c
741
742 ANALOG DEVICES INC DMA DRIVERS
743 M:      Lars-Peter Clausen <lars@metafoo.de>
744 W:      http://ez.analog.com/community/linux-device-drivers
745 S:      Supported
746 F:      drivers/dma/dma-axi-dmac.c
747
748 ANDROID DRIVERS
749 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
750 M:      Arve HjønnevĂ¥g <arve@android.com>
751 M:      Riley Andrews <riandrews@android.com>
752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
753 L:      devel@driverdev.osuosl.org
754 S:      Supported
755 F:      drivers/android/
756 F:      drivers/staging/android/
757
758 AOA (Apple Onboard Audio) ALSA DRIVER
759 M:      Johannes Berg <johannes@sipsolutions.net>
760 L:      linuxppc-dev@lists.ozlabs.org
761 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
762 S:      Maintained
763 F:      sound/aoa/
764
765 APM DRIVER
766 M:      Jiri Kosina <jikos@kernel.org>
767 S:      Odd fixes
768 F:      arch/x86/kernel/apm_32.c
769 F:      include/linux/apm_bios.h
770 F:      include/uapi/linux/apm_bios.h
771 F:      drivers/char/apm-emulation.c
772
773 APPLE BCM5974 MULTITOUCH DRIVER
774 M:      Henrik Rydberg <rydberg@bitmath.org>
775 L:      linux-input@vger.kernel.org
776 S:      Odd fixes
777 F:      drivers/input/mouse/bcm5974.c
778
779 APPLE SMC DRIVER
780 M:      Henrik Rydberg <rydberg@bitmath.org>
781 L:      lm-sensors@lm-sensors.org
782 S:      Odd fixes
783 F:      drivers/hwmon/applesmc.c
784
785 APPLETALK NETWORK LAYER
786 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
787 S:      Maintained
788 F:      drivers/net/appletalk/
789 F:      net/appletalk/
790
791 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
792 M:      Duc Dang <dhdang@apm.com>
793 S:      Supported
794 F:      arch/arm64/boot/dts/apm/
795
796 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
797 M:      Iyappan Subramanian <isubramanian@apm.com>
798 M:      Keyur Chudgar <kchudgar@apm.com>
799 S:      Supported
800 F:      drivers/net/ethernet/apm/xgene/
801 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
802
803 APTINA CAMERA SENSOR PLL
804 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
805 L:      linux-media@vger.kernel.org
806 S:      Maintained
807 F:      drivers/media/i2c/aptina-pll.*
808
809 ARC FRAMEBUFFER DRIVER
810 M:      Jaya Kumar <jayalk@intworks.biz>
811 S:      Maintained
812 F:      drivers/video/fbdev/arcfb.c
813 F:      drivers/video/fbdev/core/fb_defio.c
814
815 ARCNET NETWORK LAYER
816 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
817 L:      netdev@vger.kernel.org
818 S:      Maintained
819 F:      drivers/net/arcnet/
820 F:      include/uapi/linux/if_arcnet.h
821
822 ARM MFM AND FLOPPY DRIVERS
823 M:      Ian Molton <spyro@f2s.com>
824 S:      Maintained
825 F:      arch/arm/lib/floppydma.S
826 F:      arch/arm/include/asm/floppy.h
827
828 ARM PMU PROFILING AND DEBUGGING
829 M:      Will Deacon <will.deacon@arm.com>
830 R:      Mark Rutland <mark.rutland@arm.com>
831 S:      Maintained
832 F:      arch/arm*/kernel/perf_*
833 F:      arch/arm/oprofile/common.c
834 F:      arch/arm*/kernel/hw_breakpoint.c
835 F:      arch/arm*/include/asm/hw_breakpoint.h
836 F:      arch/arm*/include/asm/perf_event.h
837 F:      drivers/perf/arm_pmu.c
838 F:      include/linux/perf/arm_pmu.h
839
840 ARM PORT
841 M:      Russell King <linux@arm.linux.org.uk>
842 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
843 W:      http://www.arm.linux.org.uk/
844 S:      Maintained
845 F:      arch/arm/
846
847 ARM SUB-ARCHITECTURES
848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
849 S:      Maintained
850 F:      arch/arm/mach-*/
851 F:      arch/arm/plat-*/
852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
853
854 ARM PRIMECELL AACI PL041 DRIVER
855 M:      Russell King <linux@arm.linux.org.uk>
856 S:      Maintained
857 F:      sound/arm/aaci.*
858
859 ARM PRIMECELL CLCD PL110 DRIVER
860 M:      Russell King <linux@arm.linux.org.uk>
861 S:      Maintained
862 F:      drivers/video/fbdev/amba-clcd.*
863
864 ARM PRIMECELL KMI PL050 DRIVER
865 M:      Russell King <linux@arm.linux.org.uk>
866 S:      Maintained
867 F:      drivers/input/serio/ambakmi.*
868 F:      include/linux/amba/kmi.h
869
870 ARM PRIMECELL MMCI PL180/1 DRIVER
871 M:      Russell King <linux@arm.linux.org.uk>
872 S:      Maintained
873 F:      drivers/mmc/host/mmci.*
874 F:      include/linux/amba/mmci.h
875
876 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
877 M:      Russell King <linux@arm.linux.org.uk>
878 S:      Maintained
879 F:      drivers/tty/serial/amba-pl01*.c
880 F:      include/linux/amba/serial.h
881
882 ARM PRIMECELL BUS SUPPORT
883 M:      Russell King <linux@arm.linux.org.uk>
884 S:      Maintained
885 F:      drivers/amba/
886 F:      include/linux/amba/bus.h
887
888 ARM/ADS SPHERE MACHINE SUPPORT
889 M:      Lennert Buytenhek <kernel@wantstofly.org>
890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
891 S:      Maintained
892
893 ARM/AFEB9260 MACHINE SUPPORT
894 M:      Sergey Lapin <slapin@ossfans.org>
895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
896 S:      Maintained
897
898 ARM/AJECO 1ARM MACHINE SUPPORT
899 M:      Lennert Buytenhek <kernel@wantstofly.org>
900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
901 S:      Maintained
902
903 ARM/Allwinner sunXi SoC support
904 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
905 M:      Chen-Yu Tsai <wens@csie.org>
906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
907 S:      Maintained
908 N:      sun[x456789]i
909
910 ARM/Allwinner SoC Clock Support
911 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
912 S:      Maintained
913 F:      drivers/clk/sunxi/
914
915 ARM/Amlogic MesonX SoC support
916 M:      Carlo Caione <carlo@caione.org>
917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
918 S:      Maintained
919 F:      drivers/media/rc/meson-ir.c
920 N:      meson[x68]
921
922 ARM/Annapurna Labs ALPINE ARCHITECTURE
923 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
924 S:      Maintained
925 F:      arch/arm/mach-alpine/
926
927 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
928 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
929 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
930 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
932 W:      http://www.linux4sam.org
933 S:      Supported
934 F:      arch/arm/mach-at91/
935 F:      include/soc/at91/
936 F:      arch/arm/boot/dts/at91*.dts
937 F:      arch/arm/boot/dts/at91*.dtsi
938 F:      arch/arm/boot/dts/sama*.dts
939 F:      arch/arm/boot/dts/sama*.dtsi
940 F:      arch/arm/include/debug/at91.S
941
942 ARM/ATMEL AT91 Clock Support
943 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
944 S:      Maintained
945 F:      drivers/clk/at91
946
947 ARM/CALXEDA HIGHBANK ARCHITECTURE
948 M:      Rob Herring <robh@kernel.org>
949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
950 S:      Maintained
951 F:      arch/arm/mach-highbank/
952
953 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
954 M:      Krzysztof Halasa <khalasa@piap.pl>
955 S:      Maintained
956 F:      arch/arm/mach-cns3xxx/
957
958 ARM/CAVIUM THUNDER NETWORK DRIVER
959 M:      Sunil Goutham <sgoutham@cavium.com>
960 M:      Robert Richter <rric@kernel.org>
961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962 S:      Supported
963 F:      drivers/net/ethernet/cavium/thunder/
964
965 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
966 M:      Alexander Shiyan <shc_work@mail.ru>
967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968 S:      Odd Fixes
969 N:      clps711x
970
971 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
972 M:      Hartley Sweeten <hsweeten@visionengravers.com>
973 M:      Ryan Mallon <rmallon@gmail.com>
974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
975 S:      Maintained
976 F:      arch/arm/mach-ep93xx/
977 F:      arch/arm/mach-ep93xx/include/mach/
978
979 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
980 M:      Lennert Buytenhek <kernel@wantstofly.org>
981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
982 S:      Maintained
983
984 ARM/CLKDEV SUPPORT
985 M:      Russell King <linux@arm.linux.org.uk>
986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
987 S:      Maintained
988 F:      arch/arm/include/asm/clkdev.h
989 F:      drivers/clk/clkdev.c
990
991 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
992 M:      Mike Rapoport <mike@compulab.co.il>
993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
994 S:      Maintained
995
996 ARM/CONTEC MICRO9 MACHINE SUPPORT
997 M:      Hubert Feurstein <hubert.feurstein@contec.at>
998 S:      Maintained
999 F:      arch/arm/mach-ep93xx/micro9.c
1000
1001 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1002 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1004 S:      Maintained
1005 F:      drivers/hwtracing/coresight/*
1006 F:      Documentation/trace/coresight.txt
1007 F:      Documentation/devicetree/bindings/arm/coresight.txt
1008 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1009
1010 ARM/CORGI MACHINE SUPPORT
1011 M:      Richard Purdie <rpurdie@rpsys.net>
1012 S:      Maintained
1013
1014 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1015 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1017 T:      git git://github.com/ulli-kroll/linux.git
1018 S:      Maintained
1019 F:      arch/arm/mach-gemini/
1020 F:      drivers/rtc/rtc-gemini.c
1021
1022 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1023 M:      Barry Song <baohua@kernel.org>
1024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1026 S:      Maintained
1027 F:      arch/arm/mach-prima2/
1028 F:      drivers/clk/sirf/
1029 F:      drivers/clocksource/timer-prima2.c
1030 F:      drivers/clocksource/timer-atlas7.c
1031 N:      [^a-z]sirf
1032
1033 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1034 M:      Baruch Siach <baruch@tkos.co.il>
1035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1036 S:      Maintained
1037 F:      arch/arm/boot/dts/cx92755*
1038 N:      digicolor
1039
1040 ARM/EBSA110 MACHINE SUPPORT
1041 M:      Russell King <linux@arm.linux.org.uk>
1042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1043 W:      http://www.arm.linux.org.uk/
1044 S:      Maintained
1045 F:      arch/arm/mach-ebsa110/
1046 F:      drivers/net/ethernet/amd/am79c961a.*
1047
1048 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1049 M:      Uwe Kleine-König <kernel@pengutronix.de>
1050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1051 S:      Maintained
1052 N:      efm32
1053
1054 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1055 M:      Daniel Ribeiro <drwyrm@gmail.com>
1056 M:      Stefan Schmidt <stefan@openezx.org>
1057 M:      Harald Welte <laforge@openezx.org>
1058 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1059 W:      http://www.openezx.org/
1060 S:      Maintained
1061 T:      topgit git://git.openezx.org/openezx.git
1062 F:      arch/arm/mach-pxa/ezx.c
1063
1064 ARM/FARADAY FA526 PORT
1065 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 S:      Maintained
1068 T:      git git://git.berlios.de/gemini-board
1069 F:      arch/arm/mm/*-fa*
1070
1071 ARM/FOOTBRIDGE ARCHITECTURE
1072 M:      Russell King <linux@arm.linux.org.uk>
1073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1074 W:      http://www.arm.linux.org.uk/
1075 S:      Maintained
1076 F:      arch/arm/include/asm/hardware/dec21285.h
1077 F:      arch/arm/mach-footbridge/
1078
1079 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1080 M:      Shawn Guo <shawnguo@kernel.org>
1081 M:      Sascha Hauer <kernel@pengutronix.de>
1082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083 S:      Maintained
1084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1085 F:      arch/arm/mach-imx/
1086 F:      arch/arm/mach-mxs/
1087 F:      arch/arm/boot/dts/imx*
1088 F:      arch/arm/configs/imx*_defconfig
1089 F:      drivers/clk/imx/
1090 F:      include/soc/imx/
1091
1092 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1093 M:      Shawn Guo <shawnguo@kernel.org>
1094 M:      Sascha Hauer <kernel@pengutronix.de>
1095 R:      Stefan Agner <stefan@agner.ch>
1096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1097 S:      Maintained
1098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1099 F:      arch/arm/mach-imx/*vf610*
1100 F:      arch/arm/boot/dts/vf*
1101
1102 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1103 M:      Lennert Buytenhek <kernel@wantstofly.org>
1104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1105 S:      Maintained
1106
1107 ARM/GUMSTIX MACHINE SUPPORT
1108 M:      Steve Sakoman <sakoman@gmail.com>
1109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1110 S:      Maintained
1111
1112 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1113 M:      Philipp Zabel <philipp.zabel@gmail.com>
1114 M:      Paul Parsons <lost.distance@yahoo.com>
1115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1116 S:      Maintained
1117 F:      arch/arm/mach-pxa/hx4700.c
1118 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1119 F:      sound/soc/pxa/hx4700.c
1120
1121 ARM/HISILICON SOC SUPPORT
1122 M:      Wei Xu <xuwei5@hisilicon.com>
1123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1124 W:      http://www.hisilicon.com
1125 S:      Supported
1126 T:      git git://github.com/hisilicon/linux-hisi.git
1127 F:      arch/arm/mach-hisi/
1128
1129 ARM/HP JORNADA 7XX MACHINE SUPPORT
1130 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1131 W:      www.jlime.com
1132 S:      Maintained
1133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1134 F:      arch/arm/mach-sa1100/jornada720.c
1135 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1136
1137 ARM/IGEP MACHINE SUPPORT
1138 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1139 M:      Javier Martinez Canillas <javier@dowhile0.org>
1140 L:      linux-omap@vger.kernel.org
1141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1142 S:      Maintained
1143 F:      arch/arm/boot/dts/omap3-igep*
1144
1145 ARM/INCOME PXA270 SUPPORT
1146 M:      Marek Vasut <marek.vasut@gmail.com>
1147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1148 S:      Maintained
1149 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1150
1151 ARM/INTEL IOP32X ARM ARCHITECTURE
1152 M:      Lennert Buytenhek <kernel@wantstofly.org>
1153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1154 S:      Maintained
1155
1156 ARM/INTEL IOP33X ARM ARCHITECTURE
1157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1158 S:      Orphan
1159
1160 ARM/INTEL IOP13XX ARM ARCHITECTURE
1161 M:      Lennert Buytenhek <kernel@wantstofly.org>
1162 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1163 S:      Maintained
1164
1165 ARM/INTEL IQ81342EX MACHINE SUPPORT
1166 M:      Lennert Buytenhek <kernel@wantstofly.org>
1167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1168 S:      Maintained
1169
1170 ARM/INTEL IXDP2850 MACHINE SUPPORT
1171 M:      Lennert Buytenhek <kernel@wantstofly.org>
1172 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1173 S:      Maintained
1174
1175 ARM/INTEL IXP4XX ARM ARCHITECTURE
1176 M:      Imre Kaloz <kaloz@openwrt.org>
1177 M:      Krzysztof Halasa <khalasa@piap.pl>
1178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179 S:      Maintained
1180 F:      arch/arm/mach-ixp4xx/
1181
1182 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1183 M:      Jonathan Cameron <jic23@cam.ac.uk>
1184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185 S:      Maintained
1186 F:      arch/arm/mach-pxa/stargate2.c
1187 F:      drivers/pcmcia/pxa2xx_stargate2.c
1188
1189 ARM/INTEL XSC3 (MANZANO) ARM CORE
1190 M:      Lennert Buytenhek <kernel@wantstofly.org>
1191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1192 S:      Maintained
1193
1194 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1195 M:      Lennert Buytenhek <kernel@wantstofly.org>
1196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1197 S:      Maintained
1198
1199 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1200 M:      Santosh Shilimkar <ssantosh@kernel.org>
1201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202 S:      Maintained
1203 F:      arch/arm/mach-keystone/
1204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1205
1206 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1207 M:      Santosh Shilimkar <ssantosh@kernel.org>
1208 L:      linux-kernel@vger.kernel.org
1209 S:      Maintained
1210 F:      drivers/clk/keystone/
1211
1212 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1213 M:      Santosh Shilimkar <ssantosh@kernel.org>
1214 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1215 L:      linux-kernel@vger.kernel.org
1216 S:      Maintained
1217 F:      drivers/clocksource/timer-keystone.c
1218
1219 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1220 M:      Santosh Shilimkar <ssantosh@kernel.org>
1221 L:      linux-kernel@vger.kernel.org
1222 S:      Maintained
1223 F:      drivers/power/reset/keystone-reset.c
1224
1225 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1226 M:      Santosh Shilimkar <ssantosh@kernel.org>
1227 L:      linux-kernel@vger.kernel.org
1228 S:      Maintained
1229 F:      drivers/memory/*emif*
1230
1231 ARM/LOGICPD PXA270 MACHINE SUPPORT
1232 M:      Lennert Buytenhek <kernel@wantstofly.org>
1233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234 S:      Maintained
1235
1236 ARM/LPC18XX ARCHITECTURE
1237 M:      Joachim Eastwood <manabian@gmail.com>
1238 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239 S:      Maintained
1240 F:      arch/arm/boot/dts/lpc43*
1241 F:      drivers/clk/nxp/clk-lpc18xx*
1242 F:      drivers/clocksource/time-lpc32xx.c
1243 F:      drivers/i2c/busses/i2c-lpc2k.c
1244 F:      drivers/memory/pl172.c
1245 F:      drivers/mtd/spi-nor/nxp-spifi.c
1246 F:      drivers/rtc/rtc-lpc24xx.c
1247 N:      lpc18xx
1248
1249 ARM/MAGICIAN MACHINE SUPPORT
1250 M:      Philipp Zabel <philipp.zabel@gmail.com>
1251 S:      Maintained
1252
1253 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1254 M:      Jason Cooper <jason@lakedaemon.net>
1255 M:      Andrew Lunn <andrew@lunn.ch>
1256 M:      Gregory Clement <gregory.clement@free-electrons.com>
1257 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1258 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1259 S:      Maintained
1260 F:      arch/arm/mach-mvebu/
1261 F:      drivers/rtc/rtc-armada38x.c
1262 F:      arch/arm/boot/dts/armada*
1263 F:      arch/arm/boot/dts/kirkwood*
1264
1265
1266 ARM/Marvell Berlin SoC support
1267 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1268 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1269 S:      Maintained
1270 F:      arch/arm/mach-berlin/
1271 F:      arch/arm/boot/dts/berlin*
1272
1273
1274 ARM/Marvell Dove/MV78xx0/Orion SOC support
1275 M:      Jason Cooper <jason@lakedaemon.net>
1276 M:      Andrew Lunn <andrew@lunn.ch>
1277 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1278 M:      Gregory Clement <gregory.clement@free-electrons.com>
1279 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1280 S:      Maintained
1281 F:      arch/arm/mach-dove/
1282 F:      arch/arm/mach-mv78xx0/
1283 F:      arch/arm/mach-orion5x/
1284 F:      arch/arm/plat-orion/
1285 F:      arch/arm/boot/dts/dove*
1286 F:      arch/arm/boot/dts/orion5x*
1287
1288
1289 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1290 M:      Alexander Clouter <alex@digriz.org.uk>
1291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1292 W:      http://www.digriz.org.uk/ts78xx/kernel
1293 S:      Maintained
1294 F:      arch/arm/mach-orion5x/ts78xx-*
1295
1296 ARM/Mediatek RTC DRIVER
1297 M:      Eddie Huang <eddie.huang@mediatek.com>
1298 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1299 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1300 S:      Maintained
1301 F:      drivers/rtc/rtc-mt6397.c
1302
1303 ARM/Mediatek SoC support
1304 M:      Matthias Brugger <matthias.bgg@gmail.com>
1305 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1306 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1307 S:      Maintained
1308 F:      arch/arm/boot/dts/mt6*
1309 F:      arch/arm/boot/dts/mt8*
1310 F:      arch/arm/mach-mediatek/
1311 N:      mtk
1312 K:      mediatek
1313
1314 ARM/MICREL KS8695 ARCHITECTURE
1315 M:      Greg Ungerer <gerg@uclinux.org>
1316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1317 F:      arch/arm/mach-ks8695/
1318 S:      Odd Fixes
1319
1320 ARM/MIOA701 MACHINE SUPPORT
1321 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1322 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1323 F:      arch/arm/mach-pxa/mioa701.c
1324 S:      Maintained
1325
1326 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1327 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1328 S:      Maintained
1329
1330 ARM/NOMADIK ARCHITECTURE
1331 M:      Alessandro Rubini <rubini@unipv.it>
1332 M:      Linus Walleij <linus.walleij@linaro.org>
1333 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1334 S:      Maintained
1335 F:      arch/arm/mach-nomadik/
1336 F:      drivers/pinctrl/nomadik/
1337 F:      drivers/i2c/busses/i2c-nomadik.c
1338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1339
1340 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1341 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1342 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1343 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1344 S:      Supported
1345
1346 ARM/TOSA MACHINE SUPPORT
1347 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1348 M:      Dirk Opfer <dirk@opfer-online.de>
1349 S:      Maintained
1350
1351 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1352 M:      Marek Vasut <marek.vasut@gmail.com>
1353 L:      linux-arm-kernel@lists.infradead.org
1354 W:      http://hackndev.com
1355 S:      Maintained
1356 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1357 F:      arch/arm/mach-pxa/palmtx.c
1358 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1359 F:      arch/arm/mach-pxa/palmt5.c
1360 F:      arch/arm/mach-pxa/include/mach/palmld.h
1361 F:      arch/arm/mach-pxa/palmld.c
1362 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1363 F:      arch/arm/mach-pxa/palmte2.c
1364 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1365 F:      arch/arm/mach-pxa/palmtc.c
1366
1367 ARM/PALM TREO SUPPORT
1368 M:      Tomas Cech <sleep_walker@suse.com>
1369 L:      linux-arm-kernel@lists.infradead.org
1370 W:      http://hackndev.com
1371 S:      Maintained
1372 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1373 F:      arch/arm/mach-pxa/palmtreo.c
1374
1375 ARM/PALMZ72 SUPPORT
1376 M:      Sergey Lapin <slapin@ossfans.org>
1377 L:      linux-arm-kernel@lists.infradead.org
1378 W:      http://hackndev.com
1379 S:      Maintained
1380 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1381 F:      arch/arm/mach-pxa/palmz72.c
1382
1383 ARM/PLEB SUPPORT
1384 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1385 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1386 S:      Maintained
1387
1388 ARM/PT DIGITAL BOARD PORT
1389 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1391 W:      http://www.arm.linux.org.uk/
1392 S:      Maintained
1393
1394 ARM/QUALCOMM SUPPORT
1395 M:      Kumar Gala <galak@codeaurora.org>
1396 M:      Andy Gross <agross@codeaurora.org>
1397 M:      David Brown <davidb@codeaurora.org>
1398 L:      linux-arm-msm@vger.kernel.org
1399 L:      linux-soc@vger.kernel.org
1400 S:      Maintained
1401 F:      arch/arm/mach-qcom/
1402 F:      drivers/soc/qcom/
1403 F:      drivers/tty/serial/msm_serial.h
1404 F:      drivers/tty/serial/msm_serial.c
1405 F:      drivers/*/pm8???-*
1406 F:      drivers/mfd/ssbi.c
1407 F:      drivers/firmware/qcom_scm.c
1408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1409
1410 ARM/RADISYS ENP2611 MACHINE SUPPORT
1411 M:      Lennert Buytenhek <kernel@wantstofly.org>
1412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1413 S:      Maintained
1414
1415 ARM/RISCPC ARCHITECTURE
1416 M:      Russell King <linux@arm.linux.org.uk>
1417 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1418 W:      http://www.arm.linux.org.uk/
1419 S:      Maintained
1420 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1421 F:      arch/arm/include/asm/hardware/ioc.h
1422 F:      arch/arm/include/asm/hardware/iomd.h
1423 F:      arch/arm/include/asm/hardware/memc.h
1424 F:      arch/arm/mach-rpc/
1425 F:      drivers/net/ethernet/8390/etherh.c
1426 F:      drivers/net/ethernet/i825xx/ether1*
1427 F:      drivers/net/ethernet/seeq/ether3*
1428 F:      drivers/scsi/arm/
1429
1430 ARM/Rockchip SoC support
1431 M:      Heiko Stuebner <heiko@sntech.de>
1432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1433 L:      linux-rockchip@lists.infradead.org
1434 S:      Maintained
1435 F:      arch/arm/boot/dts/rk3*
1436 F:      arch/arm/mach-rockchip/
1437 F:      drivers/clk/rockchip/
1438 F:      drivers/i2c/busses/i2c-rk3x.c
1439 F:      drivers/*/*rockchip*
1440 F:      drivers/*/*/*rockchip*
1441 F:      sound/soc/rockchip/
1442 N:      rockchip
1443
1444 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1445 M:      Kukjin Kim <kgene@kernel.org>
1446 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1448 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1449 S:      Maintained
1450 F:      arch/arm/boot/dts/s3c*
1451 F:      arch/arm/boot/dts/exynos*
1452 F:      arch/arm64/boot/dts/exynos/
1453 F:      arch/arm/plat-samsung/
1454 F:      arch/arm/mach-s3c24*/
1455 F:      arch/arm/mach-s3c64xx/
1456 F:      arch/arm/mach-s5p*/
1457 F:      arch/arm/mach-exynos*/
1458 F:      drivers/*/*s3c2410*
1459 F:      drivers/*/*/*s3c2410*
1460 F:      drivers/spi/spi-s3c*
1461 F:      drivers/soc/samsung/*
1462 F:      sound/soc/samsung/*
1463 F:      Documentation/arm/Samsung/
1464 F:      Documentation/devicetree/bindings/arm/samsung/
1465 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1466 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1467 N:      exynos
1468
1469 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1470 M:      Kyungmin Park <kyungmin.park@samsung.com>
1471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1472 S:      Maintained
1473 F:      arch/arm/mach-s5pv210/
1474
1475 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1476 M:      Kyungmin Park <kyungmin.park@samsung.com>
1477 M:      Kamil Debski <k.debski@samsung.com>
1478 L:      linux-arm-kernel@lists.infradead.org
1479 L:      linux-media@vger.kernel.org
1480 S:      Maintained
1481 F:      drivers/media/platform/s5p-g2d/
1482
1483 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1484 M:      Kyungmin Park <kyungmin.park@samsung.com>
1485 M:      Kamil Debski <k.debski@samsung.com>
1486 M:      Jeongtae Park <jtp.park@samsung.com>
1487 L:      linux-arm-kernel@lists.infradead.org
1488 L:      linux-media@vger.kernel.org
1489 S:      Maintained
1490 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1491 F:      drivers/media/platform/s5p-mfc/
1492
1493 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1494 M:      Kyungmin Park <kyungmin.park@samsung.com>
1495 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1496 L:      linux-arm-kernel@lists.infradead.org
1497 L:      linux-media@vger.kernel.org
1498 S:      Maintained
1499 F:      drivers/media/platform/s5p-tv/
1500
1501 ARM/SHMOBILE ARM ARCHITECTURE
1502 M:      Simon Horman <horms@verge.net.au>
1503 M:      Magnus Damm <magnus.damm@gmail.com>
1504 L:      linux-sh@vger.kernel.org
1505 W:      http://oss.renesas.com
1506 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1508 S:      Supported
1509 F:      arch/arm/boot/dts/emev2*
1510 F:      arch/arm/boot/dts/r7s*
1511 F:      arch/arm/boot/dts/r8a*
1512 F:      arch/arm/boot/dts/sh*
1513 F:      arch/arm/configs/shmobile_defconfig
1514 F:      arch/arm/include/debug/renesas-scif.S
1515 F:      arch/arm/mach-shmobile/
1516 F:      drivers/sh/
1517
1518 ARM/SOCFPGA ARCHITECTURE
1519 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1520 S:      Maintained
1521 F:      arch/arm/mach-socfpga/
1522 F:      arch/arm/boot/dts/socfpga*
1523 F:      arch/arm/configs/socfpga_defconfig
1524 W:      http://www.rocketboards.org
1525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1526
1527 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1528 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1529 S:      Maintained
1530 F:      drivers/clk/socfpga/
1531
1532 ARM/SOCFPGA EDAC SUPPORT
1533 M:      Thor Thayer <tthayer@opensource.altera.com>
1534 S:      Maintained
1535 F:      drivers/edac/altera_edac.
1536
1537 ARM/STI ARCHITECTURE
1538 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1539 M:      Maxime Coquelin <maxime.coquelin@st.com>
1540 M:      Patrice Chotard <patrice.chotard@st.com>
1541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1542 L:      kernel@stlinux.com
1543 W:      http://www.stlinux.com
1544 S:      Maintained
1545 F:      arch/arm/mach-sti/
1546 F:      arch/arm/boot/dts/sti*
1547 F:      drivers/clocksource/arm_global_timer.c
1548 F:      drivers/clocksource/clksrc_st_lpc.c
1549 F:      drivers/i2c/busses/i2c-st.c
1550 F:      drivers/media/rc/st_rc.c
1551 F:      drivers/media/platform/sti/c8sectpfe/
1552 F:      drivers/mmc/host/sdhci-st.c
1553 F:      drivers/phy/phy-miphy28lp.c
1554 F:      drivers/phy/phy-miphy365x.c
1555 F:      drivers/phy/phy-stih407-usb.c
1556 F:      drivers/phy/phy-stih41x-usb.c
1557 F:      drivers/pinctrl/pinctrl-st.c
1558 F:      drivers/reset/sti/
1559 F:      drivers/rtc/rtc-st-lpc.c
1560 F:      drivers/tty/serial/st-asc.c
1561 F:      drivers/usb/dwc3/dwc3-st.c
1562 F:      drivers/usb/host/ehci-st.c
1563 F:      drivers/usb/host/ohci-st.c
1564 F:      drivers/watchdog/st_lpc_wdt.c
1565 F:      drivers/ata/ahci_st.c
1566
1567 ARM/STM32 ARCHITECTURE
1568 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1569 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1570 S:      Maintained
1571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1572 N:      stm32
1573 F:      drivers/clocksource/armv7m_systick.c
1574
1575 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1576 M:      Lennert Buytenhek <kernel@wantstofly.org>
1577 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1578 S:      Maintained
1579
1580 ARM/TETON BGA MACHINE SUPPORT
1581 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1583 S:      Maintained
1584
1585 ARM/THECUS N2100 MACHINE SUPPORT
1586 M:      Lennert Buytenhek <kernel@wantstofly.org>
1587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1588 S:      Maintained
1589
1590 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1591 M:      Wan ZongShun <mcuos.com@gmail.com>
1592 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1593 W:      http://www.mcuos.com
1594 S:      Maintained
1595 F:      arch/arm/mach-w90x900/
1596 F:      drivers/input/keyboard/w90p910_keypad.c
1597 F:      drivers/input/touchscreen/w90p910_ts.c
1598 F:      drivers/watchdog/nuc900_wdt.c
1599 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1600 F:      drivers/mtd/nand/nuc900_nand.c
1601 F:      drivers/rtc/rtc-nuc900.c
1602 F:      drivers/spi/spi-nuc900.c
1603 F:      drivers/usb/host/ehci-w90x900.c
1604 F:      drivers/video/fbdev/nuc900fb.c
1605
1606 ARM/U300 MACHINE SUPPORT
1607 M:      Linus Walleij <linus.walleij@linaro.org>
1608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1609 S:      Supported
1610 F:      arch/arm/mach-u300/
1611 F:      drivers/clocksource/timer-u300.c
1612 F:      drivers/i2c/busses/i2c-stu300.c
1613 F:      drivers/rtc/rtc-coh901331.c
1614 F:      drivers/watchdog/coh901327_wdt.c
1615 F:      drivers/dma/coh901318*
1616 F:      drivers/mfd/ab3100*
1617 F:      drivers/rtc/rtc-ab3100.c
1618 F:      drivers/rtc/rtc-coh901331.c
1619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1620
1621 ARM/UNIPHIER ARCHITECTURE
1622 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1624 S:      Maintained
1625 F:      arch/arm/boot/dts/uniphier*
1626 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1627 F:      arch/arm/mach-uniphier/
1628 F:      arch/arm/mm/cache-uniphier.c
1629 F:      drivers/pinctrl/uniphier/
1630 F:      drivers/tty/serial/8250/8250_uniphier.c
1631 N:      uniphier
1632
1633 ARM/Ux500 ARM ARCHITECTURE
1634 M:      Linus Walleij <linus.walleij@linaro.org>
1635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1636 S:      Maintained
1637 F:      arch/arm/mach-ux500/
1638 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1639 F:      drivers/dma/ste_dma40*
1640 F:      drivers/hwspinlock/u8500_hsem.c
1641 F:      drivers/mfd/abx500*
1642 F:      drivers/mfd/ab8500*
1643 F:      drivers/mfd/dbx500*
1644 F:      drivers/mfd/db8500*
1645 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1646 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1647 F:      drivers/rtc/rtc-ab8500.c
1648 F:      drivers/rtc/rtc-pl031.c
1649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1650
1651 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1652 M:      Ulf Hansson <ulf.hansson@linaro.org>
1653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1654 T:      git git://git.linaro.org/people/ulfh/clk.git
1655 S:      Maintained
1656 F:      drivers/clk/ux500/
1657 F:      include/linux/platform_data/clk-ux500.h
1658
1659 ARM/VERSATILE EXPRESS PLATFORM
1660 M:      Liviu Dudau <liviu.dudau@arm.com>
1661 M:      Sudeep Holla <sudeep.holla@arm.com>
1662 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1664 S:      Maintained
1665 F:      arch/arm/boot/dts/vexpress*
1666 F:      arch/arm64/boot/dts/arm/vexpress*
1667 F:      arch/arm/mach-vexpress/
1668 F:      */*/vexpress*
1669 F:      */*/*/vexpress*
1670 F:      drivers/clk/versatile/clk-vexpress-osc.c
1671 F:      drivers/clocksource/versatile.c
1672
1673 ARM/VFP SUPPORT
1674 M:      Russell King <linux@arm.linux.org.uk>
1675 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1676 W:      http://www.arm.linux.org.uk/
1677 S:      Maintained
1678 F:      arch/arm/vfp/
1679
1680 ARM/VOIPAC PXA270 SUPPORT
1681 M:      Marek Vasut <marek.vasut@gmail.com>
1682 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1683 S:      Maintained
1684 F:      arch/arm/mach-pxa/vpac270.c
1685 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1686
1687 ARM/VT8500 ARM ARCHITECTURE
1688 M:      Tony Prisk <linux@prisktech.co.nz>
1689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1690 S:      Maintained
1691 F:      arch/arm/mach-vt8500/
1692 F:      drivers/clocksource/vt8500_timer.c
1693 F:      drivers/i2c/busses/i2c-wmt.c
1694 F:      drivers/mmc/host/wmt-sdmmc.c
1695 F:      drivers/pwm/pwm-vt8500.c
1696 F:      drivers/rtc/rtc-vt8500.c
1697 F:      drivers/tty/serial/vt8500_serial.c
1698 F:      drivers/usb/host/ehci-platform.c
1699 F:      drivers/usb/host/uhci-platform.c
1700 F:      drivers/video/fbdev/vt8500lcdfb.*
1701 F:      drivers/video/fbdev/wm8505fb*
1702 F:      drivers/video/fbdev/wmt_ge_rops.*
1703
1704 ARM/ZIPIT Z2 SUPPORT
1705 M:      Marek Vasut <marek.vasut@gmail.com>
1706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 S:      Maintained
1708 F:      arch/arm/mach-pxa/z2.c
1709 F:      arch/arm/mach-pxa/include/mach/z2.h
1710
1711 ARM/ZTE ARCHITECTURE
1712 M:      Jun Nie <jun.nie@linaro.org>
1713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1714 S:      Maintained
1715 F:      arch/arm/mach-zx/
1716 F:      drivers/clk/zte/
1717 F:      Documentation/devicetree/bindings/arm/zte.txt
1718 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1719
1720 ARM/ZYNQ ARCHITECTURE
1721 M:      Michal Simek <michal.simek@xilinx.com>
1722 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724 W:      http://wiki.xilinx.com
1725 T:      git https://github.com/Xilinx/linux-xlnx.git
1726 S:      Supported
1727 F:      arch/arm/mach-zynq/
1728 F:      drivers/cpuidle/cpuidle-zynq.c
1729 F:      drivers/block/xsysace.c
1730 N:      zynq
1731 N:      xilinx
1732 F:      drivers/clocksource/cadence_ttc_timer.c
1733 F:      drivers/i2c/busses/i2c-cadence.c
1734 F:      drivers/mmc/host/sdhci-of-arasan.c
1735 F:      drivers/edac/synopsys_edac.c
1736
1737 ARM SMMU DRIVERS
1738 M:      Will Deacon <will.deacon@arm.com>
1739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740 S:      Maintained
1741 F:      drivers/iommu/arm-smmu.c
1742 F:      drivers/iommu/arm-smmu-v3.c
1743 F:      drivers/iommu/io-pgtable-arm.c
1744
1745 ARM64 PORT (AARCH64 ARCHITECTURE)
1746 M:      Catalin Marinas <catalin.marinas@arm.com>
1747 M:      Will Deacon <will.deacon@arm.com>
1748 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1749 S:      Maintained
1750 F:      arch/arm64/
1751 F:      Documentation/arm64/
1752
1753 AS3645A LED FLASH CONTROLLER DRIVER
1754 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1755 L:      linux-media@vger.kernel.org
1756 T:      git git://linuxtv.org/media_tree.git
1757 S:      Maintained
1758 F:      drivers/media/i2c/as3645a.c
1759 F:      include/media/as3645a.h
1760
1761 ASC7621 HARDWARE MONITOR DRIVER
1762 M:      George Joseph <george.joseph@fairview5.com>
1763 L:      lm-sensors@lm-sensors.org
1764 S:      Maintained
1765 F:      Documentation/hwmon/asc7621
1766 F:      drivers/hwmon/asc7621.c
1767
1768 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1769 M:      Corentin Chary <corentin.chary@gmail.com>
1770 L:      acpi4asus-user@lists.sourceforge.net
1771 L:      platform-driver-x86@vger.kernel.org
1772 W:      http://acpi4asus.sf.net
1773 S:      Maintained
1774 F:      drivers/platform/x86/asus*.c
1775 F:      drivers/platform/x86/eeepc*.c
1776
1777 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1778 R:      Dan Williams <dan.j.williams@intel.com>
1779 W:      http://sourceforge.net/projects/xscaleiop
1780 S:      Odd fixes
1781 F:      Documentation/crypto/async-tx-api.txt
1782 F:      crypto/async_tx/
1783 F:      drivers/dma/
1784 F:      include/linux/dmaengine.h
1785 F:      include/linux/async_tx.h
1786
1787 AT24 EEPROM DRIVER
1788 M:      Wolfram Sang <wsa@the-dreams.de>
1789 L:      linux-i2c@vger.kernel.org
1790 S:      Maintained
1791 F:      drivers/misc/eeprom/at24.c
1792 F:      include/linux/platform_data/at24.h
1793
1794 ATA OVER ETHERNET (AOE) DRIVER
1795 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1796 W:      http://www.openaoe.org/
1797 S:      Supported
1798 F:      Documentation/aoe/
1799 F:      drivers/block/aoe/
1800
1801 ATHEROS ATH GENERIC UTILITIES
1802 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1803 L:      linux-wireless@vger.kernel.org
1804 S:      Supported
1805 F:      drivers/net/wireless/ath/*
1806
1807 ATHEROS ATH5K WIRELESS DRIVER
1808 M:      Jiri Slaby <jirislaby@gmail.com>
1809 M:      Nick Kossifidis <mickflemm@gmail.com>
1810 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1811 L:      linux-wireless@vger.kernel.org
1812 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1813 S:      Maintained
1814 F:      drivers/net/wireless/ath/ath5k/
1815
1816 ATHEROS ATH6KL WIRELESS DRIVER
1817 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1818 L:      linux-wireless@vger.kernel.org
1819 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1820 T:      git git://github.com/kvalo/ath.git
1821 S:      Supported
1822 F:      drivers/net/wireless/ath/ath6kl/
1823
1824 WILOCITY WIL6210 WIRELESS DRIVER
1825 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1826 L:      linux-wireless@vger.kernel.org
1827 L:      wil6210@qca.qualcomm.com
1828 S:      Supported
1829 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1830 F:      drivers/net/wireless/ath/wil6210/
1831 F:      include/uapi/linux/wil6210_uapi.h
1832
1833 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1834 M:      Christian Lamparter <chunkeey@googlemail.com>
1835 L:      linux-wireless@vger.kernel.org
1836 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1837 S:      Maintained
1838 F:      drivers/net/wireless/ath/carl9170/
1839
1840 ATK0110 HWMON DRIVER
1841 M:      Luca Tettamanti <kronos.it@gmail.com>
1842 L:      lm-sensors@lm-sensors.org
1843 S:      Maintained
1844 F:      drivers/hwmon/asus_atk0110.c
1845
1846 ATI_REMOTE2 DRIVER
1847 M:      Ville Syrjala <syrjala@sci.fi>
1848 S:      Maintained
1849 F:      drivers/input/misc/ati_remote2.c
1850
1851 ATLX ETHERNET DRIVERS
1852 M:      Jay Cliburn <jcliburn@gmail.com>
1853 M:      Chris Snook <chris.snook@gmail.com>
1854 L:      netdev@vger.kernel.org
1855 W:      http://sourceforge.net/projects/atl1
1856 W:      http://atl1.sourceforge.net
1857 S:      Maintained
1858 F:      drivers/net/ethernet/atheros/
1859
1860 ATM
1861 M:      Chas Williams <3chas3@gmail.com>
1862 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1863 L:      netdev@vger.kernel.org
1864 W:      http://linux-atm.sourceforge.net
1865 S:      Maintained
1866 F:      drivers/atm/
1867 F:      include/linux/atm*
1868 F:      include/uapi/linux/atm*
1869
1870 ATMEL AT91 / AT32 MCI DRIVER
1871 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1872 S:      Maintained
1873 F:      drivers/mmc/host/atmel-mci.c
1874 F:      drivers/mmc/host/atmel-mci-regs.h
1875
1876 ATMEL AT91 / AT32 SERIAL DRIVER
1877 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1878 S:      Supported
1879 F:      drivers/tty/serial/atmel_serial.c
1880
1881 ATMEL Audio ALSA driver
1882 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1883 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1884 S:      Supported
1885 F:      sound/soc/atmel
1886
1887 ATMEL DMA DRIVER
1888 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1889 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1890 S:      Supported
1891 F:      drivers/dma/at_hdmac.c
1892 F:      drivers/dma/at_hdmac_regs.h
1893 F:      include/linux/platform_data/dma-atmel.h
1894
1895 ATMEL XDMA DRIVER
1896 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1897 L:      linux-arm-kernel@lists.infradead.org
1898 L:      dmaengine@vger.kernel.org
1899 S:      Supported
1900 F:      drivers/dma/at_xdmac.c
1901
1902 ATMEL I2C DRIVER
1903 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1904 L:      linux-i2c@vger.kernel.org
1905 S:      Supported
1906 F:      drivers/i2c/busses/i2c-at91.c
1907
1908 ATMEL ISI DRIVER
1909 M:      Josh Wu <josh.wu@atmel.com>
1910 L:      linux-media@vger.kernel.org
1911 S:      Supported
1912 F:      drivers/media/platform/soc_camera/atmel-isi.c
1913 F:      include/media/atmel-isi.h
1914
1915 ATMEL LCDFB DRIVER
1916 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1917 L:      linux-fbdev@vger.kernel.org
1918 S:      Maintained
1919 F:      drivers/video/fbdev/atmel_lcdfb.c
1920 F:      include/video/atmel_lcdc.h
1921
1922 ATMEL MACB ETHERNET DRIVER
1923 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1924 S:      Supported
1925 F:      drivers/net/ethernet/cadence/
1926
1927 ATMEL NAND DRIVER
1928 M:      Josh Wu <josh.wu@atmel.com>
1929 L:      linux-mtd@lists.infradead.org
1930 S:      Supported
1931 F:      drivers/mtd/nand/atmel_nand*
1932
1933 ATMEL SDMMC DRIVER
1934 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1935 L:      linux-mmc@vger.kernel.org
1936 S:      Supported
1937 F:      drivers/mmc/host/sdhci-of-at91.c
1938
1939 ATMEL SPI DRIVER
1940 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1941 S:      Supported
1942 F:      drivers/spi/spi-atmel.*
1943
1944 ATMEL SSC DRIVER
1945 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1947 S:      Supported
1948 F:      drivers/misc/atmel-ssc.c
1949 F:      include/linux/atmel-ssc.h
1950
1951 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1952 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1954 S:      Supported
1955 F:      drivers/misc/atmel_tclib.c
1956 F:      drivers/clocksource/tcb_clksrc.c
1957
1958 ATMEL USBA UDC DRIVER
1959 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1960 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1961 S:      Supported
1962 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1963
1964 ATMEL WIRELESS DRIVER
1965 M:      Simon Kelley <simon@thekelleys.org.uk>
1966 L:      linux-wireless@vger.kernel.org
1967 W:      http://www.thekelleys.org.uk/atmel
1968 W:      http://atmelwlandriver.sourceforge.net/
1969 S:      Maintained
1970 F:      drivers/net/wireless/atmel*
1971
1972 ATMEL MAXTOUCH DRIVER
1973 M:      Nick Dyer <nick.dyer@itdev.co.uk>
1974 T:      git git://github.com/atmel-maxtouch/linux.git
1975 S:      Supported
1976 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1977 F:      drivers/input/touchscreen/atmel_mxt_ts.c
1978 F:      include/linux/platform_data/atmel_mxt_ts.h
1979
1980 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1981 M:      Bradley Grove <linuxdrivers@attotech.com>
1982 L:      linux-scsi@vger.kernel.org
1983 W:      http://www.attotech.com
1984 S:      Supported
1985 F:      drivers/scsi/esas2r
1986
1987 ATUSB IEEE 802.15.4 RADIO DRIVER
1988 M:      Stefan Schmidt <stefan@osg.samsung.com>
1989 L:      linux-wpan@vger.kernel.org
1990 S:      Maintained
1991 F:      drivers/net/ieee802154/atusb.c
1992 F:      drivers/net/ieee802154/atusb.h
1993 F:      drivers/net/ieee802154/at86rf230.h
1994
1995 AUDIT SUBSYSTEM
1996 M:      Paul Moore <paul@paul-moore.com>
1997 M:      Eric Paris <eparis@redhat.com>
1998 L:      linux-audit@redhat.com (moderated for non-subscribers)
1999 W:      http://people.redhat.com/sgrubb/audit/
2000 T:      git git://git.infradead.org/users/pcmoore/audit
2001 S:      Maintained
2002 F:      include/linux/audit.h
2003 F:      include/uapi/linux/audit.h
2004 F:      kernel/audit*
2005
2006 AUXILIARY DISPLAY DRIVERS
2007 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2008 W:      http://miguelojeda.es/auxdisplay.htm
2009 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2010 S:      Maintained
2011 F:      drivers/auxdisplay/
2012 F:      include/linux/cfag12864b.h
2013
2014 AVR32 ARCHITECTURE
2015 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2016 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2017 W:      http://www.atmel.com/products/AVR32/
2018 W:      http://mirror.egtvedt.no/avr32linux.org/
2019 W:      http://avrfreaks.net/
2020 S:      Maintained
2021 F:      arch/avr32/
2022
2023 AVR32/AT32AP MACHINE SUPPORT
2024 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2025 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2026 S:      Maintained
2027 F:      arch/avr32/mach-at32ap/
2028
2029 AX.25 NETWORK LAYER
2030 M:      Ralf Baechle <ralf@linux-mips.org>
2031 L:      linux-hams@vger.kernel.org
2032 W:      http://www.linux-ax25.org/
2033 S:      Maintained
2034 F:      include/uapi/linux/ax25.h
2035 F:      include/net/ax25.h
2036 F:      net/ax25/
2037
2038 AZ6007 DVB DRIVER
2039 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2040 L:      linux-media@vger.kernel.org
2041 W:      http://linuxtv.org
2042 T:      git git://linuxtv.org/media_tree.git
2043 S:      Maintained
2044 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2045
2046 AZTECH FM RADIO RECEIVER DRIVER
2047 M:      Hans Verkuil <hverkuil@xs4all.nl>
2048 L:      linux-media@vger.kernel.org
2049 T:      git git://linuxtv.org/media_tree.git
2050 W:      http://linuxtv.org
2051 S:      Maintained
2052 F:      drivers/media/radio/radio-aztech*
2053
2054 B43 WIRELESS DRIVER
2055 L:      linux-wireless@vger.kernel.org
2056 L:      b43-dev@lists.infradead.org
2057 W:      http://wireless.kernel.org/en/users/Drivers/b43
2058 S:      Odd Fixes
2059 F:      drivers/net/wireless/b43/
2060
2061 B43LEGACY WIRELESS DRIVER
2062 M:      Larry Finger <Larry.Finger@lwfinger.net>
2063 L:      linux-wireless@vger.kernel.org
2064 L:      b43-dev@lists.infradead.org
2065 W:      http://wireless.kernel.org/en/users/Drivers/b43
2066 S:      Maintained
2067 F:      drivers/net/wireless/b43legacy/
2068
2069 BACKLIGHT CLASS/SUBSYSTEM
2070 M:      Jingoo Han <jingoohan1@gmail.com>
2071 M:      Lee Jones <lee.jones@linaro.org>
2072 S:      Maintained
2073 F:      drivers/video/backlight/
2074 F:      include/linux/backlight.h
2075
2076 BATMAN ADVANCED
2077 M:      Marek Lindner <mareklindner@neomailbox.ch>
2078 M:      Simon Wunderlich <sw@simonwunderlich.de>
2079 M:      Antonio Quartulli <antonio@meshcoding.com>
2080 L:      b.a.t.m.a.n@lists.open-mesh.org
2081 W:      http://www.open-mesh.org/
2082 S:      Maintained
2083 F:      net/batman-adv/
2084
2085 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2086 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2087 L:      linux-hams@vger.kernel.org
2088 W:      http://www.baycom.org/~tom/ham/ham.html
2089 S:      Maintained
2090 F:      drivers/net/hamradio/baycom*
2091
2092 BCACHE (BLOCK LAYER CACHE)
2093 M:      Kent Overstreet <kent.overstreet@gmail.com>
2094 L:      linux-bcache@vger.kernel.org
2095 W:      http://bcache.evilpiepirate.org
2096 S:      Maintained
2097 F:      drivers/md/bcache/
2098
2099 BDISP ST MEDIA DRIVER
2100 M:      Fabien Dessenne <fabien.dessenne@st.com>
2101 L:      linux-media@vger.kernel.org
2102 T:      git git://linuxtv.org/media_tree.git
2103 W:      http://linuxtv.org
2104 S:      Supported
2105 F:      drivers/media/platform/sti/bdisp
2106
2107 BEFS FILE SYSTEM
2108 S:      Orphan
2109 F:      Documentation/filesystems/befs.txt
2110 F:      fs/befs/
2111
2112 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2113 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2114 L:      netdev@vger.kernel.org
2115 S:      Maintained
2116 F:      drivers/net/ethernet/ec_bhf.c
2117
2118 BFS FILE SYSTEM
2119 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2120 S:      Maintained
2121 F:      Documentation/filesystems/bfs.txt
2122 F:      fs/bfs/
2123 F:      include/uapi/linux/bfs_fs.h
2124
2125 BLACKFIN ARCHITECTURE
2126 M:      Steven Miao <realmz6@gmail.com>
2127 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2128 T:      git git://git.code.sf.net/p/adi-linux/code
2129 W:      http://blackfin.uclinux.org
2130 S:      Supported
2131 F:      arch/blackfin/
2132
2133 BLACKFIN EMAC DRIVER
2134 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2135 W:      http://blackfin.uclinux.org
2136 S:      Supported
2137 F:      drivers/net/ethernet/adi/
2138
2139 BLACKFIN RTC DRIVER
2140 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2141 W:      http://blackfin.uclinux.org
2142 S:      Supported
2143 F:      drivers/rtc/rtc-bfin.c
2144
2145 BLACKFIN SDH DRIVER
2146 M:      Sonic Zhang <sonic.zhang@analog.com>
2147 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2148 W:      http://blackfin.uclinux.org
2149 S:      Supported
2150 F:      drivers/mmc/host/bfin_sdh.c
2151
2152 BLACKFIN SERIAL DRIVER
2153 M:      Sonic Zhang <sonic.zhang@analog.com>
2154 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2155 W:      http://blackfin.uclinux.org
2156 S:      Supported
2157 F:      drivers/tty/serial/bfin_uart.c
2158
2159 BLACKFIN WATCHDOG DRIVER
2160 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2161 W:      http://blackfin.uclinux.org
2162 S:      Supported
2163 F:      drivers/watchdog/bfin_wdt.c
2164
2165 BLACKFIN I2C TWI DRIVER
2166 M:      Sonic Zhang <sonic.zhang@analog.com>
2167 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2168 W:      http://blackfin.uclinux.org/
2169 S:      Supported
2170 F:      drivers/i2c/busses/i2c-bfin-twi.c
2171
2172 BLACKFIN MEDIA DRIVER
2173 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2174 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2175 W:      http://blackfin.uclinux.org/
2176 S:      Supported
2177 F:      drivers/media/platform/blackfin/
2178 F:      drivers/media/i2c/adv7183*
2179 F:      drivers/media/i2c/vs6624*
2180
2181 BLINKM RGB LED DRIVER
2182 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2183 S:      Maintained
2184 F:      drivers/leds/leds-blinkm.c
2185
2186 BLOCK LAYER
2187 M:      Jens Axboe <axboe@kernel.dk>
2188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2189 S:      Maintained
2190 F:      block/
2191 F:      kernel/trace/blktrace.c
2192
2193 BLOCK2MTD DRIVER
2194 M:      Joern Engel <joern@lazybastard.org>
2195 L:      linux-mtd@lists.infradead.org
2196 S:      Maintained
2197 F:      drivers/mtd/devices/block2mtd.c
2198
2199 BLUETOOTH DRIVERS
2200 M:      Marcel Holtmann <marcel@holtmann.org>
2201 M:      Gustavo Padovan <gustavo@padovan.org>
2202 M:      Johan Hedberg <johan.hedberg@gmail.com>
2203 L:      linux-bluetooth@vger.kernel.org
2204 W:      http://www.bluez.org/
2205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2207 S:      Maintained
2208 F:      drivers/bluetooth/
2209
2210 BLUETOOTH SUBSYSTEM
2211 M:      Marcel Holtmann <marcel@holtmann.org>
2212 M:      Gustavo Padovan <gustavo@padovan.org>
2213 M:      Johan Hedberg <johan.hedberg@gmail.com>
2214 L:      linux-bluetooth@vger.kernel.org
2215 W:      http://www.bluez.org/
2216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2218 S:      Maintained
2219 F:      net/bluetooth/
2220 F:      include/net/bluetooth/
2221
2222 BONDING DRIVER
2223 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2224 M:      Veaceslav Falico <vfalico@gmail.com>
2225 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2226 L:      netdev@vger.kernel.org
2227 W:      http://sourceforge.net/projects/bonding/
2228 S:      Supported
2229 F:      drivers/net/bonding/
2230 F:      include/uapi/linux/if_bonding.h
2231
2232 BPF (Safe dynamic programs and tools)
2233 M:      Alexei Starovoitov <ast@kernel.org>
2234 L:      netdev@vger.kernel.org
2235 L:      linux-kernel@vger.kernel.org
2236 S:      Supported
2237 F:      kernel/bpf/
2238
2239 BROADCOM B44 10/100 ETHERNET DRIVER
2240 M:      Gary Zambrano <zambrano@broadcom.com>
2241 L:      netdev@vger.kernel.org
2242 S:      Supported
2243 F:      drivers/net/ethernet/broadcom/b44.*
2244
2245 BROADCOM GENET ETHERNET DRIVER
2246 M:      Florian Fainelli <f.fainelli@gmail.com>
2247 L:      netdev@vger.kernel.org
2248 S:      Supported
2249 F:      drivers/net/ethernet/broadcom/genet/
2250
2251 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2252 M:      Sony Chacko <sony.chacko@qlogic.com>
2253 M:      Dept-HSGLinuxNICDev@qlogic.com
2254 L:      netdev@vger.kernel.org
2255 S:      Supported
2256 F:      drivers/net/ethernet/broadcom/bnx2.*
2257 F:      drivers/net/ethernet/broadcom/bnx2_*
2258
2259 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2260 M:      Ariel Elior <ariel.elior@qlogic.com>
2261 L:      netdev@vger.kernel.org
2262 S:      Supported
2263 F:      drivers/net/ethernet/broadcom/bnx2x/
2264
2265 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2266 M:      Florian Fainelli <f.fainelli@gmail.com>
2267 M:      Ray Jui <rjui@broadcom.com>
2268 M:      Scott Branden <sbranden@broadcom.com>
2269 L:      bcm-kernel-feedback-list@broadcom.com
2270 T:      git git://github.com/broadcom/mach-bcm
2271 S:      Maintained
2272 F:      arch/arm/mach-bcm/
2273 F:      arch/arm/boot/dts/bcm113*
2274 F:      arch/arm/boot/dts/bcm216*
2275 F:      arch/arm/boot/dts/bcm281*
2276 F:      arch/arm/configs/bcm_defconfig
2277 F:      drivers/mmc/host/sdhci-bcm-kona.c
2278 F:      drivers/clocksource/bcm_kona_timer.c
2279
2280 BROADCOM BCM2835 ARM ARCHITECTURE
2281 M:      Stephen Warren <swarren@wwwdotorg.org>
2282 M:      Lee Jones <lee@kernel.org>
2283 M:      Eric Anholt <eric@anholt.net>
2284 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2287 S:      Maintained
2288 N:      bcm2835
2289
2290 BROADCOM BCM33XX MIPS ARCHITECTURE
2291 M:      Kevin Cernekee <cernekee@gmail.com>
2292 L:      linux-mips@linux-mips.org
2293 S:      Maintained
2294 F:      arch/mips/bcm3384/*
2295 F:      arch/mips/include/asm/mach-bcm3384/*
2296 F:      arch/mips/kernel/*bmips*
2297
2298 BROADCOM BCM47XX MIPS ARCHITECTURE
2299 M:      Hauke Mehrtens <hauke@hauke-m.de>
2300 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2301 L:      linux-mips@linux-mips.org
2302 S:      Maintained
2303 F:      arch/mips/bcm47xx/*
2304 F:      arch/mips/include/asm/mach-bcm47xx/*
2305
2306 BROADCOM BCM5301X ARM ARCHITECTURE
2307 M:      Hauke Mehrtens <hauke@hauke-m.de>
2308 L:      linux-arm-kernel@lists.infradead.org
2309 S:      Maintained
2310 F:      arch/arm/mach-bcm/bcm_5301x.c
2311 F:      arch/arm/boot/dts/bcm5301x.dtsi
2312 F:      arch/arm/boot/dts/bcm470*
2313
2314 BROADCOM BCM63XX ARM ARCHITECTURE
2315 M:      Florian Fainelli <f.fainelli@gmail.com>
2316 L:      linux-arm-kernel@lists.infradead.org
2317 T:      git git://github.com/broadcom/arm-bcm63xx.git
2318 S:      Maintained
2319 F:      arch/arm/mach-bcm/bcm63xx.c
2320 F:      arch/arm/include/debug/bcm63xx.S
2321
2322 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2323 M:      Kevin Cernekee <cernekee@gmail.com>
2324 L:      linux-usb@vger.kernel.org
2325 S:      Maintained
2326 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2327
2328 BROADCOM BCM7XXX ARM ARCHITECTURE
2329 M:      Brian Norris <computersforpeace@gmail.com>
2330 M:      Gregory Fong <gregory.0xf0@gmail.com>
2331 M:      Florian Fainelli <f.fainelli@gmail.com>
2332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2333 T:      git git://github.com/broadcom/stblinux.git
2334 S:      Maintained
2335 F:      arch/arm/mach-bcm/*brcmstb*
2336 F:      arch/arm/boot/dts/bcm7*.dts*
2337 F:      drivers/bus/brcmstb_gisb.c
2338 N:      brcmstb
2339
2340 BROADCOM BMIPS MIPS ARCHITECTURE
2341 M:      Kevin Cernekee <cernekee@gmail.com>
2342 M:      Florian Fainelli <f.fainelli@gmail.com>
2343 L:      linux-mips@linux-mips.org
2344 T:      git git://github.com/broadcom/stblinux.git
2345 S:      Maintained
2346 F:      arch/mips/bmips/*
2347 F:      arch/mips/include/asm/mach-bmips/*
2348 F:      arch/mips/kernel/*bmips*
2349 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2350 F:      drivers/irqchip/irq-bcm7*
2351 F:      drivers/irqchip/irq-brcmstb*
2352
2353 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2354 M:      Prashant Sreedharan <prashant@broadcom.com>
2355 M:      Michael Chan <mchan@broadcom.com>
2356 L:      netdev@vger.kernel.org
2357 S:      Supported
2358 F:      drivers/net/ethernet/broadcom/tg3.*
2359
2360 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2361 M:      Brett Rudley <brudley@broadcom.com>
2362 M:      Arend van Spriel <arend@broadcom.com>
2363 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2364 M:      Hante Meuleman <meuleman@broadcom.com>
2365 L:      linux-wireless@vger.kernel.org
2366 L:      brcm80211-dev-list@broadcom.com
2367 S:      Supported
2368 F:      drivers/net/wireless/brcm80211/
2369
2370 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2371 M:      QLogic-Storage-Upstream@qlogic.com
2372 L:      linux-scsi@vger.kernel.org
2373 S:      Supported
2374 F:      drivers/scsi/bnx2fc/
2375
2376 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2377 M:      QLogic-Storage-Upstream@qlogic.com
2378 L:      linux-scsi@vger.kernel.org
2379 S:      Supported
2380 F:      drivers/scsi/bnx2i/
2381
2382 BROADCOM IPROC ARM ARCHITECTURE
2383 M:      Ray Jui <rjui@broadcom.com>
2384 M:      Scott Branden <sbranden@broadcom.com>
2385 M:      Jon Mason <jonmason@broadcom.com>
2386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 L:      bcm-kernel-feedback-list@broadcom.com
2388 T:      git git://github.com/broadcom/cygnus-linux.git
2389 S:      Maintained
2390 N:      iproc
2391 N:      cygnus
2392 N:      nsp
2393 N:      bcm9113*
2394 N:      bcm9583*
2395 N:      bcm9585*
2396 N:      bcm9586*
2397 N:      bcm988312
2398 N:      bcm113*
2399 N:      bcm583*
2400 N:      bcm585*
2401 N:      bcm586*
2402 N:      bcm88312
2403
2404 BROADCOM BRCMSTB GPIO DRIVER
2405 M:      Gregory Fong <gregory.0xf0@gmail.com>
2406 L:      bcm-kernel-feedback-list@broadcom.com>
2407 S:      Supported
2408 F:      drivers/gpio/gpio-brcmstb.c
2409 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2410
2411 BROADCOM KONA GPIO DRIVER
2412 M:      Ray Jui <rjui@broadcom.com>
2413 L:      bcm-kernel-feedback-list@broadcom.com
2414 S:      Supported
2415 F:      drivers/gpio/gpio-bcm-kona.c
2416 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2417
2418 BROADCOM NVRAM DRIVER
2419 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2420 L:      linux-mips@linux-mips.org
2421 S:      Maintained
2422 F:      drivers/firmware/broadcom/*
2423
2424 BROADCOM STB NAND FLASH DRIVER
2425 M:      Brian Norris <computersforpeace@gmail.com>
2426 L:      linux-mtd@lists.infradead.org
2427 S:      Maintained
2428 F:      drivers/mtd/nand/brcmnand/
2429
2430 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2431 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2432 L:      linux-wireless@vger.kernel.org
2433 S:      Maintained
2434 F:      drivers/bcma/
2435 F:      include/linux/bcma/
2436
2437 BROADCOM SYSTEMPORT ETHERNET DRIVER
2438 M:      Florian Fainelli <f.fainelli@gmail.com>
2439 L:      netdev@vger.kernel.org
2440 S:      Supported
2441 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2442
2443 BROCADE BFA FC SCSI DRIVER
2444 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2445 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2446 L:      linux-scsi@vger.kernel.org
2447 S:      Supported
2448 F:      drivers/scsi/bfa/
2449
2450 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2451 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2452 L:      netdev@vger.kernel.org
2453 S:      Supported
2454 F:      drivers/net/ethernet/brocade/bna/
2455
2456 BSG (block layer generic sg v4 driver)
2457 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2458 L:      linux-scsi@vger.kernel.org
2459 S:      Supported
2460 F:      block/bsg.c
2461 F:      include/linux/bsg.h
2462 F:      include/uapi/linux/bsg.h
2463
2464 BT87X AUDIO DRIVER
2465 M:      Clemens Ladisch <clemens@ladisch.de>
2466 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2467 T:      git git://git.alsa-project.org/alsa-kernel.git
2468 S:      Maintained
2469 F:      Documentation/sound/alsa/Bt87x.txt
2470 F:      sound/pci/bt87x.c
2471
2472 BT8XXGPIO DRIVER
2473 M:      Michael Buesch <m@bues.ch>
2474 W:      http://bu3sch.de/btgpio.php
2475 S:      Maintained
2476 F:      drivers/gpio/gpio-bt8xx.c
2477
2478 BTRFS FILE SYSTEM
2479 M:      Chris Mason <clm@fb.com>
2480 M:      Josef Bacik <jbacik@fb.com>
2481 M:      David Sterba <dsterba@suse.com>
2482 L:      linux-btrfs@vger.kernel.org
2483 W:      http://btrfs.wiki.kernel.org/
2484 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2486 S:      Maintained
2487 F:      Documentation/filesystems/btrfs.txt
2488 F:      fs/btrfs/
2489
2490 BTTV VIDEO4LINUX DRIVER
2491 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2492 L:      linux-media@vger.kernel.org
2493 W:      http://linuxtv.org
2494 T:      git git://linuxtv.org/media_tree.git
2495 S:      Odd fixes
2496 F:      Documentation/video4linux/bttv/
2497 F:      drivers/media/pci/bt8xx/bttv*
2498
2499 BUSLOGIC SCSI DRIVER
2500 M:      Khalid Aziz <khalid@gonehiking.org>
2501 L:      linux-scsi@vger.kernel.org
2502 S:      Maintained
2503 F:      drivers/scsi/BusLogic.*
2504 F:      drivers/scsi/FlashPoint.*
2505
2506 C-MEDIA CMI8788 DRIVER
2507 M:      Clemens Ladisch <clemens@ladisch.de>
2508 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2509 T:      git git://git.alsa-project.org/alsa-kernel.git
2510 S:      Maintained
2511 F:      sound/pci/oxygen/
2512
2513 C6X ARCHITECTURE
2514 M:      Mark Salter <msalter@redhat.com>
2515 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2516 L:      linux-c6x-dev@linux-c6x.org
2517 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2518 S:      Maintained
2519 F:      arch/c6x/
2520
2521 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2522 M:      David Howells <dhowells@redhat.com>
2523 L:      linux-cachefs@redhat.com
2524 S:      Supported
2525 F:      Documentation/filesystems/caching/cachefiles.txt
2526 F:      fs/cachefiles/
2527
2528 CADET FM/AM RADIO RECEIVER DRIVER
2529 M:      Hans Verkuil <hverkuil@xs4all.nl>
2530 L:      linux-media@vger.kernel.org
2531 T:      git git://linuxtv.org/media_tree.git
2532 W:      http://linuxtv.org
2533 S:      Maintained
2534 F:      drivers/media/radio/radio-cadet*
2535
2536 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2537 M:      Jonathan Corbet <corbet@lwn.net>
2538 L:      linux-media@vger.kernel.org
2539 T:      git git://linuxtv.org/media_tree.git
2540 S:      Maintained
2541 F:      Documentation/video4linux/cafe_ccic
2542 F:      drivers/media/platform/marvell-ccic/
2543
2544 CAIF NETWORK LAYER
2545 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2546 L:      netdev@vger.kernel.org
2547 S:      Supported
2548 F:      Documentation/networking/caif/
2549 F:      drivers/net/caif/
2550 F:      include/uapi/linux/caif/
2551 F:      include/net/caif/
2552 F:      net/caif/
2553
2554 CALGARY x86-64 IOMMU
2555 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2556 M:      "Jon D. Mason" <jdmason@kudzu.us>
2557 L:      discuss@x86-64.org
2558 S:      Maintained
2559 F:      arch/x86/kernel/pci-calgary_64.c
2560 F:      arch/x86/kernel/tce_64.c
2561 F:      arch/x86/include/asm/calgary.h
2562 F:      arch/x86/include/asm/tce.h
2563
2564 CAN NETWORK LAYER
2565 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2566 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2567 L:      linux-can@vger.kernel.org
2568 W:      https://github.com/linux-can
2569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2571 S:      Maintained
2572 F:      Documentation/networking/can.txt
2573 F:      net/can/
2574 F:      include/linux/can/core.h
2575 F:      include/uapi/linux/can.h
2576 F:      include/uapi/linux/can/bcm.h
2577 F:      include/uapi/linux/can/raw.h
2578 F:      include/uapi/linux/can/gw.h
2579
2580 CAN NETWORK DRIVERS
2581 M:      Wolfgang Grandegger <wg@grandegger.com>
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:      drivers/net/can/
2589 F:      include/linux/can/dev.h
2590 F:      include/linux/can/platform/
2591 F:      include/uapi/linux/can/error.h
2592 F:      include/uapi/linux/can/netlink.h
2593
2594 CAPABILITIES
2595 M:      Serge Hallyn <serge.hallyn@canonical.com>
2596 L:      linux-security-module@vger.kernel.org
2597 S:      Supported
2598 F:      include/linux/capability.h
2599 F:      include/uapi/linux/capability.h
2600 F:      security/commoncap.c
2601 F:      kernel/capability.c
2602
2603 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2604 M:      Kevin Tsai <ktsai@capellamicro.com>
2605 S:      Maintained
2606 F:      drivers/iio/light/cm*
2607 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2608
2609 CAVIUM LIQUIDIO NETWORK DRIVER
2610 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2611 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2612 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2613 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2614 L:     netdev@vger.kernel.org
2615 W:     http://www.cavium.com
2616 S:     Supported
2617 F:     drivers/net/ethernet/cavium/liquidio/
2618
2619 CC2520 IEEE-802.15.4 RADIO DRIVER
2620 M:      Varka Bhadram <varkabhadram@gmail.com>
2621 L:      linux-wpan@vger.kernel.org
2622 S:      Maintained
2623 F:      drivers/net/ieee802154/cc2520.c
2624 F:      include/linux/spi/cc2520.h
2625 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2626
2627 CELL BROADBAND ENGINE ARCHITECTURE
2628 M:      Arnd Bergmann <arnd@arndb.de>
2629 L:      linuxppc-dev@lists.ozlabs.org
2630 W:      http://www.ibm.com/developerworks/power/cell/
2631 S:      Supported
2632 F:      arch/powerpc/include/asm/cell*.h
2633 F:      arch/powerpc/include/asm/spu*.h
2634 F:      arch/powerpc/include/uapi/asm/spu*.h
2635 F:      arch/powerpc/oprofile/*cell*
2636 F:      arch/powerpc/platforms/cell/
2637
2638 CEPH COMMON CODE (LIBCEPH)
2639 M:      Ilya Dryomov <idryomov@gmail.com>
2640 M:      "Yan, Zheng" <zyan@redhat.com>
2641 M:      Sage Weil <sage@redhat.com>
2642 L:      ceph-devel@vger.kernel.org
2643 W:      http://ceph.com/
2644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2645 T:      git git://github.com/ceph/ceph-client.git
2646 S:      Supported
2647 F:      net/ceph/
2648 F:      include/linux/ceph/
2649 F:      include/linux/crush/
2650
2651 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2652 M:      "Yan, Zheng" <zyan@redhat.com>
2653 M:      Sage Weil <sage@redhat.com>
2654 M:      Ilya Dryomov <idryomov@gmail.com>
2655 L:      ceph-devel@vger.kernel.org
2656 W:      http://ceph.com/
2657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2658 T:      git git://github.com/ceph/ceph-client.git
2659 S:      Supported
2660 F:      Documentation/filesystems/ceph.txt
2661 F:      fs/ceph/
2662
2663 CERTIFICATE HANDLING:
2664 M:      David Howells <dhowells@redhat.com>
2665 M:      David Woodhouse <dwmw2@infradead.org>
2666 L:      keyrings@linux-nfs.org
2667 S:      Maintained
2668 F:      Documentation/module-signing.txt
2669 F:      certs/
2670 F:      scripts/extract-cert.c
2671
2672 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2673 L:      linux-usb@vger.kernel.org
2674 S:      Orphan
2675 F:      Documentation/usb/WUSB-Design-overview.txt
2676 F:      Documentation/usb/wusb-cbaf
2677 F:      drivers/usb/host/hwa-hc.c
2678 F:      drivers/usb/host/whci/
2679 F:      drivers/usb/wusbcore/
2680 F:      include/linux/usb/wusb*
2681
2682 CFAG12864B LCD DRIVER
2683 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2684 W:      http://miguelojeda.es/auxdisplay.htm
2685 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2686 S:      Maintained
2687 F:      drivers/auxdisplay/cfag12864b.c
2688 F:      include/linux/cfag12864b.h
2689
2690 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2691 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2692 W:      http://miguelojeda.es/auxdisplay.htm
2693 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2694 S:      Maintained
2695 F:      drivers/auxdisplay/cfag12864bfb.c
2696 F:      include/linux/cfag12864b.h
2697
2698 CFG80211 and NL80211
2699 M:      Johannes Berg <johannes@sipsolutions.net>
2700 L:      linux-wireless@vger.kernel.org
2701 W:      http://wireless.kernel.org/
2702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2704 S:      Maintained
2705 F:      include/uapi/linux/nl80211.h
2706 F:      include/net/cfg80211.h
2707 F:      net/wireless/*
2708 X:      net/wireless/wext*
2709
2710 CHAR and MISC DRIVERS
2711 M:      Arnd Bergmann <arnd@arndb.de>
2712 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2714 S:      Supported
2715 F:      drivers/char/*
2716 F:      drivers/misc/*
2717 F:      include/linux/miscdevice.h
2718
2719 CHECKPATCH
2720 M:      Andy Whitcroft <apw@canonical.com>
2721 M:      Joe Perches <joe@perches.com>
2722 S:      Maintained
2723 F:      scripts/checkpatch.pl
2724
2725 CHINESE DOCUMENTATION
2726 M:      Harry Wei <harryxiyou@gmail.com>
2727 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2728 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2729 S:      Maintained
2730 F:      Documentation/zh_CN/
2731
2732 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2733 M:      Peter Chen <Peter.Chen@freescale.com>
2734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2735 L:      linux-usb@vger.kernel.org
2736 S:      Maintained
2737 F:      drivers/usb/chipidea/
2738
2739 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2740 M:      Hans de Goede <hdegoede@redhat.com>
2741 L:      linux-input@vger.kernel.org
2742 S:      Maintained
2743 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2744 F:      drivers/input/touchscreen/chipone_icn8318.c
2745
2746 CHROME HARDWARE PLATFORM SUPPORT
2747 M:      Olof Johansson <olof@lixom.net>
2748 S:      Maintained
2749 F:      drivers/platform/chrome/
2750
2751 CISCO VIC ETHERNET NIC DRIVER
2752 M:      Christian Benvenuti <benve@cisco.com>
2753 M:      Sujith Sankar <ssujith@cisco.com>
2754 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2755 M:      Neel Patel <neepatel@cisco.com>
2756 S:      Supported
2757 F:      drivers/net/ethernet/cisco/enic/
2758
2759 CISCO VIC LOW LATENCY NIC DRIVER
2760 M:      Upinder Malhi <umalhi@cisco.com>
2761 S:      Supported
2762 F:      drivers/infiniband/hw/usnic
2763
2764 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2765 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2766 L:      netdev@vger.kernel.org
2767 S:      Maintained
2768 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2769
2770 CIRRUS LOGIC AUDIO CODEC DRIVERS
2771 M:      Brian Austin <brian.austin@cirrus.com>
2772 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2773 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2774 S:      Maintained
2775 F:      sound/soc/codecs/cs*
2776
2777 CLEANCACHE API
2778 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2779 L:      linux-kernel@vger.kernel.org
2780 S:      Maintained
2781 F:      mm/cleancache.c
2782 F:      include/linux/cleancache.h
2783
2784 CLK API
2785 M:      Russell King <linux@arm.linux.org.uk>
2786 L:      linux-clk@vger.kernel.org
2787 S:      Maintained
2788 F:      include/linux/clk.h
2789
2790 CLOCKSOURCE, CLOCKEVENT DRIVERS
2791 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2792 M:      Thomas Gleixner <tglx@linutronix.de>
2793 L:      linux-kernel@vger.kernel.org
2794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2795 S:      Supported
2796 F:      drivers/clocksource
2797
2798 CISCO FCOE HBA DRIVER
2799 M:      Hiral Patel <hiralpat@cisco.com>
2800 M:      Suma Ramars <sramars@cisco.com>
2801 M:      Brian Uchino <buchino@cisco.com>
2802 L:      linux-scsi@vger.kernel.org
2803 S:      Supported
2804 F:      drivers/scsi/fnic/
2805
2806 CISCO SCSI HBA DRIVER
2807 M:      Narsimhulu Musini <nmusini@cisco.com>
2808 M:      Sesidhar Baddela <sebaddel@cisco.com>
2809 L:      linux-scsi@vger.kernel.org
2810 S:      Supported
2811 F:      drivers/scsi/snic/
2812
2813 CMPC ACPI DRIVER
2814 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2815 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2816 L:      platform-driver-x86@vger.kernel.org
2817 S:      Supported
2818 F:      drivers/platform/x86/classmate-laptop.c
2819
2820 COBALT MEDIA DRIVER
2821 M:      Hans Verkuil <hans.verkuil@cisco.com>
2822 L:      linux-media@vger.kernel.org
2823 T:      git git://linuxtv.org/media_tree.git
2824 W:      http://linuxtv.org
2825 S:      Supported
2826 F:      drivers/media/pci/cobalt/
2827
2828 COCCINELLE/Semantic Patches (SmPL)
2829 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2830 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2831 M:      Nicolas Palix <nicolas.palix@imag.fr>
2832 M:      Michal Marek <mmarek@suse.com>
2833 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2835 W:      http://coccinelle.lip6.fr/
2836 S:      Supported
2837 F:      Documentation/coccinelle.txt
2838 F:      scripts/coccinelle/
2839 F:      scripts/coccicheck
2840
2841 CODA FILE SYSTEM
2842 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2843 M:      coda@cs.cmu.edu
2844 L:      codalist@coda.cs.cmu.edu
2845 W:      http://www.coda.cs.cmu.edu/
2846 S:      Maintained
2847 F:      Documentation/filesystems/coda.txt
2848 F:      fs/coda/
2849 F:      include/linux/coda*.h
2850 F:      include/uapi/linux/coda*.h
2851
2852 CODA V4L2 MEM2MEM DRIVER
2853 M:      Philipp Zabel <p.zabel@pengutronix.de>
2854 L:      linux-media@vger.kernel.org
2855 S:      Maintained
2856 F:      Documentation/devicetree/bindings/media/coda.txt
2857 F:      drivers/media/platform/coda/
2858
2859 COMMON CLK FRAMEWORK
2860 M:      Michael Turquette <mturquette@baylibre.com>
2861 M:      Stephen Boyd <sboyd@codeaurora.org>
2862 L:      linux-clk@vger.kernel.org
2863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2864 S:      Maintained
2865 F:      drivers/clk/
2866 X:      drivers/clk/clkdev.c
2867 F:      include/linux/clk-pr*
2868 F:      include/linux/clk/
2869
2870 COMMON INTERNET FILE SYSTEM (CIFS)
2871 M:      Steve French <sfrench@samba.org>
2872 L:      linux-cifs@vger.kernel.org
2873 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2874 W:      http://linux-cifs.samba.org/
2875 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2876 S:      Supported
2877 F:      Documentation/filesystems/cifs/
2878 F:      fs/cifs/
2879
2880 COMPACTPCI HOTPLUG CORE
2881 M:      Scott Murray <scott@spiteful.org>
2882 L:      linux-pci@vger.kernel.org
2883 S:      Maintained
2884 F:      drivers/pci/hotplug/cpci_hotplug*
2885
2886 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2887 M:      Scott Murray <scott@spiteful.org>
2888 L:      linux-pci@vger.kernel.org
2889 S:      Maintained
2890 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2891
2892 COMPACTPCI HOTPLUG GENERIC DRIVER
2893 M:      Scott Murray <scott@spiteful.org>
2894 L:      linux-pci@vger.kernel.org
2895 S:      Maintained
2896 F:      drivers/pci/hotplug/cpcihp_generic.c
2897
2898 COMPAL LAPTOP SUPPORT
2899 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2900 L:      platform-driver-x86@vger.kernel.org
2901 S:      Maintained
2902 F:      drivers/platform/x86/compal-laptop.c
2903
2904 CONEXANT ACCESSRUNNER USB DRIVER
2905 M:      Simon Arlott <cxacru@fire.lp0.eu>
2906 L:      accessrunner-general@lists.sourceforge.net
2907 W:      http://accessrunner.sourceforge.net/
2908 S:      Maintained
2909 F:      drivers/usb/atm/cxacru.c
2910
2911 CONFIGFS
2912 M:      Joel Becker <jlbec@evilplan.org>
2913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2914 S:      Supported
2915 F:      fs/configfs/
2916 F:      include/linux/configfs.h
2917
2918 CONNECTOR
2919 M:      Evgeniy Polyakov <zbr@ioremap.net>
2920 L:      netdev@vger.kernel.org
2921 S:      Maintained
2922 F:      drivers/connector/
2923
2924 CONTROL GROUP (CGROUP)
2925 M:      Tejun Heo <tj@kernel.org>
2926 M:      Li Zefan <lizefan@huawei.com>
2927 M:      Johannes Weiner <hannes@cmpxchg.org>
2928 L:      cgroups@vger.kernel.org
2929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2930 S:      Maintained
2931 F:      Documentation/cgroups/
2932 F:      include/linux/cgroup*
2933 F:      kernel/cgroup*
2934
2935 CONTROL GROUP - CPUSET
2936 M:      Li Zefan <lizefan@huawei.com>
2937 L:      cgroups@vger.kernel.org
2938 W:      http://www.bullopensource.org/cpuset/
2939 W:      http://oss.sgi.com/projects/cpusets/
2940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2941 S:      Maintained
2942 F:      Documentation/cgroups/cpusets.txt
2943 F:      include/linux/cpuset.h
2944 F:      kernel/cpuset.c
2945
2946 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2947 M:      Johannes Weiner <hannes@cmpxchg.org>
2948 M:      Michal Hocko <mhocko@kernel.org>
2949 L:      cgroups@vger.kernel.org
2950 L:      linux-mm@kvack.org
2951 S:      Maintained
2952 F:      mm/memcontrol.c
2953 F:      mm/swap_cgroup.c
2954
2955 CORETEMP HARDWARE MONITORING DRIVER
2956 M:      Fenghua Yu <fenghua.yu@intel.com>
2957 L:      lm-sensors@lm-sensors.org
2958 S:      Maintained
2959 F:      Documentation/hwmon/coretemp
2960 F:      drivers/hwmon/coretemp.c
2961
2962 COSA/SRP SYNC SERIAL DRIVER
2963 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2964 W:      http://www.fi.muni.cz/~kas/cosa/
2965 S:      Maintained
2966 F:      drivers/net/wan/cosa*
2967
2968 CPMAC ETHERNET DRIVER
2969 M:      Florian Fainelli <florian@openwrt.org>
2970 L:      netdev@vger.kernel.org
2971 S:      Maintained
2972 F:      drivers/net/ethernet/ti/cpmac.c
2973
2974 CPU FREQUENCY DRIVERS
2975 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2976 M:      Viresh Kumar <viresh.kumar@linaro.org>
2977 L:      linux-pm@vger.kernel.org
2978 S:      Maintained
2979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2980 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2981 F:      drivers/cpufreq/
2982 F:      include/linux/cpufreq.h
2983
2984 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2985 M:      Viresh Kumar <viresh.kumar@linaro.org>
2986 M:      Sudeep Holla <sudeep.holla@arm.com>
2987 L:      linux-pm@vger.kernel.org
2988 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2989 S:      Maintained
2990 F:      drivers/cpufreq/arm_big_little.h
2991 F:      drivers/cpufreq/arm_big_little.c
2992 F:      drivers/cpufreq/arm_big_little_dt.c
2993
2994 CPUIDLE DRIVER - ARM BIG LITTLE
2995 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2996 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2997 L:      linux-pm@vger.kernel.org
2998 L:      linux-arm-kernel@lists.infradead.org
2999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3000 S:      Maintained
3001 F:      drivers/cpuidle/cpuidle-big_little.c
3002
3003 CPUIDLE DRIVER - ARM EXYNOS
3004 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3005 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3006 M:      Kukjin Kim <kgene@kernel.org>
3007 L:      linux-pm@vger.kernel.org
3008 L:      linux-samsung-soc@vger.kernel.org
3009 S:      Supported
3010 F:      drivers/cpuidle/cpuidle-exynos.c
3011 F:      arch/arm/mach-exynos/pm.c
3012
3013 CPUIDLE DRIVERS
3014 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3015 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3016 L:      linux-pm@vger.kernel.org
3017 S:      Maintained
3018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3019 F:      drivers/cpuidle/*
3020 F:      include/linux/cpuidle.h
3021
3022 CPUID/MSR DRIVER
3023 M:      "H. Peter Anvin" <hpa@zytor.com>
3024 S:      Maintained
3025 F:      arch/x86/kernel/cpuid.c
3026 F:      arch/x86/kernel/msr.c
3027
3028 CPU POWER MONITORING SUBSYSTEM
3029 M:      Thomas Renninger <trenn@suse.com>
3030 L:      linux-pm@vger.kernel.org
3031 S:      Maintained
3032 F:      tools/power/cpupower/
3033
3034 CRAMFS FILESYSTEM
3035 W:      http://sourceforge.net/projects/cramfs/
3036 S:      Orphan / Obsolete
3037 F:      Documentation/filesystems/cramfs.txt
3038 F:      fs/cramfs/
3039
3040 CRIS PORT
3041 M:      Mikael Starvik <starvik@axis.com>
3042 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3043 L:      linux-cris-kernel@axis.com
3044 W:      http://developer.axis.com
3045 S:      Maintained
3046 F:      arch/cris/
3047 F:      drivers/tty/serial/crisv10.*
3048
3049 CRYPTO API
3050 M:      Herbert Xu <herbert@gondor.apana.org.au>
3051 M:      "David S. Miller" <davem@davemloft.net>
3052 L:      linux-crypto@vger.kernel.org
3053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3054 S:      Maintained
3055 F:      Documentation/crypto/
3056 F:      Documentation/DocBook/crypto-API.tmpl
3057 F:      arch/*/crypto/
3058 F:      crypto/
3059 F:      drivers/crypto/
3060 F:      include/crypto/
3061
3062 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3063 M:      Neil Horman <nhorman@tuxdriver.com>
3064 L:      linux-crypto@vger.kernel.org
3065 S:      Maintained
3066 F:      crypto/ansi_cprng.c
3067 F:      crypto/rng.c
3068
3069 CS5535 Audio ALSA driver
3070 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3071 S:      Maintained
3072 F:      sound/pci/cs5535audio/
3073
3074 CW1200 WLAN driver
3075 M:      Solomon Peachy <pizza@shaftnet.org>
3076 S:      Maintained
3077 F:      drivers/net/wireless/cw1200/
3078
3079 CX18 VIDEO4LINUX DRIVER
3080 M:      Andy Walls <awalls@md.metrocast.net>
3081 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3082 L:      linux-media@vger.kernel.org
3083 T:      git git://linuxtv.org/media_tree.git
3084 W:      http://linuxtv.org
3085 W:      http://www.ivtvdriver.org/index.php/Cx18
3086 S:      Maintained
3087 F:      Documentation/video4linux/cx18.txt
3088 F:      drivers/media/pci/cx18/
3089 F:      include/uapi/linux/ivtv*
3090
3091 CX2341X MPEG ENCODER HELPER MODULE
3092 M:      Hans Verkuil <hverkuil@xs4all.nl>
3093 L:      linux-media@vger.kernel.org
3094 T:      git git://linuxtv.org/media_tree.git
3095 W:      http://linuxtv.org
3096 S:      Maintained
3097 F:      drivers/media/common/cx2341x*
3098 F:      include/media/cx2341x*
3099
3100 CX24120 MEDIA DRIVER
3101 M:      Jemma Denson <jdenson@gmail.com>
3102 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3103 L:      linux-media@vger.kernel.org
3104 W:      http://linuxtv.org/
3105 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3106 S:      Maintained
3107 F:      drivers/media/dvb-frontends/cx24120*
3108
3109 CX88 VIDEO4LINUX DRIVER
3110 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3111 L:      linux-media@vger.kernel.org
3112 W:      http://linuxtv.org
3113 T:      git git://linuxtv.org/media_tree.git
3114 S:      Odd fixes
3115 F:      Documentation/video4linux/cx88/
3116 F:      drivers/media/pci/cx88/
3117
3118 CXD2820R MEDIA DRIVER
3119 M:      Antti Palosaari <crope@iki.fi>
3120 L:      linux-media@vger.kernel.org
3121 W:      http://linuxtv.org/
3122 W:      http://palosaari.fi/linux/
3123 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3124 T:      git git://linuxtv.org/anttip/media_tree.git
3125 S:      Maintained
3126 F:      drivers/media/dvb-frontends/cxd2820r*
3127
3128 CXGB3 ETHERNET DRIVER (CXGB3)
3129 M:      Santosh Raspatur <santosh@chelsio.com>
3130 L:      netdev@vger.kernel.org
3131 W:      http://www.chelsio.com
3132 S:      Supported
3133 F:      drivers/net/ethernet/chelsio/cxgb3/
3134
3135 CXGB3 ISCSI DRIVER (CXGB3I)
3136 M:      Karen Xie <kxie@chelsio.com>
3137 L:      linux-scsi@vger.kernel.org
3138 W:      http://www.chelsio.com
3139 S:      Supported
3140 F:      drivers/scsi/cxgbi/cxgb3i
3141
3142 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3143 M:      Steve Wise <swise@chelsio.com>
3144 L:      linux-rdma@vger.kernel.org
3145 W:      http://www.openfabrics.org
3146 S:      Supported
3147 F:      drivers/infiniband/hw/cxgb3/
3148
3149 CXGB4 ETHERNET DRIVER (CXGB4)
3150 M:      Hariprasad S <hariprasad@chelsio.com>
3151 L:      netdev@vger.kernel.org
3152 W:      http://www.chelsio.com
3153 S:      Supported
3154 F:      drivers/net/ethernet/chelsio/cxgb4/
3155
3156 CXGB4 ISCSI DRIVER (CXGB4I)
3157 M:      Karen Xie <kxie@chelsio.com>
3158 L:      linux-scsi@vger.kernel.org
3159 W:      http://www.chelsio.com
3160 S:      Supported
3161 F:      drivers/scsi/cxgbi/cxgb4i
3162
3163 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3164 M:      Steve Wise <swise@chelsio.com>
3165 L:      linux-rdma@vger.kernel.org
3166 W:      http://www.openfabrics.org
3167 S:      Supported
3168 F:      drivers/infiniband/hw/cxgb4/
3169
3170 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3171 M:      Casey Leedom <leedom@chelsio.com>
3172 L:      netdev@vger.kernel.org
3173 W:      http://www.chelsio.com
3174 S:      Supported
3175 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3176
3177 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3178 M:      Ian Munsie <imunsie@au1.ibm.com>
3179 M:      Michael Neuling <mikey@neuling.org>
3180 L:      linuxppc-dev@lists.ozlabs.org
3181 S:      Supported
3182 F:      drivers/misc/cxl/
3183 F:      include/misc/cxl*
3184 F:      include/uapi/misc/cxl.h
3185 F:      Documentation/powerpc/cxl.txt
3186 F:      Documentation/powerpc/cxl.txt
3187 F:      Documentation/ABI/testing/sysfs-class-cxl
3188
3189 STMMAC ETHERNET DRIVER
3190 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3191 L:      netdev@vger.kernel.org
3192 W:      http://www.stlinux.com
3193 S:      Supported
3194 F:      drivers/net/ethernet/stmicro/stmmac/
3195
3196 CYBERPRO FB DRIVER
3197 M:      Russell King <linux@arm.linux.org.uk>
3198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3199 W:      http://www.arm.linux.org.uk/
3200 S:      Maintained
3201 F:      drivers/video/fbdev/cyber2000fb.*
3202
3203 CYCLADES ASYNC MUX DRIVER
3204 W:      http://www.cyclades.com/
3205 S:      Orphan
3206 F:      drivers/tty/cyclades.c
3207 F:      include/linux/cyclades.h
3208 F:      include/uapi/linux/cyclades.h
3209
3210 CYCLADES PC300 DRIVER
3211 W:      http://www.cyclades.com/
3212 S:      Orphan
3213 F:      drivers/net/wan/pc300*
3214
3215 CYPRESS_FIRMWARE MEDIA DRIVER
3216 M:      Antti Palosaari <crope@iki.fi>
3217 L:      linux-media@vger.kernel.org
3218 W:      http://linuxtv.org/
3219 W:      http://palosaari.fi/linux/
3220 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3221 T:      git git://linuxtv.org/anttip/media_tree.git
3222 S:      Maintained
3223 F:      drivers/media/common/cypress_firmware*
3224
3225 CYTTSP TOUCHSCREEN DRIVER
3226 M:      Ferruh Yigit <fery@cypress.com>
3227 L:      linux-input@vger.kernel.org
3228 S:      Supported
3229 F:      drivers/input/touchscreen/cyttsp*
3230 F:      include/linux/input/cyttsp.h
3231
3232 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3233 M:      Joshua Kinard <kumba@gentoo.org>
3234 S:      Maintained
3235 F:      drivers/rtc/rtc-ds1685.c
3236 F:      include/linux/rtc/ds1685.h
3237
3238 DAMA SLAVE for AX.25
3239 M:      Joerg Reuter <jreuter@yaina.de>
3240 W:      http://yaina.de/jreuter/
3241 W:      http://www.qsl.net/dl1bke/
3242 L:      linux-hams@vger.kernel.org
3243 S:      Maintained
3244 F:      net/ax25/af_ax25.c
3245 F:      net/ax25/ax25_dev.c
3246 F:      net/ax25/ax25_ds_*
3247 F:      net/ax25/ax25_in.c
3248 F:      net/ax25/ax25_out.c
3249 F:      net/ax25/ax25_timer.c
3250 F:      net/ax25/sysctl_net_ax25.c
3251
3252 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3253 L:      netdev@vger.kernel.org
3254 S:      Orphan
3255 F:      Documentation/networking/dmfe.txt
3256 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3257
3258 DC390/AM53C974 SCSI driver
3259 M:      Hannes Reinecke <hare@suse.com>
3260 L:      linux-scsi@vger.kernel.org
3261 S:      Maintained
3262 F:      drivers/scsi/am53c974.c
3263
3264 DC395x SCSI driver
3265 M:      Oliver Neukum <oliver@neukum.org>
3266 M:      Ali Akcaagac <aliakc@web.de>
3267 M:      Jamie Lenehan <lenehan@twibble.org>
3268 L:      dc395x@twibble.org
3269 W:      http://twibble.org/dist/dc395x/
3270 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3271 S:      Maintained
3272 F:      Documentation/scsi/dc395x.txt
3273 F:      drivers/scsi/dc395x.*
3274
3275 DCCP PROTOCOL
3276 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3277 L:      dccp@vger.kernel.org
3278 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3279 S:      Maintained
3280 F:      include/linux/dccp.h
3281 F:      include/uapi/linux/dccp.h
3282 F:      include/linux/tfrc.h
3283 F:      net/dccp/
3284
3285 DECnet NETWORK LAYER
3286 W:      http://linux-decnet.sourceforge.net
3287 L:      linux-decnet-user@lists.sourceforge.net
3288 S:      Orphan
3289 F:      Documentation/networking/decnet.txt
3290 F:      net/decnet/
3291
3292 DECSTATION PLATFORM SUPPORT
3293 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3294 L:      linux-mips@linux-mips.org
3295 W:      http://www.linux-mips.org/wiki/DECstation
3296 S:      Maintained
3297 F:      arch/mips/dec/
3298 F:      arch/mips/include/asm/dec/
3299 F:      arch/mips/include/asm/mach-dec/
3300
3301 DEFXX FDDI NETWORK DRIVER
3302 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3303 S:      Maintained
3304 F:      drivers/net/fddi/defxx.*
3305
3306 DELL LAPTOP DRIVER
3307 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3308 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3309 L:      platform-driver-x86@vger.kernel.org
3310 S:      Maintained
3311 F:      drivers/platform/x86/dell-laptop.c
3312
3313 DELL LAPTOP RBTN DRIVER
3314 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3315 S:      Maintained
3316 F:      drivers/platform/x86/dell-rbtn.*
3317
3318 DELL LAPTOP FREEFALL DRIVER
3319 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3320 S:      Maintained
3321 F:      drivers/platform/x86/dell-smo8800.c
3322
3323 DELL LAPTOP SMM DRIVER
3324 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3325 S:      Maintained
3326 F:      drivers/hwmon/dell-smm-hwmon.c
3327 F:      include/uapi/linux/i8k.h
3328
3329 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3330 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3331 S:      Maintained
3332 F:      Documentation/dcdbas.txt
3333 F:      drivers/firmware/dcdbas.*
3334
3335 DELL WMI EXTRAS DRIVER
3336 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3337 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3338 S:      Maintained
3339 F:      drivers/platform/x86/dell-wmi.c
3340
3341 DESIGNWARE USB2 DRD IP DRIVER
3342 M:      John Youn <johnyoun@synopsys.com>
3343 L:      linux-usb@vger.kernel.org
3344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3345 S:      Maintained
3346 F:      drivers/usb/dwc2/
3347
3348 DESIGNWARE USB3 DRD IP DRIVER
3349 M:      Felipe Balbi <balbi@ti.com>
3350 L:      linux-usb@vger.kernel.org
3351 L:      linux-omap@vger.kernel.org
3352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3353 S:      Maintained
3354 F:      drivers/usb/dwc3/
3355
3356 DEVICE COREDUMP (DEV_COREDUMP)
3357 M:      Johannes Berg <johannes@sipsolutions.net>
3358 L:      linux-kernel@vger.kernel.org
3359 S:      Maintained
3360 F:      drivers/base/devcoredump.c
3361 F:      include/linux/devcoredump.h
3362
3363 DEVICE FREQUENCY (DEVFREQ)
3364 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3365 M:      Kyungmin Park <kyungmin.park@samsung.com>
3366 L:      linux-pm@vger.kernel.org
3367 S:      Maintained
3368 F:      drivers/devfreq/
3369
3370 DEVICE NUMBER REGISTRY
3371 M:      Torben Mathiasen <device@lanana.org>
3372 W:      http://lanana.org/docs/device-list/index.html
3373 S:      Maintained
3374
3375 DEVICE-MAPPER  (LVM)
3376 M:      Alasdair Kergon <agk@redhat.com>
3377 M:      Mike Snitzer <snitzer@redhat.com>
3378 M:      dm-devel@redhat.com
3379 L:      dm-devel@redhat.com
3380 W:      http://sources.redhat.com/dm
3381 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3383 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3384 S:      Maintained
3385 F:      Documentation/device-mapper/
3386 F:      drivers/md/dm*
3387 F:      drivers/md/persistent-data/
3388 F:      include/linux/device-mapper.h
3389 F:      include/linux/dm-*.h
3390 F:      include/uapi/linux/dm-*.h
3391
3392 DIALOG SEMICONDUCTOR DRIVERS
3393 M:      Support Opensource <support.opensource@diasemi.com>
3394 W:      http://www.dialog-semiconductor.com/products
3395 S:      Supported
3396 F:      Documentation/hwmon/da90??
3397 F:      drivers/gpio/gpio-da90??.c
3398 F:      drivers/hwmon/da90??-hwmon.c
3399 F:      drivers/iio/adc/da91??-*.c
3400 F:      drivers/input/misc/da90??_onkey.c
3401 F:      drivers/input/touchscreen/da9052_tsi.c
3402 F:      drivers/leds/leds-da90??.c
3403 F:      drivers/mfd/da903x.c
3404 F:      drivers/mfd/da90??-*.c
3405 F:      drivers/mfd/da91??-*.c
3406 F:      drivers/power/da9052-battery.c
3407 F:      drivers/power/da91??-*.c
3408 F:      drivers/regulator/da903x.c
3409 F:      drivers/regulator/da9???-regulator.[ch]
3410 F:      drivers/rtc/rtc-da90??.c
3411 F:      drivers/video/backlight/da90??_bl.c
3412 F:      drivers/watchdog/da90??_wdt.c
3413 F:      include/linux/mfd/da903x.h
3414 F:      include/linux/mfd/da9052/
3415 F:      include/linux/mfd/da9055/
3416 F:      include/linux/mfd/da9063/
3417 F:      include/linux/mfd/da9150/
3418 F:      include/sound/da[79]*.h
3419 F:      sound/soc/codecs/da[79]*.[ch]
3420
3421 DIGI NEO AND CLASSIC PCI PRODUCTS
3422 M:      Lidza Louina <lidza.louina@gmail.com>
3423 M:      Mark Hounschell <markh@compro.net>
3424 L:      driverdev-devel@linuxdriverproject.org
3425 S:      Maintained
3426 F:      drivers/staging/dgnc/
3427
3428 DIGI EPCA PCI PRODUCTS
3429 M:      Lidza Louina <lidza.louina@gmail.com>
3430 M:      Daeseok Youn <daeseok.youn@gmail.com>
3431 L:      driverdev-devel@linuxdriverproject.org
3432 S:      Maintained
3433 F:      drivers/staging/dgap/
3434
3435 DIOLAN U2C-12 I2C DRIVER
3436 M:      Guenter Roeck <linux@roeck-us.net>
3437 L:      linux-i2c@vger.kernel.org
3438 S:      Maintained
3439 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3440
3441 DIRECT ACCESS (DAX)
3442 M:      Matthew Wilcox <willy@linux.intel.com>
3443 L:      linux-fsdevel@vger.kernel.org
3444 S:      Supported
3445 F:      fs/dax.c
3446
3447 DIRECTORY NOTIFICATION (DNOTIFY)
3448 M:      Eric Paris <eparis@parisplace.org>
3449 S:      Maintained
3450 F:      Documentation/filesystems/dnotify.txt
3451 F:      fs/notify/dnotify/
3452 F:      include/linux/dnotify.h
3453
3454 DISK GEOMETRY AND PARTITION HANDLING
3455 M:      Andries Brouwer <aeb@cwi.nl>
3456 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3457 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3458 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3459 S:      Maintained
3460
3461 DISKQUOTA
3462 M:      Jan Kara <jack@suse.com>
3463 S:      Maintained
3464 F:      Documentation/filesystems/quota.txt
3465 F:      fs/quota/
3466 F:      include/linux/quota*.h
3467 F:      include/uapi/linux/quota*.h
3468
3469 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3470 M:      Bernie Thompson <bernie@plugable.com>
3471 L:      linux-fbdev@vger.kernel.org
3472 S:      Maintained
3473 W:      http://plugable.com/category/projects/udlfb/
3474 F:      drivers/video/fbdev/udlfb.c
3475 F:      include/video/udlfb.h
3476 F:      Documentation/fb/udlfb.txt
3477
3478 DISTRIBUTED LOCK MANAGER (DLM)
3479 M:      Christine Caulfield <ccaulfie@redhat.com>
3480 M:      David Teigland <teigland@redhat.com>
3481 L:      cluster-devel@redhat.com
3482 W:      http://sources.redhat.com/cluster/
3483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3484 S:      Supported
3485 F:      fs/dlm/
3486
3487 DMA BUFFER SHARING FRAMEWORK
3488 M:      Sumit Semwal <sumit.semwal@linaro.org>
3489 S:      Maintained
3490 L:      linux-media@vger.kernel.org
3491 L:      dri-devel@lists.freedesktop.org
3492 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3493 F:      drivers/dma-buf/
3494 F:      include/linux/dma-buf*
3495 F:      include/linux/reservation.h
3496 F:      include/linux/*fence.h
3497 F:      Documentation/dma-buf-sharing.txt
3498 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3499
3500 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3501 M:      Vinod Koul <vinod.koul@intel.com>
3502 L:      dmaengine@vger.kernel.org
3503 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3504 S:      Maintained
3505 F:      drivers/dma/
3506 F:      include/linux/dmaengine.h
3507 F:      Documentation/dmaengine/
3508 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3509
3510 DME1737 HARDWARE MONITOR DRIVER
3511 M:      Juerg Haefliger <juergh@gmail.com>
3512 L:      lm-sensors@lm-sensors.org
3513 S:      Maintained
3514 F:      Documentation/hwmon/dme1737
3515 F:      drivers/hwmon/dme1737.c
3516
3517 DMI/SMBIOS SUPPORT
3518 M:      Jean Delvare <jdelvare@suse.com>
3519 S:      Maintained
3520 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3521 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3522 F:      drivers/firmware/dmi-id.c
3523 F:      drivers/firmware/dmi_scan.c
3524 F:      include/linux/dmi.h
3525
3526 DOCUMENTATION
3527 M:      Jonathan Corbet <corbet@lwn.net>
3528 L:      linux-doc@vger.kernel.org
3529 S:      Maintained
3530 F:      Documentation/
3531 X:      Documentation/ABI/
3532 X:      Documentation/devicetree/
3533 X:      Documentation/acpi
3534 X:      Documentation/power
3535 X:      Documentation/spi
3536 X:      Documentation/DocBook/media
3537 T:      git git://git.lwn.net/linux-2.6.git docs-next
3538
3539 DOUBLETALK DRIVER
3540 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3541 L:      blinux-list@redhat.com
3542 S:      Maintained
3543 F:      drivers/char/dtlk.c
3544 F:      include/linux/dtlk.h
3545
3546 DPT_I2O SCSI RAID DRIVER
3547 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3548 L:      linux-scsi@vger.kernel.org
3549 W:      http://www.adaptec.com/
3550 S:      Maintained
3551 F:      drivers/scsi/dpt*
3552 F:      drivers/scsi/dpt/
3553
3554 DRBD DRIVER
3555 P:      Philipp Reisner
3556 P:      Lars Ellenberg
3557 M:      drbd-dev@lists.linbit.com
3558 L:      drbd-user@lists.linbit.com
3559 W:      http://www.drbd.org
3560 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3561 T:      git git://git.drbd.org/drbd-8.3.git
3562 S:      Supported
3563 F:      drivers/block/drbd/
3564 F:      lib/lru_cache.c
3565 F:      Documentation/blockdev/drbd/
3566
3567 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3568 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3570 S:      Supported
3571 F:      Documentation/kobject.txt
3572 F:      drivers/base/
3573 F:      fs/debugfs/
3574 F:      fs/kernfs/
3575 F:      fs/sysfs/
3576 F:      include/linux/debugfs.h
3577 F:      include/linux/kobj*
3578 F:      lib/kobj*
3579
3580 DRM DRIVERS
3581 M:      David Airlie <airlied@linux.ie>
3582 L:      dri-devel@lists.freedesktop.org
3583 T:      git git://people.freedesktop.org/~airlied/linux
3584 S:      Maintained
3585 F:      drivers/gpu/drm/
3586 F:      drivers/gpu/vga/
3587 F:      include/drm/
3588 F:      include/uapi/drm/
3589
3590 RADEON DRM DRIVERS
3591 M:      Alex Deucher <alexander.deucher@amd.com>
3592 M:      Christian König <christian.koenig@amd.com>
3593 L:      dri-devel@lists.freedesktop.org
3594 T:      git git://people.freedesktop.org/~agd5f/linux
3595 S:      Supported
3596 F:      drivers/gpu/drm/radeon/
3597 F:      include/uapi/drm/radeon*
3598
3599 DRM PANEL DRIVERS
3600 M:      Thierry Reding <thierry.reding@gmail.com>
3601 L:      dri-devel@lists.freedesktop.org
3602 T:      git git://anongit.freedesktop.org/tegra/linux.git
3603 S:      Maintained
3604 F:      drivers/gpu/drm/drm_panel.c
3605 F:      drivers/gpu/drm/panel/
3606 F:      include/drm/drm_panel.h
3607 F:      Documentation/devicetree/bindings/panel/
3608
3609 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3610 M:      Daniel Vetter <daniel.vetter@intel.com>
3611 M:      Jani Nikula <jani.nikula@linux.intel.com>
3612 L:      intel-gfx@lists.freedesktop.org
3613 L:      dri-devel@lists.freedesktop.org
3614 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3615 T:      git git://anongit.freedesktop.org/drm-intel
3616 S:      Supported
3617 F:      drivers/gpu/drm/i915/
3618 F:      include/drm/i915*
3619 F:      include/uapi/drm/i915*
3620
3621 DRM DRIVERS FOR ATMEL HLCDC
3622 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3623 L:      dri-devel@lists.freedesktop.org
3624 S:      Supported
3625 F:      drivers/gpu/drm/atmel-hlcdc/
3626 F:      Documentation/devicetree/bindings/drm/atmel/
3627
3628 DRM DRIVERS FOR EXYNOS
3629 M:      Inki Dae <inki.dae@samsung.com>
3630 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3631 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3632 M:      Kyungmin Park <kyungmin.park@samsung.com>
3633 L:      dri-devel@lists.freedesktop.org
3634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3635 S:      Supported
3636 F:      drivers/gpu/drm/exynos/
3637 F:      include/drm/exynos*
3638 F:      include/uapi/drm/exynos*
3639
3640 DRM DRIVERS FOR FREESCALE DCU
3641 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3642 M:      Alison Wang <alison.wang@freescale.com>
3643 L:      dri-devel@lists.freedesktop.org
3644 S:      Supported
3645 F:      drivers/gpu/drm/fsl-dcu/
3646 F:      Documentation/devicetree/bindings/video/fsl,dcu.txt
3647 F:      Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3648
3649 DRM DRIVERS FOR FREESCALE IMX
3650 M:      Philipp Zabel <p.zabel@pengutronix.de>
3651 L:      dri-devel@lists.freedesktop.org
3652 S:      Maintained
3653 F:      drivers/gpu/drm/imx/
3654 F:      Documentation/devicetree/bindings/drm/imx/
3655
3656 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3657 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3658 L:      dri-devel@lists.freedesktop.org
3659 T:      git git://github.com/patjak/drm-gma500
3660 S:      Maintained
3661 F:      drivers/gpu/drm/gma500
3662 F:      include/drm/gma500*
3663
3664 DRM DRIVERS FOR NVIDIA TEGRA
3665 M:      Thierry Reding <thierry.reding@gmail.com>
3666 M:      Terje Bergström <tbergstrom@nvidia.com>
3667 L:      dri-devel@lists.freedesktop.org
3668 L:      linux-tegra@vger.kernel.org
3669 T:      git git://anongit.freedesktop.org/tegra/linux.git
3670 S:      Supported
3671 F:      drivers/gpu/drm/tegra/
3672 F:      drivers/gpu/host1x/
3673 F:      include/linux/host1x.h
3674 F:      include/uapi/drm/tegra_drm.h
3675 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3676
3677 DRM DRIVERS FOR RENESAS
3678 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3679 L:      dri-devel@lists.freedesktop.org
3680 L:      linux-sh@vger.kernel.org
3681 T:      git git://people.freedesktop.org/~airlied/linux
3682 S:      Supported
3683 F:      drivers/gpu/drm/rcar-du/
3684 F:      drivers/gpu/drm/shmobile/
3685 F:      include/linux/platform_data/shmob_drm.h
3686
3687 DRM DRIVERS FOR ROCKCHIP
3688 M:      Mark Yao <mark.yao@rock-chips.com>
3689 L:      dri-devel@lists.freedesktop.org
3690 S:      Maintained
3691 F:      drivers/gpu/drm/rockchip/
3692 F:      Documentation/devicetree/bindings/video/rockchip*
3693
3694 DRM DRIVERS FOR STI
3695 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3696 M:      Vincent Abriou <vincent.abriou@st.com>
3697 L:      dri-devel@lists.freedesktop.org
3698 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3699 S:      Maintained
3700 F:      drivers/gpu/drm/sti
3701 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3702
3703 DSBR100 USB FM RADIO DRIVER
3704 M:      Alexey Klimov <klimov.linux@gmail.com>
3705 L:      linux-media@vger.kernel.org
3706 T:      git git://linuxtv.org/media_tree.git
3707 S:      Maintained
3708 F:      drivers/media/radio/dsbr100.c
3709
3710 DSCC4 DRIVER
3711 M:      Francois Romieu <romieu@fr.zoreil.com>
3712 L:      netdev@vger.kernel.org
3713 S:      Maintained
3714 F:      drivers/net/wan/dscc4.c
3715
3716 DT3155 MEDIA DRIVER
3717 M:      Hans Verkuil <hverkuil@xs4all.nl>
3718 L:      linux-media@vger.kernel.org
3719 T:      git git://linuxtv.org/media_tree.git
3720 W:      http://linuxtv.org
3721 S:      Odd Fixes
3722 F:      drivers/media/pci/dt3155/
3723
3724 DVB_USB_AF9015 MEDIA DRIVER
3725 M:      Antti Palosaari <crope@iki.fi>
3726 L:      linux-media@vger.kernel.org
3727 W:      http://linuxtv.org/
3728 W:      http://palosaari.fi/linux/
3729 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3730 T:      git git://linuxtv.org/anttip/media_tree.git
3731 S:      Maintained
3732 F:      drivers/media/usb/dvb-usb-v2/af9015*
3733
3734 DVB_USB_AF9035 MEDIA DRIVER
3735 M:      Antti Palosaari <crope@iki.fi>
3736 L:      linux-media@vger.kernel.org
3737 W:      http://linuxtv.org/
3738 W:      http://palosaari.fi/linux/
3739 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3740 T:      git git://linuxtv.org/anttip/media_tree.git
3741 S:      Maintained
3742 F:      drivers/media/usb/dvb-usb-v2/af9035*
3743
3744 DVB_USB_ANYSEE MEDIA DRIVER
3745 M:      Antti Palosaari <crope@iki.fi>
3746 L:      linux-media@vger.kernel.org
3747 W:      http://linuxtv.org/
3748 W:      http://palosaari.fi/linux/
3749 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3750 T:      git git://linuxtv.org/anttip/media_tree.git
3751 S:      Maintained
3752 F:      drivers/media/usb/dvb-usb-v2/anysee*
3753
3754 DVB_USB_AU6610 MEDIA DRIVER
3755 M:      Antti Palosaari <crope@iki.fi>
3756 L:      linux-media@vger.kernel.org
3757 W:      http://linuxtv.org/
3758 W:      http://palosaari.fi/linux/
3759 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3760 T:      git git://linuxtv.org/anttip/media_tree.git
3761 S:      Maintained
3762 F:      drivers/media/usb/dvb-usb-v2/au6610*
3763
3764 DVB_USB_CE6230 MEDIA DRIVER
3765 M:      Antti Palosaari <crope@iki.fi>
3766 L:      linux-media@vger.kernel.org
3767 W:      http://linuxtv.org/
3768 W:      http://palosaari.fi/linux/
3769 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3770 T:      git git://linuxtv.org/anttip/media_tree.git
3771 S:      Maintained
3772 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3773
3774 DVB_USB_CXUSB MEDIA DRIVER
3775 M:      Michael Krufky <mkrufky@linuxtv.org>
3776 L:      linux-media@vger.kernel.org
3777 W:      http://linuxtv.org/
3778 W:      http://github.com/mkrufky
3779 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3780 T:      git git://linuxtv.org/media_tree.git
3781 S:      Maintained
3782 F:      drivers/media/usb/dvb-usb/cxusb*
3783
3784 DVB_USB_EC168 MEDIA DRIVER
3785 M:      Antti Palosaari <crope@iki.fi>
3786 L:      linux-media@vger.kernel.org
3787 W:      http://linuxtv.org/
3788 W:      http://palosaari.fi/linux/
3789 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3790 T:      git git://linuxtv.org/anttip/media_tree.git
3791 S:      Maintained
3792 F:      drivers/media/usb/dvb-usb-v2/ec168*
3793
3794 DVB_USB_GL861 MEDIA DRIVER
3795 M:      Antti Palosaari <crope@iki.fi>
3796 L:      linux-media@vger.kernel.org
3797 W:      http://linuxtv.org/
3798 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3799 T:      git git://linuxtv.org/anttip/media_tree.git
3800 S:      Maintained
3801 F:      drivers/media/usb/dvb-usb-v2/gl861*
3802
3803 DVB_USB_MXL111SF MEDIA DRIVER
3804 M:      Michael Krufky <mkrufky@linuxtv.org>
3805 L:      linux-media@vger.kernel.org
3806 W:      http://linuxtv.org/
3807 W:      http://github.com/mkrufky
3808 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3809 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3810 S:      Maintained
3811 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3812
3813 DVB_USB_RTL28XXU MEDIA DRIVER
3814 M:      Antti Palosaari <crope@iki.fi>
3815 L:      linux-media@vger.kernel.org
3816 W:      http://linuxtv.org/
3817 W:      http://palosaari.fi/linux/
3818 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3819 T:      git git://linuxtv.org/anttip/media_tree.git
3820 S:      Maintained
3821 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3822
3823 DVB_USB_V2 MEDIA DRIVER
3824 M:      Antti Palosaari <crope@iki.fi>
3825 L:      linux-media@vger.kernel.org
3826 W:      http://linuxtv.org/
3827 W:      http://palosaari.fi/linux/
3828 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3829 T:      git git://linuxtv.org/anttip/media_tree.git
3830 S:      Maintained
3831 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3832 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3833
3834 DYNAMIC DEBUG
3835 M:      Jason Baron <jbaron@akamai.com>
3836 S:      Maintained
3837 F:      lib/dynamic_debug.c
3838 F:      include/linux/dynamic_debug.h
3839
3840 DZ DECSTATION DZ11 SERIAL DRIVER
3841 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3842 S:      Maintained
3843 F:      drivers/tty/serial/dz.*
3844
3845 E3X0 POWER BUTTON DRIVER
3846 M:      Moritz Fischer <moritz.fischer@ettus.com>
3847 L:      usrp-users@lists.ettus.com
3848 W:      http://www.ettus.com
3849 S:      Supported
3850 F:      drivers/input/misc/e3x0-button.c
3851 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3852
3853 E4000 MEDIA DRIVER
3854 M:      Antti Palosaari <crope@iki.fi>
3855 L:      linux-media@vger.kernel.org
3856 W:      http://linuxtv.org/
3857 W:      http://palosaari.fi/linux/
3858 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3859 T:      git git://linuxtv.org/anttip/media_tree.git
3860 S:      Maintained
3861 F:      drivers/media/tuners/e4000*
3862
3863 EATA ISA/EISA/PCI SCSI DRIVER
3864 M:      Dario Ballabio <ballabio_dario@emc.com>
3865 L:      linux-scsi@vger.kernel.org
3866 S:      Maintained
3867 F:      drivers/scsi/eata.c
3868
3869 EC100 MEDIA DRIVER
3870 M:      Antti Palosaari <crope@iki.fi>
3871 L:      linux-media@vger.kernel.org
3872 W:      http://linuxtv.org/
3873 W:      http://palosaari.fi/linux/
3874 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3875 T:      git git://linuxtv.org/anttip/media_tree.git
3876 S:      Maintained
3877 F:      drivers/media/dvb-frontends/ec100*
3878
3879 ECRYPT FILE SYSTEM
3880 M:      Tyler Hicks <tyhicks@canonical.com>
3881 L:      ecryptfs@vger.kernel.org
3882 W:      http://ecryptfs.org
3883 W:      https://launchpad.net/ecryptfs
3884 S:      Supported
3885 F:      Documentation/filesystems/ecryptfs.txt
3886 F:      fs/ecryptfs/
3887
3888 EDAC-CORE
3889 M:      Doug Thompson <dougthompson@xmission.com>
3890 M:      Borislav Petkov <bp@alien8.de>
3891 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3892 L:      linux-edac@vger.kernel.org
3893 W:      bluesmoke.sourceforge.net
3894 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3895 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3896 S:      Supported
3897 F:      Documentation/edac.txt
3898 F:      drivers/edac/
3899 F:      include/linux/edac.h
3900
3901 EDAC-AMD64
3902 M:      Doug Thompson <dougthompson@xmission.com>
3903 M:      Borislav Petkov <bp@alien8.de>
3904 L:      linux-edac@vger.kernel.org
3905 W:      bluesmoke.sourceforge.net
3906 S:      Maintained
3907 F:      drivers/edac/amd64_edac*
3908
3909 EDAC-CALXEDA
3910 M:      Doug Thompson <dougthompson@xmission.com>
3911 M:      Robert Richter <rric@kernel.org>
3912 L:      linux-edac@vger.kernel.org
3913 W:      bluesmoke.sourceforge.net
3914 S:      Maintained
3915 F:      drivers/edac/highbank*
3916
3917 EDAC-CAVIUM
3918 M:      Ralf Baechle <ralf@linux-mips.org>
3919 M:      David Daney <david.daney@cavium.com>
3920 L:      linux-edac@vger.kernel.org
3921 L:      linux-mips@linux-mips.org
3922 W:      bluesmoke.sourceforge.net
3923 S:      Supported
3924 F:      drivers/edac/octeon_edac*
3925
3926 EDAC-E752X
3927 M:      Mark Gross <mark.gross@intel.com>
3928 M:      Doug Thompson <dougthompson@xmission.com>
3929 L:      linux-edac@vger.kernel.org
3930 W:      bluesmoke.sourceforge.net
3931 S:      Maintained
3932 F:      drivers/edac/e752x_edac.c
3933
3934 EDAC-E7XXX
3935 M:      Doug Thompson <dougthompson@xmission.com>
3936 L:      linux-edac@vger.kernel.org
3937 W:      bluesmoke.sourceforge.net
3938 S:      Maintained
3939 F:      drivers/edac/e7xxx_edac.c
3940
3941 EDAC-GHES
3942 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3943 L:      linux-edac@vger.kernel.org
3944 W:      bluesmoke.sourceforge.net
3945 S:      Maintained
3946 F:      drivers/edac/ghes_edac.c
3947
3948 EDAC-I82443BXGX
3949 M:      Tim Small <tim@buttersideup.com>
3950 L:      linux-edac@vger.kernel.org
3951 W:      bluesmoke.sourceforge.net
3952 S:      Maintained
3953 F:      drivers/edac/i82443bxgx_edac.c
3954
3955 EDAC-I3000
3956 M:      Jason Uhlenkott <juhlenko@akamai.com>
3957 L:      linux-edac@vger.kernel.org
3958 W:      bluesmoke.sourceforge.net
3959 S:      Maintained
3960 F:      drivers/edac/i3000_edac.c
3961
3962 EDAC-I5000
3963 M:      Doug Thompson <dougthompson@xmission.com>
3964 L:      linux-edac@vger.kernel.org
3965 W:      bluesmoke.sourceforge.net
3966 S:      Maintained
3967 F:      drivers/edac/i5000_edac.c
3968
3969 EDAC-I5400
3970 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3971 L:      linux-edac@vger.kernel.org
3972 W:      bluesmoke.sourceforge.net
3973 S:      Maintained
3974 F:      drivers/edac/i5400_edac.c
3975
3976 EDAC-I7300
3977 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3978 L:      linux-edac@vger.kernel.org
3979 W:      bluesmoke.sourceforge.net
3980 S:      Maintained
3981 F:      drivers/edac/i7300_edac.c
3982
3983 EDAC-I7CORE
3984 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3985 L:      linux-edac@vger.kernel.org
3986 W:      bluesmoke.sourceforge.net
3987 S:      Maintained
3988 F:      drivers/edac/i7core_edac.c
3989
3990 EDAC-I82975X
3991 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3992 M:      "Arvind R." <arvino55@gmail.com>
3993 L:      linux-edac@vger.kernel.org
3994 W:      bluesmoke.sourceforge.net
3995 S:      Maintained
3996 F:      drivers/edac/i82975x_edac.c
3997
3998 EDAC-IE31200
3999 M:      Jason Baron <jbaron@akamai.com>
4000 L:      linux-edac@vger.kernel.org
4001 W:      bluesmoke.sourceforge.net
4002 S:      Maintained
4003 F:      drivers/edac/ie31200_edac.c
4004
4005 EDAC-MPC85XX
4006 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4007 L:      linux-edac@vger.kernel.org
4008 W:      bluesmoke.sourceforge.net
4009 S:      Maintained
4010 F:      drivers/edac/mpc85xx_edac.[ch]
4011
4012 EDAC-PASEMI
4013 M:      Egor Martovetsky <egor@pasemi.com>
4014 L:      linux-edac@vger.kernel.org
4015 W:      bluesmoke.sourceforge.net
4016 S:      Maintained
4017 F:      drivers/edac/pasemi_edac.c
4018
4019 EDAC-R82600
4020 M:      Tim Small <tim@buttersideup.com>
4021 L:      linux-edac@vger.kernel.org
4022 W:      bluesmoke.sourceforge.net
4023 S:      Maintained
4024 F:      drivers/edac/r82600_edac.c
4025
4026 EDAC-SBRIDGE
4027 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4028 L:      linux-edac@vger.kernel.org
4029 W:      bluesmoke.sourceforge.net
4030 S:      Maintained
4031 F:      drivers/edac/sb_edac.c
4032
4033 EDAC-XGENE
4034 APPLIED MICRO (APM) X-GENE SOC EDAC
4035 M:     Loc Ho <lho@apm.com>
4036 S:     Supported
4037 F:     drivers/edac/xgene_edac.c
4038 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4039
4040 EDIROL UA-101/UA-1000 DRIVER
4041 M:      Clemens Ladisch <clemens@ladisch.de>
4042 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4043 T:      git git://git.alsa-project.org/alsa-kernel.git
4044 S:      Maintained
4045 F:      sound/usb/misc/ua101.c
4046
4047 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4048 M:      Matt Fleming <matt@codeblueprint.co.uk>
4049 L:      linux-efi@vger.kernel.org
4050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4051 S:      Maintained
4052 F:      Documentation/efi-stub.txt
4053 F:      arch/ia64/kernel/efi.c
4054 F:      arch/x86/boot/compressed/eboot.[ch]
4055 F:      arch/x86/include/asm/efi.h
4056 F:      arch/x86/platform/efi/*
4057 F:      drivers/firmware/efi/*
4058 F:      include/linux/efi*.h
4059
4060 EFI VARIABLE FILESYSTEM
4061 M:      Matthew Garrett <matthew.garrett@nebula.com>
4062 M:      Jeremy Kerr <jk@ozlabs.org>
4063 M:      Matt Fleming <matt@codeblueprint.co.uk>
4064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4065 L:      linux-efi@vger.kernel.org
4066 S:      Maintained
4067 F:      fs/efivarfs/
4068
4069 EFIFB FRAMEBUFFER DRIVER
4070 L:      linux-fbdev@vger.kernel.org
4071 M:      Peter Jones <pjones@redhat.com>
4072 S:      Maintained
4073 F:      drivers/video/fbdev/efifb.c
4074
4075 EFS FILESYSTEM
4076 W:      http://aeschi.ch.eu.org/efs/
4077 S:      Orphan
4078 F:      fs/efs/
4079
4080 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4081 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4082 M:      Christoph Raisch <raisch@de.ibm.com>
4083 L:      linux-rdma@vger.kernel.org
4084 S:      Supported
4085 F:      drivers/infiniband/hw/ehca/
4086
4087 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4088 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4089 L:      netdev@vger.kernel.org
4090 S:      Maintained
4091 F:      drivers/net/ethernet/ibm/ehea/
4092
4093 EM28XX VIDEO4LINUX DRIVER
4094 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4095 L:      linux-media@vger.kernel.org
4096 W:      http://linuxtv.org
4097 T:      git git://linuxtv.org/media_tree.git
4098 S:      Maintained
4099 F:      drivers/media/usb/em28xx/
4100
4101 EMBEDDED LINUX
4102 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4103 M:      Matt Mackall <mpm@selenic.com>
4104 M:      David Woodhouse <dwmw2@infradead.org>
4105 L:      linux-embedded@vger.kernel.org
4106 S:      Maintained
4107
4108 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4109 M:      James Smart <james.smart@avagotech.com>
4110 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4111 L:      linux-scsi@vger.kernel.org
4112 W:      http://www.avagotech.com
4113 S:      Supported
4114 F:      drivers/scsi/lpfc/
4115
4116 ENE CB710 FLASH CARD READER DRIVER
4117 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4118 S:      Maintained
4119 F:      drivers/misc/cb710/
4120 F:      drivers/mmc/host/cb710-mmc.*
4121 F:      include/linux/cb710.h
4122
4123 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4124 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4125 S:      Maintained
4126 F:      drivers/media/rc/ene_ir.*
4127
4128 ENHANCED ERROR HANDLING (EEH)
4129 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4130 L:      linuxppc-dev@lists.ozlabs.org
4131 S:      Supported
4132 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4133 F:      arch/powerpc/kernel/eeh*.c
4134
4135 EPSON S1D13XXX FRAMEBUFFER DRIVER
4136 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4137 S:      Maintained
4138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4139 F:      drivers/video/fbdev/s1d13xxxfb.c
4140 F:      include/video/s1d13xxxfb.h
4141
4142 ET131X NETWORK DRIVER
4143 M:      Mark Einon <mark.einon@gmail.com>
4144 S:      Odd Fixes
4145 F:      drivers/net/ethernet/agere/
4146
4147 ETHERNET BRIDGE
4148 M:      Stephen Hemminger <stephen@networkplumber.org>
4149 L:      bridge@lists.linux-foundation.org
4150 L:      netdev@vger.kernel.org
4151 W:      http://www.linuxfoundation.org/en/Net:Bridge
4152 S:      Maintained
4153 F:      include/linux/netfilter_bridge/
4154 F:      net/bridge/
4155
4156 ETHERNET PHY LIBRARY
4157 M:      Florian Fainelli <f.fainelli@gmail.com>
4158 L:      netdev@vger.kernel.org
4159 S:      Maintained
4160 F:      include/linux/phy.h
4161 F:      include/linux/phy_fixed.h
4162 F:      drivers/net/phy/
4163 F:      Documentation/networking/phy.txt
4164 F:      drivers/of/of_mdio.c
4165 F:      drivers/of/of_net.c
4166
4167 EXT2 FILE SYSTEM
4168 M:      Jan Kara <jack@suse.com>
4169 L:      linux-ext4@vger.kernel.org
4170 S:      Maintained
4171 F:      Documentation/filesystems/ext2.txt
4172 F:      fs/ext2/
4173 F:      include/linux/ext2*
4174
4175 EXT4 FILE SYSTEM
4176 M:      "Theodore Ts'o" <tytso@mit.edu>
4177 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4178 L:      linux-ext4@vger.kernel.org
4179 W:      http://ext4.wiki.kernel.org
4180 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4181 S:      Maintained
4182 F:      Documentation/filesystems/ext4.txt
4183 F:      fs/ext4/
4184
4185 Extended Verification Module (EVM)
4186 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4187 L:      linux-ima-devel@lists.sourceforge.net
4188 L:      linux-security-module@vger.kernel.org
4189 S:      Supported
4190 F:      security/integrity/evm/
4191
4192 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4193 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4194 M:      Chanwoo Choi <cw00.choi@samsung.com>
4195 L:      linux-kernel@vger.kernel.org
4196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4197 S:      Maintained
4198 F:      drivers/extcon/
4199 F:      Documentation/extcon/
4200
4201 EXYNOS DP DRIVER
4202 M:      Jingoo Han <jingoohan1@gmail.com>
4203 L:      dri-devel@lists.freedesktop.org
4204 S:      Maintained
4205 F:      drivers/gpu/drm/exynos/exynos_dp*
4206
4207 EXYNOS MIPI DISPLAY DRIVERS
4208 M:      Inki Dae <inki.dae@samsung.com>
4209 M:      Donghwa Lee <dh09.lee@samsung.com>
4210 M:      Kyungmin Park <kyungmin.park@samsung.com>
4211 L:      linux-fbdev@vger.kernel.org
4212 S:      Maintained
4213 F:      drivers/video/fbdev/exynos/exynos_mipi*
4214 F:      include/video/exynos_mipi*
4215
4216 F71805F HARDWARE MONITORING DRIVER
4217 M:      Jean Delvare <jdelvare@suse.com>
4218 L:      lm-sensors@lm-sensors.org
4219 S:      Maintained
4220 F:      Documentation/hwmon/f71805f
4221 F:      drivers/hwmon/f71805f.c
4222
4223 FC0011 TUNER DRIVER
4224 M:      Michael Buesch <m@bues.ch>
4225 L:      linux-media@vger.kernel.org
4226 S:      Maintained
4227 F:      drivers/media/tuners/fc0011.h
4228 F:      drivers/media/tuners/fc0011.c
4229
4230 FC2580 MEDIA DRIVER
4231 M:      Antti Palosaari <crope@iki.fi>
4232 L:      linux-media@vger.kernel.org
4233 W:      http://linuxtv.org/
4234 W:      http://palosaari.fi/linux/
4235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4236 T:      git git://linuxtv.org/anttip/media_tree.git
4237 S:      Maintained
4238 F:      drivers/media/tuners/fc2580*
4239
4240 FANOTIFY
4241 M:      Eric Paris <eparis@redhat.com>
4242 S:      Maintained
4243 F:      fs/notify/fanotify/
4244 F:      include/linux/fanotify.h
4245 F:      include/uapi/linux/fanotify.h
4246
4247 FARSYNC SYNCHRONOUS DRIVER
4248 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4249 W:      http://www.farsite.co.uk/
4250 S:      Supported
4251 F:      drivers/net/wan/farsync.*
4252
4253 FAULT INJECTION SUPPORT
4254 M:      Akinobu Mita <akinobu.mita@gmail.com>
4255 S:      Supported
4256 F:      Documentation/fault-injection/
4257 F:      lib/fault-inject.c
4258
4259 FBTFT Framebuffer drivers
4260 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4261 M:      Noralf Trønnes <noralf@tronnes.org>
4262 S:      Maintained
4263 F:      drivers/staging/fbtft/
4264
4265 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4266 M:      Vasu Dev <vasu.dev@intel.com>
4267 L:      fcoe-devel@open-fcoe.org
4268 W:      www.Open-FCoE.org
4269 S:      Supported
4270 F:      drivers/scsi/libfc/
4271 F:      drivers/scsi/fcoe/
4272 F:      include/scsi/fc/
4273 F:      include/scsi/libfc.h
4274 F:      include/scsi/libfcoe.h
4275 F:      include/uapi/scsi/fc/
4276
4277 FILE LOCKING (flock() and fcntl()/lockf())
4278 M:      Jeff Layton <jlayton@poochiereds.net>
4279 M:      "J. Bruce Fields" <bfields@fieldses.org>
4280 L:      linux-fsdevel@vger.kernel.org
4281 S:      Maintained
4282 F:      include/linux/fcntl.h
4283 F:      include/linux/fs.h
4284 F:      include/uapi/linux/fcntl.h
4285 F:      include/uapi/linux/fs.h
4286 F:      fs/fcntl.c
4287 F:      fs/locks.c
4288
4289 FILESYSTEMS (VFS and infrastructure)
4290 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4291 L:      linux-fsdevel@vger.kernel.org
4292 S:      Maintained
4293 F:      fs/*
4294
4295 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4296 M:      Riku Voipio <riku.voipio@iki.fi>
4297 L:      lm-sensors@lm-sensors.org
4298 S:      Maintained
4299 F:      drivers/hwmon/f75375s.c
4300 F:      include/linux/f75375s.h
4301
4302 FIREWIRE AUDIO DRIVERS
4303 M:      Clemens Ladisch <clemens@ladisch.de>
4304 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4305 T:      git git://git.alsa-project.org/alsa-kernel.git
4306 S:      Maintained
4307 F:      sound/firewire/
4308
4309 FIREWIRE MEDIA DRIVERS (firedtv)
4310 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4311 L:      linux-media@vger.kernel.org
4312 L:      linux1394-devel@lists.sourceforge.net
4313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4314 S:      Maintained
4315 F:      drivers/media/firewire/
4316
4317 FIREWIRE SBP-2 TARGET
4318 M:      Chris Boot <bootc@bootc.net>
4319 L:      linux-scsi@vger.kernel.org
4320 L:      target-devel@vger.kernel.org
4321 L:      linux1394-devel@lists.sourceforge.net
4322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4323 S:      Maintained
4324 F:      drivers/target/sbp/
4325
4326 FIREWIRE SUBSYSTEM
4327 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4328 L:      linux1394-devel@lists.sourceforge.net
4329 W:      http://ieee1394.wiki.kernel.org/
4330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4331 S:      Maintained
4332 F:      drivers/firewire/
4333 F:      include/linux/firewire.h
4334 F:      include/uapi/linux/firewire*.h
4335 F:      tools/firewire/
4336
4337 FIRMWARE LOADER (request_firmware)
4338 M:      Ming Lei <ming.lei@canonical.com>
4339 L:      linux-kernel@vger.kernel.org
4340 S:      Maintained
4341 F:      Documentation/firmware_class/
4342 F:      drivers/base/firmware*.c
4343 F:      include/linux/firmware.h
4344
4345 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4346 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4347 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4348 S:      Maintained
4349 F:      drivers/block/rsxx/
4350
4351 FLOPPY DRIVER
4352 M:      Jiri Kosina <jikos@kernel.org>
4353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4354 S:      Odd fixes
4355 F:      drivers/block/floppy.c
4356
4357 FMC SUBSYSTEM
4358 M:      Alessandro Rubini <rubini@gnudd.com>
4359 W:      http://www.ohwr.org/projects/fmc-bus
4360 S:      Supported
4361 F:      drivers/fmc/
4362 F:      include/linux/fmc*.h
4363 F:      include/linux/ipmi-fru.h
4364 K:      fmc_d.*register
4365
4366 FPU EMULATOR
4367 M:      Bill Metzenthen <billm@melbpc.org.au>
4368 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4369 S:      Maintained
4370 F:      arch/x86/math-emu/
4371
4372 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4373 L:      netdev@vger.kernel.org
4374 S:      Orphan
4375 F:      drivers/net/wan/dlci.c
4376 F:      drivers/net/wan/sdla.c
4377
4378 FRAMEBUFFER LAYER
4379 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4380 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4381 L:      linux-fbdev@vger.kernel.org
4382 W:      http://linux-fbdev.sourceforge.net/
4383 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4385 S:      Maintained
4386 F:      Documentation/fb/
4387 F:      Documentation/devicetree/bindings/fb/
4388 F:      drivers/video/
4389 F:      include/video/
4390 F:      include/linux/fb.h
4391 F:      include/uapi/video/
4392 F:      include/uapi/linux/fb.h
4393
4394 FREESCALE DIU FRAMEBUFFER DRIVER
4395 M:      Timur Tabi <timur@tabi.org>
4396 L:      linux-fbdev@vger.kernel.org
4397 S:      Maintained
4398 F:      drivers/video/fbdev/fsl-diu-fb.*
4399
4400 FREESCALE DMA DRIVER
4401 M:      Li Yang <leoli@freescale.com>
4402 M:      Zhang Wei <zw@zh-kernel.org>
4403 L:      linuxppc-dev@lists.ozlabs.org
4404 S:      Maintained
4405 F:      drivers/dma/fsldma.*
4406
4407 FREESCALE I2C CPM DRIVER
4408 M:      Jochen Friedrich <jochen@scram.de>
4409 L:      linuxppc-dev@lists.ozlabs.org
4410 L:      linux-i2c@vger.kernel.org
4411 S:      Maintained
4412 F:      drivers/i2c/busses/i2c-cpm.c
4413
4414 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4415 M:      Sascha Hauer <kernel@pengutronix.de>
4416 L:      linux-fbdev@vger.kernel.org
4417 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4418 S:      Maintained
4419 F:      include/linux/platform_data/video-imxfb.h
4420 F:      drivers/video/fbdev/imxfb.c
4421
4422 FREESCALE QUAD SPI DRIVER
4423 M:      Han Xu <han.xu@freescale.com>
4424 L:      linux-mtd@lists.infradead.org
4425 S:      Maintained
4426 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4427
4428 FREESCALE SOC FS_ENET DRIVER
4429 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4430 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4431 L:      linuxppc-dev@lists.ozlabs.org
4432 L:      netdev@vger.kernel.org
4433 S:      Maintained
4434 F:      drivers/net/ethernet/freescale/fs_enet/
4435 F:      include/linux/fs_enet_pd.h
4436
4437 FREESCALE QUICC ENGINE LIBRARY
4438 L:      linuxppc-dev@lists.ozlabs.org
4439 S:      Orphan
4440 F:      arch/powerpc/sysdev/qe_lib/
4441 F:      arch/powerpc/include/asm/*qe.h
4442
4443 FREESCALE USB PERIPHERAL DRIVERS
4444 M:      Li Yang <leoli@freescale.com>
4445 L:      linux-usb@vger.kernel.org
4446 L:      linuxppc-dev@lists.ozlabs.org
4447 S:      Maintained
4448 F:      drivers/usb/gadget/udc/fsl*
4449
4450 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4451 M:      Li Yang <leoli@freescale.com>
4452 L:      netdev@vger.kernel.org
4453 L:      linuxppc-dev@lists.ozlabs.org
4454 S:      Maintained
4455 F:      drivers/net/ethernet/freescale/ucc_geth*
4456
4457 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4458 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4459 L:      netdev@vger.kernel.org
4460 S:      Maintained
4461 F:      drivers/net/ethernet/freescale/gianfar*
4462 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4463 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4464
4465 FREESCALE QUICC ENGINE UCC UART DRIVER
4466 M:      Timur Tabi <timur@tabi.org>
4467 L:      linuxppc-dev@lists.ozlabs.org
4468 S:      Maintained
4469 F:      drivers/tty/serial/ucc_uart.c
4470
4471 FREESCALE SOC SOUND DRIVERS
4472 M:      Timur Tabi <timur@tabi.org>
4473 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4474 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4475 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4476 L:      linuxppc-dev@lists.ozlabs.org
4477 S:      Maintained
4478 F:      sound/soc/fsl/fsl*
4479 F:      sound/soc/fsl/imx*
4480 F:      sound/soc/fsl/mpc8610_hpcd.c
4481
4482 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4483 M:      "J. German Rivera" <German.Rivera@freescale.com>
4484 L:      linux-kernel@vger.kernel.org
4485 S:      Maintained
4486 F:      drivers/staging/fsl-mc/
4487
4488 FREEVXFS FILESYSTEM
4489 M:      Christoph Hellwig <hch@infradead.org>
4490 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4491 S:      Maintained
4492 F:      fs/freevxfs/
4493
4494 FREEZER
4495 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4496 M:      Pavel Machek <pavel@ucw.cz>
4497 L:      linux-pm@vger.kernel.org
4498 S:      Supported
4499 F:      Documentation/power/freezing-of-tasks.txt
4500 F:      include/linux/freezer.h
4501 F:      kernel/freezer.c
4502
4503 FRONTSWAP API
4504 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4505 L:      linux-kernel@vger.kernel.org
4506 S:      Maintained
4507 F:      mm/frontswap.c
4508 F:      include/linux/frontswap.h
4509
4510 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4511 M:      David Howells <dhowells@redhat.com>
4512 L:      linux-cachefs@redhat.com
4513 S:      Supported
4514 F:      Documentation/filesystems/caching/
4515 F:      fs/fscache/
4516 F:      include/linux/fscache*.h
4517
4518 F2FS FILE SYSTEM
4519 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4520 M:      Changman Lee <cm224.lee@samsung.com>
4521 R:      Chao Yu <chao2.yu@samsung.com>
4522 L:      linux-f2fs-devel@lists.sourceforge.net
4523 W:      http://en.wikipedia.org/wiki/F2FS
4524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4525 S:      Maintained
4526 F:      Documentation/filesystems/f2fs.txt
4527 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4528 F:      fs/f2fs/
4529 F:      include/linux/f2fs_fs.h
4530 F:      include/trace/events/f2fs.h
4531
4532 FUJITSU FR-V (FRV) PORT
4533 M:      David Howells <dhowells@redhat.com>
4534 S:      Maintained
4535 F:      arch/frv/
4536
4537 FUJITSU LAPTOP EXTRAS
4538 M:      Jonathan Woithe <jwoithe@just42.net>
4539 L:      platform-driver-x86@vger.kernel.org
4540 S:      Maintained
4541 F:      drivers/platform/x86/fujitsu-laptop.c
4542
4543 FUJITSU M-5MO LS CAMERA ISP DRIVER
4544 M:      Kyungmin Park <kyungmin.park@samsung.com>
4545 M:      Heungjun Kim <riverful.kim@samsung.com>
4546 L:      linux-media@vger.kernel.org
4547 S:      Maintained
4548 F:      drivers/media/i2c/m5mols/
4549 F:      include/media/m5mols.h
4550
4551 FUJITSU TABLET EXTRAS
4552 M:      Robert Gerlach <khnz@gmx.de>
4553 L:      platform-driver-x86@vger.kernel.org
4554 S:      Maintained
4555 F:      drivers/platform/x86/fujitsu-tablet.c
4556
4557 FUSE: FILESYSTEM IN USERSPACE
4558 M:      Miklos Szeredi <miklos@szeredi.hu>
4559 L:      fuse-devel@lists.sourceforge.net
4560 W:      http://fuse.sourceforge.net/
4561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4562 S:      Maintained
4563 F:      fs/fuse/
4564 F:      include/uapi/linux/fuse.h
4565 F:      Documentation/filesystems/fuse.txt
4566
4567 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4568 M:      Rik Faith <faith@cs.unc.edu>
4569 L:      linux-scsi@vger.kernel.org
4570 S:      Odd Fixes (e.g., new signatures)
4571 F:      drivers/scsi/fdomain.*
4572
4573 GCOV BASED KERNEL PROFILING
4574 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4575 S:      Maintained
4576 F:      kernel/gcov/
4577 F:      Documentation/gcov.txt
4578
4579 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4580 M:      Achim Leubner <achim_leubner@adaptec.com>
4581 L:      linux-scsi@vger.kernel.org
4582 W:      http://www.icp-vortex.com/
4583 S:      Supported
4584 F:      drivers/scsi/gdt*
4585
4586 GDB KERNEL DEBUGGING HELPER SCRIPTS
4587 M:      Jan Kiszka <jan.kiszka@siemens.com>
4588 S:      Supported
4589 F:      scripts/gdb/
4590
4591 GEMTEK FM RADIO RECEIVER DRIVER
4592 M:      Hans Verkuil <hverkuil@xs4all.nl>
4593 L:      linux-media@vger.kernel.org
4594 T:      git git://linuxtv.org/media_tree.git
4595 W:      http://linuxtv.org
4596 S:      Maintained
4597 F:      drivers/media/radio/radio-gemtek*
4598
4599 GENERIC GPIO I2C DRIVER
4600 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4601 S:      Supported
4602 F:      drivers/i2c/busses/i2c-gpio.c
4603 F:      include/linux/i2c-gpio.h
4604
4605 GENERIC GPIO I2C MULTIPLEXER DRIVER
4606 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4607 L:      linux-i2c@vger.kernel.org
4608 S:      Supported
4609 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4610 F:      include/linux/i2c-mux-gpio.h
4611 F:      Documentation/i2c/muxes/i2c-mux-gpio
4612
4613 GENERIC HDLC (WAN) DRIVERS
4614 M:      Krzysztof Halasa <khc@pm.waw.pl>
4615 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4616 S:      Maintained
4617 F:      drivers/net/wan/c101.c
4618 F:      drivers/net/wan/hd6457*
4619 F:      drivers/net/wan/hdlc*
4620 F:      drivers/net/wan/n2.c
4621 F:      drivers/net/wan/pc300too.c
4622 F:      drivers/net/wan/pci200syn.c
4623 F:      drivers/net/wan/wanxl*
4624
4625 GENERIC INCLUDE/ASM HEADER FILES
4626 M:      Arnd Bergmann <arnd@arndb.de>
4627 L:      linux-arch@vger.kernel.org
4628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4629 S:      Maintained
4630 F:      include/asm-generic/
4631 F:      include/uapi/asm-generic/
4632
4633 GENERIC PHY FRAMEWORK
4634 M:      Kishon Vijay Abraham I <kishon@ti.com>
4635 L:      linux-kernel@vger.kernel.org
4636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4637 S:      Supported
4638 F:      drivers/phy/
4639 F:      include/linux/phy/
4640
4641 GENERIC PM DOMAINS
4642 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4643 M:      Kevin Hilman <khilman@kernel.org>
4644 M:      Ulf Hansson <ulf.hansson@linaro.org>
4645 L:      linux-pm@vger.kernel.org
4646 S:      Supported
4647 F:      drivers/base/power/domain*.c
4648 F:      include/linux/pm_domain.h
4649
4650 GENERIC UIO DRIVER FOR PCI DEVICES
4651 M:      "Michael S. Tsirkin" <mst@redhat.com>
4652 L:      kvm@vger.kernel.org
4653 S:      Supported
4654 F:      drivers/uio/uio_pci_generic.c
4655
4656 GET_MAINTAINER SCRIPT
4657 M:      Joe Perches <joe@perches.com>
4658 S:      Maintained
4659 F:      scripts/get_maintainer.pl
4660
4661 GFS2 FILE SYSTEM
4662 M:      Steven Whitehouse <swhiteho@redhat.com>
4663 M:      Bob Peterson <rpeterso@redhat.com>
4664 L:      cluster-devel@redhat.com
4665 W:      http://sources.redhat.com/cluster/
4666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4667 S:      Supported
4668 F:      Documentation/filesystems/gfs2*.txt
4669 F:      fs/gfs2/
4670 F:      include/uapi/linux/gfs2_ondisk.h
4671
4672 GIGASET ISDN DRIVERS
4673 M:      Paul Bolle <pebolle@tiscali.nl>
4674 L:      gigaset307x-common@lists.sourceforge.net
4675 W:      http://gigaset307x.sourceforge.net/
4676 S:      Odd Fixes
4677 F:      Documentation/isdn/README.gigaset
4678 F:      drivers/isdn/gigaset/
4679 F:      include/uapi/linux/gigaset_dev.h
4680
4681 GO7007 MPEG CODEC
4682 M:      Hans Verkuil <hans.verkuil@cisco.com>
4683 L:      linux-media@vger.kernel.org
4684 S:      Maintained
4685 F:      drivers/media/usb/go7007/
4686
4687 GOODIX TOUCHSCREEN
4688 M:      Bastien Nocera <hadess@hadess.net>
4689 L:      linux-input@vger.kernel.org
4690 S:      Maintained
4691 F:      drivers/input/touchscreen/goodix.c
4692
4693 GPIO SUBSYSTEM
4694 M:      Linus Walleij <linus.walleij@linaro.org>
4695 M:      Alexandre Courbot <gnurou@gmail.com>
4696 L:      linux-gpio@vger.kernel.org
4697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4698 S:      Maintained
4699 F:      Documentation/gpio/
4700 F:      drivers/gpio/
4701 F:      include/linux/gpio/
4702 F:      include/linux/gpio.h
4703 F:      include/asm-generic/gpio.h
4704
4705 GRE DEMULTIPLEXER DRIVER
4706 M:      Dmitry Kozlov <xeb@mail.ru>
4707 L:      netdev@vger.kernel.org
4708 S:      Maintained
4709 F:      net/ipv4/gre_demux.c
4710 F:      net/ipv4/gre_offload.c
4711 F:      include/net/gre.h
4712
4713 GRETH 10/100/1G Ethernet MAC device driver
4714 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4715 L:      netdev@vger.kernel.org
4716 S:      Maintained
4717 F:      drivers/net/ethernet/aeroflex/
4718
4719 GSPCA FINEPIX SUBDRIVER
4720 M:      Frank Zago <frank@zago.net>
4721 L:      linux-media@vger.kernel.org
4722 T:      git git://linuxtv.org/media_tree.git
4723 S:      Maintained
4724 F:      drivers/media/usb/gspca/finepix.c
4725
4726 GSPCA GL860 SUBDRIVER
4727 M:      Olivier Lorin <o.lorin@laposte.net>
4728 L:      linux-media@vger.kernel.org
4729 T:      git git://linuxtv.org/media_tree.git
4730 S:      Maintained
4731 F:      drivers/media/usb/gspca/gl860/
4732
4733 GSPCA M5602 SUBDRIVER
4734 M:      Erik Andren <erik.andren@gmail.com>
4735 L:      linux-media@vger.kernel.org
4736 T:      git git://linuxtv.org/media_tree.git
4737 S:      Maintained
4738 F:      drivers/media/usb/gspca/m5602/
4739
4740 GSPCA PAC207 SONIXB SUBDRIVER
4741 M:      Hans de Goede <hdegoede@redhat.com>
4742 L:      linux-media@vger.kernel.org
4743 T:      git git://linuxtv.org/media_tree.git
4744 S:      Maintained
4745 F:      drivers/media/usb/gspca/pac207.c
4746
4747 GSPCA SN9C20X SUBDRIVER
4748 M:      Brian Johnson <brijohn@gmail.com>
4749 L:      linux-media@vger.kernel.org
4750 T:      git git://linuxtv.org/media_tree.git
4751 S:      Maintained
4752 F:      drivers/media/usb/gspca/sn9c20x.c
4753
4754 GSPCA T613 SUBDRIVER
4755 M:      Leandro Costantino <lcostantino@gmail.com>
4756 L:      linux-media@vger.kernel.org
4757 T:      git git://linuxtv.org/media_tree.git
4758 S:      Maintained
4759 F:      drivers/media/usb/gspca/t613.c
4760
4761 GSPCA USB WEBCAM DRIVER
4762 M:      Hans de Goede <hdegoede@redhat.com>
4763 L:      linux-media@vger.kernel.org
4764 T:      git git://linuxtv.org/media_tree.git
4765 S:      Maintained
4766 F:      drivers/media/usb/gspca/
4767
4768 GUID PARTITION TABLE (GPT)
4769 M:      Davidlohr Bueso <dave@stgolabs.net>
4770 L:      linux-efi@vger.kernel.org
4771 S:      Maintained
4772 F:      block/partitions/efi.*
4773
4774 STK1160 USB VIDEO CAPTURE DRIVER
4775 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4776 L:      linux-media@vger.kernel.org
4777 T:      git git://linuxtv.org/media_tree.git
4778 S:      Maintained
4779 F:      drivers/media/usb/stk1160/
4780
4781 H8/300 ARCHITECTURE
4782 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4783 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4784 W:      http://uclinux-h8.sourceforge.jp
4785 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4786 S:      Maintained
4787 F:      arch/h8300/
4788 F:      drivers/clocksource/h8300_*.c
4789 F:      drivers/clk/h8300/
4790 F:      drivers/irqchip/irq-renesas-h8*.c
4791
4792 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4793 M:      Frank Seidel <frank@f-seidel.de>
4794 L:      platform-driver-x86@vger.kernel.org
4795 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4796 S:      Maintained
4797 F:      drivers/platform/x86/hdaps.c
4798
4799 HDPVR USB VIDEO ENCODER DRIVER
4800 M:      Hans Verkuil <hverkuil@xs4all.nl>
4801 L:      linux-media@vger.kernel.org
4802 T:      git git://linuxtv.org/media_tree.git
4803 W:      http://linuxtv.org
4804 S:      Odd Fixes
4805 F:      drivers/media/usb/hdpvr/
4806
4807 HWPOISON MEMORY FAILURE HANDLING
4808 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4809 L:      linux-mm@kvack.org
4810 S:      Maintained
4811 F:      mm/memory-failure.c
4812 F:      mm/hwpoison-inject.c
4813
4814 HYPERVISOR VIRTUAL CONSOLE DRIVER
4815 L:      linuxppc-dev@lists.ozlabs.org
4816 S:      Odd Fixes
4817 F:      drivers/tty/hvc/
4818
4819 HACKRF MEDIA DRIVER
4820 M:      Antti Palosaari <crope@iki.fi>
4821 L:      linux-media@vger.kernel.org
4822 W:      http://linuxtv.org/
4823 W:      http://palosaari.fi/linux/
4824 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4825 T:      git git://linuxtv.org/anttip/media_tree.git
4826 S:      Maintained
4827 F:      drivers/media/usb/hackrf/
4828
4829 HARDWARE MONITORING
4830 M:      Jean Delvare <jdelvare@suse.com>
4831 M:      Guenter Roeck <linux@roeck-us.net>
4832 L:      lm-sensors@lm-sensors.org
4833 W:      http://www.lm-sensors.org/
4834 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4836 S:      Maintained
4837 F:      Documentation/hwmon/
4838 F:      drivers/hwmon/
4839 F:      include/linux/hwmon*.h
4840
4841 HARDWARE RANDOM NUMBER GENERATOR CORE
4842 M:      Matt Mackall <mpm@selenic.com>
4843 M:      Herbert Xu <herbert@gondor.apana.org.au>
4844 L:      linux-crypto@vger.kernel.org
4845 S:      Odd fixes
4846 F:      Documentation/hw_random.txt
4847 F:      drivers/char/hw_random/
4848 F:      include/linux/hw_random.h
4849
4850 HARDWARE SPINLOCK CORE
4851 M:      Ohad Ben-Cohen <ohad@wizery.com>
4852 S:      Maintained
4853 F:      Documentation/hwspinlock.txt
4854 F:      drivers/hwspinlock/hwspinlock_*
4855 F:      include/linux/hwspinlock.h
4856
4857 HARMONY SOUND DRIVER
4858 L:      linux-parisc@vger.kernel.org
4859 S:      Maintained
4860 F:      sound/parisc/harmony.*
4861
4862 HD29L2 MEDIA DRIVER
4863 M:      Antti Palosaari <crope@iki.fi>
4864 L:      linux-media@vger.kernel.org
4865 W:      http://linuxtv.org/
4866 W:      http://palosaari.fi/linux/
4867 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4868 T:      git git://linuxtv.org/anttip/media_tree.git
4869 S:      Maintained
4870 F:      drivers/media/dvb-frontends/hd29l2*
4871
4872 HEWLETT-PACKARD SMART2 RAID DRIVER
4873 L:      iss_storagedev@hp.com
4874 S:      Orphan
4875 F:      Documentation/blockdev/cpqarray.txt
4876 F:      drivers/block/cpqarray.*
4877
4878 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4879 M:      Don Brace <don.brace@pmcs.com>
4880 L:      iss_storagedev@hp.com
4881 L:      storagedev@pmcs.com
4882 L:      linux-scsi@vger.kernel.org
4883 S:      Supported
4884 F:      Documentation/scsi/hpsa.txt
4885 F:      drivers/scsi/hpsa*.[ch]
4886 F:      include/linux/cciss*.h
4887 F:      include/uapi/linux/cciss*.h
4888
4889 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4890 M:      Don Brace <don.brace@pmcs.com>
4891 L:      iss_storagedev@hp.com
4892 L:      storagedev@pmcs.com
4893 L:      linux-scsi@vger.kernel.org
4894 S:      Supported
4895 F:      Documentation/blockdev/cciss.txt
4896 F:      drivers/block/cciss*
4897 F:      include/linux/cciss_ioctl.h
4898 F:      include/uapi/linux/cciss_ioctl.h
4899
4900 HFS FILESYSTEM
4901 L:      linux-fsdevel@vger.kernel.org
4902 S:      Orphan
4903 F:      Documentation/filesystems/hfs.txt
4904 F:      fs/hfs/
4905
4906 HFSPLUS FILESYSTEM
4907 L:      linux-fsdevel@vger.kernel.org
4908 S:      Orphan
4909 F:      Documentation/filesystems/hfsplus.txt
4910 F:      fs/hfsplus/
4911
4912 HGA FRAMEBUFFER DRIVER
4913 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4914 L:      linux-nvidia@lists.surfsouth.com
4915 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4916 S:      Maintained
4917 F:      drivers/video/fbdev/hgafb.c
4918
4919 HIBERNATION (aka Software Suspend, aka swsusp)
4920 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4921 M:      Pavel Machek <pavel@ucw.cz>
4922 L:      linux-pm@vger.kernel.org
4923 S:      Supported
4924 F:      arch/x86/power/
4925 F:      drivers/base/power/
4926 F:      kernel/power/
4927 F:      include/linux/suspend.h
4928 F:      include/linux/freezer.h
4929 F:      include/linux/pm.h
4930 F:      arch/*/include/asm/suspend*.h
4931
4932 HID CORE LAYER
4933 M:      Jiri Kosina <jikos@kernel.org>
4934 L:      linux-input@vger.kernel.org
4935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4936 S:      Maintained
4937 F:      drivers/hid/
4938 F:      include/linux/hid*
4939 F:      include/uapi/linux/hid*
4940
4941 HID SENSOR HUB DRIVERS
4942 M:      Jiri Kosina <jikos@kernel.org>
4943 M:      Jonathan Cameron <jic23@kernel.org>
4944 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4945 L:      linux-input@vger.kernel.org
4946 L:      linux-iio@vger.kernel.org
4947 S:      Maintained
4948 F:      Documentation/hid/hid-sensor*
4949 F:      drivers/hid/hid-sensor-*
4950 F:      drivers/iio/*/hid-*
4951 F:      include/linux/hid-sensor-*
4952
4953 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4954 M:      Thomas Gleixner <tglx@linutronix.de>
4955 L:      linux-kernel@vger.kernel.org
4956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4957 S:      Maintained
4958 F:      Documentation/timers/
4959 F:      kernel/time/hrtimer.c
4960 F:      kernel/time/clockevents.c
4961 F:      kernel/time/tick*.*
4962 F:      kernel/time/timer_*.c
4963 F:      include/linux/clockchips.h
4964 F:      include/linux/hrtimer.h
4965
4966 HIGH-SPEED SCC DRIVER FOR AX.25
4967 L:      linux-hams@vger.kernel.org
4968 S:      Orphan
4969 F:      drivers/net/hamradio/dmascc.c
4970 F:      drivers/net/hamradio/scc.c
4971
4972 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4973 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4974 W:      http://www.highpoint-tech.com
4975 S:      Supported
4976 F:      Documentation/scsi/hptiop.txt
4977 F:      drivers/scsi/hptiop.c
4978
4979 HIPPI
4980 M:      Jes Sorensen <jes@trained-monkey.org>
4981 L:      linux-hippi@sunsite.dk
4982 S:      Maintained
4983 F:      include/linux/hippidevice.h
4984 F:      include/uapi/linux/if_hippi.h
4985 F:      net/802/hippi.c
4986 F:      drivers/net/hippi/
4987
4988 HOST AP DRIVER
4989 M:      Jouni Malinen <j@w1.fi>
4990 L:      hostap@shmoo.com (subscribers-only)
4991 L:      linux-wireless@vger.kernel.org
4992 W:      http://hostap.epitest.fi/
4993 S:      Maintained
4994 F:      drivers/net/wireless/hostap/
4995
4996 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4997 L:      platform-driver-x86@vger.kernel.org
4998 S:      Orphan
4999 F:      drivers/platform/x86/tc1100-wmi.c
5000
5001 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5002 M:      Jaroslav Kysela <perex@perex.cz>
5003 S:      Maintained
5004 F:      drivers/net/ethernet/hp/hp100.*
5005
5006 HPET:   High Precision Event Timers driver
5007 M:      Clemens Ladisch <clemens@ladisch.de>
5008 S:      Maintained
5009 F:      Documentation/timers/hpet.txt
5010 F:      drivers/char/hpet.c
5011 F:      include/linux/hpet.h
5012 F:      include/uapi/linux/hpet.h
5013
5014 HPET:   x86
5015 S:      Orphan
5016 F:      arch/x86/kernel/hpet.c
5017 F:      arch/x86/include/asm/hpet.h
5018
5019 HPFS FILESYSTEM
5020 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5021 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5022 S:      Maintained
5023 F:      fs/hpfs/
5024
5025 HSI SUBSYSTEM
5026 M:      Sebastian Reichel <sre@kernel.org>
5027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5028 S:      Maintained
5029 F:      Documentation/ABI/testing/sysfs-bus-hsi
5030 F:      Documentation/hsi.txt
5031 F:      drivers/hsi/
5032 F:      include/linux/hsi/
5033 F:      include/uapi/linux/hsi/
5034
5035 HSO 3G MODEM DRIVER
5036 M:      Jan Dumon <j.dumon@option.com>
5037 W:      http://www.pharscape.org
5038 S:      Maintained
5039 F:      drivers/net/usb/hso.c
5040
5041 HSR NETWORK PROTOCOL
5042 M:      Arvid Brodin <arvid.brodin@alten.se>
5043 L:      netdev@vger.kernel.org
5044 S:      Maintained
5045 F:      net/hsr/
5046
5047 HTCPEN TOUCHSCREEN DRIVER
5048 M:      Pau Oliva Fora <pof@eslack.org>
5049 L:      linux-input@vger.kernel.org
5050 S:      Maintained
5051 F:      drivers/input/touchscreen/htcpen.c
5052
5053 HUGETLB FILESYSTEM
5054 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5055 S:      Maintained
5056 F:      fs/hugetlbfs/
5057
5058 Hyper-V CORE AND DRIVERS
5059 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5060 M:      Haiyang Zhang <haiyangz@microsoft.com>
5061 L:      devel@linuxdriverproject.org
5062 S:      Maintained
5063 F:      arch/x86/include/asm/mshyperv.h
5064 F:      arch/x86/include/uapi/asm/hyperv.h
5065 F:      arch/x86/kernel/cpu/mshyperv.c
5066 F:      drivers/hid/hid-hyperv.c
5067 F:      drivers/hv/
5068 F:      drivers/input/serio/hyperv-keyboard.c
5069 F:      drivers/net/hyperv/
5070 F:      drivers/scsi/storvsc_drv.c
5071 F:      drivers/video/fbdev/hyperv_fb.c
5072 F:      include/linux/hyperv.h
5073 F:      tools/hv/
5074 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5075
5076 I2C OVER PARALLEL PORT
5077 M:      Jean Delvare <jdelvare@suse.com>
5078 L:      linux-i2c@vger.kernel.org
5079 S:      Maintained
5080 F:      Documentation/i2c/busses/i2c-parport
5081 F:      Documentation/i2c/busses/i2c-parport-light
5082 F:      drivers/i2c/busses/i2c-parport.c
5083 F:      drivers/i2c/busses/i2c-parport-light.c
5084
5085 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5086 M:      Jean Delvare <jdelvare@suse.com>
5087 L:      linux-i2c@vger.kernel.org
5088 S:      Maintained
5089 F:      Documentation/i2c/busses/i2c-ali1535
5090 F:      Documentation/i2c/busses/i2c-ali1563
5091 F:      Documentation/i2c/busses/i2c-ali15x3
5092 F:      Documentation/i2c/busses/i2c-amd756
5093 F:      Documentation/i2c/busses/i2c-amd8111
5094 F:      Documentation/i2c/busses/i2c-i801
5095 F:      Documentation/i2c/busses/i2c-nforce2
5096 F:      Documentation/i2c/busses/i2c-piix4
5097 F:      Documentation/i2c/busses/i2c-sis5595
5098 F:      Documentation/i2c/busses/i2c-sis630
5099 F:      Documentation/i2c/busses/i2c-sis96x
5100 F:      Documentation/i2c/busses/i2c-via
5101 F:      Documentation/i2c/busses/i2c-viapro
5102 F:      drivers/i2c/busses/i2c-ali1535.c
5103 F:      drivers/i2c/busses/i2c-ali1563.c
5104 F:      drivers/i2c/busses/i2c-ali15x3.c
5105 F:      drivers/i2c/busses/i2c-amd756.c
5106 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5107 F:      drivers/i2c/busses/i2c-amd8111.c
5108 F:      drivers/i2c/busses/i2c-i801.c
5109 F:      drivers/i2c/busses/i2c-isch.c
5110 F:      drivers/i2c/busses/i2c-nforce2.c
5111 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5112 F:      drivers/i2c/busses/i2c-piix4.c
5113 F:      drivers/i2c/busses/i2c-sis5595.c
5114 F:      drivers/i2c/busses/i2c-sis630.c
5115 F:      drivers/i2c/busses/i2c-sis96x.c
5116 F:      drivers/i2c/busses/i2c-via.c
5117 F:      drivers/i2c/busses/i2c-viapro.c
5118
5119 I2C/SMBUS ISMT DRIVER
5120 M:      Seth Heasley <seth.heasley@intel.com>
5121 M:      Neil Horman <nhorman@tuxdriver.com>
5122 L:      linux-i2c@vger.kernel.org
5123 F:      drivers/i2c/busses/i2c-ismt.c
5124 F:      Documentation/i2c/busses/i2c-ismt
5125
5126 I2C/SMBUS STUB DRIVER
5127 M:      Jean Delvare <jdelvare@suse.com>
5128 L:      linux-i2c@vger.kernel.org
5129 S:      Maintained
5130 F:      drivers/i2c/i2c-stub.c
5131
5132 I2C SUBSYSTEM
5133 M:      Wolfram Sang <wsa@the-dreams.de>
5134 L:      linux-i2c@vger.kernel.org
5135 W:      https://i2c.wiki.kernel.org/
5136 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5138 S:      Maintained
5139 F:      Documentation/devicetree/bindings/i2c/
5140 F:      Documentation/i2c/
5141 F:      drivers/i2c/
5142 F:      include/linux/i2c.h
5143 F:      include/linux/i2c-*.h
5144 F:      include/uapi/linux/i2c.h
5145 F:      include/uapi/linux/i2c-*.h
5146
5147 I2C ACPI SUPPORT
5148 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5149 L:      linux-i2c@vger.kernel.org
5150 L:      linux-acpi@vger.kernel.org
5151 S:      Maintained
5152
5153 I2C-TAOS-EVM DRIVER
5154 M:      Jean Delvare <jdelvare@suse.com>
5155 L:      linux-i2c@vger.kernel.org
5156 S:      Maintained
5157 F:      Documentation/i2c/busses/i2c-taos-evm
5158 F:      drivers/i2c/busses/i2c-taos-evm.c
5159
5160 I2C-TINY-USB DRIVER
5161 M:      Till Harbaum <till@harbaum.org>
5162 L:      linux-i2c@vger.kernel.org
5163 W:      http://www.harbaum.org/till/i2c_tiny_usb
5164 S:      Maintained
5165 F:      drivers/i2c/busses/i2c-tiny-usb.c
5166
5167 i386 BOOT CODE
5168 M:      "H. Peter Anvin" <hpa@zytor.com>
5169 S:      Maintained
5170 F:      arch/x86/boot/
5171
5172 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5173 M:      "H. Peter Anvin" <hpa@zytor.com>
5174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5175 S:      Maintained
5176
5177 IA64 (Itanium) PLATFORM
5178 M:      Tony Luck <tony.luck@intel.com>
5179 M:      Fenghua Yu <fenghua.yu@intel.com>
5180 L:      linux-ia64@vger.kernel.org
5181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5182 S:      Maintained
5183 F:      arch/ia64/
5184
5185 IBM Power VMX Cryptographic instructions
5186 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5187 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5188 L:      linux-crypto@vger.kernel.org
5189 S:      Supported
5190 F:      drivers/crypto/vmx/Makefile
5191 F:      drivers/crypto/vmx/Kconfig
5192 F:      drivers/crypto/vmx/vmx.c
5193 F:      drivers/crypto/vmx/aes*
5194 F:      drivers/crypto/vmx/ghash*
5195 F:      drivers/crypto/vmx/ppc-xlate.pl
5196
5197 IBM Power in-Nest Crypto Acceleration
5198 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5199 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5200 L:      linux-crypto@vger.kernel.org
5201 S:      Supported
5202 F:      drivers/crypto/nx/Makefile
5203 F:      drivers/crypto/nx/Kconfig
5204 F:      drivers/crypto/nx/nx-aes*
5205 F:      drivers/crypto/nx/nx-sha*
5206 F:      drivers/crypto/nx/nx.*
5207 F:      drivers/crypto/nx/nx_csbcpb.h
5208 F:      drivers/crypto/nx/nx_debugfs.h
5209
5210 IBM Power 842 compression accelerator
5211 M:      Dan Streetman <ddstreet@ieee.org>
5212 S:      Supported
5213 F:      drivers/crypto/nx/Makefile
5214 F:      drivers/crypto/nx/Kconfig
5215 F:      drivers/crypto/nx/nx-842*
5216 F:      include/linux/sw842.h
5217 F:      crypto/842.c
5218 F:      lib/842/
5219
5220 IBM Power Linux RAID adapter
5221 M:      Brian King <brking@us.ibm.com>
5222 S:      Supported
5223 F:      drivers/scsi/ipr.*
5224
5225 IBM Power Virtual Ethernet Device Driver
5226 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5227 L:      netdev@vger.kernel.org
5228 S:      Supported
5229 F:      drivers/net/ethernet/ibm/ibmveth.*
5230
5231 IBM Power Virtual SCSI Device Drivers
5232 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5233 L:      linux-scsi@vger.kernel.org
5234 S:      Supported
5235 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5236 F:      drivers/scsi/ibmvscsi/viosrp.h
5237
5238 IBM Power Virtual FC Device Drivers
5239 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5240 L:      linux-scsi@vger.kernel.org
5241 S:      Supported
5242 F:      drivers/scsi/ibmvscsi/ibmvfc*
5243
5244 IBM ServeRAID RAID DRIVER
5245 S:      Orphan
5246 F:      drivers/scsi/ips.*
5247
5248 ICH LPC AND GPIO DRIVER
5249 M:      Peter Tyser <ptyser@xes-inc.com>
5250 S:      Maintained
5251 F:      drivers/mfd/lpc_ich.c
5252 F:      drivers/gpio/gpio-ich.c
5253
5254 IDE SUBSYSTEM
5255 M:      "David S. Miller" <davem@davemloft.net>
5256 L:      linux-ide@vger.kernel.org
5257 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5259 S:      Maintained
5260 F:      Documentation/ide/
5261 F:      drivers/ide/
5262 F:      include/linux/ide.h
5263
5264 IDEAPAD LAPTOP EXTRAS DRIVER
5265 M:      Ike Panhc <ike.pan@canonical.com>
5266 L:      platform-driver-x86@vger.kernel.org
5267 W:      http://launchpad.net/ideapad-laptop
5268 S:      Maintained
5269 F:      drivers/platform/x86/ideapad-laptop.c
5270
5271 IDEAPAD LAPTOP SLIDEBAR DRIVER
5272 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5273 L:      linux-input@vger.kernel.org
5274 W:      https://github.com/o2genum/ideapad-slidebar
5275 S:      Maintained
5276 F:      drivers/input/misc/ideapad_slidebar.c
5277
5278 IDE/ATAPI DRIVERS
5279 M:      Borislav Petkov <bp@alien8.de>
5280 L:      linux-ide@vger.kernel.org
5281 S:      Maintained
5282 F:      Documentation/cdrom/ide-cd
5283 F:      drivers/ide/ide-cd*
5284
5285 IDLE-I7300
5286 M:      Andy Henroid <andrew.d.henroid@intel.com>
5287 L:      linux-pm@vger.kernel.org
5288 S:      Supported
5289 F:      drivers/idle/i7300_idle.c
5290
5291 IEEE 802.15.4 SUBSYSTEM
5292 M:      Alexander Aring <alex.aring@gmail.com>
5293 L:      linux-wpan@vger.kernel.org
5294 W:      https://github.com/linux-wpan
5295 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5296 S:      Maintained
5297 F:      net/ieee802154/
5298 F:      net/mac802154/
5299 F:      drivers/net/ieee802154/
5300 F:      include/linux/nl802154.h
5301 F:      include/linux/ieee802154.h
5302 F:      include/net/nl802154.h
5303 F:      include/net/mac802154.h
5304 F:      include/net/af_ieee802154.h
5305 F:      include/net/cfg802154.h
5306 F:      include/net/ieee802154_netdev.h
5307 F:      Documentation/networking/ieee802154.txt
5308
5309 IGORPLUG-USB IR RECEIVER
5310 M:      Sean Young <sean@mess.org>
5311 L:      linux-media@vger.kernel.org
5312 S:      Maintained
5313 F:      drivers/media/rc/igorplugusb.c
5314
5315 IGUANAWORKS USB IR TRANSCEIVER
5316 M:      Sean Young <sean@mess.org>
5317 L:      linux-media@vger.kernel.org
5318 S:      Maintained
5319 F:      drivers/media/rc/iguanair.c
5320
5321 IIO SUBSYSTEM AND DRIVERS
5322 M:      Jonathan Cameron <jic23@kernel.org>
5323 R:      Hartmut Knaack <knaack.h@gmx.de>
5324 R:      Lars-Peter Clausen <lars@metafoo.de>
5325 R:      Peter Meerwald <pmeerw@pmeerw.net>
5326 L:      linux-iio@vger.kernel.org
5327 S:      Maintained
5328 F:      drivers/iio/
5329 F:      drivers/staging/iio/
5330 F:      include/linux/iio/
5331 F:      tools/iio/
5332
5333 IKANOS/ADI EAGLE ADSL USB DRIVER
5334 M:      Matthieu Castet <castet.matthieu@free.fr>
5335 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5336 S:      Maintained
5337 F:      drivers/usb/atm/ueagle-atm.c
5338
5339 INA209 HARDWARE MONITOR DRIVER
5340 M:      Guenter Roeck <linux@roeck-us.net>
5341 L:      lm-sensors@lm-sensors.org
5342 S:      Maintained
5343 F:      Documentation/hwmon/ina209
5344 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5345 F:      drivers/hwmon/ina209.c
5346
5347 INA2XX HARDWARE MONITOR DRIVER
5348 M:      Guenter Roeck <linux@roeck-us.net>
5349 L:      lm-sensors@lm-sensors.org
5350 S:      Maintained
5351 F:      Documentation/hwmon/ina2xx
5352 F:      drivers/hwmon/ina2xx.c
5353 F:      include/linux/platform_data/ina2xx.h
5354
5355 INDUSTRY PACK SUBSYSTEM (IPACK)
5356 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5357 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5358 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5359 L:      industrypack-devel@lists.sourceforge.net
5360 W:      http://industrypack.sourceforge.net
5361 S:      Maintained
5362 F:      drivers/ipack/
5363
5364 INGENIC JZ4780 DMA Driver
5365 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5366 S:      Maintained
5367 F:      drivers/dma/dma-jz4780.c
5368
5369 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5370 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5371 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5372 L:      linux-ima-devel@lists.sourceforge.net
5373 L:      linux-ima-user@lists.sourceforge.net
5374 L:      linux-security-module@vger.kernel.org
5375 S:      Supported
5376 F:      security/integrity/ima/
5377
5378 IMGTEC IR DECODER DRIVER
5379 M:      James Hogan <james.hogan@imgtec.com>
5380 S:      Maintained
5381 F:      drivers/media/rc/img-ir/
5382
5383 IMS TWINTURBO FRAMEBUFFER DRIVER
5384 L:      linux-fbdev@vger.kernel.org
5385 S:      Orphan
5386 F:      drivers/video/fbdev/imsttfb.c
5387
5388 INFINIBAND SUBSYSTEM
5389 M:      Doug Ledford <dledford@redhat.com>
5390 M:      Sean Hefty <sean.hefty@intel.com>
5391 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5392 L:      linux-rdma@vger.kernel.org
5393 W:      http://www.openfabrics.org/
5394 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5396 S:      Supported
5397 F:      Documentation/infiniband/
5398 F:      drivers/infiniband/
5399 F:      drivers/staging/rdma/
5400 F:      include/uapi/linux/if_infiniband.h
5401 F:      include/uapi/rdma/
5402 F:      include/rdma/
5403
5404 INOTIFY
5405 M:      John McCutchan <john@johnmccutchan.com>
5406 M:      Robert Love <rlove@rlove.org>
5407 M:      Eric Paris <eparis@parisplace.org>
5408 S:      Maintained
5409 F:      Documentation/filesystems/inotify.txt
5410 F:      fs/notify/inotify/
5411 F:      include/linux/inotify.h
5412 F:      include/uapi/linux/inotify.h
5413
5414 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5415 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5416 L:      linux-input@vger.kernel.org
5417 Q:      http://patchwork.kernel.org/project/linux-input/list/
5418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5419 S:      Maintained
5420 F:      drivers/input/
5421 F:      include/linux/input.h
5422 F:      include/uapi/linux/input.h
5423 F:      include/linux/input/
5424
5425 INPUT MULTITOUCH (MT) PROTOCOL
5426 M:      Henrik Rydberg <rydberg@bitmath.org>
5427 L:      linux-input@vger.kernel.org
5428 S:      Odd fixes
5429 F:      Documentation/input/multi-touch-protocol.txt
5430 F:      drivers/input/input-mt.c
5431 K:      \b(ABS|SYN)_MT_
5432
5433 INTEL ASoC BDW/HSW DRIVERS
5434 M:      Jie Yang <yang.jie@linux.intel.com>
5435 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5436 S:      Supported
5437 F:      sound/soc/intel/common/sst-dsp*
5438 F:      sound/soc/intel/common/sst-firmware.c
5439 F:      sound/soc/intel/boards/broadwell.c
5440 F:      sound/soc/intel/haswell/
5441
5442 INTEL C600 SERIES SAS CONTROLLER DRIVER
5443 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5444 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5445 L:      linux-scsi@vger.kernel.org
5446 T:      git git://git.code.sf.net/p/intel-sas/isci
5447 S:      Supported
5448 F:      drivers/scsi/isci/
5449
5450 INTEL IDLE DRIVER
5451 M:      Len Brown <lenb@kernel.org>
5452 L:      linux-pm@vger.kernel.org
5453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5454 S:      Supported
5455 F:      drivers/idle/intel_idle.c
5456
5457 INTEL PSTATE DRIVER
5458 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5459 L:      linux-pm@vger.kernel.org
5460 S:      Supported
5461 F:      drivers/cpufreq/intel_pstate.c
5462
5463 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5464 M:      Maik Broemme <mbroemme@plusserver.de>
5465 L:      linux-fbdev@vger.kernel.org
5466 S:      Maintained
5467 F:      Documentation/fb/intelfb.txt
5468 F:      drivers/video/fbdev/intelfb/
5469
5470 INTEL 810/815 FRAMEBUFFER DRIVER
5471 M:      Antonino Daplas <adaplas@gmail.com>
5472 L:      linux-fbdev@vger.kernel.org
5473 S:      Maintained
5474 F:      drivers/video/fbdev/i810/
5475
5476 INTEL MENLOW THERMAL DRIVER
5477 M:      Sujith Thomas <sujith.thomas@intel.com>
5478 L:      platform-driver-x86@vger.kernel.org
5479 W:      https://01.org/linux-acpi
5480 S:      Supported
5481 F:      drivers/platform/x86/intel_menlow.c
5482
5483 INTEL IA32 MICROCODE UPDATE SUPPORT
5484 M:      Borislav Petkov <bp@alien8.de>
5485 S:      Maintained
5486 F:      arch/x86/kernel/cpu/microcode/core*
5487 F:      arch/x86/kernel/cpu/microcode/intel*
5488
5489 INTEL I/OAT DMA DRIVER
5490 M:      Dave Jiang <dave.jiang@intel.com>
5491 R:      Dan Williams <dan.j.williams@intel.com>
5492 L:      dmaengine@vger.kernel.org
5493 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5494 S:      Supported
5495 F:      drivers/dma/ioat*
5496
5497 INTEL IOMMU (VT-d)
5498 M:      David Woodhouse <dwmw2@infradead.org>
5499 L:      iommu@lists.linux-foundation.org
5500 T:      git git://git.infradead.org/iommu-2.6.git
5501 S:      Supported
5502 F:      drivers/iommu/intel-iommu.c
5503 F:      include/linux/intel-iommu.h
5504
5505 INTEL IOP-ADMA DMA DRIVER
5506 R:      Dan Williams <dan.j.williams@intel.com>
5507 S:      Odd fixes
5508 F:      drivers/dma/iop-adma.c
5509
5510 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5511 M:      Krzysztof Halasa <khalasa@piap.pl>
5512 S:      Maintained
5513 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5514 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5515 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5516 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5517 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5518 F:      drivers/net/wan/ixp4xx_hss.c
5519
5520 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5521 M:      Deepak Saxena <dsaxena@plexity.net>
5522 S:      Maintained
5523 F:      drivers/char/hw_random/ixp4xx-rng.c
5524
5525 INTEL ETHERNET DRIVERS
5526 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5527 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5528 R:      Shannon Nelson <shannon.nelson@intel.com>
5529 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5530 R:      Don Skidmore <donald.c.skidmore@intel.com>
5531 R:      Matthew Vick <matthew.vick@intel.com>
5532 R:      John Ronciak <john.ronciak@intel.com>
5533 R:      Mitch Williams <mitch.a.williams@intel.com>
5534 L:      intel-wired-lan@lists.osuosl.org
5535 W:      http://www.intel.com/support/feedback.htm
5536 W:      http://e1000.sourceforge.net/
5537 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5540 S:      Supported
5541 F:      Documentation/networking/e100.txt
5542 F:      Documentation/networking/e1000.txt
5543 F:      Documentation/networking/e1000e.txt
5544 F:      Documentation/networking/igb.txt
5545 F:      Documentation/networking/igbvf.txt
5546 F:      Documentation/networking/ixgb.txt
5547 F:      Documentation/networking/ixgbe.txt
5548 F:      Documentation/networking/ixgbevf.txt
5549 F:      Documentation/networking/i40e.txt
5550 F:      Documentation/networking/i40evf.txt
5551 F:      drivers/net/ethernet/intel/
5552 F:      drivers/net/ethernet/intel/*/
5553
5554 INTEL-MID GPIO DRIVER
5555 M:      David Cohen <david.a.cohen@linux.intel.com>
5556 L:      linux-gpio@vger.kernel.org
5557 S:      Maintained
5558 F:      drivers/gpio/gpio-intel-mid.c
5559
5560 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5561 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5562 L:      linux-wireless@vger.kernel.org
5563 S:      Maintained
5564 F:      Documentation/networking/README.ipw2100
5565 F:      Documentation/networking/README.ipw2200
5566 F:      drivers/net/wireless/ipw2x00/
5567
5568 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5569 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5570 M:      Gang Wei <gang.wei@intel.com>
5571 M:      Shane Wang <shane.wang@intel.com>
5572 L:      tboot-devel@lists.sourceforge.net
5573 W:      http://tboot.sourceforge.net
5574 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5575 S:      Supported
5576 F:      Documentation/intel_txt.txt
5577 F:      include/linux/tboot.h
5578 F:      arch/x86/kernel/tboot.c
5579
5580 INTEL WIRELESS WIMAX CONNECTION 2400
5581 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5582 M:      linux-wimax@intel.com
5583 L:      wimax@linuxwimax.org (subscribers-only)
5584 S:      Supported
5585 W:      http://linuxwimax.org
5586 F:      Documentation/wimax/README.i2400m
5587 F:      drivers/net/wimax/i2400m/
5588 F:      include/uapi/linux/wimax/i2400m.h
5589
5590 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5591 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5592 L:      linux-wireless@vger.kernel.org
5593 S:      Supported
5594 F:      drivers/net/wireless/iwlegacy/
5595
5596 INTEL WIRELESS WIFI LINK (iwlwifi)
5597 M:      Johannes Berg <johannes.berg@intel.com>
5598 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5599 M:      Intel Linux Wireless <ilw@linux.intel.com>
5600 L:      linux-wireless@vger.kernel.org
5601 W:      http://intellinuxwireless.org
5602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5603 S:      Supported
5604 F:      drivers/net/wireless/iwlwifi/
5605
5606 INTEL MANAGEMENT ENGINE (mei)
5607 M:      Tomas Winkler <tomas.winkler@intel.com>
5608 L:      linux-kernel@vger.kernel.org
5609 S:      Supported
5610 F:      include/uapi/linux/mei.h
5611 F:      include/linux/mei_cl_bus.h
5612 F:      drivers/misc/mei/*
5613 F:      Documentation/misc-devices/mei/*
5614
5615 INTEL PMC IPC DRIVER
5616 M:      Zha Qipeng<qipeng.zha@intel.com>
5617 L:      platform-driver-x86@vger.kernel.org
5618 S:      Maintained
5619 F:      drivers/platform/x86/intel_pmc_ipc.c
5620 F:      arch/x86/include/asm/intel_pmc_ipc.h
5621
5622 IOC3 ETHERNET DRIVER
5623 M:      Ralf Baechle <ralf@linux-mips.org>
5624 L:      linux-mips@linux-mips.org
5625 S:      Maintained
5626 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5627
5628 IOC3 SERIAL DRIVER
5629 M:      Pat Gefre <pfg@sgi.com>
5630 L:      linux-serial@vger.kernel.org
5631 S:      Maintained
5632 F:      drivers/tty/serial/ioc3_serial.c
5633
5634 IOMMU DRIVERS
5635 M:      Joerg Roedel <joro@8bytes.org>
5636 L:      iommu@lists.linux-foundation.org
5637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5638 S:      Maintained
5639 F:      drivers/iommu/
5640
5641 IP MASQUERADING
5642 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5643 S:      Maintained
5644 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5645
5646 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5647 M:      Francois Romieu <romieu@fr.zoreil.com>
5648 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5649 L:      netdev@vger.kernel.org
5650 S:      Maintained
5651 F:      drivers/net/ethernet/icplus/ipg.*
5652
5653 IPATH DRIVER
5654 M:      Mike Marciniszyn <infinipath@intel.com>
5655 L:      linux-rdma@vger.kernel.org
5656 S:      Maintained
5657 F:      drivers/staging/rdma/ipath/
5658
5659 IPMI SUBSYSTEM
5660 M:      Corey Minyard <minyard@acm.org>
5661 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5662 W:      http://openipmi.sourceforge.net/
5663 S:      Supported
5664 F:      Documentation/IPMI.txt
5665 F:      drivers/char/ipmi/
5666 F:      include/linux/ipmi*
5667 F:      include/uapi/linux/ipmi*
5668
5669 QCOM AUDIO (ASoC) DRIVERS
5670 M:      Patrick Lai <plai@codeaurora.org>
5671 M:      Banajit Goswami <bgoswami@codeaurora.org>
5672 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5673 S:      Supported
5674 F:      sound/soc/qcom/
5675
5676 IPS SCSI RAID DRIVER
5677 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5678 L:      linux-scsi@vger.kernel.org
5679 W:      http://www.adaptec.com/
5680 S:      Maintained
5681 F:      drivers/scsi/ips*
5682
5683 IPVS
5684 M:      Wensong Zhang <wensong@linux-vs.org>
5685 M:      Simon Horman <horms@verge.net.au>
5686 M:      Julian Anastasov <ja@ssi.bg>
5687 L:      netdev@vger.kernel.org
5688 L:      lvs-devel@vger.kernel.org
5689 S:      Maintained
5690 F:      Documentation/networking/ipvs-sysctl.txt
5691 F:      include/net/ip_vs.h
5692 F:      include/uapi/linux/ip_vs.h
5693 F:      net/netfilter/ipvs/
5694
5695 IPWIRELESS DRIVER
5696 M:      Jiri Kosina <jikos@kernel.org>
5697 M:      David Sterba <dsterba@suse.com>
5698 S:      Odd Fixes
5699 F:      drivers/tty/ipwireless/
5700
5701 IPX NETWORK LAYER
5702 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5703 L:      netdev@vger.kernel.org
5704 S:      Maintained
5705 F:      include/net/ipx.h
5706 F:      include/uapi/linux/ipx.h
5707 F:      net/ipx/
5708
5709 IRDA SUBSYSTEM
5710 M:      Samuel Ortiz <samuel@sortiz.org>
5711 L:      irda-users@lists.sourceforge.net (subscribers-only)
5712 L:      netdev@vger.kernel.org
5713 W:      http://irda.sourceforge.net/
5714 S:      Maintained
5715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5716 F:      Documentation/networking/irda.txt
5717 F:      drivers/net/irda/
5718 F:      include/net/irda/
5719 F:      net/irda/
5720
5721 IRQ SUBSYSTEM
5722 M:      Thomas Gleixner <tglx@linutronix.de>
5723 L:      linux-kernel@vger.kernel.org
5724 S:      Maintained
5725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5726 F:      kernel/irq/
5727
5728 IRQCHIP DRIVERS
5729 M:      Thomas Gleixner <tglx@linutronix.de>
5730 M:      Jason Cooper <jason@lakedaemon.net>
5731 M:      Marc Zyngier <marc.zyngier@arm.com>
5732 L:      linux-kernel@vger.kernel.org
5733 S:      Maintained
5734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5735 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5736 F:      Documentation/devicetree/bindings/interrupt-controller/
5737 F:      drivers/irqchip/
5738
5739 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5740 M:      Jiang Liu <jiang.liu@linux.intel.com>
5741 M:      Marc Zyngier <marc.zyngier@arm.com>
5742 S:      Maintained
5743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5744 F:      Documentation/IRQ-domain.txt
5745 F:      include/linux/irqdomain.h
5746 F:      kernel/irq/irqdomain.c
5747 F:      kernel/irq/msi.c
5748
5749 ISAPNP
5750 M:      Jaroslav Kysela <perex@perex.cz>
5751 S:      Maintained
5752 F:      Documentation/isapnp.txt
5753 F:      drivers/pnp/isapnp/
5754 F:      include/linux/isapnp.h
5755
5756 ISA RADIO MODULE
5757 M:      Hans Verkuil <hverkuil@xs4all.nl>
5758 L:      linux-media@vger.kernel.org
5759 T:      git git://linuxtv.org/media_tree.git
5760 W:      http://linuxtv.org
5761 S:      Maintained
5762 F:      drivers/media/radio/radio-isa*
5763
5764 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5765 M:      Peter Jones <pjones@redhat.com>
5766 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5767 S:      Maintained
5768 F:      drivers/firmware/iscsi_ibft*
5769
5770 ISCSI
5771 M:      Mike Christie <michaelc@cs.wisc.edu>
5772 L:      open-iscsi@googlegroups.com
5773 W:      www.open-iscsi.org
5774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5775 S:      Maintained
5776 F:      drivers/scsi/*iscsi*
5777 F:      include/scsi/*iscsi*
5778
5779 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5780 M:      Or Gerlitz <ogerlitz@mellanox.com>
5781 M:      Sagi Grimberg <sagig@mellanox.com>
5782 M:      Roi Dayan <roid@mellanox.com>
5783 L:      linux-rdma@vger.kernel.org
5784 S:      Supported
5785 W:      http://www.openfabrics.org
5786 W:      www.open-iscsi.org
5787 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5788 F:      drivers/infiniband/ulp/iser/
5789
5790 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5791 M:      Sagi Grimberg <sagig@mellanox.com>
5792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5793 L:      linux-rdma@vger.kernel.org
5794 L:      target-devel@vger.kernel.org
5795 S:      Supported
5796 W:      http://www.linux-iscsi.org
5797 F:      drivers/infiniband/ulp/isert
5798
5799 ISDN SUBSYSTEM
5800 M:      Karsten Keil <isdn@linux-pingi.de>
5801 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5802 L:      netdev@vger.kernel.org
5803 W:      http://www.isdn4linux.de
5804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5805 S:      Maintained
5806 F:      Documentation/isdn/
5807 F:      drivers/isdn/
5808 F:      include/linux/isdn.h
5809 F:      include/linux/isdn/
5810 F:      include/uapi/linux/isdn.h
5811 F:      include/uapi/linux/isdn/
5812
5813 ISDN SUBSYSTEM (Eicon active card driver)
5814 M:      Armin Schindler <mac@melware.de>
5815 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5816 W:      http://www.melware.de
5817 S:      Maintained
5818 F:      drivers/isdn/hardware/eicon/
5819
5820 IT87 HARDWARE MONITORING DRIVER
5821 M:      Jean Delvare <jdelvare@suse.com>
5822 L:      lm-sensors@lm-sensors.org
5823 S:      Maintained
5824 F:      Documentation/hwmon/it87
5825 F:      drivers/hwmon/it87.c
5826
5827 IT913X MEDIA DRIVER
5828 M:      Antti Palosaari <crope@iki.fi>
5829 L:      linux-media@vger.kernel.org
5830 W:      http://linuxtv.org/
5831 W:      http://palosaari.fi/linux/
5832 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5833 T:      git git://linuxtv.org/anttip/media_tree.git
5834 S:      Maintained
5835 F:      drivers/media/tuners/it913x*
5836
5837 IVTV VIDEO4LINUX DRIVER
5838 M:      Andy Walls <awalls@md.metrocast.net>
5839 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5840 L:      linux-media@vger.kernel.org
5841 T:      git git://linuxtv.org/media_tree.git
5842 W:      http://www.ivtvdriver.org
5843 S:      Maintained
5844 F:      Documentation/video4linux/*.ivtv
5845 F:      drivers/media/pci/ivtv/
5846 F:      include/uapi/linux/ivtv*
5847
5848 IX2505V MEDIA DRIVER
5849 M:      Malcolm Priestley <tvboxspy@gmail.com>
5850 L:      linux-media@vger.kernel.org
5851 W:      http://linuxtv.org/
5852 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5853 S:      Maintained
5854 F:      drivers/media/dvb-frontends/ix2505v*
5855
5856 JC42.4 TEMPERATURE SENSOR DRIVER
5857 M:      Guenter Roeck <linux@roeck-us.net>
5858 L:      lm-sensors@lm-sensors.org
5859 S:      Maintained
5860 F:      drivers/hwmon/jc42.c
5861 F:      Documentation/hwmon/jc42
5862
5863 JFS FILESYSTEM
5864 M:      Dave Kleikamp <shaggy@kernel.org>
5865 L:      jfs-discussion@lists.sourceforge.net
5866 W:      http://jfs.sourceforge.net/
5867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5868 S:      Maintained
5869 F:      Documentation/filesystems/jfs.txt
5870 F:      fs/jfs/
5871
5872 JME NETWORK DRIVER
5873 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5874 L:      netdev@vger.kernel.org
5875 S:      Maintained
5876 F:      drivers/net/ethernet/jme.*
5877
5878 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5879 M:      David Woodhouse <dwmw2@infradead.org>
5880 L:      linux-mtd@lists.infradead.org
5881 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5882 S:      Maintained
5883 F:      fs/jffs2/
5884 F:      include/uapi/linux/jffs2.h
5885
5886 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5887 M:      "Theodore Ts'o" <tytso@mit.edu>
5888 M:      Jan Kara <jack@suse.com>
5889 L:      linux-ext4@vger.kernel.org
5890 S:      Maintained
5891 F:      fs/jbd2/
5892 F:      include/linux/jbd2.h
5893
5894 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5895 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5896 L:      linux-media@vger.kernel.org
5897 S:      Maintained
5898 F:      drivers/media/platform/rcar_jpu.c
5899
5900 JSM Neo PCI based serial card
5901 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5902 L:      linux-serial@vger.kernel.org
5903 S:      Maintained
5904 F:      drivers/tty/serial/jsm/
5905
5906 K10TEMP HARDWARE MONITORING DRIVER
5907 M:      Clemens Ladisch <clemens@ladisch.de>
5908 L:      lm-sensors@lm-sensors.org
5909 S:      Maintained
5910 F:      Documentation/hwmon/k10temp
5911 F:      drivers/hwmon/k10temp.c
5912
5913 K8TEMP HARDWARE MONITORING DRIVER
5914 M:      Rudolf Marek <r.marek@assembler.cz>
5915 L:      lm-sensors@lm-sensors.org
5916 S:      Maintained
5917 F:      Documentation/hwmon/k8temp
5918 F:      drivers/hwmon/k8temp.c
5919
5920 KCONFIG
5921 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5922 L:      linux-kbuild@vger.kernel.org
5923 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5924 S:      Maintained
5925 F:      Documentation/kbuild/kconfig-language.txt
5926 F:      scripts/kconfig/
5927
5928 KDUMP
5929 M:      Vivek Goyal <vgoyal@redhat.com>
5930 M:      Haren Myneni <hbabu@us.ibm.com>
5931 L:      kexec@lists.infradead.org
5932 W:      http://lse.sourceforge.net/kdump/
5933 S:      Maintained
5934 F:      Documentation/kdump/
5935
5936 KEENE FM RADIO TRANSMITTER DRIVER
5937 M:      Hans Verkuil <hverkuil@xs4all.nl>
5938 L:      linux-media@vger.kernel.org
5939 T:      git git://linuxtv.org/media_tree.git
5940 W:      http://linuxtv.org
5941 S:      Maintained
5942 F:      drivers/media/radio/radio-keene*
5943
5944 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5945 M:      Ian Kent <raven@themaw.net>
5946 L:      autofs@vger.kernel.org
5947 S:      Maintained
5948 F:      fs/autofs4/
5949
5950 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5951 M:      Michal Marek <mmarek@suse.com>
5952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5954 L:      linux-kbuild@vger.kernel.org
5955 S:      Maintained
5956 F:      Documentation/kbuild/
5957 F:      Makefile
5958 F:      scripts/Makefile.*
5959 F:      scripts/basic/
5960 F:      scripts/mk*
5961 F:      scripts/package/
5962
5963 KERNEL JANITORS
5964 L:      kernel-janitors@vger.kernel.org
5965 W:      http://kernelnewbies.org/KernelJanitors
5966 S:      Odd Fixes
5967
5968 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5969 M:      "J. Bruce Fields" <bfields@fieldses.org>
5970 M:      Jeff Layton <jlayton@poochiereds.net>
5971 L:      linux-nfs@vger.kernel.org
5972 W:      http://nfs.sourceforge.net/
5973 S:      Supported
5974 F:      fs/nfsd/
5975 F:      include/uapi/linux/nfsd/
5976 F:      fs/lockd/
5977 F:      fs/nfs_common/
5978 F:      net/sunrpc/
5979 F:      include/linux/lockd/
5980 F:      include/linux/sunrpc/
5981 F:      include/uapi/linux/sunrpc/
5982
5983 KERNEL SELFTEST FRAMEWORK
5984 M:      Shuah Khan <shuahkh@osg.samsung.com>
5985 L:      linux-api@vger.kernel.org
5986 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5987 S:      Maintained
5988 F:      tools/testing/selftests
5989
5990 KERNEL VIRTUAL MACHINE (KVM)
5991 M:      Gleb Natapov <gleb@kernel.org>
5992 M:      Paolo Bonzini <pbonzini@redhat.com>
5993 L:      kvm@vger.kernel.org
5994 W:      http://www.linux-kvm.org
5995 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5996 S:      Supported
5997 F:      Documentation/*/kvm*.txt
5998 F:      Documentation/virtual/kvm/
5999 F:      arch/*/kvm/
6000 F:      arch/x86/kernel/kvm.c
6001 F:      arch/x86/kernel/kvmclock.c
6002 F:      arch/*/include/asm/kvm*
6003 F:      include/linux/kvm*
6004 F:      include/uapi/linux/kvm*
6005 F:      virt/kvm/
6006
6007 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6008 M:      Joerg Roedel <joro@8bytes.org>
6009 L:      kvm@vger.kernel.org
6010 W:      http://www.linux-kvm.org/
6011 S:      Maintained
6012 F:      arch/x86/include/asm/svm.h
6013 F:      arch/x86/kvm/svm.c
6014
6015 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6016 M:      Alexander Graf <agraf@suse.com>
6017 L:      kvm-ppc@vger.kernel.org
6018 W:      http://www.linux-kvm.org/
6019 T:      git git://github.com/agraf/linux-2.6.git
6020 S:      Supported
6021 F:      arch/powerpc/include/asm/kvm*
6022 F:      arch/powerpc/kvm/
6023
6024 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6025 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6026 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6027 L:      linux-s390@vger.kernel.org
6028 W:      http://www.ibm.com/developerworks/linux/linux390/
6029 S:      Supported
6030 F:      Documentation/s390/kvm.txt
6031 F:      arch/s390/include/asm/kvm*
6032 F:      arch/s390/kvm/
6033
6034 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6035 M:      Christoffer Dall <christoffer.dall@linaro.org>
6036 M:      Marc Zyngier <marc.zyngier@arm.com>
6037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6038 L:      kvmarm@lists.cs.columbia.edu
6039 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6040 S:      Supported
6041 F:      arch/arm/include/uapi/asm/kvm*
6042 F:      arch/arm/include/asm/kvm*
6043 F:      arch/arm/kvm/
6044 F:      virt/kvm/arm/
6045 F:      include/kvm/arm_*
6046
6047 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6048 M:      Christoffer Dall <christoffer.dall@linaro.org>
6049 M:      Marc Zyngier <marc.zyngier@arm.com>
6050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6051 L:      kvmarm@lists.cs.columbia.edu
6052 S:      Maintained
6053 F:      arch/arm64/include/uapi/asm/kvm*
6054 F:      arch/arm64/include/asm/kvm*
6055 F:      arch/arm64/kvm/
6056
6057 KEXEC
6058 M:      Eric Biederman <ebiederm@xmission.com>
6059 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6060 L:      kexec@lists.infradead.org
6061 S:      Maintained
6062 F:      include/linux/kexec.h
6063 F:      include/uapi/linux/kexec.h
6064 F:      kernel/kexec.c
6065
6066 KEYS/KEYRINGS:
6067 M:      David Howells <dhowells@redhat.com>
6068 L:      keyrings@vger.kernel.org
6069 S:      Maintained
6070 F:      Documentation/security/keys.txt
6071 F:      include/linux/key.h
6072 F:      include/linux/key-type.h
6073 F:      include/keys/
6074 F:      security/keys/
6075
6076 KEYS-TRUSTED
6077 M:      David Safford <safford@us.ibm.com>
6078 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6079 L:      linux-security-module@vger.kernel.org
6080 L:      keyrings@vger.kernel.org
6081 S:      Supported
6082 F:      Documentation/security/keys-trusted-encrypted.txt
6083 F:      include/keys/trusted-type.h
6084 F:      security/keys/trusted.c
6085 F:      security/keys/trusted.h
6086
6087 KEYS-ENCRYPTED
6088 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6089 M:      David Safford <safford@us.ibm.com>
6090 L:      linux-security-module@vger.kernel.org
6091 L:      keyrings@vger.kernel.org
6092 S:      Supported
6093 F:      Documentation/security/keys-trusted-encrypted.txt
6094 F:      include/keys/encrypted-type.h
6095 F:      security/keys/encrypted-keys/
6096
6097 KGDB / KDB /debug_core
6098 M:      Jason Wessel <jason.wessel@windriver.com>
6099 W:      http://kgdb.wiki.kernel.org/
6100 L:      kgdb-bugreport@lists.sourceforge.net
6101 S:      Maintained
6102 F:      Documentation/DocBook/kgdb.tmpl
6103 F:      drivers/misc/kgdbts.c
6104 F:      drivers/tty/serial/kgdboc.c
6105 F:      include/linux/kdb.h
6106 F:      include/linux/kgdb.h
6107 F:      kernel/debug/
6108
6109 KMEMCHECK
6110 M:      Vegard Nossum <vegardno@ifi.uio.no>
6111 M:      Pekka Enberg <penberg@kernel.org>
6112 S:      Maintained
6113 F:      Documentation/kmemcheck.txt
6114 F:      arch/x86/include/asm/kmemcheck.h
6115 F:      arch/x86/mm/kmemcheck/
6116 F:      include/linux/kmemcheck.h
6117 F:      mm/kmemcheck.c
6118
6119 KMEMLEAK
6120 M:      Catalin Marinas <catalin.marinas@arm.com>
6121 S:      Maintained
6122 F:      Documentation/kmemleak.txt
6123 F:      include/linux/kmemleak.h
6124 F:      mm/kmemleak.c
6125 F:      mm/kmemleak-test.c
6126
6127 KPROBES
6128 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6129 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6130 M:      "David S. Miller" <davem@davemloft.net>
6131 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6132 S:      Maintained
6133 F:      Documentation/kprobes.txt
6134 F:      include/linux/kprobes.h
6135 F:      kernel/kprobes.c
6136
6137 KS0108 LCD CONTROLLER DRIVER
6138 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6139 W:      http://miguelojeda.es/auxdisplay.htm
6140 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6141 S:      Maintained
6142 F:      Documentation/auxdisplay/ks0108
6143 F:      drivers/auxdisplay/ks0108.c
6144 F:      include/linux/ks0108.h
6145
6146 LAPB module
6147 L:      linux-x25@vger.kernel.org
6148 S:      Orphan
6149 F:      Documentation/networking/lapb-module.txt
6150 F:      include/*/lapb.h
6151 F:      net/lapb/
6152
6153 LASI 53c700 driver for PARISC
6154 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6155 L:      linux-scsi@vger.kernel.org
6156 S:      Maintained
6157 F:      Documentation/scsi/53c700.txt
6158 F:      drivers/scsi/53c700*
6159
6160 LED SUBSYSTEM
6161 M:      Richard Purdie <rpurdie@rpsys.net>
6162 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6163 L:      linux-leds@vger.kernel.org
6164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6165 S:      Maintained
6166 F:      drivers/leds/
6167 F:      include/linux/leds.h
6168
6169 LEGACY EEPROM DRIVER
6170 M:      Jean Delvare <jdelvare@suse.com>
6171 S:      Maintained
6172 F:      Documentation/misc-devices/eeprom
6173 F:      drivers/misc/eeprom/eeprom.c
6174
6175 LEGO USB Tower driver
6176 M:      Juergen Stuber <starblue@users.sourceforge.net>
6177 L:      legousb-devel@lists.sourceforge.net
6178 W:      http://legousb.sourceforge.net/
6179 S:      Maintained
6180 F:      drivers/usb/misc/legousbtower.c
6181
6182 LG2160 MEDIA DRIVER
6183 M:      Michael Krufky <mkrufky@linuxtv.org>
6184 L:      linux-media@vger.kernel.org
6185 W:      http://linuxtv.org/
6186 W:      http://github.com/mkrufky
6187 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6188 T:      git git://linuxtv.org/mkrufky/tuners.git
6189 S:      Maintained
6190 F:      drivers/media/dvb-frontends/lg2160.*
6191
6192 LGDT3305 MEDIA DRIVER
6193 M:      Michael Krufky <mkrufky@linuxtv.org>
6194 L:      linux-media@vger.kernel.org
6195 W:      http://linuxtv.org/
6196 W:      http://github.com/mkrufky
6197 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6198 T:      git git://linuxtv.org/mkrufky/tuners.git
6199 S:      Maintained
6200 F:      drivers/media/dvb-frontends/lgdt3305.*
6201
6202 LGUEST
6203 M:      Rusty Russell <rusty@rustcorp.com.au>
6204 L:      lguest@lists.ozlabs.org
6205 W:      http://lguest.ozlabs.org/
6206 S:      Odd Fixes
6207 F:      arch/x86/include/asm/lguest*.h
6208 F:      arch/x86/lguest/
6209 F:      drivers/lguest/
6210 F:      include/linux/lguest*.h
6211 F:      tools/lguest/
6212
6213 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6214 M:      Tejun Heo <tj@kernel.org>
6215 L:      linux-ide@vger.kernel.org
6216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6217 S:      Maintained
6218 F:      drivers/ata/
6219 F:      include/linux/ata.h
6220 F:      include/linux/libata.h
6221
6222 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6223 M:      Viresh Kumar <vireshk@kernel.org>
6224 L:      linux-ide@vger.kernel.org
6225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6226 S:      Maintained
6227 F:      include/linux/pata_arasan_cf_data.h
6228 F:      drivers/ata/pata_arasan_cf.c
6229
6230 LIBATA PATA DRIVERS
6231 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6232 M:      Tejun Heo <tj@kernel.org>
6233 L:      linux-ide@vger.kernel.org
6234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6235 S:      Maintained
6236 F:      drivers/ata/pata_*.c
6237 F:      drivers/ata/ata_generic.c
6238
6239 LIBATA SATA AHCI PLATFORM devices support
6240 M:      Hans de Goede <hdegoede@redhat.com>
6241 M:      Tejun Heo <tj@kernel.org>
6242 L:      linux-ide@vger.kernel.org
6243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6244 S:      Maintained
6245 F:      drivers/ata/ahci_platform.c
6246 F:      drivers/ata/libahci_platform.c
6247 F:      include/linux/ahci_platform.h
6248
6249 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6250 M:      Mikael Pettersson <mikpelinux@gmail.com>
6251 L:      linux-ide@vger.kernel.org
6252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6253 S:      Maintained
6254 F:      drivers/ata/sata_promise.*
6255
6256 LIBLOCKDEP
6257 M:      Sasha Levin <sasha.levin@oracle.com>
6258 S:      Maintained
6259 F:      tools/lib/lockdep/
6260
6261 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6262 M:      Dan Williams <dan.j.williams@intel.com>
6263 L:      linux-nvdimm@lists.01.org
6264 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6265 S:      Supported
6266 F:      drivers/nvdimm/*
6267 F:      include/linux/nd.h
6268 F:      include/linux/libnvdimm.h
6269 F:      include/uapi/linux/ndctl.h
6270
6271 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6272 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6273 L:      linux-nvdimm@lists.01.org
6274 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6275 S:      Supported
6276 F:      drivers/nvdimm/blk.c
6277 F:      drivers/nvdimm/region_devs.c
6278 F:      drivers/acpi/nfit*
6279
6280 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6281 M:      Vishal Verma <vishal.l.verma@intel.com>
6282 L:      linux-nvdimm@lists.01.org
6283 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6284 S:      Supported
6285 F:      drivers/nvdimm/btt*
6286
6287 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6288 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6289 L:      linux-nvdimm@lists.01.org
6290 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6291 S:      Supported
6292 F:      drivers/nvdimm/pmem.c
6293 F:      include/linux/pmem.h
6294 F:      arch/*/include/asm/pmem.h
6295
6296 LINUX FOR IBM pSERIES (RS/6000)
6297 M:      Paul Mackerras <paulus@au.ibm.com>
6298 W:      http://www.ibm.com/linux/ltc/projects/ppc
6299 S:      Supported
6300 F:      arch/powerpc/boot/rs6000.h
6301
6302 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6303 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6304 M:      Paul Mackerras <paulus@samba.org>
6305 M:      Michael Ellerman <mpe@ellerman.id.au>
6306 W:      http://www.penguinppc.org/
6307 L:      linuxppc-dev@lists.ozlabs.org
6308 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6310 S:      Supported
6311 F:      Documentation/powerpc/
6312 F:      arch/powerpc/
6313
6314 LINUX FOR POWER MACINTOSH
6315 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6316 W:      http://www.penguinppc.org/
6317 L:      linuxppc-dev@lists.ozlabs.org
6318 S:      Maintained
6319 F:      arch/powerpc/platforms/powermac/
6320 F:      drivers/macintosh/
6321
6322 LINUX FOR POWERPC EMBEDDED MPC5XXX
6323 M:      Anatolij Gustschin <agust@denx.de>
6324 L:      linuxppc-dev@lists.ozlabs.org
6325 T:      git git://git.denx.de/linux-denx-agust.git
6326 S:      Maintained
6327 F:      arch/powerpc/platforms/512x/
6328 F:      arch/powerpc/platforms/52xx/
6329
6330 LINUX FOR POWERPC EMBEDDED PPC4XX
6331 M:      Alistair Popple <alistair@popple.id.au>
6332 M:      Matt Porter <mporter@kernel.crashing.org>
6333 W:      http://www.penguinppc.org/
6334 L:      linuxppc-dev@lists.ozlabs.org
6335 S:      Maintained
6336 F:      arch/powerpc/platforms/40x/
6337 F:      arch/powerpc/platforms/44x/
6338
6339 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6340 L:      linuxppc-dev@lists.ozlabs.org
6341 S:      Orphan
6342 F:      arch/powerpc/*/*virtex*
6343 F:      arch/powerpc/*/*/*virtex*
6344
6345 LINUX FOR POWERPC EMBEDDED PPC8XX
6346 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6347 W:      http://www.penguinppc.org/
6348 L:      linuxppc-dev@lists.ozlabs.org
6349 S:      Maintained
6350 F:      arch/powerpc/platforms/8xx/
6351
6352 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6353 M:      Scott Wood <scottwood@freescale.com>
6354 M:      Kumar Gala <galak@kernel.crashing.org>
6355 W:      http://www.penguinppc.org/
6356 L:      linuxppc-dev@lists.ozlabs.org
6357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6358 S:      Maintained
6359 F:      arch/powerpc/platforms/83xx/
6360 F:      arch/powerpc/platforms/85xx/
6361
6362 LINUX FOR POWERPC PA SEMI PWRFICIENT
6363 M:      Olof Johansson <olof@lixom.net>
6364 L:      linuxppc-dev@lists.ozlabs.org
6365 S:      Maintained
6366 F:      arch/powerpc/platforms/pasemi/
6367 F:      drivers/*/*pasemi*
6368 F:      drivers/*/*/*pasemi*
6369
6370 LINUX SECURITY MODULE (LSM) FRAMEWORK
6371 M:      Chris Wright <chrisw@sous-sol.org>
6372 L:      linux-security-module@vger.kernel.org
6373 S:      Supported
6374
6375 LIS3LV02D ACCELEROMETER DRIVER
6376 M:      Eric Piel <eric.piel@tremplin-utc.net>
6377 S:      Maintained
6378 F:      Documentation/misc-devices/lis3lv02d
6379 F:      drivers/misc/lis3lv02d/
6380 F:      drivers/platform/x86/hp_accel.c
6381
6382 LIVE PATCHING
6383 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6384 M:      Seth Jennings <sjenning@redhat.com>
6385 M:      Jiri Kosina <jikos@kernel.org>
6386 M:      Vojtech Pavlik <vojtech@suse.com>
6387 S:      Maintained
6388 F:      kernel/livepatch/
6389 F:      include/linux/livepatch.h
6390 F:      arch/x86/include/asm/livepatch.h
6391 F:      arch/x86/kernel/livepatch.c
6392 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6393 F:      samples/livepatch/
6394 L:      live-patching@vger.kernel.org
6395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6396
6397 LLC (802.2)
6398 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6399 S:      Maintained
6400 F:      include/linux/llc.h
6401 F:      include/uapi/linux/llc.h
6402 F:      include/net/llc*
6403 F:      net/llc/
6404
6405 LM73 HARDWARE MONITOR DRIVER
6406 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6407 L:      lm-sensors@lm-sensors.org
6408 S:      Maintained
6409 F:      drivers/hwmon/lm73.c
6410
6411 LM78 HARDWARE MONITOR DRIVER
6412 M:      Jean Delvare <jdelvare@suse.com>
6413 L:      lm-sensors@lm-sensors.org
6414 S:      Maintained
6415 F:      Documentation/hwmon/lm78
6416 F:      drivers/hwmon/lm78.c
6417
6418 LM83 HARDWARE MONITOR DRIVER
6419 M:      Jean Delvare <jdelvare@suse.com>
6420 L:      lm-sensors@lm-sensors.org
6421 S:      Maintained
6422 F:      Documentation/hwmon/lm83
6423 F:      drivers/hwmon/lm83.c
6424
6425 LM90 HARDWARE MONITOR DRIVER
6426 M:      Jean Delvare <jdelvare@suse.com>
6427 L:      lm-sensors@lm-sensors.org
6428 S:      Maintained
6429 F:      Documentation/hwmon/lm90
6430 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6431 F:      drivers/hwmon/lm90.c
6432
6433 LM95234 HARDWARE MONITOR DRIVER
6434 M:      Guenter Roeck <linux@roeck-us.net>
6435 L:      lm-sensors@lm-sensors.org
6436 S:      Maintained
6437 F:      Documentation/hwmon/lm95234
6438 F:      drivers/hwmon/lm95234.c
6439
6440 LME2510 MEDIA DRIVER
6441 M:      Malcolm Priestley <tvboxspy@gmail.com>
6442 L:      linux-media@vger.kernel.org
6443 W:      http://linuxtv.org/
6444 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6445 S:      Maintained
6446 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6447
6448 LOCKDEP AND LOCKSTAT
6449 M:      Peter Zijlstra <peterz@infradead.org>
6450 M:      Ingo Molnar <mingo@redhat.com>
6451 L:      linux-kernel@vger.kernel.org
6452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6453 S:      Maintained
6454 F:      Documentation/locking/lockdep*.txt
6455 F:      Documentation/locking/lockstat.txt
6456 F:      include/linux/lockdep.h
6457 F:      kernel/locking/
6458
6459 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6460 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6461 L:      linux-ntfs-dev@lists.sourceforge.net
6462 W:      http://www.linux-ntfs.org/content/view/19/37/
6463 S:      Maintained
6464 F:      Documentation/ldm.txt
6465 F:      block/partitions/ldm.*
6466
6467 LogFS
6468 M:      Joern Engel <joern@logfs.org>
6469 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6470 L:      logfs@logfs.org
6471 W:      logfs.org
6472 S:      Maintained
6473 F:      fs/logfs/
6474
6475 LPC32XX MACHINE SUPPORT
6476 M:      Roland Stigge <stigge@antcom.de>
6477 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6478 S:      Maintained
6479 F:      arch/arm/mach-lpc32xx/
6480
6481 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6482 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6483 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6484 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6485 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6486 L:      MPT-FusionLinux.pdl@avagotech.com
6487 L:      linux-scsi@vger.kernel.org
6488 W:      http://www.lsilogic.com/support
6489 S:      Supported
6490 F:      drivers/message/fusion/
6491 F:      drivers/scsi/mpt2sas/
6492 F:      drivers/scsi/mpt3sas/
6493
6494 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6495 M:      Matthew Wilcox <matthew@wil.cx>
6496 L:      linux-scsi@vger.kernel.org
6497 S:      Maintained
6498 F:      drivers/scsi/sym53c8xx_2/
6499
6500 LTC4261 HARDWARE MONITOR DRIVER
6501 M:      Guenter Roeck <linux@roeck-us.net>
6502 L:      lm-sensors@lm-sensors.org
6503 S:      Maintained
6504 F:      Documentation/hwmon/ltc4261
6505 F:      drivers/hwmon/ltc4261.c
6506
6507 LTP (Linux Test Project)
6508 M:      Mike Frysinger <vapier@gentoo.org>
6509 M:      Cyril Hrubis <chrubis@suse.cz>
6510 M:      Wanlong Gao <wanlong.gao@gmail.com>
6511 M:      Jan Stancek <jstancek@redhat.com>
6512 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6513 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6514 L:      ltp@lists.linux.it (subscribers-only)
6515 W:      http://linux-test-project.github.io/
6516 T:      git git://github.com/linux-test-project/ltp.git
6517 S:      Maintained
6518
6519 M32R ARCHITECTURE
6520 W:      http://www.linux-m32r.org/
6521 S:      Orphan
6522 F:      arch/m32r/
6523
6524 M68K ARCHITECTURE
6525 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6526 L:      linux-m68k@lists.linux-m68k.org
6527 W:      http://www.linux-m68k.org/
6528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6529 S:      Maintained
6530 F:      arch/m68k/
6531 F:      drivers/zorro/
6532
6533 M68K ON APPLE MACINTOSH
6534 M:      Joshua Thompson <funaho@jurai.org>
6535 W:      http://www.mac.linux-m68k.org/
6536 L:      linux-m68k@lists.linux-m68k.org
6537 S:      Maintained
6538 F:      arch/m68k/mac/
6539
6540 M68K ON HP9000/300
6541 M:      Philip Blundell <philb@gnu.org>
6542 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6543 S:      Maintained
6544 F:      arch/m68k/hp300/
6545
6546 M88DS3103 MEDIA DRIVER
6547 M:      Antti Palosaari <crope@iki.fi>
6548 L:      linux-media@vger.kernel.org
6549 W:      http://linuxtv.org/
6550 W:      http://palosaari.fi/linux/
6551 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6552 T:      git git://linuxtv.org/anttip/media_tree.git
6553 S:      Maintained
6554 F:      drivers/media/dvb-frontends/m88ds3103*
6555
6556 M88RS2000 MEDIA DRIVER
6557 M:      Malcolm Priestley <tvboxspy@gmail.com>
6558 L:      linux-media@vger.kernel.org
6559 W:      http://linuxtv.org/
6560 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6561 S:      Maintained
6562 F:      drivers/media/dvb-frontends/m88rs2000*
6563
6564 MA901 MASTERKIT USB FM RADIO DRIVER
6565 M:      Alexey Klimov <klimov.linux@gmail.com>
6566 L:      linux-media@vger.kernel.org
6567 T:      git git://linuxtv.org/media_tree.git
6568 S:      Maintained
6569 F:      drivers/media/radio/radio-ma901.c
6570
6571 MAC80211
6572 M:      Johannes Berg <johannes@sipsolutions.net>
6573 L:      linux-wireless@vger.kernel.org
6574 W:      http://wireless.kernel.org/
6575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6577 S:      Maintained
6578 F:      Documentation/networking/mac80211-injection.txt
6579 F:      include/net/mac80211.h
6580 F:      net/mac80211/
6581
6582 MACVLAN DRIVER
6583 M:      Patrick McHardy <kaber@trash.net>
6584 L:      netdev@vger.kernel.org
6585 S:      Maintained
6586 F:      drivers/net/macvlan.c
6587 F:      include/linux/if_macvlan.h
6588
6589 MAILBOX API
6590 M:      Jassi Brar <jassisinghbrar@gmail.com>
6591 L:      linux-kernel@vger.kernel.org
6592 S:      Maintained
6593 F:      drivers/mailbox/
6594 F:      include/linux/mailbox_client.h
6595 F:      include/linux/mailbox_controller.h
6596
6597 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6598 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6599 W:      http://www.kernel.org/doc/man-pages
6600 L:      linux-man@vger.kernel.org
6601 S:      Maintained
6602
6603 MARVELL ARMADA DRM SUPPORT
6604 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6605 S:      Maintained
6606 F:      drivers/gpu/drm/armada/
6607
6608 MARVELL 88E6352 DSA support
6609 M:      Guenter Roeck <linux@roeck-us.net>
6610 S:      Maintained
6611 F:      drivers/net/dsa/mv88e6352.c
6612
6613 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6614 M:      Mirko Lindner <mlindner@marvell.com>
6615 M:      Stephen Hemminger <stephen@networkplumber.org>
6616 L:      netdev@vger.kernel.org
6617 S:      Maintained
6618 F:      drivers/net/ethernet/marvell/sk*
6619
6620 MARVELL LIBERTAS WIRELESS DRIVER
6621 L:      libertas-dev@lists.infradead.org
6622 S:      Orphan
6623 F:      drivers/net/wireless/libertas/
6624
6625 MARVELL MV643XX ETHERNET DRIVER
6626 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6627 L:      netdev@vger.kernel.org
6628 S:      Maintained
6629 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6630 F:      include/linux/mv643xx.h
6631
6632 MARVELL MVNETA ETHERNET DRIVER
6633 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6634 L:      netdev@vger.kernel.org
6635 S:      Maintained
6636 F:      drivers/net/ethernet/marvell/mvneta.*
6637
6638 MARVELL MWIFIEX WIRELESS DRIVER
6639 M:      Amitkumar Karwar <akarwar@marvell.com>
6640 M:      Nishant Sarmukadam <nishants@marvell.com>
6641 L:      linux-wireless@vger.kernel.org
6642 S:      Maintained
6643 F:      drivers/net/wireless/mwifiex/
6644
6645 MARVELL MWL8K WIRELESS DRIVER
6646 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6647 L:      linux-wireless@vger.kernel.org
6648 S:      Odd Fixes
6649 F:      drivers/net/wireless/mwl8k.c
6650
6651 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6652 M:      Nicolas Pitre <nico@fluxnic.net>
6653 S:      Odd Fixes
6654 F:      drivers/mmc/host/mvsdio.*
6655
6656 MATROX FRAMEBUFFER DRIVER
6657 L:      linux-fbdev@vger.kernel.org
6658 S:      Orphan
6659 F:      drivers/video/fbdev/matrox/matroxfb_*
6660 F:      include/uapi/linux/matroxfb.h
6661
6662 MAX16065 HARDWARE MONITOR DRIVER
6663 M:      Guenter Roeck <linux@roeck-us.net>
6664 L:      lm-sensors@lm-sensors.org
6665 S:      Maintained
6666 F:      Documentation/hwmon/max16065
6667 F:      drivers/hwmon/max16065.c
6668
6669 MAX20751 HARDWARE MONITOR DRIVER
6670 M:      Guenter Roeck <linux@roeck-us.net>
6671 L:      lm-sensors@lm-sensors.org
6672 S:      Maintained
6673 F:      Documentation/hwmon/max20751
6674 F:      drivers/hwmon/max20751.c
6675
6676 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6677 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6678 L:      lm-sensors@lm-sensors.org
6679 S:      Maintained
6680 F:      Documentation/hwmon/max6650
6681 F:      drivers/hwmon/max6650.c
6682
6683 MAX6697 HARDWARE MONITOR DRIVER
6684 M:      Guenter Roeck <linux@roeck-us.net>
6685 L:      lm-sensors@lm-sensors.org
6686 S:      Maintained
6687 F:      Documentation/hwmon/max6697
6688 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6689 F:      drivers/hwmon/max6697.c
6690 F:      include/linux/platform_data/max6697.h
6691
6692 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6693 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6694 L:      linux-pm@vger.kernel.org
6695 S:      Supported
6696 F:      drivers/power/max14577_charger.c
6697 F:      drivers/power/max77693_charger.c
6698
6699 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6700 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6701 L:      linux-kernel@vger.kernel.org
6702 S:      Supported
6703 F:      drivers/*/*max77802.c
6704 F:      Documentation/devicetree/bindings/*/*max77802.txt
6705 F:      include/dt-bindings/*/*max77802.h
6706
6707 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6708 M:      Chanwoo Choi <cw00.choi@samsung.com>
6709 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6710 L:      linux-kernel@vger.kernel.org
6711 S:      Supported
6712 F:      drivers/*/max14577.c
6713 F:      drivers/*/max77686.c
6714 F:      drivers/*/max77693.c
6715 F:      drivers/extcon/extcon-max14577.c
6716 F:      drivers/extcon/extcon-max77693.c
6717 F:      drivers/rtc/rtc-max77686.c
6718 F:      drivers/clk/clk-max77686.c
6719 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6720 F:      Documentation/devicetree/bindings/*/max77686.txt
6721 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6722 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6723 F:      include/linux/mfd/max14577*.h
6724 F:      include/linux/mfd/max77686*.h
6725 F:      include/linux/mfd/max77693*.h
6726
6727 MAXIRADIO FM RADIO RECEIVER DRIVER
6728 M:      Hans Verkuil <hverkuil@xs4all.nl>
6729 L:      linux-media@vger.kernel.org
6730 T:      git git://linuxtv.org/media_tree.git
6731 W:      http://linuxtv.org
6732 S:      Maintained
6733 F:      drivers/media/radio/radio-maxiradio*
6734
6735 MEDIA DRIVERS FOR RENESAS - VSP1
6736 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6737 L:      linux-media@vger.kernel.org
6738 L:      linux-sh@vger.kernel.org
6739 T:      git git://linuxtv.org/media_tree.git
6740 S:      Supported
6741 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6742 F:      drivers/media/platform/vsp1/
6743
6744 MEDIA DRIVERS FOR ASCOT2E
6745 M:      Sergey Kozlov <serjk@netup.ru>
6746 L:      linux-media@vger.kernel.org
6747 W:      http://linuxtv.org
6748 W:      http://netup.tv/
6749 T:      git git://linuxtv.org/media_tree.git
6750 S:      Supported
6751 F:      drivers/media/dvb-frontends/ascot2e*
6752
6753 MEDIA DRIVERS FOR CXD2841ER
6754 M:      Sergey Kozlov <serjk@netup.ru>
6755 L:      linux-media@vger.kernel.org
6756 W:      http://linuxtv.org/
6757 W:      http://netup.tv/
6758 T:      git git://linuxtv.org/media_tree.git
6759 S:      Supported
6760 F:      drivers/media/dvb-frontends/cxd2841er*
6761
6762 MEDIA DRIVERS FOR HORUS3A
6763 M:      Sergey Kozlov <serjk@netup.ru>
6764 L:      linux-media@vger.kernel.org
6765 W:      http://linuxtv.org/
6766 W:      http://netup.tv/
6767 T:      git git://linuxtv.org/media_tree.git
6768 S:      Supported
6769 F:      drivers/media/dvb-frontends/horus3a*
6770
6771 MEDIA DRIVERS FOR LNBH25
6772 M:      Sergey Kozlov <serjk@netup.ru>
6773 L:      linux-media@vger.kernel.org
6774 W:      http://linuxtv.org/
6775 W:      http://netup.tv/
6776 T:      git git://linuxtv.org/media_tree.git
6777 S:      Supported
6778 F:      drivers/media/dvb-frontends/lnbh25*
6779
6780 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6781 M:      Sergey Kozlov <serjk@netup.ru>
6782 L:      linux-media@vger.kernel.org
6783 W:      http://linuxtv.org/
6784 W:      http://netup.tv/
6785 T:      git git://linuxtv.org/media_tree.git
6786 S:      Supported
6787 F:      drivers/media/pci/netup_unidvb/*
6788
6789 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6790 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6791 P:      LinuxTV.org Project
6792 L:      linux-media@vger.kernel.org
6793 W:      http://linuxtv.org
6794 Q:      http://patchwork.kernel.org/project/linux-media/list/
6795 T:      git git://linuxtv.org/media_tree.git
6796 S:      Maintained
6797 F:      Documentation/dvb/
6798 F:      Documentation/video4linux/
6799 F:      Documentation/DocBook/media/
6800 F:      drivers/media/
6801 F:      drivers/staging/media/
6802 F:      include/media/
6803 F:      include/uapi/linux/dvb/
6804 F:      include/uapi/linux/videodev2.h
6805 F:      include/uapi/linux/media.h
6806 F:      include/uapi/linux/v4l2-*
6807 F:      include/uapi/linux/meye.h
6808 F:      include/uapi/linux/ivtv*
6809 F:      include/uapi/linux/uvcvideo.h
6810
6811 MEDIATEK MT7601U WIRELESS LAN DRIVER
6812 M:      Jakub Kicinski <kubakici@wp.pl>
6813 L:      linux-wireless@vger.kernel.org
6814 S:      Maintained
6815 F:      drivers/net/wireless/mediatek/mt7601u/
6816
6817 MEGARAID SCSI/SAS DRIVERS
6818 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6819 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6820 M:      Uday Lingala <uday.lingala@avagotech.com>
6821 L:      megaraidlinux.pdl@avagotech.com
6822 L:      linux-scsi@vger.kernel.org
6823 W:      http://www.lsi.com
6824 S:      Maintained
6825 F:      Documentation/scsi/megaraid.txt
6826 F:      drivers/scsi/megaraid.*
6827 F:      drivers/scsi/megaraid/
6828
6829 MELLANOX ETHERNET DRIVER (mlx4_en)
6830 M:      Amir Vadai <amirv@mellanox.com>
6831 L:      netdev@vger.kernel.org
6832 S:      Supported
6833 W:      http://www.mellanox.com
6834 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6835 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6836
6837 MELLANOX ETHERNET SWITCH DRIVERS
6838 M:      Jiri Pirko <jiri@mellanox.com>
6839 M:      Ido Schimmel <idosch@mellanox.com>
6840 L:      netdev@vger.kernel.org
6841 S:      Supported
6842 W:      http://www.mellanox.com
6843 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6844 F:      drivers/net/ethernet/mellanox/mlxsw/
6845
6846 MEMBARRIER SUPPORT
6847 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6848 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6849 L:      linux-kernel@vger.kernel.org
6850 S:      Supported
6851 F:      kernel/membarrier.c
6852 F:      include/uapi/linux/membarrier.h
6853
6854 MEMORY MANAGEMENT
6855 L:      linux-mm@kvack.org
6856 W:      http://www.linux-mm.org
6857 S:      Maintained
6858 F:      include/linux/mm.h
6859 F:      include/linux/gfp.h
6860 F:      include/linux/mmzone.h
6861 F:      include/linux/memory_hotplug.h
6862 F:      include/linux/vmalloc.h
6863 F:      mm/
6864
6865 MEMORY TECHNOLOGY DEVICES (MTD)
6866 M:      David Woodhouse <dwmw2@infradead.org>
6867 M:      Brian Norris <computersforpeace@gmail.com>
6868 L:      linux-mtd@lists.infradead.org
6869 W:      http://www.linux-mtd.infradead.org/
6870 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6871 T:      git git://git.infradead.org/linux-mtd.git
6872 T:      git git://git.infradead.org/l2-mtd.git
6873 S:      Maintained
6874 F:      drivers/mtd/
6875 F:      include/linux/mtd/
6876 F:      include/uapi/mtd/
6877
6878 MEN A21 WATCHDOG DRIVER
6879 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6880 L:      linux-watchdog@vger.kernel.org
6881 S:      Maintained
6882 F:      drivers/watchdog/mena21_wdt.c
6883
6884 MEN CHAMELEON BUS (mcb)
6885 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6886 S:      Maintained
6887 F:      drivers/mcb/
6888 F:      include/linux/mcb.h
6889 F:      Documentation/men-chameleon-bus.txt
6890
6891 MEN F21BMC (Board Management Controller)
6892 M:      Andreas Werner <andreas.werner@men.de>
6893 S:      Supported
6894 F:      drivers/mfd/menf21bmc.c
6895 F:      drivers/watchdog/menf21bmc_wdt.c
6896 F:      drivers/leds/leds-menf21bmc.c
6897 F:      drivers/hwmon/menf21bmc_hwmon.c
6898 F:      Documentation/hwmon/menf21bmc
6899
6900 METAG ARCHITECTURE
6901 M:      James Hogan <james.hogan@imgtec.com>
6902 L:      linux-metag@vger.kernel.org
6903 S:      Supported
6904 F:      arch/metag/
6905 F:      Documentation/metag/
6906 F:      Documentation/devicetree/bindings/metag/
6907 F:      drivers/clocksource/metag_generic.c
6908 F:      drivers/irqchip/irq-metag.c
6909 F:      drivers/irqchip/irq-metag-ext.c
6910 F:      drivers/tty/metag_da.c
6911
6912 MICROBLAZE ARCHITECTURE
6913 M:      Michal Simek <monstr@monstr.eu>
6914 W:      http://www.monstr.eu/fdt/
6915 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6916 S:      Supported
6917 F:      arch/microblaze/
6918
6919 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6920 M:      Chen Yu <yu.c.chen@intel.com>
6921 L:      platform-driver-x86@vger.kernel.org
6922 S:      Supported
6923 F:      drivers/platform/x86/surfacepro3_button.c
6924
6925 MICROTEK X6 SCANNER
6926 M:      Oliver Neukum <oliver@neukum.org>
6927 S:      Maintained
6928 F:      drivers/usb/image/microtek.*
6929
6930 MIPS
6931 M:      Ralf Baechle <ralf@linux-mips.org>
6932 L:      linux-mips@linux-mips.org
6933 W:      http://www.linux-mips.org/
6934 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6935 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6936 S:      Supported
6937 F:      Documentation/mips/
6938 F:      arch/mips/
6939
6940 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6941 M:      Hans Verkuil <hverkuil@xs4all.nl>
6942 L:      linux-media@vger.kernel.org
6943 T:      git git://linuxtv.org/media_tree.git
6944 W:      http://linuxtv.org
6945 S:      Odd Fixes
6946 F:      drivers/media/radio/radio-miropcm20*
6947
6948 Mellanox MLX5 core VPI driver
6949 M:      Eli Cohen <eli@mellanox.com>
6950 L:      netdev@vger.kernel.org
6951 L:      linux-rdma@vger.kernel.org
6952 W:      http://www.mellanox.com
6953 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6954 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6955 T:      git git://openfabrics.org/~eli/connect-ib.git
6956 S:      Supported
6957 F:      drivers/net/ethernet/mellanox/mlx5/core/
6958 F:      include/linux/mlx5/
6959
6960 Mellanox MLX5 IB driver
6961 M:      Eli Cohen <eli@mellanox.com>
6962 L:      linux-rdma@vger.kernel.org
6963 W:      http://www.mellanox.com
6964 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6965 T:      git git://openfabrics.org/~eli/connect-ib.git
6966 S:      Supported
6967 F:      include/linux/mlx5/
6968 F:      drivers/infiniband/hw/mlx5/
6969
6970 MN88472 MEDIA DRIVER
6971 M:      Antti Palosaari <crope@iki.fi>
6972 L:      linux-media@vger.kernel.org
6973 W:      http://linuxtv.org/
6974 W:      http://palosaari.fi/linux/
6975 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6976 T:      git git://linuxtv.org/anttip/media_tree.git
6977 S:      Maintained
6978 F:      drivers/staging/media/mn88472/
6979 F:      drivers/media/dvb-frontends/mn88472.h
6980
6981 MN88473 MEDIA DRIVER
6982 M:      Antti Palosaari <crope@iki.fi>
6983 L:      linux-media@vger.kernel.org
6984 W:      http://linuxtv.org/
6985 W:      http://palosaari.fi/linux/
6986 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6987 T:      git git://linuxtv.org/anttip/media_tree.git
6988 S:      Maintained
6989 F:      drivers/staging/media/mn88473/
6990 F:      drivers/media/dvb-frontends/mn88473.h
6991
6992 MODULE SUPPORT
6993 M:      Rusty Russell <rusty@rustcorp.com.au>
6994 S:      Maintained
6995 F:      include/linux/module.h
6996 F:      kernel/module.c
6997
6998 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6999 W:      http://popies.net/meye/
7000 S:      Orphan
7001 F:      Documentation/video4linux/meye.txt
7002 F:      drivers/media/pci/meye/
7003 F:      include/uapi/linux/meye.h
7004
7005 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7006 M:      Jiri Slaby <jirislaby@gmail.com>
7007 S:      Maintained
7008 F:      Documentation/serial/moxa-smartio
7009 F:      drivers/tty/mxser.*
7010
7011 MR800 AVERMEDIA USB FM RADIO DRIVER
7012 M:      Alexey Klimov <klimov.linux@gmail.com>
7013 L:      linux-media@vger.kernel.org
7014 T:      git git://linuxtv.org/media_tree.git
7015 S:      Maintained
7016 F:      drivers/media/radio/radio-mr800.c
7017
7018 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7019 M:      Alan Ott <alan@signal11.us>
7020 L:      linux-wpan@vger.kernel.org
7021 S:      Maintained
7022 F:      drivers/net/ieee802154/mrf24j40.c
7023
7024 MSI LAPTOP SUPPORT
7025 M:      "Lee, Chun-Yi" <jlee@suse.com>
7026 L:      platform-driver-x86@vger.kernel.org
7027 S:      Maintained
7028 F:      drivers/platform/x86/msi-laptop.c
7029
7030 MSI WMI SUPPORT
7031 L:      platform-driver-x86@vger.kernel.org
7032 S:      Orphan
7033 F:      drivers/platform/x86/msi-wmi.c
7034
7035 MSI001 MEDIA DRIVER
7036 M:      Antti Palosaari <crope@iki.fi>
7037 L:      linux-media@vger.kernel.org
7038 W:      http://linuxtv.org/
7039 W:      http://palosaari.fi/linux/
7040 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7041 T:      git git://linuxtv.org/anttip/media_tree.git
7042 S:      Maintained
7043 F:      drivers/media/tuners/msi001*
7044
7045 MSI2500 MEDIA DRIVER
7046 M:      Antti Palosaari <crope@iki.fi>
7047 L:      linux-media@vger.kernel.org
7048 W:      http://linuxtv.org/
7049 W:      http://palosaari.fi/linux/
7050 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7051 T:      git git://linuxtv.org/anttip/media_tree.git
7052 S:      Maintained
7053 F:      drivers/media/usb/msi2500/
7054
7055 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7056 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7057 L:      linux-mtd@lists.infradead.org
7058 S:      Maintained
7059 F:      drivers/mtd/devices/docg3*
7060
7061 MT9M032 APTINA SENSOR DRIVER
7062 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7063 L:      linux-media@vger.kernel.org
7064 T:      git git://linuxtv.org/media_tree.git
7065 S:      Maintained
7066 F:      drivers/media/i2c/mt9m032.c
7067 F:      include/media/mt9m032.h
7068
7069 MT9P031 APTINA CAMERA SENSOR
7070 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7071 L:      linux-media@vger.kernel.org
7072 T:      git git://linuxtv.org/media_tree.git
7073 S:      Maintained
7074 F:      drivers/media/i2c/mt9p031.c
7075 F:      include/media/mt9p031.h
7076
7077 MT9T001 APTINA CAMERA SENSOR
7078 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7079 L:      linux-media@vger.kernel.org
7080 T:      git git://linuxtv.org/media_tree.git
7081 S:      Maintained
7082 F:      drivers/media/i2c/mt9t001.c
7083 F:      include/media/mt9t001.h
7084
7085 MT9V032 APTINA CAMERA SENSOR
7086 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7087 L:      linux-media@vger.kernel.org
7088 T:      git git://linuxtv.org/media_tree.git
7089 S:      Maintained
7090 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7091 F:      drivers/media/i2c/mt9v032.c
7092 F:      include/media/mt9v032.h
7093
7094 MULTIFUNCTION DEVICES (MFD)
7095 M:      Samuel Ortiz <sameo@linux.intel.com>
7096 M:      Lee Jones <lee.jones@linaro.org>
7097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7098 S:      Supported
7099 F:      drivers/mfd/
7100 F:      include/linux/mfd/
7101
7102 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7103 M:      Ulf Hansson <ulf.hansson@linaro.org>
7104 L:      linux-mmc@vger.kernel.org
7105 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7106 S:      Maintained
7107 F:      drivers/mmc/
7108 F:      include/linux/mmc/
7109 F:      include/uapi/linux/mmc/
7110
7111 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7112 S:      Orphan
7113 F:      drivers/mmc/host/mmc_spi.c
7114 F:      include/linux/spi/mmc_spi.h
7115
7116 MULTISOUND SOUND DRIVER
7117 M:      Andrew Veliath <andrewtv@usa.net>
7118 S:      Maintained
7119 F:      Documentation/sound/oss/MultiSound
7120 F:      sound/oss/msnd*
7121
7122 MULTITECH MULTIPORT CARD (ISICOM)
7123 S:      Orphan
7124 F:      drivers/tty/isicom.c
7125 F:      include/linux/isicom.h
7126
7127 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7128 M:      Felipe Balbi <balbi@ti.com>
7129 L:      linux-usb@vger.kernel.org
7130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7131 S:      Maintained
7132 F:      drivers/usb/musb/
7133
7134 MXL5007T MEDIA DRIVER
7135 M:      Michael Krufky <mkrufky@linuxtv.org>
7136 L:      linux-media@vger.kernel.org
7137 W:      http://linuxtv.org/
7138 W:      http://github.com/mkrufky
7139 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7140 T:      git git://linuxtv.org/mkrufky/tuners.git
7141 S:      Maintained
7142 F:      drivers/media/tuners/mxl5007t.*
7143
7144 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7145 M:      Hyong-Youb Kim <hykim@myri.com>
7146 L:      netdev@vger.kernel.org
7147 W:      https://www.myricom.com/support/downloads/myri10ge.html
7148 S:      Supported
7149 F:      drivers/net/ethernet/myricom/myri10ge/
7150
7151 NATSEMI ETHERNET DRIVER (DP8381x)
7152 S:      Orphan
7153 F:      drivers/net/ethernet/natsemi/natsemi.c
7154
7155 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7156 M:      Daniel Mack <zonque@gmail.com>
7157 S:      Maintained
7158 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7159 W:      http://www.native-instruments.com
7160 F:      sound/usb/caiaq/
7161
7162 NCP FILESYSTEM
7163 M:      Petr Vandrovec <petr@vandrovec.name>
7164 S:      Odd Fixes
7165 F:      fs/ncpfs/
7166
7167 NCR 5380 SCSI DRIVERS
7168 M:      Finn Thain <fthain@telegraphics.com.au>
7169 M:      Michael Schmitz <schmitzmic@gmail.com>
7170 L:      linux-scsi@vger.kernel.org
7171 S:      Maintained
7172 F:      Documentation/scsi/g_NCR5380.txt
7173 F:      drivers/scsi/NCR5380.*
7174 F:      drivers/scsi/arm/cumana_1.c
7175 F:      drivers/scsi/arm/oak.c
7176 F:      drivers/scsi/atari_NCR5380.c
7177 F:      drivers/scsi/atari_scsi.*
7178 F:      drivers/scsi/dmx3191d.c
7179 F:      drivers/scsi/dtc.*
7180 F:      drivers/scsi/g_NCR5380.*
7181 F:      drivers/scsi/g_NCR5380_mmio.c
7182 F:      drivers/scsi/mac_scsi.*
7183 F:      drivers/scsi/pas16.*
7184 F:      drivers/scsi/sun3_scsi.*
7185 F:      drivers/scsi/sun3_scsi_vme.c
7186 F:      drivers/scsi/t128.*
7187
7188 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7189 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7190 L:      linux-scsi@vger.kernel.org
7191 S:      Maintained
7192 F:      drivers/scsi/NCR_D700.*
7193
7194 NCT6775 HARDWARE MONITOR DRIVER
7195 M:      Guenter Roeck <linux@roeck-us.net>
7196 L:      lm-sensors@lm-sensors.org
7197 S:      Maintained
7198 F:      Documentation/hwmon/nct6775
7199 F:      drivers/hwmon/nct6775.c
7200
7201 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7202 M:      Faisal Latif <faisal.latif@intel.com>
7203 L:      linux-rdma@vger.kernel.org
7204 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7205 S:      Supported
7206 F:      drivers/infiniband/hw/nes/
7207
7208 NETEM NETWORK EMULATOR
7209 M:      Stephen Hemminger <stephen@networkplumber.org>
7210 L:      netem@lists.linux-foundation.org
7211 S:      Maintained
7212 F:      net/sched/sch_netem.c
7213
7214 NETERION 10GbE DRIVERS (s2io/vxge)
7215 M:      Jon Mason <jdmason@kudzu.us>
7216 L:      netdev@vger.kernel.org
7217 S:      Supported
7218 F:      Documentation/networking/s2io.txt
7219 F:      Documentation/networking/vxge.txt
7220 F:      drivers/net/ethernet/neterion/
7221
7222 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7223 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7224 M:      Patrick McHardy <kaber@trash.net>
7225 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7226 L:      netfilter-devel@vger.kernel.org
7227 L:      coreteam@netfilter.org
7228 W:      http://www.netfilter.org/
7229 W:      http://www.iptables.org/
7230 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7233 S:      Supported
7234 F:      include/linux/netfilter*
7235 F:      include/linux/netfilter/
7236 F:      include/net/netfilter/
7237 F:      include/uapi/linux/netfilter*
7238 F:      include/uapi/linux/netfilter/
7239 F:      net/*/netfilter.c
7240 F:      net/*/netfilter/
7241 F:      net/netfilter/
7242 F:      net/bridge/br_netfilter*.c
7243
7244 NETLABEL
7245 M:      Paul Moore <paul@paul-moore.com>
7246 W:      http://netlabel.sf.net
7247 L:      netdev@vger.kernel.org
7248 S:      Maintained
7249 F:      Documentation/netlabel/
7250 F:      include/net/netlabel.h
7251 F:      net/netlabel/
7252
7253 NETROM NETWORK LAYER
7254 M:      Ralf Baechle <ralf@linux-mips.org>
7255 L:      linux-hams@vger.kernel.org
7256 W:      http://www.linux-ax25.org/
7257 S:      Maintained
7258 F:      include/net/netrom.h
7259 F:      include/uapi/linux/netrom.h
7260 F:      net/netrom/
7261
7262 NETWORK BLOCK DEVICE (NBD)
7263 M:      Markus Pargmann <mpa@pengutronix.de>
7264 S:      Maintained
7265 L:      nbd-general@lists.sourceforge.net
7266 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7267 F:      Documentation/blockdev/nbd.txt
7268 F:      drivers/block/nbd.c
7269 F:      include/uapi/linux/nbd.h
7270
7271 NETWORK DROP MONITOR
7272 M:      Neil Horman <nhorman@tuxdriver.com>
7273 L:      netdev@vger.kernel.org
7274 S:      Maintained
7275 W:      https://fedorahosted.org/dropwatch/
7276 F:      net/core/drop_monitor.c
7277
7278 NETWORKING [GENERAL]
7279 M:      "David S. Miller" <davem@davemloft.net>
7280 L:      netdev@vger.kernel.org
7281 W:      http://www.linuxfoundation.org/en/Net
7282 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7285 S:      Maintained
7286 F:      net/
7287 F:      include/net/
7288 F:      include/linux/in.h
7289 F:      include/linux/net.h
7290 F:      include/linux/netdevice.h
7291 F:      include/uapi/linux/in.h
7292 F:      include/uapi/linux/net.h
7293 F:      include/uapi/linux/netdevice.h
7294 F:      include/uapi/linux/net_namespace.h
7295 F:      tools/net/
7296 F:      tools/testing/selftests/net/
7297 F:      lib/random32.c
7298 F:      lib/test_bpf.c
7299
7300 NETWORKING [IPv4/IPv6]
7301 M:      "David S. Miller" <davem@davemloft.net>
7302 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7303 M:      James Morris <jmorris@namei.org>
7304 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7305 M:      Patrick McHardy <kaber@trash.net>
7306 L:      netdev@vger.kernel.org
7307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7308 S:      Maintained
7309 F:      net/ipv4/
7310 F:      net/ipv6/
7311 F:      include/net/ip*
7312 F:      arch/x86/net/*
7313
7314 NETWORKING [IPSEC]
7315 M:      Steffen Klassert <steffen.klassert@secunet.com>
7316 M:      Herbert Xu <herbert@gondor.apana.org.au>
7317 M:      "David S. Miller" <davem@davemloft.net>
7318 L:      netdev@vger.kernel.org
7319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7321 S:      Maintained
7322 F:      net/core/flow.c
7323 F:      net/xfrm/
7324 F:      net/key/
7325 F:      net/ipv4/xfrm*
7326 F:      net/ipv4/esp4.c
7327 F:      net/ipv4/ah4.c
7328 F:      net/ipv4/ipcomp.c
7329 F:      net/ipv4/ip_vti.c
7330 F:      net/ipv6/xfrm*
7331 F:      net/ipv6/esp6.c
7332 F:      net/ipv6/ah6.c
7333 F:      net/ipv6/ipcomp6.c
7334 F:      net/ipv6/ip6_vti.c
7335 F:      include/uapi/linux/xfrm.h
7336 F:      include/net/xfrm.h
7337
7338 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7339 M:      Paul Moore <paul@paul-moore.com>
7340 L:      netdev@vger.kernel.org
7341 S:      Maintained
7342
7343 NETWORKING [WIRELESS]
7344 L:      linux-wireless@vger.kernel.org
7345 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7346
7347 NETWORKING DRIVERS
7348 L:      netdev@vger.kernel.org
7349 W:      http://www.linuxfoundation.org/en/Net
7350 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7353 S:      Odd Fixes
7354 F:      drivers/net/
7355 F:      include/linux/if_*
7356 F:      include/linux/netdevice.h
7357 F:      include/linux/arcdevice.h
7358 F:      include/linux/etherdevice.h
7359 F:      include/linux/fcdevice.h
7360 F:      include/linux/fddidevice.h
7361 F:      include/linux/hippidevice.h
7362 F:      include/linux/inetdevice.h
7363 F:      include/uapi/linux/if_*
7364 F:      include/uapi/linux/netdevice.h
7365
7366 NETWORKING DRIVERS (WIRELESS)
7367 M:      Kalle Valo <kvalo@codeaurora.org>
7368 L:      linux-wireless@vger.kernel.org
7369 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7371 S:      Maintained
7372 F:      drivers/net/wireless/
7373
7374 NETXEN (1/10) GbE SUPPORT
7375 M:      Manish Chopra <manish.chopra@qlogic.com>
7376 M:      Sony Chacko <sony.chacko@qlogic.com>
7377 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7378 L:      netdev@vger.kernel.org
7379 W:      http://www.qlogic.com
7380 S:      Supported
7381 F:      drivers/net/ethernet/qlogic/netxen/
7382
7383 NFC SUBSYSTEM
7384 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7385 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7386 M:      Samuel Ortiz <sameo@linux.intel.com>
7387 L:      linux-wireless@vger.kernel.org
7388 L:      linux-nfc@lists.01.org (subscribers-only)
7389 S:      Supported
7390 F:      net/nfc/
7391 F:      include/net/nfc/
7392 F:      include/uapi/linux/nfc.h
7393 F:      drivers/nfc/
7394 F:      include/linux/platform_data/pn544.h
7395 F:      Documentation/devicetree/bindings/net/nfc/
7396
7397 NFS, SUNRPC, AND LOCKD CLIENTS
7398 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7399 M:      Anna Schumaker <anna.schumaker@netapp.com>
7400 L:      linux-nfs@vger.kernel.org
7401 W:      http://client.linux-nfs.org
7402 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7403 S:      Maintained
7404 F:      fs/lockd/
7405 F:      fs/nfs/
7406 F:      fs/nfs_common/
7407 F:      net/sunrpc/
7408 F:      include/linux/lockd/
7409 F:      include/linux/nfs*
7410 F:      include/linux/sunrpc/
7411 F:      include/uapi/linux/nfs*
7412 F:      include/uapi/linux/sunrpc/
7413
7414 NILFS2 FILESYSTEM
7415 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7416 L:      linux-nilfs@vger.kernel.org
7417 W:      http://nilfs.sourceforge.net/
7418 T:      git git://github.com/konis/nilfs2.git
7419 S:      Supported
7420 F:      Documentation/filesystems/nilfs2.txt
7421 F:      fs/nilfs2/
7422 F:      include/linux/nilfs2_fs.h
7423
7424 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7425 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7426 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7427 S:      Maintained
7428 F:      Documentation/scsi/NinjaSCSI.txt
7429 F:      drivers/scsi/pcmcia/nsp_*
7430
7431 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7432 M:      GOTO Masanori <gotom@debian.or.jp>
7433 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7434 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7435 S:      Maintained
7436 F:      Documentation/scsi/NinjaSCSI.txt
7437 F:      drivers/scsi/nsp32*
7438
7439 NIOS2 ARCHITECTURE
7440 M:      Ley Foon Tan <lftan@altera.com>
7441 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7443 S:      Maintained
7444 F:      arch/nios2/
7445
7446 NOKIA N900 POWER SUPPLY DRIVERS
7447 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7448 S:      Maintained
7449 F:      include/linux/power/bq2415x_charger.h
7450 F:      include/linux/power/bq27x00_battery.h
7451 F:      include/linux/power/isp1704_charger.h
7452 F:      drivers/power/bq2415x_charger.c
7453 F:      drivers/power/bq27x00_battery.c
7454 F:      drivers/power/isp1704_charger.c
7455 F:      drivers/power/rx51_battery.c
7456
7457 NTB DRIVER CORE
7458 M:      Jon Mason <jdmason@kudzu.us>
7459 M:      Dave Jiang <dave.jiang@intel.com>
7460 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7461 L:      linux-ntb@googlegroups.com
7462 S:      Supported
7463 W:      https://github.com/jonmason/ntb/wiki
7464 T:      git git://github.com/jonmason/ntb.git
7465 F:      drivers/ntb/
7466 F:      drivers/net/ntb_netdev.c
7467 F:      include/linux/ntb.h
7468 F:      include/linux/ntb_transport.h
7469
7470 NTB INTEL DRIVER
7471 M:      Jon Mason <jdmason@kudzu.us>
7472 M:      Dave Jiang <dave.jiang@intel.com>
7473 L:      linux-ntb@googlegroups.com
7474 S:      Supported
7475 W:      https://github.com/jonmason/ntb/wiki
7476 T:      git git://github.com/jonmason/ntb.git
7477 F:      drivers/ntb/hw/intel/
7478
7479 NTFS FILESYSTEM
7480 M:      Anton Altaparmakov <anton@tuxera.com>
7481 L:      linux-ntfs-dev@lists.sourceforge.net
7482 W:      http://www.tuxera.com/
7483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7484 S:      Supported
7485 F:      Documentation/filesystems/ntfs.txt
7486 F:      fs/ntfs/
7487
7488 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7489 M:      Antonino Daplas <adaplas@gmail.com>
7490 L:      linux-fbdev@vger.kernel.org
7491 S:      Maintained
7492 F:      drivers/video/fbdev/riva/
7493 F:      drivers/video/fbdev/nvidia/
7494
7495 NVM EXPRESS DRIVER
7496 M:      Matthew Wilcox <willy@linux.intel.com>
7497 L:      linux-nvme@lists.infradead.org
7498 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7499 S:      Supported
7500 F:      drivers/block/nvme*
7501 F:      include/linux/nvme.h
7502
7503 NVMEM FRAMEWORK
7504 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7505 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7506 S:      Maintained
7507 F:      drivers/nvmem/
7508 F:      Documentation/devicetree/bindings/nvmem/
7509 F:      include/linux/nvmem-consumer.h
7510 F:      include/linux/nvmem-provider.h
7511
7512 NXP-NCI NFC DRIVER
7513 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7514 R:      Charles Gorand <charles.gorand@effinnov.com>
7515 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7516 S:      Supported
7517 F:      drivers/nfc/nxp-nci
7518
7519 NXP TDA998X DRM DRIVER
7520 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7521 S:      Supported
7522 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7523 F:      include/drm/i2c/tda998x.h
7524
7525 NXP TFA9879 DRIVER
7526 M:      Peter Rosin <peda@axentia.se>
7527 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7528 S:      Maintained
7529 F:      sound/soc/codecs/tfa9879*
7530
7531 OMAP SUPPORT
7532 M:      Tony Lindgren <tony@atomide.com>
7533 L:      linux-omap@vger.kernel.org
7534 W:      http://www.muru.com/linux/omap/
7535 W:      http://linux.omap.com/
7536 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7538 S:      Maintained
7539 F:      arch/arm/*omap*/
7540 F:      arch/arm/configs/omap1_defconfig
7541 F:      arch/arm/configs/omap2plus_defconfig
7542 F:      drivers/i2c/busses/i2c-omap.c
7543 F:      drivers/irqchip/irq-omap-intc.c
7544 F:      drivers/mfd/*omap*.c
7545 F:      drivers/mfd/menelaus.c
7546 F:      drivers/mfd/palmas.c
7547 F:      drivers/mfd/tps65217.c
7548 F:      drivers/mfd/tps65218.c
7549 F:      drivers/mfd/tps65910.c
7550 F:      drivers/mfd/twl-core.[ch]
7551 F:      drivers/mfd/twl4030*.c
7552 F:      drivers/mfd/twl6030*.c
7553 F:      drivers/mfd/twl6040*.c
7554 F:      drivers/regulator/palmas-regulator*.c
7555 F:      drivers/regulator/pbias-regulator.c
7556 F:      drivers/regulator/tps65217-regulator.c
7557 F:      drivers/regulator/tps65218-regulator.c
7558 F:      drivers/regulator/tps65910-regulator.c
7559 F:      drivers/regulator/twl-regulator.c
7560 F:      include/linux/i2c-omap.h
7561
7562 OMAP DEVICE TREE SUPPORT
7563 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7564 M:      Tony Lindgren <tony@atomide.com>
7565 L:      linux-omap@vger.kernel.org
7566 L:      devicetree@vger.kernel.org
7567 S:      Maintained
7568 F:      arch/arm/boot/dts/*omap*
7569 F:      arch/arm/boot/dts/*am3*
7570 F:      arch/arm/boot/dts/*am4*
7571 F:      arch/arm/boot/dts/*am5*
7572 F:      arch/arm/boot/dts/*dra7*
7573
7574 OMAP CLOCK FRAMEWORK SUPPORT
7575 M:      Paul Walmsley <paul@pwsan.com>
7576 L:      linux-omap@vger.kernel.org
7577 S:      Maintained
7578 F:      arch/arm/*omap*/*clock*
7579
7580 OMAP POWER MANAGEMENT SUPPORT
7581 M:      Kevin Hilman <khilman@deeprootsystems.com>
7582 L:      linux-omap@vger.kernel.org
7583 S:      Maintained
7584 F:      arch/arm/*omap*/*pm*
7585 F:      drivers/cpufreq/omap-cpufreq.c
7586
7587 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7588 M:      Rajendra Nayak <rnayak@ti.com>
7589 M:      Paul Walmsley <paul@pwsan.com>
7590 L:      linux-omap@vger.kernel.org
7591 S:      Maintained
7592 F:      arch/arm/mach-omap2/prm*
7593
7594 OMAP AUDIO SUPPORT
7595 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7596 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7597 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7598 L:      linux-omap@vger.kernel.org
7599 S:      Maintained
7600 F:      sound/soc/omap/
7601
7602 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7603 M:      Roger Quadros <rogerq@ti.com>
7604 M:      Tony Lindgren <tony@atomide.com>
7605 L:      linux-omap@vger.kernel.org
7606 S:      Maintained
7607 F:      drivers/memory/omap-gpmc.c
7608 F:      arch/arm/mach-omap2/*gpmc*
7609
7610 OMAP FRAMEBUFFER SUPPORT
7611 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7612 L:      linux-fbdev@vger.kernel.org
7613 L:      linux-omap@vger.kernel.org
7614 S:      Maintained
7615 F:      drivers/video/fbdev/omap/
7616
7617 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7618 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7619 L:      linux-omap@vger.kernel.org
7620 L:      linux-fbdev@vger.kernel.org
7621 S:      Maintained
7622 F:      drivers/video/fbdev/omap2/
7623 F:      Documentation/arm/OMAP/DSS
7624
7625 OMAP HARDWARE SPINLOCK SUPPORT
7626 M:      Ohad Ben-Cohen <ohad@wizery.com>
7627 L:      linux-omap@vger.kernel.org
7628 S:      Maintained
7629 F:      drivers/hwspinlock/omap_hwspinlock.c
7630
7631 OMAP MMC SUPPORT
7632 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7633 L:      linux-omap@vger.kernel.org
7634 S:      Maintained
7635 F:      drivers/mmc/host/omap.c
7636
7637 OMAP HS MMC SUPPORT
7638 L:      linux-mmc@vger.kernel.org
7639 L:      linux-omap@vger.kernel.org
7640 S:      Orphan
7641 F:      drivers/mmc/host/omap_hsmmc.c
7642
7643 OMAP RANDOM NUMBER GENERATOR SUPPORT
7644 M:      Deepak Saxena <dsaxena@plexity.net>
7645 S:      Maintained
7646 F:      drivers/char/hw_random/omap-rng.c
7647
7648 OMAP HWMOD SUPPORT
7649 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7650 M:      Paul Walmsley <paul@pwsan.com>
7651 L:      linux-omap@vger.kernel.org
7652 S:      Maintained
7653 F:      arch/arm/mach-omap2/omap_hwmod.*
7654
7655 OMAP HWMOD DATA
7656 M:      Paul Walmsley <paul@pwsan.com>
7657 L:      linux-omap@vger.kernel.org
7658 S:      Maintained
7659 F:      arch/arm/mach-omap2/omap_hwmod*data*
7660
7661 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7662 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7663 L:      linux-omap@vger.kernel.org
7664 S:      Maintained
7665 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7666
7667 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7668 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7669 L:      linux-media@vger.kernel.org
7670 S:      Maintained
7671 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7672 F:      drivers/media/platform/omap3isp/
7673 F:      drivers/staging/media/omap4iss/
7674
7675 OMAP USB SUPPORT
7676 M:      Felipe Balbi <balbi@ti.com>
7677 L:      linux-usb@vger.kernel.org
7678 L:      linux-omap@vger.kernel.org
7679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7680 S:      Maintained
7681 F:      drivers/usb/*/*omap*
7682 F:      arch/arm/*omap*/usb*
7683
7684 OMAP GPIO DRIVER
7685 M:      Javier Martinez Canillas <javier@dowhile0.org>
7686 M:      Santosh Shilimkar <ssantosh@kernel.org>
7687 M:      Kevin Hilman <khilman@deeprootsystems.com>
7688 L:      linux-omap@vger.kernel.org
7689 S:      Maintained
7690 F:      drivers/gpio/gpio-omap.c
7691
7692 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7693 M:      Mark Jackson <mpfj@newflow.co.uk>
7694 L:      linux-omap@vger.kernel.org
7695 S:      Maintained
7696 F:      arch/arm/boot/dts/am335x-nano.dts
7697
7698 OMFS FILESYSTEM
7699 M:      Bob Copeland <me@bobcopeland.com>
7700 L:      linux-karma-devel@lists.sourceforge.net
7701 S:      Maintained
7702 F:      Documentation/filesystems/omfs.txt
7703 F:      fs/omfs/
7704
7705 OMNIKEY CARDMAN 4000 DRIVER
7706 M:      Harald Welte <laforge@gnumonks.org>
7707 S:      Maintained
7708 F:      drivers/char/pcmcia/cm4000_cs.c
7709 F:      include/linux/cm4000_cs.h
7710 F:      include/uapi/linux/cm4000_cs.h
7711
7712 OMNIKEY CARDMAN 4040 DRIVER
7713 M:      Harald Welte <laforge@gnumonks.org>
7714 S:      Maintained
7715 F:      drivers/char/pcmcia/cm4040_cs.*
7716
7717 OMNIVISION OV7670 SENSOR DRIVER
7718 M:      Jonathan Corbet <corbet@lwn.net>
7719 L:      linux-media@vger.kernel.org
7720 T:      git git://linuxtv.org/media_tree.git
7721 S:      Maintained
7722 F:      drivers/media/i2c/ov7670.c
7723
7724 ONENAND FLASH DRIVER
7725 M:      Kyungmin Park <kyungmin.park@samsung.com>
7726 L:      linux-mtd@lists.infradead.org
7727 S:      Maintained
7728 F:      drivers/mtd/onenand/
7729 F:      include/linux/mtd/onenand*.h
7730
7731 ONSTREAM SCSI TAPE DRIVER
7732 M:      Willem Riede <osst@riede.org>
7733 L:      osst-users@lists.sourceforge.net
7734 L:      linux-scsi@vger.kernel.org
7735 S:      Maintained
7736 F:      Documentation/scsi/osst.txt
7737 F:      drivers/scsi/osst.*
7738 F:      drivers/scsi/osst_*.h
7739 F:      drivers/scsi/st.h
7740
7741 OPENCORES I2C BUS DRIVER
7742 M:      Peter Korsgaard <jacmet@sunsite.dk>
7743 L:      linux-i2c@vger.kernel.org
7744 S:      Maintained
7745 F:      Documentation/i2c/busses/i2c-ocores
7746 F:      drivers/i2c/busses/i2c-ocores.c
7747
7748 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7749 M:      Rob Herring <robh+dt@kernel.org>
7750 M:      Frank Rowand <frowand.list@gmail.com>
7751 M:      Grant Likely <grant.likely@linaro.org>
7752 L:      devicetree@vger.kernel.org
7753 W:      http://www.devicetree.org/
7754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7755 S:      Maintained
7756 F:      drivers/of/
7757 F:      include/linux/of*.h
7758 F:      scripts/dtc/
7759
7760 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7761 M:      Rob Herring <robh+dt@kernel.org>
7762 M:      Pawel Moll <pawel.moll@arm.com>
7763 M:      Mark Rutland <mark.rutland@arm.com>
7764 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7765 M:      Kumar Gala <galak@codeaurora.org>
7766 L:      devicetree@vger.kernel.org
7767 S:      Maintained
7768 F:      Documentation/devicetree/
7769 F:      arch/*/boot/dts/
7770 F:      include/dt-bindings/
7771
7772 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7773 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7774 L:      devicetree@vger.kernel.org
7775 S:      Maintained
7776 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7777 F:      Documentation/devicetree/overlay-notes.txt
7778 F:      drivers/of/overlay.c
7779 F:      drivers/of/resolver.c
7780
7781 OPENRISC ARCHITECTURE
7782 M:      Jonas Bonn <jonas@southpole.se>
7783 W:      http://openrisc.net
7784 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7785 S:      Maintained
7786 T:      git git://openrisc.net/~jonas/linux
7787 F:      arch/openrisc/
7788
7789 OPENVSWITCH
7790 M:      Pravin Shelar <pshelar@nicira.com>
7791 L:      netdev@vger.kernel.org
7792 L:      dev@openvswitch.org
7793 W:      http://openvswitch.org
7794 S:      Maintained
7795 F:      net/openvswitch/
7796 F:      include/uapi/linux/openvswitch.h
7797
7798 OPL4 DRIVER
7799 M:      Clemens Ladisch <clemens@ladisch.de>
7800 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7801 T:      git git://git.alsa-project.org/alsa-kernel.git
7802 S:      Maintained
7803 F:      sound/drivers/opl4/
7804
7805 OPROFILE
7806 M:      Robert Richter <rric@kernel.org>
7807 L:      oprofile-list@lists.sf.net
7808 S:      Maintained
7809 F:      arch/*/include/asm/oprofile*.h
7810 F:      arch/*/oprofile/
7811 F:      drivers/oprofile/
7812 F:      include/linux/oprofile.h
7813
7814 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7815 M:      Mark Fasheh <mfasheh@suse.com>
7816 M:      Joel Becker <jlbec@evilplan.org>
7817 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7818 W:      http://ocfs2.wiki.kernel.org
7819 S:      Supported
7820 F:      Documentation/filesystems/ocfs2.txt
7821 F:      Documentation/filesystems/dlmfs.txt
7822 F:      fs/ocfs2/
7823
7824 ORINOCO DRIVER
7825 L:      linux-wireless@vger.kernel.org
7826 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7827 W:      http://www.nongnu.org/orinoco/
7828 S:      Orphan
7829 F:      drivers/net/wireless/orinoco/
7830
7831 OSD LIBRARY and FILESYSTEM
7832 M:      Boaz Harrosh <ooo@electrozaur.com>
7833 M:      Benny Halevy <bhalevy@primarydata.com>
7834 L:      osd-dev@open-osd.org
7835 W:      http://open-osd.org
7836 T:      git git://git.open-osd.org/open-osd.git
7837 S:      Maintained
7838 F:      drivers/scsi/osd/
7839 F:      include/scsi/osd_*
7840 F:      fs/exofs/
7841
7842 OVERLAY FILESYSTEM
7843 M:      Miklos Szeredi <miklos@szeredi.hu>
7844 L:      linux-unionfs@vger.kernel.org
7845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7846 S:      Supported
7847 F:      fs/overlayfs/
7848 F:      Documentation/filesystems/overlayfs.txt
7849
7850 P54 WIRELESS DRIVER
7851 M:      Christian Lamparter <chunkeey@googlemail.com>
7852 L:      linux-wireless@vger.kernel.org
7853 W:      http://wireless.kernel.org/en/users/Drivers/p54
7854 S:      Maintained
7855 F:      drivers/net/wireless/p54/
7856
7857 PA SEMI ETHERNET DRIVER
7858 M:      Olof Johansson <olof@lixom.net>
7859 L:      netdev@vger.kernel.org
7860 S:      Maintained
7861 F:      drivers/net/ethernet/pasemi/*
7862
7863 PA SEMI SMBUS DRIVER
7864 M:      Olof Johansson <olof@lixom.net>
7865 L:      linux-i2c@vger.kernel.org
7866 S:      Maintained
7867 F:      drivers/i2c/busses/i2c-pasemi.c
7868
7869 PADATA PARALLEL EXECUTION MECHANISM
7870 M:      Steffen Klassert <steffen.klassert@secunet.com>
7871 L:      linux-crypto@vger.kernel.org
7872 S:      Maintained
7873 F:      kernel/padata.c
7874 F:      include/linux/padata.h
7875 F:      Documentation/padata.txt
7876
7877 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7878 M:      Harald Welte <laforge@gnumonks.org>
7879 L:      platform-driver-x86@vger.kernel.org
7880 S:      Maintained
7881 F:      drivers/platform/x86/panasonic-laptop.c
7882
7883 PANASONIC MN10300/AM33/AM34 PORT
7884 M:      David Howells <dhowells@redhat.com>
7885 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7886 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7887 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7888 S:      Maintained
7889 F:      Documentation/mn10300/
7890 F:      arch/mn10300/
7891
7892 PARALLEL PORT SUBSYSTEM
7893 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7894 M:      Sudip Mukherjee <sudip@vectorindia.org>
7895 L:      linux-parport@lists.infradead.org (subscribers-only)
7896 S:      Maintained
7897 F:      drivers/parport/
7898 F:      include/linux/parport*.h
7899 F:      drivers/char/ppdev.c
7900 F:      include/uapi/linux/ppdev.h
7901 F:      Documentation/parport*.txt
7902
7903 PARAVIRT_OPS INTERFACE
7904 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7905 M:      Chris Wright <chrisw@sous-sol.org>
7906 M:      Alok Kataria <akataria@vmware.com>
7907 M:      Rusty Russell <rusty@rustcorp.com.au>
7908 L:      virtualization@lists.linux-foundation.org
7909 S:      Supported
7910 F:      Documentation/virtual/paravirt_ops.txt
7911 F:      arch/*/kernel/paravirt*
7912 F:      arch/*/include/asm/paravirt.h
7913
7914 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7915 M:      Tim Waugh <tim@cyberelk.net>
7916 L:      linux-parport@lists.infradead.org (subscribers-only)
7917 S:      Maintained
7918 F:      Documentation/blockdev/paride.txt
7919 F:      drivers/block/paride/
7920
7921 PARISC ARCHITECTURE
7922 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7923 M:      Helge Deller <deller@gmx.de>
7924 L:      linux-parisc@vger.kernel.org
7925 W:      http://www.parisc-linux.org/
7926 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7929 S:      Maintained
7930 F:      arch/parisc/
7931 F:      Documentation/parisc/
7932 F:      drivers/parisc/
7933 F:      drivers/char/agp/parisc-agp.c
7934 F:      drivers/input/serio/gscps2.c
7935 F:      drivers/parport/parport_gsc.*
7936 F:      drivers/tty/serial/8250/8250_gsc.c
7937 F:      drivers/video/fbdev/sti*
7938 F:      drivers/video/console/sti*
7939 F:      drivers/video/logo/logo_parisc*
7940
7941 PC87360 HARDWARE MONITORING DRIVER
7942 M:      Jim Cromie <jim.cromie@gmail.com>
7943 L:      lm-sensors@lm-sensors.org
7944 S:      Maintained
7945 F:      Documentation/hwmon/pc87360
7946 F:      drivers/hwmon/pc87360.c
7947
7948 PC8736x GPIO DRIVER
7949 M:      Jim Cromie <jim.cromie@gmail.com>
7950 S:      Maintained
7951 F:      drivers/char/pc8736x_gpio.c
7952
7953 PC87427 HARDWARE MONITORING DRIVER
7954 M:      Jean Delvare <jdelvare@suse.com>
7955 L:      lm-sensors@lm-sensors.org
7956 S:      Maintained
7957 F:      Documentation/hwmon/pc87427
7958 F:      drivers/hwmon/pc87427.c
7959
7960 PCA9532 LED DRIVER
7961 M:      Riku Voipio <riku.voipio@iki.fi>
7962 S:      Maintained
7963 F:      drivers/leds/leds-pca9532.c
7964 F:      include/linux/leds-pca9532.h
7965
7966 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7967 M:      Guenter Roeck <linux@roeck-us.net>
7968 L:      linux-i2c@vger.kernel.org
7969 S:      Maintained
7970 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7971
7972 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7973 M:      Khalid Aziz <khalid@gonehiking.org>
7974 S:      Maintained
7975 F:      drivers/firmware/pcdp.*
7976
7977 PCI ERROR RECOVERY
7978 M:      Linas Vepstas <linasvepstas@gmail.com>
7979 L:      linux-pci@vger.kernel.org
7980 S:      Supported
7981 F:      Documentation/PCI/pci-error-recovery.txt
7982
7983 PCI SUBSYSTEM
7984 M:      Bjorn Helgaas <bhelgaas@google.com>
7985 L:      linux-pci@vger.kernel.org
7986 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7988 S:      Supported
7989 F:      Documentation/PCI/
7990 F:      drivers/pci/
7991 F:      include/linux/pci*
7992 F:      arch/x86/pci/
7993 F:      arch/x86/kernel/quirks.c
7994
7995 PCI DRIVER FOR ARM VERSATILE PLATFORM
7996 M:      Rob Herring <robh@kernel.org>
7997 L:      linux-pci@vger.kernel.org
7998 L:      linux-arm-kernel@lists.infradead.org
7999 S:      Maintained
8000 F:      Documentation/devicetree/bindings/pci/versatile.txt
8001 F:      drivers/pci/host/pci-versatile.c
8002
8003 PCI DRIVER FOR APPLIEDMICRO XGENE
8004 M:      Tanmay Inamdar <tinamdar@apm.com>
8005 L:      linux-pci@vger.kernel.org
8006 L:      linux-arm-kernel@lists.infradead.org
8007 S:      Maintained
8008 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8009 F:      drivers/pci/host/pci-xgene.c
8010
8011 PCI DRIVER FOR FREESCALE LAYERSCAPE
8012 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8013 M:      Mingkai Hu <mingkai.hu@freescale.com>
8014 M:      Roy Zang <tie-fei.zang@freescale.com>
8015 L:      linuxppc-dev@lists.ozlabs.org
8016 L:      linux-pci@vger.kernel.org
8017 L:      linux-arm-kernel@lists.infradead.org
8018 S:      Maintained
8019 F:      drivers/pci/host/*layerscape*
8020
8021 PCI DRIVER FOR IMX6
8022 M:      Richard Zhu <Richard.Zhu@freescale.com>
8023 M:      Lucas Stach <l.stach@pengutronix.de>
8024 L:      linux-pci@vger.kernel.org
8025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8026 S:      Maintained
8027 F:      drivers/pci/host/*imx6*
8028
8029 PCI DRIVER FOR TI KEYSTONE
8030 M:      Murali Karicheri <m-karicheri2@ti.com>
8031 L:      linux-pci@vger.kernel.org
8032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8033 S:      Maintained
8034 F:      drivers/pci/host/*keystone*
8035
8036 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8037 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8038 M:      Jason Cooper <jason@lakedaemon.net>
8039 L:      linux-pci@vger.kernel.org
8040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8041 S:      Maintained
8042 F:      drivers/pci/host/*mvebu*
8043
8044 PCI DRIVER FOR NVIDIA TEGRA
8045 M:      Thierry Reding <thierry.reding@gmail.com>
8046 L:      linux-tegra@vger.kernel.org
8047 L:      linux-pci@vger.kernel.org
8048 S:      Supported
8049 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8050 F:      drivers/pci/host/pci-tegra.c
8051
8052 PCI DRIVER FOR TI DRA7XX
8053 M:      Kishon Vijay Abraham I <kishon@ti.com>
8054 L:      linux-omap@vger.kernel.org
8055 L:      linux-pci@vger.kernel.org
8056 S:      Supported
8057 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8058 F:      drivers/pci/host/pci-dra7xx.c
8059
8060 PCI DRIVER FOR RENESAS R-CAR
8061 M:      Simon Horman <horms@verge.net.au>
8062 L:      linux-pci@vger.kernel.org
8063 L:      linux-sh@vger.kernel.org
8064 S:      Maintained
8065 F:      drivers/pci/host/*rcar*
8066
8067 PCI DRIVER FOR SAMSUNG EXYNOS
8068 M:      Jingoo Han <jingoohan1@gmail.com>
8069 L:      linux-pci@vger.kernel.org
8070 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8071 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8072 S:      Maintained
8073 F:      drivers/pci/host/pci-exynos.c
8074
8075 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8076 M:      Jingoo Han <jingoohan1@gmail.com>
8077 M:      Pratyush Anand <pratyush.anand@gmail.com>
8078 L:      linux-pci@vger.kernel.org
8079 S:      Maintained
8080 F:      drivers/pci/host/*designware*
8081
8082 PCI DRIVER FOR GENERIC OF HOSTS
8083 M:      Will Deacon <will.deacon@arm.com>
8084 L:      linux-pci@vger.kernel.org
8085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8086 S:      Maintained
8087 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8088 F:      drivers/pci/host/pci-host-generic.c
8089
8090 PCIE DRIVER FOR ST SPEAR13XX
8091 M:      Pratyush Anand <pratyush.anand@gmail.com>
8092 L:      linux-pci@vger.kernel.org
8093 S:      Maintained
8094 F:      drivers/pci/host/*spear*
8095
8096 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8097 M:      Duc Dang <dhdang@apm.com>
8098 L:      linux-pci@vger.kernel.org
8099 L:      linux-arm-kernel@lists.infradead.org
8100 S:      Maintained
8101 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8102 F:      drivers/pci/host/pci-xgene-msi.c
8103
8104 PCMCIA SUBSYSTEM
8105 P:      Linux PCMCIA Team
8106 L:      linux-pcmcia@lists.infradead.org
8107 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8109 S:      Maintained
8110 F:      Documentation/pcmcia/
8111 F:      drivers/pcmcia/
8112 F:      include/pcmcia/
8113
8114 PCNET32 NETWORK DRIVER
8115 M:      Don Fry <pcnet32@frontier.com>
8116 L:      netdev@vger.kernel.org
8117 S:      Maintained
8118 F:      drivers/net/ethernet/amd/pcnet32.c
8119
8120 PCRYPT PARALLEL CRYPTO ENGINE
8121 M:      Steffen Klassert <steffen.klassert@secunet.com>
8122 L:      linux-crypto@vger.kernel.org
8123 S:      Maintained
8124 F:      crypto/pcrypt.c
8125 F:      include/crypto/pcrypt.h
8126
8127 PER-CPU MEMORY ALLOCATOR
8128 M:      Tejun Heo <tj@kernel.org>
8129 M:      Christoph Lameter <cl@linux-foundation.org>
8130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8131 S:      Maintained
8132 F:      include/linux/percpu*.h
8133 F:      mm/percpu*.c
8134 F:      arch/*/include/asm/percpu.h
8135
8136 PER-TASK DELAY ACCOUNTING
8137 M:      Balbir Singh <bsingharora@gmail.com>
8138 S:      Maintained
8139 F:      include/linux/delayacct.h
8140 F:      kernel/delayacct.c
8141
8142 PERFORMANCE EVENTS SUBSYSTEM
8143 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8144 M:      Ingo Molnar <mingo@redhat.com>
8145 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8146 L:      linux-kernel@vger.kernel.org
8147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8148 S:      Supported
8149 F:      kernel/events/*
8150 F:      include/linux/perf_event.h
8151 F:      include/uapi/linux/perf_event.h
8152 F:      arch/*/kernel/perf_event*.c
8153 F:      arch/*/kernel/*/perf_event*.c
8154 F:      arch/*/kernel/*/*/perf_event*.c
8155 F:      arch/*/include/asm/perf_event.h
8156 F:      arch/*/kernel/perf_callchain.c
8157 F:      tools/perf/
8158
8159 PERSONALITY HANDLING
8160 M:      Christoph Hellwig <hch@infradead.org>
8161 L:      linux-abi-devel@lists.sourceforge.net
8162 S:      Maintained
8163 F:      include/linux/personality.h
8164 F:      include/uapi/linux/personality.h
8165
8166 PHONET PROTOCOL
8167 M:      Remi Denis-Courmont <courmisch@gmail.com>
8168 S:      Supported
8169 F:      Documentation/networking/phonet.txt
8170 F:      include/linux/phonet.h
8171 F:      include/net/phonet/
8172 F:      include/uapi/linux/phonet.h
8173 F:      net/phonet/
8174
8175 PHRAM MTD DRIVER
8176 M:      Joern Engel <joern@lazybastard.org>
8177 L:      linux-mtd@lists.infradead.org
8178 S:      Maintained
8179 F:      drivers/mtd/devices/phram.c
8180
8181 PICOLCD HID DRIVER
8182 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8183 L:      linux-input@vger.kernel.org
8184 S:      Maintained
8185 F:      drivers/hid/hid-picolcd*
8186
8187 PICOXCELL SUPPORT
8188 M:      Jamie Iles <jamie@jamieiles.com>
8189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8190 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8191 S:      Supported
8192 F:      arch/arm/boot/dts/picoxcell*
8193 F:      arch/arm/mach-picoxcell/
8194 F:      drivers/crypto/picoxcell*
8195
8196 PIN CONTROL SUBSYSTEM
8197 M:      Linus Walleij <linus.walleij@linaro.org>
8198 L:      linux-gpio@vger.kernel.org
8199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8200 S:      Maintained
8201 F:      drivers/pinctrl/
8202 F:      include/linux/pinctrl/
8203
8204 PIN CONTROLLER - ATMEL AT91
8205 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8207 S:      Maintained
8208 F:      drivers/pinctrl/pinctrl-at91.*
8209
8210 PIN CONTROLLER - INTEL
8211 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8212 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8213 S:      Maintained
8214 F:      drivers/pinctrl/intel/
8215
8216 PIN CONTROLLER - RENESAS
8217 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8218 L:      linux-sh@vger.kernel.org
8219 S:      Maintained
8220 F:      drivers/pinctrl/sh-pfc/
8221
8222 PIN CONTROLLER - SAMSUNG
8223 M:      Tomasz Figa <tomasz.figa@gmail.com>
8224 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8225 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8226 S:      Maintained
8227 F:      drivers/pinctrl/samsung/
8228
8229 PIN CONTROLLER - ST SPEAR
8230 M:      Viresh Kumar <vireshk@kernel.org>
8231 L:      spear-devel@list.st.com
8232 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8233 W:      http://www.st.com/spear
8234 S:      Maintained
8235 F:      drivers/pinctrl/spear/
8236
8237 PKTCDVD DRIVER
8238 M:      Jiri Kosina <jikos@kernel.org>
8239 S:      Maintained
8240 F:      drivers/block/pktcdvd.c
8241 F:      include/linux/pktcdvd.h
8242 F:      include/uapi/linux/pktcdvd.h
8243
8244 PKUNITY SOC DRIVERS
8245 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8246 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8247 S:      Maintained
8248 T:      git git://github.com/gxt/linux.git
8249 F:      drivers/input/serio/i8042-unicore32io.h
8250 F:      drivers/i2c/busses/i2c-puv3.c
8251 F:      drivers/video/fbdev/fb-puv3.c
8252 F:      drivers/rtc/rtc-puv3.c
8253
8254 PMBUS HARDWARE MONITORING DRIVERS
8255 M:      Guenter Roeck <linux@roeck-us.net>
8256 L:      lm-sensors@lm-sensors.org
8257 W:      http://www.lm-sensors.org/
8258 W:      http://www.roeck-us.net/linux/drivers/
8259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8260 S:      Maintained
8261 F:      Documentation/hwmon/pmbus
8262 F:      drivers/hwmon/pmbus/
8263 F:      include/linux/i2c/pmbus.h
8264
8265 PMC SIERRA MaxRAID DRIVER
8266 L:      linux-scsi@vger.kernel.org
8267 W:      http://www.pmc-sierra.com/
8268 S:      Orphan
8269 F:      drivers/scsi/pmcraid.*
8270
8271 PMC SIERRA PM8001 DRIVER
8272 M:      Jack Wang <jinpu.wang@profitbricks.com>
8273 M:      lindar_liu@usish.com
8274 L:      pmchba@pmcs.com
8275 L:      linux-scsi@vger.kernel.org
8276 S:      Supported
8277 F:      drivers/scsi/pm8001/
8278
8279 POSIX CLOCKS and TIMERS
8280 M:      Thomas Gleixner <tglx@linutronix.de>
8281 L:      linux-kernel@vger.kernel.org
8282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8283 S:      Maintained
8284 F:      fs/timerfd.c
8285 F:      include/linux/timer*
8286 F:      kernel/time/*timer*
8287
8288 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8289 M:      Sebastian Reichel <sre@kernel.org>
8290 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8291 M:      David Woodhouse <dwmw2@infradead.org>
8292 L:      linux-pm@vger.kernel.org
8293 T:      git git://git.infradead.org/battery-2.6.git
8294 S:      Maintained
8295 F:      include/linux/power_supply.h
8296 F:      drivers/power/
8297 X:      drivers/power/avs/
8298
8299 POWER STATE COORDINATION INTERFACE (PSCI)
8300 M:      Mark Rutland <mark.rutland@arm.com>
8301 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8302 L:      linux-arm-kernel@lists.infradead.org
8303 S:      Maintained
8304 F:      drivers/firmware/psci.c
8305 F:      include/linux/psci.h
8306 F:      include/uapi/linux/psci.h
8307
8308 PNP SUPPORT
8309 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8310 S:      Maintained
8311 F:      drivers/pnp/
8312
8313 PNXxxxx I2C DRIVER
8314 M:      Vitaly Wool <vitalywool@gmail.com>
8315 L:      linux-i2c@vger.kernel.org
8316 S:      Maintained
8317 F:      drivers/i2c/busses/i2c-pnx.c
8318
8319 PPP PROTOCOL DRIVERS AND COMPRESSORS
8320 M:      Paul Mackerras <paulus@samba.org>
8321 L:      linux-ppp@vger.kernel.org
8322 S:      Maintained
8323 F:      drivers/net/ppp/ppp_*
8324
8325 PPP OVER ATM (RFC 2364)
8326 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8327 S:      Maintained
8328 F:      net/atm/pppoatm.c
8329 F:      include/uapi/linux/atmppp.h
8330
8331 PPP OVER ETHERNET
8332 M:      Michal Ostrowski <mostrows@earthlink.net>
8333 S:      Maintained
8334 F:      drivers/net/ppp/pppoe.c
8335 F:      drivers/net/ppp/pppox.c
8336
8337 PPP OVER L2TP
8338 M:      James Chapman <jchapman@katalix.com>
8339 S:      Maintained
8340 F:      net/l2tp/l2tp_ppp.c
8341 F:      include/linux/if_pppol2tp.h
8342 F:      include/uapi/linux/if_pppol2tp.h
8343
8344 PPS SUPPORT
8345 M:      Rodolfo Giometti <giometti@enneenne.com>
8346 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8347 L:      linuxpps@ml.enneenne.com (subscribers-only)
8348 S:      Maintained
8349 F:      Documentation/pps/
8350 F:      drivers/pps/
8351 F:      include/linux/pps*.h
8352
8353 PPTP DRIVER
8354 M:      Dmitry Kozlov <xeb@mail.ru>
8355 L:      netdev@vger.kernel.org
8356 S:      Maintained
8357 F:      drivers/net/ppp/pptp.c
8358 W:      http://sourceforge.net/projects/accel-pptp
8359
8360 PREEMPTIBLE KERNEL
8361 M:      Robert Love <rml@tech9.net>
8362 L:      kpreempt-tech@lists.sourceforge.net
8363 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8364 S:      Supported
8365 F:      Documentation/preempt-locking.txt
8366 F:      include/linux/preempt.h
8367
8368 PRISM54 WIRELESS DRIVER
8369 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8370 L:      linux-wireless@vger.kernel.org
8371 W:      http://wireless.kernel.org/en/users/Drivers/p54
8372 S:      Obsolete
8373 F:      drivers/net/wireless/prism54/
8374
8375 PS3 NETWORK SUPPORT
8376 M:      Geoff Levand <geoff@infradead.org>
8377 L:      netdev@vger.kernel.org
8378 L:      linuxppc-dev@lists.ozlabs.org
8379 S:      Maintained
8380 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8381
8382 PS3 PLATFORM SUPPORT
8383 M:      Geoff Levand <geoff@infradead.org>
8384 L:      linuxppc-dev@lists.ozlabs.org
8385 S:      Maintained
8386 F:      arch/powerpc/boot/ps3*
8387 F:      arch/powerpc/include/asm/lv1call.h
8388 F:      arch/powerpc/include/asm/ps3*.h
8389 F:      arch/powerpc/platforms/ps3/
8390 F:      drivers/*/ps3*
8391 F:      drivers/ps3/
8392 F:      drivers/rtc/rtc-ps3.c
8393 F:      drivers/usb/host/*ps3.c
8394 F:      sound/ppc/snd_ps3*
8395
8396 PS3VRAM DRIVER
8397 M:      Jim Paris <jim@jtan.com>
8398 M:      Geoff Levand <geoff@infradead.org>
8399 L:      linuxppc-dev@lists.ozlabs.org
8400 S:      Maintained
8401 F:      drivers/block/ps3vram.c
8402
8403 PSTORE FILESYSTEM
8404 M:      Anton Vorontsov <anton@enomsg.org>
8405 M:      Colin Cross <ccross@android.com>
8406 M:      Kees Cook <keescook@chromium.org>
8407 M:      Tony Luck <tony.luck@intel.com>
8408 S:      Maintained
8409 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8410 F:      fs/pstore/
8411 F:      include/linux/pstore*
8412 F:      drivers/firmware/efi/efi-pstore.c
8413 F:      drivers/acpi/apei/erst.c
8414
8415 PTP HARDWARE CLOCK SUPPORT
8416 M:      Richard Cochran <richardcochran@gmail.com>
8417 L:      netdev@vger.kernel.org
8418 S:      Maintained
8419 W:      http://linuxptp.sourceforge.net/
8420 F:      Documentation/ABI/testing/sysfs-ptp
8421 F:      Documentation/ptp/*
8422 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8423 F:      drivers/net/phy/dp83640*
8424 F:      drivers/ptp/*
8425 F:      include/linux/ptp_cl*
8426
8427 PTRACE SUPPORT
8428 M:      Roland McGrath <roland@hack.frob.com>
8429 M:      Oleg Nesterov <oleg@redhat.com>
8430 S:      Maintained
8431 F:      include/asm-generic/syscall.h
8432 F:      include/linux/ptrace.h
8433 F:      include/linux/regset.h
8434 F:      include/linux/tracehook.h
8435 F:      include/uapi/linux/ptrace.h
8436 F:      kernel/ptrace.c
8437
8438 PVRUSB2 VIDEO4LINUX DRIVER
8439 M:      Mike Isely <isely@pobox.com>
8440 L:      pvrusb2@isely.net       (subscribers-only)
8441 L:      linux-media@vger.kernel.org
8442 W:      http://www.isely.net/pvrusb2/
8443 T:      git git://linuxtv.org/media_tree.git
8444 S:      Maintained
8445 F:      Documentation/video4linux/README.pvrusb2
8446 F:      drivers/media/usb/pvrusb2/
8447
8448 PWC WEBCAM DRIVER
8449 M:      Hans de Goede <hdegoede@redhat.com>
8450 L:      linux-media@vger.kernel.org
8451 T:      git git://linuxtv.org/media_tree.git
8452 S:      Maintained
8453 F:      drivers/media/usb/pwc/*
8454
8455 PWM FAN DRIVER
8456 M:      Kamil Debski <k.debski@samsung.com>
8457 L:      lm-sensors@lm-sensors.org
8458 S:      Supported
8459 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8460 F:      Documentation/hwmon/pwm-fan
8461 F:      drivers/hwmon/pwm-fan.c
8462
8463 PWM SUBSYSTEM
8464 M:      Thierry Reding <thierry.reding@gmail.com>
8465 L:      linux-pwm@vger.kernel.org
8466 S:      Maintained
8467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8468 F:      Documentation/pwm.txt
8469 F:      Documentation/devicetree/bindings/pwm/
8470 F:      include/linux/pwm.h
8471 F:      drivers/pwm/
8472 F:      drivers/video/backlight/pwm_bl.c
8473 F:      include/linux/pwm_backlight.h
8474
8475 PXA2xx/PXA3xx SUPPORT
8476 M:      Daniel Mack <daniel@zonque.org>
8477 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8478 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8480 T:      git git://github.com/hzhuang1/linux.git
8481 T:      git git://github.com/rjarzmik/linux.git
8482 S:      Maintained
8483 F:      arch/arm/mach-pxa/
8484 F:      drivers/dma/pxa*
8485 F:      drivers/pcmcia/pxa2xx*
8486 F:      drivers/spi/spi-pxa2xx*
8487 F:      drivers/usb/gadget/udc/pxa2*
8488 F:      include/sound/pxa2xx-lib.h
8489 F:      sound/arm/pxa*
8490 F:      sound/soc/pxa/
8491
8492 PXA3xx NAND FLASH DRIVER
8493 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8494 L:      linux-mtd@lists.infradead.org
8495 S:      Maintained
8496 F:      drivers/mtd/nand/pxa3xx_nand.c
8497
8498 MMP SUPPORT
8499 M:      Eric Miao <eric.y.miao@gmail.com>
8500 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8502 T:      git git://github.com/hzhuang1/linux.git
8503 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8504 S:      Maintained
8505 F:      arch/arm/mach-mmp/
8506
8507 PXA MMCI DRIVER
8508 S:      Orphan
8509
8510 PXA RTC DRIVER
8511 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8512 L:      rtc-linux@googlegroups.com
8513 S:      Maintained
8514
8515 QAT DRIVER
8516 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8517 L:      qat-linux@intel.com
8518 S:      Supported
8519 F:      drivers/crypto/qat/
8520
8521 QIB DRIVER
8522 M:      Mike Marciniszyn <infinipath@intel.com>
8523 L:      linux-rdma@vger.kernel.org
8524 S:      Supported
8525 F:      drivers/infiniband/hw/qib/
8526
8527 QLOGIC QLA1280 SCSI DRIVER
8528 M:      Michael Reed <mdr@sgi.com>
8529 L:      linux-scsi@vger.kernel.org
8530 S:      Maintained
8531 F:      drivers/scsi/qla1280.[ch]
8532
8533 QLOGIC QLA2XXX FC-SCSI DRIVER
8534 M:      qla2xxx-upstream@qlogic.com
8535 L:      linux-scsi@vger.kernel.org
8536 S:      Supported
8537 F:      Documentation/scsi/LICENSE.qla2xxx
8538 F:      drivers/scsi/qla2xxx/
8539
8540 QLOGIC QLA4XXX iSCSI DRIVER
8541 M:      QLogic-Storage-Upstream@qlogic.com
8542 L:      linux-scsi@vger.kernel.org
8543 S:      Supported
8544 F:      Documentation/scsi/LICENSE.qla4xxx
8545 F:      drivers/scsi/qla4xxx/
8546
8547 QLOGIC QLA3XXX NETWORK DRIVER
8548 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8549 M:      Ron Mercer <ron.mercer@qlogic.com>
8550 M:      linux-driver@qlogic.com
8551 L:      netdev@vger.kernel.org
8552 S:      Supported
8553 F:      Documentation/networking/LICENSE.qla3xxx
8554 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8555
8556 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8557 M:      Dept-GELinuxNICDev@qlogic.com
8558 L:      netdev@vger.kernel.org
8559 S:      Supported
8560 F:      drivers/net/ethernet/qlogic/qlcnic/
8561
8562 QLOGIC QLGE 10Gb ETHERNET DRIVER
8563 M:      Harish Patil <harish.patil@qlogic.com>
8564 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8565 M:      Dept-GELinuxNICDev@qlogic.com
8566 M:      linux-driver@qlogic.com
8567 L:      netdev@vger.kernel.org
8568 S:      Supported
8569 F:      drivers/net/ethernet/qlogic/qlge/
8570
8571 QNX4 FILESYSTEM
8572 M:      Anders Larsen <al@alarsen.net>
8573 W:      http://www.alarsen.net/linux/qnx4fs/
8574 S:      Maintained
8575 F:      fs/qnx4/
8576 F:      include/uapi/linux/qnx4_fs.h
8577 F:      include/uapi/linux/qnxtypes.h
8578
8579 QT1010 MEDIA DRIVER
8580 M:      Antti Palosaari <crope@iki.fi>
8581 L:      linux-media@vger.kernel.org
8582 W:      http://linuxtv.org/
8583 W:      http://palosaari.fi/linux/
8584 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8585 T:      git git://linuxtv.org/anttip/media_tree.git
8586 S:      Maintained
8587 F:      drivers/media/tuners/qt1010*
8588
8589 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8590 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8591 L:      linux-wireless@vger.kernel.org
8592 L:      ath9k-devel@lists.ath9k.org
8593 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8594 S:      Supported
8595 F:      drivers/net/wireless/ath/ath9k/
8596
8597 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8598 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8599 L:      ath10k@lists.infradead.org
8600 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8601 T:      git git://github.com/kvalo/ath.git
8602 S:      Supported
8603 F:      drivers/net/wireless/ath/ath10k/
8604
8605 QUALCOMM HEXAGON ARCHITECTURE
8606 M:      Richard Kuo <rkuo@codeaurora.org>
8607 L:      linux-hexagon@vger.kernel.org
8608 S:      Supported
8609 F:      arch/hexagon/
8610
8611 QUALCOMM WCN36XX WIRELESS DRIVER
8612 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8613 L:      wcn36xx@lists.infradead.org
8614 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8615 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8616 S:      Supported
8617 F:      drivers/net/wireless/ath/wcn36xx/
8618
8619 RADOS BLOCK DEVICE (RBD)
8620 M:      Ilya Dryomov <idryomov@gmail.com>
8621 M:      Sage Weil <sage@redhat.com>
8622 M:      Alex Elder <elder@kernel.org>
8623 L:      ceph-devel@vger.kernel.org
8624 W:      http://ceph.com/
8625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8626 T:      git git://github.com/ceph/ceph-client.git
8627 S:      Supported
8628 F:      Documentation/ABI/testing/sysfs-bus-rbd
8629 F:      drivers/block/rbd.c
8630 F:      drivers/block/rbd_types.h
8631
8632 RADEON FRAMEBUFFER DISPLAY DRIVER
8633 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8634 L:      linux-fbdev@vger.kernel.org
8635 S:      Maintained
8636 F:      drivers/video/fbdev/aty/radeon*
8637 F:      include/uapi/linux/radeonfb.h
8638
8639 RADIOSHARK RADIO DRIVER
8640 M:      Hans de Goede <hdegoede@redhat.com>
8641 L:      linux-media@vger.kernel.org
8642 T:      git git://linuxtv.org/media_tree.git
8643 S:      Maintained
8644 F:      drivers/media/radio/radio-shark.c
8645
8646 RADIOSHARK2 RADIO DRIVER
8647 M:      Hans de Goede <hdegoede@redhat.com>
8648 L:      linux-media@vger.kernel.org
8649 T:      git git://linuxtv.org/media_tree.git
8650 S:      Maintained
8651 F:      drivers/media/radio/radio-shark2.c
8652 F:      drivers/media/radio/radio-tea5777.c
8653
8654 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8655 M:      Paul Mackerras <paulus@samba.org>
8656 L:      linux-fbdev@vger.kernel.org
8657 S:      Maintained
8658 F:      drivers/video/fbdev/aty/aty128fb.c
8659
8660 RALINK RT2X00 WIRELESS LAN DRIVER
8661 P:      rt2x00 project
8662 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8663 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8664 L:      linux-wireless@vger.kernel.org
8665 S:      Maintained
8666 F:      drivers/net/wireless/rt2x00/
8667
8668 RAMDISK RAM BLOCK DEVICE DRIVER
8669 M:      Jens Axboe <axboe@kernel.dk>
8670 S:      Maintained
8671 F:      Documentation/blockdev/ramdisk.txt
8672 F:      drivers/block/brd.c
8673
8674 RANDOM NUMBER DRIVER
8675 M:      "Theodore Ts'o" <tytso@mit.edu>
8676 S:      Maintained
8677 F:      drivers/char/random.c
8678
8679 RAPIDIO SUBSYSTEM
8680 M:      Matt Porter <mporter@kernel.crashing.org>
8681 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8682 S:      Maintained
8683 F:      drivers/rapidio/
8684
8685 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8686 L:      linux-wireless@vger.kernel.org
8687 S:      Orphan
8688 F:      drivers/net/wireless/ray*
8689
8690 RCUTORTURE MODULE
8691 M:      Josh Triplett <josh@joshtriplett.org>
8692 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8693 L:      linux-kernel@vger.kernel.org
8694 S:      Supported
8695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8696 F:      Documentation/RCU/torture.txt
8697 F:      kernel/rcu/rcutorture.c
8698
8699 RCUTORTURE TEST FRAMEWORK
8700 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8701 M:      Josh Triplett <josh@joshtriplett.org>
8702 R:      Steven Rostedt <rostedt@goodmis.org>
8703 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8704 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8705 L:      linux-kernel@vger.kernel.org
8706 S:      Supported
8707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8708 F:      tools/testing/selftests/rcutorture
8709
8710 RDC R-321X SoC
8711 M:      Florian Fainelli <florian@openwrt.org>
8712 S:      Maintained
8713
8714 RDC R6040 FAST ETHERNET DRIVER
8715 M:      Florian Fainelli <florian@openwrt.org>
8716 L:      netdev@vger.kernel.org
8717 S:      Maintained
8718 F:      drivers/net/ethernet/rdc/r6040.c
8719
8720 RDS - RELIABLE DATAGRAM SOCKETS
8721 M:      Chien Yen <chien.yen@oracle.com>
8722 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8723 S:      Supported
8724 F:      net/rds/
8725
8726 READ-COPY UPDATE (RCU)
8727 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8728 M:      Josh Triplett <josh@joshtriplett.org>
8729 R:      Steven Rostedt <rostedt@goodmis.org>
8730 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8731 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8732 L:      linux-kernel@vger.kernel.org
8733 W:      http://www.rdrop.com/users/paulmck/RCU/
8734 S:      Supported
8735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8736 F:      Documentation/RCU/
8737 X:      Documentation/RCU/torture.txt
8738 F:      include/linux/rcu*
8739 X:      include/linux/srcu.h
8740 F:      kernel/rcu/
8741 X:      kernel/torture.c
8742
8743 REAL TIME CLOCK (RTC) SUBSYSTEM
8744 M:      Alessandro Zummo <a.zummo@towertech.it>
8745 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8746 L:      rtc-linux@googlegroups.com
8747 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8749 S:      Maintained
8750 F:      Documentation/rtc.txt
8751 F:      drivers/rtc/
8752 F:      include/linux/rtc.h
8753 F:      include/uapi/linux/rtc.h
8754
8755 REALTEK AUDIO CODECS
8756 M:      Bard Liao <bardliao@realtek.com>
8757 M:      Oder Chiou <oder_chiou@realtek.com>
8758 S:      Maintained
8759 F:      sound/soc/codecs/rt*
8760 F:      include/sound/rt*.h
8761
8762 REISERFS FILE SYSTEM
8763 L:      reiserfs-devel@vger.kernel.org
8764 S:      Supported
8765 F:      fs/reiserfs/
8766
8767 REGISTER MAP ABSTRACTION
8768 M:      Mark Brown <broonie@kernel.org>
8769 L:      linux-kernel@vger.kernel.org
8770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8771 S:      Supported
8772 F:      drivers/base/regmap/
8773 F:      include/linux/regmap.h
8774
8775 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8776 M:      Ohad Ben-Cohen <ohad@wizery.com>
8777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8778 S:      Maintained
8779 F:      drivers/remoteproc/
8780 F:      Documentation/remoteproc.txt
8781 F:      include/linux/remoteproc.h
8782
8783 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8784 M:      Ohad Ben-Cohen <ohad@wizery.com>
8785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8786 S:      Maintained
8787 F:      drivers/rpmsg/
8788 F:      Documentation/rpmsg.txt
8789 F:      include/linux/rpmsg.h
8790
8791 RESET CONTROLLER FRAMEWORK
8792 M:      Philipp Zabel <p.zabel@pengutronix.de>
8793 S:      Maintained
8794 F:      drivers/reset/
8795 F:      Documentation/devicetree/bindings/reset/
8796 F:      include/dt-bindings/reset/
8797 F:      include/linux/reset.h
8798 F:      include/linux/reset-controller.h
8799
8800 RFKILL
8801 M:      Johannes Berg <johannes@sipsolutions.net>
8802 L:      linux-wireless@vger.kernel.org
8803 W:      http://wireless.kernel.org/
8804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8806 S:      Maintained
8807 F:      Documentation/rfkill.txt
8808 F:      net/rfkill/
8809
8810 RHASHTABLE
8811 M:      Thomas Graf <tgraf@suug.ch>
8812 L:      netdev@vger.kernel.org
8813 S:      Maintained
8814 F:      lib/rhashtable.c
8815 F:      include/linux/rhashtable.h
8816
8817 RICOH SMARTMEDIA/XD DRIVER
8818 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8819 S:      Maintained
8820 F:      drivers/mtd/nand/r852.c
8821 F:      drivers/mtd/nand/r852.h
8822
8823 RICOH R5C592 MEMORYSTICK DRIVER
8824 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8825 S:      Maintained
8826 F:      drivers/memstick/host/r592.*
8827
8828 ROCCAT DRIVERS
8829 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8830 W:      http://sourceforge.net/projects/roccat/
8831 S:      Maintained
8832 F:      drivers/hid/hid-roccat*
8833 F:      include/linux/hid-roccat*
8834 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8835
8836 ROCKER DRIVER
8837 M:      Jiri Pirko <jiri@resnulli.us>
8838 M:      Scott Feldman <sfeldma@gmail.com>
8839 L:      netdev@vger.kernel.org
8840 S:      Supported
8841 F:      drivers/net/ethernet/rocker/
8842
8843 ROCKETPORT DRIVER
8844 P:      Comtrol Corp.
8845 W:      http://www.comtrol.com
8846 S:      Maintained
8847 F:      Documentation/serial/rocket.txt
8848 F:      drivers/tty/rocket*
8849
8850 ROCKETPORT EXPRESS/INFINITY DRIVER
8851 M:      Kevin Cernekee <cernekee@gmail.com>
8852 L:      linux-serial@vger.kernel.org
8853 S:      Odd Fixes
8854 F:      drivers/tty/serial/rp2.*
8855
8856 ROSE NETWORK LAYER
8857 M:      Ralf Baechle <ralf@linux-mips.org>
8858 L:      linux-hams@vger.kernel.org
8859 W:      http://www.linux-ax25.org/
8860 S:      Maintained
8861 F:      include/net/rose.h
8862 F:      include/uapi/linux/rose.h
8863 F:      net/rose/
8864
8865 RTL2830 MEDIA DRIVER
8866 M:      Antti Palosaari <crope@iki.fi>
8867 L:      linux-media@vger.kernel.org
8868 W:      http://linuxtv.org/
8869 W:      http://palosaari.fi/linux/
8870 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8871 T:      git git://linuxtv.org/anttip/media_tree.git
8872 S:      Maintained
8873 F:      drivers/media/dvb-frontends/rtl2830*
8874
8875 RTL2832 MEDIA DRIVER
8876 M:      Antti Palosaari <crope@iki.fi>
8877 L:      linux-media@vger.kernel.org
8878 W:      http://linuxtv.org/
8879 W:      http://palosaari.fi/linux/
8880 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8881 T:      git git://linuxtv.org/anttip/media_tree.git
8882 S:      Maintained
8883 F:      drivers/media/dvb-frontends/rtl2832*
8884
8885 RTL2832_SDR MEDIA DRIVER
8886 M:      Antti Palosaari <crope@iki.fi>
8887 L:      linux-media@vger.kernel.org
8888 W:      http://linuxtv.org/
8889 W:      http://palosaari.fi/linux/
8890 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8891 T:      git git://linuxtv.org/anttip/media_tree.git
8892 S:      Maintained
8893 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8894
8895 RTL8180 WIRELESS DRIVER
8896 L:      linux-wireless@vger.kernel.org
8897 W:      http://wireless.kernel.org/
8898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8899 S:      Orphan
8900 F:      drivers/net/wireless/rtl818x/rtl8180/
8901
8902 RTL8187 WIRELESS DRIVER
8903 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8904 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8905 M:      Larry Finger <Larry.Finger@lwfinger.net>
8906 L:      linux-wireless@vger.kernel.org
8907 W:      http://wireless.kernel.org/
8908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8909 S:      Maintained
8910 F:      drivers/net/wireless/rtl818x/rtl8187/
8911
8912 RTL8192CE WIRELESS DRIVER
8913 M:      Larry Finger <Larry.Finger@lwfinger.net>
8914 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8915 L:      linux-wireless@vger.kernel.org
8916 W:      http://wireless.kernel.org/
8917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8918 S:      Maintained
8919 F:      drivers/net/wireless/rtlwifi/
8920 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8921
8922 S3 SAVAGE FRAMEBUFFER DRIVER
8923 M:      Antonino Daplas <adaplas@gmail.com>
8924 L:      linux-fbdev@vger.kernel.org
8925 S:      Maintained
8926 F:      drivers/video/fbdev/savage/
8927
8928 S390
8929 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8930 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8931 L:      linux-s390@vger.kernel.org
8932 W:      http://www.ibm.com/developerworks/linux/linux390/
8933 S:      Supported
8934 F:      arch/s390/
8935 F:      drivers/s390/
8936 F:      Documentation/s390/
8937 F:      Documentation/DocBook/s390*
8938
8939 S390 COMMON I/O LAYER
8940 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8941 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8942 L:      linux-s390@vger.kernel.org
8943 W:      http://www.ibm.com/developerworks/linux/linux390/
8944 S:      Supported
8945 F:      drivers/s390/cio/
8946
8947 S390 DASD DRIVER
8948 M:      Stefan Weinhuber <wein@de.ibm.com>
8949 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8950 L:      linux-s390@vger.kernel.org
8951 W:      http://www.ibm.com/developerworks/linux/linux390/
8952 S:      Supported
8953 F:      drivers/s390/block/dasd*
8954 F:      block/partitions/ibm.c
8955
8956 S390 NETWORK DRIVERS
8957 M:      Ursula Braun <ursula.braun@de.ibm.com>
8958 L:      linux-s390@vger.kernel.org
8959 W:      http://www.ibm.com/developerworks/linux/linux390/
8960 S:      Supported
8961 F:      drivers/s390/net/
8962
8963 S390 PCI SUBSYSTEM
8964 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8965 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8966 L:      linux-s390@vger.kernel.org
8967 W:      http://www.ibm.com/developerworks/linux/linux390/
8968 S:      Supported
8969 F:      arch/s390/pci/
8970 F:      drivers/pci/hotplug/s390_pci_hpc.c
8971
8972 S390 ZCRYPT DRIVER
8973 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8974 L:      linux-s390@vger.kernel.org
8975 W:      http://www.ibm.com/developerworks/linux/linux390/
8976 S:      Supported
8977 F:      drivers/s390/crypto/
8978
8979 S390 ZFCP DRIVER
8980 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8981 L:      linux-s390@vger.kernel.org
8982 W:      http://www.ibm.com/developerworks/linux/linux390/
8983 S:      Supported
8984 F:      drivers/s390/scsi/zfcp_*
8985
8986 S390 IUCV NETWORK LAYER
8987 M:      Ursula Braun <ursula.braun@de.ibm.com>
8988 L:      linux-s390@vger.kernel.org
8989 W:      http://www.ibm.com/developerworks/linux/linux390/
8990 S:      Supported
8991 F:      drivers/s390/net/*iucv*
8992 F:      include/net/iucv/
8993 F:      net/iucv/
8994
8995 S3C24XX SD/MMC Driver
8996 M:      Ben Dooks <ben-linux@fluff.org>
8997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8998 S:      Supported
8999 F:      drivers/mmc/host/s3cmci.*
9000
9001 SAA6588 RDS RECEIVER DRIVER
9002 M:      Hans Verkuil <hverkuil@xs4all.nl>
9003 L:      linux-media@vger.kernel.org
9004 T:      git git://linuxtv.org/media_tree.git
9005 W:      http://linuxtv.org
9006 S:      Odd Fixes
9007 F:      drivers/media/i2c/saa6588*
9008
9009 SAA7134 VIDEO4LINUX DRIVER
9010 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9011 L:      linux-media@vger.kernel.org
9012 W:      http://linuxtv.org
9013 T:      git git://linuxtv.org/media_tree.git
9014 S:      Odd fixes
9015 F:      Documentation/video4linux/*.saa7134
9016 F:      drivers/media/pci/saa7134/
9017
9018 SAA7146 VIDEO4LINUX-2 DRIVER
9019 M:      Hans Verkuil <hverkuil@xs4all.nl>
9020 L:      linux-media@vger.kernel.org
9021 T:      git git://linuxtv.org/media_tree.git
9022 S:      Maintained
9023 F:      drivers/media/common/saa7146/
9024 F:      drivers/media/pci/saa7146/
9025 F:      include/media/saa7146*
9026
9027 SAMSUNG LAPTOP DRIVER
9028 M:      Corentin Chary <corentin.chary@gmail.com>
9029 L:      platform-driver-x86@vger.kernel.org
9030 S:      Maintained
9031 F:      drivers/platform/x86/samsung-laptop.c
9032
9033 SAMSUNG AUDIO (ASoC) DRIVERS
9034 M:      Sangbeom Kim <sbkim73@samsung.com>
9035 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9036 S:      Supported
9037 F:      sound/soc/samsung/
9038
9039 SAMSUNG FRAMEBUFFER DRIVER
9040 M:      Jingoo Han <jingoohan1@gmail.com>
9041 L:      linux-fbdev@vger.kernel.org
9042 S:      Maintained
9043 F:      drivers/video/fbdev/s3c-fb.c
9044
9045 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9046 M:      Sangbeom Kim <sbkim73@samsung.com>
9047 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9048 L:      linux-kernel@vger.kernel.org
9049 L:      linux-samsung-soc@vger.kernel.org
9050 S:      Supported
9051 F:      drivers/mfd/sec*.c
9052 F:      drivers/regulator/s2m*.c
9053 F:      drivers/regulator/s5m*.c
9054 F:      drivers/clk/clk-s2mps11.c
9055 F:      drivers/rtc/rtc-s5m.c
9056 F:      include/linux/mfd/samsung/
9057 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9058 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
9059
9060 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9061 M:      Kyungmin Park <kyungmin.park@samsung.com>
9062 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9063 L:      linux-media@vger.kernel.org
9064 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9065 S:      Supported
9066 F:      drivers/media/platform/exynos4-is/
9067
9068 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9069 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9070 L:      linux-media@vger.kernel.org
9071 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9072 S:      Maintained
9073 F:      drivers/media/platform/s3c-camif/
9074 F:      include/media/s3c_camif.h
9075
9076 SAMSUNG S5C73M3 CAMERA DRIVER
9077 M:      Kyungmin Park <kyungmin.park@samsung.com>
9078 M:      Andrzej Hajda <a.hajda@samsung.com>
9079 L:      linux-media@vger.kernel.org
9080 S:      Supported
9081 F:      drivers/media/i2c/s5c73m3/*
9082
9083 SAMSUNG S5K5BAF CAMERA DRIVER
9084 M:      Kyungmin Park <kyungmin.park@samsung.com>
9085 M:      Andrzej Hajda <a.hajda@samsung.com>
9086 L:      linux-media@vger.kernel.org
9087 S:      Supported
9088 F:      drivers/media/i2c/s5k5baf.c
9089
9090 SAMSUNG S3FWRN5 NFC DRIVER
9091 M:      Robert Baldyga <r.baldyga@samsung.com>
9092 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9093 S:      Supported
9094 F:      drivers/nfc/s3fwrn5
9095
9096 SAMSUNG SOC CLOCK DRIVERS
9097 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9098 M:      Tomasz Figa <tomasz.figa@gmail.com>
9099 S:      Supported
9100 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9101 F:      drivers/clk/samsung/
9102
9103 SAMSUNG SXGBE DRIVERS
9104 M:      Byungho An <bh74.an@samsung.com>
9105 M:      Girish K S <ks.giri@samsung.com>
9106 M:      Vipul Pandya <vipul.pandya@samsung.com>
9107 S:      Supported
9108 L:      netdev@vger.kernel.org
9109 F:      drivers/net/ethernet/samsung/sxgbe/
9110
9111 SAMSUNG THERMAL DRIVER
9112 M:      Lukasz Majewski <l.majewski@samsung.com>
9113 L:      linux-pm@vger.kernel.org
9114 L:      linux-samsung-soc@vger.kernel.org
9115 S:      Supported
9116 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9117 F:      drivers/thermal/samsung/
9118
9119 SAMSUNG USB2 PHY DRIVER
9120 M:      Kamil Debski <k.debski@samsung.com>
9121 L:      linux-kernel@vger.kernel.org
9122 S:      Supported
9123 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9124 F:      Documentation/phy/samsung-usb2.txt
9125 F:      drivers/phy/phy-exynos4210-usb2.c
9126 F:      drivers/phy/phy-exynos4x12-usb2.c
9127 F:      drivers/phy/phy-exynos5250-usb2.c
9128 F:      drivers/phy/phy-s5pv210-usb2.c
9129 F:      drivers/phy/phy-samsung-usb2.c
9130 F:      drivers/phy/phy-samsung-usb2.h
9131
9132 SERIAL DRIVERS
9133 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9134 L:      linux-serial@vger.kernel.org
9135 S:      Maintained
9136 F:      drivers/tty/serial/
9137
9138 SYNOPSYS DESIGNWARE DMAC DRIVER
9139 M:      Viresh Kumar <vireshk@kernel.org>
9140 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9141 S:      Maintained
9142 F:      include/linux/dma/dw.h
9143 F:      include/linux/platform_data/dma-dw.h
9144 F:      drivers/dma/dw/
9145
9146 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9147 M: Lars Persson <lars.persson@axis.com>
9148 L: netdev@vger.kernel.org
9149 S: Supported
9150 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9151 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9152
9153 SYNOPSYS DESIGNWARE I2C DRIVER
9154 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9155 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9156 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9157 L:      linux-i2c@vger.kernel.org
9158 S:      Maintained
9159 F:      drivers/i2c/busses/i2c-designware-*
9160 F:      include/linux/platform_data/i2c-designware.h
9161
9162 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9163 M:      Seungwon Jeon <tgih.jun@samsung.com>
9164 M:      Jaehoon Chung <jh80.chung@samsung.com>
9165 L:      linux-mmc@vger.kernel.org
9166 S:      Maintained
9167 F:      include/linux/mmc/dw_mmc.h
9168 F:      drivers/mmc/host/dw_mmc*
9169
9170 THUNDERBOLT DRIVER
9171 M:      Andreas Noever <andreas.noever@gmail.com>
9172 S:      Maintained
9173 F:      drivers/thunderbolt/
9174
9175 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9176 M:      John Stultz <john.stultz@linaro.org>
9177 M:      Thomas Gleixner <tglx@linutronix.de>
9178 L:      linux-kernel@vger.kernel.org
9179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9180 S:      Supported
9181 F:      include/linux/clocksource.h
9182 F:      include/linux/time.h
9183 F:      include/linux/timex.h
9184 F:      include/uapi/linux/time.h
9185 F:      include/uapi/linux/timex.h
9186 F:      kernel/time/clocksource.c
9187 F:      kernel/time/time*.c
9188 F:      kernel/time/ntp.c
9189 F:      tools/testing/selftests/timers/
9190
9191 SC1200 WDT DRIVER
9192 M:      Zwane Mwaikambo <zwanem@gmail.com>
9193 S:      Maintained
9194 F:      drivers/watchdog/sc1200wdt.c
9195
9196 SCHEDULER
9197 M:      Ingo Molnar <mingo@redhat.com>
9198 M:      Peter Zijlstra <peterz@infradead.org>
9199 L:      linux-kernel@vger.kernel.org
9200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9201 S:      Maintained
9202 F:      kernel/sched/
9203 F:      include/linux/sched.h
9204 F:      include/uapi/linux/sched.h
9205 F:      include/linux/wait.h
9206
9207 SCORE ARCHITECTURE
9208 M:      Chen Liqin <liqin.linux@gmail.com>
9209 M:      Lennox Wu <lennox.wu@gmail.com>
9210 W:      http://www.sunplus.com
9211 S:      Supported
9212 F:      arch/score/
9213
9214 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9215 M:      Sudeep Holla <sudeep.holla@arm.com>
9216 L:      linux-arm-kernel@lists.infradead.org
9217 S:      Maintained
9218 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9219 F:      drivers/clk/clk-scpi.c
9220 F:      drivers/cpufreq/scpi-cpufreq.c
9221 F:      drivers/firmware/arm_scpi.c
9222 F:      include/linux/scpi_protocol.h
9223
9224 SCSI CDROM DRIVER
9225 M:      Jens Axboe <axboe@kernel.dk>
9226 L:      linux-scsi@vger.kernel.org
9227 W:      http://www.kernel.dk
9228 S:      Maintained
9229 F:      drivers/scsi/sr*
9230
9231 SCSI RDMA PROTOCOL (SRP) INITIATOR
9232 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9233 L:      linux-rdma@vger.kernel.org
9234 S:      Supported
9235 W:      http://www.openfabrics.org
9236 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9238 F:      drivers/infiniband/ulp/srp/
9239 F:      include/scsi/srp.h
9240
9241 SCSI SG DRIVER
9242 M:      Doug Gilbert <dgilbert@interlog.com>
9243 L:      linux-scsi@vger.kernel.org
9244 W:      http://sg.danny.cz/sg
9245 S:      Maintained
9246 F:      Documentation/scsi/scsi-generic.txt
9247 F:      drivers/scsi/sg.c
9248 F:      include/scsi/sg.h
9249
9250 SCSI SUBSYSTEM
9251 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9252 L:      linux-scsi@vger.kernel.org
9253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9254 S:      Maintained
9255 F:      drivers/scsi/
9256 F:      include/scsi/
9257
9258 SCSI TAPE DRIVER
9259 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9260 L:      linux-scsi@vger.kernel.org
9261 S:      Maintained
9262 F:      Documentation/scsi/st.txt
9263 F:      drivers/scsi/st.*
9264 F:      drivers/scsi/st_*.h
9265
9266 SCTP PROTOCOL
9267 M:      Vlad Yasevich <vyasevich@gmail.com>
9268 M:      Neil Horman <nhorman@tuxdriver.com>
9269 L:      linux-sctp@vger.kernel.org
9270 W:      http://lksctp.sourceforge.net
9271 S:      Maintained
9272 F:      Documentation/networking/sctp.txt
9273 F:      include/linux/sctp.h
9274 F:      include/uapi/linux/sctp.h
9275 F:      include/net/sctp/
9276 F:      net/sctp/
9277
9278 SCx200 CPU SUPPORT
9279 M:      Jim Cromie <jim.cromie@gmail.com>
9280 S:      Odd Fixes
9281 F:      Documentation/i2c/busses/scx200_acb
9282 F:      arch/x86/platform/scx200/
9283 F:      drivers/watchdog/scx200_wdt.c
9284 F:      drivers/i2c/busses/scx200*
9285 F:      drivers/mtd/maps/scx200_docflash.c
9286 F:      include/linux/scx200.h
9287
9288 SCx200 GPIO DRIVER
9289 M:      Jim Cromie <jim.cromie@gmail.com>
9290 S:      Maintained
9291 F:      drivers/char/scx200_gpio.c
9292 F:      include/linux/scx200_gpio.h
9293
9294 SCx200 HRT CLOCKSOURCE DRIVER
9295 M:      Jim Cromie <jim.cromie@gmail.com>
9296 S:      Maintained
9297 F:      drivers/clocksource/scx200_hrt.c
9298
9299 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9300 M:      Sascha Sommer <saschasommer@freenet.de>
9301 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9302 S:      Maintained
9303 F:      drivers/mmc/host/sdricoh_cs.c
9304
9305 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9306 L:      linux-mmc@vger.kernel.org
9307 S:      Orphan
9308 F:      drivers/mmc/host/sdhci.*
9309 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9310
9311 SECURE COMPUTING
9312 M:      Kees Cook <keescook@chromium.org>
9313 R:      Andy Lutomirski <luto@amacapital.net>
9314 R:      Will Drewry <wad@chromium.org>
9315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9316 S:      Supported
9317 F:      kernel/seccomp.c
9318 F:      include/uapi/linux/seccomp.h
9319 F:      include/linux/seccomp.h
9320 F:      tools/testing/selftests/seccomp/*
9321 K:      \bsecure_computing
9322 K:      \bTIF_SECCOMP\b
9323
9324 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9325 M:      Ben Dooks <ben-linux@fluff.org>
9326 M:      Jaehoon Chung <jh80.chung@samsung.com>
9327 L:      linux-mmc@vger.kernel.org
9328 S:      Maintained
9329 F:      drivers/mmc/host/sdhci-s3c*
9330
9331 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9332 M:      Viresh Kumar <vireshk@kernel.org>
9333 L:      spear-devel@list.st.com
9334 L:      linux-mmc@vger.kernel.org
9335 S:      Maintained
9336 F:      drivers/mmc/host/sdhci-spear.c
9337
9338 SECURITY SUBSYSTEM
9339 M:      James Morris <james.l.morris@oracle.com>
9340 M:      "Serge E. Hallyn" <serge@hallyn.com>
9341 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9343 W:      http://kernsec.org/
9344 S:      Supported
9345 F:      security/
9346
9347 SECURITY CONTACT
9348 M:      Security Officers <security@kernel.org>
9349 S:      Supported
9350
9351 SELINUX SECURITY MODULE
9352 M:      Paul Moore <paul@paul-moore.com>
9353 M:      Stephen Smalley <sds@tycho.nsa.gov>
9354 M:      Eric Paris <eparis@parisplace.org>
9355 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9356 W:      http://selinuxproject.org
9357 T:      git git://git.infradead.org/users/pcmoore/selinux
9358 S:      Supported
9359 F:      include/linux/selinux*
9360 F:      security/selinux/
9361 F:      scripts/selinux/
9362
9363 APPARMOR SECURITY MODULE
9364 M:      John Johansen <john.johansen@canonical.com>
9365 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9366 W:      apparmor.wiki.kernel.org
9367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9368 S:      Supported
9369 F:      security/apparmor/
9370
9371 YAMA SECURITY MODULE
9372 M:      Kees Cook <keescook@chromium.org>
9373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9374 S:      Supported
9375 F:      security/yama/
9376
9377 SENSABLE PHANTOM
9378 M:      Jiri Slaby <jirislaby@gmail.com>
9379 S:      Maintained
9380 F:      drivers/misc/phantom.c
9381 F:      include/uapi/linux/phantom.h
9382
9383 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9384 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9385 M:      Minh Tran <minh.tran@avagotech.com>
9386 M:      John Soni Jose <sony.john-n@avagotech.com>
9387 L:      linux-scsi@vger.kernel.org
9388 W:      http://www.avagotech.com
9389 S:      Supported
9390 F:      drivers/scsi/be2iscsi/
9391
9392 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9393 M:      Sathya Perla <sathya.perla@avagotech.com>
9394 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9395 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9396 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9397 L:      netdev@vger.kernel.org
9398 W:      http://www.emulex.com
9399 S:      Supported
9400 F:      drivers/net/ethernet/emulex/benet/
9401
9402 EMULEX ONECONNECT ROCE DRIVER
9403 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9404 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9405 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9406 L:      linux-rdma@vger.kernel.org
9407 W:      http://www.emulex.com
9408 S:      Supported
9409 F:      drivers/infiniband/hw/ocrdma/
9410
9411 SFC NETWORK DRIVER
9412 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9413 M:      Shradha Shah <sshah@solarflare.com>
9414 L:      netdev@vger.kernel.org
9415 S:      Supported
9416 F:      drivers/net/ethernet/sfc/
9417
9418 SGI GRU DRIVER
9419 M:      Dimitri Sivanich <sivanich@sgi.com>
9420 S:      Maintained
9421 F:      drivers/misc/sgi-gru/
9422
9423 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9424 M:      Pat Gefre <pfg@sgi.com>
9425 L:      linux-ia64@vger.kernel.org
9426 S:      Supported
9427 F:      Documentation/ia64/serial.txt
9428 F:      drivers/tty/serial/ioc?_serial.c
9429 F:      include/linux/ioc?.h
9430
9431 SGI XP/XPC/XPNET DRIVER
9432 M:      Cliff Whickman <cpw@sgi.com>
9433 M:      Robin Holt <robinmholt@gmail.com>
9434 S:      Maintained
9435 F:      drivers/misc/sgi-xp/
9436
9437 SI2157 MEDIA DRIVER
9438 M:      Antti Palosaari <crope@iki.fi>
9439 L:      linux-media@vger.kernel.org
9440 W:      http://linuxtv.org/
9441 W:      http://palosaari.fi/linux/
9442 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9443 T:      git git://linuxtv.org/anttip/media_tree.git
9444 S:      Maintained
9445 F:      drivers/media/tuners/si2157*
9446
9447 SI2168 MEDIA DRIVER
9448 M:      Antti Palosaari <crope@iki.fi>
9449 L:      linux-media@vger.kernel.org
9450 W:      http://linuxtv.org/
9451 W:      http://palosaari.fi/linux/
9452 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9453 T:      git git://linuxtv.org/anttip/media_tree.git
9454 S:      Maintained
9455 F:      drivers/media/dvb-frontends/si2168*
9456
9457 SI470X FM RADIO RECEIVER I2C DRIVER
9458 M:      Hans Verkuil <hverkuil@xs4all.nl>
9459 L:      linux-media@vger.kernel.org
9460 T:      git git://linuxtv.org/media_tree.git
9461 W:      http://linuxtv.org
9462 S:      Odd Fixes
9463 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9464
9465 SI470X FM RADIO RECEIVER USB DRIVER
9466 M:      Hans Verkuil <hverkuil@xs4all.nl>
9467 L:      linux-media@vger.kernel.org
9468 T:      git git://linuxtv.org/media_tree.git
9469 W:      http://linuxtv.org
9470 S:      Maintained
9471 F:      drivers/media/radio/si470x/radio-si470x-common.c
9472 F:      drivers/media/radio/si470x/radio-si470x.h
9473 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9474
9475 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9476 M:      Eduardo Valentin <edubezval@gmail.com>
9477 L:      linux-media@vger.kernel.org
9478 T:      git git://linuxtv.org/media_tree.git
9479 W:      http://linuxtv.org
9480 S:      Odd Fixes
9481 F:      drivers/media/radio/si4713/si4713.?
9482
9483 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9484 M:      Eduardo Valentin <edubezval@gmail.com>
9485 L:      linux-media@vger.kernel.org
9486 T:      git git://linuxtv.org/media_tree.git
9487 W:      http://linuxtv.org
9488 S:      Odd Fixes
9489 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9490
9491 SI4713 FM RADIO TRANSMITTER USB DRIVER
9492 M:      Hans Verkuil <hverkuil@xs4all.nl>
9493 L:      linux-media@vger.kernel.org
9494 T:      git git://linuxtv.org/media_tree.git
9495 W:      http://linuxtv.org
9496 S:      Maintained
9497 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9498
9499 SIANO DVB DRIVER
9500 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9501 L:      linux-media@vger.kernel.org
9502 W:      http://linuxtv.org
9503 T:      git git://linuxtv.org/media_tree.git
9504 S:      Odd fixes
9505 F:      drivers/media/common/siano/
9506 F:      drivers/media/usb/siano/
9507 F:      drivers/media/usb/siano/
9508 F:      drivers/media/mmc/siano/
9509
9510 SIMPLEFB FB DRIVER
9511 M:      Hans de Goede <hdegoede@redhat.com>
9512 L:      linux-fbdev@vger.kernel.org
9513 S:      Maintained
9514 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9515 F:      drivers/video/fbdev/simplefb.c
9516 F:      include/linux/platform_data/simplefb.h
9517
9518 SH_VEU V4L2 MEM2MEM DRIVER
9519 L:      linux-media@vger.kernel.org
9520 S:      Orphan
9521 F:      drivers/media/platform/sh_veu.c
9522
9523 SH_VOU V4L2 OUTPUT DRIVER
9524 L:      linux-media@vger.kernel.org
9525 S:      Orphan
9526 F:      drivers/media/platform/sh_vou.c
9527 F:      include/media/sh_vou.h
9528
9529 SIMPLE FIRMWARE INTERFACE (SFI)
9530 M:      Len Brown <lenb@kernel.org>
9531 L:      sfi-devel@simplefirmware.org
9532 W:      http://simplefirmware.org/
9533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9534 S:      Supported
9535 F:      arch/x86/platform/sfi/
9536 F:      drivers/sfi/
9537 F:      include/linux/sfi*.h
9538
9539 SIMTEC EB110ATX (Chalice CATS)
9540 P:      Ben Dooks
9541 P:      Vincent Sanders <vince@simtec.co.uk>
9542 M:      Simtec Linux Team <linux@simtec.co.uk>
9543 W:      http://www.simtec.co.uk/products/EB110ATX/
9544 S:      Supported
9545
9546 SIMTEC EB2410ITX (BAST)
9547 P:      Ben Dooks
9548 P:      Vincent Sanders <vince@simtec.co.uk>
9549 M:      Simtec Linux Team <linux@simtec.co.uk>
9550 W:      http://www.simtec.co.uk/products/EB2410ITX/
9551 S:      Supported
9552 F:      arch/arm/mach-s3c24xx/mach-bast.c
9553 F:      arch/arm/mach-s3c24xx/bast-ide.c
9554 F:      arch/arm/mach-s3c24xx/bast-irq.c
9555
9556 TI DAVINCI MACHINE SUPPORT
9557 M:      Sekhar Nori <nsekhar@ti.com>
9558 M:      Kevin Hilman <khilman@deeprootsystems.com>
9559 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9560 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9561 S:      Supported
9562 F:      arch/arm/mach-davinci/
9563 F:      drivers/i2c/busses/i2c-davinci.c
9564
9565 TI DAVINCI SERIES MEDIA DRIVER
9566 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9567 L:      linux-media@vger.kernel.org
9568 W:      http://linuxtv.org/
9569 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9570 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9571 S:      Maintained
9572 F:      drivers/media/platform/davinci/
9573 F:      include/media/davinci/
9574
9575 TI AM437X VPFE DRIVER
9576 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9577 L:      linux-media@vger.kernel.org
9578 W:      http://linuxtv.org/
9579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9580 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9581 S:      Maintained
9582 F:      drivers/media/platform/am437x/
9583
9584 OV2659 OMNIVISION SENSOR DRIVER
9585 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9586 L:      linux-media@vger.kernel.org
9587 W:      http://linuxtv.org/
9588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9589 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9590 S:      Maintained
9591 F:      drivers/media/i2c/ov2659.c
9592 F:      include/media/ov2659.h
9593
9594 SILICON MOTION SM712 FRAME BUFFER DRIVER
9595 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9596 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9597 M:      Sudip Mukherjee <sudip@vectorindia.org>
9598 L:      linux-fbdev@vger.kernel.org
9599 S:      Maintained
9600 F:      drivers/video/fbdev/sm712*
9601 F:      Documentation/fb/sm712fb.txt
9602
9603 SIS 190 ETHERNET DRIVER
9604 M:      Francois Romieu <romieu@fr.zoreil.com>
9605 L:      netdev@vger.kernel.org
9606 S:      Maintained
9607 F:      drivers/net/ethernet/sis/sis190.c
9608
9609 SIS 900/7016 FAST ETHERNET DRIVER
9610 M:      Daniele Venzano <venza@brownhat.org>
9611 W:      http://www.brownhat.org/sis900.html
9612 L:      netdev@vger.kernel.org
9613 S:      Maintained
9614 F:      drivers/net/ethernet/sis/sis900.*
9615
9616 SIS FRAMEBUFFER DRIVER
9617 M:      Thomas Winischhofer <thomas@winischhofer.net>
9618 W:      http://www.winischhofer.net/linuxsisvga.shtml
9619 S:      Maintained
9620 F:      Documentation/fb/sisfb.txt
9621 F:      drivers/video/fbdev/sis/
9622 F:      include/video/sisfb.h
9623
9624 SIS USB2VGA DRIVER
9625 M:      Thomas Winischhofer <thomas@winischhofer.net>
9626 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9627 S:      Maintained
9628 F:      drivers/usb/misc/sisusbvga/
9629
9630 SLAB ALLOCATOR
9631 M:      Christoph Lameter <cl@linux.com>
9632 M:      Pekka Enberg <penberg@kernel.org>
9633 M:      David Rientjes <rientjes@google.com>
9634 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9635 M:      Andrew Morton <akpm@linux-foundation.org>
9636 L:      linux-mm@kvack.org
9637 S:      Maintained
9638 F:      include/linux/sl?b*.h
9639 F:      mm/sl?b*
9640
9641 SLEEPABLE READ-COPY UPDATE (SRCU)
9642 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9643 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9644 M:      Josh Triplett <josh@joshtriplett.org>
9645 R:      Steven Rostedt <rostedt@goodmis.org>
9646 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9647 L:      linux-kernel@vger.kernel.org
9648 W:      http://www.rdrop.com/users/paulmck/RCU/
9649 S:      Supported
9650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9651 F:      include/linux/srcu.h
9652 F:      kernel/rcu/srcu.c
9653
9654 SMACK SECURITY MODULE
9655 M:      Casey Schaufler <casey@schaufler-ca.com>
9656 L:      linux-security-module@vger.kernel.org
9657 W:      http://schaufler-ca.com
9658 T:      git git://git.gitorious.org/smack-next/kernel.git
9659 S:      Maintained
9660 F:      Documentation/security/Smack.txt
9661 F:      security/smack/
9662
9663 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9664 M:      Kevin Hilman <khilman@kernel.org>
9665 M:      Nishanth Menon <nm@ti.com>
9666 S:      Maintained
9667 F:      drivers/power/avs/
9668 F:      include/linux/power/smartreflex.h
9669 L:      linux-pm@vger.kernel.org
9670
9671 SMC91x ETHERNET DRIVER
9672 M:      Nicolas Pitre <nico@fluxnic.net>
9673 S:      Odd Fixes
9674 F:      drivers/net/ethernet/smsc/smc91x.*
9675
9676 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9677 M:      Sakari Ailus <sakari.ailus@iki.fi>
9678 L:      linux-media@vger.kernel.org
9679 S:      Maintained
9680 F:      drivers/media/i2c/smiapp/
9681 F:      include/media/smiapp.h
9682 F:      drivers/media/i2c/smiapp-pll.c
9683 F:      drivers/media/i2c/smiapp-pll.h
9684 F:      include/uapi/linux/smiapp.h
9685 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9686
9687 SMM665 HARDWARE MONITOR DRIVER
9688 M:      Guenter Roeck <linux@roeck-us.net>
9689 L:      lm-sensors@lm-sensors.org
9690 S:      Maintained
9691 F:      Documentation/hwmon/smm665
9692 F:      drivers/hwmon/smm665.c
9693
9694 SMSC EMC2103 HARDWARE MONITOR DRIVER
9695 M:      Steve Glendinning <steve.glendinning@shawell.net>
9696 L:      lm-sensors@lm-sensors.org
9697 S:      Maintained
9698 F:      Documentation/hwmon/emc2103
9699 F:      drivers/hwmon/emc2103.c
9700
9701 SMSC SCH5627 HARDWARE MONITOR DRIVER
9702 M:      Hans de Goede <hdegoede@redhat.com>
9703 L:      lm-sensors@lm-sensors.org
9704 S:      Supported
9705 F:      Documentation/hwmon/sch5627
9706 F:      drivers/hwmon/sch5627.c
9707
9708 SMSC47B397 HARDWARE MONITOR DRIVER
9709 M:      Jean Delvare <jdelvare@suse.com>
9710 L:      lm-sensors@lm-sensors.org
9711 S:      Maintained
9712 F:      Documentation/hwmon/smsc47b397
9713 F:      drivers/hwmon/smsc47b397.c
9714
9715 SMSC911x ETHERNET DRIVER
9716 M:      Steve Glendinning <steve.glendinning@shawell.net>
9717 L:      netdev@vger.kernel.org
9718 S:      Maintained
9719 F:      include/linux/smsc911x.h
9720 F:      drivers/net/ethernet/smsc/smsc911x.*
9721
9722 SMSC9420 PCI ETHERNET DRIVER
9723 M:      Steve Glendinning <steve.glendinning@shawell.net>
9724 L:      netdev@vger.kernel.org
9725 S:      Maintained
9726 F:      drivers/net/ethernet/smsc/smsc9420.*
9727
9728 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9729 M:      Steve Glendinning <steve.glendinning@shawell.net>
9730 L:      linux-fbdev@vger.kernel.org
9731 S:      Maintained
9732 F:      drivers/video/fbdev/smscufx.c
9733
9734 SOC-CAMERA V4L2 SUBSYSTEM
9735 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9736 L:      linux-media@vger.kernel.org
9737 T:      git git://linuxtv.org/media_tree.git
9738 S:      Maintained
9739 F:      include/media/soc*
9740 F:      drivers/media/i2c/soc_camera/
9741 F:      drivers/media/platform/soc_camera/
9742
9743 SOEKRIS NET48XX LED SUPPORT
9744 M:      Chris Boot <bootc@bootc.net>
9745 S:      Maintained
9746 F:      drivers/leds/leds-net48xx.c
9747
9748 SOFTLOGIC 6x10 MPEG CODEC
9749 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9750 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9751 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9752 M:      Ismael Luceno <ismael@iodev.co.uk>
9753 L:      linux-media@vger.kernel.org
9754 S:      Supported
9755 F:      drivers/media/pci/solo6x10/
9756
9757 SOFTWARE RAID (Multiple Disks) SUPPORT
9758 M:      Neil Brown <neilb@suse.com>
9759 L:      linux-raid@vger.kernel.org
9760 S:      Supported
9761 F:      drivers/md/
9762 F:      include/linux/raid/
9763 F:      include/uapi/linux/raid/
9764
9765 SONIC NETWORK DRIVER
9766 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9767 L:      netdev@vger.kernel.org
9768 S:      Maintained
9769 F:      drivers/net/ethernet/natsemi/sonic.*
9770
9771 SONICS SILICON BACKPLANE DRIVER (SSB)
9772 M:      Michael Buesch <m@bues.ch>
9773 L:      netdev@vger.kernel.org
9774 S:      Maintained
9775 F:      drivers/ssb/
9776 F:      include/linux/ssb/
9777
9778 SONY VAIO CONTROL DEVICE DRIVER
9779 M:      Mattia Dongili <malattia@linux.it>
9780 L:      platform-driver-x86@vger.kernel.org
9781 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9782 S:      Maintained
9783 F:      Documentation/laptops/sony-laptop.txt
9784 F:      drivers/char/sonypi.c
9785 F:      drivers/platform/x86/sony-laptop.c
9786 F:      include/linux/sony-laptop.h
9787
9788 SONY MEMORYSTICK CARD SUPPORT
9789 M:      Alex Dubov <oakad@yahoo.com>
9790 W:      http://tifmxx.berlios.de/
9791 S:      Maintained
9792 F:      drivers/memstick/host/tifm_ms.c
9793
9794 SONY MEMORYSTICK STANDARD SUPPORT
9795 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9796 S:      Maintained
9797 F:      drivers/memstick/core/ms_block.*
9798
9799 SOUND
9800 M:      Jaroslav Kysela <perex@perex.cz>
9801 M:      Takashi Iwai <tiwai@suse.com>
9802 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9803 W:      http://www.alsa-project.org/
9804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9805 T:      git git://git.alsa-project.org/alsa-kernel.git
9806 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9807 S:      Maintained
9808 F:      Documentation/sound/
9809 F:      include/sound/
9810 F:      include/uapi/sound/
9811 F:      sound/
9812
9813 SOUND - COMPRESSED AUDIO
9814 M:      Vinod Koul <vinod.koul@intel.com>
9815 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9817 S:      Supported
9818 F:      Documentation/sound/alsa/compress_offload.txt
9819 F:      include/sound/compress_driver.h
9820 F:      include/uapi/sound/compress_*
9821 F:      sound/core/compress_offload.c
9822 F:      sound/soc/soc-compress.c
9823
9824 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9825 M:      Liam Girdwood <lgirdwood@gmail.com>
9826 M:      Mark Brown <broonie@kernel.org>
9827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9828 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9829 W:      http://alsa-project.org/main/index.php/ASoC
9830 S:      Supported
9831 F:      Documentation/sound/alsa/soc/
9832 F:      sound/soc/
9833 F:      include/sound/soc*
9834
9835 SOUND - DMAENGINE HELPERS
9836 M:      Lars-Peter Clausen <lars@metafoo.de>
9837 S:      Supported
9838 F:      include/sound/dmaengine_pcm.h
9839 F:      sound/core/pcm_dmaengine.c
9840 F:      sound/soc/soc-generic-dmaengine-pcm.c
9841
9842 SP2 MEDIA DRIVER
9843 M:      Olli Salonen <olli.salonen@iki.fi>
9844 L:      linux-media@vger.kernel.org
9845 W:      http://linuxtv.org/
9846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9847 S:      Maintained
9848 F:      drivers/media/dvb-frontends/sp2*
9849
9850 SPARC + UltraSPARC (sparc/sparc64)
9851 M:      "David S. Miller" <davem@davemloft.net>
9852 L:      sparclinux@vger.kernel.org
9853 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9856 S:      Maintained
9857 F:      arch/sparc/
9858 F:      drivers/sbus/
9859
9860 SPARC SERIAL DRIVERS
9861 M:      "David S. Miller" <davem@davemloft.net>
9862 L:      sparclinux@vger.kernel.org
9863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9865 S:      Maintained
9866 F:      include/linux/sunserialcore.h
9867 F:      drivers/tty/serial/suncore.c
9868 F:      drivers/tty/serial/sunhv.c
9869 F:      drivers/tty/serial/sunsab.c
9870 F:      drivers/tty/serial/sunsab.h
9871 F:      drivers/tty/serial/sunsu.c
9872 F:      drivers/tty/serial/sunzilog.c
9873 F:      drivers/tty/serial/sunzilog.h
9874
9875 SPARSE CHECKER
9876 M:      "Christopher Li" <sparse@chrisli.org>
9877 L:      linux-sparse@vger.kernel.org
9878 W:      https://sparse.wiki.kernel.org/
9879 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9880 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9881 S:      Maintained
9882 F:      include/linux/compiler.h
9883
9884 SPEAR PLATFORM SUPPORT
9885 M:      Viresh Kumar <vireshk@kernel.org>
9886 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9887 L:      spear-devel@list.st.com
9888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9889 W:      http://www.st.com/spear
9890 S:      Maintained
9891 F:      arch/arm/mach-spear/
9892
9893 SPEAR CLOCK FRAMEWORK SUPPORT
9894 M:      Viresh Kumar <vireshk@kernel.org>
9895 L:      spear-devel@list.st.com
9896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9897 W:      http://www.st.com/spear
9898 S:      Maintained
9899 F:      drivers/clk/spear/
9900
9901 SPI SUBSYSTEM
9902 M:      Mark Brown <broonie@kernel.org>
9903 L:      linux-spi@vger.kernel.org
9904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9905 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9906 S:      Maintained
9907 F:      Documentation/spi/
9908 F:      drivers/spi/
9909 F:      include/linux/spi/
9910 F:      include/uapi/linux/spi/
9911
9912 SPIDERNET NETWORK DRIVER for CELL
9913 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9914 L:      netdev@vger.kernel.org
9915 S:      Supported
9916 F:      Documentation/networking/spider_net.txt
9917 F:      drivers/net/ethernet/toshiba/spider_net*
9918
9919 SPU FILE SYSTEM
9920 M:      Jeremy Kerr <jk@ozlabs.org>
9921 L:      linuxppc-dev@lists.ozlabs.org
9922 W:      http://www.ibm.com/developerworks/power/cell/
9923 S:      Supported
9924 F:      Documentation/filesystems/spufs.txt
9925 F:      arch/powerpc/platforms/cell/spufs/
9926
9927 SQUASHFS FILE SYSTEM
9928 M:      Phillip Lougher <phillip@squashfs.org.uk>
9929 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9930 W:      http://squashfs.org.uk
9931 S:      Maintained
9932 F:      Documentation/filesystems/squashfs.txt
9933 F:      fs/squashfs/
9934
9935 SRM (Alpha) environment access
9936 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9937 S:      Maintained
9938 F:      arch/alpha/kernel/srm_env.c
9939
9940 STABLE BRANCH
9941 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9942 L:      stable@vger.kernel.org
9943 S:      Supported
9944 F:      Documentation/stable_kernel_rules.txt
9945
9946 STAGING SUBSYSTEM
9947 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9949 L:      devel@driverdev.osuosl.org
9950 S:      Supported
9951 F:      drivers/staging/
9952
9953 STAGING - COMEDI
9954 M:      Ian Abbott <abbotti@mev.co.uk>
9955 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9956 S:      Odd Fixes
9957 F:      drivers/staging/comedi/
9958
9959 STAGING - FLARION FT1000 DRIVERS
9960 M:      Marek Belisko <marek.belisko@gmail.com>
9961 S:      Odd Fixes
9962 F:      drivers/staging/ft1000/
9963
9964 STAGING - INDUSTRIAL IO
9965 M:      Jonathan Cameron <jic23@kernel.org>
9966 L:      linux-iio@vger.kernel.org
9967 S:      Odd Fixes
9968 F:      drivers/staging/iio/
9969
9970 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9971 M:      Jarod Wilson <jarod@wilsonet.com>
9972 W:      http://www.lirc.org/
9973 S:      Odd Fixes
9974 F:      drivers/staging/media/lirc/
9975
9976 STAGING - LUSTRE PARALLEL FILESYSTEM
9977 M:      Oleg Drokin <oleg.drokin@intel.com>
9978 M:      Andreas Dilger <andreas.dilger@intel.com>
9979 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
9980 W:      http://wiki.lustre.org/
9981 S:      Maintained
9982 F:      drivers/staging/lustre
9983
9984 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9985 M:      Marc Dietrich <marvin24@gmx.de>
9986 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9987 L:      linux-tegra@vger.kernel.org
9988 S:      Maintained
9989 F:      drivers/staging/nvec/
9990
9991 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9992 M:      Jens Frederich <jfrederich@gmail.com>
9993 M:      Daniel Drake <dsd@laptop.org>
9994 M:      Jon Nettleton <jon.nettleton@gmail.com>
9995 W:      http://wiki.laptop.org/go/DCON
9996 S:      Maintained
9997 F:      drivers/staging/olpc_dcon/
9998
9999 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10000 M:      Willy Tarreau <willy@meta-x.org>
10001 S:      Odd Fixes
10002 F:      drivers/staging/panel/
10003
10004 STAGING - REALTEK RTL8712U DRIVERS
10005 M:      Larry Finger <Larry.Finger@lwfinger.net>
10006 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10007 S:      Odd Fixes
10008 F:      drivers/staging/rtl8712/
10009
10010 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10011 M:      Larry Finger <Larry.Finger@lwfinger.net>
10012 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10013 L:      linux-wireless@vger.kernel.org
10014 S:      Maintained
10015 F:      drivers/staging/rtl8723au/
10016
10017 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10018 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10019 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10020 M:      Sudip Mukherjee <sudip@vectorindia.org>
10021 L:      linux-fbdev@vger.kernel.org
10022 S:      Maintained
10023 F:      drivers/staging/sm750fb/
10024
10025 STAGING - SLICOSS
10026 M:      Lior Dotan <liodot@gmail.com>
10027 M:      Christopher Harrer <charrer@alacritech.com>
10028 S:      Odd Fixes
10029 F:      drivers/staging/slicoss/
10030
10031 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10032 M:      William Hubbs <w.d.hubbs@gmail.com>
10033 M:      Chris Brannon <chris@the-brannons.com>
10034 M:      Kirk Reiser <kirk@reisers.ca>
10035 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10036 L:      speakup@linux-speakup.org
10037 W:      http://www.linux-speakup.org/
10038 S:      Odd Fixes
10039 F:      drivers/staging/speakup/
10040
10041 STAGING - VIA VT665X DRIVERS
10042 M:      Forest Bond <forest@alittletooquiet.net>
10043 S:      Odd Fixes
10044 F:      drivers/staging/vt665?/
10045
10046 STAGING - WILC1000 WIFI DRIVER
10047 M:      Johnny Kim <johnny.kim@atmel.com>
10048 M:      Rachel Kim <rachel.kim@atmel.com>
10049 M:      Dean Lee <dean.lee@atmel.com>
10050 M:      Chris Park <chris.park@atmel.com>
10051 L:      linux-wireless@vger.kernel.org
10052 S:      Supported
10053 F:      drivers/staging/wilc1000/
10054
10055 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10056 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10057 S:      Odd Fixes
10058 F:      drivers/staging/xgifb/
10059
10060 HFI1 DRIVER
10061 M:      Mike Marciniszyn <infinipath@intel.com>
10062 L:      linux-rdma@vger.kernel.org
10063 S:      Supported
10064 F:      drivers/staging/rdma/hfi1
10065
10066 STARFIRE/DURALAN NETWORK DRIVER
10067 M:      Ion Badulescu <ionut@badula.org>
10068 S:      Odd Fixes
10069 F:      drivers/net/ethernet/adaptec/starfire*
10070
10071 SUN3/3X
10072 M:      Sam Creasey <sammy@sammy.net>
10073 W:      http://sammy.net/sun3/
10074 S:      Maintained
10075 F:      arch/m68k/kernel/*sun3*
10076 F:      arch/m68k/sun3*/
10077 F:      arch/m68k/include/asm/sun3*
10078 F:      drivers/net/ethernet/i825xx/sun3*
10079
10080 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10081 M:      Hans de Goede <hdegoede@redhat.com>
10082 L:      linux-input@vger.kernel.org
10083 S:      Maintained
10084 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10085 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10086
10087 SUNDANCE NETWORK DRIVER
10088 M:      Denis Kirjanov <kda@linux-powerpc.org>
10089 L:      netdev@vger.kernel.org
10090 S:      Maintained
10091 F:      drivers/net/ethernet/dlink/sundance.c
10092
10093 SUPERH
10094 L:      linux-sh@vger.kernel.org
10095 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10096 S:      Orphan
10097 F:      Documentation/sh/
10098 F:      arch/sh/
10099 F:      drivers/sh/
10100
10101 SUSPEND TO RAM
10102 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10103 M:      Len Brown <len.brown@intel.com>
10104 M:      Pavel Machek <pavel@ucw.cz>
10105 L:      linux-pm@vger.kernel.org
10106 S:      Supported
10107 F:      Documentation/power/
10108 F:      arch/x86/kernel/acpi/
10109 F:      drivers/base/power/
10110 F:      kernel/power/
10111 F:      include/linux/suspend.h
10112 F:      include/linux/freezer.h
10113 F:      include/linux/pm.h
10114
10115 SVGA HANDLING
10116 M:      Martin Mares <mj@ucw.cz>
10117 L:      linux-video@atrey.karlin.mff.cuni.cz
10118 S:      Maintained
10119 F:      Documentation/svga.txt
10120 F:      arch/x86/boot/video*
10121
10122 SWIOTLB SUBSYSTEM
10123 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10124 L:      linux-kernel@vger.kernel.org
10125 S:      Supported
10126 F:      lib/swiotlb.c
10127 F:      arch/*/kernel/pci-swiotlb.c
10128 F:      include/linux/swiotlb.h
10129
10130 SWITCHDEV
10131 M:      Jiri Pirko <jiri@resnulli.us>
10132 L:      netdev@vger.kernel.org
10133 S:      Supported
10134 F:      net/switchdev/
10135 F:      include/net/switchdev.h
10136
10137 SYNOPSYS ARC ARCHITECTURE
10138 M:      Vineet Gupta <vgupta@synopsys.com>
10139 L:      linux-snps-arc@lists.infraded.org
10140 S:      Supported
10141 F:      arch/arc/
10142 F:      Documentation/devicetree/bindings/arc/*
10143 F:      drivers/tty/serial/arc_uart.c
10144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10145
10146 SYNOPSYS ARC SDP platform support
10147 M:      Alexey Brodkin <abrodkin@synopsys.com>
10148 S:      Supported
10149 F:      arch/arc/plat-axs10x
10150 F:      arch/arc/boot/dts/ax*
10151 F:      Documentation/devicetree/bindings/arc/axs10*
10152
10153 SYSTEM CONFIGURATION (SYSCON)
10154 M:      Lee Jones <lee.jones@linaro.org>
10155 M:      Arnd Bergmann <arnd@arndb.de>
10156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10157 S:      Supported
10158 F:      drivers/mfd/syscon.c
10159
10160 SYSV FILESYSTEM
10161 M:      Christoph Hellwig <hch@infradead.org>
10162 S:      Maintained
10163 F:      Documentation/filesystems/sysv-fs.txt
10164 F:      fs/sysv/
10165 F:      include/linux/sysv_fs.h
10166
10167 TARGET SUBSYSTEM
10168 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10169 L:      linux-scsi@vger.kernel.org
10170 L:      target-devel@vger.kernel.org
10171 W:      http://www.linux-iscsi.org
10172 W:      http://groups.google.com/group/linux-iscsi-target-dev
10173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10174 S:      Supported
10175 F:      drivers/target/
10176 F:      include/target/
10177 F:      Documentation/target/
10178
10179 TASKSTATS STATISTICS INTERFACE
10180 M:      Balbir Singh <bsingharora@gmail.com>
10181 S:      Maintained
10182 F:      Documentation/accounting/taskstats*
10183 F:      include/linux/taskstats*
10184 F:      kernel/taskstats.c
10185
10186 TC CLASSIFIER
10187 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10188 L:      netdev@vger.kernel.org
10189 S:      Maintained
10190 F:      include/net/pkt_cls.h
10191 F:      include/uapi/linux/pkt_cls.h
10192 F:      net/sched/
10193
10194 TCP LOW PRIORITY MODULE
10195 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10196 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10197 W:      http://tcp-lp-mod.sourceforge.net/
10198 S:      Maintained
10199 F:      net/ipv4/tcp_lp.c
10200
10201 TDA10071 MEDIA DRIVER
10202 M:      Antti Palosaari <crope@iki.fi>
10203 L:      linux-media@vger.kernel.org
10204 W:      http://linuxtv.org/
10205 W:      http://palosaari.fi/linux/
10206 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10207 T:      git git://linuxtv.org/anttip/media_tree.git
10208 S:      Maintained
10209 F:      drivers/media/dvb-frontends/tda10071*
10210
10211 TDA18212 MEDIA DRIVER
10212 M:      Antti Palosaari <crope@iki.fi>
10213 L:      linux-media@vger.kernel.org
10214 W:      http://linuxtv.org/
10215 W:      http://palosaari.fi/linux/
10216 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10217 T:      git git://linuxtv.org/anttip/media_tree.git
10218 S:      Maintained
10219 F:      drivers/media/tuners/tda18212*
10220
10221 TDA18218 MEDIA DRIVER
10222 M:      Antti Palosaari <crope@iki.fi>
10223 L:      linux-media@vger.kernel.org
10224 W:      http://linuxtv.org/
10225 W:      http://palosaari.fi/linux/
10226 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10227 T:      git git://linuxtv.org/anttip/media_tree.git
10228 S:      Maintained
10229 F:      drivers/media/tuners/tda18218*
10230
10231 TDA18271 MEDIA DRIVER
10232 M:      Michael Krufky <mkrufky@linuxtv.org>
10233 L:      linux-media@vger.kernel.org
10234 W:      http://linuxtv.org/
10235 W:      http://github.com/mkrufky
10236 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10237 T:      git git://linuxtv.org/mkrufky/tuners.git
10238 S:      Maintained
10239 F:      drivers/media/tuners/tda18271*
10240
10241 TDA827x MEDIA DRIVER
10242 M:      Michael Krufky <mkrufky@linuxtv.org>
10243 L:      linux-media@vger.kernel.org
10244 W:      http://linuxtv.org/
10245 W:      http://github.com/mkrufky
10246 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10247 T:      git git://linuxtv.org/mkrufky/tuners.git
10248 S:      Maintained
10249 F:      drivers/media/tuners/tda8290.*
10250
10251 TDA8290 MEDIA DRIVER
10252 M:      Michael Krufky <mkrufky@linuxtv.org>
10253 L:      linux-media@vger.kernel.org
10254 W:      http://linuxtv.org/
10255 W:      http://github.com/mkrufky
10256 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10257 T:      git git://linuxtv.org/mkrufky/tuners.git
10258 S:      Maintained
10259 F:      drivers/media/tuners/tda8290.*
10260
10261 TDA9840 MEDIA DRIVER
10262 M:      Hans Verkuil <hverkuil@xs4all.nl>
10263 L:      linux-media@vger.kernel.org
10264 T:      git git://linuxtv.org/media_tree.git
10265 W:      http://linuxtv.org
10266 S:      Maintained
10267 F:      drivers/media/i2c/tda9840*
10268
10269 TEA5761 TUNER DRIVER
10270 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10271 L:      linux-media@vger.kernel.org
10272 W:      http://linuxtv.org
10273 T:      git git://linuxtv.org/media_tree.git
10274 S:      Odd fixes
10275 F:      drivers/media/tuners/tea5761.*
10276
10277 TEA5767 TUNER DRIVER
10278 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10279 L:      linux-media@vger.kernel.org
10280 W:      http://linuxtv.org
10281 T:      git git://linuxtv.org/media_tree.git
10282 S:      Maintained
10283 F:      drivers/media/tuners/tea5767.*
10284
10285 TEA6415C MEDIA DRIVER
10286 M:      Hans Verkuil <hverkuil@xs4all.nl>
10287 L:      linux-media@vger.kernel.org
10288 T:      git git://linuxtv.org/media_tree.git
10289 W:      http://linuxtv.org
10290 S:      Maintained
10291 F:      drivers/media/i2c/tea6415c*
10292
10293 TEA6420 MEDIA DRIVER
10294 M:      Hans Verkuil <hverkuil@xs4all.nl>
10295 L:      linux-media@vger.kernel.org
10296 T:      git git://linuxtv.org/media_tree.git
10297 W:      http://linuxtv.org
10298 S:      Maintained
10299 F:      drivers/media/i2c/tea6420*
10300
10301 TEAM DRIVER
10302 M:      Jiri Pirko <jiri@resnulli.us>
10303 L:      netdev@vger.kernel.org
10304 S:      Supported
10305 F:      drivers/net/team/
10306 F:      include/linux/if_team.h
10307 F:      include/uapi/linux/if_team.h
10308
10309 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10310 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10311 S:      Maintained
10312 F:      arch/x86/platform/ts5500/
10313
10314 TECHNOTREND USB IR RECEIVER
10315 M:      Sean Young <sean@mess.org>
10316 L:      linux-media@vger.kernel.org
10317 S:      Maintained
10318 F:      drivers/media/rc/ttusbir.c
10319
10320 TEGRA ARCHITECTURE SUPPORT
10321 M:      Stephen Warren <swarren@wwwdotorg.org>
10322 M:      Thierry Reding <thierry.reding@gmail.com>
10323 M:      Alexandre Courbot <gnurou@gmail.com>
10324 L:      linux-tegra@vger.kernel.org
10325 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10327 S:      Supported
10328 N:      [^a-z]tegra
10329
10330 TEGRA CLOCK DRIVER
10331 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10332 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10333 S:      Supported
10334 F:      drivers/clk/tegra/
10335
10336 TEGRA DMA DRIVER
10337 M:      Laxman Dewangan <ldewangan@nvidia.com>
10338 S:      Supported
10339 F:      drivers/dma/tegra20-apb-dma.c
10340
10341 TEGRA I2C DRIVER
10342 M:      Laxman Dewangan <ldewangan@nvidia.com>
10343 S:      Supported
10344 F:      drivers/i2c/busses/i2c-tegra.c
10345
10346 TEGRA IOMMU DRIVERS
10347 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10348 S:      Supported
10349 F:      drivers/iommu/tegra*
10350
10351 TEGRA KBC DRIVER
10352 M:      Rakesh Iyer <riyer@nvidia.com>
10353 M:      Laxman Dewangan <ldewangan@nvidia.com>
10354 S:      Supported
10355 F:      drivers/input/keyboard/tegra-kbc.c
10356
10357 TEGRA PWM DRIVER
10358 M:      Thierry Reding <thierry.reding@gmail.com>
10359 S:      Supported
10360 F:      drivers/pwm/pwm-tegra.c
10361
10362 TEGRA SERIAL DRIVER
10363 M:      Laxman Dewangan <ldewangan@nvidia.com>
10364 S:      Supported
10365 F:      drivers/tty/serial/serial-tegra.c
10366
10367 TEGRA SPI DRIVER
10368 M:      Laxman Dewangan <ldewangan@nvidia.com>
10369 S:      Supported
10370 F:      drivers/spi/spi-tegra*
10371
10372 TEHUTI ETHERNET DRIVER
10373 M:      Andy Gospodarek <andy@greyhouse.net>
10374 L:      netdev@vger.kernel.org
10375 S:      Supported
10376 F:      drivers/net/ethernet/tehuti/*
10377
10378 Telecom Clock Driver for MCPL0010
10379 M:      Mark Gross <mark.gross@intel.com>
10380 S:      Supported
10381 F:      drivers/char/tlclk.c
10382
10383 TENSILICA XTENSA PORT (xtensa)
10384 M:      Chris Zankel <chris@zankel.net>
10385 M:      Max Filippov <jcmvbkbc@gmail.com>
10386 L:      linux-xtensa@linux-xtensa.org
10387 S:      Maintained
10388 F:      arch/xtensa/
10389 F:      drivers/irqchip/irq-xtensa-*
10390
10391 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10392 M:      Hans Verkuil <hverkuil@xs4all.nl>
10393 L:      linux-media@vger.kernel.org
10394 T:      git git://linuxtv.org/media_tree.git
10395 W:      http://linuxtv.org
10396 S:      Maintained
10397 F:      drivers/media/radio/radio-raremono.c
10398
10399 THERMAL
10400 M:      Zhang Rui <rui.zhang@intel.com>
10401 M:      Eduardo Valentin <edubezval@gmail.com>
10402 L:      linux-pm@vger.kernel.org
10403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10405 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10406 S:      Supported
10407 F:      drivers/thermal/
10408 F:      include/linux/thermal.h
10409 F:      include/uapi/linux/thermal.h
10410 F:      include/linux/cpu_cooling.h
10411 F:      Documentation/devicetree/bindings/thermal/
10412
10413 THERMAL/CPU_COOLING
10414 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10415 M:      Viresh Kumar <viresh.kumar@linaro.org>
10416 M:      Javi Merino <javi.merino@arm.com>
10417 L:      linux-pm@vger.kernel.org
10418 S:      Supported
10419 F:      Documentation/thermal/cpu-cooling-api.txt
10420 F:      drivers/thermal/cpu_cooling.c
10421 F:      include/linux/cpu_cooling.h
10422
10423 THINGM BLINK(1) USB RGB LED DRIVER
10424 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10425 S:      Maintained
10426 F:      drivers/hid/hid-thingm.c
10427
10428 THINKPAD ACPI EXTRAS DRIVER
10429 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10430 L:      ibm-acpi-devel@lists.sourceforge.net
10431 L:      platform-driver-x86@vger.kernel.org
10432 W:      http://ibm-acpi.sourceforge.net
10433 W:      http://thinkwiki.org/wiki/Ibm-acpi
10434 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10435 S:      Maintained
10436 F:      drivers/platform/x86/thinkpad_acpi.c
10437
10438 TI BANDGAP AND THERMAL DRIVER
10439 M:      Eduardo Valentin <edubezval@gmail.com>
10440 L:      linux-pm@vger.kernel.org
10441 L:      linux-omap@vger.kernel.org
10442 S:      Maintained
10443 F:      drivers/thermal/ti-soc-thermal/
10444
10445 TI CDCE706 CLOCK DRIVER
10446 M:      Max Filippov <jcmvbkbc@gmail.com>
10447 S:      Maintained
10448 F:      drivers/clk/clk-cdce706.c
10449
10450 TI CLOCK DRIVER
10451 M:      Tero Kristo <t-kristo@ti.com>
10452 L:      linux-omap@vger.kernel.org
10453 S:      Maintained
10454 F:      drivers/clk/ti/
10455 F:      include/linux/clk/ti.h
10456
10457 TI FLASH MEDIA INTERFACE DRIVER
10458 M:      Alex Dubov <oakad@yahoo.com>
10459 S:      Maintained
10460 F:      drivers/misc/tifm*
10461 F:      drivers/mmc/host/tifm_sd.c
10462 F:      include/linux/tifm.h
10463
10464 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10465 M:      Santosh Shilimkar <ssantosh@kernel.org>
10466 L:      linux-kernel@vger.kernel.org
10467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10468 S:      Maintained
10469 F:      drivers/soc/ti/*
10470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10471
10472
10473 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10474 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10475 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10476 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10477 S:      Maintained
10478 F:      sound/soc/codecs/lm49453*
10479 F:      sound/soc/codecs/isabelle*
10480
10481 TI LP855x BACKLIGHT DRIVER
10482 M:      Milo Kim <milo.kim@ti.com>
10483 S:      Maintained
10484 F:      Documentation/backlight/lp855x-driver.txt
10485 F:      drivers/video/backlight/lp855x_bl.c
10486 F:      include/linux/platform_data/lp855x.h
10487
10488 TI LP8727 CHARGER DRIVER
10489 M:      Milo Kim <milo.kim@ti.com>
10490 S:      Maintained
10491 F:      drivers/power/lp8727_charger.c
10492 F:      include/linux/platform_data/lp8727.h
10493
10494 TI LP8788 MFD DRIVER
10495 M:      Milo Kim <milo.kim@ti.com>
10496 S:      Maintained
10497 F:      drivers/iio/adc/lp8788_adc.c
10498 F:      drivers/leds/leds-lp8788.c
10499 F:      drivers/mfd/lp8788*.c
10500 F:      drivers/power/lp8788-charger.c
10501 F:      drivers/regulator/lp8788-*.c
10502 F:      include/linux/mfd/lp8788*.h
10503
10504 TI NETCP ETHERNET DRIVER
10505 M:      Wingman Kwok <w-kwok2@ti.com>
10506 M:      Murali Karicheri <m-karicheri2@ti.com>
10507 L:      netdev@vger.kernel.org
10508 S:      Maintained
10509 F:      drivers/net/ethernet/ti/netcp*
10510
10511 TI TAS571X FAMILY ASoC CODEC DRIVER
10512 M:      Kevin Cernekee <cernekee@chromium.org>
10513 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10514 S:      Odd Fixes
10515 F:      sound/soc/codecs/tas571x*
10516
10517 TI TWL4030 SERIES SOC CODEC DRIVER
10518 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10519 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10520 S:      Maintained
10521 F:      sound/soc/codecs/twl4030*
10522
10523 TI WILINK WIRELESS DRIVERS
10524 L:      linux-wireless@vger.kernel.org
10525 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10526 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10528 S:      Orphan
10529 F:      drivers/net/wireless/ti/
10530 F:      include/linux/wl12xx.h
10531
10532 TIPC NETWORK LAYER
10533 M:      Jon Maloy <jon.maloy@ericsson.com>
10534 M:      Ying Xue <ying.xue@windriver.com>
10535 L:      netdev@vger.kernel.org (core kernel code)
10536 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10537 W:      http://tipc.sourceforge.net/
10538 S:      Maintained
10539 F:      include/uapi/linux/tipc*.h
10540 F:      net/tipc/
10541
10542 TILE ARCHITECTURE
10543 M:      Chris Metcalf <cmetcalf@ezchip.com>
10544 W:      http://www.ezchip.com/scm/
10545 S:      Supported
10546 F:      arch/tile/
10547 F:      drivers/char/tile-srom.c
10548 F:      drivers/edac/tile_edac.c
10549 F:      drivers/net/ethernet/tile/
10550 F:      drivers/rtc/rtc-tile.c
10551 F:      drivers/tty/hvc/hvc_tile.c
10552 F:      drivers/tty/serial/tilegx.c
10553 F:      drivers/usb/host/*-tilegx.c
10554 F:      include/linux/usb/tilegx.h
10555
10556 TLAN NETWORK DRIVER
10557 M:      Samuel Chessman <chessman@tux.org>
10558 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10559 W:      http://sourceforge.net/projects/tlan/
10560 S:      Maintained
10561 F:      Documentation/networking/tlan.txt
10562 F:      drivers/net/ethernet/ti/tlan.*
10563
10564 TOMOYO SECURITY MODULE
10565 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10566 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10567 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10568 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10569 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10570 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10571 W:      http://tomoyo.sourceforge.jp/
10572 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10573 S:      Maintained
10574 F:      security/tomoyo/
10575
10576 TOPSTAR LAPTOP EXTRAS DRIVER
10577 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10578 L:      platform-driver-x86@vger.kernel.org
10579 S:      Maintained
10580 F:      drivers/platform/x86/topstar-laptop.c
10581
10582 TOSHIBA ACPI EXTRAS DRIVER
10583 M:      Azael Avalos <coproscefalo@gmail.com>
10584 L:      platform-driver-x86@vger.kernel.org
10585 S:      Maintained
10586 F:      drivers/platform/x86/toshiba_acpi.c
10587
10588 TOSHIBA BLUETOOTH DRIVER
10589 M:      Azael Avalos <coproscefalo@gmail.com>
10590 L:      platform-driver-x86@vger.kernel.org
10591 S:      Maintained
10592 F:      drivers/platform/x86/toshiba_bluetooth.c
10593
10594 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10595 M:      Azael Avalos <coproscefalo@gmail.com>
10596 L:      platform-driver-x86@vger.kernel.org
10597 S:      Maintained
10598 F:      drivers/platform/x86/toshiba_haps.c
10599
10600 TOSHIBA SMM DRIVER
10601 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10602 W:      http://www.buzzard.org.uk/toshiba/
10603 S:      Maintained
10604 F:      drivers/char/toshiba.c
10605 F:      include/linux/toshiba.h
10606 F:      include/uapi/linux/toshiba.h
10607
10608 TOSHIBA TC358743 DRIVER
10609 M:      Mats Randgaard <matrandg@cisco.com>
10610 L:      linux-media@vger.kernel.org
10611 S:      Maintained
10612 F:      drivers/media/i2c/tc358743*
10613 F:      include/media/tc358743.h
10614
10615 TMIO MMC DRIVER
10616 M:      Ian Molton <ian@mnementh.co.uk>
10617 L:      linux-mmc@vger.kernel.org
10618 S:      Maintained
10619 F:      drivers/mmc/host/tmio_mmc*
10620 F:      drivers/mmc/host/sh_mobile_sdhi.c
10621 F:      include/linux/mmc/tmio.h
10622 F:      include/linux/mmc/sh_mobile_sdhi.h
10623
10624 TMP401 HARDWARE MONITOR DRIVER
10625 M:      Guenter Roeck <linux@roeck-us.net>
10626 L:      lm-sensors@lm-sensors.org
10627 S:      Maintained
10628 F:      Documentation/hwmon/tmp401
10629 F:      drivers/hwmon/tmp401.c
10630
10631 TMPFS (SHMEM FILESYSTEM)
10632 M:      Hugh Dickins <hughd@google.com>
10633 L:      linux-mm@kvack.org
10634 S:      Maintained
10635 F:      include/linux/shmem_fs.h
10636 F:      mm/shmem.c
10637
10638 TM6000 VIDEO4LINUX DRIVER
10639 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10640 L:      linux-media@vger.kernel.org
10641 W:      http://linuxtv.org
10642 T:      git git://linuxtv.org/media_tree.git
10643 S:      Odd fixes
10644 F:      drivers/media/usb/tm6000/
10645
10646 TW68 VIDEO4LINUX DRIVER
10647 M:      Hans Verkuil <hverkuil@xs4all.nl>
10648 L:      linux-media@vger.kernel.org
10649 T:      git git://linuxtv.org/media_tree.git
10650 W:      http://linuxtv.org
10651 S:      Odd Fixes
10652 F:      drivers/media/pci/tw68/
10653
10654 TPM DEVICE DRIVER
10655 M:      Peter Huewe <peterhuewe@gmx.de>
10656 M:      Marcel Selhorst <tpmdd@selhorst.net>
10657 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10658 W:      http://tpmdd.sourceforge.net
10659 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10660 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10661 T:      https://github.com/PeterHuewe/linux-tpmdd
10662 S:      Maintained
10663 F:      drivers/char/tpm/
10664
10665 TPM IBM_VTPM DEVICE DRIVER
10666 M:      Ashley Lai <ashleydlai@gmail.com>
10667 W:      http://tpmdd.sourceforge.net
10668 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10669 S:      Maintained
10670 F:      drivers/char/tpm/tpm_ibmvtpm*
10671
10672 TRACING
10673 M:      Steven Rostedt <rostedt@goodmis.org>
10674 M:      Ingo Molnar <mingo@redhat.com>
10675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10676 S:      Maintained
10677 F:      Documentation/trace/ftrace.txt
10678 F:      arch/*/*/*/ftrace.h
10679 F:      arch/*/kernel/ftrace.c
10680 F:      include/*/ftrace.h
10681 F:      include/linux/trace*.h
10682 F:      include/trace/
10683 F:      kernel/trace/
10684 F:      tools/testing/selftests/ftrace/
10685
10686 TRIVIAL PATCHES
10687 M:      Jiri Kosina <trivial@kernel.org>
10688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10689 S:      Maintained
10690 K:      ^Subject:.*(?i)trivial
10691
10692 TTY LAYER
10693 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10694 M:      Jiri Slaby <jslaby@suse.com>
10695 S:      Supported
10696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10697 F:      Documentation/serial/
10698 F:      drivers/tty/
10699 F:      drivers/tty/serial/serial_core.c
10700 F:      include/linux/serial_core.h
10701 F:      include/linux/serial.h
10702 F:      include/linux/tty.h
10703 F:      include/uapi/linux/serial_core.h
10704 F:      include/uapi/linux/serial.h
10705 F:      include/uapi/linux/tty.h
10706
10707 TUA9001 MEDIA DRIVER
10708 M:      Antti Palosaari <crope@iki.fi>
10709 L:      linux-media@vger.kernel.org
10710 W:      http://linuxtv.org/
10711 W:      http://palosaari.fi/linux/
10712 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10713 T:      git git://linuxtv.org/anttip/media_tree.git
10714 S:      Maintained
10715 F:      drivers/media/tuners/tua9001*
10716
10717 TULIP NETWORK DRIVERS
10718 M:      Grant Grundler <grundler@parisc-linux.org>
10719 L:      netdev@vger.kernel.org
10720 S:      Maintained
10721 F:      drivers/net/ethernet/dec/tulip/
10722
10723 TUN/TAP driver
10724 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10725 W:      http://vtun.sourceforge.net/tun
10726 S:      Maintained
10727 F:      Documentation/networking/tuntap.txt
10728 F:      arch/um/os-Linux/drivers/
10729
10730 TURBOCHANNEL SUBSYSTEM
10731 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10732 M:      Ralf Baechle <ralf@linux-mips.org>
10733 L:      linux-mips@linux-mips.org
10734 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10735 S:      Maintained
10736 F:      drivers/tc/
10737 F:      include/linux/tc.h
10738
10739 U14-34F SCSI DRIVER
10740 M:      Dario Ballabio <ballabio_dario@emc.com>
10741 L:      linux-scsi@vger.kernel.org
10742 S:      Maintained
10743 F:      drivers/scsi/u14-34f.c
10744
10745 UBI FILE SYSTEM (UBIFS)
10746 M:      Artem Bityutskiy <dedekind1@gmail.com>
10747 M:      Adrian Hunter <adrian.hunter@intel.com>
10748 L:      linux-mtd@lists.infradead.org
10749 T:      git git://git.infradead.org/ubifs-2.6.git
10750 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10751 S:      Maintained
10752 F:      Documentation/filesystems/ubifs.txt
10753 F:      fs/ubifs/
10754
10755 UCLINUX (M68KNOMMU AND COLDFIRE)
10756 M:      Greg Ungerer <gerg@uclinux.org>
10757 W:      http://www.uclinux.org/
10758 L:      linux-m68k@lists.linux-m68k.org
10759 L:      uclinux-dev@uclinux.org  (subscribers-only)
10760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10761 S:      Maintained
10762 F:      arch/m68k/coldfire/
10763 F:      arch/m68k/68*/
10764 F:      arch/m68k/*/*_no.*
10765 F:      arch/m68k/include/asm/*_no.*
10766
10767 UDF FILESYSTEM
10768 M:      Jan Kara <jack@suse.com>
10769 S:      Maintained
10770 F:      Documentation/filesystems/udf.txt
10771 F:      fs/udf/
10772
10773 UFS FILESYSTEM
10774 M:      Evgeniy Dushistov <dushistov@mail.ru>
10775 S:      Maintained
10776 F:      Documentation/filesystems/ufs.txt
10777 F:      fs/ufs/
10778
10779 UHID USERSPACE HID IO DRIVER:
10780 M:      David Herrmann <dh.herrmann@googlemail.com>
10781 L:      linux-input@vger.kernel.org
10782 S:      Maintained
10783 F:      drivers/hid/uhid.c
10784 F:      include/uapi/linux/uhid.h
10785
10786 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10787 L:      linux-usb@vger.kernel.org
10788 S:      Orphan
10789 F:      drivers/uwb/
10790 F:      include/linux/uwb.h
10791 F:      include/linux/uwb/
10792
10793 UNICORE32 ARCHITECTURE:
10794 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10795 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10796 S:      Maintained
10797 T:      git git://github.com/gxt/linux.git
10798 F:      arch/unicore32/
10799
10800 UNIFDEF
10801 M:      Tony Finch <dot@dotat.at>
10802 W:      http://dotat.at/prog/unifdef
10803 S:      Maintained
10804 F:      scripts/unifdef.c
10805
10806 UNIFORM CDROM DRIVER
10807 M:      Jens Axboe <axboe@kernel.dk>
10808 W:      http://www.kernel.dk
10809 S:      Maintained
10810 F:      Documentation/cdrom/
10811 F:      drivers/cdrom/cdrom.c
10812 F:      include/linux/cdrom.h
10813 F:      include/uapi/linux/cdrom.h
10814
10815 UNISYS S-PAR DRIVERS
10816 M:      Benjamin Romer <benjamin.romer@unisys.com>
10817 M:      David Kershner <david.kershner@unisys.com>
10818 L:      sparmaintainer@unisys.com (Unisys internal)
10819 S:      Supported
10820 F:      drivers/staging/unisys/
10821
10822 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10823 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10824 L:      linux-scsi@vger.kernel.org
10825 S:      Supported
10826 F:      Documentation/scsi/ufs.txt
10827 F:      drivers/scsi/ufs/
10828
10829 UNSORTED BLOCK IMAGES (UBI)
10830 M:      Artem Bityutskiy <dedekind1@gmail.com>
10831 M:      Richard Weinberger <richard@nod.at>
10832 W:      http://www.linux-mtd.infradead.org/
10833 L:      linux-mtd@lists.infradead.org
10834 T:      git git://git.infradead.org/ubifs-2.6.git
10835 S:      Supported
10836 F:      drivers/mtd/ubi/
10837 F:      include/linux/mtd/ubi.h
10838 F:      include/uapi/mtd/ubi-user.h
10839
10840 USB ACM DRIVER
10841 M:      Oliver Neukum <oliver@neukum.org>
10842 L:      linux-usb@vger.kernel.org
10843 S:      Maintained
10844 F:      Documentation/usb/acm.txt
10845 F:      drivers/usb/class/cdc-acm.*
10846
10847 USB AR5523 WIRELESS DRIVER
10848 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10849 L:      linux-wireless@vger.kernel.org
10850 S:      Maintained
10851 F:      drivers/net/wireless/ath/ar5523/
10852
10853 USB ATTACHED SCSI
10854 M:      Hans de Goede <hdegoede@redhat.com>
10855 M:      Gerd Hoffmann <kraxel@redhat.com>
10856 L:      linux-usb@vger.kernel.org
10857 L:      linux-scsi@vger.kernel.org
10858 S:      Maintained
10859 F:      drivers/usb/storage/uas.c
10860
10861 USB CDC ETHERNET DRIVER
10862 M:      Oliver Neukum <oliver@neukum.org>
10863 L:      linux-usb@vger.kernel.org
10864 S:      Maintained
10865 F:      drivers/net/usb/cdc_*.c
10866 F:      include/uapi/linux/usb/cdc.h
10867
10868 USB CHAOSKEY DRIVER
10869 M:      Keith Packard <keithp@keithp.com>
10870 L:      linux-usb@vger.kernel.org
10871 S:      Maintained
10872 F:      drivers/usb/misc/chaoskey.c
10873
10874 USB CYPRESS C67X00 DRIVER
10875 M:      Peter Korsgaard <jacmet@sunsite.dk>
10876 L:      linux-usb@vger.kernel.org
10877 S:      Maintained
10878 F:      drivers/usb/c67x00/
10879
10880 USB DAVICOM DM9601 DRIVER
10881 M:      Peter Korsgaard <jacmet@sunsite.dk>
10882 L:      netdev@vger.kernel.org
10883 W:      http://www.linux-usb.org/usbnet
10884 S:      Maintained
10885 F:      drivers/net/usb/dm9601.c
10886
10887 USB DIAMOND RIO500 DRIVER
10888 M:      Cesar Miquel <miquel@df.uba.ar>
10889 L:      rio500-users@lists.sourceforge.net
10890 W:      http://rio500.sourceforge.net
10891 S:      Maintained
10892 F:      drivers/usb/misc/rio500*
10893
10894 USB EHCI DRIVER
10895 M:      Alan Stern <stern@rowland.harvard.edu>
10896 L:      linux-usb@vger.kernel.org
10897 S:      Maintained
10898 F:      Documentation/usb/ehci.txt
10899 F:      drivers/usb/host/ehci*
10900
10901 USB GADGET/PERIPHERAL SUBSYSTEM
10902 M:      Felipe Balbi <balbi@ti.com>
10903 L:      linux-usb@vger.kernel.org
10904 W:      http://www.linux-usb.org/gadget
10905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10906 S:      Maintained
10907 F:      drivers/usb/gadget/
10908 F:      include/linux/usb/gadget*
10909
10910 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10911 M:      Jiri Kosina <jikos@kernel.org>
10912 L:      linux-usb@vger.kernel.org
10913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10914 S:      Maintained
10915 F:      Documentation/hid/hiddev.txt
10916 F:      drivers/hid/usbhid/
10917
10918 USB ISP116X DRIVER
10919 M:      Olav Kongas <ok@artecdesign.ee>
10920 L:      linux-usb@vger.kernel.org
10921 S:      Maintained
10922 F:      drivers/usb/host/isp116x*
10923 F:      include/linux/usb/isp116x.h
10924
10925 USB MASS STORAGE DRIVER
10926 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10927 L:      linux-usb@vger.kernel.org
10928 L:      usb-storage@lists.one-eyed-alien.net
10929 S:      Maintained
10930 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10931 F:      drivers/usb/storage/
10932
10933 USB MIDI DRIVER
10934 M:      Clemens Ladisch <clemens@ladisch.de>
10935 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10936 T:      git git://git.alsa-project.org/alsa-kernel.git
10937 S:      Maintained
10938 F:      sound/usb/midi.*
10939
10940 USB NETWORKING DRIVERS
10941 L:      linux-usb@vger.kernel.org
10942 S:      Odd Fixes
10943 F:      drivers/net/usb/
10944
10945 USB OHCI DRIVER
10946 M:      Alan Stern <stern@rowland.harvard.edu>
10947 L:      linux-usb@vger.kernel.org
10948 S:      Maintained
10949 F:      Documentation/usb/ohci.txt
10950 F:      drivers/usb/host/ohci*
10951
10952 USB OTG FSM (Finite State Machine)
10953 M:      Peter Chen <Peter.Chen@freescale.com>
10954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10955 L:      linux-usb@vger.kernel.org
10956 S:      Maintained
10957 F:      drivers/usb/common/usb-otg-fsm.c
10958
10959 USB OVER IP DRIVER
10960 M:      Valentina Manea <valentina.manea.m@gmail.com>
10961 M:      Shuah Khan <shuah.kh@samsung.com>
10962 L:      linux-usb@vger.kernel.org
10963 S:      Maintained
10964 F:      drivers/usb/usbip/
10965 F:      tools/usb/usbip/
10966
10967 USB PEGASUS DRIVER
10968 M:      Petko Manolov <petkan@nucleusys.com>
10969 L:      linux-usb@vger.kernel.org
10970 L:      netdev@vger.kernel.org
10971 T:      git git://github.com/petkan/pegasus.git
10972 W:      https://github.com/petkan/pegasus
10973 S:      Maintained
10974 F:      drivers/net/usb/pegasus.*
10975
10976 USB PHY LAYER
10977 M:      Felipe Balbi <balbi@ti.com>
10978 L:      linux-usb@vger.kernel.org
10979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10980 S:      Maintained
10981 F:      drivers/usb/phy/
10982
10983 USB PRINTER DRIVER (usblp)
10984 M:      Pete Zaitcev <zaitcev@redhat.com>
10985 L:      linux-usb@vger.kernel.org
10986 S:      Supported
10987 F:      drivers/usb/class/usblp.c
10988
10989 USB RTL8150 DRIVER
10990 M:      Petko Manolov <petkan@nucleusys.com>
10991 L:      linux-usb@vger.kernel.org
10992 L:      netdev@vger.kernel.org
10993 T:      git git://github.com/petkan/rtl8150.git
10994 W:      https://github.com/petkan/rtl8150
10995 S:      Maintained
10996 F:      drivers/net/usb/rtl8150.c
10997
10998 USB SERIAL SUBSYSTEM
10999 M:      Johan Hovold <johan@kernel.org>
11000 L:      linux-usb@vger.kernel.org
11001 S:      Maintained
11002 F:      Documentation/usb/usb-serial.txt
11003 F:      drivers/usb/serial/
11004 F:      include/linux/usb/serial.h
11005
11006 USB SMSC75XX ETHERNET DRIVER
11007 M:      Steve Glendinning <steve.glendinning@shawell.net>
11008 L:      netdev@vger.kernel.org
11009 S:      Maintained
11010 F:      drivers/net/usb/smsc75xx.*
11011
11012 USB SMSC95XX ETHERNET DRIVER
11013 M:      Steve Glendinning <steve.glendinning@shawell.net>
11014 L:      netdev@vger.kernel.org
11015 S:      Maintained
11016 F:      drivers/net/usb/smsc95xx.*
11017
11018 USB SUBSYSTEM
11019 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11020 L:      linux-usb@vger.kernel.org
11021 W:      http://www.linux-usb.org
11022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11023 S:      Supported
11024 F:      Documentation/usb/
11025 F:      drivers/usb/
11026 F:      include/linux/usb.h
11027 F:      include/linux/usb/
11028
11029 USB UHCI DRIVER
11030 M:      Alan Stern <stern@rowland.harvard.edu>
11031 L:      linux-usb@vger.kernel.org
11032 S:      Maintained
11033 F:      drivers/usb/host/uhci*
11034
11035 USB "USBNET" DRIVER FRAMEWORK
11036 M:      Oliver Neukum <oneukum@suse.com>
11037 L:      netdev@vger.kernel.org
11038 W:      http://www.linux-usb.org/usbnet
11039 S:      Maintained
11040 F:      drivers/net/usb/usbnet.c
11041 F:      include/linux/usb/usbnet.h
11042
11043 USB VIDEO CLASS
11044 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11045 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11046 L:      linux-media@vger.kernel.org
11047 T:      git git://linuxtv.org/media_tree.git
11048 W:      http://www.ideasonboard.org/uvc/
11049 S:      Maintained
11050 F:      drivers/media/usb/uvc/
11051 F:      include/uapi/linux/uvcvideo.h
11052
11053 USB VISION DRIVER
11054 M:      Hans Verkuil <hverkuil@xs4all.nl>
11055 L:      linux-media@vger.kernel.org
11056 T:      git git://linuxtv.org/media_tree.git
11057 W:      http://linuxtv.org
11058 S:      Odd Fixes
11059 F:      drivers/media/usb/usbvision/
11060
11061 USB WEBCAM GADGET
11062 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11063 L:      linux-usb@vger.kernel.org
11064 S:      Maintained
11065 F:      drivers/usb/gadget/function/*uvc*
11066 F:      drivers/usb/gadget/legacy/webcam.c
11067
11068 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11069 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11070 L:      linux-wireless@vger.kernel.org
11071 S:      Maintained
11072 F:      drivers/net/wireless/rndis_wlan.c
11073
11074 USB XHCI DRIVER
11075 M:      Mathias Nyman <mathias.nyman@intel.com>
11076 L:      linux-usb@vger.kernel.org
11077 S:      Supported
11078 F:      drivers/usb/host/xhci*
11079 F:      drivers/usb/host/pci-quirks*
11080
11081 USB ZD1201 DRIVER
11082 L:      linux-wireless@vger.kernel.org
11083 W:      http://linux-lc100020.sourceforge.net
11084 S:      Orphan
11085 F:      drivers/net/wireless/zd1201.*
11086
11087 USB ZR364XX DRIVER
11088 M:      Antoine Jacquet <royale@zerezo.com>
11089 L:      linux-usb@vger.kernel.org
11090 L:      linux-media@vger.kernel.org
11091 T:      git git://linuxtv.org/media_tree.git
11092 W:      http://royale.zerezo.com/zr364xx/
11093 S:      Maintained
11094 F:      Documentation/video4linux/zr364xx.txt
11095 F:      drivers/media/usb/zr364xx/
11096
11097 ULPI BUS
11098 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11099 L:      linux-usb@vger.kernel.org
11100 S:      Maintained
11101 F:      drivers/usb/common/ulpi.c
11102 F:      include/linux/ulpi/
11103
11104 USER-MODE LINUX (UML)
11105 M:      Jeff Dike <jdike@addtoit.com>
11106 M:      Richard Weinberger <richard@nod.at>
11107 L:      user-mode-linux-devel@lists.sourceforge.net
11108 L:      user-mode-linux-user@lists.sourceforge.net
11109 W:      http://user-mode-linux.sourceforge.net
11110 S:      Maintained
11111 F:      Documentation/virtual/uml/
11112 F:      arch/um/
11113 F:      arch/x86/um/
11114 F:      fs/hostfs/
11115 F:      fs/hppfs/
11116
11117 USERSPACE I/O (UIO)
11118 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11119 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11120 S:      Maintained
11121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11122 F:      Documentation/DocBook/uio-howto.tmpl
11123 F:      drivers/uio/
11124 F:      include/linux/uio*.h
11125
11126 UTIL-LINUX PACKAGE
11127 M:      Karel Zak <kzak@redhat.com>
11128 L:      util-linux@vger.kernel.org
11129 W:      http://en.wikipedia.org/wiki/Util-linux
11130 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11131 S:      Maintained
11132
11133 UVESAFB DRIVER
11134 M:      Michal Januszewski <spock@gentoo.org>
11135 L:      linux-fbdev@vger.kernel.org
11136 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11137 S:      Maintained
11138 F:      Documentation/fb/uvesafb.txt
11139 F:      drivers/video/fbdev/uvesafb.*
11140
11141 VFAT/FAT/MSDOS FILESYSTEM
11142 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11143 S:      Maintained
11144 F:      Documentation/filesystems/vfat.txt
11145 F:      fs/fat/
11146
11147 VFIO DRIVER
11148 M:      Alex Williamson <alex.williamson@redhat.com>
11149 L:      kvm@vger.kernel.org
11150 S:      Maintained
11151 F:      Documentation/vfio.txt
11152 F:      drivers/vfio/
11153 F:      include/linux/vfio.h
11154 F:      include/uapi/linux/vfio.h
11155
11156 VFIO PLATFORM DRIVER
11157 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11158 L:      kvm@vger.kernel.org
11159 S:      Maintained
11160 F:      drivers/vfio/platform/
11161
11162 VIDEOBUF2 FRAMEWORK
11163 M:      Pawel Osciak <pawel@osciak.com>
11164 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11165 M:      Kyungmin Park <kyungmin.park@samsung.com>
11166 L:      linux-media@vger.kernel.org
11167 S:      Maintained
11168 F:      drivers/media/v4l2-core/videobuf2-*
11169 F:      include/media/videobuf2-*
11170
11171 VIRTIO CONSOLE DRIVER
11172 M:      Amit Shah <amit.shah@redhat.com>
11173 L:      virtualization@lists.linux-foundation.org
11174 S:      Maintained
11175 F:      drivers/char/virtio_console.c
11176 F:      include/linux/virtio_console.h
11177 F:      include/uapi/linux/virtio_console.h
11178
11179 VIRTIO CORE, NET AND BLOCK DRIVERS
11180 M:      "Michael S. Tsirkin" <mst@redhat.com>
11181 L:      virtualization@lists.linux-foundation.org
11182 S:      Maintained
11183 F:      drivers/virtio/
11184 F:      tools/virtio/
11185 F:      drivers/net/virtio_net.c
11186 F:      drivers/block/virtio_blk.c
11187 F:      include/linux/virtio_*.h
11188 F:      include/uapi/linux/virtio_*.h
11189
11190 VIRTIO DRIVERS FOR S390
11191 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11192 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11193 L:      linux-s390@vger.kernel.org
11194 L:      virtualization@lists.linux-foundation.org
11195 L:      kvm@vger.kernel.org
11196 S:      Supported
11197 F:      drivers/s390/virtio/
11198
11199 VIRTIO GPU DRIVER
11200 M:      David Airlie <airlied@linux.ie>
11201 M:      Gerd Hoffmann <kraxel@redhat.com>
11202 L:      dri-devel@lists.freedesktop.org
11203 L:      virtualization@lists.linux-foundation.org
11204 S:      Maintained
11205 F:      drivers/gpu/drm/virtio/
11206 F:      include/uapi/linux/virtio_gpu.h
11207
11208 VIRTIO HOST (VHOST)
11209 M:      "Michael S. Tsirkin" <mst@redhat.com>
11210 L:      kvm@vger.kernel.org
11211 L:      virtualization@lists.linux-foundation.org
11212 L:      netdev@vger.kernel.org
11213 S:      Maintained
11214 F:      drivers/vhost/
11215 F:      include/uapi/linux/vhost.h
11216
11217 VIRTIO INPUT DRIVER
11218 M:      Gerd Hoffmann <kraxel@redhat.com>
11219 S:      Maintained
11220 F:      drivers/virtio/virtio_input.c
11221 F:      include/uapi/linux/virtio_input.h
11222
11223 VIA RHINE NETWORK DRIVER
11224 S:      Orphan
11225 F:      drivers/net/ethernet/via/via-rhine.c
11226
11227 VIA SD/MMC CARD CONTROLLER DRIVER
11228 M:      Bruce Chang <brucechang@via.com.tw>
11229 M:      Harald Welte <HaraldWelte@viatech.com>
11230 S:      Maintained
11231 F:      drivers/mmc/host/via-sdmmc.c
11232
11233 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11234 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11235 L:      linux-fbdev@vger.kernel.org
11236 S:      Maintained
11237 F:      include/linux/via-core.h
11238 F:      include/linux/via-gpio.h
11239 F:      include/linux/via_i2c.h
11240 F:      drivers/video/fbdev/via/
11241
11242 VIA VELOCITY NETWORK DRIVER
11243 M:      Francois Romieu <romieu@fr.zoreil.com>
11244 L:      netdev@vger.kernel.org
11245 S:      Maintained
11246 F:      drivers/net/ethernet/via/via-velocity.*
11247
11248 VIVID VIRTUAL VIDEO DRIVER
11249 M:      Hans Verkuil <hverkuil@xs4all.nl>
11250 L:      linux-media@vger.kernel.org
11251 T:      git git://linuxtv.org/media_tree.git
11252 W:      http://linuxtv.org
11253 S:      Maintained
11254 F:      drivers/media/platform/vivid/*
11255
11256 VLAN (802.1Q)
11257 M:      Patrick McHardy <kaber@trash.net>
11258 L:      netdev@vger.kernel.org
11259 S:      Maintained
11260 F:      drivers/net/macvlan.c
11261 F:      include/linux/if_*vlan.h
11262 F:      net/8021q/
11263
11264 VLYNQ BUS
11265 M:      Florian Fainelli <florian@openwrt.org>
11266 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11267 S:      Maintained
11268 F:      drivers/vlynq/vlynq.c
11269 F:      include/linux/vlynq.h
11270
11271 VME SUBSYSTEM
11272 M:      Martyn Welch <martyn@welchs.me.uk>
11273 M:      Manohar Vanga <manohar.vanga@gmail.com>
11274 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11275 L:      devel@driverdev.osuosl.org
11276 S:      Maintained
11277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11278 F:      Documentation/vme_api.txt
11279 F:      drivers/staging/vme/
11280 F:      drivers/vme/
11281 F:      include/linux/vme*
11282
11283 VMWARE HYPERVISOR INTERFACE
11284 M:      Alok Kataria <akataria@vmware.com>
11285 L:      virtualization@lists.linux-foundation.org
11286 S:      Supported
11287 F:      arch/x86/kernel/cpu/vmware.c
11288
11289 VMWARE BALLOON DRIVER
11290 M:      Xavier Deguillard <xdeguillard@vmware.com>
11291 M:      Philip Moltmann <moltmann@vmware.com>
11292 M:      "VMware, Inc." <pv-drivers@vmware.com>
11293 L:      linux-kernel@vger.kernel.org
11294 S:      Maintained
11295 F:      drivers/misc/vmw_balloon.c
11296
11297 VMWARE VMMOUSE SUBDRIVER
11298 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11299 M:      "VMware, Inc." <pv-drivers@vmware.com>
11300 L:      linux-input@vger.kernel.org
11301 S:      Maintained
11302 F:      drivers/input/mouse/vmmouse.c
11303 F:      drivers/input/mouse/vmmouse.h
11304
11305 VMWARE VMXNET3 ETHERNET DRIVER
11306 M:      Shrikrishna Khare <skhare@vmware.com>
11307 M:      "VMware, Inc." <pv-drivers@vmware.com>
11308 L:      netdev@vger.kernel.org
11309 S:      Maintained
11310 F:      drivers/net/vmxnet3/
11311
11312 VMware PVSCSI driver
11313 M:      Arvind Kumar <arvindkumar@vmware.com>
11314 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11315 L:      linux-scsi@vger.kernel.org
11316 S:      Maintained
11317 F:      drivers/scsi/vmw_pvscsi.c
11318 F:      drivers/scsi/vmw_pvscsi.h
11319
11320 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11321 M:      Liam Girdwood <lgirdwood@gmail.com>
11322 M:      Mark Brown <broonie@kernel.org>
11323 L:      linux-kernel@vger.kernel.org
11324 W:      http://www.slimlogic.co.uk/?p=48
11325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11326 S:      Supported
11327 F:      drivers/regulator/
11328 F:      include/linux/regulator/
11329
11330 VRF
11331 M:      David Ahern <dsa@cumulusnetworks.com>
11332 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11333 L:      netdev@vger.kernel.org
11334 S:      Maintained
11335 F:      drivers/net/vrf.c
11336 F:      include/net/vrf.h
11337 F:      Documentation/networking/vrf.txt
11338
11339 VT1211 HARDWARE MONITOR DRIVER
11340 M:      Juerg Haefliger <juergh@gmail.com>
11341 L:      lm-sensors@lm-sensors.org
11342 S:      Maintained
11343 F:      Documentation/hwmon/vt1211
11344 F:      drivers/hwmon/vt1211.c
11345
11346 VT8231 HARDWARE MONITOR DRIVER
11347 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11348 L:      lm-sensors@lm-sensors.org
11349 S:      Maintained
11350 F:      drivers/hwmon/vt8231.c
11351
11352 VUB300 USB to SDIO/SD/MMC bridge chip
11353 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11354 L:      linux-mmc@vger.kernel.org
11355 L:      linux-usb@vger.kernel.org
11356 S:      Supported
11357 F:      drivers/mmc/host/vub300.c
11358
11359 W1 DALLAS'S 1-WIRE BUS
11360 M:      Evgeniy Polyakov <zbr@ioremap.net>
11361 S:      Maintained
11362 F:      Documentation/w1/
11363 F:      drivers/w1/
11364
11365 W83791D HARDWARE MONITORING DRIVER
11366 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11367 L:      lm-sensors@lm-sensors.org
11368 S:      Maintained
11369 F:      Documentation/hwmon/w83791d
11370 F:      drivers/hwmon/w83791d.c
11371
11372 W83793 HARDWARE MONITORING DRIVER
11373 M:      Rudolf Marek <r.marek@assembler.cz>
11374 L:      lm-sensors@lm-sensors.org
11375 S:      Maintained
11376 F:      Documentation/hwmon/w83793
11377 F:      drivers/hwmon/w83793.c
11378
11379 W83795 HARDWARE MONITORING DRIVER
11380 M:      Jean Delvare <jdelvare@suse.com>
11381 L:      lm-sensors@lm-sensors.org
11382 S:      Maintained
11383 F:      drivers/hwmon/w83795.c
11384
11385 W83L51xD SD/MMC CARD INTERFACE DRIVER
11386 M:      Pierre Ossman <pierre@ossman.eu>
11387 S:      Maintained
11388 F:      drivers/mmc/host/wbsd.*
11389
11390 WACOM PROTOCOL 4 SERIAL TABLETS
11391 M:      Julian Squires <julian@cipht.net>
11392 M:      Hans de Goede <hdegoede@redhat.com>
11393 L:      linux-input@vger.kernel.org
11394 S:      Maintained
11395 F:      drivers/input/tablet/wacom_serial4.c
11396
11397 WATCHDOG DEVICE DRIVERS
11398 M:      Wim Van Sebroeck <wim@iguana.be>
11399 L:      linux-watchdog@vger.kernel.org
11400 W:      http://www.linux-watchdog.org/
11401 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11402 S:      Maintained
11403 F:      Documentation/watchdog/
11404 F:      drivers/watchdog/
11405 F:      include/linux/watchdog.h
11406 F:      include/uapi/linux/watchdog.h
11407
11408 WD7000 SCSI DRIVER
11409 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11410 L:      linux-scsi@vger.kernel.org
11411 S:      Maintained
11412 F:      drivers/scsi/wd7000.c
11413
11414 WIIMOTE HID DRIVER
11415 M:      David Herrmann <dh.herrmann@googlemail.com>
11416 L:      linux-input@vger.kernel.org
11417 S:      Maintained
11418 F:      drivers/hid/hid-wiimote*
11419
11420 WINBOND CIR DRIVER
11421 M:      David Härdeman <david@hardeman.nu>
11422 S:      Maintained
11423 F:      drivers/media/rc/winbond-cir.c
11424
11425 WIMAX STACK
11426 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11427 M:      linux-wimax@intel.com
11428 L:      wimax@linuxwimax.org (subscribers-only)
11429 S:      Supported
11430 W:      http://linuxwimax.org
11431 F:      Documentation/wimax/README.wimax
11432 F:      include/linux/wimax/debug.h
11433 F:      include/net/wimax.h
11434 F:      include/uapi/linux/wimax.h
11435 F:      net/wimax/
11436
11437 WISTRON LAPTOP BUTTON DRIVER
11438 M:      Miloslav Trmac <mitr@volny.cz>
11439 S:      Maintained
11440 F:      drivers/input/misc/wistron_btns.c
11441
11442 WL3501 WIRELESS PCMCIA CARD DRIVER
11443 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11444 L:      linux-wireless@vger.kernel.org
11445 W:      http://oops.ghostprotocols.net:81/blog
11446 S:      Maintained
11447 F:      drivers/net/wireless/wl3501*
11448
11449 WOLFSON MICROELECTRONICS DRIVERS
11450 L:      patches@opensource.wolfsonmicro.com
11451 T:      git https://github.com/CirrusLogic/linux-drivers.git
11452 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11453 S:      Supported
11454 F:      Documentation/hwmon/wm83??
11455 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11456 F:      drivers/clk/clk-wm83*.c
11457 F:      drivers/extcon/extcon-arizona.c
11458 F:      drivers/leds/leds-wm83*.c
11459 F:      drivers/gpio/gpio-*wm*.c
11460 F:      drivers/gpio/gpio-arizona.c
11461 F:      drivers/hwmon/wm83??-hwmon.c
11462 F:      drivers/input/misc/wm831x-on.c
11463 F:      drivers/input/touchscreen/wm831x-ts.c
11464 F:      drivers/input/touchscreen/wm97*.c
11465 F:      drivers/mfd/arizona*
11466 F:      drivers/mfd/wm*.c
11467 F:      drivers/power/wm83*.c
11468 F:      drivers/rtc/rtc-wm83*.c
11469 F:      drivers/regulator/wm8*.c
11470 F:      drivers/video/backlight/wm83*_bl.c
11471 F:      drivers/watchdog/wm83*_wdt.c
11472 F:      include/linux/mfd/arizona/
11473 F:      include/linux/mfd/wm831x/
11474 F:      include/linux/mfd/wm8350/
11475 F:      include/linux/mfd/wm8400*
11476 F:      include/linux/wm97xx.h
11477 F:      include/sound/wm????.h
11478 F:      sound/soc/codecs/arizona.?
11479 F:      sound/soc/codecs/wm*
11480
11481 WORKQUEUE
11482 M:      Tejun Heo <tj@kernel.org>
11483 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11485 S:      Maintained
11486 F:      include/linux/workqueue.h
11487 F:      kernel/workqueue.c
11488 F:      Documentation/workqueue.txt
11489
11490 X.25 NETWORK LAYER
11491 M:      Andrew Hendry <andrew.hendry@gmail.com>
11492 L:      linux-x25@vger.kernel.org
11493 S:      Odd Fixes
11494 F:      Documentation/networking/x25*
11495 F:      include/net/x25*
11496 F:      net/x25/
11497
11498 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11499 M:      Thomas Gleixner <tglx@linutronix.de>
11500 M:      Ingo Molnar <mingo@redhat.com>
11501 M:      "H. Peter Anvin" <hpa@zytor.com>
11502 M:      x86@kernel.org
11503 L:      linux-kernel@vger.kernel.org
11504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11505 S:      Maintained
11506 F:      Documentation/x86/
11507 F:      arch/x86/
11508
11509 X86 PLATFORM DRIVERS
11510 M:      Darren Hart <dvhart@infradead.org>
11511 L:      platform-driver-x86@vger.kernel.org
11512 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11513 S:      Maintained
11514 F:      drivers/platform/x86/
11515
11516 X86 MCE INFRASTRUCTURE
11517 M:      Tony Luck <tony.luck@intel.com>
11518 M:      Borislav Petkov <bp@alien8.de>
11519 L:      linux-edac@vger.kernel.org
11520 S:      Maintained
11521 F:      arch/x86/kernel/cpu/mcheck/*
11522
11523 X86 VDSO
11524 M:      Andy Lutomirski <luto@amacapital.net>
11525 L:      linux-kernel@vger.kernel.org
11526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11527 S:      Maintained
11528 F:      arch/x86/entry/vdso/
11529
11530 XC2028/3028 TUNER DRIVER
11531 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11532 L:      linux-media@vger.kernel.org
11533 W:      http://linuxtv.org
11534 T:      git git://linuxtv.org/media_tree.git
11535 S:      Maintained
11536 F:      drivers/media/tuners/tuner-xc2028.*
11537
11538 XEN HYPERVISOR INTERFACE
11539 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11540 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11541 M:      David Vrabel <david.vrabel@citrix.com>
11542 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11544 S:      Supported
11545 F:      arch/x86/xen/
11546 F:      drivers/*/xen-*front.c
11547 F:      drivers/xen/
11548 F:      arch/x86/include/asm/xen/
11549 F:      include/xen/
11550 F:      include/uapi/xen/
11551
11552 XEN HYPERVISOR ARM
11553 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11554 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11555 S:      Supported
11556 F:      arch/arm/xen/
11557 F:      arch/arm/include/asm/xen/
11558
11559 XEN HYPERVISOR ARM64
11560 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11561 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11562 S:      Supported
11563 F:      arch/arm64/xen/
11564 F:      arch/arm64/include/asm/xen/
11565
11566 XEN NETWORK BACKEND DRIVER
11567 M:      Ian Campbell <ian.campbell@citrix.com>
11568 M:      Wei Liu <wei.liu2@citrix.com>
11569 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11570 L:      netdev@vger.kernel.org
11571 S:      Supported
11572 F:      drivers/net/xen-netback/*
11573
11574 XEN PCI SUBSYSTEM
11575 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11576 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11577 S:      Supported
11578 F:      arch/x86/pci/*xen*
11579 F:      drivers/pci/*xen*
11580
11581 XEN BLOCK SUBSYSTEM
11582 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11583 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11584 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11585 S:      Supported
11586 F:      drivers/block/xen-blkback/*
11587 F:      drivers/block/xen*
11588
11589 XEN PVSCSI DRIVERS
11590 M:      Juergen Gross <jgross@suse.com>
11591 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11592 L:      linux-scsi@vger.kernel.org
11593 S:      Supported
11594 F:      drivers/scsi/xen-scsifront.c
11595 F:      drivers/xen/xen-scsiback.c
11596 F:      include/xen/interface/io/vscsiif.h
11597
11598 XEN SWIOTLB SUBSYSTEM
11599 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11600 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11601 S:      Supported
11602 F:      arch/x86/xen/*swiotlb*
11603 F:      drivers/xen/*swiotlb*
11604
11605 XFS FILESYSTEM
11606 P:      Silicon Graphics Inc
11607 M:      Dave Chinner <david@fromorbit.com>
11608 M:      xfs@oss.sgi.com
11609 L:      xfs@oss.sgi.com
11610 W:      http://oss.sgi.com/projects/xfs
11611 T:      git git://oss.sgi.com/xfs/xfs.git
11612 S:      Supported
11613 F:      Documentation/filesystems/xfs.txt
11614 F:      fs/xfs/
11615
11616 XILINX AXI ETHERNET DRIVER
11617 M:      Anirudha Sarangi <anirudh@xilinx.com>
11618 M:      John Linn <John.Linn@xilinx.com>
11619 S:      Maintained
11620 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11621
11622 XILINX UARTLITE SERIAL DRIVER
11623 M:      Peter Korsgaard <jacmet@sunsite.dk>
11624 L:      linux-serial@vger.kernel.org
11625 S:      Maintained
11626 F:      drivers/tty/serial/uartlite.c
11627
11628 XILINX VIDEO IP CORES
11629 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11630 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11631 L:      linux-media@vger.kernel.org
11632 T:      git git://linuxtv.org/media_tree.git
11633 S:      Supported
11634 F:      Documentation/devicetree/bindings/media/xilinx/
11635 F:      drivers/media/platform/xilinx/
11636 F:      include/uapi/linux/xilinx-v4l2-controls.h
11637
11638 XILLYBUS DRIVER
11639 M:      Eli Billauer <eli.billauer@gmail.com>
11640 L:      linux-kernel@vger.kernel.org
11641 S:      Supported
11642 F:      drivers/char/xillybus/
11643
11644 XTENSA XTFPGA PLATFORM SUPPORT
11645 M:      Max Filippov <jcmvbkbc@gmail.com>
11646 L:      linux-xtensa@linux-xtensa.org
11647 S:      Maintained
11648 F:      drivers/spi/spi-xtensa-xtfpga.c
11649 F:      sound/soc/xtensa/xtfpga-i2s.c
11650
11651 YAM DRIVER FOR AX.25
11652 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11653 L:      linux-hams@vger.kernel.org
11654 S:      Maintained
11655 F:      drivers/net/hamradio/yam*
11656 F:      include/linux/yam.h
11657
11658 YEALINK PHONE DRIVER
11659 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11660 L:      usbb2k-api-dev@nongnu.org
11661 S:      Maintained
11662 F:      Documentation/input/yealink.txt
11663 F:      drivers/input/misc/yealink.*
11664
11665 Z8530 DRIVER FOR AX.25
11666 M:      Joerg Reuter <jreuter@yaina.de>
11667 W:      http://yaina.de/jreuter/
11668 W:      http://www.qsl.net/dl1bke/
11669 L:      linux-hams@vger.kernel.org
11670 S:      Maintained
11671 F:      Documentation/networking/z8530drv.txt
11672 F:      drivers/net/hamradio/*scc.c
11673 F:      drivers/net/hamradio/z8530.h
11674
11675 ZBUD COMPRESSED PAGE ALLOCATOR
11676 M:      Seth Jennings <sjennings@variantweb.net>
11677 L:      linux-mm@kvack.org
11678 S:      Maintained
11679 F:      mm/zbud.c
11680 F:      include/linux/zbud.h
11681
11682 ZD1211RW WIRELESS DRIVER
11683 M:      Daniel Drake <dsd@gentoo.org>
11684 M:      Ulrich Kunitz <kune@deine-taler.de>
11685 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11686 L:      linux-wireless@vger.kernel.org
11687 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11688 S:      Maintained
11689 F:      drivers/net/wireless/zd1211rw/
11690
11691 ZPOOL COMPRESSED PAGE STORAGE API
11692 M:      Dan Streetman <ddstreet@ieee.org>
11693 L:      linux-mm@kvack.org
11694 S:      Maintained
11695 F:      mm/zpool.c
11696 F:      include/linux/zpool.h
11697
11698 ZR36067 VIDEO FOR LINUX DRIVER
11699 L:      mjpeg-users@lists.sourceforge.net
11700 L:      linux-media@vger.kernel.org
11701 W:      http://mjpeg.sourceforge.net/driver-zoran/
11702 T:      hg http://linuxtv.org/hg/v4l-dvb
11703 S:      Odd Fixes
11704 F:      drivers/media/pci/zoran/
11705
11706 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11707 M:      Minchan Kim <minchan@kernel.org>
11708 M:      Nitin Gupta <ngupta@vflare.org>
11709 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11710 L:      linux-kernel@vger.kernel.org
11711 S:      Maintained
11712 F:      drivers/block/zram/
11713 F:      Documentation/blockdev/zram.txt
11714
11715 ZS DECSTATION Z85C30 SERIAL DRIVER
11716 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11717 S:      Maintained
11718 F:      drivers/tty/serial/zs.*
11719
11720 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11721 M:      Minchan Kim <minchan@kernel.org>
11722 M:      Nitin Gupta <ngupta@vflare.org>
11723 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11724 L:      linux-mm@kvack.org
11725 S:      Maintained
11726 F:      mm/zsmalloc.c
11727 F:      include/linux/zsmalloc.h
11728 F:      Documentation/vm/zsmalloc.txt
11729
11730 ZSWAP COMPRESSED SWAP CACHING
11731 M:      Seth Jennings <sjennings@variantweb.net>
11732 L:      linux-mm@kvack.org
11733 S:      Maintained
11734 F:      mm/zswap.c
11735
11736 THE REST
11737 M:      Linus Torvalds <torvalds@linux-foundation.org>
11738 L:      linux-kernel@vger.kernel.org
11739 Q:      http://patchwork.kernel.org/project/LKML/list/
11740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11741 S:      Buried alive in reporters
11742 F:      *
11743 F:      */