Merge tag 'dlm-4.3' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm
[cascardo/linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      http://linuxtv.org/
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 ACENIC DRIVER
244 M:      Jes Sorensen <jes@trained-monkey.org>
245 L:      linux-acenic@sunsite.dk
246 S:      Maintained
247 F:      drivers/net/ethernet/alteon/acenic*
248
249 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
250 M:      Peter Feuerer <peter@piie.net>
251 L:      platform-driver-x86@vger.kernel.org
252 W:      http://piie.net/?section=acerhdf
253 S:      Maintained
254 F:      drivers/platform/x86/acerhdf.c
255
256 ACER WMI LAPTOP EXTRAS
257 M:      "Lee, Chun-Yi" <jlee@suse.com>
258 L:      platform-driver-x86@vger.kernel.org
259 S:      Maintained
260 F:      drivers/platform/x86/acer-wmi.c
261
262 ACPI
263 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
264 M:      Len Brown <lenb@kernel.org>
265 L:      linux-acpi@vger.kernel.org
266 W:      https://01.org/linux-acpi
267 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
269 S:      Supported
270 F:      drivers/acpi/
271 F:      drivers/pnp/pnpacpi/
272 F:      include/linux/acpi.h
273 F:      include/acpi/
274 F:      Documentation/acpi/
275 F:      Documentation/ABI/testing/sysfs-bus-acpi
276 F:      drivers/pci/*acpi*
277 F:      drivers/pci/*/*acpi*
278 F:      drivers/pci/*/*/*acpi*
279 F:      tools/power/acpi/
280
281 ACPI COMPONENT ARCHITECTURE (ACPICA)
282 M:      Robert Moore <robert.moore@intel.com>
283 M:      Lv Zheng <lv.zheng@intel.com>
284 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
285 L:      linux-acpi@vger.kernel.org
286 L:      devel@acpica.org
287 W:      https://acpica.org/
288 W:      https://github.com/acpica/acpica/
289 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
291 S:      Supported
292 F:      drivers/acpi/acpica/
293 F:      include/acpi/
294 F:      tools/power/acpi/
295
296 ACPI FAN DRIVER
297 M:      Zhang Rui <rui.zhang@intel.com>
298 L:      linux-acpi@vger.kernel.org
299 W:      https://01.org/linux-acpi
300 S:      Supported
301 F:      drivers/acpi/fan.c
302
303 ACPI THERMAL DRIVER
304 M:      Zhang Rui <rui.zhang@intel.com>
305 L:      linux-acpi@vger.kernel.org
306 W:      https://01.org/linux-acpi
307 S:      Supported
308 F:      drivers/acpi/*thermal*
309
310 ACPI VIDEO DRIVER
311 M:      Zhang Rui <rui.zhang@intel.com>
312 L:      linux-acpi@vger.kernel.org
313 W:      https://01.org/linux-acpi
314 S:      Supported
315 F:      drivers/acpi/video.c
316
317 ACPI WMI DRIVER
318 L:      platform-driver-x86@vger.kernel.org
319 S:      Orphan
320 F:      drivers/platform/x86/wmi.c
321
322 AD1889 ALSA SOUND DRIVER
323 M:      Thibaut Varene <T-Bone@parisc-linux.org>
324 W:      http://wiki.parisc-linux.org/AD1889
325 L:      linux-parisc@vger.kernel.org
326 S:      Maintained
327 F:      sound/pci/ad1889.*
328
329 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
330 M:      Michael Hennerich <michael.hennerich@analog.com>
331 W:      http://wiki.analog.com/AD5254
332 W:      http://ez.analog.com/community/linux-device-drivers
333 S:      Supported
334 F:      drivers/misc/ad525x_dpot.c
335
336 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
337 M:      Michael Hennerich <michael.hennerich@analog.com>
338 W:      http://wiki.analog.com/AD5398
339 W:      http://ez.analog.com/community/linux-device-drivers
340 S:      Supported
341 F:      drivers/regulator/ad5398.c
342
343 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
344 M:      Michael Hennerich <michael.hennerich@analog.com>
345 W:      http://wiki.analog.com/AD7142
346 W:      http://ez.analog.com/community/linux-device-drivers
347 S:      Supported
348 F:      drivers/input/misc/ad714x.c
349
350 AD7877 TOUCHSCREEN DRIVER
351 M:      Michael Hennerich <michael.hennerich@analog.com>
352 W:      http://wiki.analog.com/AD7877
353 W:      http://ez.analog.com/community/linux-device-drivers
354 S:      Supported
355 F:      drivers/input/touchscreen/ad7877.c
356
357 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
358 M:      Michael Hennerich <michael.hennerich@analog.com>
359 W:      http://wiki.analog.com/AD7879
360 W:      http://ez.analog.com/community/linux-device-drivers
361 S:      Supported
362 F:      drivers/input/touchscreen/ad7879.c
363
364 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
365 M:      Jiri Kosina <jikos@kernel.org>
366 S:      Maintained
367
368 ADM1025 HARDWARE MONITOR DRIVER
369 M:      Jean Delvare <jdelvare@suse.com>
370 L:      lm-sensors@lm-sensors.org
371 S:      Maintained
372 F:      Documentation/hwmon/adm1025
373 F:      drivers/hwmon/adm1025.c
374
375 ADM1029 HARDWARE MONITOR DRIVER
376 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
377 L:      lm-sensors@lm-sensors.org
378 S:      Maintained
379 F:      drivers/hwmon/adm1029.c
380
381 ADM8211 WIRELESS DRIVER
382 L:      linux-wireless@vger.kernel.org
383 W:      http://wireless.kernel.org/
384 S:      Orphan
385 F:      drivers/net/wireless/adm8211.*
386
387 ADP1653 FLASH CONTROLLER DRIVER
388 M:      Sakari Ailus <sakari.ailus@iki.fi>
389 L:      linux-media@vger.kernel.org
390 S:      Maintained
391 F:      drivers/media/i2c/adp1653.c
392 F:      include/media/adp1653.h
393
394 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
395 M:      Michael Hennerich <michael.hennerich@analog.com>
396 W:      http://wiki.analog.com/ADP5520
397 W:      http://ez.analog.com/community/linux-device-drivers
398 S:      Supported
399 F:      drivers/mfd/adp5520.c
400 F:      drivers/video/backlight/adp5520_bl.c
401 F:      drivers/leds/leds-adp5520.c
402 F:      drivers/gpio/gpio-adp5520.c
403 F:      drivers/input/keyboard/adp5520-keys.c
404
405 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
406 M:      Michael Hennerich <michael.hennerich@analog.com>
407 W:      http://wiki.analog.com/ADP5588
408 W:      http://ez.analog.com/community/linux-device-drivers
409 S:      Supported
410 F:      drivers/input/keyboard/adp5588-keys.c
411 F:      drivers/gpio/gpio-adp5588.c
412
413 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
414 M:      Michael Hennerich <michael.hennerich@analog.com>
415 W:      http://wiki.analog.com/ADP8860
416 W:      http://ez.analog.com/community/linux-device-drivers
417 S:      Supported
418 F:      drivers/video/backlight/adp8860_bl.c
419
420 ADS1015 HARDWARE MONITOR DRIVER
421 M:      Dirk Eibach <eibach@gdsys.de>
422 L:      lm-sensors@lm-sensors.org
423 S:      Maintained
424 F:      Documentation/hwmon/ads1015
425 F:      drivers/hwmon/ads1015.c
426 F:      include/linux/i2c/ads1015.h
427
428 ADT746X FAN DRIVER
429 M:      Colin Leroy <colin@colino.net>
430 S:      Maintained
431 F:      drivers/macintosh/therm_adt746x.c
432
433 ADT7475 HARDWARE MONITOR DRIVER
434 M:      Jean Delvare <jdelvare@suse.com>
435 L:      lm-sensors@lm-sensors.org
436 S:      Maintained
437 F:      Documentation/hwmon/adt7475
438 F:      drivers/hwmon/adt7475.c
439
440 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
441 M:      Michael Hennerich <michael.hennerich@analog.com>
442 W:      http://wiki.analog.com/ADXL345
443 W:      http://ez.analog.com/community/linux-device-drivers
444 S:      Supported
445 F:      drivers/input/misc/adxl34x.c
446
447 ADVANSYS SCSI DRIVER
448 M:      Matthew Wilcox <matthew@wil.cx>
449 M:      Hannes Reinecke <hare@suse.com>
450 L:      linux-scsi@vger.kernel.org
451 S:      Maintained
452 F:      Documentation/scsi/advansys.txt
453 F:      drivers/scsi/advansys.c
454
455 AEDSP16 DRIVER
456 M:      Riccardo Facchetti <fizban@tin.it>
457 S:      Maintained
458 F:      sound/oss/aedsp16.c
459
460 AF9013 MEDIA DRIVER
461 M:      Antti Palosaari <crope@iki.fi>
462 L:      linux-media@vger.kernel.org
463 W:      http://linuxtv.org/
464 W:      http://palosaari.fi/linux/
465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
466 T:      git git://linuxtv.org/anttip/media_tree.git
467 S:      Maintained
468 F:      drivers/media/dvb-frontends/af9013*
469
470 AF9033 MEDIA DRIVER
471 M:      Antti Palosaari <crope@iki.fi>
472 L:      linux-media@vger.kernel.org
473 W:      http://linuxtv.org/
474 W:      http://palosaari.fi/linux/
475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
476 T:      git git://linuxtv.org/anttip/media_tree.git
477 S:      Maintained
478 F:      drivers/media/dvb-frontends/af9033*
479
480 AFFS FILE SYSTEM
481 L:      linux-fsdevel@vger.kernel.org
482 S:      Orphan
483 F:      Documentation/filesystems/affs.txt
484 F:      fs/affs/
485
486 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
487 M:      David Howells <dhowells@redhat.com>
488 L:      linux-afs@lists.infradead.org
489 S:      Supported
490 F:      fs/afs/
491 F:      include/net/af_rxrpc.h
492 F:      net/rxrpc/af_rxrpc.c
493
494 AGPGART DRIVER
495 M:      David Airlie <airlied@linux.ie>
496 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
497 S:      Maintained
498 F:      drivers/char/agp/
499 F:      include/linux/agp*
500 F:      include/uapi/linux/agp*
501
502 AHA152X SCSI DRIVER
503 M:      "Juergen E. Fischer" <fischer@norbit.de>
504 L:      linux-scsi@vger.kernel.org
505 S:      Maintained
506 F:      drivers/scsi/aha152x*
507 F:      drivers/scsi/pcmcia/aha152x*
508
509 AIC7XXX / AIC79XX SCSI DRIVER
510 M:      Hannes Reinecke <hare@suse.com>
511 L:      linux-scsi@vger.kernel.org
512 S:      Maintained
513 F:      drivers/scsi/aic7xxx/
514
515 AIMSLAB FM RADIO RECEIVER DRIVER
516 M:      Hans Verkuil <hverkuil@xs4all.nl>
517 L:      linux-media@vger.kernel.org
518 T:      git git://linuxtv.org/media_tree.git
519 W:      http://linuxtv.org
520 S:      Maintained
521 F:      drivers/media/radio/radio-aimslab*
522
523 AIO
524 M:      Benjamin LaHaise <bcrl@kvack.org>
525 L:      linux-aio@kvack.org
526 S:      Supported
527 F:      fs/aio.c
528 F:      include/linux/*aio*.h
529
530 AIRSPY MEDIA DRIVER
531 M:      Antti Palosaari <crope@iki.fi>
532 L:      linux-media@vger.kernel.org
533 W:      http://linuxtv.org/
534 W:      http://palosaari.fi/linux/
535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
536 T:      git git://linuxtv.org/anttip/media_tree.git
537 S:      Maintained
538 F:      drivers/media/usb/airspy/
539
540 ALCATEL SPEEDTOUCH USB DRIVER
541 M:      Duncan Sands <duncan.sands@free.fr>
542 L:      linux-usb@vger.kernel.org
543 W:      http://www.linux-usb.org/SpeedTouch/
544 S:      Maintained
545 F:      drivers/usb/atm/speedtch.c
546 F:      drivers/usb/atm/usbatm.c
547
548 ALCHEMY AU1XX0 MMC DRIVER
549 M:      Manuel Lauss <manuel.lauss@gmail.com>
550 S:      Maintained
551 F:      drivers/mmc/host/au1xmmc.c
552
553 ALI1563 I2C DRIVER
554 M:      Rudolf Marek <r.marek@assembler.cz>
555 L:      linux-i2c@vger.kernel.org
556 S:      Maintained
557 F:      Documentation/i2c/busses/i2c-ali1563
558 F:      drivers/i2c/busses/i2c-ali1563.c
559
560 ALLWINNER SECURITY SYSTEM
561 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
562 L:      linux-crypto@vger.kernel.org
563 S:      Maintained
564 F:      drivers/crypto/sunxi-ss/
565
566 ALPHA PORT
567 M:      Richard Henderson <rth@twiddle.net>
568 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
569 M:      Matt Turner <mattst88@gmail.com>
570 S:      Odd Fixes
571 L:      linux-alpha@vger.kernel.org
572 F:      arch/alpha/
573
574 ALTERA MAILBOX DRIVER
575 M:      Ley Foon Tan <lftan@altera.com>
576 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
577 S:      Maintained
578 F:      drivers/mailbox/mailbox-altera.c
579
580 ALTERA PIO DRIVER
581 M:      Tien Hock Loh <thloh@altera.com>
582 L:      linux-gpio@vger.kernel.org
583 S:      Maintained
584 F:      drivers/gpio/gpio-altera.c
585
586 ALTERA TRIPLE SPEED ETHERNET DRIVER
587 M:      Vince Bridgers <vbridger@opensource.altera.com>
588 L:      netdev@vger.kernel.org
589 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
590 S:      Maintained
591 F:      drivers/net/ethernet/altera/
592
593 ALTERA UART/JTAG UART SERIAL DRIVERS
594 M:      Tobias Klauser <tklauser@distanz.ch>
595 L:      linux-serial@vger.kernel.org
596 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
597 S:      Maintained
598 F:      drivers/tty/serial/altera_uart.c
599 F:      drivers/tty/serial/altera_jtaguart.c
600 F:      include/linux/altera_uart.h
601 F:      include/linux/altera_jtaguart.h
602
603 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
604 M:      Tom Lendacky <thomas.lendacky@amd.com>
605 L:      linux-crypto@vger.kernel.org
606 S:      Supported
607 F:      drivers/crypto/ccp/
608 F:      include/linux/ccp.h
609
610 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
611 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
612 L:      lm-sensors@lm-sensors.org
613 S:      Maintained
614 F:      Documentation/hwmon/fam15h_power
615 F:      drivers/hwmon/fam15h_power.c
616
617 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
618 M:      Thomas Dahlmann <dahlmann.thomas@arcor.de>
619 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
620 S:      Supported
621 F:      drivers/usb/gadget/udc/amd5536udc.*
622
623 AMD GEODE PROCESSOR/CHIPSET SUPPORT
624 P:      Andres Salomon <dilinger@queued.net>
625 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
626 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
627 S:      Supported
628 F:      drivers/char/hw_random/geode-rng.c
629 F:      drivers/crypto/geode*
630 F:      drivers/video/fbdev/geode/
631 F:      arch/x86/include/asm/geode.h
632
633 AMD IOMMU (AMD-VI)
634 M:      Joerg Roedel <joro@8bytes.org>
635 L:      iommu@lists.linux-foundation.org
636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
637 S:      Maintained
638 F:      drivers/iommu/amd_iommu*.[ch]
639 F:      include/linux/amd-iommu.h
640
641 AMD KFD
642 M:      Oded Gabbay <oded.gabbay@gmail.com>
643 L:      dri-devel@lists.freedesktop.org
644 T:      git git://people.freedesktop.org/~gabbayo/linux.git
645 S:      Supported
646 F:      drivers/gpu/drm/amd/amdkfd/
647 F:      drivers/gpu/drm/amd/include/cik_structs.h
648 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
649 F:      drivers/gpu/drm/radeon/radeon_kfd.c
650 F:      drivers/gpu/drm/radeon/radeon_kfd.h
651 F:      include/uapi/linux/kfd_ioctl.h
652
653 AMD MICROCODE UPDATE SUPPORT
654 M:      Borislav Petkov <bp@alien8.de>
655 S:      Maintained
656 F:      arch/x86/kernel/cpu/microcode/amd*
657
658 AMD XGBE DRIVER
659 M:      Tom Lendacky <thomas.lendacky@amd.com>
660 L:      netdev@vger.kernel.org
661 S:      Supported
662 F:      drivers/net/ethernet/amd/xgbe/
663
664 AMS (Apple Motion Sensor) DRIVER
665 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
666 S:      Supported
667 F:      drivers/macintosh/ams/
668
669 AMSO1100 RNIC DRIVER
670 M:      Tom Tucker <tom@opengridcomputing.com>
671 M:      Steve Wise <swise@opengridcomputing.com>
672 L:      linux-rdma@vger.kernel.org
673 S:      Maintained
674 F:      drivers/infiniband/hw/amso1100/
675
676 ANALOG DEVICES INC AD9389B DRIVER
677 M:      Hans Verkuil <hans.verkuil@cisco.com>
678 L:      linux-media@vger.kernel.org
679 S:      Maintained
680 F:      drivers/media/i2c/ad9389b*
681
682 ANALOG DEVICES INC ADV7180 DRIVER
683 M:      Lars-Peter Clausen <lars@metafoo.de>
684 L:      linux-media@vger.kernel.org
685 W:      http://ez.analog.com/community/linux-device-drivers
686 S:      Supported
687 F:      drivers/media/i2c/adv7180.c
688
689 ANALOG DEVICES INC ADV7511 DRIVER
690 M:      Hans Verkuil <hans.verkuil@cisco.com>
691 L:      linux-media@vger.kernel.org
692 S:      Maintained
693 F:      drivers/media/i2c/adv7511*
694
695 ANALOG DEVICES INC ADV7604 DRIVER
696 M:      Hans Verkuil <hans.verkuil@cisco.com>
697 L:      linux-media@vger.kernel.org
698 S:      Maintained
699 F:      drivers/media/i2c/adv7604*
700
701 ANALOG DEVICES INC ADV7842 DRIVER
702 M:      Hans Verkuil <hans.verkuil@cisco.com>
703 L:      linux-media@vger.kernel.org
704 S:      Maintained
705 F:      drivers/media/i2c/adv7842*
706
707 ANALOG DEVICES INC ASOC CODEC DRIVERS
708 M:      Lars-Peter Clausen <lars@metafoo.de>
709 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
710 W:      http://wiki.analog.com/
711 W:      http://ez.analog.com/community/linux-device-drivers
712 S:      Supported
713 F:      sound/soc/codecs/adau*
714 F:      sound/soc/codecs/adav*
715 F:      sound/soc/codecs/ad1*
716 F:      sound/soc/codecs/ad7*
717 F:      sound/soc/codecs/ssm*
718 F:      sound/soc/codecs/sigmadsp.*
719
720 ANALOG DEVICES INC ASOC DRIVERS
721 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
722 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
723 W:      http://blackfin.uclinux.org/
724 S:      Supported
725 F:      sound/soc/blackfin/*
726
727 ANALOG DEVICES INC IIO DRIVERS
728 M:      Lars-Peter Clausen <lars@metafoo.de>
729 M:      Michael Hennerich <Michael.Hennerich@analog.com>
730 W:      http://wiki.analog.com/
731 W:      http://ez.analog.com/community/linux-device-drivers
732 S:      Supported
733 F:      drivers/iio/*/ad*
734 X:      drivers/iio/*/adjd*
735 F:      drivers/staging/iio/*/ad*
736 F:      staging/iio/trigger/iio-trig-bfin-timer.c
737
738 ANDROID DRIVERS
739 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
740 M:      Arve HjønnevĂ¥g <arve@android.com>
741 M:      Riley Andrews <riandrews@android.com>
742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
743 L:      devel@driverdev.osuosl.org
744 S:      Supported
745 F:      drivers/android/
746 F:      drivers/staging/android/
747
748 AOA (Apple Onboard Audio) ALSA DRIVER
749 M:      Johannes Berg <johannes@sipsolutions.net>
750 L:      linuxppc-dev@lists.ozlabs.org
751 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
752 S:      Maintained
753 F:      sound/aoa/
754
755 APM DRIVER
756 M:      Jiri Kosina <jikos@kernel.org>
757 S:      Odd fixes
758 F:      arch/x86/kernel/apm_32.c
759 F:      include/linux/apm_bios.h
760 F:      include/uapi/linux/apm_bios.h
761 F:      drivers/char/apm-emulation.c
762
763 APPLE BCM5974 MULTITOUCH DRIVER
764 M:      Henrik Rydberg <rydberg@bitmath.org>
765 L:      linux-input@vger.kernel.org
766 S:      Odd fixes
767 F:      drivers/input/mouse/bcm5974.c
768
769 APPLE SMC DRIVER
770 M:      Henrik Rydberg <rydberg@bitmath.org>
771 L:      lm-sensors@lm-sensors.org
772 S:      Odd fixes
773 F:      drivers/hwmon/applesmc.c
774
775 APPLETALK NETWORK LAYER
776 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
777 S:      Maintained
778 F:      drivers/net/appletalk/
779 F:      net/appletalk/
780
781 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
782 M:      Iyappan Subramanian <isubramanian@apm.com>
783 M:      Keyur Chudgar <kchudgar@apm.com>
784 S:      Supported
785 F:      drivers/net/ethernet/apm/xgene/
786 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
787
788 APTINA CAMERA SENSOR PLL
789 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
790 L:      linux-media@vger.kernel.org
791 S:      Maintained
792 F:      drivers/media/i2c/aptina-pll.*
793
794 ARC FRAMEBUFFER DRIVER
795 M:      Jaya Kumar <jayalk@intworks.biz>
796 S:      Maintained
797 F:      drivers/video/fbdev/arcfb.c
798 F:      drivers/video/fbdev/core/fb_defio.c
799
800 ARM MFM AND FLOPPY DRIVERS
801 M:      Ian Molton <spyro@f2s.com>
802 S:      Maintained
803 F:      arch/arm/lib/floppydma.S
804 F:      arch/arm/include/asm/floppy.h
805
806 ARM PMU PROFILING AND DEBUGGING
807 M:      Will Deacon <will.deacon@arm.com>
808 S:      Maintained
809 F:      arch/arm/kernel/perf_event*
810 F:      arch/arm/oprofile/common.c
811 F:      arch/arm/include/asm/pmu.h
812 F:      arch/arm/kernel/hw_breakpoint.c
813 F:      arch/arm/include/asm/hw_breakpoint.h
814
815 ARM PORT
816 M:      Russell King <linux@arm.linux.org.uk>
817 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
818 W:      http://www.arm.linux.org.uk/
819 S:      Maintained
820 F:      arch/arm/
821
822 ARM SUB-ARCHITECTURES
823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
824 S:      Maintained
825 F:      arch/arm/mach-*/
826 F:      arch/arm/plat-*/
827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
828
829 ARM PRIMECELL AACI PL041 DRIVER
830 M:      Russell King <linux@arm.linux.org.uk>
831 S:      Maintained
832 F:      sound/arm/aaci.*
833
834 ARM PRIMECELL CLCD PL110 DRIVER
835 M:      Russell King <linux@arm.linux.org.uk>
836 S:      Maintained
837 F:      drivers/video/fbdev/amba-clcd.*
838
839 ARM PRIMECELL KMI PL050 DRIVER
840 M:      Russell King <linux@arm.linux.org.uk>
841 S:      Maintained
842 F:      drivers/input/serio/ambakmi.*
843 F:      include/linux/amba/kmi.h
844
845 ARM PRIMECELL MMCI PL180/1 DRIVER
846 M:      Russell King <linux@arm.linux.org.uk>
847 S:      Maintained
848 F:      drivers/mmc/host/mmci.*
849 F:      include/linux/amba/mmci.h
850
851 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
852 M:      Russell King <linux@arm.linux.org.uk>
853 S:      Maintained
854 F:      drivers/tty/serial/amba-pl01*.c
855 F:      include/linux/amba/serial.h
856
857 ARM PRIMECELL BUS SUPPORT
858 M:      Russell King <linux@arm.linux.org.uk>
859 S:      Maintained
860 F:      drivers/amba/
861 F:      include/linux/amba/bus.h
862
863 ARM/ADS SPHERE MACHINE SUPPORT
864 M:      Lennert Buytenhek <kernel@wantstofly.org>
865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
866 S:      Maintained
867
868 ARM/AFEB9260 MACHINE SUPPORT
869 M:      Sergey Lapin <slapin@ossfans.org>
870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
871 S:      Maintained
872
873 ARM/AJECO 1ARM MACHINE SUPPORT
874 M:      Lennert Buytenhek <kernel@wantstofly.org>
875 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
876 S:      Maintained
877
878 ARM/Allwinner A1X SoC support
879 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
880 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
881 S:      Maintained
882 N:      sun[x4567]i
883
884 ARM/Allwinner SoC Clock Support
885 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
886 S:      Maintained
887 F:      drivers/clk/sunxi/
888
889 ARM/Amlogic MesonX SoC support
890 M:      Carlo Caione <carlo@caione.org>
891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
892 S:      Maintained
893 F:      drivers/media/rc/meson-ir.c
894 N:      meson[x68]
895
896 ARM/Annapurna Labs ALPINE ARCHITECTURE
897 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
898 S:      Maintained
899 F:      arch/arm/mach-alpine/
900
901 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
902 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
903 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
904 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
906 W:      http://www.linux4sam.org
907 S:      Supported
908 F:      arch/arm/mach-at91/
909 F:      include/soc/at91/
910 F:      arch/arm/boot/dts/at91*.dts
911 F:      arch/arm/boot/dts/at91*.dtsi
912 F:      arch/arm/boot/dts/sama*.dts
913 F:      arch/arm/boot/dts/sama*.dtsi
914 F:      arch/arm/include/debug/at91.S
915
916 ARM/ATMEL AT91 Clock Support
917 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
918 S:      Maintained
919 F:      drivers/clk/at91
920
921 ARM/CALXEDA HIGHBANK ARCHITECTURE
922 M:      Rob Herring <robh@kernel.org>
923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
924 S:      Maintained
925 F:      arch/arm/mach-highbank/
926
927 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
928 M:      Krzysztof Halasa <khalasa@piap.pl>
929 S:      Maintained
930 F:      arch/arm/mach-cns3xxx/
931
932 ARM/CAVIUM THUNDER NETWORK DRIVER
933 M:      Sunil Goutham <sgoutham@cavium.com>
934 M:      Robert Richter <rric@kernel.org>
935 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
936 S:      Supported
937 F:      drivers/net/ethernet/cavium/thunder/
938
939 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
940 M:      Alexander Shiyan <shc_work@mail.ru>
941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
942 S:      Odd Fixes
943 N:      clps711x
944
945 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
946 M:      Hartley Sweeten <hsweeten@visionengravers.com>
947 M:      Ryan Mallon <rmallon@gmail.com>
948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
949 S:      Maintained
950 F:      arch/arm/mach-ep93xx/
951 F:      arch/arm/mach-ep93xx/include/mach/
952
953 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
954 M:      Lennert Buytenhek <kernel@wantstofly.org>
955 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
956 S:      Maintained
957
958 ARM/CLKDEV SUPPORT
959 M:      Russell King <linux@arm.linux.org.uk>
960 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
961 S:      Maintained
962 F:      arch/arm/include/asm/clkdev.h
963 F:      drivers/clk/clkdev.c
964
965 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
966 M:      Mike Rapoport <mike@compulab.co.il>
967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968 S:      Maintained
969
970 ARM/CONTEC MICRO9 MACHINE SUPPORT
971 M:      Hubert Feurstein <hubert.feurstein@contec.at>
972 S:      Maintained
973 F:      arch/arm/mach-ep93xx/micro9.c
974
975 ARM/CORESIGHT FRAMEWORK AND DRIVERS
976 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
978 S:      Maintained
979 F:      drivers/hwtracing/coresight/*
980 F:      Documentation/trace/coresight.txt
981 F:      Documentation/devicetree/bindings/arm/coresight.txt
982 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
983
984 ARM/CORGI MACHINE SUPPORT
985 M:      Richard Purdie <rpurdie@rpsys.net>
986 S:      Maintained
987
988 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
989 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
991 T:      git git://github.com/ulli-kroll/linux.git
992 S:      Maintained
993 F:      arch/arm/mach-gemini/
994 F:      drivers/rtc/rtc-gemini.c
995
996 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
997 M:      Barry Song <baohua@kernel.org>
998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1000 S:      Maintained
1001 F:      arch/arm/mach-prima2/
1002 F:      drivers/clk/sirf/
1003 F:      drivers/clocksource/timer-prima2.c
1004 F:      drivers/clocksource/timer-atlas7.c
1005 N:      [^a-z]sirf
1006
1007 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1008 M:      Baruch Siach <baruch@tkos.co.il>
1009 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1010 S:      Maintained
1011 F:      arch/arm/boot/dts/cx92755*
1012 N:      digicolor
1013
1014 ARM/EBSA110 MACHINE SUPPORT
1015 M:      Russell King <linux@arm.linux.org.uk>
1016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1017 W:      http://www.arm.linux.org.uk/
1018 S:      Maintained
1019 F:      arch/arm/mach-ebsa110/
1020 F:      drivers/net/ethernet/amd/am79c961a.*
1021
1022 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1023 M:      Uwe Kleine-König <kernel@pengutronix.de>
1024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1025 S:      Maintained
1026 N:      efm32
1027
1028 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1029 M:      Daniel Ribeiro <drwyrm@gmail.com>
1030 M:      Stefan Schmidt <stefan@openezx.org>
1031 M:      Harald Welte <laforge@openezx.org>
1032 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1033 W:      http://www.openezx.org/
1034 S:      Maintained
1035 T:      topgit git://git.openezx.org/openezx.git
1036 F:      arch/arm/mach-pxa/ezx.c
1037
1038 ARM/FARADAY FA526 PORT
1039 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1041 S:      Maintained
1042 T:      git git://git.berlios.de/gemini-board
1043 F:      arch/arm/mm/*-fa*
1044
1045 ARM/FOOTBRIDGE ARCHITECTURE
1046 M:      Russell King <linux@arm.linux.org.uk>
1047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1048 W:      http://www.arm.linux.org.uk/
1049 S:      Maintained
1050 F:      arch/arm/include/asm/hardware/dec21285.h
1051 F:      arch/arm/mach-footbridge/
1052
1053 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1054 M:      Shawn Guo <shawnguo@kernel.org>
1055 M:      Sascha Hauer <kernel@pengutronix.de>
1056 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1057 S:      Maintained
1058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1059 F:      arch/arm/mach-imx/
1060 F:      arch/arm/mach-mxs/
1061 F:      arch/arm/boot/dts/imx*
1062 F:      arch/arm/configs/imx*_defconfig
1063 F:      drivers/clk/imx/
1064 F:      include/soc/imx/
1065
1066 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1067 M:      Shawn Guo <shawnguo@kernel.org>
1068 M:      Sascha Hauer <kernel@pengutronix.de>
1069 R:      Stefan Agner <stefan@agner.ch>
1070 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1071 S:      Maintained
1072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1073 F:      arch/arm/mach-imx/*vf610*
1074 F:      arch/arm/boot/dts/vf*
1075
1076 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1077 M:      Lennert Buytenhek <kernel@wantstofly.org>
1078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1079 S:      Maintained
1080
1081 ARM/GUMSTIX MACHINE SUPPORT
1082 M:      Steve Sakoman <sakoman@gmail.com>
1083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1084 S:      Maintained
1085
1086 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1087 M:      Philipp Zabel <philipp.zabel@gmail.com>
1088 M:      Paul Parsons <lost.distance@yahoo.com>
1089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090 S:      Maintained
1091 F:      arch/arm/mach-pxa/hx4700.c
1092 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1093 F:      sound/soc/pxa/hx4700.c
1094
1095 ARM/HISILICON SOC SUPPORT
1096 M:      Wei Xu <xuwei5@hisilicon.com>
1097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1098 W:      http://www.hisilicon.com
1099 S:      Supported
1100 T:      git git://github.com/hisilicon/linux-hisi.git
1101 F:      arch/arm/mach-hisi/
1102
1103 ARM/HP JORNADA 7XX MACHINE SUPPORT
1104 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1105 W:      www.jlime.com
1106 S:      Maintained
1107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1108 F:      arch/arm/mach-sa1100/jornada720.c
1109 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1110
1111 ARM/IGEP MACHINE SUPPORT
1112 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1113 M:      Javier Martinez Canillas <javier@dowhile0.org>
1114 L:      linux-omap@vger.kernel.org
1115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1116 S:      Maintained
1117 F:      arch/arm/boot/dts/omap3-igep*
1118
1119 ARM/INCOME PXA270 SUPPORT
1120 M:      Marek Vasut <marek.vasut@gmail.com>
1121 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1122 S:      Maintained
1123 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1124
1125 ARM/INTEL IOP32X ARM ARCHITECTURE
1126 M:      Lennert Buytenhek <kernel@wantstofly.org>
1127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1128 S:      Maintained
1129
1130 ARM/INTEL IOP33X ARM ARCHITECTURE
1131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1132 S:      Orphan
1133
1134 ARM/INTEL IOP13XX ARM ARCHITECTURE
1135 M:      Lennert Buytenhek <kernel@wantstofly.org>
1136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1137 S:      Maintained
1138
1139 ARM/INTEL IQ81342EX MACHINE SUPPORT
1140 M:      Lennert Buytenhek <kernel@wantstofly.org>
1141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1142 S:      Maintained
1143
1144 ARM/INTEL IXDP2850 MACHINE SUPPORT
1145 M:      Lennert Buytenhek <kernel@wantstofly.org>
1146 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1147 S:      Maintained
1148
1149 ARM/INTEL IXP4XX ARM ARCHITECTURE
1150 M:      Imre Kaloz <kaloz@openwrt.org>
1151 M:      Krzysztof Halasa <khalasa@piap.pl>
1152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1153 S:      Maintained
1154 F:      arch/arm/mach-ixp4xx/
1155
1156 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1157 M:      Jonathan Cameron <jic23@cam.ac.uk>
1158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1159 S:      Maintained
1160 F:      arch/arm/mach-pxa/stargate2.c
1161 F:      drivers/pcmcia/pxa2xx_stargate2.c
1162
1163 ARM/INTEL XSC3 (MANZANO) ARM CORE
1164 M:      Lennert Buytenhek <kernel@wantstofly.org>
1165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1166 S:      Maintained
1167
1168 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1169 M:      Lennert Buytenhek <kernel@wantstofly.org>
1170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1171 S:      Maintained
1172
1173 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1174 M:      Santosh Shilimkar <ssantosh@kernel.org>
1175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1176 S:      Maintained
1177 F:      arch/arm/mach-keystone/
1178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1179
1180 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1181 M:      Santosh Shilimkar <ssantosh@kernel.org>
1182 L:      linux-kernel@vger.kernel.org
1183 S:      Maintained
1184 F:      drivers/clk/keystone/
1185
1186 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1187 M:      Santosh Shilimkar <ssantosh@kernel.org>
1188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189 L:      linux-kernel@vger.kernel.org
1190 S:      Maintained
1191 F:      drivers/clocksource/timer-keystone.c
1192
1193 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1194 M:      Santosh Shilimkar <ssantosh@kernel.org>
1195 L:      linux-kernel@vger.kernel.org
1196 S:      Maintained
1197 F:      drivers/power/reset/keystone-reset.c
1198
1199 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1200 M:      Santosh Shilimkar <ssantosh@kernel.org>
1201 L:      linux-kernel@vger.kernel.org
1202 S:      Maintained
1203 F:      drivers/memory/*emif*
1204
1205 ARM/LOGICPD PXA270 MACHINE SUPPORT
1206 M:      Lennert Buytenhek <kernel@wantstofly.org>
1207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1208 S:      Maintained
1209
1210 ARM/LPC18XX ARCHITECTURE
1211 M:      Joachim Eastwood <manabian@gmail.com>
1212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1213 S:      Maintained
1214 N:      lpc18xx
1215
1216 ARM/MAGICIAN MACHINE SUPPORT
1217 M:      Philipp Zabel <philipp.zabel@gmail.com>
1218 S:      Maintained
1219
1220 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1221 M:      Jason Cooper <jason@lakedaemon.net>
1222 M:      Andrew Lunn <andrew@lunn.ch>
1223 M:      Gregory Clement <gregory.clement@free-electrons.com>
1224 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226 S:      Maintained
1227 F:      arch/arm/mach-mvebu/
1228 F:      drivers/rtc/rtc-armada38x.c
1229 F:      arch/arm/boot/dts/armada*
1230 F:      arch/arm/boot/dts/kirkwood*
1231
1232
1233 ARM/Marvell Berlin SoC support
1234 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1235 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1236 S:      Maintained
1237 F:      arch/arm/mach-berlin/
1238 F:      arch/arm/boot/dts/berlin*
1239
1240
1241 ARM/Marvell Dove/MV78xx0/Orion SOC support
1242 M:      Jason Cooper <jason@lakedaemon.net>
1243 M:      Andrew Lunn <andrew@lunn.ch>
1244 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1245 M:      Gregory Clement <gregory.clement@free-electrons.com>
1246 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1247 S:      Maintained
1248 F:      arch/arm/mach-dove/
1249 F:      arch/arm/mach-mv78xx0/
1250 F:      arch/arm/mach-orion5x/
1251 F:      arch/arm/plat-orion/
1252 F:      arch/arm/boot/dts/dove*
1253 F:      arch/arm/boot/dts/orion5x*
1254
1255
1256 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1257 M:      Alexander Clouter <alex@digriz.org.uk>
1258 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1259 W:      http://www.digriz.org.uk/ts78xx/kernel
1260 S:      Maintained
1261 F:      arch/arm/mach-orion5x/ts78xx-*
1262
1263 ARM/Mediatek RTC DRIVER
1264 M:      Eddie Huang <eddie.huang@mediatek.com>
1265 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1266 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1267 S:      Maintained
1268 F:      drivers/rtc/rtc-mt6397.c
1269
1270 ARM/Mediatek SoC support
1271 M:      Matthias Brugger <matthias.bgg@gmail.com>
1272 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1273 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1274 S:      Maintained
1275 F:      arch/arm/boot/dts/mt6*
1276 F:      arch/arm/boot/dts/mt8*
1277 F:      arch/arm/mach-mediatek/
1278 N:      mtk
1279 K:      mediatek
1280
1281 ARM/MICREL KS8695 ARCHITECTURE
1282 M:      Greg Ungerer <gerg@uclinux.org>
1283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1284 F:      arch/arm/mach-ks8695/
1285 S:      Odd Fixes
1286
1287 ARM/MIOA701 MACHINE SUPPORT
1288 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1290 F:      arch/arm/mach-pxa/mioa701.c
1291 S:      Maintained
1292
1293 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1294 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1295 S:      Maintained
1296
1297 ARM/NOMADIK ARCHITECTURE
1298 M:      Alessandro Rubini <rubini@unipv.it>
1299 M:      Linus Walleij <linus.walleij@linaro.org>
1300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1301 S:      Maintained
1302 F:      arch/arm/mach-nomadik/
1303 F:      drivers/pinctrl/nomadik/
1304 F:      drivers/i2c/busses/i2c-nomadik.c
1305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1306
1307 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1308 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1309 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1310 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1311 S:      Supported
1312
1313 ARM/TOSA MACHINE SUPPORT
1314 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1315 M:      Dirk Opfer <dirk@opfer-online.de>
1316 S:      Maintained
1317
1318 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1319 M:      Marek Vasut <marek.vasut@gmail.com>
1320 L:      linux-arm-kernel@lists.infradead.org
1321 W:      http://hackndev.com
1322 S:      Maintained
1323 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1324 F:      arch/arm/mach-pxa/palmtx.c
1325 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1326 F:      arch/arm/mach-pxa/palmt5.c
1327 F:      arch/arm/mach-pxa/include/mach/palmld.h
1328 F:      arch/arm/mach-pxa/palmld.c
1329 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1330 F:      arch/arm/mach-pxa/palmte2.c
1331 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1332 F:      arch/arm/mach-pxa/palmtc.c
1333
1334 ARM/PALM TREO SUPPORT
1335 M:      Tomas Cech <sleep_walker@suse.com>
1336 L:      linux-arm-kernel@lists.infradead.org
1337 W:      http://hackndev.com
1338 S:      Maintained
1339 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1340 F:      arch/arm/mach-pxa/palmtreo.c
1341
1342 ARM/PALMZ72 SUPPORT
1343 M:      Sergey Lapin <slapin@ossfans.org>
1344 L:      linux-arm-kernel@lists.infradead.org
1345 W:      http://hackndev.com
1346 S:      Maintained
1347 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1348 F:      arch/arm/mach-pxa/palmz72.c
1349
1350 ARM/PLEB SUPPORT
1351 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1352 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1353 S:      Maintained
1354
1355 ARM/PT DIGITAL BOARD PORT
1356 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1357 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1358 W:      http://www.arm.linux.org.uk/
1359 S:      Maintained
1360
1361 ARM/QUALCOMM SUPPORT
1362 M:      Kumar Gala <galak@codeaurora.org>
1363 M:      Andy Gross <agross@codeaurora.org>
1364 M:      David Brown <davidb@codeaurora.org>
1365 L:      linux-arm-msm@vger.kernel.org
1366 L:      linux-soc@vger.kernel.org
1367 S:      Maintained
1368 F:      arch/arm/mach-qcom/
1369 F:      drivers/soc/qcom/
1370 F:      drivers/tty/serial/msm_serial.h
1371 F:      drivers/tty/serial/msm_serial.c
1372 F:      drivers/*/pm8???-*
1373 F:      drivers/mfd/ssbi.c
1374 F:      drivers/firmware/qcom_scm.c
1375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1376
1377 ARM/RADISYS ENP2611 MACHINE SUPPORT
1378 M:      Lennert Buytenhek <kernel@wantstofly.org>
1379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1380 S:      Maintained
1381
1382 ARM/RISCPC ARCHITECTURE
1383 M:      Russell King <linux@arm.linux.org.uk>
1384 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1385 W:      http://www.arm.linux.org.uk/
1386 S:      Maintained
1387 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1388 F:      arch/arm/include/asm/hardware/ioc.h
1389 F:      arch/arm/include/asm/hardware/iomd.h
1390 F:      arch/arm/include/asm/hardware/memc.h
1391 F:      arch/arm/mach-rpc/
1392 F:      drivers/net/ethernet/8390/etherh.c
1393 F:      drivers/net/ethernet/i825xx/ether1*
1394 F:      drivers/net/ethernet/seeq/ether3*
1395 F:      drivers/scsi/arm/
1396
1397 ARM/Rockchip SoC support
1398 M:      Heiko Stuebner <heiko@sntech.de>
1399 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1400 L:      linux-rockchip@lists.infradead.org
1401 S:      Maintained
1402 F:      arch/arm/boot/dts/rk3*
1403 F:      arch/arm/mach-rockchip/
1404 F:      drivers/clk/rockchip/
1405 F:      drivers/i2c/busses/i2c-rk3x.c
1406 F:      drivers/*/*rockchip*
1407 F:      drivers/*/*/*rockchip*
1408 F:      sound/soc/rockchip/
1409 N:      rockchip
1410
1411 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1412 M:      Kukjin Kim <kgene@kernel.org>
1413 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1415 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1416 S:      Maintained
1417 F:      arch/arm/boot/dts/s3c*
1418 F:      arch/arm/boot/dts/exynos*
1419 F:      arch/arm64/boot/dts/exynos/
1420 F:      arch/arm/plat-samsung/
1421 F:      arch/arm/mach-s3c24*/
1422 F:      arch/arm/mach-s3c64xx/
1423 F:      arch/arm/mach-s5p*/
1424 F:      arch/arm/mach-exynos*/
1425 F:      drivers/*/*s3c2410*
1426 F:      drivers/*/*/*s3c2410*
1427 F:      drivers/spi/spi-s3c*
1428 F:      sound/soc/samsung/*
1429 N:      exynos
1430
1431 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1432 M:      Kyungmin Park <kyungmin.park@samsung.com>
1433 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1434 S:      Maintained
1435 F:      arch/arm/mach-s5pv210/
1436
1437 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1438 M:      Kyungmin Park <kyungmin.park@samsung.com>
1439 M:      Kamil Debski <k.debski@samsung.com>
1440 L:      linux-arm-kernel@lists.infradead.org
1441 L:      linux-media@vger.kernel.org
1442 S:      Maintained
1443 F:      drivers/media/platform/s5p-g2d/
1444
1445 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1446 M:      Kyungmin Park <kyungmin.park@samsung.com>
1447 M:      Kamil Debski <k.debski@samsung.com>
1448 M:      Jeongtae Park <jtp.park@samsung.com>
1449 L:      linux-arm-kernel@lists.infradead.org
1450 L:      linux-media@vger.kernel.org
1451 S:      Maintained
1452 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1453 F:      drivers/media/platform/s5p-mfc/
1454
1455 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1456 M:      Kyungmin Park <kyungmin.park@samsung.com>
1457 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1458 L:      linux-arm-kernel@lists.infradead.org
1459 L:      linux-media@vger.kernel.org
1460 S:      Maintained
1461 F:      drivers/media/platform/s5p-tv/
1462
1463 ARM/SHMOBILE ARM ARCHITECTURE
1464 M:      Simon Horman <horms@verge.net.au>
1465 M:      Magnus Damm <magnus.damm@gmail.com>
1466 L:      linux-sh@vger.kernel.org
1467 W:      http://oss.renesas.com
1468 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1470 S:      Supported
1471 F:      arch/arm/boot/dts/emev2*
1472 F:      arch/arm/boot/dts/r7s*
1473 F:      arch/arm/boot/dts/r8a*
1474 F:      arch/arm/boot/dts/sh*
1475 F:      arch/arm/configs/bockw_defconfig
1476 F:      arch/arm/configs/marzen_defconfig
1477 F:      arch/arm/configs/shmobile_defconfig
1478 F:      arch/arm/include/debug/renesas-scif.S
1479 F:      arch/arm/mach-shmobile/
1480 F:      drivers/sh/
1481
1482 ARM/SOCFPGA ARCHITECTURE
1483 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1484 S:      Maintained
1485 F:      arch/arm/mach-socfpga/
1486 F:      arch/arm/boot/dts/socfpga*
1487 F:      arch/arm/configs/socfpga_defconfig
1488 W:      http://www.rocketboards.org
1489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1490
1491 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1492 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1493 S:      Maintained
1494 F:      drivers/clk/socfpga/
1495
1496 ARM/SOCFPGA EDAC SUPPORT
1497 M:      Thor Thayer <tthayer@opensource.altera.com>
1498 S:      Maintained
1499 F:      drivers/edac/altera_edac.
1500
1501 ARM/STI ARCHITECTURE
1502 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1503 M:      Maxime Coquelin <maxime.coquelin@st.com>
1504 M:      Patrice Chotard <patrice.chotard@st.com>
1505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1506 L:      kernel@stlinux.com
1507 W:      http://www.stlinux.com
1508 S:      Maintained
1509 F:      arch/arm/mach-sti/
1510 F:      arch/arm/boot/dts/sti*
1511 F:      drivers/clocksource/arm_global_timer.c
1512 F:      drivers/i2c/busses/i2c-st.c
1513 F:      drivers/media/rc/st_rc.c
1514 F:      drivers/mmc/host/sdhci-st.c
1515 F:      drivers/phy/phy-miphy28lp.c
1516 F:      drivers/phy/phy-miphy365x.c
1517 F:      drivers/phy/phy-stih407-usb.c
1518 F:      drivers/phy/phy-stih41x-usb.c
1519 F:      drivers/pinctrl/pinctrl-st.c
1520 F:      drivers/reset/sti/
1521 F:      drivers/rtc/rtc-st-lpc.c
1522 F:      drivers/tty/serial/st-asc.c
1523 F:      drivers/usb/dwc3/dwc3-st.c
1524 F:      drivers/usb/host/ehci-st.c
1525 F:      drivers/usb/host/ohci-st.c
1526 F:      drivers/watchdog/st_lpc_wdt.c
1527 F:      drivers/ata/ahci_st.c
1528
1529 ARM/STM32 ARCHITECTURE
1530 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1532 S:      Maintained
1533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1534 N:      stm32
1535 F:      drivers/clocksource/armv7m_systick.c
1536
1537 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1538 M:      Lennert Buytenhek <kernel@wantstofly.org>
1539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1540 S:      Maintained
1541
1542 ARM/TETON BGA MACHINE SUPPORT
1543 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1545 S:      Maintained
1546
1547 ARM/THECUS N2100 MACHINE SUPPORT
1548 M:      Lennert Buytenhek <kernel@wantstofly.org>
1549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1550 S:      Maintained
1551
1552 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1553 M:      Wan ZongShun <mcuos.com@gmail.com>
1554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1555 W:      http://www.mcuos.com
1556 S:      Maintained
1557 F:      arch/arm/mach-w90x900/
1558 F:      drivers/input/keyboard/w90p910_keypad.c
1559 F:      drivers/input/touchscreen/w90p910_ts.c
1560 F:      drivers/watchdog/nuc900_wdt.c
1561 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1562 F:      drivers/mtd/nand/nuc900_nand.c
1563 F:      drivers/rtc/rtc-nuc900.c
1564 F:      drivers/spi/spi-nuc900.c
1565 F:      drivers/usb/host/ehci-w90x900.c
1566 F:      drivers/video/fbdev/nuc900fb.c
1567
1568 ARM/U300 MACHINE SUPPORT
1569 M:      Linus Walleij <linus.walleij@linaro.org>
1570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1571 S:      Supported
1572 F:      arch/arm/mach-u300/
1573 F:      drivers/clocksource/timer-u300.c
1574 F:      drivers/i2c/busses/i2c-stu300.c
1575 F:      drivers/rtc/rtc-coh901331.c
1576 F:      drivers/watchdog/coh901327_wdt.c
1577 F:      drivers/dma/coh901318*
1578 F:      drivers/mfd/ab3100*
1579 F:      drivers/rtc/rtc-ab3100.c
1580 F:      drivers/rtc/rtc-coh901331.c
1581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1582
1583 ARM/UNIPHIER ARCHITECTURE
1584 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1586 S:      Maintained
1587 F:      arch/arm/boot/dts/uniphier*
1588 F:      arch/arm/mach-uniphier/
1589 F:      drivers/pinctrl/uniphier/
1590 F:      drivers/tty/serial/8250/8250_uniphier.c
1591 N:      uniphier
1592
1593 ARM/Ux500 ARM ARCHITECTURE
1594 M:      Linus Walleij <linus.walleij@linaro.org>
1595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1596 S:      Maintained
1597 F:      arch/arm/mach-ux500/
1598 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1599 F:      drivers/dma/ste_dma40*
1600 F:      drivers/hwspinlock/u8500_hsem.c
1601 F:      drivers/mfd/abx500*
1602 F:      drivers/mfd/ab8500*
1603 F:      drivers/mfd/dbx500*
1604 F:      drivers/mfd/db8500*
1605 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1606 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1607 F:      drivers/rtc/rtc-ab8500.c
1608 F:      drivers/rtc/rtc-pl031.c
1609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1610
1611 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1612 M:      Ulf Hansson <ulf.hansson@linaro.org>
1613 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1614 T:      git git://git.linaro.org/people/ulfh/clk.git
1615 S:      Maintained
1616 F:      drivers/clk/ux500/
1617 F:      include/linux/platform_data/clk-ux500.h
1618
1619 ARM/VERSATILE EXPRESS PLATFORM
1620 M:      Liviu Dudau <liviu.dudau@arm.com>
1621 M:      Sudeep Holla <sudeep.holla@arm.com>
1622 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1624 S:      Maintained
1625 F:      arch/arm/boot/dts/vexpress*
1626 F:      arch/arm64/boot/dts/arm/vexpress*
1627 F:      arch/arm/mach-vexpress/
1628 F:      */*/vexpress*
1629 F:      */*/*/vexpress*
1630 F:      drivers/clk/versatile/clk-vexpress-osc.c
1631 F:      drivers/clocksource/versatile.c
1632
1633 ARM/VFP SUPPORT
1634 M:      Russell King <linux@arm.linux.org.uk>
1635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1636 W:      http://www.arm.linux.org.uk/
1637 S:      Maintained
1638 F:      arch/arm/vfp/
1639
1640 ARM/VOIPAC PXA270 SUPPORT
1641 M:      Marek Vasut <marek.vasut@gmail.com>
1642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1643 S:      Maintained
1644 F:      arch/arm/mach-pxa/vpac270.c
1645 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1646
1647 ARM/VT8500 ARM ARCHITECTURE
1648 M:      Tony Prisk <linux@prisktech.co.nz>
1649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 S:      Maintained
1651 F:      arch/arm/mach-vt8500/
1652 F:      drivers/clocksource/vt8500_timer.c
1653 F:      drivers/i2c/busses/i2c-wmt.c
1654 F:      drivers/mmc/host/wmt-sdmmc.c
1655 F:      drivers/pwm/pwm-vt8500.c
1656 F:      drivers/rtc/rtc-vt8500.c
1657 F:      drivers/tty/serial/vt8500_serial.c
1658 F:      drivers/usb/host/ehci-platform.c
1659 F:      drivers/usb/host/uhci-platform.c
1660 F:      drivers/video/fbdev/vt8500lcdfb.*
1661 F:      drivers/video/fbdev/wm8505fb*
1662 F:      drivers/video/fbdev/wmt_ge_rops.*
1663
1664 ARM/ZIPIT Z2 SUPPORT
1665 M:      Marek Vasut <marek.vasut@gmail.com>
1666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1667 S:      Maintained
1668 F:      arch/arm/mach-pxa/z2.c
1669 F:      arch/arm/mach-pxa/include/mach/z2.h
1670
1671 ARM/ZTE ARCHITECTURE
1672 M:      Jun Nie <jun.nie@linaro.org>
1673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1674 S:      Maintained
1675 F:      arch/arm/mach-zx/
1676 F:      drivers/clk/zte/
1677 F:      Documentation/devicetree/bindings/arm/zte.txt
1678 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1679
1680 ARM/ZYNQ ARCHITECTURE
1681 M:      Michal Simek <michal.simek@xilinx.com>
1682 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1684 W:      http://wiki.xilinx.com
1685 T:      git https://github.com/Xilinx/linux-xlnx.git
1686 S:      Supported
1687 F:      arch/arm/mach-zynq/
1688 F:      drivers/cpuidle/cpuidle-zynq.c
1689 F:      drivers/block/xsysace.c
1690 N:      zynq
1691 N:      xilinx
1692 F:      drivers/clocksource/cadence_ttc_timer.c
1693 F:      drivers/i2c/busses/i2c-cadence.c
1694 F:      drivers/mmc/host/sdhci-of-arasan.c
1695 F:      drivers/edac/synopsys_edac.c
1696
1697 ARM SMMU DRIVERS
1698 M:      Will Deacon <will.deacon@arm.com>
1699 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1700 S:      Maintained
1701 F:      drivers/iommu/arm-smmu.c
1702 F:      drivers/iommu/arm-smmu-v3.c
1703 F:      drivers/iommu/io-pgtable-arm.c
1704
1705 ARM64 PORT (AARCH64 ARCHITECTURE)
1706 M:      Catalin Marinas <catalin.marinas@arm.com>
1707 M:      Will Deacon <will.deacon@arm.com>
1708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1709 S:      Maintained
1710 F:      arch/arm64/
1711 F:      Documentation/arm64/
1712
1713 AS3645A LED FLASH CONTROLLER DRIVER
1714 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1715 L:      linux-media@vger.kernel.org
1716 T:      git git://linuxtv.org/media_tree.git
1717 S:      Maintained
1718 F:      drivers/media/i2c/as3645a.c
1719 F:      include/media/as3645a.h
1720
1721 ASC7621 HARDWARE MONITOR DRIVER
1722 M:      George Joseph <george.joseph@fairview5.com>
1723 L:      lm-sensors@lm-sensors.org
1724 S:      Maintained
1725 F:      Documentation/hwmon/asc7621
1726 F:      drivers/hwmon/asc7621.c
1727
1728 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1729 M:      Corentin Chary <corentin.chary@gmail.com>
1730 L:      acpi4asus-user@lists.sourceforge.net
1731 L:      platform-driver-x86@vger.kernel.org
1732 W:      http://acpi4asus.sf.net
1733 S:      Maintained
1734 F:      drivers/platform/x86/asus*.c
1735 F:      drivers/platform/x86/eeepc*.c
1736
1737 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1738 R:      Dan Williams <dan.j.williams@intel.com>
1739 W:      http://sourceforge.net/projects/xscaleiop
1740 S:      Odd fixes
1741 F:      Documentation/crypto/async-tx-api.txt
1742 F:      crypto/async_tx/
1743 F:      drivers/dma/
1744 F:      include/linux/dmaengine.h
1745 F:      include/linux/async_tx.h
1746
1747 AT24 EEPROM DRIVER
1748 M:      Wolfram Sang <wsa@the-dreams.de>
1749 L:      linux-i2c@vger.kernel.org
1750 S:      Maintained
1751 F:      drivers/misc/eeprom/at24.c
1752 F:      include/linux/platform_data/at24.h
1753
1754 ATA OVER ETHERNET (AOE) DRIVER
1755 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1756 W:      http://www.openaoe.org/
1757 S:      Supported
1758 F:      Documentation/aoe/
1759 F:      drivers/block/aoe/
1760
1761 ATHEROS ATH GENERIC UTILITIES
1762 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1763 L:      linux-wireless@vger.kernel.org
1764 S:      Supported
1765 F:      drivers/net/wireless/ath/*
1766
1767 ATHEROS ATH5K WIRELESS DRIVER
1768 M:      Jiri Slaby <jirislaby@gmail.com>
1769 M:      Nick Kossifidis <mickflemm@gmail.com>
1770 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1771 L:      linux-wireless@vger.kernel.org
1772 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1773 S:      Maintained
1774 F:      drivers/net/wireless/ath/ath5k/
1775
1776 ATHEROS ATH6KL WIRELESS DRIVER
1777 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1778 L:      linux-wireless@vger.kernel.org
1779 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1780 T:      git git://github.com/kvalo/ath.git
1781 S:      Supported
1782 F:      drivers/net/wireless/ath/ath6kl/
1783
1784 WILOCITY WIL6210 WIRELESS DRIVER
1785 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1786 L:      linux-wireless@vger.kernel.org
1787 L:      wil6210@qca.qualcomm.com
1788 S:      Supported
1789 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1790 F:      drivers/net/wireless/ath/wil6210/
1791 F:      include/uapi/linux/wil6210_uapi.h
1792
1793 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1794 M:      Christian Lamparter <chunkeey@googlemail.com>
1795 L:      linux-wireless@vger.kernel.org
1796 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1797 S:      Maintained
1798 F:      drivers/net/wireless/ath/carl9170/
1799
1800 ATK0110 HWMON DRIVER
1801 M:      Luca Tettamanti <kronos.it@gmail.com>
1802 L:      lm-sensors@lm-sensors.org
1803 S:      Maintained
1804 F:      drivers/hwmon/asus_atk0110.c
1805
1806 ATI_REMOTE2 DRIVER
1807 M:      Ville Syrjala <syrjala@sci.fi>
1808 S:      Maintained
1809 F:      drivers/input/misc/ati_remote2.c
1810
1811 ATLX ETHERNET DRIVERS
1812 M:      Jay Cliburn <jcliburn@gmail.com>
1813 M:      Chris Snook <chris.snook@gmail.com>
1814 L:      netdev@vger.kernel.org
1815 W:      http://sourceforge.net/projects/atl1
1816 W:      http://atl1.sourceforge.net
1817 S:      Maintained
1818 F:      drivers/net/ethernet/atheros/
1819
1820 ATM
1821 M:      Chas Williams <3chas3@gmail.com>
1822 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1823 L:      netdev@vger.kernel.org
1824 W:      http://linux-atm.sourceforge.net
1825 S:      Maintained
1826 F:      drivers/atm/
1827 F:      include/linux/atm*
1828 F:      include/uapi/linux/atm*
1829
1830 ATMEL AT91 / AT32 MCI DRIVER
1831 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1832 S:      Maintained
1833 F:      drivers/mmc/host/atmel-mci.c
1834 F:      drivers/mmc/host/atmel-mci-regs.h
1835
1836 ATMEL AT91 / AT32 SERIAL DRIVER
1837 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1838 S:      Supported
1839 F:      drivers/tty/serial/atmel_serial.c
1840
1841 ATMEL Audio ALSA driver
1842 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1843 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1844 S:      Supported
1845 F:      sound/soc/atmel
1846
1847 ATMEL DMA DRIVER
1848 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1850 S:      Supported
1851 F:      drivers/dma/at_hdmac.c
1852 F:      drivers/dma/at_hdmac_regs.h
1853 F:      include/linux/platform_data/dma-atmel.h
1854
1855 ATMEL XDMA DRIVER
1856 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1857 L:      linux-arm-kernel@lists.infradead.org
1858 L:      dmaengine@vger.kernel.org
1859 S:      Supported
1860 F:      drivers/dma/at_xdmac.c
1861
1862 ATMEL I2C DRIVER
1863 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1864 L:      linux-i2c@vger.kernel.org
1865 S:      Supported
1866 F:      drivers/i2c/busses/i2c-at91.c
1867
1868 ATMEL ISI DRIVER
1869 M:      Josh Wu <josh.wu@atmel.com>
1870 L:      linux-media@vger.kernel.org
1871 S:      Supported
1872 F:      drivers/media/platform/soc_camera/atmel-isi.c
1873 F:      include/media/atmel-isi.h
1874
1875 ATMEL LCDFB DRIVER
1876 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1877 L:      linux-fbdev@vger.kernel.org
1878 S:      Maintained
1879 F:      drivers/video/fbdev/atmel_lcdfb.c
1880 F:      include/video/atmel_lcdc.h
1881
1882 ATMEL MACB ETHERNET DRIVER
1883 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1884 S:      Supported
1885 F:      drivers/net/ethernet/cadence/
1886
1887 ATMEL NAND DRIVER
1888 M:      Josh Wu <josh.wu@atmel.com>
1889 L:      linux-mtd@lists.infradead.org
1890 S:      Supported
1891 F:      drivers/mtd/nand/atmel_nand*
1892
1893 ATMEL SPI DRIVER
1894 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1895 S:      Supported
1896 F:      drivers/spi/spi-atmel.*
1897
1898 ATMEL SSC DRIVER
1899 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1901 S:      Supported
1902 F:      drivers/misc/atmel-ssc.c
1903 F:      include/linux/atmel-ssc.h
1904
1905 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1906 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1908 S:      Supported
1909 F:      drivers/misc/atmel_tclib.c
1910 F:      drivers/clocksource/tcb_clksrc.c
1911
1912 ATMEL USBA UDC DRIVER
1913 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1914 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1915 S:      Supported
1916 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1917
1918 ATMEL WIRELESS DRIVER
1919 M:      Simon Kelley <simon@thekelleys.org.uk>
1920 L:      linux-wireless@vger.kernel.org
1921 W:      http://www.thekelleys.org.uk/atmel
1922 W:      http://atmelwlandriver.sourceforge.net/
1923 S:      Maintained
1924 F:      drivers/net/wireless/atmel*
1925
1926 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1927 M:      Bradley Grove <linuxdrivers@attotech.com>
1928 L:      linux-scsi@vger.kernel.org
1929 W:      http://www.attotech.com
1930 S:      Supported
1931 F:      drivers/scsi/esas2r
1932
1933 ATUSB IEEE 802.15.4 RADIO DRIVER
1934 M:      Stefan Schmidt <stefan@osg.samsung.com>
1935 L:      linux-wpan@vger.kernel.org
1936 S:      Maintained
1937 F:      drivers/net/ieee802154/atusb.c
1938 F:      drivers/net/ieee802154/atusb.h
1939 F:      drivers/net/ieee802154/at86rf230.h
1940
1941 AUDIT SUBSYSTEM
1942 M:      Paul Moore <paul@paul-moore.com>
1943 M:      Eric Paris <eparis@redhat.com>
1944 L:      linux-audit@redhat.com (moderated for non-subscribers)
1945 W:      http://people.redhat.com/sgrubb/audit/
1946 T:      git git://git.infradead.org/users/pcmoore/audit
1947 S:      Maintained
1948 F:      include/linux/audit.h
1949 F:      include/uapi/linux/audit.h
1950 F:      kernel/audit*
1951
1952 AUXILIARY DISPLAY DRIVERS
1953 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1954 W:      http://miguelojeda.es/auxdisplay.htm
1955 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1956 S:      Maintained
1957 F:      drivers/auxdisplay/
1958 F:      include/linux/cfag12864b.h
1959
1960 AVR32 ARCHITECTURE
1961 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1962 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1963 W:      http://www.atmel.com/products/AVR32/
1964 W:      http://mirror.egtvedt.no/avr32linux.org/
1965 W:      http://avrfreaks.net/
1966 S:      Maintained
1967 F:      arch/avr32/
1968
1969 AVR32/AT32AP MACHINE SUPPORT
1970 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1971 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1972 S:      Maintained
1973 F:      arch/avr32/mach-at32ap/
1974
1975 AX.25 NETWORK LAYER
1976 M:      Ralf Baechle <ralf@linux-mips.org>
1977 L:      linux-hams@vger.kernel.org
1978 W:      http://www.linux-ax25.org/
1979 S:      Maintained
1980 F:      include/uapi/linux/ax25.h
1981 F:      include/net/ax25.h
1982 F:      net/ax25/
1983
1984 AZ6007 DVB DRIVER
1985 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
1986 L:      linux-media@vger.kernel.org
1987 W:      http://linuxtv.org
1988 T:      git git://linuxtv.org/media_tree.git
1989 S:      Maintained
1990 F:      drivers/media/usb/dvb-usb-v2/az6007.c
1991
1992 AZTECH FM RADIO RECEIVER DRIVER
1993 M:      Hans Verkuil <hverkuil@xs4all.nl>
1994 L:      linux-media@vger.kernel.org
1995 T:      git git://linuxtv.org/media_tree.git
1996 W:      http://linuxtv.org
1997 S:      Maintained
1998 F:      drivers/media/radio/radio-aztech*
1999
2000 B43 WIRELESS DRIVER
2001 L:      linux-wireless@vger.kernel.org
2002 L:      b43-dev@lists.infradead.org
2003 W:      http://wireless.kernel.org/en/users/Drivers/b43
2004 S:      Odd Fixes
2005 F:      drivers/net/wireless/b43/
2006
2007 B43LEGACY WIRELESS DRIVER
2008 M:      Larry Finger <Larry.Finger@lwfinger.net>
2009 L:      linux-wireless@vger.kernel.org
2010 L:      b43-dev@lists.infradead.org
2011 W:      http://wireless.kernel.org/en/users/Drivers/b43
2012 S:      Maintained
2013 F:      drivers/net/wireless/b43legacy/
2014
2015 BACKLIGHT CLASS/SUBSYSTEM
2016 M:      Jingoo Han <jingoohan1@gmail.com>
2017 M:      Lee Jones <lee.jones@linaro.org>
2018 S:      Maintained
2019 F:      drivers/video/backlight/
2020 F:      include/linux/backlight.h
2021
2022 BATMAN ADVANCED
2023 M:      Marek Lindner <mareklindner@neomailbox.ch>
2024 M:      Simon Wunderlich <sw@simonwunderlich.de>
2025 M:      Antonio Quartulli <antonio@meshcoding.com>
2026 L:      b.a.t.m.a.n@lists.open-mesh.org
2027 W:      http://www.open-mesh.org/
2028 S:      Maintained
2029 F:      net/batman-adv/
2030
2031 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2032 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2033 L:      linux-hams@vger.kernel.org
2034 W:      http://www.baycom.org/~tom/ham/ham.html
2035 S:      Maintained
2036 F:      drivers/net/hamradio/baycom*
2037
2038 BCACHE (BLOCK LAYER CACHE)
2039 M:      Kent Overstreet <kent.overstreet@gmail.com>
2040 L:      linux-bcache@vger.kernel.org
2041 W:      http://bcache.evilpiepirate.org
2042 S:      Maintained
2043 F:      drivers/md/bcache/
2044
2045 BDISP ST MEDIA DRIVER
2046 M:      Fabien Dessenne <fabien.dessenne@st.com>
2047 L:      linux-media@vger.kernel.org
2048 T:      git git://linuxtv.org/media_tree.git
2049 W:      http://linuxtv.org
2050 S:      Supported
2051 F:      drivers/media/platform/sti/bdisp
2052
2053 BEFS FILE SYSTEM
2054 S:      Orphan
2055 F:      Documentation/filesystems/befs.txt
2056 F:      fs/befs/
2057
2058 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2059 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2060 L:      netdev@vger.kernel.org
2061 S:      Maintained
2062 F:      drivers/net/ethernet/ec_bhf.c
2063
2064 BFS FILE SYSTEM
2065 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2066 S:      Maintained
2067 F:      Documentation/filesystems/bfs.txt
2068 F:      fs/bfs/
2069 F:      include/uapi/linux/bfs_fs.h
2070
2071 BLACKFIN ARCHITECTURE
2072 M:      Steven Miao <realmz6@gmail.com>
2073 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2074 T:      git git://git.code.sf.net/p/adi-linux/code
2075 W:      http://blackfin.uclinux.org
2076 S:      Supported
2077 F:      arch/blackfin/
2078
2079 BLACKFIN EMAC DRIVER
2080 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2081 W:      http://blackfin.uclinux.org
2082 S:      Supported
2083 F:      drivers/net/ethernet/adi/
2084
2085 BLACKFIN RTC DRIVER
2086 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2087 W:      http://blackfin.uclinux.org
2088 S:      Supported
2089 F:      drivers/rtc/rtc-bfin.c
2090
2091 BLACKFIN SDH DRIVER
2092 M:      Sonic Zhang <sonic.zhang@analog.com>
2093 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2094 W:      http://blackfin.uclinux.org
2095 S:      Supported
2096 F:      drivers/mmc/host/bfin_sdh.c
2097
2098 BLACKFIN SERIAL DRIVER
2099 M:      Sonic Zhang <sonic.zhang@analog.com>
2100 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2101 W:      http://blackfin.uclinux.org
2102 S:      Supported
2103 F:      drivers/tty/serial/bfin_uart.c
2104
2105 BLACKFIN WATCHDOG DRIVER
2106 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2107 W:      http://blackfin.uclinux.org
2108 S:      Supported
2109 F:      drivers/watchdog/bfin_wdt.c
2110
2111 BLACKFIN I2C TWI DRIVER
2112 M:      Sonic Zhang <sonic.zhang@analog.com>
2113 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2114 W:      http://blackfin.uclinux.org/
2115 S:      Supported
2116 F:      drivers/i2c/busses/i2c-bfin-twi.c
2117
2118 BLACKFIN MEDIA DRIVER
2119 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2120 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2121 W:      http://blackfin.uclinux.org/
2122 S:      Supported
2123 F:      drivers/media/platform/blackfin/
2124 F:      drivers/media/i2c/adv7183*
2125 F:      drivers/media/i2c/vs6624*
2126
2127 BLINKM RGB LED DRIVER
2128 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2129 S:      Maintained
2130 F:      drivers/leds/leds-blinkm.c
2131
2132 BLOCK LAYER
2133 M:      Jens Axboe <axboe@kernel.dk>
2134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2135 S:      Maintained
2136 F:      block/
2137 F:      kernel/trace/blktrace.c
2138
2139 BLOCK2MTD DRIVER
2140 M:      Joern Engel <joern@lazybastard.org>
2141 L:      linux-mtd@lists.infradead.org
2142 S:      Maintained
2143 F:      drivers/mtd/devices/block2mtd.c
2144
2145 BLUETOOTH DRIVERS
2146 M:      Marcel Holtmann <marcel@holtmann.org>
2147 M:      Gustavo Padovan <gustavo@padovan.org>
2148 M:      Johan Hedberg <johan.hedberg@gmail.com>
2149 L:      linux-bluetooth@vger.kernel.org
2150 W:      http://www.bluez.org/
2151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2153 S:      Maintained
2154 F:      drivers/bluetooth/
2155
2156 BLUETOOTH SUBSYSTEM
2157 M:      Marcel Holtmann <marcel@holtmann.org>
2158 M:      Gustavo Padovan <gustavo@padovan.org>
2159 M:      Johan Hedberg <johan.hedberg@gmail.com>
2160 L:      linux-bluetooth@vger.kernel.org
2161 W:      http://www.bluez.org/
2162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2164 S:      Maintained
2165 F:      net/bluetooth/
2166 F:      include/net/bluetooth/
2167
2168 BONDING DRIVER
2169 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2170 M:      Veaceslav Falico <vfalico@gmail.com>
2171 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2172 L:      netdev@vger.kernel.org
2173 W:      http://sourceforge.net/projects/bonding/
2174 S:      Supported
2175 F:      drivers/net/bonding/
2176 F:      include/uapi/linux/if_bonding.h
2177
2178 BPF (Safe dynamic programs and tools)
2179 M:      Alexei Starovoitov <ast@kernel.org>
2180 L:      netdev@vger.kernel.org
2181 L:      linux-kernel@vger.kernel.org
2182 S:      Supported
2183 F:      kernel/bpf/
2184
2185 BROADCOM B44 10/100 ETHERNET DRIVER
2186 M:      Gary Zambrano <zambrano@broadcom.com>
2187 L:      netdev@vger.kernel.org
2188 S:      Supported
2189 F:      drivers/net/ethernet/broadcom/b44.*
2190
2191 BROADCOM GENET ETHERNET DRIVER
2192 M:      Florian Fainelli <f.fainelli@gmail.com>
2193 L:      netdev@vger.kernel.org
2194 S:      Supported
2195 F:      drivers/net/ethernet/broadcom/genet/
2196
2197 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2198 M:      Sony Chacko <sony.chacko@qlogic.com>
2199 M:      Dept-HSGLinuxNICDev@qlogic.com
2200 L:      netdev@vger.kernel.org
2201 S:      Supported
2202 F:      drivers/net/ethernet/broadcom/bnx2.*
2203 F:      drivers/net/ethernet/broadcom/bnx2_*
2204
2205 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2206 M:      Ariel Elior <ariel.elior@qlogic.com>
2207 L:      netdev@vger.kernel.org
2208 S:      Supported
2209 F:      drivers/net/ethernet/broadcom/bnx2x/
2210
2211 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2212 M:      Florian Fainelli <f.fainelli@gmail.com>
2213 M:      Ray Jui <rjui@broadcom.com>
2214 M:      Scott Branden <sbranden@broadcom.com>
2215 L:      bcm-kernel-feedback-list@broadcom.com
2216 T:      git git://github.com/broadcom/mach-bcm
2217 S:      Maintained
2218 F:      arch/arm/mach-bcm/
2219 F:      arch/arm/boot/dts/bcm113*
2220 F:      arch/arm/boot/dts/bcm216*
2221 F:      arch/arm/boot/dts/bcm281*
2222 F:      arch/arm/configs/bcm_defconfig
2223 F:      drivers/mmc/host/sdhci-bcm-kona.c
2224 F:      drivers/clocksource/bcm_kona_timer.c
2225
2226 BROADCOM BCM2835 ARM ARCHITECTURE
2227 M:      Stephen Warren <swarren@wwwdotorg.org>
2228 M:      Lee Jones <lee@kernel.org>
2229 M:      Eric Anholt <eric@anholt.net>
2230 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2233 S:      Maintained
2234 N:      bcm2835
2235
2236 BROADCOM BCM33XX MIPS ARCHITECTURE
2237 M:      Kevin Cernekee <cernekee@gmail.com>
2238 L:      linux-mips@linux-mips.org
2239 S:      Maintained
2240 F:      arch/mips/bcm3384/*
2241 F:      arch/mips/include/asm/mach-bcm3384/*
2242 F:      arch/mips/kernel/*bmips*
2243
2244 BROADCOM BCM47XX MIPS ARCHITECTURE
2245 M:      Hauke Mehrtens <hauke@hauke-m.de>
2246 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2247 L:      linux-mips@linux-mips.org
2248 S:      Maintained
2249 F:      arch/mips/bcm47xx/*
2250 F:      arch/mips/include/asm/mach-bcm47xx/*
2251
2252 BROADCOM BCM5301X ARM ARCHITECTURE
2253 M:      Hauke Mehrtens <hauke@hauke-m.de>
2254 L:      linux-arm-kernel@lists.infradead.org
2255 S:      Maintained
2256 F:      arch/arm/mach-bcm/bcm_5301x.c
2257 F:      arch/arm/boot/dts/bcm5301x.dtsi
2258 F:      arch/arm/boot/dts/bcm470*
2259
2260 BROADCOM BCM63XX ARM ARCHITECTURE
2261 M:      Florian Fainelli <f.fainelli@gmail.com>
2262 L:      linux-arm-kernel@lists.infradead.org
2263 T:      git git://github.com/broadcom/arm-bcm63xx.git
2264 S:      Maintained
2265 F:      arch/arm/mach-bcm/bcm63xx.c
2266 F:      arch/arm/include/debug/bcm63xx.S
2267
2268 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2269 M:      Kevin Cernekee <cernekee@gmail.com>
2270 L:      linux-usb@vger.kernel.org
2271 S:      Maintained
2272 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2273
2274 BROADCOM BCM7XXX ARM ARCHITECTURE
2275 M:      Brian Norris <computersforpeace@gmail.com>
2276 M:      Gregory Fong <gregory.0xf0@gmail.com>
2277 M:      Florian Fainelli <f.fainelli@gmail.com>
2278 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2279 T:      git git://github.com/broadcom/stblinux.git
2280 S:      Maintained
2281 F:      arch/arm/mach-bcm/*brcmstb*
2282 F:      arch/arm/boot/dts/bcm7*.dts*
2283 F:      drivers/bus/brcmstb_gisb.c
2284 N:      brcmstb
2285
2286 BROADCOM BMIPS MIPS ARCHITECTURE
2287 M:      Kevin Cernekee <cernekee@gmail.com>
2288 M:      Florian Fainelli <f.fainelli@gmail.com>
2289 L:      linux-mips@linux-mips.org
2290 T:      git git://github.com/broadcom/stblinux.git
2291 S:      Maintained
2292 F:      arch/mips/bmips/*
2293 F:      arch/mips/include/asm/mach-bmips/*
2294 F:      arch/mips/kernel/*bmips*
2295 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2296 F:      drivers/irqchip/irq-bcm7*
2297 F:      drivers/irqchip/irq-brcmstb*
2298
2299 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2300 M:      Prashant Sreedharan <prashant@broadcom.com>
2301 M:      Michael Chan <mchan@broadcom.com>
2302 L:      netdev@vger.kernel.org
2303 S:      Supported
2304 F:      drivers/net/ethernet/broadcom/tg3.*
2305
2306 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2307 M:      Brett Rudley <brudley@broadcom.com>
2308 M:      Arend van Spriel <arend@broadcom.com>
2309 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2310 M:      Hante Meuleman <meuleman@broadcom.com>
2311 L:      linux-wireless@vger.kernel.org
2312 L:      brcm80211-dev-list@broadcom.com
2313 S:      Supported
2314 F:      drivers/net/wireless/brcm80211/
2315
2316 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2317 M:      QLogic-Storage-Upstream@qlogic.com
2318 L:      linux-scsi@vger.kernel.org
2319 S:      Supported
2320 F:      drivers/scsi/bnx2fc/
2321
2322 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2323 M:      QLogic-Storage-Upstream@qlogic.com
2324 L:      linux-scsi@vger.kernel.org
2325 S:      Supported
2326 F:      drivers/scsi/bnx2i/
2327
2328 BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2329 M:      Ray Jui <rjui@broadcom.com>
2330 M:      Scott Branden <sbranden@broadcom.com>
2331 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2332 L:      bcm-kernel-feedback-list@broadcom.com
2333 T:      git git://github.com/broadcom/cygnus-linux.git
2334 S:      Maintained
2335 N:      iproc
2336 N:      cygnus
2337 N:      bcm9113*
2338 N:      bcm9583*
2339 N:      bcm583*
2340 N:      bcm113*
2341
2342 BROADCOM BRCMSTB GPIO DRIVER
2343 M:      Gregory Fong <gregory.0xf0@gmail.com>
2344 L:      bcm-kernel-feedback-list@broadcom.com>
2345 S:      Supported
2346 F:      drivers/gpio/gpio-brcmstb.c
2347 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2348
2349 BROADCOM KONA GPIO DRIVER
2350 M:      Ray Jui <rjui@broadcom.com>
2351 L:      bcm-kernel-feedback-list@broadcom.com
2352 S:      Supported
2353 F:      drivers/gpio/gpio-bcm-kona.c
2354 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2355
2356 BROADCOM NVRAM DRIVER
2357 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2358 L:      linux-mips@linux-mips.org
2359 S:      Maintained
2360 F:      drivers/firmware/broadcom/*
2361
2362 BROADCOM STB NAND FLASH DRIVER
2363 M:      Brian Norris <computersforpeace@gmail.com>
2364 L:      linux-mtd@lists.infradead.org
2365 S:      Maintained
2366 F:      drivers/mtd/nand/brcmnand/
2367
2368 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2369 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2370 L:      linux-wireless@vger.kernel.org
2371 S:      Maintained
2372 F:      drivers/bcma/
2373 F:      include/linux/bcma/
2374
2375 BROADCOM SYSTEMPORT ETHERNET DRIVER
2376 M:      Florian Fainelli <f.fainelli@gmail.com>
2377 L:      netdev@vger.kernel.org
2378 S:      Supported
2379 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2380
2381 BROCADE BFA FC SCSI DRIVER
2382 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2383 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2384 L:      linux-scsi@vger.kernel.org
2385 S:      Supported
2386 F:      drivers/scsi/bfa/
2387
2388 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2389 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2390 L:      netdev@vger.kernel.org
2391 S:      Supported
2392 F:      drivers/net/ethernet/brocade/bna/
2393
2394 BSG (block layer generic sg v4 driver)
2395 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2396 L:      linux-scsi@vger.kernel.org
2397 S:      Supported
2398 F:      block/bsg.c
2399 F:      include/linux/bsg.h
2400 F:      include/uapi/linux/bsg.h
2401
2402 BT87X AUDIO DRIVER
2403 M:      Clemens Ladisch <clemens@ladisch.de>
2404 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2405 T:      git git://git.alsa-project.org/alsa-kernel.git
2406 S:      Maintained
2407 F:      Documentation/sound/alsa/Bt87x.txt
2408 F:      sound/pci/bt87x.c
2409
2410 BT8XXGPIO DRIVER
2411 M:      Michael Buesch <m@bues.ch>
2412 W:      http://bu3sch.de/btgpio.php
2413 S:      Maintained
2414 F:      drivers/gpio/gpio-bt8xx.c
2415
2416 BTRFS FILE SYSTEM
2417 M:      Chris Mason <clm@fb.com>
2418 M:      Josef Bacik <jbacik@fb.com>
2419 M:      David Sterba <dsterba@suse.com>
2420 L:      linux-btrfs@vger.kernel.org
2421 W:      http://btrfs.wiki.kernel.org/
2422 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2424 S:      Maintained
2425 F:      Documentation/filesystems/btrfs.txt
2426 F:      fs/btrfs/
2427
2428 BTTV VIDEO4LINUX DRIVER
2429 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2430 L:      linux-media@vger.kernel.org
2431 W:      http://linuxtv.org
2432 T:      git git://linuxtv.org/media_tree.git
2433 S:      Odd fixes
2434 F:      Documentation/video4linux/bttv/
2435 F:      drivers/media/pci/bt8xx/bttv*
2436
2437 BUSLOGIC SCSI DRIVER
2438 M:      Khalid Aziz <khalid@gonehiking.org>
2439 L:      linux-scsi@vger.kernel.org
2440 S:      Maintained
2441 F:      drivers/scsi/BusLogic.*
2442 F:      drivers/scsi/FlashPoint.*
2443
2444 C-MEDIA CMI8788 DRIVER
2445 M:      Clemens Ladisch <clemens@ladisch.de>
2446 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2447 T:      git git://git.alsa-project.org/alsa-kernel.git
2448 S:      Maintained
2449 F:      sound/pci/oxygen/
2450
2451 C6X ARCHITECTURE
2452 M:      Mark Salter <msalter@redhat.com>
2453 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2454 L:      linux-c6x-dev@linux-c6x.org
2455 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2456 S:      Maintained
2457 F:      arch/c6x/
2458
2459 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2460 M:      David Howells <dhowells@redhat.com>
2461 L:      linux-cachefs@redhat.com
2462 S:      Supported
2463 F:      Documentation/filesystems/caching/cachefiles.txt
2464 F:      fs/cachefiles/
2465
2466 CADET FM/AM RADIO RECEIVER DRIVER
2467 M:      Hans Verkuil <hverkuil@xs4all.nl>
2468 L:      linux-media@vger.kernel.org
2469 T:      git git://linuxtv.org/media_tree.git
2470 W:      http://linuxtv.org
2471 S:      Maintained
2472 F:      drivers/media/radio/radio-cadet*
2473
2474 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2475 M:      Jonathan Corbet <corbet@lwn.net>
2476 L:      linux-media@vger.kernel.org
2477 T:      git git://linuxtv.org/media_tree.git
2478 S:      Maintained
2479 F:      Documentation/video4linux/cafe_ccic
2480 F:      drivers/media/platform/marvell-ccic/
2481
2482 CAIF NETWORK LAYER
2483 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2484 L:      netdev@vger.kernel.org
2485 S:      Supported
2486 F:      Documentation/networking/caif/
2487 F:      drivers/net/caif/
2488 F:      include/uapi/linux/caif/
2489 F:      include/net/caif/
2490 F:      net/caif/
2491
2492 CALGARY x86-64 IOMMU
2493 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2494 M:      "Jon D. Mason" <jdmason@kudzu.us>
2495 L:      discuss@x86-64.org
2496 S:      Maintained
2497 F:      arch/x86/kernel/pci-calgary_64.c
2498 F:      arch/x86/kernel/tce_64.c
2499 F:      arch/x86/include/asm/calgary.h
2500 F:      arch/x86/include/asm/tce.h
2501
2502 CAN NETWORK LAYER
2503 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2504 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2505 L:      linux-can@vger.kernel.org
2506 W:      https://github.com/linux-can
2507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2509 S:      Maintained
2510 F:      Documentation/networking/can.txt
2511 F:      net/can/
2512 F:      include/linux/can/core.h
2513 F:      include/uapi/linux/can.h
2514 F:      include/uapi/linux/can/bcm.h
2515 F:      include/uapi/linux/can/raw.h
2516 F:      include/uapi/linux/can/gw.h
2517
2518 CAN NETWORK DRIVERS
2519 M:      Wolfgang Grandegger <wg@grandegger.com>
2520 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2521 L:      linux-can@vger.kernel.org
2522 W:      https://github.com/linux-can
2523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2525 S:      Maintained
2526 F:      drivers/net/can/
2527 F:      include/linux/can/dev.h
2528 F:      include/linux/can/platform/
2529 F:      include/uapi/linux/can/error.h
2530 F:      include/uapi/linux/can/netlink.h
2531
2532 CAPABILITIES
2533 M:      Serge Hallyn <serge.hallyn@canonical.com>
2534 L:      linux-security-module@vger.kernel.org
2535 S:      Supported
2536 F:      include/linux/capability.h
2537 F:      include/uapi/linux/capability.h
2538 F:      security/commoncap.c
2539 F:      kernel/capability.c
2540
2541 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2542 M:      Kevin Tsai <ktsai@capellamicro.com>
2543 S:      Maintained
2544 F:      drivers/iio/light/cm*
2545 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2546
2547 CAVIUM LIQUIDIO NETWORK DRIVER
2548 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2549 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2550 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2551 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2552 L:     netdev@vger.kernel.org
2553 W:     http://www.cavium.com
2554 S:     Supported
2555 F:     drivers/net/ethernet/cavium/liquidio/
2556
2557 CC2520 IEEE-802.15.4 RADIO DRIVER
2558 M:      Varka Bhadram <varkabhadram@gmail.com>
2559 L:      linux-wpan@vger.kernel.org
2560 S:      Maintained
2561 F:      drivers/net/ieee802154/cc2520.c
2562 F:      include/linux/spi/cc2520.h
2563 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2564
2565 CELL BROADBAND ENGINE ARCHITECTURE
2566 M:      Arnd Bergmann <arnd@arndb.de>
2567 L:      linuxppc-dev@lists.ozlabs.org
2568 W:      http://www.ibm.com/developerworks/power/cell/
2569 S:      Supported
2570 F:      arch/powerpc/include/asm/cell*.h
2571 F:      arch/powerpc/include/asm/spu*.h
2572 F:      arch/powerpc/include/uapi/asm/spu*.h
2573 F:      arch/powerpc/oprofile/*cell*
2574 F:      arch/powerpc/platforms/cell/
2575
2576 CEPH COMMON CODE (LIBCEPH)
2577 M:      Ilya Dryomov <idryomov@gmail.com>
2578 M:      "Yan, Zheng" <zyan@redhat.com>
2579 M:      Sage Weil <sage@redhat.com>
2580 L:      ceph-devel@vger.kernel.org
2581 W:      http://ceph.com/
2582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2583 T:      git git://github.com/ceph/ceph-client.git
2584 S:      Supported
2585 F:      net/ceph/
2586 F:      include/linux/ceph/
2587 F:      include/linux/crush/
2588
2589 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2590 M:      "Yan, Zheng" <zyan@redhat.com>
2591 M:      Sage Weil <sage@redhat.com>
2592 M:      Ilya Dryomov <idryomov@gmail.com>
2593 L:      ceph-devel@vger.kernel.org
2594 W:      http://ceph.com/
2595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2596 T:      git git://github.com/ceph/ceph-client.git
2597 S:      Supported
2598 F:      Documentation/filesystems/ceph.txt
2599 F:      fs/ceph/
2600
2601 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2602 L:      linux-usb@vger.kernel.org
2603 S:      Orphan
2604 F:      Documentation/usb/WUSB-Design-overview.txt
2605 F:      Documentation/usb/wusb-cbaf
2606 F:      drivers/usb/host/hwa-hc.c
2607 F:      drivers/usb/host/whci/
2608 F:      drivers/usb/wusbcore/
2609 F:      include/linux/usb/wusb*
2610
2611 CFAG12864B LCD DRIVER
2612 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2613 W:      http://miguelojeda.es/auxdisplay.htm
2614 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2615 S:      Maintained
2616 F:      drivers/auxdisplay/cfag12864b.c
2617 F:      include/linux/cfag12864b.h
2618
2619 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2620 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2621 W:      http://miguelojeda.es/auxdisplay.htm
2622 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2623 S:      Maintained
2624 F:      drivers/auxdisplay/cfag12864bfb.c
2625 F:      include/linux/cfag12864b.h
2626
2627 CFG80211 and NL80211
2628 M:      Johannes Berg <johannes@sipsolutions.net>
2629 L:      linux-wireless@vger.kernel.org
2630 W:      http://wireless.kernel.org/
2631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2633 S:      Maintained
2634 F:      include/uapi/linux/nl80211.h
2635 F:      include/net/cfg80211.h
2636 F:      net/wireless/*
2637 X:      net/wireless/wext*
2638
2639 CHAR and MISC DRIVERS
2640 M:      Arnd Bergmann <arnd@arndb.de>
2641 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2643 S:      Supported
2644 F:      drivers/char/*
2645 F:      drivers/misc/*
2646 F:      include/linux/miscdevice.h
2647
2648 CHECKPATCH
2649 M:      Andy Whitcroft <apw@canonical.com>
2650 M:      Joe Perches <joe@perches.com>
2651 S:      Maintained
2652 F:      scripts/checkpatch.pl
2653
2654 CHINESE DOCUMENTATION
2655 M:      Harry Wei <harryxiyou@gmail.com>
2656 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2657 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2658 S:      Maintained
2659 F:      Documentation/zh_CN/
2660
2661 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2662 M:      Peter Chen <Peter.Chen@freescale.com>
2663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2664 L:      linux-usb@vger.kernel.org
2665 S:      Maintained
2666 F:      drivers/usb/chipidea/
2667
2668 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2669 M:      Hans de Goede <hdegoede@redhat.com>
2670 L:      linux-input@vger.kernel.org
2671 S:      Maintained
2672 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2673 F:      drivers/input/touchscreen/chipone_icn8318.c
2674
2675 CHROME HARDWARE PLATFORM SUPPORT
2676 M:      Olof Johansson <olof@lixom.net>
2677 S:      Maintained
2678 F:      drivers/platform/chrome/
2679
2680 CISCO VIC ETHERNET NIC DRIVER
2681 M:      Christian Benvenuti <benve@cisco.com>
2682 M:      Sujith Sankar <ssujith@cisco.com>
2683 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2684 M:      Neel Patel <neepatel@cisco.com>
2685 S:      Supported
2686 F:      drivers/net/ethernet/cisco/enic/
2687
2688 CISCO VIC LOW LATENCY NIC DRIVER
2689 M:      Upinder Malhi <umalhi@cisco.com>
2690 S:      Supported
2691 F:      drivers/infiniband/hw/usnic
2692
2693 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2694 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2695 L:      netdev@vger.kernel.org
2696 S:      Maintained
2697 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2698
2699 CIRRUS LOGIC AUDIO CODEC DRIVERS
2700 M:      Brian Austin <brian.austin@cirrus.com>
2701 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2702 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2703 S:      Maintained
2704 F:      sound/soc/codecs/cs*
2705
2706 CLEANCACHE API
2707 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2708 L:      linux-kernel@vger.kernel.org
2709 S:      Maintained
2710 F:      mm/cleancache.c
2711 F:      include/linux/cleancache.h
2712
2713 CLK API
2714 M:      Russell King <linux@arm.linux.org.uk>
2715 L:      linux-clk@vger.kernel.org
2716 S:      Maintained
2717 F:      include/linux/clk.h
2718
2719 CLOCKSOURCE, CLOCKEVENT DRIVERS
2720 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2721 M:      Thomas Gleixner <tglx@linutronix.de>
2722 L:      linux-kernel@vger.kernel.org
2723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2724 S:      Supported
2725 F:      drivers/clocksource
2726
2727 CISCO FCOE HBA DRIVER
2728 M:      Hiral Patel <hiralpat@cisco.com>
2729 M:      Suma Ramars <sramars@cisco.com>
2730 M:      Brian Uchino <buchino@cisco.com>
2731 L:      linux-scsi@vger.kernel.org
2732 S:      Supported
2733 F:      drivers/scsi/fnic/
2734
2735 CISCO SCSI HBA DRIVER
2736 M:      Narsimhulu Musini <nmusini@cisco.com>
2737 M:      Sesidhar Baddela <sebaddel@cisco.com>
2738 L:      linux-scsi@vger.kernel.org
2739 S:      Supported
2740 F:      drivers/scsi/snic/
2741
2742 CMPC ACPI DRIVER
2743 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2744 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2745 L:      platform-driver-x86@vger.kernel.org
2746 S:      Supported
2747 F:      drivers/platform/x86/classmate-laptop.c
2748
2749 COBALT MEDIA DRIVER
2750 M:      Hans Verkuil <hans.verkuil@cisco.com>
2751 L:      linux-media@vger.kernel.org
2752 T:      git git://linuxtv.org/media_tree.git
2753 W:      http://linuxtv.org
2754 S:      Supported
2755 F:      drivers/media/pci/cobalt/
2756
2757 COCCINELLE/Semantic Patches (SmPL)
2758 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2759 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2760 M:      Nicolas Palix <nicolas.palix@imag.fr>
2761 M:      Michal Marek <mmarek@suse.com>
2762 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2764 W:      http://coccinelle.lip6.fr/
2765 S:      Supported
2766 F:      Documentation/coccinelle.txt
2767 F:      scripts/coccinelle/
2768 F:      scripts/coccicheck
2769
2770 CODA FILE SYSTEM
2771 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2772 M:      coda@cs.cmu.edu
2773 L:      codalist@coda.cs.cmu.edu
2774 W:      http://www.coda.cs.cmu.edu/
2775 S:      Maintained
2776 F:      Documentation/filesystems/coda.txt
2777 F:      fs/coda/
2778 F:      include/linux/coda*.h
2779 F:      include/uapi/linux/coda*.h
2780
2781 CODA V4L2 MEM2MEM DRIVER
2782 M:      Philipp Zabel <p.zabel@pengutronix.de>
2783 L:      linux-media@vger.kernel.org
2784 S:      Maintained
2785 F:      Documentation/devicetree/bindings/media/coda.txt
2786 F:      drivers/media/platform/coda/
2787
2788 COMMON CLK FRAMEWORK
2789 M:      Michael Turquette <mturquette@baylibre.com>
2790 M:      Stephen Boyd <sboyd@codeaurora.org>
2791 L:      linux-clk@vger.kernel.org
2792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2793 S:      Maintained
2794 F:      drivers/clk/
2795 X:      drivers/clk/clkdev.c
2796 F:      include/linux/clk-pr*
2797 F:      include/linux/clk/
2798
2799 COMMON INTERNET FILE SYSTEM (CIFS)
2800 M:      Steve French <sfrench@samba.org>
2801 L:      linux-cifs@vger.kernel.org
2802 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2803 W:      http://linux-cifs.samba.org/
2804 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2805 S:      Supported
2806 F:      Documentation/filesystems/cifs/
2807 F:      fs/cifs/
2808
2809 COMPACTPCI HOTPLUG CORE
2810 M:      Scott Murray <scott@spiteful.org>
2811 L:      linux-pci@vger.kernel.org
2812 S:      Maintained
2813 F:      drivers/pci/hotplug/cpci_hotplug*
2814
2815 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2816 M:      Scott Murray <scott@spiteful.org>
2817 L:      linux-pci@vger.kernel.org
2818 S:      Maintained
2819 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2820
2821 COMPACTPCI HOTPLUG GENERIC DRIVER
2822 M:      Scott Murray <scott@spiteful.org>
2823 L:      linux-pci@vger.kernel.org
2824 S:      Maintained
2825 F:      drivers/pci/hotplug/cpcihp_generic.c
2826
2827 COMPAL LAPTOP SUPPORT
2828 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2829 L:      platform-driver-x86@vger.kernel.org
2830 S:      Maintained
2831 F:      drivers/platform/x86/compal-laptop.c
2832
2833 CONEXANT ACCESSRUNNER USB DRIVER
2834 M:      Simon Arlott <cxacru@fire.lp0.eu>
2835 L:      accessrunner-general@lists.sourceforge.net
2836 W:      http://accessrunner.sourceforge.net/
2837 S:      Maintained
2838 F:      drivers/usb/atm/cxacru.c
2839
2840 CONFIGFS
2841 M:      Joel Becker <jlbec@evilplan.org>
2842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2843 S:      Supported
2844 F:      fs/configfs/
2845 F:      include/linux/configfs.h
2846
2847 CONNECTOR
2848 M:      Evgeniy Polyakov <zbr@ioremap.net>
2849 L:      netdev@vger.kernel.org
2850 S:      Maintained
2851 F:      drivers/connector/
2852
2853 CONTROL GROUP (CGROUP)
2854 M:      Tejun Heo <tj@kernel.org>
2855 M:      Li Zefan <lizefan@huawei.com>
2856 M:      Johannes Weiner <hannes@cmpxchg.org>
2857 L:      cgroups@vger.kernel.org
2858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2859 S:      Maintained
2860 F:      Documentation/cgroups/
2861 F:      include/linux/cgroup*
2862 F:      kernel/cgroup*
2863
2864 CONTROL GROUP - CPUSET
2865 M:      Li Zefan <lizefan@huawei.com>
2866 L:      cgroups@vger.kernel.org
2867 W:      http://www.bullopensource.org/cpuset/
2868 W:      http://oss.sgi.com/projects/cpusets/
2869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2870 S:      Maintained
2871 F:      Documentation/cgroups/cpusets.txt
2872 F:      include/linux/cpuset.h
2873 F:      kernel/cpuset.c
2874
2875 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2876 M:      Johannes Weiner <hannes@cmpxchg.org>
2877 M:      Michal Hocko <mhocko@kernel.org>
2878 L:      cgroups@vger.kernel.org
2879 L:      linux-mm@kvack.org
2880 S:      Maintained
2881 F:      mm/memcontrol.c
2882 F:      mm/swap_cgroup.c
2883
2884 CORETEMP HARDWARE MONITORING DRIVER
2885 M:      Fenghua Yu <fenghua.yu@intel.com>
2886 L:      lm-sensors@lm-sensors.org
2887 S:      Maintained
2888 F:      Documentation/hwmon/coretemp
2889 F:      drivers/hwmon/coretemp.c
2890
2891 COSA/SRP SYNC SERIAL DRIVER
2892 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2893 W:      http://www.fi.muni.cz/~kas/cosa/
2894 S:      Maintained
2895 F:      drivers/net/wan/cosa*
2896
2897 CPMAC ETHERNET DRIVER
2898 M:      Florian Fainelli <florian@openwrt.org>
2899 L:      netdev@vger.kernel.org
2900 S:      Maintained
2901 F:      drivers/net/ethernet/ti/cpmac.c
2902
2903 CPU FREQUENCY DRIVERS
2904 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2905 M:      Viresh Kumar <viresh.kumar@linaro.org>
2906 L:      linux-pm@vger.kernel.org
2907 S:      Maintained
2908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2909 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2910 F:      drivers/cpufreq/
2911 F:      include/linux/cpufreq.h
2912
2913 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2914 M:      Viresh Kumar <viresh.kumar@linaro.org>
2915 M:      Sudeep Holla <sudeep.holla@arm.com>
2916 L:      linux-pm@vger.kernel.org
2917 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2918 S:      Maintained
2919 F:      drivers/cpufreq/arm_big_little.h
2920 F:      drivers/cpufreq/arm_big_little.c
2921 F:      drivers/cpufreq/arm_big_little_dt.c
2922
2923 CPUIDLE DRIVER - ARM BIG LITTLE
2924 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2925 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2926 L:      linux-pm@vger.kernel.org
2927 L:      linux-arm-kernel@lists.infradead.org
2928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2929 S:      Maintained
2930 F:      drivers/cpuidle/cpuidle-big_little.c
2931
2932 CPUIDLE DRIVER - ARM EXYNOS
2933 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2934 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2935 M:      Kukjin Kim <kgene@kernel.org>
2936 L:      linux-pm@vger.kernel.org
2937 L:      linux-samsung-soc@vger.kernel.org
2938 S:      Supported
2939 F:      drivers/cpuidle/cpuidle-exynos.c
2940 F:      arch/arm/mach-exynos/pm.c
2941
2942 CPUIDLE DRIVERS
2943 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2944 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2945 L:      linux-pm@vger.kernel.org
2946 S:      Maintained
2947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2948 F:      drivers/cpuidle/*
2949 F:      include/linux/cpuidle.h
2950
2951 CPUID/MSR DRIVER
2952 M:      "H. Peter Anvin" <hpa@zytor.com>
2953 S:      Maintained
2954 F:      arch/x86/kernel/cpuid.c
2955 F:      arch/x86/kernel/msr.c
2956
2957 CPU POWER MONITORING SUBSYSTEM
2958 M:      Thomas Renninger <trenn@suse.com>
2959 L:      linux-pm@vger.kernel.org
2960 S:      Maintained
2961 F:      tools/power/cpupower/
2962
2963 CRAMFS FILESYSTEM
2964 W:      http://sourceforge.net/projects/cramfs/
2965 S:      Orphan / Obsolete
2966 F:      Documentation/filesystems/cramfs.txt
2967 F:      fs/cramfs/
2968
2969 CRIS PORT
2970 M:      Mikael Starvik <starvik@axis.com>
2971 M:      Jesper Nilsson <jesper.nilsson@axis.com>
2972 L:      linux-cris-kernel@axis.com
2973 W:      http://developer.axis.com
2974 S:      Maintained
2975 F:      arch/cris/
2976 F:      drivers/tty/serial/crisv10.*
2977
2978 CRYPTO API
2979 M:      Herbert Xu <herbert@gondor.apana.org.au>
2980 M:      "David S. Miller" <davem@davemloft.net>
2981 L:      linux-crypto@vger.kernel.org
2982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2983 S:      Maintained
2984 F:      Documentation/crypto/
2985 F:      Documentation/DocBook/crypto-API.tmpl
2986 F:      arch/*/crypto/
2987 F:      crypto/
2988 F:      drivers/crypto/
2989 F:      include/crypto/
2990
2991 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2992 M:      Neil Horman <nhorman@tuxdriver.com>
2993 L:      linux-crypto@vger.kernel.org
2994 S:      Maintained
2995 F:      crypto/ansi_cprng.c
2996 F:      crypto/rng.c
2997
2998 CS5535 Audio ALSA driver
2999 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3000 S:      Maintained
3001 F:      sound/pci/cs5535audio/
3002
3003 CW1200 WLAN driver
3004 M:      Solomon Peachy <pizza@shaftnet.org>
3005 S:      Maintained
3006 F:      drivers/net/wireless/cw1200/
3007
3008 CX18 VIDEO4LINUX DRIVER
3009 M:      Andy Walls <awalls@md.metrocast.net>
3010 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3011 L:      linux-media@vger.kernel.org
3012 T:      git git://linuxtv.org/media_tree.git
3013 W:      http://linuxtv.org
3014 W:      http://www.ivtvdriver.org/index.php/Cx18
3015 S:      Maintained
3016 F:      Documentation/video4linux/cx18.txt
3017 F:      drivers/media/pci/cx18/
3018 F:      include/uapi/linux/ivtv*
3019
3020 CX2341X MPEG ENCODER HELPER MODULE
3021 M:      Hans Verkuil <hverkuil@xs4all.nl>
3022 L:      linux-media@vger.kernel.org
3023 T:      git git://linuxtv.org/media_tree.git
3024 W:      http://linuxtv.org
3025 S:      Maintained
3026 F:      drivers/media/common/cx2341x*
3027 F:      include/media/cx2341x*
3028
3029 CX24120 MEDIA DRIVER
3030 M:      Jemma Denson <jdenson@gmail.com>
3031 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3032 L:      linux-media@vger.kernel.org
3033 W:      http://linuxtv.org/
3034 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3035 S:      Maintained
3036 F:      drivers/media/dvb-frontends/cx24120*
3037
3038 CX88 VIDEO4LINUX DRIVER
3039 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3040 L:      linux-media@vger.kernel.org
3041 W:      http://linuxtv.org
3042 T:      git git://linuxtv.org/media_tree.git
3043 S:      Odd fixes
3044 F:      Documentation/video4linux/cx88/
3045 F:      drivers/media/pci/cx88/
3046
3047 CXD2820R MEDIA DRIVER
3048 M:      Antti Palosaari <crope@iki.fi>
3049 L:      linux-media@vger.kernel.org
3050 W:      http://linuxtv.org/
3051 W:      http://palosaari.fi/linux/
3052 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3053 T:      git git://linuxtv.org/anttip/media_tree.git
3054 S:      Maintained
3055 F:      drivers/media/dvb-frontends/cxd2820r*
3056
3057 CXGB3 ETHERNET DRIVER (CXGB3)
3058 M:      Santosh Raspatur <santosh@chelsio.com>
3059 L:      netdev@vger.kernel.org
3060 W:      http://www.chelsio.com
3061 S:      Supported
3062 F:      drivers/net/ethernet/chelsio/cxgb3/
3063
3064 CXGB3 ISCSI DRIVER (CXGB3I)
3065 M:      Karen Xie <kxie@chelsio.com>
3066 L:      linux-scsi@vger.kernel.org
3067 W:      http://www.chelsio.com
3068 S:      Supported
3069 F:      drivers/scsi/cxgbi/cxgb3i
3070
3071 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3072 M:      Steve Wise <swise@chelsio.com>
3073 L:      linux-rdma@vger.kernel.org
3074 W:      http://www.openfabrics.org
3075 S:      Supported
3076 F:      drivers/infiniband/hw/cxgb3/
3077
3078 CXGB4 ETHERNET DRIVER (CXGB4)
3079 M:      Hariprasad S <hariprasad@chelsio.com>
3080 L:      netdev@vger.kernel.org
3081 W:      http://www.chelsio.com
3082 S:      Supported
3083 F:      drivers/net/ethernet/chelsio/cxgb4/
3084
3085 CXGB4 ISCSI DRIVER (CXGB4I)
3086 M:      Karen Xie <kxie@chelsio.com>
3087 L:      linux-scsi@vger.kernel.org
3088 W:      http://www.chelsio.com
3089 S:      Supported
3090 F:      drivers/scsi/cxgbi/cxgb4i
3091
3092 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3093 M:      Steve Wise <swise@chelsio.com>
3094 L:      linux-rdma@vger.kernel.org
3095 W:      http://www.openfabrics.org
3096 S:      Supported
3097 F:      drivers/infiniband/hw/cxgb4/
3098
3099 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3100 M:      Casey Leedom <leedom@chelsio.com>
3101 L:      netdev@vger.kernel.org
3102 W:      http://www.chelsio.com
3103 S:      Supported
3104 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3105
3106 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3107 M:      Ian Munsie <imunsie@au1.ibm.com>
3108 M:      Michael Neuling <mikey@neuling.org>
3109 L:      linuxppc-dev@lists.ozlabs.org
3110 S:      Supported
3111 F:      drivers/misc/cxl/
3112 F:      include/misc/cxl*
3113 F:      include/uapi/misc/cxl.h
3114 F:      Documentation/powerpc/cxl.txt
3115 F:      Documentation/powerpc/cxl.txt
3116 F:      Documentation/ABI/testing/sysfs-class-cxl
3117
3118 STMMAC ETHERNET DRIVER
3119 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3120 L:      netdev@vger.kernel.org
3121 W:      http://www.stlinux.com
3122 S:      Supported
3123 F:      drivers/net/ethernet/stmicro/stmmac/
3124
3125 CYBERPRO FB DRIVER
3126 M:      Russell King <linux@arm.linux.org.uk>
3127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3128 W:      http://www.arm.linux.org.uk/
3129 S:      Maintained
3130 F:      drivers/video/fbdev/cyber2000fb.*
3131
3132 CYCLADES ASYNC MUX DRIVER
3133 W:      http://www.cyclades.com/
3134 S:      Orphan
3135 F:      drivers/tty/cyclades.c
3136 F:      include/linux/cyclades.h
3137 F:      include/uapi/linux/cyclades.h
3138
3139 CYCLADES PC300 DRIVER
3140 W:      http://www.cyclades.com/
3141 S:      Orphan
3142 F:      drivers/net/wan/pc300*
3143
3144 CYPRESS_FIRMWARE MEDIA DRIVER
3145 M:      Antti Palosaari <crope@iki.fi>
3146 L:      linux-media@vger.kernel.org
3147 W:      http://linuxtv.org/
3148 W:      http://palosaari.fi/linux/
3149 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3150 T:      git git://linuxtv.org/anttip/media_tree.git
3151 S:      Maintained
3152 F:      drivers/media/common/cypress_firmware*
3153
3154 CYTTSP TOUCHSCREEN DRIVER
3155 M:      Ferruh Yigit <fery@cypress.com>
3156 L:      linux-input@vger.kernel.org
3157 S:      Supported
3158 F:      drivers/input/touchscreen/cyttsp*
3159 F:      include/linux/input/cyttsp.h
3160
3161 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3162 M:      Joshua Kinard <kumba@gentoo.org>
3163 S:      Maintained
3164 F:      drivers/rtc/rtc-ds1685.c
3165 F:      include/linux/rtc/ds1685.h
3166
3167 DAMA SLAVE for AX.25
3168 M:      Joerg Reuter <jreuter@yaina.de>
3169 W:      http://yaina.de/jreuter/
3170 W:      http://www.qsl.net/dl1bke/
3171 L:      linux-hams@vger.kernel.org
3172 S:      Maintained
3173 F:      net/ax25/af_ax25.c
3174 F:      net/ax25/ax25_dev.c
3175 F:      net/ax25/ax25_ds_*
3176 F:      net/ax25/ax25_in.c
3177 F:      net/ax25/ax25_out.c
3178 F:      net/ax25/ax25_timer.c
3179 F:      net/ax25/sysctl_net_ax25.c
3180
3181 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3182 L:      netdev@vger.kernel.org
3183 S:      Orphan
3184 F:      Documentation/networking/dmfe.txt
3185 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3186
3187 DC390/AM53C974 SCSI driver
3188 M:      Hannes Reinecke <hare@suse.com>
3189 L:      linux-scsi@vger.kernel.org
3190 S:      Maintained
3191 F:      drivers/scsi/am53c974.c
3192
3193 DC395x SCSI driver
3194 M:      Oliver Neukum <oliver@neukum.org>
3195 M:      Ali Akcaagac <aliakc@web.de>
3196 M:      Jamie Lenehan <lenehan@twibble.org>
3197 L:      dc395x@twibble.org
3198 W:      http://twibble.org/dist/dc395x/
3199 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3200 S:      Maintained
3201 F:      Documentation/scsi/dc395x.txt
3202 F:      drivers/scsi/dc395x.*
3203
3204 DCCP PROTOCOL
3205 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3206 L:      dccp@vger.kernel.org
3207 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3208 S:      Maintained
3209 F:      include/linux/dccp.h
3210 F:      include/uapi/linux/dccp.h
3211 F:      include/linux/tfrc.h
3212 F:      net/dccp/
3213
3214 DECnet NETWORK LAYER
3215 W:      http://linux-decnet.sourceforge.net
3216 L:      linux-decnet-user@lists.sourceforge.net
3217 S:      Orphan
3218 F:      Documentation/networking/decnet.txt
3219 F:      net/decnet/
3220
3221 DECSTATION PLATFORM SUPPORT
3222 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3223 L:      linux-mips@linux-mips.org
3224 W:      http://www.linux-mips.org/wiki/DECstation
3225 S:      Maintained
3226 F:      arch/mips/dec/
3227 F:      arch/mips/include/asm/dec/
3228 F:      arch/mips/include/asm/mach-dec/
3229
3230 DEFXX FDDI NETWORK DRIVER
3231 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3232 S:      Maintained
3233 F:      drivers/net/fddi/defxx.*
3234
3235 DELL LAPTOP DRIVER
3236 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3237 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3238 L:      platform-driver-x86@vger.kernel.org
3239 S:      Maintained
3240 F:      drivers/platform/x86/dell-laptop.c
3241
3242 DELL LAPTOP RBTN DRIVER
3243 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3244 S:      Maintained
3245 F:      drivers/platform/x86/dell-rbtn.*
3246
3247 DELL LAPTOP FREEFALL DRIVER
3248 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3249 S:      Maintained
3250 F:      drivers/platform/x86/dell-smo8800.c
3251
3252 DELL LAPTOP SMM DRIVER
3253 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3254 S:      Maintained
3255 F:      drivers/hwmon/dell-smm-hwmon.c
3256 F:      include/uapi/linux/i8k.h
3257
3258 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3259 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3260 S:      Maintained
3261 F:      Documentation/dcdbas.txt
3262 F:      drivers/firmware/dcdbas.*
3263
3264 DELL WMI EXTRAS DRIVER
3265 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3266 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3267 S:      Maintained
3268 F:      drivers/platform/x86/dell-wmi.c
3269
3270 DESIGNWARE USB2 DRD IP DRIVER
3271 M:      John Youn <johnyoun@synopsys.com>
3272 L:      linux-usb@vger.kernel.org
3273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3274 S:      Maintained
3275 F:      drivers/usb/dwc2/
3276
3277 DESIGNWARE USB3 DRD IP DRIVER
3278 M:      Felipe Balbi <balbi@ti.com>
3279 L:      linux-usb@vger.kernel.org
3280 L:      linux-omap@vger.kernel.org
3281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3282 S:      Maintained
3283 F:      drivers/usb/dwc3/
3284
3285 DEVICE COREDUMP (DEV_COREDUMP)
3286 M:      Johannes Berg <johannes@sipsolutions.net>
3287 L:      linux-kernel@vger.kernel.org
3288 S:      Maintained
3289 F:      drivers/base/devcoredump.c
3290 F:      include/linux/devcoredump.h
3291
3292 DEVICE FREQUENCY (DEVFREQ)
3293 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3294 M:      Kyungmin Park <kyungmin.park@samsung.com>
3295 L:      linux-pm@vger.kernel.org
3296 S:      Maintained
3297 F:      drivers/devfreq/
3298
3299 DEVICE NUMBER REGISTRY
3300 M:      Torben Mathiasen <device@lanana.org>
3301 W:      http://lanana.org/docs/device-list/index.html
3302 S:      Maintained
3303
3304 DEVICE-MAPPER  (LVM)
3305 M:      Alasdair Kergon <agk@redhat.com>
3306 M:      Mike Snitzer <snitzer@redhat.com>
3307 M:      dm-devel@redhat.com
3308 L:      dm-devel@redhat.com
3309 W:      http://sources.redhat.com/dm
3310 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3312 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3313 S:      Maintained
3314 F:      Documentation/device-mapper/
3315 F:      drivers/md/dm*
3316 F:      drivers/md/persistent-data/
3317 F:      include/linux/device-mapper.h
3318 F:      include/linux/dm-*.h
3319 F:      include/uapi/linux/dm-*.h
3320
3321 DIALOG SEMICONDUCTOR DRIVERS
3322 M:      Support Opensource <support.opensource@diasemi.com>
3323 W:      http://www.dialog-semiconductor.com/products
3324 S:      Supported
3325 F:      Documentation/hwmon/da90??
3326 F:      drivers/gpio/gpio-da90??.c
3327 F:      drivers/hwmon/da90??-hwmon.c
3328 F:      drivers/iio/adc/da91??-*.c
3329 F:      drivers/input/misc/da90??_onkey.c
3330 F:      drivers/input/touchscreen/da9052_tsi.c
3331 F:      drivers/leds/leds-da90??.c
3332 F:      drivers/mfd/da903x.c
3333 F:      drivers/mfd/da90??-*.c
3334 F:      drivers/mfd/da91??-*.c
3335 F:      drivers/power/da9052-battery.c
3336 F:      drivers/power/da91??-*.c
3337 F:      drivers/regulator/da903x.c
3338 F:      drivers/regulator/da9???-regulator.[ch]
3339 F:      drivers/rtc/rtc-da90??.c
3340 F:      drivers/video/backlight/da90??_bl.c
3341 F:      drivers/watchdog/da90??_wdt.c
3342 F:      include/linux/mfd/da903x.h
3343 F:      include/linux/mfd/da9052/
3344 F:      include/linux/mfd/da9055/
3345 F:      include/linux/mfd/da9063/
3346 F:      include/linux/mfd/da9150/
3347 F:      include/sound/da[79]*.h
3348 F:      sound/soc/codecs/da[79]*.[ch]
3349
3350 DIGI NEO AND CLASSIC PCI PRODUCTS
3351 M:      Lidza Louina <lidza.louina@gmail.com>
3352 M:      Mark Hounschell <markh@compro.net>
3353 L:      driverdev-devel@linuxdriverproject.org
3354 S:      Maintained
3355 F:      drivers/staging/dgnc/
3356
3357 DIGI EPCA PCI PRODUCTS
3358 M:      Lidza Louina <lidza.louina@gmail.com>
3359 M:      Mark Hounschell <markh@compro.net>
3360 M:      Daeseok Youn <daeseok.youn@gmail.com>
3361 L:      driverdev-devel@linuxdriverproject.org
3362 S:      Maintained
3363 F:      drivers/staging/dgap/
3364
3365 DIOLAN U2C-12 I2C DRIVER
3366 M:      Guenter Roeck <linux@roeck-us.net>
3367 L:      linux-i2c@vger.kernel.org
3368 S:      Maintained
3369 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3370
3371 DIRECT ACCESS (DAX)
3372 M:      Matthew Wilcox <willy@linux.intel.com>
3373 L:      linux-fsdevel@vger.kernel.org
3374 S:      Supported
3375 F:      fs/dax.c
3376
3377 DIRECTORY NOTIFICATION (DNOTIFY)
3378 M:      Eric Paris <eparis@parisplace.org>
3379 S:      Maintained
3380 F:      Documentation/filesystems/dnotify.txt
3381 F:      fs/notify/dnotify/
3382 F:      include/linux/dnotify.h
3383
3384 DISK GEOMETRY AND PARTITION HANDLING
3385 M:      Andries Brouwer <aeb@cwi.nl>
3386 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3387 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3388 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3389 S:      Maintained
3390
3391 DISKQUOTA
3392 M:      Jan Kara <jack@suse.com>
3393 S:      Maintained
3394 F:      Documentation/filesystems/quota.txt
3395 F:      fs/quota/
3396 F:      include/linux/quota*.h
3397 F:      include/uapi/linux/quota*.h
3398
3399 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3400 M:      Bernie Thompson <bernie@plugable.com>
3401 L:      linux-fbdev@vger.kernel.org
3402 S:      Maintained
3403 W:      http://plugable.com/category/projects/udlfb/
3404 F:      drivers/video/fbdev/udlfb.c
3405 F:      include/video/udlfb.h
3406 F:      Documentation/fb/udlfb.txt
3407
3408 DISTRIBUTED LOCK MANAGER (DLM)
3409 M:      Christine Caulfield <ccaulfie@redhat.com>
3410 M:      David Teigland <teigland@redhat.com>
3411 L:      cluster-devel@redhat.com
3412 W:      http://sources.redhat.com/cluster/
3413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3414 S:      Supported
3415 F:      fs/dlm/
3416
3417 DMA BUFFER SHARING FRAMEWORK
3418 M:      Sumit Semwal <sumit.semwal@linaro.org>
3419 S:      Maintained
3420 L:      linux-media@vger.kernel.org
3421 L:      dri-devel@lists.freedesktop.org
3422 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3423 F:      drivers/dma-buf/
3424 F:      include/linux/dma-buf*
3425 F:      include/linux/reservation.h
3426 F:      include/linux/*fence.h
3427 F:      Documentation/dma-buf-sharing.txt
3428 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3429
3430 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3431 M:      Vinod Koul <vinod.koul@intel.com>
3432 L:      dmaengine@vger.kernel.org
3433 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3434 S:      Maintained
3435 F:      drivers/dma/
3436 F:      include/linux/dmaengine.h
3437 F:      Documentation/dmaengine/
3438 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3439
3440 DME1737 HARDWARE MONITOR DRIVER
3441 M:      Juerg Haefliger <juergh@gmail.com>
3442 L:      lm-sensors@lm-sensors.org
3443 S:      Maintained
3444 F:      Documentation/hwmon/dme1737
3445 F:      drivers/hwmon/dme1737.c
3446
3447 DMI/SMBIOS SUPPORT
3448 M:      Jean Delvare <jdelvare@suse.com>
3449 S:      Maintained
3450 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3451 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3452 F:      drivers/firmware/dmi-id.c
3453 F:      drivers/firmware/dmi_scan.c
3454 F:      include/linux/dmi.h
3455
3456 DOCUMENTATION
3457 M:      Jonathan Corbet <corbet@lwn.net>
3458 L:      linux-doc@vger.kernel.org
3459 S:      Maintained
3460 F:      Documentation/
3461 X:      Documentation/ABI/
3462 X:      Documentation/devicetree/
3463 X:      Documentation/acpi
3464 X:      Documentation/power
3465 X:      Documentation/spi
3466 X:      Documentation/DocBook/media
3467 T:      git git://git.lwn.net/linux-2.6.git docs-next
3468
3469 DOUBLETALK DRIVER
3470 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3471 L:      blinux-list@redhat.com
3472 S:      Maintained
3473 F:      drivers/char/dtlk.c
3474 F:      include/linux/dtlk.h
3475
3476 DPT_I2O SCSI RAID DRIVER
3477 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3478 L:      linux-scsi@vger.kernel.org
3479 W:      http://www.adaptec.com/
3480 S:      Maintained
3481 F:      drivers/scsi/dpt*
3482 F:      drivers/scsi/dpt/
3483
3484 DRBD DRIVER
3485 P:      Philipp Reisner
3486 P:      Lars Ellenberg
3487 M:      drbd-dev@lists.linbit.com
3488 L:      drbd-user@lists.linbit.com
3489 W:      http://www.drbd.org
3490 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3491 T:      git git://git.drbd.org/drbd-8.3.git
3492 S:      Supported
3493 F:      drivers/block/drbd/
3494 F:      lib/lru_cache.c
3495 F:      Documentation/blockdev/drbd/
3496
3497 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3498 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3500 S:      Supported
3501 F:      Documentation/kobject.txt
3502 F:      drivers/base/
3503 F:      fs/debugfs/
3504 F:      fs/kernfs/
3505 F:      fs/sysfs/
3506 F:      include/linux/debugfs.h
3507 F:      include/linux/kobj*
3508 F:      lib/kobj*
3509
3510 DRM DRIVERS
3511 M:      David Airlie <airlied@linux.ie>
3512 L:      dri-devel@lists.freedesktop.org
3513 T:      git git://people.freedesktop.org/~airlied/linux
3514 S:      Maintained
3515 F:      drivers/gpu/drm/
3516 F:      drivers/gpu/vga/
3517 F:      include/drm/
3518 F:      include/uapi/drm/
3519
3520 RADEON DRM DRIVERS
3521 M:      Alex Deucher <alexander.deucher@amd.com>
3522 M:      Christian König <christian.koenig@amd.com>
3523 L:      dri-devel@lists.freedesktop.org
3524 T:      git git://people.freedesktop.org/~agd5f/linux
3525 S:      Supported
3526 F:      drivers/gpu/drm/radeon/
3527 F:      include/uapi/drm/radeon*
3528
3529 DRM PANEL DRIVERS
3530 M:      Thierry Reding <thierry.reding@gmail.com>
3531 L:      dri-devel@lists.freedesktop.org
3532 T:      git git://anongit.freedesktop.org/tegra/linux.git
3533 S:      Maintained
3534 F:      drivers/gpu/drm/drm_panel.c
3535 F:      drivers/gpu/drm/panel/
3536 F:      include/drm/drm_panel.h
3537 F:      Documentation/devicetree/bindings/panel/
3538
3539 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3540 M:      Daniel Vetter <daniel.vetter@intel.com>
3541 M:      Jani Nikula <jani.nikula@linux.intel.com>
3542 L:      intel-gfx@lists.freedesktop.org
3543 L:      dri-devel@lists.freedesktop.org
3544 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3545 T:      git git://anongit.freedesktop.org/drm-intel
3546 S:      Supported
3547 F:      drivers/gpu/drm/i915/
3548 F:      include/drm/i915*
3549 F:      include/uapi/drm/i915*
3550
3551 DRM DRIVERS FOR EXYNOS
3552 M:      Inki Dae <inki.dae@samsung.com>
3553 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3554 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3555 M:      Kyungmin Park <kyungmin.park@samsung.com>
3556 L:      dri-devel@lists.freedesktop.org
3557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3558 S:      Supported
3559 F:      drivers/gpu/drm/exynos/
3560 F:      include/drm/exynos*
3561 F:      include/uapi/drm/exynos*
3562
3563 DRM DRIVERS FOR FREESCALE IMX
3564 M:      Philipp Zabel <p.zabel@pengutronix.de>
3565 L:      dri-devel@lists.freedesktop.org
3566 S:      Maintained
3567 F:      drivers/gpu/drm/imx/
3568 F:      Documentation/devicetree/bindings/drm/imx/
3569
3570 DRM DRIVERS FOR NVIDIA TEGRA
3571 M:      Thierry Reding <thierry.reding@gmail.com>
3572 M:      Terje Bergström <tbergstrom@nvidia.com>
3573 L:      dri-devel@lists.freedesktop.org
3574 L:      linux-tegra@vger.kernel.org
3575 T:      git git://anongit.freedesktop.org/tegra/linux.git
3576 S:      Supported
3577 F:      drivers/gpu/drm/tegra/
3578 F:      drivers/gpu/host1x/
3579 F:      include/linux/host1x.h
3580 F:      include/uapi/drm/tegra_drm.h
3581 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3582
3583 DRM DRIVERS FOR RENESAS
3584 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3585 L:      dri-devel@lists.freedesktop.org
3586 L:      linux-sh@vger.kernel.org
3587 T:      git git://people.freedesktop.org/~airlied/linux
3588 S:      Supported
3589 F:      drivers/gpu/drm/rcar-du/
3590 F:      drivers/gpu/drm/shmobile/
3591 F:      include/linux/platform_data/shmob_drm.h
3592
3593 DRM DRIVERS FOR ROCKCHIP
3594 M:      Mark Yao <mark.yao@rock-chips.com>
3595 L:      dri-devel@lists.freedesktop.org
3596 S:      Maintained
3597 F:      drivers/gpu/drm/rockchip/
3598 F:      Documentation/devicetree/bindings/video/rockchip*
3599
3600 DRM DRIVERS FOR STI
3601 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3602 M:      Vincent Abriou <vincent.abriou@st.com>
3603 L:      dri-devel@lists.freedesktop.org
3604 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3605 S:      Maintained
3606 F:      drivers/gpu/drm/sti
3607 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3608
3609 DSBR100 USB FM RADIO DRIVER
3610 M:      Alexey Klimov <klimov.linux@gmail.com>
3611 L:      linux-media@vger.kernel.org
3612 T:      git git://linuxtv.org/media_tree.git
3613 S:      Maintained
3614 F:      drivers/media/radio/dsbr100.c
3615
3616 DSCC4 DRIVER
3617 M:      Francois Romieu <romieu@fr.zoreil.com>
3618 L:      netdev@vger.kernel.org
3619 S:      Maintained
3620 F:      drivers/net/wan/dscc4.c
3621
3622 DT3155 MEDIA DRIVER
3623 M:      Hans Verkuil <hverkuil@xs4all.nl>
3624 L:      linux-media@vger.kernel.org
3625 T:      git git://linuxtv.org/media_tree.git
3626 W:      http://linuxtv.org
3627 S:      Odd Fixes
3628 F:      drivers/media/pci/dt3155/
3629
3630 DVB_USB_AF9015 MEDIA DRIVER
3631 M:      Antti Palosaari <crope@iki.fi>
3632 L:      linux-media@vger.kernel.org
3633 W:      http://linuxtv.org/
3634 W:      http://palosaari.fi/linux/
3635 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3636 T:      git git://linuxtv.org/anttip/media_tree.git
3637 S:      Maintained
3638 F:      drivers/media/usb/dvb-usb-v2/af9015*
3639
3640 DVB_USB_AF9035 MEDIA DRIVER
3641 M:      Antti Palosaari <crope@iki.fi>
3642 L:      linux-media@vger.kernel.org
3643 W:      http://linuxtv.org/
3644 W:      http://palosaari.fi/linux/
3645 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3646 T:      git git://linuxtv.org/anttip/media_tree.git
3647 S:      Maintained
3648 F:      drivers/media/usb/dvb-usb-v2/af9035*
3649
3650 DVB_USB_ANYSEE MEDIA DRIVER
3651 M:      Antti Palosaari <crope@iki.fi>
3652 L:      linux-media@vger.kernel.org
3653 W:      http://linuxtv.org/
3654 W:      http://palosaari.fi/linux/
3655 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3656 T:      git git://linuxtv.org/anttip/media_tree.git
3657 S:      Maintained
3658 F:      drivers/media/usb/dvb-usb-v2/anysee*
3659
3660 DVB_USB_AU6610 MEDIA DRIVER
3661 M:      Antti Palosaari <crope@iki.fi>
3662 L:      linux-media@vger.kernel.org
3663 W:      http://linuxtv.org/
3664 W:      http://palosaari.fi/linux/
3665 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3666 T:      git git://linuxtv.org/anttip/media_tree.git
3667 S:      Maintained
3668 F:      drivers/media/usb/dvb-usb-v2/au6610*
3669
3670 DVB_USB_CE6230 MEDIA DRIVER
3671 M:      Antti Palosaari <crope@iki.fi>
3672 L:      linux-media@vger.kernel.org
3673 W:      http://linuxtv.org/
3674 W:      http://palosaari.fi/linux/
3675 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3676 T:      git git://linuxtv.org/anttip/media_tree.git
3677 S:      Maintained
3678 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3679
3680 DVB_USB_CXUSB MEDIA DRIVER
3681 M:      Michael Krufky <mkrufky@linuxtv.org>
3682 L:      linux-media@vger.kernel.org
3683 W:      http://linuxtv.org/
3684 W:      http://github.com/mkrufky
3685 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3686 T:      git git://linuxtv.org/media_tree.git
3687 S:      Maintained
3688 F:      drivers/media/usb/dvb-usb/cxusb*
3689
3690 DVB_USB_EC168 MEDIA DRIVER
3691 M:      Antti Palosaari <crope@iki.fi>
3692 L:      linux-media@vger.kernel.org
3693 W:      http://linuxtv.org/
3694 W:      http://palosaari.fi/linux/
3695 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3696 T:      git git://linuxtv.org/anttip/media_tree.git
3697 S:      Maintained
3698 F:      drivers/media/usb/dvb-usb-v2/ec168*
3699
3700 DVB_USB_GL861 MEDIA DRIVER
3701 M:      Antti Palosaari <crope@iki.fi>
3702 L:      linux-media@vger.kernel.org
3703 W:      http://linuxtv.org/
3704 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3705 T:      git git://linuxtv.org/anttip/media_tree.git
3706 S:      Maintained
3707 F:      drivers/media/usb/dvb-usb-v2/gl861*
3708
3709 DVB_USB_MXL111SF MEDIA DRIVER
3710 M:      Michael Krufky <mkrufky@linuxtv.org>
3711 L:      linux-media@vger.kernel.org
3712 W:      http://linuxtv.org/
3713 W:      http://github.com/mkrufky
3714 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3715 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3716 S:      Maintained
3717 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3718
3719 DVB_USB_RTL28XXU MEDIA DRIVER
3720 M:      Antti Palosaari <crope@iki.fi>
3721 L:      linux-media@vger.kernel.org
3722 W:      http://linuxtv.org/
3723 W:      http://palosaari.fi/linux/
3724 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3725 T:      git git://linuxtv.org/anttip/media_tree.git
3726 S:      Maintained
3727 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3728
3729 DVB_USB_V2 MEDIA DRIVER
3730 M:      Antti Palosaari <crope@iki.fi>
3731 L:      linux-media@vger.kernel.org
3732 W:      http://linuxtv.org/
3733 W:      http://palosaari.fi/linux/
3734 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3735 T:      git git://linuxtv.org/anttip/media_tree.git
3736 S:      Maintained
3737 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3738 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3739
3740 DYNAMIC DEBUG
3741 M:      Jason Baron <jbaron@akamai.com>
3742 S:      Maintained
3743 F:      lib/dynamic_debug.c
3744 F:      include/linux/dynamic_debug.h
3745
3746 DZ DECSTATION DZ11 SERIAL DRIVER
3747 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3748 S:      Maintained
3749 F:      drivers/tty/serial/dz.*
3750
3751 E3X0 POWER BUTTON DRIVER
3752 M:      Moritz Fischer <moritz.fischer@ettus.com>
3753 L:      usrp-users@lists.ettus.com
3754 W:      http://www.ettus.com
3755 S:      Supported
3756 F:      drivers/input/misc/e3x0-button.c
3757 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3758
3759 E4000 MEDIA DRIVER
3760 M:      Antti Palosaari <crope@iki.fi>
3761 L:      linux-media@vger.kernel.org
3762 W:      http://linuxtv.org/
3763 W:      http://palosaari.fi/linux/
3764 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3765 T:      git git://linuxtv.org/anttip/media_tree.git
3766 S:      Maintained
3767 F:      drivers/media/tuners/e4000*
3768
3769 EATA ISA/EISA/PCI SCSI DRIVER
3770 M:      Dario Ballabio <ballabio_dario@emc.com>
3771 L:      linux-scsi@vger.kernel.org
3772 S:      Maintained
3773 F:      drivers/scsi/eata.c
3774
3775 EC100 MEDIA DRIVER
3776 M:      Antti Palosaari <crope@iki.fi>
3777 L:      linux-media@vger.kernel.org
3778 W:      http://linuxtv.org/
3779 W:      http://palosaari.fi/linux/
3780 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3781 T:      git git://linuxtv.org/anttip/media_tree.git
3782 S:      Maintained
3783 F:      drivers/media/dvb-frontends/ec100*
3784
3785 ECRYPT FILE SYSTEM
3786 M:      Tyler Hicks <tyhicks@canonical.com>
3787 L:      ecryptfs@vger.kernel.org
3788 W:      http://ecryptfs.org
3789 W:      https://launchpad.net/ecryptfs
3790 S:      Supported
3791 F:      Documentation/filesystems/ecryptfs.txt
3792 F:      fs/ecryptfs/
3793
3794 EDAC-CORE
3795 M:      Doug Thompson <dougthompson@xmission.com>
3796 M:      Borislav Petkov <bp@alien8.de>
3797 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3798 L:      linux-edac@vger.kernel.org
3799 W:      bluesmoke.sourceforge.net
3800 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3801 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3802 S:      Supported
3803 F:      Documentation/edac.txt
3804 F:      drivers/edac/
3805 F:      include/linux/edac.h
3806
3807 EDAC-AMD64
3808 M:      Doug Thompson <dougthompson@xmission.com>
3809 M:      Borislav Petkov <bp@alien8.de>
3810 L:      linux-edac@vger.kernel.org
3811 W:      bluesmoke.sourceforge.net
3812 S:      Maintained
3813 F:      drivers/edac/amd64_edac*
3814
3815 EDAC-CALXEDA
3816 M:      Doug Thompson <dougthompson@xmission.com>
3817 M:      Robert Richter <rric@kernel.org>
3818 L:      linux-edac@vger.kernel.org
3819 W:      bluesmoke.sourceforge.net
3820 S:      Maintained
3821 F:      drivers/edac/highbank*
3822
3823 EDAC-CAVIUM
3824 M:      Ralf Baechle <ralf@linux-mips.org>
3825 M:      David Daney <david.daney@cavium.com>
3826 L:      linux-edac@vger.kernel.org
3827 L:      linux-mips@linux-mips.org
3828 W:      bluesmoke.sourceforge.net
3829 S:      Supported
3830 F:      drivers/edac/octeon_edac*
3831
3832 EDAC-E752X
3833 M:      Mark Gross <mark.gross@intel.com>
3834 M:      Doug Thompson <dougthompson@xmission.com>
3835 L:      linux-edac@vger.kernel.org
3836 W:      bluesmoke.sourceforge.net
3837 S:      Maintained
3838 F:      drivers/edac/e752x_edac.c
3839
3840 EDAC-E7XXX
3841 M:      Doug Thompson <dougthompson@xmission.com>
3842 L:      linux-edac@vger.kernel.org
3843 W:      bluesmoke.sourceforge.net
3844 S:      Maintained
3845 F:      drivers/edac/e7xxx_edac.c
3846
3847 EDAC-GHES
3848 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3849 L:      linux-edac@vger.kernel.org
3850 W:      bluesmoke.sourceforge.net
3851 S:      Maintained
3852 F:      drivers/edac/ghes_edac.c
3853
3854 EDAC-I82443BXGX
3855 M:      Tim Small <tim@buttersideup.com>
3856 L:      linux-edac@vger.kernel.org
3857 W:      bluesmoke.sourceforge.net
3858 S:      Maintained
3859 F:      drivers/edac/i82443bxgx_edac.c
3860
3861 EDAC-I3000
3862 M:      Jason Uhlenkott <juhlenko@akamai.com>
3863 L:      linux-edac@vger.kernel.org
3864 W:      bluesmoke.sourceforge.net
3865 S:      Maintained
3866 F:      drivers/edac/i3000_edac.c
3867
3868 EDAC-I5000
3869 M:      Doug Thompson <dougthompson@xmission.com>
3870 L:      linux-edac@vger.kernel.org
3871 W:      bluesmoke.sourceforge.net
3872 S:      Maintained
3873 F:      drivers/edac/i5000_edac.c
3874
3875 EDAC-I5400
3876 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3877 L:      linux-edac@vger.kernel.org
3878 W:      bluesmoke.sourceforge.net
3879 S:      Maintained
3880 F:      drivers/edac/i5400_edac.c
3881
3882 EDAC-I7300
3883 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3884 L:      linux-edac@vger.kernel.org
3885 W:      bluesmoke.sourceforge.net
3886 S:      Maintained
3887 F:      drivers/edac/i7300_edac.c
3888
3889 EDAC-I7CORE
3890 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3891 L:      linux-edac@vger.kernel.org
3892 W:      bluesmoke.sourceforge.net
3893 S:      Maintained
3894 F:      drivers/edac/i7core_edac.c
3895
3896 EDAC-I82975X
3897 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3898 M:      "Arvind R." <arvino55@gmail.com>
3899 L:      linux-edac@vger.kernel.org
3900 W:      bluesmoke.sourceforge.net
3901 S:      Maintained
3902 F:      drivers/edac/i82975x_edac.c
3903
3904 EDAC-IE31200
3905 M:      Jason Baron <jbaron@akamai.com>
3906 L:      linux-edac@vger.kernel.org
3907 W:      bluesmoke.sourceforge.net
3908 S:      Maintained
3909 F:      drivers/edac/ie31200_edac.c
3910
3911 EDAC-MPC85XX
3912 M:      Johannes Thumshirn <morbidrsa@gmail.com>
3913 L:      linux-edac@vger.kernel.org
3914 W:      bluesmoke.sourceforge.net
3915 S:      Maintained
3916 F:      drivers/edac/mpc85xx_edac.[ch]
3917
3918 EDAC-PASEMI
3919 M:      Egor Martovetsky <egor@pasemi.com>
3920 L:      linux-edac@vger.kernel.org
3921 W:      bluesmoke.sourceforge.net
3922 S:      Maintained
3923 F:      drivers/edac/pasemi_edac.c
3924
3925 EDAC-R82600
3926 M:      Tim Small <tim@buttersideup.com>
3927 L:      linux-edac@vger.kernel.org
3928 W:      bluesmoke.sourceforge.net
3929 S:      Maintained
3930 F:      drivers/edac/r82600_edac.c
3931
3932 EDAC-SBRIDGE
3933 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3934 L:      linux-edac@vger.kernel.org
3935 W:      bluesmoke.sourceforge.net
3936 S:      Maintained
3937 F:      drivers/edac/sb_edac.c
3938
3939 EDAC-XGENE
3940 APPLIED MICRO (APM) X-GENE SOC EDAC
3941 M:     Loc Ho <lho@apm.com>
3942 S:     Supported
3943 F:     drivers/edac/xgene_edac.c
3944 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
3945
3946 EDIROL UA-101/UA-1000 DRIVER
3947 M:      Clemens Ladisch <clemens@ladisch.de>
3948 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3949 T:      git git://git.alsa-project.org/alsa-kernel.git
3950 S:      Maintained
3951 F:      sound/usb/misc/ua101.c
3952
3953 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3954 M:      Matt Fleming <matt.fleming@intel.com>
3955 L:      linux-efi@vger.kernel.org
3956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3957 S:      Maintained
3958 F:      Documentation/efi-stub.txt
3959 F:      arch/ia64/kernel/efi.c
3960 F:      arch/x86/boot/compressed/eboot.[ch]
3961 F:      arch/x86/include/asm/efi.h
3962 F:      arch/x86/platform/efi/*
3963 F:      drivers/firmware/efi/*
3964 F:      include/linux/efi*.h
3965
3966 EFI VARIABLE FILESYSTEM
3967 M:      Matthew Garrett <matthew.garrett@nebula.com>
3968 M:      Jeremy Kerr <jk@ozlabs.org>
3969 M:      Matt Fleming <matt.fleming@intel.com>
3970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3971 L:      linux-efi@vger.kernel.org
3972 S:      Maintained
3973 F:      fs/efivarfs/
3974
3975 EFIFB FRAMEBUFFER DRIVER
3976 L:      linux-fbdev@vger.kernel.org
3977 M:      Peter Jones <pjones@redhat.com>
3978 S:      Maintained
3979 F:      drivers/video/fbdev/efifb.c
3980
3981 EFS FILESYSTEM
3982 W:      http://aeschi.ch.eu.org/efs/
3983 S:      Orphan
3984 F:      fs/efs/
3985
3986 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3987 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3988 M:      Christoph Raisch <raisch@de.ibm.com>
3989 L:      linux-rdma@vger.kernel.org
3990 S:      Supported
3991 F:      drivers/infiniband/hw/ehca/
3992
3993 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3994 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3995 L:      netdev@vger.kernel.org
3996 S:      Maintained
3997 F:      drivers/net/ethernet/ibm/ehea/
3998
3999 EM28XX VIDEO4LINUX DRIVER
4000 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4001 L:      linux-media@vger.kernel.org
4002 W:      http://linuxtv.org
4003 T:      git git://linuxtv.org/media_tree.git
4004 S:      Maintained
4005 F:      drivers/media/usb/em28xx/
4006
4007 EMBEDDED LINUX
4008 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4009 M:      Matt Mackall <mpm@selenic.com>
4010 M:      David Woodhouse <dwmw2@infradead.org>
4011 L:      linux-embedded@vger.kernel.org
4012 S:      Maintained
4013
4014 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4015 M:      James Smart <james.smart@avagotech.com>
4016 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4017 L:      linux-scsi@vger.kernel.org
4018 W:      http://www.avagotech.com
4019 S:      Supported
4020 F:      drivers/scsi/lpfc/
4021
4022 ENE CB710 FLASH CARD READER DRIVER
4023 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4024 S:      Maintained
4025 F:      drivers/misc/cb710/
4026 F:      drivers/mmc/host/cb710-mmc.*
4027 F:      include/linux/cb710.h
4028
4029 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4030 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4031 S:      Maintained
4032 F:      drivers/media/rc/ene_ir.*
4033
4034 ENHANCED ERROR HANDLING (EEH)
4035 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4036 L:      linuxppc-dev@lists.ozlabs.org
4037 S:      Supported
4038 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4039 F:      arch/powerpc/kernel/eeh*.c
4040
4041 EPSON S1D13XXX FRAMEBUFFER DRIVER
4042 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4043 S:      Maintained
4044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4045 F:      drivers/video/fbdev/s1d13xxxfb.c
4046 F:      include/video/s1d13xxxfb.h
4047
4048 ET131X NETWORK DRIVER
4049 M:      Mark Einon <mark.einon@gmail.com>
4050 S:      Odd Fixes
4051 F:      drivers/net/ethernet/agere/
4052
4053 ETHERNET BRIDGE
4054 M:      Stephen Hemminger <stephen@networkplumber.org>
4055 L:      bridge@lists.linux-foundation.org
4056 L:      netdev@vger.kernel.org
4057 W:      http://www.linuxfoundation.org/en/Net:Bridge
4058 S:      Maintained
4059 F:      include/linux/netfilter_bridge/
4060 F:      net/bridge/
4061
4062 ETHERNET PHY LIBRARY
4063 M:      Florian Fainelli <f.fainelli@gmail.com>
4064 L:      netdev@vger.kernel.org
4065 S:      Maintained
4066 F:      include/linux/phy.h
4067 F:      include/linux/phy_fixed.h
4068 F:      drivers/net/phy/
4069 F:      Documentation/networking/phy.txt
4070 F:      drivers/of/of_mdio.c
4071 F:      drivers/of/of_net.c
4072
4073 EXT2 FILE SYSTEM
4074 M:      Jan Kara <jack@suse.com>
4075 L:      linux-ext4@vger.kernel.org
4076 S:      Maintained
4077 F:      Documentation/filesystems/ext2.txt
4078 F:      fs/ext2/
4079 F:      include/linux/ext2*
4080
4081 EXT4 FILE SYSTEM
4082 M:      "Theodore Ts'o" <tytso@mit.edu>
4083 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4084 L:      linux-ext4@vger.kernel.org
4085 W:      http://ext4.wiki.kernel.org
4086 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4087 S:      Maintained
4088 F:      Documentation/filesystems/ext4.txt
4089 F:      fs/ext4/
4090
4091 Extended Verification Module (EVM)
4092 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4093 L:      linux-ima-devel@lists.sourceforge.net
4094 L:      linux-security-module@vger.kernel.org
4095 S:      Supported
4096 F:      security/integrity/evm/
4097
4098 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4099 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4100 M:      Chanwoo Choi <cw00.choi@samsung.com>
4101 L:      linux-kernel@vger.kernel.org
4102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4103 S:      Maintained
4104 F:      drivers/extcon/
4105 F:      Documentation/extcon/
4106
4107 EXYNOS DP DRIVER
4108 M:      Jingoo Han <jingoohan1@gmail.com>
4109 L:      dri-devel@lists.freedesktop.org
4110 S:      Maintained
4111 F:      drivers/gpu/drm/exynos/exynos_dp*
4112
4113 EXYNOS MIPI DISPLAY DRIVERS
4114 M:      Inki Dae <inki.dae@samsung.com>
4115 M:      Donghwa Lee <dh09.lee@samsung.com>
4116 M:      Kyungmin Park <kyungmin.park@samsung.com>
4117 L:      linux-fbdev@vger.kernel.org
4118 S:      Maintained
4119 F:      drivers/video/fbdev/exynos/exynos_mipi*
4120 F:      include/video/exynos_mipi*
4121
4122 F71805F HARDWARE MONITORING DRIVER
4123 M:      Jean Delvare <jdelvare@suse.com>
4124 L:      lm-sensors@lm-sensors.org
4125 S:      Maintained
4126 F:      Documentation/hwmon/f71805f
4127 F:      drivers/hwmon/f71805f.c
4128
4129 FC0011 TUNER DRIVER
4130 M:      Michael Buesch <m@bues.ch>
4131 L:      linux-media@vger.kernel.org
4132 S:      Maintained
4133 F:      drivers/media/tuners/fc0011.h
4134 F:      drivers/media/tuners/fc0011.c
4135
4136 FC2580 MEDIA DRIVER
4137 M:      Antti Palosaari <crope@iki.fi>
4138 L:      linux-media@vger.kernel.org
4139 W:      http://linuxtv.org/
4140 W:      http://palosaari.fi/linux/
4141 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4142 T:      git git://linuxtv.org/anttip/media_tree.git
4143 S:      Maintained
4144 F:      drivers/media/tuners/fc2580*
4145
4146 FANOTIFY
4147 M:      Eric Paris <eparis@redhat.com>
4148 S:      Maintained
4149 F:      fs/notify/fanotify/
4150 F:      include/linux/fanotify.h
4151 F:      include/uapi/linux/fanotify.h
4152
4153 FARSYNC SYNCHRONOUS DRIVER
4154 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4155 W:      http://www.farsite.co.uk/
4156 S:      Supported
4157 F:      drivers/net/wan/farsync.*
4158
4159 FAULT INJECTION SUPPORT
4160 M:      Akinobu Mita <akinobu.mita@gmail.com>
4161 S:      Supported
4162 F:      Documentation/fault-injection/
4163 F:      lib/fault-inject.c
4164
4165 FBTFT Framebuffer drivers
4166 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4167 M:      Noralf Trønnes <noralf@tronnes.org>
4168 S:      Maintained
4169 F:      drivers/staging/fbtft/
4170
4171 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4172 M:      Vasu Dev <vasu.dev@intel.com>
4173 L:      fcoe-devel@open-fcoe.org
4174 W:      www.Open-FCoE.org
4175 S:      Supported
4176 F:      drivers/scsi/libfc/
4177 F:      drivers/scsi/fcoe/
4178 F:      include/scsi/fc/
4179 F:      include/scsi/libfc.h
4180 F:      include/scsi/libfcoe.h
4181 F:      include/uapi/scsi/fc/
4182
4183 FILE LOCKING (flock() and fcntl()/lockf())
4184 M:      Jeff Layton <jlayton@poochiereds.net>
4185 M:      "J. Bruce Fields" <bfields@fieldses.org>
4186 L:      linux-fsdevel@vger.kernel.org
4187 S:      Maintained
4188 F:      include/linux/fcntl.h
4189 F:      include/linux/fs.h
4190 F:      include/uapi/linux/fcntl.h
4191 F:      include/uapi/linux/fs.h
4192 F:      fs/fcntl.c
4193 F:      fs/locks.c
4194
4195 FILESYSTEMS (VFS and infrastructure)
4196 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4197 L:      linux-fsdevel@vger.kernel.org
4198 S:      Maintained
4199 F:      fs/*
4200
4201 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4202 M:      Riku Voipio <riku.voipio@iki.fi>
4203 L:      lm-sensors@lm-sensors.org
4204 S:      Maintained
4205 F:      drivers/hwmon/f75375s.c
4206 F:      include/linux/f75375s.h
4207
4208 FIREWIRE AUDIO DRIVERS
4209 M:      Clemens Ladisch <clemens@ladisch.de>
4210 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4211 T:      git git://git.alsa-project.org/alsa-kernel.git
4212 S:      Maintained
4213 F:      sound/firewire/
4214
4215 FIREWIRE MEDIA DRIVERS (firedtv)
4216 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4217 L:      linux-media@vger.kernel.org
4218 L:      linux1394-devel@lists.sourceforge.net
4219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4220 S:      Maintained
4221 F:      drivers/media/firewire/
4222
4223 FIREWIRE SBP-2 TARGET
4224 M:      Chris Boot <bootc@bootc.net>
4225 L:      linux-scsi@vger.kernel.org
4226 L:      target-devel@vger.kernel.org
4227 L:      linux1394-devel@lists.sourceforge.net
4228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4229 S:      Maintained
4230 F:      drivers/target/sbp/
4231
4232 FIREWIRE SUBSYSTEM
4233 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4234 L:      linux1394-devel@lists.sourceforge.net
4235 W:      http://ieee1394.wiki.kernel.org/
4236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4237 S:      Maintained
4238 F:      drivers/firewire/
4239 F:      include/linux/firewire.h
4240 F:      include/uapi/linux/firewire*.h
4241 F:      tools/firewire/
4242
4243 FIRMWARE LOADER (request_firmware)
4244 M:      Ming Lei <ming.lei@canonical.com>
4245 L:      linux-kernel@vger.kernel.org
4246 S:      Maintained
4247 F:      Documentation/firmware_class/
4248 F:      drivers/base/firmware*.c
4249 F:      include/linux/firmware.h
4250
4251 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4252 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4253 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4254 S:      Maintained
4255 F:      drivers/block/rsxx/
4256
4257 FLOPPY DRIVER
4258 M:      Jiri Kosina <jikos@kernel.org>
4259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4260 S:      Odd fixes
4261 F:      drivers/block/floppy.c
4262
4263 FMC SUBSYSTEM
4264 M:      Alessandro Rubini <rubini@gnudd.com>
4265 W:      http://www.ohwr.org/projects/fmc-bus
4266 S:      Supported
4267 F:      drivers/fmc/
4268 F:      include/linux/fmc*.h
4269 F:      include/linux/ipmi-fru.h
4270 K:      fmc_d.*register
4271
4272 FPU EMULATOR
4273 M:      Bill Metzenthen <billm@melbpc.org.au>
4274 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4275 S:      Maintained
4276 F:      arch/x86/math-emu/
4277
4278 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4279 L:      netdev@vger.kernel.org
4280 S:      Orphan
4281 F:      drivers/net/wan/dlci.c
4282 F:      drivers/net/wan/sdla.c
4283
4284 FRAMEBUFFER LAYER
4285 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4286 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4287 L:      linux-fbdev@vger.kernel.org
4288 W:      http://linux-fbdev.sourceforge.net/
4289 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4291 S:      Maintained
4292 F:      Documentation/fb/
4293 F:      Documentation/devicetree/bindings/fb/
4294 F:      drivers/video/
4295 F:      include/video/
4296 F:      include/linux/fb.h
4297 F:      include/uapi/video/
4298 F:      include/uapi/linux/fb.h
4299
4300 FREESCALE DIU FRAMEBUFFER DRIVER
4301 M:      Timur Tabi <timur@tabi.org>
4302 L:      linux-fbdev@vger.kernel.org
4303 S:      Maintained
4304 F:      drivers/video/fbdev/fsl-diu-fb.*
4305
4306 FREESCALE DMA DRIVER
4307 M:      Li Yang <leoli@freescale.com>
4308 M:      Zhang Wei <zw@zh-kernel.org>
4309 L:      linuxppc-dev@lists.ozlabs.org
4310 S:      Maintained
4311 F:      drivers/dma/fsldma.*
4312
4313 FREESCALE I2C CPM DRIVER
4314 M:      Jochen Friedrich <jochen@scram.de>
4315 L:      linuxppc-dev@lists.ozlabs.org
4316 L:      linux-i2c@vger.kernel.org
4317 S:      Maintained
4318 F:      drivers/i2c/busses/i2c-cpm.c
4319
4320 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4321 M:      Sascha Hauer <kernel@pengutronix.de>
4322 L:      linux-fbdev@vger.kernel.org
4323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4324 S:      Maintained
4325 F:      include/linux/platform_data/video-imxfb.h
4326 F:      drivers/video/fbdev/imxfb.c
4327
4328 FREESCALE QUAD SPI DRIVER
4329 M:      Han Xu <han.xu@freescale.com>
4330 L:      linux-mtd@lists.infradead.org
4331 S:      Maintained
4332 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4333
4334 FREESCALE SOC FS_ENET DRIVER
4335 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4336 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4337 L:      linuxppc-dev@lists.ozlabs.org
4338 L:      netdev@vger.kernel.org
4339 S:      Maintained
4340 F:      drivers/net/ethernet/freescale/fs_enet/
4341 F:      include/linux/fs_enet_pd.h
4342
4343 FREESCALE QUICC ENGINE LIBRARY
4344 L:      linuxppc-dev@lists.ozlabs.org
4345 S:      Orphan
4346 F:      arch/powerpc/sysdev/qe_lib/
4347 F:      arch/powerpc/include/asm/*qe.h
4348
4349 FREESCALE USB PERIPHERAL DRIVERS
4350 M:      Li Yang <leoli@freescale.com>
4351 L:      linux-usb@vger.kernel.org
4352 L:      linuxppc-dev@lists.ozlabs.org
4353 S:      Maintained
4354 F:      drivers/usb/gadget/udc/fsl*
4355
4356 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4357 M:      Li Yang <leoli@freescale.com>
4358 L:      netdev@vger.kernel.org
4359 L:      linuxppc-dev@lists.ozlabs.org
4360 S:      Maintained
4361 F:      drivers/net/ethernet/freescale/ucc_geth*
4362
4363 FREESCALE QUICC ENGINE UCC UART DRIVER
4364 M:      Timur Tabi <timur@tabi.org>
4365 L:      linuxppc-dev@lists.ozlabs.org
4366 S:      Maintained
4367 F:      drivers/tty/serial/ucc_uart.c
4368
4369 FREESCALE SOC SOUND DRIVERS
4370 M:      Timur Tabi <timur@tabi.org>
4371 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4372 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4373 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4374 L:      linuxppc-dev@lists.ozlabs.org
4375 S:      Maintained
4376 F:      sound/soc/fsl/fsl*
4377 F:      sound/soc/fsl/imx*
4378 F:      sound/soc/fsl/mpc8610_hpcd.c
4379
4380 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4381 M:      "J. German Rivera" <German.Rivera@freescale.com>
4382 L:      linux-kernel@vger.kernel.org
4383 S:      Maintained
4384 F:      drivers/staging/fsl-mc/
4385
4386 FREEVXFS FILESYSTEM
4387 M:      Christoph Hellwig <hch@infradead.org>
4388 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4389 S:      Maintained
4390 F:      fs/freevxfs/
4391
4392 FREEZER
4393 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4394 M:      Pavel Machek <pavel@ucw.cz>
4395 L:      linux-pm@vger.kernel.org
4396 S:      Supported
4397 F:      Documentation/power/freezing-of-tasks.txt
4398 F:      include/linux/freezer.h
4399 F:      kernel/freezer.c
4400
4401 FRONTSWAP API
4402 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4403 L:      linux-kernel@vger.kernel.org
4404 S:      Maintained
4405 F:      mm/frontswap.c
4406 F:      include/linux/frontswap.h
4407
4408 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4409 M:      David Howells <dhowells@redhat.com>
4410 L:      linux-cachefs@redhat.com
4411 S:      Supported
4412 F:      Documentation/filesystems/caching/
4413 F:      fs/fscache/
4414 F:      include/linux/fscache*.h
4415
4416 F2FS FILE SYSTEM
4417 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4418 M:      Changman Lee <cm224.lee@samsung.com>
4419 L:      linux-f2fs-devel@lists.sourceforge.net
4420 W:      http://en.wikipedia.org/wiki/F2FS
4421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4422 S:      Maintained
4423 F:      Documentation/filesystems/f2fs.txt
4424 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4425 F:      fs/f2fs/
4426 F:      include/linux/f2fs_fs.h
4427
4428 FUJITSU FR-V (FRV) PORT
4429 M:      David Howells <dhowells@redhat.com>
4430 S:      Maintained
4431 F:      arch/frv/
4432
4433 FUJITSU LAPTOP EXTRAS
4434 M:      Jonathan Woithe <jwoithe@just42.net>
4435 L:      platform-driver-x86@vger.kernel.org
4436 S:      Maintained
4437 F:      drivers/platform/x86/fujitsu-laptop.c
4438
4439 FUJITSU M-5MO LS CAMERA ISP DRIVER
4440 M:      Kyungmin Park <kyungmin.park@samsung.com>
4441 M:      Heungjun Kim <riverful.kim@samsung.com>
4442 L:      linux-media@vger.kernel.org
4443 S:      Maintained
4444 F:      drivers/media/i2c/m5mols/
4445 F:      include/media/m5mols.h
4446
4447 FUJITSU TABLET EXTRAS
4448 M:      Robert Gerlach <khnz@gmx.de>
4449 L:      platform-driver-x86@vger.kernel.org
4450 S:      Maintained
4451 F:      drivers/platform/x86/fujitsu-tablet.c
4452
4453 FUSE: FILESYSTEM IN USERSPACE
4454 M:      Miklos Szeredi <miklos@szeredi.hu>
4455 L:      fuse-devel@lists.sourceforge.net
4456 W:      http://fuse.sourceforge.net/
4457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4458 S:      Maintained
4459 F:      fs/fuse/
4460 F:      include/uapi/linux/fuse.h
4461 F:      Documentation/filesystems/fuse.txt
4462
4463 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4464 M:      Rik Faith <faith@cs.unc.edu>
4465 L:      linux-scsi@vger.kernel.org
4466 S:      Odd Fixes (e.g., new signatures)
4467 F:      drivers/scsi/fdomain.*
4468
4469 GCOV BASED KERNEL PROFILING
4470 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4471 S:      Maintained
4472 F:      kernel/gcov/
4473 F:      Documentation/gcov.txt
4474
4475 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4476 M:      Achim Leubner <achim_leubner@adaptec.com>
4477 L:      linux-scsi@vger.kernel.org
4478 W:      http://www.icp-vortex.com/
4479 S:      Supported
4480 F:      drivers/scsi/gdt*
4481
4482 GDB KERNEL DEBUGGING HELPER SCRIPTS
4483 M:      Jan Kiszka <jan.kiszka@siemens.com>
4484 S:      Supported
4485 F:      scripts/gdb/
4486
4487 GEMTEK FM RADIO RECEIVER DRIVER
4488 M:      Hans Verkuil <hverkuil@xs4all.nl>
4489 L:      linux-media@vger.kernel.org
4490 T:      git git://linuxtv.org/media_tree.git
4491 W:      http://linuxtv.org
4492 S:      Maintained
4493 F:      drivers/media/radio/radio-gemtek*
4494
4495 GENERIC GPIO I2C DRIVER
4496 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4497 S:      Supported
4498 F:      drivers/i2c/busses/i2c-gpio.c
4499 F:      include/linux/i2c-gpio.h
4500
4501 GENERIC GPIO I2C MULTIPLEXER DRIVER
4502 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4503 L:      linux-i2c@vger.kernel.org
4504 S:      Supported
4505 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4506 F:      include/linux/i2c-mux-gpio.h
4507 F:      Documentation/i2c/muxes/i2c-mux-gpio
4508
4509 GENERIC HDLC (WAN) DRIVERS
4510 M:      Krzysztof Halasa <khc@pm.waw.pl>
4511 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4512 S:      Maintained
4513 F:      drivers/net/wan/c101.c
4514 F:      drivers/net/wan/hd6457*
4515 F:      drivers/net/wan/hdlc*
4516 F:      drivers/net/wan/n2.c
4517 F:      drivers/net/wan/pc300too.c
4518 F:      drivers/net/wan/pci200syn.c
4519 F:      drivers/net/wan/wanxl*
4520
4521 GENERIC INCLUDE/ASM HEADER FILES
4522 M:      Arnd Bergmann <arnd@arndb.de>
4523 L:      linux-arch@vger.kernel.org
4524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4525 S:      Maintained
4526 F:      include/asm-generic/
4527 F:      include/uapi/asm-generic/
4528
4529 GENERIC PHY FRAMEWORK
4530 M:      Kishon Vijay Abraham I <kishon@ti.com>
4531 L:      linux-kernel@vger.kernel.org
4532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4533 S:      Supported
4534 F:      drivers/phy/
4535 F:      include/linux/phy/
4536
4537 GENERIC PM DOMAINS
4538 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4539 M:      Kevin Hilman <khilman@kernel.org>
4540 M:      Ulf Hansson <ulf.hansson@linaro.org>
4541 L:      linux-pm@vger.kernel.org
4542 S:      Supported
4543 F:      drivers/base/power/domain*.c
4544 F:      include/linux/pm_domain.h
4545
4546 GENERIC UIO DRIVER FOR PCI DEVICES
4547 M:      "Michael S. Tsirkin" <mst@redhat.com>
4548 L:      kvm@vger.kernel.org
4549 S:      Supported
4550 F:      drivers/uio/uio_pci_generic.c
4551
4552 GET_MAINTAINER SCRIPT
4553 M:      Joe Perches <joe@perches.com>
4554 S:      Maintained
4555 F:      scripts/get_maintainer.pl
4556
4557 GFS2 FILE SYSTEM
4558 M:      Steven Whitehouse <swhiteho@redhat.com>
4559 M:      Bob Peterson <rpeterso@redhat.com>
4560 L:      cluster-devel@redhat.com
4561 W:      http://sources.redhat.com/cluster/
4562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4563 S:      Supported
4564 F:      Documentation/filesystems/gfs2*.txt
4565 F:      fs/gfs2/
4566 F:      include/uapi/linux/gfs2_ondisk.h
4567
4568 GIGASET ISDN DRIVERS
4569 M:      Paul Bolle <pebolle@tiscali.nl>
4570 L:      gigaset307x-common@lists.sourceforge.net
4571 W:      http://gigaset307x.sourceforge.net/
4572 S:      Odd Fixes
4573 F:      Documentation/isdn/README.gigaset
4574 F:      drivers/isdn/gigaset/
4575 F:      include/uapi/linux/gigaset_dev.h
4576
4577 GO7007 MPEG CODEC
4578 M:      Hans Verkuil <hans.verkuil@cisco.com>
4579 L:      linux-media@vger.kernel.org
4580 S:      Maintained
4581 F:      drivers/media/usb/go7007/
4582
4583 GOODIX TOUCHSCREEN
4584 M:      Bastien Nocera <hadess@hadess.net>
4585 L:      linux-input@vger.kernel.org
4586 S:      Maintained
4587 F:      drivers/input/touchscreen/goodix.c
4588
4589 GPIO SUBSYSTEM
4590 M:      Linus Walleij <linus.walleij@linaro.org>
4591 M:      Alexandre Courbot <gnurou@gmail.com>
4592 L:      linux-gpio@vger.kernel.org
4593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4594 S:      Maintained
4595 F:      Documentation/gpio/
4596 F:      drivers/gpio/
4597 F:      include/linux/gpio/
4598 F:      include/linux/gpio.h
4599 F:      include/asm-generic/gpio.h
4600
4601 GRE DEMULTIPLEXER DRIVER
4602 M:      Dmitry Kozlov <xeb@mail.ru>
4603 L:      netdev@vger.kernel.org
4604 S:      Maintained
4605 F:      net/ipv4/gre_demux.c
4606 F:      net/ipv4/gre_offload.c
4607 F:      include/net/gre.h
4608
4609 GRETH 10/100/1G Ethernet MAC device driver
4610 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4611 L:      netdev@vger.kernel.org
4612 S:      Maintained
4613 F:      drivers/net/ethernet/aeroflex/
4614
4615 GSPCA FINEPIX SUBDRIVER
4616 M:      Frank Zago <frank@zago.net>
4617 L:      linux-media@vger.kernel.org
4618 T:      git git://linuxtv.org/media_tree.git
4619 S:      Maintained
4620 F:      drivers/media/usb/gspca/finepix.c
4621
4622 GSPCA GL860 SUBDRIVER
4623 M:      Olivier Lorin <o.lorin@laposte.net>
4624 L:      linux-media@vger.kernel.org
4625 T:      git git://linuxtv.org/media_tree.git
4626 S:      Maintained
4627 F:      drivers/media/usb/gspca/gl860/
4628
4629 GSPCA M5602 SUBDRIVER
4630 M:      Erik Andren <erik.andren@gmail.com>
4631 L:      linux-media@vger.kernel.org
4632 T:      git git://linuxtv.org/media_tree.git
4633 S:      Maintained
4634 F:      drivers/media/usb/gspca/m5602/
4635
4636 GSPCA PAC207 SONIXB SUBDRIVER
4637 M:      Hans de Goede <hdegoede@redhat.com>
4638 L:      linux-media@vger.kernel.org
4639 T:      git git://linuxtv.org/media_tree.git
4640 S:      Maintained
4641 F:      drivers/media/usb/gspca/pac207.c
4642
4643 GSPCA SN9C20X SUBDRIVER
4644 M:      Brian Johnson <brijohn@gmail.com>
4645 L:      linux-media@vger.kernel.org
4646 T:      git git://linuxtv.org/media_tree.git
4647 S:      Maintained
4648 F:      drivers/media/usb/gspca/sn9c20x.c
4649
4650 GSPCA T613 SUBDRIVER
4651 M:      Leandro Costantino <lcostantino@gmail.com>
4652 L:      linux-media@vger.kernel.org
4653 T:      git git://linuxtv.org/media_tree.git
4654 S:      Maintained
4655 F:      drivers/media/usb/gspca/t613.c
4656
4657 GSPCA USB WEBCAM DRIVER
4658 M:      Hans de Goede <hdegoede@redhat.com>
4659 L:      linux-media@vger.kernel.org
4660 T:      git git://linuxtv.org/media_tree.git
4661 S:      Maintained
4662 F:      drivers/media/usb/gspca/
4663
4664 GUID PARTITION TABLE (GPT)
4665 M:      Davidlohr Bueso <dave@stgolabs.net>
4666 L:      linux-efi@vger.kernel.org
4667 S:      Maintained
4668 F:      block/partitions/efi.*
4669
4670 STK1160 USB VIDEO CAPTURE DRIVER
4671 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4672 L:      linux-media@vger.kernel.org
4673 T:      git git://linuxtv.org/media_tree.git
4674 S:      Maintained
4675 F:      drivers/media/usb/stk1160/
4676
4677 H8/300 ARCHITECTURE
4678 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4679 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4680 W:      http://uclinux-h8.sourceforge.jp
4681 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4682 S:      Maintained
4683 F:      arch/h8300/
4684 F:      drivers/clocksource/h8300_*.c
4685 F:      drivers/clk/h8300/
4686 F:      drivers/irqchip/irq-renesas-h8*.c
4687
4688 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4689 M:      Frank Seidel <frank@f-seidel.de>
4690 L:      platform-driver-x86@vger.kernel.org
4691 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4692 S:      Maintained
4693 F:      drivers/platform/x86/hdaps.c
4694
4695 HDPVR USB VIDEO ENCODER DRIVER
4696 M:      Hans Verkuil <hverkuil@xs4all.nl>
4697 L:      linux-media@vger.kernel.org
4698 T:      git git://linuxtv.org/media_tree.git
4699 W:      http://linuxtv.org
4700 S:      Odd Fixes
4701 F:      drivers/media/usb/hdpvr/
4702
4703 HWPOISON MEMORY FAILURE HANDLING
4704 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4705 L:      linux-mm@kvack.org
4706 S:      Maintained
4707 F:      mm/memory-failure.c
4708 F:      mm/hwpoison-inject.c
4709
4710 HYPERVISOR VIRTUAL CONSOLE DRIVER
4711 L:      linuxppc-dev@lists.ozlabs.org
4712 S:      Odd Fixes
4713 F:      drivers/tty/hvc/
4714
4715 HACKRF MEDIA DRIVER
4716 M:      Antti Palosaari <crope@iki.fi>
4717 L:      linux-media@vger.kernel.org
4718 W:      http://linuxtv.org/
4719 W:      http://palosaari.fi/linux/
4720 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4721 T:      git git://linuxtv.org/anttip/media_tree.git
4722 S:      Maintained
4723 F:      drivers/media/usb/hackrf/
4724
4725 HARDWARE MONITORING
4726 M:      Jean Delvare <jdelvare@suse.com>
4727 M:      Guenter Roeck <linux@roeck-us.net>
4728 L:      lm-sensors@lm-sensors.org
4729 W:      http://www.lm-sensors.org/
4730 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4732 S:      Maintained
4733 F:      Documentation/hwmon/
4734 F:      drivers/hwmon/
4735 F:      include/linux/hwmon*.h
4736
4737 HARDWARE RANDOM NUMBER GENERATOR CORE
4738 M:      Matt Mackall <mpm@selenic.com>
4739 M:      Herbert Xu <herbert@gondor.apana.org.au>
4740 L:      linux-crypto@vger.kernel.org
4741 S:      Odd fixes
4742 F:      Documentation/hw_random.txt
4743 F:      drivers/char/hw_random/
4744 F:      include/linux/hw_random.h
4745
4746 HARDWARE SPINLOCK CORE
4747 M:      Ohad Ben-Cohen <ohad@wizery.com>
4748 S:      Maintained
4749 F:      Documentation/hwspinlock.txt
4750 F:      drivers/hwspinlock/hwspinlock_*
4751 F:      include/linux/hwspinlock.h
4752
4753 HARMONY SOUND DRIVER
4754 L:      linux-parisc@vger.kernel.org
4755 S:      Maintained
4756 F:      sound/parisc/harmony.*
4757
4758 HD29L2 MEDIA DRIVER
4759 M:      Antti Palosaari <crope@iki.fi>
4760 L:      linux-media@vger.kernel.org
4761 W:      http://linuxtv.org/
4762 W:      http://palosaari.fi/linux/
4763 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4764 T:      git git://linuxtv.org/anttip/media_tree.git
4765 S:      Maintained
4766 F:      drivers/media/dvb-frontends/hd29l2*
4767
4768 HEWLETT-PACKARD SMART2 RAID DRIVER
4769 L:      iss_storagedev@hp.com
4770 S:      Orphan
4771 F:      Documentation/blockdev/cpqarray.txt
4772 F:      drivers/block/cpqarray.*
4773
4774 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4775 M:      Don Brace <don.brace@pmcs.com>
4776 L:      iss_storagedev@hp.com
4777 L:      storagedev@pmcs.com
4778 L:      linux-scsi@vger.kernel.org
4779 S:      Supported
4780 F:      Documentation/scsi/hpsa.txt
4781 F:      drivers/scsi/hpsa*.[ch]
4782 F:      include/linux/cciss*.h
4783 F:      include/uapi/linux/cciss*.h
4784
4785 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4786 M:      Don Brace <don.brace@pmcs.com>
4787 L:      iss_storagedev@hp.com
4788 L:      storagedev@pmcs.com
4789 L:      linux-scsi@vger.kernel.org
4790 S:      Supported
4791 F:      Documentation/blockdev/cciss.txt
4792 F:      drivers/block/cciss*
4793 F:      include/linux/cciss_ioctl.h
4794 F:      include/uapi/linux/cciss_ioctl.h
4795
4796 HFS FILESYSTEM
4797 L:      linux-fsdevel@vger.kernel.org
4798 S:      Orphan
4799 F:      Documentation/filesystems/hfs.txt
4800 F:      fs/hfs/
4801
4802 HFSPLUS FILESYSTEM
4803 L:      linux-fsdevel@vger.kernel.org
4804 S:      Orphan
4805 F:      Documentation/filesystems/hfsplus.txt
4806 F:      fs/hfsplus/
4807
4808 HGA FRAMEBUFFER DRIVER
4809 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4810 L:      linux-nvidia@lists.surfsouth.com
4811 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4812 S:      Maintained
4813 F:      drivers/video/fbdev/hgafb.c
4814
4815 HIBERNATION (aka Software Suspend, aka swsusp)
4816 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4817 M:      Pavel Machek <pavel@ucw.cz>
4818 L:      linux-pm@vger.kernel.org
4819 S:      Supported
4820 F:      arch/x86/power/
4821 F:      drivers/base/power/
4822 F:      kernel/power/
4823 F:      include/linux/suspend.h
4824 F:      include/linux/freezer.h
4825 F:      include/linux/pm.h
4826 F:      arch/*/include/asm/suspend*.h
4827
4828 HID CORE LAYER
4829 M:      Jiri Kosina <jikos@kernel.org>
4830 L:      linux-input@vger.kernel.org
4831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4832 S:      Maintained
4833 F:      drivers/hid/
4834 F:      include/linux/hid*
4835 F:      include/uapi/linux/hid*
4836
4837 HID SENSOR HUB DRIVERS
4838 M:      Jiri Kosina <jikos@kernel.org>
4839 M:      Jonathan Cameron <jic23@kernel.org>
4840 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4841 L:      linux-input@vger.kernel.org
4842 L:      linux-iio@vger.kernel.org
4843 S:      Maintained
4844 F:      Documentation/hid/hid-sensor*
4845 F:      drivers/hid/hid-sensor-*
4846 F:      drivers/iio/*/hid-*
4847 F:      include/linux/hid-sensor-*
4848
4849 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4850 M:      Thomas Gleixner <tglx@linutronix.de>
4851 L:      linux-kernel@vger.kernel.org
4852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4853 S:      Maintained
4854 F:      Documentation/timers/
4855 F:      kernel/time/hrtimer.c
4856 F:      kernel/time/clockevents.c
4857 F:      kernel/time/tick*.*
4858 F:      kernel/time/timer_*.c
4859 F:      include/linux/clockchips.h
4860 F:      include/linux/hrtimer.h
4861
4862 HIGH-SPEED SCC DRIVER FOR AX.25
4863 L:      linux-hams@vger.kernel.org
4864 S:      Orphan
4865 F:      drivers/net/hamradio/dmascc.c
4866 F:      drivers/net/hamradio/scc.c
4867
4868 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4869 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4870 W:      http://www.highpoint-tech.com
4871 S:      Supported
4872 F:      Documentation/scsi/hptiop.txt
4873 F:      drivers/scsi/hptiop.c
4874
4875 HIPPI
4876 M:      Jes Sorensen <jes@trained-monkey.org>
4877 L:      linux-hippi@sunsite.dk
4878 S:      Maintained
4879 F:      include/linux/hippidevice.h
4880 F:      include/uapi/linux/if_hippi.h
4881 F:      net/802/hippi.c
4882 F:      drivers/net/hippi/
4883
4884 HOST AP DRIVER
4885 M:      Jouni Malinen <j@w1.fi>
4886 L:      hostap@shmoo.com (subscribers-only)
4887 L:      linux-wireless@vger.kernel.org
4888 W:      http://hostap.epitest.fi/
4889 S:      Maintained
4890 F:      drivers/net/wireless/hostap/
4891
4892 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4893 L:      platform-driver-x86@vger.kernel.org
4894 S:      Orphan
4895 F:      drivers/platform/x86/tc1100-wmi.c
4896
4897 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4898 M:      Jaroslav Kysela <perex@perex.cz>
4899 S:      Maintained
4900 F:      drivers/net/ethernet/hp/hp100.*
4901
4902 HPET:   High Precision Event Timers driver
4903 M:      Clemens Ladisch <clemens@ladisch.de>
4904 S:      Maintained
4905 F:      Documentation/timers/hpet.txt
4906 F:      drivers/char/hpet.c
4907 F:      include/linux/hpet.h
4908 F:      include/uapi/linux/hpet.h
4909
4910 HPET:   x86
4911 S:      Orphan
4912 F:      arch/x86/kernel/hpet.c
4913 F:      arch/x86/include/asm/hpet.h
4914
4915 HPFS FILESYSTEM
4916 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4917 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4918 S:      Maintained
4919 F:      fs/hpfs/
4920
4921 HSI SUBSYSTEM
4922 M:      Sebastian Reichel <sre@kernel.org>
4923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4924 S:      Maintained
4925 F:      Documentation/ABI/testing/sysfs-bus-hsi
4926 F:      Documentation/hsi.txt
4927 F:      drivers/hsi/
4928 F:      include/linux/hsi/
4929 F:      include/uapi/linux/hsi/
4930
4931 HSO 3G MODEM DRIVER
4932 M:      Jan Dumon <j.dumon@option.com>
4933 W:      http://www.pharscape.org
4934 S:      Maintained
4935 F:      drivers/net/usb/hso.c
4936
4937 HSR NETWORK PROTOCOL
4938 M:      Arvid Brodin <arvid.brodin@alten.se>
4939 L:      netdev@vger.kernel.org
4940 S:      Maintained
4941 F:      net/hsr/
4942
4943 HTCPEN TOUCHSCREEN DRIVER
4944 M:      Pau Oliva Fora <pof@eslack.org>
4945 L:      linux-input@vger.kernel.org
4946 S:      Maintained
4947 F:      drivers/input/touchscreen/htcpen.c
4948
4949 HUGETLB FILESYSTEM
4950 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
4951 S:      Maintained
4952 F:      fs/hugetlbfs/
4953
4954 Hyper-V CORE AND DRIVERS
4955 M:      "K. Y. Srinivasan" <kys@microsoft.com>
4956 M:      Haiyang Zhang <haiyangz@microsoft.com>
4957 L:      devel@linuxdriverproject.org
4958 S:      Maintained
4959 F:      arch/x86/include/asm/mshyperv.h
4960 F:      arch/x86/include/uapi/asm/hyperv.h
4961 F:      arch/x86/kernel/cpu/mshyperv.c
4962 F:      drivers/hid/hid-hyperv.c
4963 F:      drivers/hv/
4964 F:      drivers/input/serio/hyperv-keyboard.c
4965 F:      drivers/net/hyperv/
4966 F:      drivers/scsi/storvsc_drv.c
4967 F:      drivers/video/fbdev/hyperv_fb.c
4968 F:      include/linux/hyperv.h
4969 F:      tools/hv/
4970 F:      Documentation/ABI/stable/sysfs-bus-vmbus
4971
4972 I2C OVER PARALLEL PORT
4973 M:      Jean Delvare <jdelvare@suse.com>
4974 L:      linux-i2c@vger.kernel.org
4975 S:      Maintained
4976 F:      Documentation/i2c/busses/i2c-parport
4977 F:      Documentation/i2c/busses/i2c-parport-light
4978 F:      drivers/i2c/busses/i2c-parport.c
4979 F:      drivers/i2c/busses/i2c-parport-light.c
4980
4981 I2C/SMBUS CONTROLLER DRIVERS FOR PC
4982 M:      Jean Delvare <jdelvare@suse.com>
4983 L:      linux-i2c@vger.kernel.org
4984 S:      Maintained
4985 F:      Documentation/i2c/busses/i2c-ali1535
4986 F:      Documentation/i2c/busses/i2c-ali1563
4987 F:      Documentation/i2c/busses/i2c-ali15x3
4988 F:      Documentation/i2c/busses/i2c-amd756
4989 F:      Documentation/i2c/busses/i2c-amd8111
4990 F:      Documentation/i2c/busses/i2c-i801
4991 F:      Documentation/i2c/busses/i2c-nforce2
4992 F:      Documentation/i2c/busses/i2c-piix4
4993 F:      Documentation/i2c/busses/i2c-sis5595
4994 F:      Documentation/i2c/busses/i2c-sis630
4995 F:      Documentation/i2c/busses/i2c-sis96x
4996 F:      Documentation/i2c/busses/i2c-via
4997 F:      Documentation/i2c/busses/i2c-viapro
4998 F:      drivers/i2c/busses/i2c-ali1535.c
4999 F:      drivers/i2c/busses/i2c-ali1563.c
5000 F:      drivers/i2c/busses/i2c-ali15x3.c
5001 F:      drivers/i2c/busses/i2c-amd756.c
5002 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5003 F:      drivers/i2c/busses/i2c-amd8111.c
5004 F:      drivers/i2c/busses/i2c-i801.c
5005 F:      drivers/i2c/busses/i2c-isch.c
5006 F:      drivers/i2c/busses/i2c-nforce2.c
5007 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5008 F:      drivers/i2c/busses/i2c-piix4.c
5009 F:      drivers/i2c/busses/i2c-sis5595.c
5010 F:      drivers/i2c/busses/i2c-sis630.c
5011 F:      drivers/i2c/busses/i2c-sis96x.c
5012 F:      drivers/i2c/busses/i2c-via.c
5013 F:      drivers/i2c/busses/i2c-viapro.c
5014
5015 I2C/SMBUS ISMT DRIVER
5016 M:      Seth Heasley <seth.heasley@intel.com>
5017 M:      Neil Horman <nhorman@tuxdriver.com>
5018 L:      linux-i2c@vger.kernel.org
5019 F:      drivers/i2c/busses/i2c-ismt.c
5020 F:      Documentation/i2c/busses/i2c-ismt
5021
5022 I2C/SMBUS STUB DRIVER
5023 M:      Jean Delvare <jdelvare@suse.com>
5024 L:      linux-i2c@vger.kernel.org
5025 S:      Maintained
5026 F:      drivers/i2c/i2c-stub.c
5027
5028 I2C SUBSYSTEM
5029 M:      Wolfram Sang <wsa@the-dreams.de>
5030 L:      linux-i2c@vger.kernel.org
5031 W:      https://i2c.wiki.kernel.org/
5032 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5034 S:      Maintained
5035 F:      Documentation/devicetree/bindings/i2c/
5036 F:      Documentation/i2c/
5037 F:      drivers/i2c/
5038 F:      include/linux/i2c.h
5039 F:      include/linux/i2c-*.h
5040 F:      include/uapi/linux/i2c.h
5041 F:      include/uapi/linux/i2c-*.h
5042
5043 I2C ACPI SUPPORT
5044 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5045 L:      linux-i2c@vger.kernel.org
5046 L:      linux-acpi@vger.kernel.org
5047 S:      Maintained
5048
5049 I2C-TAOS-EVM DRIVER
5050 M:      Jean Delvare <jdelvare@suse.com>
5051 L:      linux-i2c@vger.kernel.org
5052 S:      Maintained
5053 F:      Documentation/i2c/busses/i2c-taos-evm
5054 F:      drivers/i2c/busses/i2c-taos-evm.c
5055
5056 I2C-TINY-USB DRIVER
5057 M:      Till Harbaum <till@harbaum.org>
5058 L:      linux-i2c@vger.kernel.org
5059 W:      http://www.harbaum.org/till/i2c_tiny_usb
5060 S:      Maintained
5061 F:      drivers/i2c/busses/i2c-tiny-usb.c
5062
5063 i386 BOOT CODE
5064 M:      "H. Peter Anvin" <hpa@zytor.com>
5065 S:      Maintained
5066 F:      arch/x86/boot/
5067
5068 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5069 M:      "H. Peter Anvin" <hpa@zytor.com>
5070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5071 S:      Maintained
5072
5073 IA64 (Itanium) PLATFORM
5074 M:      Tony Luck <tony.luck@intel.com>
5075 M:      Fenghua Yu <fenghua.yu@intel.com>
5076 L:      linux-ia64@vger.kernel.org
5077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5078 S:      Maintained
5079 F:      arch/ia64/
5080
5081 IBM Power VMX Cryptographic instructions
5082 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5083 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5084 L:      linux-crypto@vger.kernel.org
5085 S:      Supported
5086 F:      drivers/crypto/vmx/Makefile
5087 F:      drivers/crypto/vmx/Kconfig
5088 F:      drivers/crypto/vmx/vmx.c
5089 F:      drivers/crypto/vmx/aes*
5090 F:      drivers/crypto/vmx/ghash*
5091 F:      drivers/crypto/vmx/ppc-xlate.pl
5092
5093 IBM Power in-Nest Crypto Acceleration
5094 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5095 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5096 L:      linux-crypto@vger.kernel.org
5097 S:      Supported
5098 F:      drivers/crypto/nx/Makefile
5099 F:      drivers/crypto/nx/Kconfig
5100 F:      drivers/crypto/nx/nx-aes*
5101 F:      drivers/crypto/nx/nx-sha*
5102 F:      drivers/crypto/nx/nx.*
5103 F:      drivers/crypto/nx/nx_csbcpb.h
5104 F:      drivers/crypto/nx/nx_debugfs.h
5105
5106 IBM Power 842 compression accelerator
5107 M:      Dan Streetman <ddstreet@ieee.org>
5108 S:      Supported
5109 F:      drivers/crypto/nx/Makefile
5110 F:      drivers/crypto/nx/Kconfig
5111 F:      drivers/crypto/nx/nx-842*
5112 F:      include/linux/sw842.h
5113 F:      crypto/842.c
5114 F:      lib/842/
5115
5116 IBM Power Linux RAID adapter
5117 M:      Brian King <brking@us.ibm.com>
5118 S:      Supported
5119 F:      drivers/scsi/ipr.*
5120
5121 IBM Power Virtual Ethernet Device Driver
5122 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5123 L:      netdev@vger.kernel.org
5124 S:      Supported
5125 F:      drivers/net/ethernet/ibm/ibmveth.*
5126
5127 IBM Power Virtual SCSI Device Drivers
5128 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5129 L:      linux-scsi@vger.kernel.org
5130 S:      Supported
5131 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5132 F:      drivers/scsi/ibmvscsi/viosrp.h
5133
5134 IBM Power Virtual FC Device Drivers
5135 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5136 L:      linux-scsi@vger.kernel.org
5137 S:      Supported
5138 F:      drivers/scsi/ibmvscsi/ibmvfc*
5139
5140 IBM ServeRAID RAID DRIVER
5141 S:      Orphan
5142 F:      drivers/scsi/ips.*
5143
5144 ICH LPC AND GPIO DRIVER
5145 M:      Peter Tyser <ptyser@xes-inc.com>
5146 S:      Maintained
5147 F:      drivers/mfd/lpc_ich.c
5148 F:      drivers/gpio/gpio-ich.c
5149
5150 IDE SUBSYSTEM
5151 M:      "David S. Miller" <davem@davemloft.net>
5152 L:      linux-ide@vger.kernel.org
5153 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5155 S:      Maintained
5156 F:      Documentation/ide/
5157 F:      drivers/ide/
5158 F:      include/linux/ide.h
5159
5160 IDEAPAD LAPTOP EXTRAS DRIVER
5161 M:      Ike Panhc <ike.pan@canonical.com>
5162 L:      platform-driver-x86@vger.kernel.org
5163 W:      http://launchpad.net/ideapad-laptop
5164 S:      Maintained
5165 F:      drivers/platform/x86/ideapad-laptop.c
5166
5167 IDEAPAD LAPTOP SLIDEBAR DRIVER
5168 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5169 L:      linux-input@vger.kernel.org
5170 W:      https://github.com/o2genum/ideapad-slidebar
5171 S:      Maintained
5172 F:      drivers/input/misc/ideapad_slidebar.c
5173
5174 IDE/ATAPI DRIVERS
5175 M:      Borislav Petkov <bp@alien8.de>
5176 L:      linux-ide@vger.kernel.org
5177 S:      Maintained
5178 F:      Documentation/cdrom/ide-cd
5179 F:      drivers/ide/ide-cd*
5180
5181 IDLE-I7300
5182 M:      Andy Henroid <andrew.d.henroid@intel.com>
5183 L:      linux-pm@vger.kernel.org
5184 S:      Supported
5185 F:      drivers/idle/i7300_idle.c
5186
5187 IEEE 802.15.4 SUBSYSTEM
5188 M:      Alexander Aring <alex.aring@gmail.com>
5189 L:      linux-wpan@vger.kernel.org
5190 W:      https://github.com/linux-wpan
5191 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5192 S:      Maintained
5193 F:      net/ieee802154/
5194 F:      net/mac802154/
5195 F:      drivers/net/ieee802154/
5196 F:      include/linux/nl802154.h
5197 F:      include/linux/ieee802154.h
5198 F:      include/net/nl802154.h
5199 F:      include/net/mac802154.h
5200 F:      include/net/af_ieee802154.h
5201 F:      include/net/cfg802154.h
5202 F:      include/net/ieee802154_netdev.h
5203 F:      Documentation/networking/ieee802154.txt
5204
5205 IGORPLUG-USB IR RECEIVER
5206 M:      Sean Young <sean@mess.org>
5207 L:      linux-media@vger.kernel.org
5208 S:      Maintained
5209 F:      drivers/media/rc/igorplugusb.c
5210
5211 IGUANAWORKS USB IR TRANSCEIVER
5212 M:      Sean Young <sean@mess.org>
5213 L:      linux-media@vger.kernel.org
5214 S:      Maintained
5215 F:      drivers/media/rc/iguanair.c
5216
5217 IIO SUBSYSTEM AND DRIVERS
5218 M:      Jonathan Cameron <jic23@kernel.org>
5219 R:      Hartmut Knaack <knaack.h@gmx.de>
5220 R:      Lars-Peter Clausen <lars@metafoo.de>
5221 R:      Peter Meerwald <pmeerw@pmeerw.net>
5222 L:      linux-iio@vger.kernel.org
5223 S:      Maintained
5224 F:      drivers/iio/
5225 F:      drivers/staging/iio/
5226 F:      include/linux/iio/
5227 F:      tools/iio/
5228
5229 IKANOS/ADI EAGLE ADSL USB DRIVER
5230 M:      Matthieu Castet <castet.matthieu@free.fr>
5231 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5232 S:      Maintained
5233 F:      drivers/usb/atm/ueagle-atm.c
5234
5235 INA209 HARDWARE MONITOR DRIVER
5236 M:      Guenter Roeck <linux@roeck-us.net>
5237 L:      lm-sensors@lm-sensors.org
5238 S:      Maintained
5239 F:      Documentation/hwmon/ina209
5240 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5241 F:      drivers/hwmon/ina209.c
5242
5243 INA2XX HARDWARE MONITOR DRIVER
5244 M:      Guenter Roeck <linux@roeck-us.net>
5245 L:      lm-sensors@lm-sensors.org
5246 S:      Maintained
5247 F:      Documentation/hwmon/ina2xx
5248 F:      drivers/hwmon/ina2xx.c
5249 F:      include/linux/platform_data/ina2xx.h
5250
5251 INDUSTRY PACK SUBSYSTEM (IPACK)
5252 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5253 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5254 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5255 L:      industrypack-devel@lists.sourceforge.net
5256 W:      http://industrypack.sourceforge.net
5257 S:      Maintained
5258 F:      drivers/ipack/
5259
5260 INGENIC JZ4780 DMA Driver
5261 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5262 S:      Maintained
5263 F:      drivers/dma/dma-jz4780.c
5264
5265 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5266 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5267 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5268 L:      linux-ima-devel@lists.sourceforge.net
5269 L:      linux-ima-user@lists.sourceforge.net
5270 L:      linux-security-module@vger.kernel.org
5271 S:      Supported
5272 F:      security/integrity/ima/
5273
5274 IMGTEC IR DECODER DRIVER
5275 M:      James Hogan <james.hogan@imgtec.com>
5276 S:      Maintained
5277 F:      drivers/media/rc/img-ir/
5278
5279 IMS TWINTURBO FRAMEBUFFER DRIVER
5280 L:      linux-fbdev@vger.kernel.org
5281 S:      Orphan
5282 F:      drivers/video/fbdev/imsttfb.c
5283
5284 INFINIBAND SUBSYSTEM
5285 M:      Doug Ledford <dledford@redhat.com>
5286 M:      Sean Hefty <sean.hefty@intel.com>
5287 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5288 L:      linux-rdma@vger.kernel.org
5289 W:      http://www.openfabrics.org/
5290 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5292 S:      Supported
5293 F:      Documentation/infiniband/
5294 F:      drivers/infiniband/
5295 F:      include/uapi/linux/if_infiniband.h
5296 F:      include/uapi/rdma/
5297 F:      include/rdma/
5298
5299 INOTIFY
5300 M:      John McCutchan <john@johnmccutchan.com>
5301 M:      Robert Love <rlove@rlove.org>
5302 M:      Eric Paris <eparis@parisplace.org>
5303 S:      Maintained
5304 F:      Documentation/filesystems/inotify.txt
5305 F:      fs/notify/inotify/
5306 F:      include/linux/inotify.h
5307 F:      include/uapi/linux/inotify.h
5308
5309 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5310 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5311 L:      linux-input@vger.kernel.org
5312 Q:      http://patchwork.kernel.org/project/linux-input/list/
5313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5314 S:      Maintained
5315 F:      drivers/input/
5316 F:      include/linux/input.h
5317 F:      include/uapi/linux/input.h
5318 F:      include/linux/input/
5319
5320 INPUT MULTITOUCH (MT) PROTOCOL
5321 M:      Henrik Rydberg <rydberg@bitmath.org>
5322 L:      linux-input@vger.kernel.org
5323 S:      Odd fixes
5324 F:      Documentation/input/multi-touch-protocol.txt
5325 F:      drivers/input/input-mt.c
5326 K:      \b(ABS|SYN)_MT_
5327
5328 INTEL ASoC BDW/HSW DRIVERS
5329 M:      Jie Yang <yang.jie@linux.intel.com>
5330 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5331 S:      Supported
5332 F:      sound/soc/intel/common/sst-dsp*
5333 F:      sound/soc/intel/common/sst-firmware.c
5334 F:      sound/soc/intel/boards/broadwell.c
5335 F:      sound/soc/intel/haswell/
5336
5337 INTEL C600 SERIES SAS CONTROLLER DRIVER
5338 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5339 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5340 L:      linux-scsi@vger.kernel.org
5341 T:      git git://git.code.sf.net/p/intel-sas/isci
5342 S:      Supported
5343 F:      drivers/scsi/isci/
5344
5345 INTEL IDLE DRIVER
5346 M:      Len Brown <lenb@kernel.org>
5347 L:      linux-pm@vger.kernel.org
5348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5349 S:      Supported
5350 F:      drivers/idle/intel_idle.c
5351
5352 INTEL PSTATE DRIVER
5353 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5354 L:      linux-pm@vger.kernel.org
5355 S:      Supported
5356 F:      drivers/cpufreq/intel_pstate.c
5357
5358 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5359 M:      Maik Broemme <mbroemme@plusserver.de>
5360 L:      linux-fbdev@vger.kernel.org
5361 S:      Maintained
5362 F:      Documentation/fb/intelfb.txt
5363 F:      drivers/video/fbdev/intelfb/
5364
5365 INTEL 810/815 FRAMEBUFFER DRIVER
5366 M:      Antonino Daplas <adaplas@gmail.com>
5367 L:      linux-fbdev@vger.kernel.org
5368 S:      Maintained
5369 F:      drivers/video/fbdev/i810/
5370
5371 INTEL MENLOW THERMAL DRIVER
5372 M:      Sujith Thomas <sujith.thomas@intel.com>
5373 L:      platform-driver-x86@vger.kernel.org
5374 W:      https://01.org/linux-acpi
5375 S:      Supported
5376 F:      drivers/platform/x86/intel_menlow.c
5377
5378 INTEL IA32 MICROCODE UPDATE SUPPORT
5379 M:      Borislav Petkov <bp@alien8.de>
5380 S:      Maintained
5381 F:      arch/x86/kernel/cpu/microcode/core*
5382 F:      arch/x86/kernel/cpu/microcode/intel*
5383
5384 INTEL I/OAT DMA DRIVER
5385 M:      Dave Jiang <dave.jiang@intel.com>
5386 R:      Dan Williams <dan.j.williams@intel.com>
5387 L:      dmaengine@vger.kernel.org
5388 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5389 S:      Supported
5390 F:      drivers/dma/ioat*
5391
5392 INTEL IOMMU (VT-d)
5393 M:      David Woodhouse <dwmw2@infradead.org>
5394 L:      iommu@lists.linux-foundation.org
5395 T:      git git://git.infradead.org/iommu-2.6.git
5396 S:      Supported
5397 F:      drivers/iommu/intel-iommu.c
5398 F:      include/linux/intel-iommu.h
5399
5400 INTEL IOP-ADMA DMA DRIVER
5401 R:      Dan Williams <dan.j.williams@intel.com>
5402 S:      Odd fixes
5403 F:      drivers/dma/iop-adma.c
5404
5405 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5406 M:      Krzysztof Halasa <khalasa@piap.pl>
5407 S:      Maintained
5408 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5409 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5410 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5411 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5412 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5413 F:      drivers/net/wan/ixp4xx_hss.c
5414
5415 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5416 M:      Deepak Saxena <dsaxena@plexity.net>
5417 S:      Maintained
5418 F:      drivers/char/hw_random/ixp4xx-rng.c
5419
5420 INTEL ETHERNET DRIVERS
5421 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5422 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5423 R:      Shannon Nelson <shannon.nelson@intel.com>
5424 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5425 R:      Don Skidmore <donald.c.skidmore@intel.com>
5426 R:      Matthew Vick <matthew.vick@intel.com>
5427 R:      John Ronciak <john.ronciak@intel.com>
5428 R:      Mitch Williams <mitch.a.williams@intel.com>
5429 L:      intel-wired-lan@lists.osuosl.org
5430 W:      http://www.intel.com/support/feedback.htm
5431 W:      http://e1000.sourceforge.net/
5432 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5435 S:      Supported
5436 F:      Documentation/networking/e100.txt
5437 F:      Documentation/networking/e1000.txt
5438 F:      Documentation/networking/e1000e.txt
5439 F:      Documentation/networking/igb.txt
5440 F:      Documentation/networking/igbvf.txt
5441 F:      Documentation/networking/ixgb.txt
5442 F:      Documentation/networking/ixgbe.txt
5443 F:      Documentation/networking/ixgbevf.txt
5444 F:      Documentation/networking/i40e.txt
5445 F:      Documentation/networking/i40evf.txt
5446 F:      drivers/net/ethernet/intel/
5447 F:      drivers/net/ethernet/intel/*/
5448
5449 INTEL-MID GPIO DRIVER
5450 M:      David Cohen <david.a.cohen@linux.intel.com>
5451 L:      linux-gpio@vger.kernel.org
5452 S:      Maintained
5453 F:      drivers/gpio/gpio-intel-mid.c
5454
5455 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5456 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5457 L:      linux-wireless@vger.kernel.org
5458 S:      Maintained
5459 F:      Documentation/networking/README.ipw2100
5460 F:      Documentation/networking/README.ipw2200
5461 F:      drivers/net/wireless/ipw2x00/
5462
5463 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5464 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5465 M:      Gang Wei <gang.wei@intel.com>
5466 M:      Shane Wang <shane.wang@intel.com>
5467 L:      tboot-devel@lists.sourceforge.net
5468 W:      http://tboot.sourceforge.net
5469 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5470 S:      Supported
5471 F:      Documentation/intel_txt.txt
5472 F:      include/linux/tboot.h
5473 F:      arch/x86/kernel/tboot.c
5474
5475 INTEL WIRELESS WIMAX CONNECTION 2400
5476 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5477 M:      linux-wimax@intel.com
5478 L:      wimax@linuxwimax.org (subscribers-only)
5479 S:      Supported
5480 W:      http://linuxwimax.org
5481 F:      Documentation/wimax/README.i2400m
5482 F:      drivers/net/wimax/i2400m/
5483 F:      include/uapi/linux/wimax/i2400m.h
5484
5485 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5486 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5487 L:      linux-wireless@vger.kernel.org
5488 S:      Supported
5489 F:      drivers/net/wireless/iwlegacy/
5490
5491 INTEL WIRELESS WIFI LINK (iwlwifi)
5492 M:      Johannes Berg <johannes.berg@intel.com>
5493 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5494 M:      Intel Linux Wireless <ilw@linux.intel.com>
5495 L:      linux-wireless@vger.kernel.org
5496 W:      http://intellinuxwireless.org
5497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5498 S:      Supported
5499 F:      drivers/net/wireless/iwlwifi/
5500
5501 INTEL MANAGEMENT ENGINE (mei)
5502 M:      Tomas Winkler <tomas.winkler@intel.com>
5503 L:      linux-kernel@vger.kernel.org
5504 S:      Supported
5505 F:      include/uapi/linux/mei.h
5506 F:      include/linux/mei_cl_bus.h
5507 F:      drivers/misc/mei/*
5508 F:      Documentation/misc-devices/mei/*
5509
5510 INTEL PMC IPC DRIVER
5511 M:      Zha Qipeng<qipeng.zha@intel.com>
5512 L:      platform-driver-x86@vger.kernel.org
5513 S:      Maintained
5514 F:      drivers/platform/x86/intel_pmc_ipc.c
5515 F:      arch/x86/include/asm/intel_pmc_ipc.h
5516
5517 IOC3 ETHERNET DRIVER
5518 M:      Ralf Baechle <ralf@linux-mips.org>
5519 L:      linux-mips@linux-mips.org
5520 S:      Maintained
5521 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5522
5523 IOC3 SERIAL DRIVER
5524 M:      Pat Gefre <pfg@sgi.com>
5525 L:      linux-serial@vger.kernel.org
5526 S:      Maintained
5527 F:      drivers/tty/serial/ioc3_serial.c
5528
5529 IOMMU DRIVERS
5530 M:      Joerg Roedel <joro@8bytes.org>
5531 L:      iommu@lists.linux-foundation.org
5532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5533 S:      Maintained
5534 F:      drivers/iommu/
5535
5536 IP MASQUERADING
5537 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5538 S:      Maintained
5539 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5540
5541 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5542 M:      Francois Romieu <romieu@fr.zoreil.com>
5543 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5544 L:      netdev@vger.kernel.org
5545 S:      Maintained
5546 F:      drivers/net/ethernet/icplus/ipg.*
5547
5548 IPATH DRIVER
5549 M:      Mike Marciniszyn <infinipath@intel.com>
5550 L:      linux-rdma@vger.kernel.org
5551 S:      Maintained
5552 F:      drivers/infiniband/hw/ipath/
5553
5554 IPMI SUBSYSTEM
5555 M:      Corey Minyard <minyard@acm.org>
5556 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5557 W:      http://openipmi.sourceforge.net/
5558 S:      Supported
5559 F:      Documentation/IPMI.txt
5560 F:      drivers/char/ipmi/
5561 F:      include/linux/ipmi*
5562 F:      include/uapi/linux/ipmi*
5563
5564 QCOM AUDIO (ASoC) DRIVERS
5565 M:      Patrick Lai <plai@codeaurora.org>
5566 M:      Banajit Goswami <bgoswami@codeaurora.org>
5567 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5568 S:      Supported
5569 F:      sound/soc/qcom/
5570
5571 IPS SCSI RAID DRIVER
5572 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5573 L:      linux-scsi@vger.kernel.org
5574 W:      http://www.adaptec.com/
5575 S:      Maintained
5576 F:      drivers/scsi/ips*
5577
5578 IPVS
5579 M:      Wensong Zhang <wensong@linux-vs.org>
5580 M:      Simon Horman <horms@verge.net.au>
5581 M:      Julian Anastasov <ja@ssi.bg>
5582 L:      netdev@vger.kernel.org
5583 L:      lvs-devel@vger.kernel.org
5584 S:      Maintained
5585 F:      Documentation/networking/ipvs-sysctl.txt
5586 F:      include/net/ip_vs.h
5587 F:      include/uapi/linux/ip_vs.h
5588 F:      net/netfilter/ipvs/
5589
5590 IPWIRELESS DRIVER
5591 M:      Jiri Kosina <jikos@kernel.org>
5592 M:      David Sterba <dsterba@suse.com>
5593 S:      Odd Fixes
5594 F:      drivers/tty/ipwireless/
5595
5596 IPX NETWORK LAYER
5597 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5598 L:      netdev@vger.kernel.org
5599 S:      Maintained
5600 F:      include/net/ipx.h
5601 F:      include/uapi/linux/ipx.h
5602 F:      net/ipx/
5603
5604 IRDA SUBSYSTEM
5605 M:      Samuel Ortiz <samuel@sortiz.org>
5606 L:      irda-users@lists.sourceforge.net (subscribers-only)
5607 L:      netdev@vger.kernel.org
5608 W:      http://irda.sourceforge.net/
5609 S:      Maintained
5610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5611 F:      Documentation/networking/irda.txt
5612 F:      drivers/net/irda/
5613 F:      include/net/irda/
5614 F:      net/irda/
5615
5616 IRQ SUBSYSTEM
5617 M:      Thomas Gleixner <tglx@linutronix.de>
5618 L:      linux-kernel@vger.kernel.org
5619 S:      Maintained
5620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5621 F:      kernel/irq/
5622
5623 IRQCHIP DRIVERS
5624 M:      Thomas Gleixner <tglx@linutronix.de>
5625 M:      Jason Cooper <jason@lakedaemon.net>
5626 M:      Marc Zyngier <marc.zyngier@arm.com>
5627 L:      linux-kernel@vger.kernel.org
5628 S:      Maintained
5629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5630 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5631 F:      Documentation/devicetree/bindings/interrupt-controller/
5632 F:      drivers/irqchip/
5633
5634 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5635 M:      Jiang Liu <jiang.liu@linux.intel.com>
5636 M:      Marc Zyngier <marc.zyngier@arm.com>
5637 S:      Maintained
5638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5639 F:      Documentation/IRQ-domain.txt
5640 F:      include/linux/irqdomain.h
5641 F:      kernel/irq/irqdomain.c
5642 F:      kernel/irq/msi.c
5643
5644 ISAPNP
5645 M:      Jaroslav Kysela <perex@perex.cz>
5646 S:      Maintained
5647 F:      Documentation/isapnp.txt
5648 F:      drivers/pnp/isapnp/
5649 F:      include/linux/isapnp.h
5650
5651 ISA RADIO MODULE
5652 M:      Hans Verkuil <hverkuil@xs4all.nl>
5653 L:      linux-media@vger.kernel.org
5654 T:      git git://linuxtv.org/media_tree.git
5655 W:      http://linuxtv.org
5656 S:      Maintained
5657 F:      drivers/media/radio/radio-isa*
5658
5659 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5660 M:      Peter Jones <pjones@redhat.com>
5661 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5662 S:      Maintained
5663 F:      drivers/firmware/iscsi_ibft*
5664
5665 ISCSI
5666 M:      Mike Christie <michaelc@cs.wisc.edu>
5667 L:      open-iscsi@googlegroups.com
5668 W:      www.open-iscsi.org
5669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5670 S:      Maintained
5671 F:      drivers/scsi/*iscsi*
5672 F:      include/scsi/*iscsi*
5673
5674 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5675 M:      Or Gerlitz <ogerlitz@mellanox.com>
5676 M:      Sagi Grimberg <sagig@mellanox.com>
5677 M:      Roi Dayan <roid@mellanox.com>
5678 L:      linux-rdma@vger.kernel.org
5679 S:      Supported
5680 W:      http://www.openfabrics.org
5681 W:      www.open-iscsi.org
5682 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5683 F:      drivers/infiniband/ulp/iser/
5684
5685 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5686 M:      Sagi Grimberg <sagig@mellanox.com>
5687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5688 L:      linux-rdma@vger.kernel.org
5689 L:      target-devel@vger.kernel.org
5690 S:      Supported
5691 W:      http://www.linux-iscsi.org
5692 F:      drivers/infiniband/ulp/isert
5693
5694 ISDN SUBSYSTEM
5695 M:      Karsten Keil <isdn@linux-pingi.de>
5696 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5697 L:      netdev@vger.kernel.org
5698 W:      http://www.isdn4linux.de
5699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5700 S:      Maintained
5701 F:      Documentation/isdn/
5702 F:      drivers/isdn/
5703 F:      include/linux/isdn.h
5704 F:      include/linux/isdn/
5705 F:      include/uapi/linux/isdn.h
5706 F:      include/uapi/linux/isdn/
5707
5708 ISDN SUBSYSTEM (Eicon active card driver)
5709 M:      Armin Schindler <mac@melware.de>
5710 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5711 W:      http://www.melware.de
5712 S:      Maintained
5713 F:      drivers/isdn/hardware/eicon/
5714
5715 IT87 HARDWARE MONITORING DRIVER
5716 M:      Jean Delvare <jdelvare@suse.com>
5717 L:      lm-sensors@lm-sensors.org
5718 S:      Maintained
5719 F:      Documentation/hwmon/it87
5720 F:      drivers/hwmon/it87.c
5721
5722 IT913X MEDIA DRIVER
5723 M:      Antti Palosaari <crope@iki.fi>
5724 L:      linux-media@vger.kernel.org
5725 W:      http://linuxtv.org/
5726 W:      http://palosaari.fi/linux/
5727 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5728 T:      git git://linuxtv.org/anttip/media_tree.git
5729 S:      Maintained
5730 F:      drivers/media/tuners/it913x*
5731
5732 IVTV VIDEO4LINUX DRIVER
5733 M:      Andy Walls <awalls@md.metrocast.net>
5734 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5735 L:      linux-media@vger.kernel.org
5736 T:      git git://linuxtv.org/media_tree.git
5737 W:      http://www.ivtvdriver.org
5738 S:      Maintained
5739 F:      Documentation/video4linux/*.ivtv
5740 F:      drivers/media/pci/ivtv/
5741 F:      include/uapi/linux/ivtv*
5742
5743 IX2505V MEDIA DRIVER
5744 M:      Malcolm Priestley <tvboxspy@gmail.com>
5745 L:      linux-media@vger.kernel.org
5746 W:      http://linuxtv.org/
5747 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5748 S:      Maintained
5749 F:      drivers/media/dvb-frontends/ix2505v*
5750
5751 JC42.4 TEMPERATURE SENSOR DRIVER
5752 M:      Guenter Roeck <linux@roeck-us.net>
5753 L:      lm-sensors@lm-sensors.org
5754 S:      Maintained
5755 F:      drivers/hwmon/jc42.c
5756 F:      Documentation/hwmon/jc42
5757
5758 JFS FILESYSTEM
5759 M:      Dave Kleikamp <shaggy@kernel.org>
5760 L:      jfs-discussion@lists.sourceforge.net
5761 W:      http://jfs.sourceforge.net/
5762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5763 S:      Maintained
5764 F:      Documentation/filesystems/jfs.txt
5765 F:      fs/jfs/
5766
5767 JME NETWORK DRIVER
5768 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5769 L:      netdev@vger.kernel.org
5770 S:      Maintained
5771 F:      drivers/net/ethernet/jme.*
5772
5773 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5774 M:      David Woodhouse <dwmw2@infradead.org>
5775 L:      linux-mtd@lists.infradead.org
5776 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5777 S:      Maintained
5778 F:      fs/jffs2/
5779 F:      include/uapi/linux/jffs2.h
5780
5781 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5782 M:      "Theodore Ts'o" <tytso@mit.edu>
5783 M:      Jan Kara <jack@suse.com>
5784 L:      linux-ext4@vger.kernel.org
5785 S:      Maintained
5786 F:      fs/jbd2/
5787 F:      include/linux/jbd2.h
5788
5789 JSM Neo PCI based serial card
5790 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5791 L:      linux-serial@vger.kernel.org
5792 S:      Maintained
5793 F:      drivers/tty/serial/jsm/
5794
5795 K10TEMP HARDWARE MONITORING DRIVER
5796 M:      Clemens Ladisch <clemens@ladisch.de>
5797 L:      lm-sensors@lm-sensors.org
5798 S:      Maintained
5799 F:      Documentation/hwmon/k10temp
5800 F:      drivers/hwmon/k10temp.c
5801
5802 K8TEMP HARDWARE MONITORING DRIVER
5803 M:      Rudolf Marek <r.marek@assembler.cz>
5804 L:      lm-sensors@lm-sensors.org
5805 S:      Maintained
5806 F:      Documentation/hwmon/k8temp
5807 F:      drivers/hwmon/k8temp.c
5808
5809 KCONFIG
5810 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5811 L:      linux-kbuild@vger.kernel.org
5812 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5813 S:      Maintained
5814 F:      Documentation/kbuild/kconfig-language.txt
5815 F:      scripts/kconfig/
5816
5817 KDUMP
5818 M:      Vivek Goyal <vgoyal@redhat.com>
5819 M:      Haren Myneni <hbabu@us.ibm.com>
5820 L:      kexec@lists.infradead.org
5821 W:      http://lse.sourceforge.net/kdump/
5822 S:      Maintained
5823 F:      Documentation/kdump/
5824
5825 KEENE FM RADIO TRANSMITTER DRIVER
5826 M:      Hans Verkuil <hverkuil@xs4all.nl>
5827 L:      linux-media@vger.kernel.org
5828 T:      git git://linuxtv.org/media_tree.git
5829 W:      http://linuxtv.org
5830 S:      Maintained
5831 F:      drivers/media/radio/radio-keene*
5832
5833 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5834 M:      Ian Kent <raven@themaw.net>
5835 L:      autofs@vger.kernel.org
5836 S:      Maintained
5837 F:      fs/autofs4/
5838
5839 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5840 M:      Michal Marek <mmarek@suse.com>
5841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5843 L:      linux-kbuild@vger.kernel.org
5844 S:      Maintained
5845 F:      Documentation/kbuild/
5846 F:      Makefile
5847 F:      scripts/Makefile.*
5848 F:      scripts/basic/
5849 F:      scripts/mk*
5850 F:      scripts/package/
5851
5852 KERNEL JANITORS
5853 L:      kernel-janitors@vger.kernel.org
5854 W:      http://kernelnewbies.org/KernelJanitors
5855 S:      Odd Fixes
5856
5857 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5858 M:      "J. Bruce Fields" <bfields@fieldses.org>
5859 M:      Jeff Layton <jlayton@poochiereds.net>
5860 L:      linux-nfs@vger.kernel.org
5861 W:      http://nfs.sourceforge.net/
5862 S:      Supported
5863 F:      fs/nfsd/
5864 F:      include/uapi/linux/nfsd/
5865 F:      fs/lockd/
5866 F:      fs/nfs_common/
5867 F:      net/sunrpc/
5868 F:      include/linux/lockd/
5869 F:      include/linux/sunrpc/
5870 F:      include/uapi/linux/sunrpc/
5871
5872 KERNEL SELFTEST FRAMEWORK
5873 M:      Shuah Khan <shuahkh@osg.samsung.com>
5874 L:      linux-api@vger.kernel.org
5875 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5876 S:      Maintained
5877 F:      tools/testing/selftests
5878
5879 KERNEL VIRTUAL MACHINE (KVM)
5880 M:      Gleb Natapov <gleb@kernel.org>
5881 M:      Paolo Bonzini <pbonzini@redhat.com>
5882 L:      kvm@vger.kernel.org
5883 W:      http://www.linux-kvm.org
5884 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5885 S:      Supported
5886 F:      Documentation/*/kvm*.txt
5887 F:      Documentation/virtual/kvm/
5888 F:      arch/*/kvm/
5889 F:      arch/x86/kernel/kvm.c
5890 F:      arch/x86/kernel/kvmclock.c
5891 F:      arch/*/include/asm/kvm*
5892 F:      include/linux/kvm*
5893 F:      include/uapi/linux/kvm*
5894 F:      virt/kvm/
5895
5896 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5897 M:      Joerg Roedel <joro@8bytes.org>
5898 L:      kvm@vger.kernel.org
5899 W:      http://kvm.qumranet.com
5900 S:      Maintained
5901 F:      arch/x86/include/asm/svm.h
5902 F:      arch/x86/kvm/svm.c
5903
5904 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5905 M:      Alexander Graf <agraf@suse.com>
5906 L:      kvm-ppc@vger.kernel.org
5907 W:      http://kvm.qumranet.com
5908 T:      git git://github.com/agraf/linux-2.6.git
5909 S:      Supported
5910 F:      arch/powerpc/include/asm/kvm*
5911 F:      arch/powerpc/kvm/
5912
5913 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5914 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5915 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5916 L:      linux-s390@vger.kernel.org
5917 W:      http://www.ibm.com/developerworks/linux/linux390/
5918 S:      Supported
5919 F:      Documentation/s390/kvm.txt
5920 F:      arch/s390/include/asm/kvm*
5921 F:      arch/s390/kvm/
5922
5923 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5924 M:      Christoffer Dall <christoffer.dall@linaro.org>
5925 M:      Marc Zyngier <marc.zyngier@arm.com>
5926 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5927 L:      kvmarm@lists.cs.columbia.edu
5928 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5929 S:      Supported
5930 F:      arch/arm/include/uapi/asm/kvm*
5931 F:      arch/arm/include/asm/kvm*
5932 F:      arch/arm/kvm/
5933 F:      virt/kvm/arm/
5934 F:      include/kvm/arm_*
5935
5936 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5937 M:      Christoffer Dall <christoffer.dall@linaro.org>
5938 M:      Marc Zyngier <marc.zyngier@arm.com>
5939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5940 L:      kvmarm@lists.cs.columbia.edu
5941 S:      Maintained
5942 F:      arch/arm64/include/uapi/asm/kvm*
5943 F:      arch/arm64/include/asm/kvm*
5944 F:      arch/arm64/kvm/
5945
5946 KEXEC
5947 M:      Eric Biederman <ebiederm@xmission.com>
5948 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
5949 L:      kexec@lists.infradead.org
5950 S:      Maintained
5951 F:      include/linux/kexec.h
5952 F:      include/uapi/linux/kexec.h
5953 F:      kernel/kexec.c
5954
5955 KEYS/KEYRINGS:
5956 M:      David Howells <dhowells@redhat.com>
5957 L:      keyrings@linux-nfs.org
5958 S:      Maintained
5959 F:      Documentation/security/keys.txt
5960 F:      include/linux/key.h
5961 F:      include/linux/key-type.h
5962 F:      include/keys/
5963 F:      security/keys/
5964
5965 KEYS-TRUSTED
5966 M:      David Safford <safford@us.ibm.com>
5967 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5968 L:      linux-security-module@vger.kernel.org
5969 L:      keyrings@linux-nfs.org
5970 S:      Supported
5971 F:      Documentation/security/keys-trusted-encrypted.txt
5972 F:      include/keys/trusted-type.h
5973 F:      security/keys/trusted.c
5974 F:      security/keys/trusted.h
5975
5976 KEYS-ENCRYPTED
5977 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5978 M:      David Safford <safford@us.ibm.com>
5979 L:      linux-security-module@vger.kernel.org
5980 L:      keyrings@linux-nfs.org
5981 S:      Supported
5982 F:      Documentation/security/keys-trusted-encrypted.txt
5983 F:      include/keys/encrypted-type.h
5984 F:      security/keys/encrypted-keys/
5985
5986 KGDB / KDB /debug_core
5987 M:      Jason Wessel <jason.wessel@windriver.com>
5988 W:      http://kgdb.wiki.kernel.org/
5989 L:      kgdb-bugreport@lists.sourceforge.net
5990 S:      Maintained
5991 F:      Documentation/DocBook/kgdb.tmpl
5992 F:      drivers/misc/kgdbts.c
5993 F:      drivers/tty/serial/kgdboc.c
5994 F:      include/linux/kdb.h
5995 F:      include/linux/kgdb.h
5996 F:      kernel/debug/
5997
5998 KMEMCHECK
5999 M:      Vegard Nossum <vegardno@ifi.uio.no>
6000 M:      Pekka Enberg <penberg@kernel.org>
6001 S:      Maintained
6002 F:      Documentation/kmemcheck.txt
6003 F:      arch/x86/include/asm/kmemcheck.h
6004 F:      arch/x86/mm/kmemcheck/
6005 F:      include/linux/kmemcheck.h
6006 F:      mm/kmemcheck.c
6007
6008 KMEMLEAK
6009 M:      Catalin Marinas <catalin.marinas@arm.com>
6010 S:      Maintained
6011 F:      Documentation/kmemleak.txt
6012 F:      include/linux/kmemleak.h
6013 F:      mm/kmemleak.c
6014 F:      mm/kmemleak-test.c
6015
6016 KPROBES
6017 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6018 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6019 M:      "David S. Miller" <davem@davemloft.net>
6020 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6021 S:      Maintained
6022 F:      Documentation/kprobes.txt
6023 F:      include/linux/kprobes.h
6024 F:      kernel/kprobes.c
6025
6026 KS0108 LCD CONTROLLER DRIVER
6027 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6028 W:      http://miguelojeda.es/auxdisplay.htm
6029 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6030 S:      Maintained
6031 F:      Documentation/auxdisplay/ks0108
6032 F:      drivers/auxdisplay/ks0108.c
6033 F:      include/linux/ks0108.h
6034
6035 LAPB module
6036 L:      linux-x25@vger.kernel.org
6037 S:      Orphan
6038 F:      Documentation/networking/lapb-module.txt
6039 F:      include/*/lapb.h
6040 F:      net/lapb/
6041
6042 LASI 53c700 driver for PARISC
6043 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6044 L:      linux-scsi@vger.kernel.org
6045 S:      Maintained
6046 F:      Documentation/scsi/53c700.txt
6047 F:      drivers/scsi/53c700*
6048
6049 LED SUBSYSTEM
6050 M:      Richard Purdie <rpurdie@rpsys.net>
6051 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6052 L:      linux-leds@vger.kernel.org
6053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6054 S:      Maintained
6055 F:      drivers/leds/
6056 F:      include/linux/leds.h
6057
6058 LEGACY EEPROM DRIVER
6059 M:      Jean Delvare <jdelvare@suse.com>
6060 S:      Maintained
6061 F:      Documentation/misc-devices/eeprom
6062 F:      drivers/misc/eeprom/eeprom.c
6063
6064 LEGO USB Tower driver
6065 M:      Juergen Stuber <starblue@users.sourceforge.net>
6066 L:      legousb-devel@lists.sourceforge.net
6067 W:      http://legousb.sourceforge.net/
6068 S:      Maintained
6069 F:      drivers/usb/misc/legousbtower.c
6070
6071 LG2160 MEDIA DRIVER
6072 M:      Michael Krufky <mkrufky@linuxtv.org>
6073 L:      linux-media@vger.kernel.org
6074 W:      http://linuxtv.org/
6075 W:      http://github.com/mkrufky
6076 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6077 T:      git git://linuxtv.org/mkrufky/tuners.git
6078 S:      Maintained
6079 F:      drivers/media/dvb-frontends/lg2160.*
6080
6081 LGDT3305 MEDIA DRIVER
6082 M:      Michael Krufky <mkrufky@linuxtv.org>
6083 L:      linux-media@vger.kernel.org
6084 W:      http://linuxtv.org/
6085 W:      http://github.com/mkrufky
6086 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6087 T:      git git://linuxtv.org/mkrufky/tuners.git
6088 S:      Maintained
6089 F:      drivers/media/dvb-frontends/lgdt3305.*
6090
6091 LGUEST
6092 M:      Rusty Russell <rusty@rustcorp.com.au>
6093 L:      lguest@lists.ozlabs.org
6094 W:      http://lguest.ozlabs.org/
6095 S:      Odd Fixes
6096 F:      arch/x86/include/asm/lguest*.h
6097 F:      arch/x86/lguest/
6098 F:      drivers/lguest/
6099 F:      include/linux/lguest*.h
6100 F:      tools/lguest/
6101
6102 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6103 M:      Tejun Heo <tj@kernel.org>
6104 L:      linux-ide@vger.kernel.org
6105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6106 S:      Maintained
6107 F:      drivers/ata/
6108 F:      include/linux/ata.h
6109 F:      include/linux/libata.h
6110
6111 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6112 M:      Viresh Kumar <vireshk@kernel.org>
6113 L:      linux-ide@vger.kernel.org
6114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6115 S:      Maintained
6116 F:      include/linux/pata_arasan_cf_data.h
6117 F:      drivers/ata/pata_arasan_cf.c
6118
6119 LIBATA PATA DRIVERS
6120 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6121 M:      Tejun Heo <tj@kernel.org>
6122 L:      linux-ide@vger.kernel.org
6123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6124 S:      Maintained
6125 F:      drivers/ata/pata_*.c
6126 F:      drivers/ata/ata_generic.c
6127
6128 LIBATA SATA AHCI PLATFORM devices support
6129 M:      Hans de Goede <hdegoede@redhat.com>
6130 M:      Tejun Heo <tj@kernel.org>
6131 L:      linux-ide@vger.kernel.org
6132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6133 S:      Maintained
6134 F:      drivers/ata/ahci_platform.c
6135 F:      drivers/ata/libahci_platform.c
6136 F:      include/linux/ahci_platform.h
6137
6138 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6139 M:      Mikael Pettersson <mikpelinux@gmail.com>
6140 L:      linux-ide@vger.kernel.org
6141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6142 S:      Maintained
6143 F:      drivers/ata/sata_promise.*
6144
6145 LIBLOCKDEP
6146 M:      Sasha Levin <sasha.levin@oracle.com>
6147 S:      Maintained
6148 F:      tools/lib/lockdep/
6149
6150 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6151 M:      Dan Williams <dan.j.williams@intel.com>
6152 L:      linux-nvdimm@lists.01.org
6153 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6154 S:      Supported
6155 F:      drivers/nvdimm/*
6156 F:      include/linux/nd.h
6157 F:      include/linux/libnvdimm.h
6158 F:      include/uapi/linux/ndctl.h
6159
6160 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6161 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6162 L:      linux-nvdimm@lists.01.org
6163 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6164 S:      Supported
6165 F:      drivers/nvdimm/blk.c
6166 F:      drivers/nvdimm/region_devs.c
6167 F:      drivers/acpi/nfit*
6168
6169 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6170 M:      Vishal Verma <vishal.l.verma@intel.com>
6171 L:      linux-nvdimm@lists.01.org
6172 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6173 S:      Supported
6174 F:      drivers/nvdimm/btt*
6175
6176 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6177 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6178 L:      linux-nvdimm@lists.01.org
6179 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6180 S:      Supported
6181 F:      drivers/nvdimm/pmem.c
6182 F:      include/linux/pmem.h
6183
6184 LINUX FOR IBM pSERIES (RS/6000)
6185 M:      Paul Mackerras <paulus@au.ibm.com>
6186 W:      http://www.ibm.com/linux/ltc/projects/ppc
6187 S:      Supported
6188 F:      arch/powerpc/boot/rs6000.h
6189
6190 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6191 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6192 M:      Paul Mackerras <paulus@samba.org>
6193 M:      Michael Ellerman <mpe@ellerman.id.au>
6194 W:      http://www.penguinppc.org/
6195 L:      linuxppc-dev@lists.ozlabs.org
6196 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6198 S:      Supported
6199 F:      Documentation/powerpc/
6200 F:      arch/powerpc/
6201
6202 LINUX FOR POWER MACINTOSH
6203 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6204 W:      http://www.penguinppc.org/
6205 L:      linuxppc-dev@lists.ozlabs.org
6206 S:      Maintained
6207 F:      arch/powerpc/platforms/powermac/
6208 F:      drivers/macintosh/
6209
6210 LINUX FOR POWERPC EMBEDDED MPC5XXX
6211 M:      Anatolij Gustschin <agust@denx.de>
6212 L:      linuxppc-dev@lists.ozlabs.org
6213 T:      git git://git.denx.de/linux-denx-agust.git
6214 S:      Maintained
6215 F:      arch/powerpc/platforms/512x/
6216 F:      arch/powerpc/platforms/52xx/
6217
6218 LINUX FOR POWERPC EMBEDDED PPC4XX
6219 M:      Alistair Popple <alistair@popple.id.au>
6220 M:      Matt Porter <mporter@kernel.crashing.org>
6221 W:      http://www.penguinppc.org/
6222 L:      linuxppc-dev@lists.ozlabs.org
6223 S:      Maintained
6224 F:      arch/powerpc/platforms/40x/
6225 F:      arch/powerpc/platforms/44x/
6226
6227 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6228 L:      linuxppc-dev@lists.ozlabs.org
6229 S:      Orphan
6230 F:      arch/powerpc/*/*virtex*
6231 F:      arch/powerpc/*/*/*virtex*
6232
6233 LINUX FOR POWERPC EMBEDDED PPC8XX
6234 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6235 W:      http://www.penguinppc.org/
6236 L:      linuxppc-dev@lists.ozlabs.org
6237 S:      Maintained
6238 F:      arch/powerpc/platforms/8xx/
6239
6240 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6241 M:      Scott Wood <scottwood@freescale.com>
6242 M:      Kumar Gala <galak@kernel.crashing.org>
6243 W:      http://www.penguinppc.org/
6244 L:      linuxppc-dev@lists.ozlabs.org
6245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6246 S:      Maintained
6247 F:      arch/powerpc/platforms/83xx/
6248 F:      arch/powerpc/platforms/85xx/
6249
6250 LINUX FOR POWERPC PA SEMI PWRFICIENT
6251 M:      Olof Johansson <olof@lixom.net>
6252 L:      linuxppc-dev@lists.ozlabs.org
6253 S:      Maintained
6254 F:      arch/powerpc/platforms/pasemi/
6255 F:      drivers/*/*pasemi*
6256 F:      drivers/*/*/*pasemi*
6257
6258 LINUX SECURITY MODULE (LSM) FRAMEWORK
6259 M:      Chris Wright <chrisw@sous-sol.org>
6260 L:      linux-security-module@vger.kernel.org
6261 S:      Supported
6262
6263 LIS3LV02D ACCELEROMETER DRIVER
6264 M:      Eric Piel <eric.piel@tremplin-utc.net>
6265 S:      Maintained
6266 F:      Documentation/misc-devices/lis3lv02d
6267 F:      drivers/misc/lis3lv02d/
6268 F:      drivers/platform/x86/hp_accel.c
6269
6270 LIVE PATCHING
6271 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6272 M:      Seth Jennings <sjenning@redhat.com>
6273 M:      Jiri Kosina <jikos@kernel.org>
6274 M:      Vojtech Pavlik <vojtech@suse.com>
6275 S:      Maintained
6276 F:      kernel/livepatch/
6277 F:      include/linux/livepatch.h
6278 F:      arch/x86/include/asm/livepatch.h
6279 F:      arch/x86/kernel/livepatch.c
6280 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6281 F:      samples/livepatch/
6282 L:      live-patching@vger.kernel.org
6283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6284
6285 LLC (802.2)
6286 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6287 S:      Maintained
6288 F:      include/linux/llc.h
6289 F:      include/uapi/linux/llc.h
6290 F:      include/net/llc*
6291 F:      net/llc/
6292
6293 LM73 HARDWARE MONITOR DRIVER
6294 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6295 L:      lm-sensors@lm-sensors.org
6296 S:      Maintained
6297 F:      drivers/hwmon/lm73.c
6298
6299 LM78 HARDWARE MONITOR DRIVER
6300 M:      Jean Delvare <jdelvare@suse.com>
6301 L:      lm-sensors@lm-sensors.org
6302 S:      Maintained
6303 F:      Documentation/hwmon/lm78
6304 F:      drivers/hwmon/lm78.c
6305
6306 LM83 HARDWARE MONITOR DRIVER
6307 M:      Jean Delvare <jdelvare@suse.com>
6308 L:      lm-sensors@lm-sensors.org
6309 S:      Maintained
6310 F:      Documentation/hwmon/lm83
6311 F:      drivers/hwmon/lm83.c
6312
6313 LM90 HARDWARE MONITOR DRIVER
6314 M:      Jean Delvare <jdelvare@suse.com>
6315 L:      lm-sensors@lm-sensors.org
6316 S:      Maintained
6317 F:      Documentation/hwmon/lm90
6318 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6319 F:      drivers/hwmon/lm90.c
6320
6321 LM95234 HARDWARE MONITOR DRIVER
6322 M:      Guenter Roeck <linux@roeck-us.net>
6323 L:      lm-sensors@lm-sensors.org
6324 S:      Maintained
6325 F:      Documentation/hwmon/lm95234
6326 F:      drivers/hwmon/lm95234.c
6327
6328 LME2510 MEDIA DRIVER
6329 M:      Malcolm Priestley <tvboxspy@gmail.com>
6330 L:      linux-media@vger.kernel.org
6331 W:      http://linuxtv.org/
6332 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6333 S:      Maintained
6334 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6335
6336 LOCKDEP AND LOCKSTAT
6337 M:      Peter Zijlstra <peterz@infradead.org>
6338 M:      Ingo Molnar <mingo@redhat.com>
6339 L:      linux-kernel@vger.kernel.org
6340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6341 S:      Maintained
6342 F:      Documentation/locking/lockdep*.txt
6343 F:      Documentation/locking/lockstat.txt
6344 F:      include/linux/lockdep.h
6345 F:      kernel/locking/
6346
6347 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6348 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6349 L:      linux-ntfs-dev@lists.sourceforge.net
6350 W:      http://www.linux-ntfs.org/content/view/19/37/
6351 S:      Maintained
6352 F:      Documentation/ldm.txt
6353 F:      block/partitions/ldm.*
6354
6355 LogFS
6356 M:      Joern Engel <joern@logfs.org>
6357 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6358 L:      logfs@logfs.org
6359 W:      logfs.org
6360 S:      Maintained
6361 F:      fs/logfs/
6362
6363 LPC32XX MACHINE SUPPORT
6364 M:      Roland Stigge <stigge@antcom.de>
6365 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6366 S:      Maintained
6367 F:      arch/arm/mach-lpc32xx/
6368
6369 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6370 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6371 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6372 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6373 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6374 L:      MPT-FusionLinux.pdl@avagotech.com
6375 L:      linux-scsi@vger.kernel.org
6376 W:      http://www.lsilogic.com/support
6377 S:      Supported
6378 F:      drivers/message/fusion/
6379 F:      drivers/scsi/mpt2sas/
6380 F:      drivers/scsi/mpt3sas/
6381
6382 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6383 M:      Matthew Wilcox <matthew@wil.cx>
6384 L:      linux-scsi@vger.kernel.org
6385 S:      Maintained
6386 F:      drivers/scsi/sym53c8xx_2/
6387
6388 LTC4261 HARDWARE MONITOR DRIVER
6389 M:      Guenter Roeck <linux@roeck-us.net>
6390 L:      lm-sensors@lm-sensors.org
6391 S:      Maintained
6392 F:      Documentation/hwmon/ltc4261
6393 F:      drivers/hwmon/ltc4261.c
6394
6395 LTP (Linux Test Project)
6396 M:      Mike Frysinger <vapier@gentoo.org>
6397 M:      Cyril Hrubis <chrubis@suse.cz>
6398 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
6399 M:      Jan Stancek <jstancek@redhat.com>
6400 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6401 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6402 L:      ltp-list@lists.sourceforge.net (subscribers-only)
6403 W:      http://linux-test-project.github.io/
6404 T:      git git://github.com/linux-test-project/ltp.git
6405 S:      Maintained
6406
6407 M32R ARCHITECTURE
6408 W:      http://www.linux-m32r.org/
6409 S:      Orphan
6410 F:      arch/m32r/
6411
6412 M68K ARCHITECTURE
6413 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6414 L:      linux-m68k@lists.linux-m68k.org
6415 W:      http://www.linux-m68k.org/
6416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6417 S:      Maintained
6418 F:      arch/m68k/
6419 F:      drivers/zorro/
6420
6421 M68K ON APPLE MACINTOSH
6422 M:      Joshua Thompson <funaho@jurai.org>
6423 W:      http://www.mac.linux-m68k.org/
6424 L:      linux-m68k@lists.linux-m68k.org
6425 S:      Maintained
6426 F:      arch/m68k/mac/
6427
6428 M68K ON HP9000/300
6429 M:      Philip Blundell <philb@gnu.org>
6430 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6431 S:      Maintained
6432 F:      arch/m68k/hp300/
6433
6434 M88DS3103 MEDIA DRIVER
6435 M:      Antti Palosaari <crope@iki.fi>
6436 L:      linux-media@vger.kernel.org
6437 W:      http://linuxtv.org/
6438 W:      http://palosaari.fi/linux/
6439 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6440 T:      git git://linuxtv.org/anttip/media_tree.git
6441 S:      Maintained
6442 F:      drivers/media/dvb-frontends/m88ds3103*
6443
6444 M88RS2000 MEDIA DRIVER
6445 M:      Malcolm Priestley <tvboxspy@gmail.com>
6446 L:      linux-media@vger.kernel.org
6447 W:      http://linuxtv.org/
6448 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6449 S:      Maintained
6450 F:      drivers/media/dvb-frontends/m88rs2000*
6451
6452 MA901 MASTERKIT USB FM RADIO DRIVER
6453 M:      Alexey Klimov <klimov.linux@gmail.com>
6454 L:      linux-media@vger.kernel.org
6455 T:      git git://linuxtv.org/media_tree.git
6456 S:      Maintained
6457 F:      drivers/media/radio/radio-ma901.c
6458
6459 MAC80211
6460 M:      Johannes Berg <johannes@sipsolutions.net>
6461 L:      linux-wireless@vger.kernel.org
6462 W:      http://wireless.kernel.org/
6463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6465 S:      Maintained
6466 F:      Documentation/networking/mac80211-injection.txt
6467 F:      include/net/mac80211.h
6468 F:      net/mac80211/
6469
6470 MACVLAN DRIVER
6471 M:      Patrick McHardy <kaber@trash.net>
6472 L:      netdev@vger.kernel.org
6473 S:      Maintained
6474 F:      drivers/net/macvlan.c
6475 F:      include/linux/if_macvlan.h
6476
6477 MAILBOX API
6478 M:      Jassi Brar <jassisinghbrar@gmail.com>
6479 L:      linux-kernel@vger.kernel.org
6480 S:      Maintained
6481 F:      drivers/mailbox/
6482 F:      include/linux/mailbox_client.h
6483 F:      include/linux/mailbox_controller.h
6484
6485 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6486 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6487 W:      http://www.kernel.org/doc/man-pages
6488 L:      linux-man@vger.kernel.org
6489 S:      Maintained
6490
6491 MARVELL ARMADA DRM SUPPORT
6492 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6493 S:      Maintained
6494 F:      drivers/gpu/drm/armada/
6495
6496 MARVELL 88E6352 DSA support
6497 M:      Guenter Roeck <linux@roeck-us.net>
6498 S:      Maintained
6499 F:      drivers/net/dsa/mv88e6352.c
6500
6501 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6502 M:      Mirko Lindner <mlindner@marvell.com>
6503 M:      Stephen Hemminger <stephen@networkplumber.org>
6504 L:      netdev@vger.kernel.org
6505 S:      Maintained
6506 F:      drivers/net/ethernet/marvell/sk*
6507
6508 MARVELL LIBERTAS WIRELESS DRIVER
6509 L:      libertas-dev@lists.infradead.org
6510 S:      Orphan
6511 F:      drivers/net/wireless/libertas/
6512
6513 MARVELL MV643XX ETHERNET DRIVER
6514 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6515 L:      netdev@vger.kernel.org
6516 S:      Maintained
6517 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6518 F:      include/linux/mv643xx.h
6519
6520 MARVELL MVNETA ETHERNET DRIVER
6521 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6522 L:      netdev@vger.kernel.org
6523 S:      Maintained
6524 F:      drivers/net/ethernet/marvell/mvneta.*
6525
6526 MARVELL MWIFIEX WIRELESS DRIVER
6527 M:      Amitkumar Karwar <akarwar@marvell.com>
6528 M:      Nishant Sarmukadam <nishants@marvell.com>
6529 L:      linux-wireless@vger.kernel.org
6530 S:      Maintained
6531 F:      drivers/net/wireless/mwifiex/
6532
6533 MARVELL MWL8K WIRELESS DRIVER
6534 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6535 L:      linux-wireless@vger.kernel.org
6536 S:      Odd Fixes
6537 F:      drivers/net/wireless/mwl8k.c
6538
6539 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6540 M:      Nicolas Pitre <nico@fluxnic.net>
6541 S:      Odd Fixes
6542 F:      drivers/mmc/host/mvsdio.*
6543
6544 MATROX FRAMEBUFFER DRIVER
6545 L:      linux-fbdev@vger.kernel.org
6546 S:      Orphan
6547 F:      drivers/video/fbdev/matrox/matroxfb_*
6548 F:      include/uapi/linux/matroxfb.h
6549
6550 MAX16065 HARDWARE MONITOR DRIVER
6551 M:      Guenter Roeck <linux@roeck-us.net>
6552 L:      lm-sensors@lm-sensors.org
6553 S:      Maintained
6554 F:      Documentation/hwmon/max16065
6555 F:      drivers/hwmon/max16065.c
6556
6557 MAX20751 HARDWARE MONITOR DRIVER
6558 M:      Guenter Roeck <linux@roeck-us.net>
6559 L:      lm-sensors@lm-sensors.org
6560 S:      Maintained
6561 F:      Documentation/hwmon/max20751
6562 F:      drivers/hwmon/max20751.c
6563
6564 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6565 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6566 L:      lm-sensors@lm-sensors.org
6567 S:      Maintained
6568 F:      Documentation/hwmon/max6650
6569 F:      drivers/hwmon/max6650.c
6570
6571 MAX6697 HARDWARE MONITOR DRIVER
6572 M:      Guenter Roeck <linux@roeck-us.net>
6573 L:      lm-sensors@lm-sensors.org
6574 S:      Maintained
6575 F:      Documentation/hwmon/max6697
6576 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6577 F:      drivers/hwmon/max6697.c
6578 F:      include/linux/platform_data/max6697.h
6579
6580 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6581 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6582 L:      linux-pm@vger.kernel.org
6583 S:      Supported
6584 F:      drivers/power/max14577_charger.c
6585 F:      drivers/power/max77693_charger.c
6586
6587 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6588 M:      Chanwoo Choi <cw00.choi@samsung.com>
6589 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6590 L:      linux-kernel@vger.kernel.org
6591 S:      Supported
6592 F:      drivers/*/max14577.c
6593 F:      drivers/*/max77686.c
6594 F:      drivers/*/max77693.c
6595 F:      drivers/extcon/extcon-max14577.c
6596 F:      drivers/extcon/extcon-max77693.c
6597 F:      drivers/rtc/rtc-max77686.c
6598 F:      drivers/clk/clk-max77686.c
6599 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6600 F:      Documentation/devicetree/bindings/mfd/max77686.txt
6601 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6602 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6603 F:      include/linux/mfd/max14577*.h
6604 F:      include/linux/mfd/max77686*.h
6605 F:      include/linux/mfd/max77693*.h
6606
6607 MAXIRADIO FM RADIO RECEIVER DRIVER
6608 M:      Hans Verkuil <hverkuil@xs4all.nl>
6609 L:      linux-media@vger.kernel.org
6610 T:      git git://linuxtv.org/media_tree.git
6611 W:      http://linuxtv.org
6612 S:      Maintained
6613 F:      drivers/media/radio/radio-maxiradio*
6614
6615 MEDIA DRIVERS FOR RENESAS - VSP1
6616 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6617 L:      linux-media@vger.kernel.org
6618 L:      linux-sh@vger.kernel.org
6619 T:      git git://linuxtv.org/media_tree.git
6620 S:      Supported
6621 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6622 F:      drivers/media/platform/vsp1/
6623
6624 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6625 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6626 P:      LinuxTV.org Project
6627 L:      linux-media@vger.kernel.org
6628 W:      http://linuxtv.org
6629 Q:      http://patchwork.kernel.org/project/linux-media/list/
6630 T:      git git://linuxtv.org/media_tree.git
6631 S:      Maintained
6632 F:      Documentation/dvb/
6633 F:      Documentation/video4linux/
6634 F:      Documentation/DocBook/media/
6635 F:      drivers/media/
6636 F:      drivers/staging/media/
6637 F:      include/media/
6638 F:      include/uapi/linux/dvb/
6639 F:      include/uapi/linux/videodev2.h
6640 F:      include/uapi/linux/media.h
6641 F:      include/uapi/linux/v4l2-*
6642 F:      include/uapi/linux/meye.h
6643 F:      include/uapi/linux/ivtv*
6644 F:      include/uapi/linux/uvcvideo.h
6645
6646 MEDIATEK MT7601U WIRELESS LAN DRIVER
6647 M:      Jakub Kicinski <kubakici@wp.pl>
6648 L:      linux-wireless@vger.kernel.org
6649 S:      Maintained
6650 F:      drivers/net/wireless/mediatek/mt7601u/
6651
6652 MEGARAID SCSI/SAS DRIVERS
6653 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6654 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6655 M:      Uday Lingala <uday.lingala@avagotech.com>
6656 L:      megaraidlinux.pdl@avagotech.com
6657 L:      linux-scsi@vger.kernel.org
6658 W:      http://www.lsi.com
6659 S:      Maintained
6660 F:      Documentation/scsi/megaraid.txt
6661 F:      drivers/scsi/megaraid.*
6662 F:      drivers/scsi/megaraid/
6663
6664 MELLANOX ETHERNET DRIVER (mlx4_en)
6665 M:      Amir Vadai <amirv@mellanox.com>
6666 M:      Ido Shamay <idos@mellanox.com>
6667 L:      netdev@vger.kernel.org
6668 S:      Supported
6669 W:      http://www.mellanox.com
6670 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6671 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6672
6673 MELLANOX ETHERNET SWITCH DRIVERS
6674 M:      Jiri Pirko <jiri@mellanox.com>
6675 M:      Ido Schimmel <idosch@mellanox.com>
6676 L:      netdev@vger.kernel.org
6677 S:      Supported
6678 W:      http://www.mellanox.com
6679 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6680 F:      drivers/net/ethernet/mellanox/mlxsw/
6681
6682 MEMORY MANAGEMENT
6683 L:      linux-mm@kvack.org
6684 W:      http://www.linux-mm.org
6685 S:      Maintained
6686 F:      include/linux/mm.h
6687 F:      include/linux/gfp.h
6688 F:      include/linux/mmzone.h
6689 F:      include/linux/memory_hotplug.h
6690 F:      include/linux/vmalloc.h
6691 F:      mm/
6692
6693 MEMORY TECHNOLOGY DEVICES (MTD)
6694 M:      David Woodhouse <dwmw2@infradead.org>
6695 M:      Brian Norris <computersforpeace@gmail.com>
6696 L:      linux-mtd@lists.infradead.org
6697 W:      http://www.linux-mtd.infradead.org/
6698 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6699 T:      git git://git.infradead.org/linux-mtd.git
6700 T:      git git://git.infradead.org/l2-mtd.git
6701 S:      Maintained
6702 F:      drivers/mtd/
6703 F:      include/linux/mtd/
6704 F:      include/uapi/mtd/
6705
6706 MEN A21 WATCHDOG DRIVER
6707 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6708 L:      linux-watchdog@vger.kernel.org
6709 S:      Maintained
6710 F:      drivers/watchdog/mena21_wdt.c
6711
6712 MEN CHAMELEON BUS (mcb)
6713 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6714 S:      Maintained
6715 F:      drivers/mcb/
6716 F:      include/linux/mcb.h
6717 F:      Documentation/men-chameleon-bus.txt
6718
6719 MEN F21BMC (Board Management Controller)
6720 M:      Andreas Werner <andreas.werner@men.de>
6721 S:      Supported
6722 F:      drivers/mfd/menf21bmc.c
6723 F:      drivers/watchdog/menf21bmc_wdt.c
6724 F:      drivers/leds/leds-menf21bmc.c
6725 F:      drivers/hwmon/menf21bmc_hwmon.c
6726 F:      Documentation/hwmon/menf21bmc
6727
6728 METAG ARCHITECTURE
6729 M:      James Hogan <james.hogan@imgtec.com>
6730 L:      linux-metag@vger.kernel.org
6731 S:      Supported
6732 F:      arch/metag/
6733 F:      Documentation/metag/
6734 F:      Documentation/devicetree/bindings/metag/
6735 F:      drivers/clocksource/metag_generic.c
6736 F:      drivers/irqchip/irq-metag.c
6737 F:      drivers/irqchip/irq-metag-ext.c
6738 F:      drivers/tty/metag_da.c
6739
6740 MICROBLAZE ARCHITECTURE
6741 M:      Michal Simek <monstr@monstr.eu>
6742 W:      http://www.monstr.eu/fdt/
6743 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6744 S:      Supported
6745 F:      arch/microblaze/
6746
6747 MICROTEK X6 SCANNER
6748 M:      Oliver Neukum <oliver@neukum.org>
6749 S:      Maintained
6750 F:      drivers/usb/image/microtek.*
6751
6752 MIPS
6753 M:      Ralf Baechle <ralf@linux-mips.org>
6754 L:      linux-mips@linux-mips.org
6755 W:      http://www.linux-mips.org/
6756 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6757 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6758 S:      Supported
6759 F:      Documentation/mips/
6760 F:      arch/mips/
6761
6762 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6763 M:      Hans Verkuil <hverkuil@xs4all.nl>
6764 L:      linux-media@vger.kernel.org
6765 T:      git git://linuxtv.org/media_tree.git
6766 W:      http://linuxtv.org
6767 S:      Odd Fixes
6768 F:      drivers/media/radio/radio-miropcm20*
6769
6770 Mellanox MLX5 core VPI driver
6771 M:      Eli Cohen <eli@mellanox.com>
6772 L:      netdev@vger.kernel.org
6773 L:      linux-rdma@vger.kernel.org
6774 W:      http://www.mellanox.com
6775 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6776 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6777 T:      git git://openfabrics.org/~eli/connect-ib.git
6778 S:      Supported
6779 F:      drivers/net/ethernet/mellanox/mlx5/core/
6780 F:      include/linux/mlx5/
6781
6782 Mellanox MLX5 IB driver
6783 M:      Eli Cohen <eli@mellanox.com>
6784 L:      linux-rdma@vger.kernel.org
6785 W:      http://www.mellanox.com
6786 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6787 T:      git git://openfabrics.org/~eli/connect-ib.git
6788 S:      Supported
6789 F:      include/linux/mlx5/
6790 F:      drivers/infiniband/hw/mlx5/
6791
6792 MN88472 MEDIA DRIVER
6793 M:      Antti Palosaari <crope@iki.fi>
6794 L:      linux-media@vger.kernel.org
6795 W:      http://linuxtv.org/
6796 W:      http://palosaari.fi/linux/
6797 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6798 T:      git git://linuxtv.org/anttip/media_tree.git
6799 S:      Maintained
6800 F:      drivers/staging/media/mn88472/
6801 F:      drivers/media/dvb-frontends/mn88472.h
6802
6803 MN88473 MEDIA DRIVER
6804 M:      Antti Palosaari <crope@iki.fi>
6805 L:      linux-media@vger.kernel.org
6806 W:      http://linuxtv.org/
6807 W:      http://palosaari.fi/linux/
6808 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6809 T:      git git://linuxtv.org/anttip/media_tree.git
6810 S:      Maintained
6811 F:      drivers/staging/media/mn88473/
6812 F:      drivers/media/dvb-frontends/mn88473.h
6813
6814 MODULE SUPPORT
6815 M:      Rusty Russell <rusty@rustcorp.com.au>
6816 S:      Maintained
6817 F:      include/linux/module.h
6818 F:      kernel/module.c
6819
6820 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6821 W:      http://popies.net/meye/
6822 S:      Orphan
6823 F:      Documentation/video4linux/meye.txt
6824 F:      drivers/media/pci/meye/
6825 F:      include/uapi/linux/meye.h
6826
6827 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6828 M:      Jiri Slaby <jirislaby@gmail.com>
6829 S:      Maintained
6830 F:      Documentation/serial/moxa-smartio
6831 F:      drivers/tty/mxser.*
6832
6833 MR800 AVERMEDIA USB FM RADIO DRIVER
6834 M:      Alexey Klimov <klimov.linux@gmail.com>
6835 L:      linux-media@vger.kernel.org
6836 T:      git git://linuxtv.org/media_tree.git
6837 S:      Maintained
6838 F:      drivers/media/radio/radio-mr800.c
6839
6840 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6841 M:      Alan Ott <alan@signal11.us>
6842 L:      linux-wpan@vger.kernel.org
6843 S:      Maintained
6844 F:      drivers/net/ieee802154/mrf24j40.c
6845
6846 MSI LAPTOP SUPPORT
6847 M:      "Lee, Chun-Yi" <jlee@suse.com>
6848 L:      platform-driver-x86@vger.kernel.org
6849 S:      Maintained
6850 F:      drivers/platform/x86/msi-laptop.c
6851
6852 MSI WMI SUPPORT
6853 L:      platform-driver-x86@vger.kernel.org
6854 S:      Orphan
6855 F:      drivers/platform/x86/msi-wmi.c
6856
6857 MSI001 MEDIA DRIVER
6858 M:      Antti Palosaari <crope@iki.fi>
6859 L:      linux-media@vger.kernel.org
6860 W:      http://linuxtv.org/
6861 W:      http://palosaari.fi/linux/
6862 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6863 T:      git git://linuxtv.org/anttip/media_tree.git
6864 S:      Maintained
6865 F:      drivers/media/tuners/msi001*
6866
6867 MSI2500 MEDIA DRIVER
6868 M:      Antti Palosaari <crope@iki.fi>
6869 L:      linux-media@vger.kernel.org
6870 W:      http://linuxtv.org/
6871 W:      http://palosaari.fi/linux/
6872 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6873 T:      git git://linuxtv.org/anttip/media_tree.git
6874 S:      Maintained
6875 F:      drivers/media/usb/msi2500/
6876
6877 MSYSTEMS DISKONCHIP G3 MTD DRIVER
6878 M:      Robert Jarzmik <robert.jarzmik@free.fr>
6879 L:      linux-mtd@lists.infradead.org
6880 S:      Maintained
6881 F:      drivers/mtd/devices/docg3*
6882
6883 MT9M032 APTINA SENSOR DRIVER
6884 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6885 L:      linux-media@vger.kernel.org
6886 T:      git git://linuxtv.org/media_tree.git
6887 S:      Maintained
6888 F:      drivers/media/i2c/mt9m032.c
6889 F:      include/media/mt9m032.h
6890
6891 MT9P031 APTINA CAMERA SENSOR
6892 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6893 L:      linux-media@vger.kernel.org
6894 T:      git git://linuxtv.org/media_tree.git
6895 S:      Maintained
6896 F:      drivers/media/i2c/mt9p031.c
6897 F:      include/media/mt9p031.h
6898
6899 MT9T001 APTINA CAMERA SENSOR
6900 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6901 L:      linux-media@vger.kernel.org
6902 T:      git git://linuxtv.org/media_tree.git
6903 S:      Maintained
6904 F:      drivers/media/i2c/mt9t001.c
6905 F:      include/media/mt9t001.h
6906
6907 MT9V032 APTINA CAMERA SENSOR
6908 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6909 L:      linux-media@vger.kernel.org
6910 T:      git git://linuxtv.org/media_tree.git
6911 S:      Maintained
6912 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
6913 F:      drivers/media/i2c/mt9v032.c
6914 F:      include/media/mt9v032.h
6915
6916 MULTIFUNCTION DEVICES (MFD)
6917 M:      Samuel Ortiz <sameo@linux.intel.com>
6918 M:      Lee Jones <lee.jones@linaro.org>
6919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
6920 S:      Supported
6921 F:      drivers/mfd/
6922 F:      include/linux/mfd/
6923
6924 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
6925 M:      Ulf Hansson <ulf.hansson@linaro.org>
6926 L:      linux-mmc@vger.kernel.org
6927 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
6928 S:      Maintained
6929 F:      drivers/mmc/
6930 F:      include/linux/mmc/
6931 F:      include/uapi/linux/mmc/
6932
6933 MULTIMEDIA CARD (MMC) ETC. OVER SPI
6934 S:      Orphan
6935 F:      drivers/mmc/host/mmc_spi.c
6936 F:      include/linux/spi/mmc_spi.h
6937
6938 MULTISOUND SOUND DRIVER
6939 M:      Andrew Veliath <andrewtv@usa.net>
6940 S:      Maintained
6941 F:      Documentation/sound/oss/MultiSound
6942 F:      sound/oss/msnd*
6943
6944 MULTITECH MULTIPORT CARD (ISICOM)
6945 S:      Orphan
6946 F:      drivers/tty/isicom.c
6947 F:      include/linux/isicom.h
6948
6949 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
6950 M:      Felipe Balbi <balbi@ti.com>
6951 L:      linux-usb@vger.kernel.org
6952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6953 S:      Maintained
6954 F:      drivers/usb/musb/
6955
6956 MXL5007T MEDIA DRIVER
6957 M:      Michael Krufky <mkrufky@linuxtv.org>
6958 L:      linux-media@vger.kernel.org
6959 W:      http://linuxtv.org/
6960 W:      http://github.com/mkrufky
6961 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6962 T:      git git://linuxtv.org/mkrufky/tuners.git
6963 S:      Maintained
6964 F:      drivers/media/tuners/mxl5007t.*
6965
6966 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
6967 M:      Hyong-Youb Kim <hykim@myri.com>
6968 L:      netdev@vger.kernel.org
6969 W:      https://www.myricom.com/support/downloads/myri10ge.html
6970 S:      Supported
6971 F:      drivers/net/ethernet/myricom/myri10ge/
6972
6973 NATSEMI ETHERNET DRIVER (DP8381x)
6974 S:      Orphan
6975 F:      drivers/net/ethernet/natsemi/natsemi.c
6976
6977 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
6978 M:      Daniel Mack <zonque@gmail.com>
6979 S:      Maintained
6980 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6981 W:      http://www.native-instruments.com
6982 F:      sound/usb/caiaq/
6983
6984 NCP FILESYSTEM
6985 M:      Petr Vandrovec <petr@vandrovec.name>
6986 S:      Odd Fixes
6987 F:      fs/ncpfs/
6988
6989 NCR 5380 SCSI DRIVERS
6990 M:      Finn Thain <fthain@telegraphics.com.au>
6991 M:      Michael Schmitz <schmitzmic@gmail.com>
6992 L:      linux-scsi@vger.kernel.org
6993 S:      Maintained
6994 F:      Documentation/scsi/g_NCR5380.txt
6995 F:      drivers/scsi/NCR5380.*
6996 F:      drivers/scsi/arm/cumana_1.c
6997 F:      drivers/scsi/arm/oak.c
6998 F:      drivers/scsi/atari_NCR5380.c
6999 F:      drivers/scsi/atari_scsi.*
7000 F:      drivers/scsi/dmx3191d.c
7001 F:      drivers/scsi/dtc.*
7002 F:      drivers/scsi/g_NCR5380.*
7003 F:      drivers/scsi/g_NCR5380_mmio.c
7004 F:      drivers/scsi/mac_scsi.*
7005 F:      drivers/scsi/pas16.*
7006 F:      drivers/scsi/sun3_scsi.*
7007 F:      drivers/scsi/sun3_scsi_vme.c
7008 F:      drivers/scsi/t128.*
7009
7010 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7011 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7012 L:      linux-scsi@vger.kernel.org
7013 S:      Maintained
7014 F:      drivers/scsi/NCR_D700.*
7015
7016 NCT6775 HARDWARE MONITOR DRIVER
7017 M:      Guenter Roeck <linux@roeck-us.net>
7018 L:      lm-sensors@lm-sensors.org
7019 S:      Maintained
7020 F:      Documentation/hwmon/nct6775
7021 F:      drivers/hwmon/nct6775.c
7022
7023 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7024 M:      Faisal Latif <faisal.latif@intel.com>
7025 L:      linux-rdma@vger.kernel.org
7026 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7027 S:      Supported
7028 F:      drivers/infiniband/hw/nes/
7029
7030 NETEM NETWORK EMULATOR
7031 M:      Stephen Hemminger <stephen@networkplumber.org>
7032 L:      netem@lists.linux-foundation.org
7033 S:      Maintained
7034 F:      net/sched/sch_netem.c
7035
7036 NETERION 10GbE DRIVERS (s2io/vxge)
7037 M:      Jon Mason <jdmason@kudzu.us>
7038 L:      netdev@vger.kernel.org
7039 S:      Supported
7040 F:      Documentation/networking/s2io.txt
7041 F:      Documentation/networking/vxge.txt
7042 F:      drivers/net/ethernet/neterion/
7043
7044 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7045 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7046 M:      Patrick McHardy <kaber@trash.net>
7047 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7048 L:      netfilter-devel@vger.kernel.org
7049 L:      coreteam@netfilter.org
7050 W:      http://www.netfilter.org/
7051 W:      http://www.iptables.org/
7052 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7055 S:      Supported
7056 F:      include/linux/netfilter*
7057 F:      include/linux/netfilter/
7058 F:      include/net/netfilter/
7059 F:      include/uapi/linux/netfilter*
7060 F:      include/uapi/linux/netfilter/
7061 F:      net/*/netfilter.c
7062 F:      net/*/netfilter/
7063 F:      net/netfilter/
7064 F:      net/bridge/br_netfilter*.c
7065
7066 NETLABEL
7067 M:      Paul Moore <paul@paul-moore.com>
7068 W:      http://netlabel.sf.net
7069 L:      netdev@vger.kernel.org
7070 S:      Maintained
7071 F:      Documentation/netlabel/
7072 F:      include/net/netlabel.h
7073 F:      net/netlabel/
7074
7075 NETROM NETWORK LAYER
7076 M:      Ralf Baechle <ralf@linux-mips.org>
7077 L:      linux-hams@vger.kernel.org
7078 W:      http://www.linux-ax25.org/
7079 S:      Maintained
7080 F:      include/net/netrom.h
7081 F:      include/uapi/linux/netrom.h
7082 F:      net/netrom/
7083
7084 NETWORK BLOCK DEVICE (NBD)
7085 M:      Markus Pargmann <mpa@pengutronix.de>
7086 S:      Maintained
7087 L:      nbd-general@lists.sourceforge.net
7088 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7089 F:      Documentation/blockdev/nbd.txt
7090 F:      drivers/block/nbd.c
7091 F:      include/uapi/linux/nbd.h
7092
7093 NETWORK DROP MONITOR
7094 M:      Neil Horman <nhorman@tuxdriver.com>
7095 L:      netdev@vger.kernel.org
7096 S:      Maintained
7097 W:      https://fedorahosted.org/dropwatch/
7098 F:      net/core/drop_monitor.c
7099
7100 NETWORKING [GENERAL]
7101 M:      "David S. Miller" <davem@davemloft.net>
7102 L:      netdev@vger.kernel.org
7103 W:      http://www.linuxfoundation.org/en/Net
7104 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7107 S:      Maintained
7108 F:      net/
7109 F:      include/net/
7110 F:      include/linux/in.h
7111 F:      include/linux/net.h
7112 F:      include/linux/netdevice.h
7113 F:      include/uapi/linux/in.h
7114 F:      include/uapi/linux/net.h
7115 F:      include/uapi/linux/netdevice.h
7116 F:      include/uapi/linux/net_namespace.h
7117 F:      tools/net/
7118 F:      tools/testing/selftests/net/
7119 F:      lib/random32.c
7120 F:      lib/test_bpf.c
7121
7122 NETWORKING [IPv4/IPv6]
7123 M:      "David S. Miller" <davem@davemloft.net>
7124 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7125 M:      James Morris <jmorris@namei.org>
7126 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7127 M:      Patrick McHardy <kaber@trash.net>
7128 L:      netdev@vger.kernel.org
7129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7130 S:      Maintained
7131 F:      net/ipv4/
7132 F:      net/ipv6/
7133 F:      include/net/ip*
7134 F:      arch/x86/net/*
7135
7136 NETWORKING [IPSEC]
7137 M:      Steffen Klassert <steffen.klassert@secunet.com>
7138 M:      Herbert Xu <herbert@gondor.apana.org.au>
7139 M:      "David S. Miller" <davem@davemloft.net>
7140 L:      netdev@vger.kernel.org
7141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7143 S:      Maintained
7144 F:      net/core/flow.c
7145 F:      net/xfrm/
7146 F:      net/key/
7147 F:      net/ipv4/xfrm*
7148 F:      net/ipv4/esp4.c
7149 F:      net/ipv4/ah4.c
7150 F:      net/ipv4/ipcomp.c
7151 F:      net/ipv4/ip_vti.c
7152 F:      net/ipv6/xfrm*
7153 F:      net/ipv6/esp6.c
7154 F:      net/ipv6/ah6.c
7155 F:      net/ipv6/ipcomp6.c
7156 F:      net/ipv6/ip6_vti.c
7157 F:      include/uapi/linux/xfrm.h
7158 F:      include/net/xfrm.h
7159
7160 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7161 M:      Paul Moore <paul@paul-moore.com>
7162 L:      netdev@vger.kernel.org
7163 S:      Maintained
7164
7165 NETWORKING [WIRELESS]
7166 L:      linux-wireless@vger.kernel.org
7167 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7168
7169 NETWORKING DRIVERS
7170 L:      netdev@vger.kernel.org
7171 W:      http://www.linuxfoundation.org/en/Net
7172 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7175 S:      Odd Fixes
7176 F:      drivers/net/
7177 F:      include/linux/if_*
7178 F:      include/linux/netdevice.h
7179 F:      include/linux/arcdevice.h
7180 F:      include/linux/etherdevice.h
7181 F:      include/linux/fcdevice.h
7182 F:      include/linux/fddidevice.h
7183 F:      include/linux/hippidevice.h
7184 F:      include/linux/inetdevice.h
7185 F:      include/uapi/linux/if_*
7186 F:      include/uapi/linux/netdevice.h
7187
7188 NETWORKING DRIVERS (WIRELESS)
7189 M:      Kalle Valo <kvalo@codeaurora.org>
7190 L:      linux-wireless@vger.kernel.org
7191 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7193 S:      Maintained
7194 F:      drivers/net/wireless/
7195
7196 NETXEN (1/10) GbE SUPPORT
7197 M:      Manish Chopra <manish.chopra@qlogic.com>
7198 M:      Sony Chacko <sony.chacko@qlogic.com>
7199 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7200 L:      netdev@vger.kernel.org
7201 W:      http://www.qlogic.com
7202 S:      Supported
7203 F:      drivers/net/ethernet/qlogic/netxen/
7204
7205 NFC SUBSYSTEM
7206 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7207 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7208 M:      Samuel Ortiz <sameo@linux.intel.com>
7209 L:      linux-wireless@vger.kernel.org
7210 L:      linux-nfc@lists.01.org (subscribers-only)
7211 S:      Supported
7212 F:      net/nfc/
7213 F:      include/net/nfc/
7214 F:      include/uapi/linux/nfc.h
7215 F:      drivers/nfc/
7216 F:      include/linux/platform_data/pn544.h
7217 F:      Documentation/devicetree/bindings/net/nfc/
7218
7219 NFS, SUNRPC, AND LOCKD CLIENTS
7220 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7221 M:      Anna Schumaker <anna.schumaker@netapp.com>
7222 L:      linux-nfs@vger.kernel.org
7223 W:      http://client.linux-nfs.org
7224 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7225 S:      Maintained
7226 F:      fs/lockd/
7227 F:      fs/nfs/
7228 F:      fs/nfs_common/
7229 F:      net/sunrpc/
7230 F:      include/linux/lockd/
7231 F:      include/linux/nfs*
7232 F:      include/linux/sunrpc/
7233 F:      include/uapi/linux/nfs*
7234 F:      include/uapi/linux/sunrpc/
7235
7236 NILFS2 FILESYSTEM
7237 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7238 L:      linux-nilfs@vger.kernel.org
7239 W:      http://nilfs.sourceforge.net/
7240 T:      git git://github.com/konis/nilfs2.git
7241 S:      Supported
7242 F:      Documentation/filesystems/nilfs2.txt
7243 F:      fs/nilfs2/
7244 F:      include/linux/nilfs2_fs.h
7245
7246 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7247 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7248 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7249 S:      Maintained
7250 F:      Documentation/scsi/NinjaSCSI.txt
7251 F:      drivers/scsi/pcmcia/nsp_*
7252
7253 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7254 M:      GOTO Masanori <gotom@debian.or.jp>
7255 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7256 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7257 S:      Maintained
7258 F:      Documentation/scsi/NinjaSCSI.txt
7259 F:      drivers/scsi/nsp32*
7260
7261 NIOS2 ARCHITECTURE
7262 M:      Ley Foon Tan <lftan@altera.com>
7263 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7264 T:      git git://git.rocketboards.org/linux-socfpga-next.git
7265 S:      Maintained
7266 F:      arch/nios2/
7267
7268 NOKIA N900 POWER SUPPLY DRIVERS
7269 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7270 S:      Maintained
7271 F:      include/linux/power/bq2415x_charger.h
7272 F:      include/linux/power/bq27x00_battery.h
7273 F:      include/linux/power/isp1704_charger.h
7274 F:      drivers/power/bq2415x_charger.c
7275 F:      drivers/power/bq27x00_battery.c
7276 F:      drivers/power/isp1704_charger.c
7277 F:      drivers/power/rx51_battery.c
7278
7279 NTB DRIVER CORE
7280 M:      Jon Mason <jdmason@kudzu.us>
7281 M:      Dave Jiang <dave.jiang@intel.com>
7282 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7283 S:      Supported
7284 W:      https://github.com/jonmason/ntb/wiki
7285 T:      git git://github.com/jonmason/ntb.git
7286 F:      drivers/ntb/
7287 F:      drivers/net/ntb_netdev.c
7288 F:      include/linux/ntb.h
7289 F:      include/linux/ntb_transport.h
7290
7291 NTB INTEL DRIVER
7292 M:      Jon Mason <jdmason@kudzu.us>
7293 M:      Dave Jiang <dave.jiang@intel.com>
7294 S:      Supported
7295 W:      https://github.com/jonmason/ntb/wiki
7296 T:      git git://github.com/jonmason/ntb.git
7297 F:      drivers/ntb/hw/intel/
7298
7299 NTFS FILESYSTEM
7300 M:      Anton Altaparmakov <anton@tuxera.com>
7301 L:      linux-ntfs-dev@lists.sourceforge.net
7302 W:      http://www.tuxera.com/
7303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7304 S:      Supported
7305 F:      Documentation/filesystems/ntfs.txt
7306 F:      fs/ntfs/
7307
7308 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7309 M:      Antonino Daplas <adaplas@gmail.com>
7310 L:      linux-fbdev@vger.kernel.org
7311 S:      Maintained
7312 F:      drivers/video/fbdev/riva/
7313 F:      drivers/video/fbdev/nvidia/
7314
7315 NVM EXPRESS DRIVER
7316 M:      Matthew Wilcox <willy@linux.intel.com>
7317 L:      linux-nvme@lists.infradead.org
7318 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7319 S:      Supported
7320 F:      drivers/block/nvme*
7321 F:      include/linux/nvme.h
7322
7323 NVMEM FRAMEWORK
7324 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7325 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7326 S:      Maintained
7327 F:      drivers/nvmem/
7328 F:      Documentation/devicetree/bindings/nvmem/
7329 F:      include/linux/nvmem-consumer.h
7330 F:      include/linux/nvmem-provider.h
7331
7332 NXP-NCI NFC DRIVER
7333 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7334 R:      Charles Gorand <charles.gorand@effinnov.com>
7335 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7336 S:      Supported
7337 F:      drivers/nfc/nxp-nci
7338
7339 NXP TDA998X DRM DRIVER
7340 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7341 S:      Supported
7342 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7343 F:      include/drm/i2c/tda998x.h
7344
7345 NXP TFA9879 DRIVER
7346 M:      Peter Rosin <peda@axentia.se>
7347 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7348 S:      Maintained
7349 F:      sound/soc/codecs/tfa9879*
7350
7351 OMAP SUPPORT
7352 M:      Tony Lindgren <tony@atomide.com>
7353 L:      linux-omap@vger.kernel.org
7354 W:      http://www.muru.com/linux/omap/
7355 W:      http://linux.omap.com/
7356 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7358 S:      Maintained
7359 F:      arch/arm/*omap*/
7360 F:      arch/arm/configs/omap1_defconfig
7361 F:      arch/arm/configs/omap2plus_defconfig
7362 F:      drivers/i2c/busses/i2c-omap.c
7363 F:      drivers/irqchip/irq-omap-intc.c
7364 F:      drivers/mfd/*omap*.c
7365 F:      drivers/mfd/menelaus.c
7366 F:      drivers/mfd/palmas.c
7367 F:      drivers/mfd/tps65217.c
7368 F:      drivers/mfd/tps65218.c
7369 F:      drivers/mfd/tps65910.c
7370 F:      drivers/mfd/twl-core.[ch]
7371 F:      drivers/mfd/twl4030*.c
7372 F:      drivers/mfd/twl6030*.c
7373 F:      drivers/mfd/twl6040*.c
7374 F:      drivers/regulator/palmas-regulator*.c
7375 F:      drivers/regulator/pbias-regulator.c
7376 F:      drivers/regulator/tps65217-regulator.c
7377 F:      drivers/regulator/tps65218-regulator.c
7378 F:      drivers/regulator/tps65910-regulator.c
7379 F:      drivers/regulator/twl-regulator.c
7380 F:      include/linux/i2c-omap.h
7381
7382 OMAP DEVICE TREE SUPPORT
7383 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7384 M:      Tony Lindgren <tony@atomide.com>
7385 L:      linux-omap@vger.kernel.org
7386 L:      devicetree@vger.kernel.org
7387 S:      Maintained
7388 F:      arch/arm/boot/dts/*omap*
7389 F:      arch/arm/boot/dts/*am3*
7390 F:      arch/arm/boot/dts/*am4*
7391 F:      arch/arm/boot/dts/*am5*
7392 F:      arch/arm/boot/dts/*dra7*
7393
7394 OMAP CLOCK FRAMEWORK SUPPORT
7395 M:      Paul Walmsley <paul@pwsan.com>
7396 L:      linux-omap@vger.kernel.org
7397 S:      Maintained
7398 F:      arch/arm/*omap*/*clock*
7399
7400 OMAP POWER MANAGEMENT SUPPORT
7401 M:      Kevin Hilman <khilman@deeprootsystems.com>
7402 L:      linux-omap@vger.kernel.org
7403 S:      Maintained
7404 F:      arch/arm/*omap*/*pm*
7405 F:      drivers/cpufreq/omap-cpufreq.c
7406
7407 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7408 M:      Rajendra Nayak <rnayak@ti.com>
7409 M:      Paul Walmsley <paul@pwsan.com>
7410 L:      linux-omap@vger.kernel.org
7411 S:      Maintained
7412 F:      arch/arm/mach-omap2/prm*
7413
7414 OMAP AUDIO SUPPORT
7415 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7416 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7417 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7418 L:      linux-omap@vger.kernel.org
7419 S:      Maintained
7420 F:      sound/soc/omap/
7421
7422 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7423 M:      Roger Quadros <rogerq@ti.com>
7424 M:      Tony Lindgren <tony@atomide.com>
7425 L:      linux-omap@vger.kernel.org
7426 S:      Maintained
7427 F:      drivers/memory/omap-gpmc.c
7428 F:      arch/arm/mach-omap2/*gpmc*
7429
7430 OMAP FRAMEBUFFER SUPPORT
7431 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7432 L:      linux-fbdev@vger.kernel.org
7433 L:      linux-omap@vger.kernel.org
7434 S:      Maintained
7435 F:      drivers/video/fbdev/omap/
7436
7437 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7438 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7439 L:      linux-omap@vger.kernel.org
7440 L:      linux-fbdev@vger.kernel.org
7441 S:      Maintained
7442 F:      drivers/video/fbdev/omap2/
7443 F:      Documentation/arm/OMAP/DSS
7444
7445 OMAP HARDWARE SPINLOCK SUPPORT
7446 M:      Ohad Ben-Cohen <ohad@wizery.com>
7447 L:      linux-omap@vger.kernel.org
7448 S:      Maintained
7449 F:      drivers/hwspinlock/omap_hwspinlock.c
7450
7451 OMAP MMC SUPPORT
7452 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7453 L:      linux-omap@vger.kernel.org
7454 S:      Maintained
7455 F:      drivers/mmc/host/omap.c
7456
7457 OMAP HS MMC SUPPORT
7458 L:      linux-mmc@vger.kernel.org
7459 L:      linux-omap@vger.kernel.org
7460 S:      Orphan
7461 F:      drivers/mmc/host/omap_hsmmc.c
7462
7463 OMAP RANDOM NUMBER GENERATOR SUPPORT
7464 M:      Deepak Saxena <dsaxena@plexity.net>
7465 S:      Maintained
7466 F:      drivers/char/hw_random/omap-rng.c
7467
7468 OMAP HWMOD SUPPORT
7469 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7470 M:      Paul Walmsley <paul@pwsan.com>
7471 L:      linux-omap@vger.kernel.org
7472 S:      Maintained
7473 F:      arch/arm/mach-omap2/omap_hwmod.*
7474
7475 OMAP HWMOD DATA
7476 M:      Paul Walmsley <paul@pwsan.com>
7477 L:      linux-omap@vger.kernel.org
7478 S:      Maintained
7479 F:      arch/arm/mach-omap2/omap_hwmod*data*
7480
7481 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7482 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7483 L:      linux-omap@vger.kernel.org
7484 S:      Maintained
7485 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7486
7487 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7488 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7489 L:      linux-media@vger.kernel.org
7490 S:      Maintained
7491 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7492 F:      drivers/media/platform/omap3isp/
7493 F:      drivers/staging/media/omap4iss/
7494
7495 OMAP USB SUPPORT
7496 M:      Felipe Balbi <balbi@ti.com>
7497 L:      linux-usb@vger.kernel.org
7498 L:      linux-omap@vger.kernel.org
7499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7500 S:      Maintained
7501 F:      drivers/usb/*/*omap*
7502 F:      arch/arm/*omap*/usb*
7503
7504 OMAP GPIO DRIVER
7505 M:      Javier Martinez Canillas <javier@dowhile0.org>
7506 M:      Santosh Shilimkar <ssantosh@kernel.org>
7507 M:      Kevin Hilman <khilman@deeprootsystems.com>
7508 L:      linux-omap@vger.kernel.org
7509 S:      Maintained
7510 F:      drivers/gpio/gpio-omap.c
7511
7512 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7513 M:      Mark Jackson <mpfj@newflow.co.uk>
7514 L:      linux-omap@vger.kernel.org
7515 S:      Maintained
7516 F:      arch/arm/boot/dts/am335x-nano.dts
7517
7518 OMFS FILESYSTEM
7519 M:      Bob Copeland <me@bobcopeland.com>
7520 L:      linux-karma-devel@lists.sourceforge.net
7521 S:      Maintained
7522 F:      Documentation/filesystems/omfs.txt
7523 F:      fs/omfs/
7524
7525 OMNIKEY CARDMAN 4000 DRIVER
7526 M:      Harald Welte <laforge@gnumonks.org>
7527 S:      Maintained
7528 F:      drivers/char/pcmcia/cm4000_cs.c
7529 F:      include/linux/cm4000_cs.h
7530 F:      include/uapi/linux/cm4000_cs.h
7531
7532 OMNIKEY CARDMAN 4040 DRIVER
7533 M:      Harald Welte <laforge@gnumonks.org>
7534 S:      Maintained
7535 F:      drivers/char/pcmcia/cm4040_cs.*
7536
7537 OMNIVISION OV7670 SENSOR DRIVER
7538 M:      Jonathan Corbet <corbet@lwn.net>
7539 L:      linux-media@vger.kernel.org
7540 T:      git git://linuxtv.org/media_tree.git
7541 S:      Maintained
7542 F:      drivers/media/i2c/ov7670.c
7543
7544 ONENAND FLASH DRIVER
7545 M:      Kyungmin Park <kyungmin.park@samsung.com>
7546 L:      linux-mtd@lists.infradead.org
7547 S:      Maintained
7548 F:      drivers/mtd/onenand/
7549 F:      include/linux/mtd/onenand*.h
7550
7551 ONSTREAM SCSI TAPE DRIVER
7552 M:      Willem Riede <osst@riede.org>
7553 L:      osst-users@lists.sourceforge.net
7554 L:      linux-scsi@vger.kernel.org
7555 S:      Maintained
7556 F:      Documentation/scsi/osst.txt
7557 F:      drivers/scsi/osst.*
7558 F:      drivers/scsi/osst_*.h
7559 F:      drivers/scsi/st.h
7560
7561 OPENCORES I2C BUS DRIVER
7562 M:      Peter Korsgaard <jacmet@sunsite.dk>
7563 L:      linux-i2c@vger.kernel.org
7564 S:      Maintained
7565 F:      Documentation/i2c/busses/i2c-ocores
7566 F:      drivers/i2c/busses/i2c-ocores.c
7567
7568 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7569 M:      Rob Herring <robh+dt@kernel.org>
7570 M:      Frank Rowand <frowand.list@gmail.com>
7571 M:      Grant Likely <grant.likely@linaro.org>
7572 L:      devicetree@vger.kernel.org
7573 W:      http://www.devicetree.org/
7574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7575 S:      Maintained
7576 F:      drivers/of/
7577 F:      include/linux/of*.h
7578 F:      scripts/dtc/
7579
7580 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7581 M:      Rob Herring <robh+dt@kernel.org>
7582 M:      Pawel Moll <pawel.moll@arm.com>
7583 M:      Mark Rutland <mark.rutland@arm.com>
7584 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7585 M:      Kumar Gala <galak@codeaurora.org>
7586 L:      devicetree@vger.kernel.org
7587 S:      Maintained
7588 F:      Documentation/devicetree/
7589 F:      arch/*/boot/dts/
7590 F:      include/dt-bindings/
7591
7592 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7593 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7594 L:      devicetree@vger.kernel.org
7595 S:      Maintained
7596 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7597 F:      Documentation/devicetree/overlay-notes.txt
7598 F:      drivers/of/overlay.c
7599 F:      drivers/of/resolver.c
7600
7601 OPENRISC ARCHITECTURE
7602 M:      Jonas Bonn <jonas@southpole.se>
7603 W:      http://openrisc.net
7604 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7605 S:      Maintained
7606 T:      git git://openrisc.net/~jonas/linux
7607 F:      arch/openrisc/
7608
7609 OPENVSWITCH
7610 M:      Pravin Shelar <pshelar@nicira.com>
7611 L:      netdev@vger.kernel.org
7612 L:      dev@openvswitch.org
7613 W:      http://openvswitch.org
7614 S:      Maintained
7615 F:      net/openvswitch/
7616 F:      include/uapi/linux/openvswitch.h
7617
7618 OPL4 DRIVER
7619 M:      Clemens Ladisch <clemens@ladisch.de>
7620 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7621 T:      git git://git.alsa-project.org/alsa-kernel.git
7622 S:      Maintained
7623 F:      sound/drivers/opl4/
7624
7625 OPROFILE
7626 M:      Robert Richter <rric@kernel.org>
7627 L:      oprofile-list@lists.sf.net
7628 S:      Maintained
7629 F:      arch/*/include/asm/oprofile*.h
7630 F:      arch/*/oprofile/
7631 F:      drivers/oprofile/
7632 F:      include/linux/oprofile.h
7633
7634 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7635 M:      Mark Fasheh <mfasheh@suse.com>
7636 M:      Joel Becker <jlbec@evilplan.org>
7637 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7638 W:      http://ocfs2.wiki.kernel.org
7639 S:      Supported
7640 F:      Documentation/filesystems/ocfs2.txt
7641 F:      Documentation/filesystems/dlmfs.txt
7642 F:      fs/ocfs2/
7643
7644 ORINOCO DRIVER
7645 L:      linux-wireless@vger.kernel.org
7646 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7647 W:      http://www.nongnu.org/orinoco/
7648 S:      Orphan
7649 F:      drivers/net/wireless/orinoco/
7650
7651 OSD LIBRARY and FILESYSTEM
7652 M:      Boaz Harrosh <ooo@electrozaur.com>
7653 M:      Benny Halevy <bhalevy@primarydata.com>
7654 L:      osd-dev@open-osd.org
7655 W:      http://open-osd.org
7656 T:      git git://git.open-osd.org/open-osd.git
7657 S:      Maintained
7658 F:      drivers/scsi/osd/
7659 F:      include/scsi/osd_*
7660 F:      fs/exofs/
7661
7662 OVERLAY FILESYSTEM
7663 M:      Miklos Szeredi <miklos@szeredi.hu>
7664 L:      linux-unionfs@vger.kernel.org
7665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7666 S:      Supported
7667 F:      fs/overlayfs/
7668 F:      Documentation/filesystems/overlayfs.txt
7669
7670 P54 WIRELESS DRIVER
7671 M:      Christian Lamparter <chunkeey@googlemail.com>
7672 L:      linux-wireless@vger.kernel.org
7673 W:      http://wireless.kernel.org/en/users/Drivers/p54
7674 S:      Maintained
7675 F:      drivers/net/wireless/p54/
7676
7677 PA SEMI ETHERNET DRIVER
7678 M:      Olof Johansson <olof@lixom.net>
7679 L:      netdev@vger.kernel.org
7680 S:      Maintained
7681 F:      drivers/net/ethernet/pasemi/*
7682
7683 PA SEMI SMBUS DRIVER
7684 M:      Olof Johansson <olof@lixom.net>
7685 L:      linux-i2c@vger.kernel.org
7686 S:      Maintained
7687 F:      drivers/i2c/busses/i2c-pasemi.c
7688
7689 PADATA PARALLEL EXECUTION MECHANISM
7690 M:      Steffen Klassert <steffen.klassert@secunet.com>
7691 L:      linux-crypto@vger.kernel.org
7692 S:      Maintained
7693 F:      kernel/padata.c
7694 F:      include/linux/padata.h
7695 F:      Documentation/padata.txt
7696
7697 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7698 M:      Harald Welte <laforge@gnumonks.org>
7699 L:      platform-driver-x86@vger.kernel.org
7700 S:      Maintained
7701 F:      drivers/platform/x86/panasonic-laptop.c
7702
7703 PANASONIC MN10300/AM33/AM34 PORT
7704 M:      David Howells <dhowells@redhat.com>
7705 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7706 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7707 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7708 S:      Maintained
7709 F:      Documentation/mn10300/
7710 F:      arch/mn10300/
7711
7712 PARALLEL PORT SUBSYSTEM
7713 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7714 M:      Sudip Mukherjee <sudip@vectorindia.org>
7715 L:      linux-parport@lists.infradead.org (subscribers-only)
7716 S:      Maintained
7717 F:      drivers/parport/
7718 F:      include/linux/parport*.h
7719 F:      drivers/char/ppdev.c
7720 F:      include/uapi/linux/ppdev.h
7721 F:      Documentation/parport*.txt
7722
7723 PARAVIRT_OPS INTERFACE
7724 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7725 M:      Chris Wright <chrisw@sous-sol.org>
7726 M:      Alok Kataria <akataria@vmware.com>
7727 M:      Rusty Russell <rusty@rustcorp.com.au>
7728 L:      virtualization@lists.linux-foundation.org
7729 S:      Supported
7730 F:      Documentation/virtual/paravirt_ops.txt
7731 F:      arch/*/kernel/paravirt*
7732 F:      arch/*/include/asm/paravirt.h
7733
7734 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7735 M:      Tim Waugh <tim@cyberelk.net>
7736 L:      linux-parport@lists.infradead.org (subscribers-only)
7737 S:      Maintained
7738 F:      Documentation/blockdev/paride.txt
7739 F:      drivers/block/paride/
7740
7741 PARISC ARCHITECTURE
7742 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7743 M:      Helge Deller <deller@gmx.de>
7744 L:      linux-parisc@vger.kernel.org
7745 W:      http://www.parisc-linux.org/
7746 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7749 S:      Maintained
7750 F:      arch/parisc/
7751 F:      Documentation/parisc/
7752 F:      drivers/parisc/
7753 F:      drivers/char/agp/parisc-agp.c
7754 F:      drivers/input/serio/gscps2.c
7755 F:      drivers/parport/parport_gsc.*
7756 F:      drivers/tty/serial/8250/8250_gsc.c
7757 F:      drivers/video/fbdev/sti*
7758 F:      drivers/video/console/sti*
7759 F:      drivers/video/logo/logo_parisc*
7760
7761 PC87360 HARDWARE MONITORING DRIVER
7762 M:      Jim Cromie <jim.cromie@gmail.com>
7763 L:      lm-sensors@lm-sensors.org
7764 S:      Maintained
7765 F:      Documentation/hwmon/pc87360
7766 F:      drivers/hwmon/pc87360.c
7767
7768 PC8736x GPIO DRIVER
7769 M:      Jim Cromie <jim.cromie@gmail.com>
7770 S:      Maintained
7771 F:      drivers/char/pc8736x_gpio.c
7772
7773 PC87427 HARDWARE MONITORING DRIVER
7774 M:      Jean Delvare <jdelvare@suse.com>
7775 L:      lm-sensors@lm-sensors.org
7776 S:      Maintained
7777 F:      Documentation/hwmon/pc87427
7778 F:      drivers/hwmon/pc87427.c
7779
7780 PCA9532 LED DRIVER
7781 M:      Riku Voipio <riku.voipio@iki.fi>
7782 S:      Maintained
7783 F:      drivers/leds/leds-pca9532.c
7784 F:      include/linux/leds-pca9532.h
7785
7786 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7787 M:      Guenter Roeck <linux@roeck-us.net>
7788 L:      linux-i2c@vger.kernel.org
7789 S:      Maintained
7790 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7791
7792 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7793 M:      Khalid Aziz <khalid@gonehiking.org>
7794 S:      Maintained
7795 F:      drivers/firmware/pcdp.*
7796
7797 PCI ERROR RECOVERY
7798 M:      Linas Vepstas <linasvepstas@gmail.com>
7799 L:      linux-pci@vger.kernel.org
7800 S:      Supported
7801 F:      Documentation/PCI/pci-error-recovery.txt
7802
7803 PCI SUBSYSTEM
7804 M:      Bjorn Helgaas <bhelgaas@google.com>
7805 L:      linux-pci@vger.kernel.org
7806 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7808 S:      Supported
7809 F:      Documentation/PCI/
7810 F:      drivers/pci/
7811 F:      include/linux/pci*
7812 F:      arch/x86/pci/
7813 F:      arch/x86/kernel/quirks.c
7814
7815 PCI DRIVER FOR ARM VERSATILE PLATFORM
7816 M:      Rob Herring <robh@kernel.org>
7817 L:      linux-pci@vger.kernel.org
7818 L:      linux-arm-kernel@lists.infradead.org
7819 S:      Maintained
7820 F:      Documentation/devicetree/bindings/pci/versatile.txt
7821 F:      drivers/pci/host/pci-versatile.c
7822
7823 PCI DRIVER FOR APPLIEDMICRO XGENE
7824 M:      Tanmay Inamdar <tinamdar@apm.com>
7825 L:      linux-pci@vger.kernel.org
7826 L:      linux-arm-kernel@lists.infradead.org
7827 S:      Maintained
7828 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7829 F:      drivers/pci/host/pci-xgene.c
7830
7831 PCI DRIVER FOR FREESCALE LAYERSCAPE
7832 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7833 M:      Mingkai Hu <mingkai.hu@freescale.com>
7834 M:      Roy Zang <tie-fei.zang@freescale.com>
7835 L:      linuxppc-dev@lists.ozlabs.org
7836 L:      linux-pci@vger.kernel.org
7837 L:      linux-arm-kernel@lists.infradead.org
7838 S:      Maintained
7839 F:      drivers/pci/host/*layerscape*
7840
7841 PCI DRIVER FOR IMX6
7842 M:      Richard Zhu <Richard.Zhu@freescale.com>
7843 M:      Lucas Stach <l.stach@pengutronix.de>
7844 L:      linux-pci@vger.kernel.org
7845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7846 S:      Maintained
7847 F:      drivers/pci/host/*imx6*
7848
7849 PCI DRIVER FOR TI KEYSTONE
7850 M:      Murali Karicheri <m-karicheri2@ti.com>
7851 L:      linux-pci@vger.kernel.org
7852 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7853 S:      Maintained
7854 F:      drivers/pci/host/*keystone*
7855
7856 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7857 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7858 M:      Jason Cooper <jason@lakedaemon.net>
7859 L:      linux-pci@vger.kernel.org
7860 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7861 S:      Maintained
7862 F:      drivers/pci/host/*mvebu*
7863
7864 PCI DRIVER FOR NVIDIA TEGRA
7865 M:      Thierry Reding <thierry.reding@gmail.com>
7866 L:      linux-tegra@vger.kernel.org
7867 L:      linux-pci@vger.kernel.org
7868 S:      Supported
7869 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
7870 F:      drivers/pci/host/pci-tegra.c
7871
7872 PCI DRIVER FOR TI DRA7XX
7873 M:      Kishon Vijay Abraham I <kishon@ti.com>
7874 L:      linux-omap@vger.kernel.org
7875 L:      linux-pci@vger.kernel.org
7876 S:      Supported
7877 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
7878 F:      drivers/pci/host/pci-dra7xx.c
7879
7880 PCI DRIVER FOR RENESAS R-CAR
7881 M:      Simon Horman <horms@verge.net.au>
7882 L:      linux-pci@vger.kernel.org
7883 L:      linux-sh@vger.kernel.org
7884 S:      Maintained
7885 F:      drivers/pci/host/*rcar*
7886
7887 PCI DRIVER FOR SAMSUNG EXYNOS
7888 M:      Jingoo Han <jingoohan1@gmail.com>
7889 L:      linux-pci@vger.kernel.org
7890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7891 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7892 S:      Maintained
7893 F:      drivers/pci/host/pci-exynos.c
7894
7895 PCI DRIVER FOR SYNOPSIS DESIGNWARE
7896 M:      Jingoo Han <jingoohan1@gmail.com>
7897 M:      Pratyush Anand <pratyush.anand@gmail.com>
7898 L:      linux-pci@vger.kernel.org
7899 S:      Maintained
7900 F:      drivers/pci/host/*designware*
7901
7902 PCI DRIVER FOR GENERIC OF HOSTS
7903 M:      Will Deacon <will.deacon@arm.com>
7904 L:      linux-pci@vger.kernel.org
7905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7906 S:      Maintained
7907 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
7908 F:      drivers/pci/host/pci-host-generic.c
7909
7910 PCIE DRIVER FOR ST SPEAR13XX
7911 M:      Pratyush Anand <pratyush.anand@gmail.com>
7912 L:      linux-pci@vger.kernel.org
7913 S:      Maintained
7914 F:      drivers/pci/host/*spear*
7915
7916 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
7917 M:      Duc Dang <dhdang@apm.com>
7918 L:      linux-pci@vger.kernel.org
7919 L:      linux-arm-kernel@lists.infradead.org
7920 S:      Maintained
7921 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
7922 F:      drivers/pci/host/pci-xgene-msi.c
7923
7924 PCMCIA SUBSYSTEM
7925 P:      Linux PCMCIA Team
7926 L:      linux-pcmcia@lists.infradead.org
7927 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
7928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
7929 S:      Maintained
7930 F:      Documentation/pcmcia/
7931 F:      drivers/pcmcia/
7932 F:      include/pcmcia/
7933
7934 PCNET32 NETWORK DRIVER
7935 M:      Don Fry <pcnet32@frontier.com>
7936 L:      netdev@vger.kernel.org
7937 S:      Maintained
7938 F:      drivers/net/ethernet/amd/pcnet32.c
7939
7940 PCRYPT PARALLEL CRYPTO ENGINE
7941 M:      Steffen Klassert <steffen.klassert@secunet.com>
7942 L:      linux-crypto@vger.kernel.org
7943 S:      Maintained
7944 F:      crypto/pcrypt.c
7945 F:      include/crypto/pcrypt.h
7946
7947 PER-CPU MEMORY ALLOCATOR
7948 M:      Tejun Heo <tj@kernel.org>
7949 M:      Christoph Lameter <cl@linux-foundation.org>
7950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
7951 S:      Maintained
7952 F:      include/linux/percpu*.h
7953 F:      mm/percpu*.c
7954 F:      arch/*/include/asm/percpu.h
7955
7956 PER-TASK DELAY ACCOUNTING
7957 M:      Balbir Singh <bsingharora@gmail.com>
7958 S:      Maintained
7959 F:      include/linux/delayacct.h
7960 F:      kernel/delayacct.c
7961
7962 PERFORMANCE EVENTS SUBSYSTEM
7963 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
7964 M:      Ingo Molnar <mingo@redhat.com>
7965 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
7966 L:      linux-kernel@vger.kernel.org
7967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
7968 S:      Supported
7969 F:      kernel/events/*
7970 F:      include/linux/perf_event.h
7971 F:      include/uapi/linux/perf_event.h
7972 F:      arch/*/kernel/perf_event*.c
7973 F:      arch/*/kernel/*/perf_event*.c
7974 F:      arch/*/kernel/*/*/perf_event*.c
7975 F:      arch/*/include/asm/perf_event.h
7976 F:      arch/*/kernel/perf_callchain.c
7977 F:      tools/perf/
7978
7979 PERSONALITY HANDLING
7980 M:      Christoph Hellwig <hch@infradead.org>
7981 L:      linux-abi-devel@lists.sourceforge.net
7982 S:      Maintained
7983 F:      include/linux/personality.h
7984 F:      include/uapi/linux/personality.h
7985
7986 PHONET PROTOCOL
7987 M:      Remi Denis-Courmont <courmisch@gmail.com>
7988 S:      Supported
7989 F:      Documentation/networking/phonet.txt
7990 F:      include/linux/phonet.h
7991 F:      include/net/phonet/
7992 F:      include/uapi/linux/phonet.h
7993 F:      net/phonet/
7994
7995 PHRAM MTD DRIVER
7996 M:      Joern Engel <joern@lazybastard.org>
7997 L:      linux-mtd@lists.infradead.org
7998 S:      Maintained
7999 F:      drivers/mtd/devices/phram.c
8000
8001 PICOLCD HID DRIVER
8002 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8003 L:      linux-input@vger.kernel.org
8004 S:      Maintained
8005 F:      drivers/hid/hid-picolcd*
8006
8007 PICOXCELL SUPPORT
8008 M:      Jamie Iles <jamie@jamieiles.com>
8009 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8010 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8011 S:      Supported
8012 F:      arch/arm/boot/dts/picoxcell*
8013 F:      arch/arm/mach-picoxcell/
8014 F:      drivers/crypto/picoxcell*
8015
8016 PIN CONTROL SUBSYSTEM
8017 M:      Linus Walleij <linus.walleij@linaro.org>
8018 L:      linux-gpio@vger.kernel.org
8019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8020 S:      Maintained
8021 F:      drivers/pinctrl/
8022 F:      include/linux/pinctrl/
8023
8024 PIN CONTROLLER - ATMEL AT91
8025 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8026 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8027 S:      Maintained
8028 F:      drivers/pinctrl/pinctrl-at91.*
8029
8030 PIN CONTROLLER - INTEL
8031 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8032 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8033 S:      Maintained
8034 F:      drivers/pinctrl/intel/
8035
8036 PIN CONTROLLER - RENESAS
8037 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8038 L:      linux-sh@vger.kernel.org
8039 S:      Maintained
8040 F:      drivers/pinctrl/sh-pfc/
8041
8042 PIN CONTROLLER - SAMSUNG
8043 M:      Tomasz Figa <tomasz.figa@gmail.com>
8044 M:      Thomas Abraham <thomas.abraham@linaro.org>
8045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8046 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8047 S:      Maintained
8048 F:      drivers/pinctrl/samsung/
8049
8050 PIN CONTROLLER - ST SPEAR
8051 M:      Viresh Kumar <vireshk@kernel.org>
8052 L:      spear-devel@list.st.com
8053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8054 W:      http://www.st.com/spear
8055 S:      Maintained
8056 F:      drivers/pinctrl/spear/
8057
8058 PKTCDVD DRIVER
8059 M:      Jiri Kosina <jikos@kernel.org>
8060 S:      Maintained
8061 F:      drivers/block/pktcdvd.c
8062 F:      include/linux/pktcdvd.h
8063 F:      include/uapi/linux/pktcdvd.h
8064
8065 PKUNITY SOC DRIVERS
8066 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8067 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8068 S:      Maintained
8069 T:      git git://github.com/gxt/linux.git
8070 F:      drivers/input/serio/i8042-unicore32io.h
8071 F:      drivers/i2c/busses/i2c-puv3.c
8072 F:      drivers/video/fbdev/fb-puv3.c
8073 F:      drivers/rtc/rtc-puv3.c
8074
8075 PMBUS HARDWARE MONITORING DRIVERS
8076 M:      Guenter Roeck <linux@roeck-us.net>
8077 L:      lm-sensors@lm-sensors.org
8078 W:      http://www.lm-sensors.org/
8079 W:      http://www.roeck-us.net/linux/drivers/
8080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8081 S:      Maintained
8082 F:      Documentation/hwmon/pmbus
8083 F:      drivers/hwmon/pmbus/
8084 F:      include/linux/i2c/pmbus.h
8085
8086 PMC SIERRA MaxRAID DRIVER
8087 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
8088 L:      linux-scsi@vger.kernel.org
8089 W:      http://www.pmc-sierra.com/
8090 S:      Supported
8091 F:      drivers/scsi/pmcraid.*
8092
8093 PMC SIERRA PM8001 DRIVER
8094 M:      Jack Wang <jinpu.wang@profitbricks.com>
8095 M:      lindar_liu@usish.com
8096 L:      pmchba@pmcs.com
8097 L:      linux-scsi@vger.kernel.org
8098 S:      Supported
8099 F:      drivers/scsi/pm8001/
8100
8101 POSIX CLOCKS and TIMERS
8102 M:      Thomas Gleixner <tglx@linutronix.de>
8103 L:      linux-kernel@vger.kernel.org
8104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8105 S:      Maintained
8106 F:      fs/timerfd.c
8107 F:      include/linux/timer*
8108 F:      kernel/time/*timer*
8109
8110 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8111 M:      Sebastian Reichel <sre@kernel.org>
8112 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8113 M:      David Woodhouse <dwmw2@infradead.org>
8114 L:      linux-pm@vger.kernel.org
8115 T:      git git://git.infradead.org/battery-2.6.git
8116 S:      Maintained
8117 F:      include/linux/power_supply.h
8118 F:      drivers/power/
8119 X:      drivers/power/avs/
8120
8121 PNP SUPPORT
8122 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8123 S:      Maintained
8124 F:      drivers/pnp/
8125
8126 PNXxxxx I2C DRIVER
8127 M:      Vitaly Wool <vitalywool@gmail.com>
8128 L:      linux-i2c@vger.kernel.org
8129 S:      Maintained
8130 F:      drivers/i2c/busses/i2c-pnx.c
8131
8132 PPP PROTOCOL DRIVERS AND COMPRESSORS
8133 M:      Paul Mackerras <paulus@samba.org>
8134 L:      linux-ppp@vger.kernel.org
8135 S:      Maintained
8136 F:      drivers/net/ppp/ppp_*
8137
8138 PPP OVER ATM (RFC 2364)
8139 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8140 S:      Maintained
8141 F:      net/atm/pppoatm.c
8142 F:      include/uapi/linux/atmppp.h
8143
8144 PPP OVER ETHERNET
8145 M:      Michal Ostrowski <mostrows@earthlink.net>
8146 S:      Maintained
8147 F:      drivers/net/ppp/pppoe.c
8148 F:      drivers/net/ppp/pppox.c
8149
8150 PPP OVER L2TP
8151 M:      James Chapman <jchapman@katalix.com>
8152 S:      Maintained
8153 F:      net/l2tp/l2tp_ppp.c
8154 F:      include/linux/if_pppol2tp.h
8155 F:      include/uapi/linux/if_pppol2tp.h
8156
8157 PPS SUPPORT
8158 M:      Rodolfo Giometti <giometti@enneenne.com>
8159 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8160 L:      linuxpps@ml.enneenne.com (subscribers-only)
8161 S:      Maintained
8162 F:      Documentation/pps/
8163 F:      drivers/pps/
8164 F:      include/linux/pps*.h
8165
8166 PPTP DRIVER
8167 M:      Dmitry Kozlov <xeb@mail.ru>
8168 L:      netdev@vger.kernel.org
8169 S:      Maintained
8170 F:      drivers/net/ppp/pptp.c
8171 W:      http://sourceforge.net/projects/accel-pptp
8172
8173 PREEMPTIBLE KERNEL
8174 M:      Robert Love <rml@tech9.net>
8175 L:      kpreempt-tech@lists.sourceforge.net
8176 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8177 S:      Supported
8178 F:      Documentation/preempt-locking.txt
8179 F:      include/linux/preempt.h
8180
8181 PRISM54 WIRELESS DRIVER
8182 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8183 L:      linux-wireless@vger.kernel.org
8184 W:      http://wireless.kernel.org/en/users/Drivers/p54
8185 S:      Obsolete
8186 F:      drivers/net/wireless/prism54/
8187
8188 PS3 NETWORK SUPPORT
8189 M:      Geoff Levand <geoff@infradead.org>
8190 L:      netdev@vger.kernel.org
8191 L:      linuxppc-dev@lists.ozlabs.org
8192 S:      Maintained
8193 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8194
8195 PS3 PLATFORM SUPPORT
8196 M:      Geoff Levand <geoff@infradead.org>
8197 L:      linuxppc-dev@lists.ozlabs.org
8198 S:      Maintained
8199 F:      arch/powerpc/boot/ps3*
8200 F:      arch/powerpc/include/asm/lv1call.h
8201 F:      arch/powerpc/include/asm/ps3*.h
8202 F:      arch/powerpc/platforms/ps3/
8203 F:      drivers/*/ps3*
8204 F:      drivers/ps3/
8205 F:      drivers/rtc/rtc-ps3.c
8206 F:      drivers/usb/host/*ps3.c
8207 F:      sound/ppc/snd_ps3*
8208
8209 PS3VRAM DRIVER
8210 M:      Jim Paris <jim@jtan.com>
8211 M:      Geoff Levand <geoff@infradead.org>
8212 L:      linuxppc-dev@lists.ozlabs.org
8213 S:      Maintained
8214 F:      drivers/block/ps3vram.c
8215
8216 PSTORE FILESYSTEM
8217 M:      Anton Vorontsov <anton@enomsg.org>
8218 M:      Colin Cross <ccross@android.com>
8219 M:      Kees Cook <keescook@chromium.org>
8220 M:      Tony Luck <tony.luck@intel.com>
8221 S:      Maintained
8222 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8223 F:      fs/pstore/
8224 F:      include/linux/pstore*
8225 F:      drivers/firmware/efi/efi-pstore.c
8226 F:      drivers/acpi/apei/erst.c
8227
8228 PTP HARDWARE CLOCK SUPPORT
8229 M:      Richard Cochran <richardcochran@gmail.com>
8230 L:      netdev@vger.kernel.org
8231 S:      Maintained
8232 W:      http://linuxptp.sourceforge.net/
8233 F:      Documentation/ABI/testing/sysfs-ptp
8234 F:      Documentation/ptp/*
8235 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8236 F:      drivers/net/phy/dp83640*
8237 F:      drivers/ptp/*
8238 F:      include/linux/ptp_cl*
8239
8240 PTRACE SUPPORT
8241 M:      Roland McGrath <roland@hack.frob.com>
8242 M:      Oleg Nesterov <oleg@redhat.com>
8243 S:      Maintained
8244 F:      include/asm-generic/syscall.h
8245 F:      include/linux/ptrace.h
8246 F:      include/linux/regset.h
8247 F:      include/linux/tracehook.h
8248 F:      include/uapi/linux/ptrace.h
8249 F:      kernel/ptrace.c
8250
8251 PVRUSB2 VIDEO4LINUX DRIVER
8252 M:      Mike Isely <isely@pobox.com>
8253 L:      pvrusb2@isely.net       (subscribers-only)
8254 L:      linux-media@vger.kernel.org
8255 W:      http://www.isely.net/pvrusb2/
8256 T:      git git://linuxtv.org/media_tree.git
8257 S:      Maintained
8258 F:      Documentation/video4linux/README.pvrusb2
8259 F:      drivers/media/usb/pvrusb2/
8260
8261 PWC WEBCAM DRIVER
8262 M:      Hans de Goede <hdegoede@redhat.com>
8263 L:      linux-media@vger.kernel.org
8264 T:      git git://linuxtv.org/media_tree.git
8265 S:      Maintained
8266 F:      drivers/media/usb/pwc/*
8267
8268 PWM FAN DRIVER
8269 M:      Kamil Debski <k.debski@samsung.com>
8270 L:      lm-sensors@lm-sensors.org
8271 S:      Supported
8272 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8273 F:      Documentation/hwmon/pwm-fan
8274 F:      drivers/hwmon/pwm-fan.c
8275
8276 PWM SUBSYSTEM
8277 M:      Thierry Reding <thierry.reding@gmail.com>
8278 L:      linux-pwm@vger.kernel.org
8279 S:      Maintained
8280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8281 F:      Documentation/pwm.txt
8282 F:      Documentation/devicetree/bindings/pwm/
8283 F:      include/linux/pwm.h
8284 F:      drivers/pwm/
8285 F:      drivers/video/backlight/pwm_bl.c
8286 F:      include/linux/pwm_backlight.h
8287
8288 PXA2xx/PXA3xx SUPPORT
8289 M:      Daniel Mack <daniel@zonque.org>
8290 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8291 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8293 T:      git git://github.com/hzhuang1/linux.git
8294 T:      git git://github.com/rjarzmik/linux.git
8295 S:      Maintained
8296 F:      arch/arm/mach-pxa/
8297 F:      drivers/dma/pxa*
8298 F:      drivers/pcmcia/pxa2xx*
8299 F:      drivers/spi/spi-pxa2xx*
8300 F:      drivers/usb/gadget/udc/pxa2*
8301 F:      include/sound/pxa2xx-lib.h
8302 F:      sound/arm/pxa*
8303 F:      sound/soc/pxa/
8304
8305 PXA3xx NAND FLASH DRIVER
8306 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8307 L:      linux-mtd@lists.infradead.org
8308 S:      Maintained
8309 F:      drivers/mtd/nand/pxa3xx_nand.c
8310
8311 MMP SUPPORT
8312 M:      Eric Miao <eric.y.miao@gmail.com>
8313 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8314 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8315 T:      git git://github.com/hzhuang1/linux.git
8316 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8317 S:      Maintained
8318 F:      arch/arm/mach-mmp/
8319
8320 PXA MMCI DRIVER
8321 S:      Orphan
8322
8323 PXA RTC DRIVER
8324 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8325 L:      rtc-linux@googlegroups.com
8326 S:      Maintained
8327
8328 QAT DRIVER
8329 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8330 L:      qat-linux@intel.com
8331 S:      Supported
8332 F:      drivers/crypto/qat/
8333
8334 QIB DRIVER
8335 M:      Mike Marciniszyn <infinipath@intel.com>
8336 L:      linux-rdma@vger.kernel.org
8337 S:      Supported
8338 F:      drivers/infiniband/hw/qib/
8339
8340 QLOGIC QLA1280 SCSI DRIVER
8341 M:      Michael Reed <mdr@sgi.com>
8342 L:      linux-scsi@vger.kernel.org
8343 S:      Maintained
8344 F:      drivers/scsi/qla1280.[ch]
8345
8346 QLOGIC QLA2XXX FC-SCSI DRIVER
8347 M:      qla2xxx-upstream@qlogic.com
8348 L:      linux-scsi@vger.kernel.org
8349 S:      Supported
8350 F:      Documentation/scsi/LICENSE.qla2xxx
8351 F:      drivers/scsi/qla2xxx/
8352
8353 QLOGIC QLA4XXX iSCSI DRIVER
8354 M:      QLogic-Storage-Upstream@qlogic.com
8355 L:      linux-scsi@vger.kernel.org
8356 S:      Supported
8357 F:      Documentation/scsi/LICENSE.qla4xxx
8358 F:      drivers/scsi/qla4xxx/
8359
8360 QLOGIC QLA3XXX NETWORK DRIVER
8361 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8362 M:      Ron Mercer <ron.mercer@qlogic.com>
8363 M:      linux-driver@qlogic.com
8364 L:      netdev@vger.kernel.org
8365 S:      Supported
8366 F:      Documentation/networking/LICENSE.qla3xxx
8367 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8368
8369 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8370 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
8371 M:      Dept-GELinuxNICDev@qlogic.com
8372 L:      netdev@vger.kernel.org
8373 S:      Supported
8374 F:      drivers/net/ethernet/qlogic/qlcnic/
8375
8376 QLOGIC QLGE 10Gb ETHERNET DRIVER
8377 M:      Harish Patil <harish.patil@qlogic.com>
8378 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8379 M:      Dept-GELinuxNICDev@qlogic.com
8380 M:      linux-driver@qlogic.com
8381 L:      netdev@vger.kernel.org
8382 S:      Supported
8383 F:      drivers/net/ethernet/qlogic/qlge/
8384
8385 QNX4 FILESYSTEM
8386 M:      Anders Larsen <al@alarsen.net>
8387 W:      http://www.alarsen.net/linux/qnx4fs/
8388 S:      Maintained
8389 F:      fs/qnx4/
8390 F:      include/uapi/linux/qnx4_fs.h
8391 F:      include/uapi/linux/qnxtypes.h
8392
8393 QT1010 MEDIA DRIVER
8394 M:      Antti Palosaari <crope@iki.fi>
8395 L:      linux-media@vger.kernel.org
8396 W:      http://linuxtv.org/
8397 W:      http://palosaari.fi/linux/
8398 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8399 T:      git git://linuxtv.org/anttip/media_tree.git
8400 S:      Maintained
8401 F:      drivers/media/tuners/qt1010*
8402
8403 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8404 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8405 L:      linux-wireless@vger.kernel.org
8406 L:      ath9k-devel@lists.ath9k.org
8407 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8408 S:      Supported
8409 F:      drivers/net/wireless/ath/ath9k/
8410
8411 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8412 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8413 L:      ath10k@lists.infradead.org
8414 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8415 T:      git git://github.com/kvalo/ath.git
8416 S:      Supported
8417 F:      drivers/net/wireless/ath/ath10k/
8418
8419 QUALCOMM HEXAGON ARCHITECTURE
8420 M:      Richard Kuo <rkuo@codeaurora.org>
8421 L:      linux-hexagon@vger.kernel.org
8422 S:      Supported
8423 F:      arch/hexagon/
8424
8425 QUALCOMM WCN36XX WIRELESS DRIVER
8426 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8427 L:      wcn36xx@lists.infradead.org
8428 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8429 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8430 S:      Supported
8431 F:      drivers/net/wireless/ath/wcn36xx/
8432
8433 RADOS BLOCK DEVICE (RBD)
8434 M:      Ilya Dryomov <idryomov@gmail.com>
8435 M:      Sage Weil <sage@redhat.com>
8436 M:      Alex Elder <elder@kernel.org>
8437 L:      ceph-devel@vger.kernel.org
8438 W:      http://ceph.com/
8439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8440 T:      git git://github.com/ceph/ceph-client.git
8441 S:      Supported
8442 F:      Documentation/ABI/testing/sysfs-bus-rbd
8443 F:      drivers/block/rbd.c
8444 F:      drivers/block/rbd_types.h
8445
8446 RADEON FRAMEBUFFER DISPLAY DRIVER
8447 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8448 L:      linux-fbdev@vger.kernel.org
8449 S:      Maintained
8450 F:      drivers/video/fbdev/aty/radeon*
8451 F:      include/uapi/linux/radeonfb.h
8452
8453 RADIOSHARK RADIO DRIVER
8454 M:      Hans de Goede <hdegoede@redhat.com>
8455 L:      linux-media@vger.kernel.org
8456 T:      git git://linuxtv.org/media_tree.git
8457 S:      Maintained
8458 F:      drivers/media/radio/radio-shark.c
8459
8460 RADIOSHARK2 RADIO DRIVER
8461 M:      Hans de Goede <hdegoede@redhat.com>
8462 L:      linux-media@vger.kernel.org
8463 T:      git git://linuxtv.org/media_tree.git
8464 S:      Maintained
8465 F:      drivers/media/radio/radio-shark2.c
8466 F:      drivers/media/radio/radio-tea5777.c
8467
8468 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8469 M:      Paul Mackerras <paulus@samba.org>
8470 L:      linux-fbdev@vger.kernel.org
8471 S:      Maintained
8472 F:      drivers/video/fbdev/aty/aty128fb.c
8473
8474 RALINK RT2X00 WIRELESS LAN DRIVER
8475 P:      rt2x00 project
8476 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8477 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8478 L:      linux-wireless@vger.kernel.org
8479 S:      Maintained
8480 F:      drivers/net/wireless/rt2x00/
8481
8482 RAMDISK RAM BLOCK DEVICE DRIVER
8483 M:      Jens Axboe <axboe@kernel.dk>
8484 S:      Maintained
8485 F:      Documentation/blockdev/ramdisk.txt
8486 F:      drivers/block/brd.c
8487
8488 RANDOM NUMBER DRIVER
8489 M:      "Theodore Ts'o" <tytso@mit.edu>
8490 S:      Maintained
8491 F:      drivers/char/random.c
8492
8493 RAPIDIO SUBSYSTEM
8494 M:      Matt Porter <mporter@kernel.crashing.org>
8495 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8496 S:      Maintained
8497 F:      drivers/rapidio/
8498
8499 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8500 L:      linux-wireless@vger.kernel.org
8501 S:      Orphan
8502 F:      drivers/net/wireless/ray*
8503
8504 RCUTORTURE MODULE
8505 M:      Josh Triplett <josh@joshtriplett.org>
8506 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8507 L:      linux-kernel@vger.kernel.org
8508 S:      Supported
8509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8510 F:      Documentation/RCU/torture.txt
8511 F:      kernel/rcu/rcutorture.c
8512
8513 RCUTORTURE TEST FRAMEWORK
8514 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8515 M:      Josh Triplett <josh@joshtriplett.org>
8516 R:      Steven Rostedt <rostedt@goodmis.org>
8517 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8518 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8519 L:      linux-kernel@vger.kernel.org
8520 S:      Supported
8521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8522 F:      tools/testing/selftests/rcutorture
8523
8524 RDC R-321X SoC
8525 M:      Florian Fainelli <florian@openwrt.org>
8526 S:      Maintained
8527
8528 RDC R6040 FAST ETHERNET DRIVER
8529 M:      Florian Fainelli <florian@openwrt.org>
8530 L:      netdev@vger.kernel.org
8531 S:      Maintained
8532 F:      drivers/net/ethernet/rdc/r6040.c
8533
8534 RDS - RELIABLE DATAGRAM SOCKETS
8535 M:      Chien Yen <chien.yen@oracle.com>
8536 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8537 S:      Supported
8538 F:      net/rds/
8539
8540 READ-COPY UPDATE (RCU)
8541 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8542 M:      Josh Triplett <josh@joshtriplett.org>
8543 R:      Steven Rostedt <rostedt@goodmis.org>
8544 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8545 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8546 L:      linux-kernel@vger.kernel.org
8547 W:      http://www.rdrop.com/users/paulmck/RCU/
8548 S:      Supported
8549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8550 F:      Documentation/RCU/
8551 X:      Documentation/RCU/torture.txt
8552 F:      include/linux/rcu*
8553 X:      include/linux/srcu.h
8554 F:      kernel/rcu/
8555 X:      kernel/torture.c
8556
8557 REAL TIME CLOCK (RTC) SUBSYSTEM
8558 M:      Alessandro Zummo <a.zummo@towertech.it>
8559 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8560 L:      rtc-linux@googlegroups.com
8561 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8563 S:      Maintained
8564 F:      Documentation/rtc.txt
8565 F:      drivers/rtc/
8566 F:      include/linux/rtc.h
8567 F:      include/uapi/linux/rtc.h
8568
8569 REALTEK AUDIO CODECS
8570 M:      Bard Liao <bardliao@realtek.com>
8571 M:      Oder Chiou <oder_chiou@realtek.com>
8572 S:      Maintained
8573 F:      sound/soc/codecs/rt*
8574 F:      include/sound/rt*.h
8575
8576 REISERFS FILE SYSTEM
8577 L:      reiserfs-devel@vger.kernel.org
8578 S:      Supported
8579 F:      fs/reiserfs/
8580
8581 REGISTER MAP ABSTRACTION
8582 M:      Mark Brown <broonie@kernel.org>
8583 L:      linux-kernel@vger.kernel.org
8584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8585 S:      Supported
8586 F:      drivers/base/regmap/
8587 F:      include/linux/regmap.h
8588
8589 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8590 M:      Ohad Ben-Cohen <ohad@wizery.com>
8591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8592 S:      Maintained
8593 F:      drivers/remoteproc/
8594 F:      Documentation/remoteproc.txt
8595 F:      include/linux/remoteproc.h
8596
8597 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8598 M:      Ohad Ben-Cohen <ohad@wizery.com>
8599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8600 S:      Maintained
8601 F:      drivers/rpmsg/
8602 F:      Documentation/rpmsg.txt
8603 F:      include/linux/rpmsg.h
8604
8605 RESET CONTROLLER FRAMEWORK
8606 M:      Philipp Zabel <p.zabel@pengutronix.de>
8607 S:      Maintained
8608 F:      drivers/reset/
8609 F:      Documentation/devicetree/bindings/reset/
8610 F:      include/dt-bindings/reset/
8611 F:      include/linux/reset.h
8612 F:      include/linux/reset-controller.h
8613
8614 RFKILL
8615 M:      Johannes Berg <johannes@sipsolutions.net>
8616 L:      linux-wireless@vger.kernel.org
8617 W:      http://wireless.kernel.org/
8618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8620 S:      Maintained
8621 F:      Documentation/rfkill.txt
8622 F:      net/rfkill/
8623
8624 RHASHTABLE
8625 M:      Thomas Graf <tgraf@suug.ch>
8626 L:      netdev@vger.kernel.org
8627 S:      Maintained
8628 F:      lib/rhashtable.c
8629 F:      include/linux/rhashtable.h
8630
8631 RICOH SMARTMEDIA/XD DRIVER
8632 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8633 S:      Maintained
8634 F:      drivers/mtd/nand/r852.c
8635 F:      drivers/mtd/nand/r852.h
8636
8637 RICOH R5C592 MEMORYSTICK DRIVER
8638 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8639 S:      Maintained
8640 F:      drivers/memstick/host/r592.*
8641
8642 ROCCAT DRIVERS
8643 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8644 W:      http://sourceforge.net/projects/roccat/
8645 S:      Maintained
8646 F:      drivers/hid/hid-roccat*
8647 F:      include/linux/hid-roccat*
8648 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8649
8650 ROCKER DRIVER
8651 M:      Jiri Pirko <jiri@resnulli.us>
8652 M:      Scott Feldman <sfeldma@gmail.com>
8653 L:      netdev@vger.kernel.org
8654 S:      Supported
8655 F:      drivers/net/ethernet/rocker/
8656
8657 ROCKETPORT DRIVER
8658 P:      Comtrol Corp.
8659 W:      http://www.comtrol.com
8660 S:      Maintained
8661 F:      Documentation/serial/rocket.txt
8662 F:      drivers/tty/rocket*
8663
8664 ROCKETPORT EXPRESS/INFINITY DRIVER
8665 M:      Kevin Cernekee <cernekee@gmail.com>
8666 L:      linux-serial@vger.kernel.org
8667 S:      Odd Fixes
8668 F:      drivers/tty/serial/rp2.*
8669
8670 ROSE NETWORK LAYER
8671 M:      Ralf Baechle <ralf@linux-mips.org>
8672 L:      linux-hams@vger.kernel.org
8673 W:      http://www.linux-ax25.org/
8674 S:      Maintained
8675 F:      include/net/rose.h
8676 F:      include/uapi/linux/rose.h
8677 F:      net/rose/
8678
8679 RTL2830 MEDIA DRIVER
8680 M:      Antti Palosaari <crope@iki.fi>
8681 L:      linux-media@vger.kernel.org
8682 W:      http://linuxtv.org/
8683 W:      http://palosaari.fi/linux/
8684 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8685 T:      git git://linuxtv.org/anttip/media_tree.git
8686 S:      Maintained
8687 F:      drivers/media/dvb-frontends/rtl2830*
8688
8689 RTL2832 MEDIA DRIVER
8690 M:      Antti Palosaari <crope@iki.fi>
8691 L:      linux-media@vger.kernel.org
8692 W:      http://linuxtv.org/
8693 W:      http://palosaari.fi/linux/
8694 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8695 T:      git git://linuxtv.org/anttip/media_tree.git
8696 S:      Maintained
8697 F:      drivers/media/dvb-frontends/rtl2832*
8698
8699 RTL2832_SDR MEDIA DRIVER
8700 M:      Antti Palosaari <crope@iki.fi>
8701 L:      linux-media@vger.kernel.org
8702 W:      http://linuxtv.org/
8703 W:      http://palosaari.fi/linux/
8704 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8705 T:      git git://linuxtv.org/anttip/media_tree.git
8706 S:      Maintained
8707 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8708
8709 RTL8180 WIRELESS DRIVER
8710 L:      linux-wireless@vger.kernel.org
8711 W:      http://wireless.kernel.org/
8712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8713 S:      Orphan
8714 F:      drivers/net/wireless/rtl818x/rtl8180/
8715
8716 RTL8187 WIRELESS DRIVER
8717 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8718 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8719 M:      Larry Finger <Larry.Finger@lwfinger.net>
8720 L:      linux-wireless@vger.kernel.org
8721 W:      http://wireless.kernel.org/
8722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8723 S:      Maintained
8724 F:      drivers/net/wireless/rtl818x/rtl8187/
8725
8726 RTL8192CE WIRELESS DRIVER
8727 M:      Larry Finger <Larry.Finger@lwfinger.net>
8728 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8729 L:      linux-wireless@vger.kernel.org
8730 W:      http://wireless.kernel.org/
8731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8732 S:      Maintained
8733 F:      drivers/net/wireless/rtlwifi/
8734 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8735
8736 S3 SAVAGE FRAMEBUFFER DRIVER
8737 M:      Antonino Daplas <adaplas@gmail.com>
8738 L:      linux-fbdev@vger.kernel.org
8739 S:      Maintained
8740 F:      drivers/video/fbdev/savage/
8741
8742 S390
8743 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8744 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8745 L:      linux-s390@vger.kernel.org
8746 W:      http://www.ibm.com/developerworks/linux/linux390/
8747 S:      Supported
8748 F:      arch/s390/
8749 F:      drivers/s390/
8750 F:      Documentation/s390/
8751 F:      Documentation/DocBook/s390*
8752
8753 S390 COMMON I/O LAYER
8754 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8755 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8756 L:      linux-s390@vger.kernel.org
8757 W:      http://www.ibm.com/developerworks/linux/linux390/
8758 S:      Supported
8759 F:      drivers/s390/cio/
8760
8761 S390 DASD DRIVER
8762 M:      Stefan Weinhuber <wein@de.ibm.com>
8763 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8764 L:      linux-s390@vger.kernel.org
8765 W:      http://www.ibm.com/developerworks/linux/linux390/
8766 S:      Supported
8767 F:      drivers/s390/block/dasd*
8768 F:      block/partitions/ibm.c
8769
8770 S390 NETWORK DRIVERS
8771 M:      Ursula Braun <ursula.braun@de.ibm.com>
8772 L:      linux-s390@vger.kernel.org
8773 W:      http://www.ibm.com/developerworks/linux/linux390/
8774 S:      Supported
8775 F:      drivers/s390/net/
8776
8777 S390 PCI SUBSYSTEM
8778 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8779 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8780 L:      linux-s390@vger.kernel.org
8781 W:      http://www.ibm.com/developerworks/linux/linux390/
8782 S:      Supported
8783 F:      arch/s390/pci/
8784 F:      drivers/pci/hotplug/s390_pci_hpc.c
8785
8786 S390 ZCRYPT DRIVER
8787 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8788 L:      linux-s390@vger.kernel.org
8789 W:      http://www.ibm.com/developerworks/linux/linux390/
8790 S:      Supported
8791 F:      drivers/s390/crypto/
8792
8793 S390 ZFCP DRIVER
8794 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8795 L:      linux-s390@vger.kernel.org
8796 W:      http://www.ibm.com/developerworks/linux/linux390/
8797 S:      Supported
8798 F:      drivers/s390/scsi/zfcp_*
8799
8800 S390 IUCV NETWORK LAYER
8801 M:      Ursula Braun <ursula.braun@de.ibm.com>
8802 L:      linux-s390@vger.kernel.org
8803 W:      http://www.ibm.com/developerworks/linux/linux390/
8804 S:      Supported
8805 F:      drivers/s390/net/*iucv*
8806 F:      include/net/iucv/
8807 F:      net/iucv/
8808
8809 S3C24XX SD/MMC Driver
8810 M:      Ben Dooks <ben-linux@fluff.org>
8811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8812 S:      Supported
8813 F:      drivers/mmc/host/s3cmci.*
8814
8815 SAA6588 RDS RECEIVER DRIVER
8816 M:      Hans Verkuil <hverkuil@xs4all.nl>
8817 L:      linux-media@vger.kernel.org
8818 T:      git git://linuxtv.org/media_tree.git
8819 W:      http://linuxtv.org
8820 S:      Odd Fixes
8821 F:      drivers/media/i2c/saa6588*
8822
8823 SAA7134 VIDEO4LINUX DRIVER
8824 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8825 L:      linux-media@vger.kernel.org
8826 W:      http://linuxtv.org
8827 T:      git git://linuxtv.org/media_tree.git
8828 S:      Odd fixes
8829 F:      Documentation/video4linux/*.saa7134
8830 F:      drivers/media/pci/saa7134/
8831
8832 SAA7146 VIDEO4LINUX-2 DRIVER
8833 M:      Hans Verkuil <hverkuil@xs4all.nl>
8834 L:      linux-media@vger.kernel.org
8835 T:      git git://linuxtv.org/media_tree.git
8836 S:      Maintained
8837 F:      drivers/media/common/saa7146/
8838 F:      drivers/media/pci/saa7146/
8839 F:      include/media/saa7146*
8840
8841 SAMSUNG LAPTOP DRIVER
8842 M:      Corentin Chary <corentin.chary@gmail.com>
8843 L:      platform-driver-x86@vger.kernel.org
8844 S:      Maintained
8845 F:      drivers/platform/x86/samsung-laptop.c
8846
8847 SAMSUNG AUDIO (ASoC) DRIVERS
8848 M:      Sangbeom Kim <sbkim73@samsung.com>
8849 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8850 S:      Supported
8851 F:      sound/soc/samsung/
8852
8853 SAMSUNG FRAMEBUFFER DRIVER
8854 M:      Jingoo Han <jingoohan1@gmail.com>
8855 L:      linux-fbdev@vger.kernel.org
8856 S:      Maintained
8857 F:      drivers/video/fbdev/s3c-fb.c
8858
8859 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
8860 M:      Sangbeom Kim <sbkim73@samsung.com>
8861 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
8862 L:      linux-kernel@vger.kernel.org
8863 L:      linux-samsung-soc@vger.kernel.org
8864 S:      Supported
8865 F:      drivers/mfd/sec*.c
8866 F:      drivers/regulator/s2m*.c
8867 F:      drivers/regulator/s5m*.c
8868 F:      drivers/clk/clk-s2mps11.c
8869 F:      drivers/rtc/rtc-s5m.c
8870 F:      include/linux/mfd/samsung/
8871 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
8872 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
8873
8874 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
8875 M:      Kyungmin Park <kyungmin.park@samsung.com>
8876 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8877 L:      linux-media@vger.kernel.org
8878 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
8879 S:      Supported
8880 F:      drivers/media/platform/exynos4-is/
8881
8882 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
8883 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
8884 L:      linux-media@vger.kernel.org
8885 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8886 S:      Maintained
8887 F:      drivers/media/platform/s3c-camif/
8888 F:      include/media/s3c_camif.h
8889
8890 SAMSUNG S5C73M3 CAMERA DRIVER
8891 M:      Kyungmin Park <kyungmin.park@samsung.com>
8892 M:      Andrzej Hajda <a.hajda@samsung.com>
8893 L:      linux-media@vger.kernel.org
8894 S:      Supported
8895 F:      drivers/media/i2c/s5c73m3/*
8896
8897 SAMSUNG S5K5BAF CAMERA DRIVER
8898 M:      Kyungmin Park <kyungmin.park@samsung.com>
8899 M:      Andrzej Hajda <a.hajda@samsung.com>
8900 L:      linux-media@vger.kernel.org
8901 S:      Supported
8902 F:      drivers/media/i2c/s5k5baf.c
8903
8904 SAMSUNG S3FWRN5 NFC DRIVER
8905 M:      Robert Baldyga <r.baldyga@samsung.com>
8906 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
8907 S:      Supported
8908 F:      drivers/nfc/s3fwrn5
8909
8910 SAMSUNG SOC CLOCK DRIVERS
8911 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8912 M:      Tomasz Figa <tomasz.figa@gmail.com>
8913 S:      Supported
8914 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8915 F:      drivers/clk/samsung/
8916
8917 SAMSUNG SXGBE DRIVERS
8918 M:      Byungho An <bh74.an@samsung.com>
8919 M:      Girish K S <ks.giri@samsung.com>
8920 M:      Vipul Pandya <vipul.pandya@samsung.com>
8921 S:      Supported
8922 L:      netdev@vger.kernel.org
8923 F:      drivers/net/ethernet/samsung/sxgbe/
8924
8925 SAMSUNG THERMAL DRIVER
8926 M:      Lukasz Majewski <l.majewski@samsung.com>
8927 L:      linux-pm@vger.kernel.org
8928 L:      linux-samsung-soc@vger.kernel.org
8929 S:      Supported
8930 T:      https://github.com/lmajewski/linux-samsung-thermal.git
8931 F:      drivers/thermal/samsung/
8932
8933 SAMSUNG USB2 PHY DRIVER
8934 M:      Kamil Debski <k.debski@samsung.com>
8935 L:      linux-kernel@vger.kernel.org
8936 S:      Supported
8937 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
8938 F:      Documentation/phy/samsung-usb2.txt
8939 F:      drivers/phy/phy-exynos4210-usb2.c
8940 F:      drivers/phy/phy-exynos4x12-usb2.c
8941 F:      drivers/phy/phy-exynos5250-usb2.c
8942 F:      drivers/phy/phy-s5pv210-usb2.c
8943 F:      drivers/phy/phy-samsung-usb2.c
8944 F:      drivers/phy/phy-samsung-usb2.h
8945
8946 SERIAL DRIVERS
8947 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8948 L:      linux-serial@vger.kernel.org
8949 S:      Maintained
8950 F:      drivers/tty/serial/
8951
8952 SYNOPSYS DESIGNWARE DMAC DRIVER
8953 M:      Viresh Kumar <vireshk@kernel.org>
8954 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8955 S:      Maintained
8956 F:      include/linux/dma/dw.h
8957 F:      include/linux/platform_data/dma-dw.h
8958 F:      drivers/dma/dw/
8959
8960 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
8961 M: Lars Persson <lars.persson@axis.com>
8962 L: netdev@vger.kernel.org
8963 S: Supported
8964 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
8965 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
8966
8967 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
8968 M:      Seungwon Jeon <tgih.jun@samsung.com>
8969 M:      Jaehoon Chung <jh80.chung@samsung.com>
8970 L:      linux-mmc@vger.kernel.org
8971 S:      Maintained
8972 F:      include/linux/mmc/dw_mmc.h
8973 F:      drivers/mmc/host/dw_mmc*
8974
8975 THUNDERBOLT DRIVER
8976 M:      Andreas Noever <andreas.noever@gmail.com>
8977 S:      Maintained
8978 F:      drivers/thunderbolt/
8979
8980 TIMEKEEPING, CLOCKSOURCE CORE, NTP
8981 M:      John Stultz <john.stultz@linaro.org>
8982 M:      Thomas Gleixner <tglx@linutronix.de>
8983 L:      linux-kernel@vger.kernel.org
8984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8985 S:      Supported
8986 F:      include/linux/clocksource.h
8987 F:      include/linux/time.h
8988 F:      include/linux/timex.h
8989 F:      include/uapi/linux/time.h
8990 F:      include/uapi/linux/timex.h
8991 F:      kernel/time/clocksource.c
8992 F:      kernel/time/time*.c
8993 F:      kernel/time/ntp.c
8994 F:      tools/testing/selftests/timers/
8995
8996 SC1200 WDT DRIVER
8997 M:      Zwane Mwaikambo <zwanem@gmail.com>
8998 S:      Maintained
8999 F:      drivers/watchdog/sc1200wdt.c
9000
9001 SCHEDULER
9002 M:      Ingo Molnar <mingo@redhat.com>
9003 M:      Peter Zijlstra <peterz@infradead.org>
9004 L:      linux-kernel@vger.kernel.org
9005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9006 S:      Maintained
9007 F:      kernel/sched/
9008 F:      include/linux/sched.h
9009 F:      include/uapi/linux/sched.h
9010 F:      include/linux/wait.h
9011
9012 SCORE ARCHITECTURE
9013 M:      Chen Liqin <liqin.linux@gmail.com>
9014 M:      Lennox Wu <lennox.wu@gmail.com>
9015 W:      http://www.sunplus.com
9016 S:      Supported
9017 F:      arch/score/
9018
9019 SCSI CDROM DRIVER
9020 M:      Jens Axboe <axboe@kernel.dk>
9021 L:      linux-scsi@vger.kernel.org
9022 W:      http://www.kernel.dk
9023 S:      Maintained
9024 F:      drivers/scsi/sr*
9025
9026 SCSI RDMA PROTOCOL (SRP) INITIATOR
9027 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9028 L:      linux-rdma@vger.kernel.org
9029 S:      Supported
9030 W:      http://www.openfabrics.org
9031 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9033 F:      drivers/infiniband/ulp/srp/
9034 F:      include/scsi/srp.h
9035
9036 SCSI SG DRIVER
9037 M:      Doug Gilbert <dgilbert@interlog.com>
9038 L:      linux-scsi@vger.kernel.org
9039 W:      http://sg.danny.cz/sg
9040 S:      Maintained
9041 F:      Documentation/scsi/scsi-generic.txt
9042 F:      drivers/scsi/sg.c
9043 F:      include/scsi/sg.h
9044
9045 SCSI SUBSYSTEM
9046 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9047 L:      linux-scsi@vger.kernel.org
9048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9049 S:      Maintained
9050 F:      drivers/scsi/
9051 F:      include/scsi/
9052
9053 SCSI TAPE DRIVER
9054 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9055 L:      linux-scsi@vger.kernel.org
9056 S:      Maintained
9057 F:      Documentation/scsi/st.txt
9058 F:      drivers/scsi/st.*
9059 F:      drivers/scsi/st_*.h
9060
9061 SCTP PROTOCOL
9062 M:      Vlad Yasevich <vyasevich@gmail.com>
9063 M:      Neil Horman <nhorman@tuxdriver.com>
9064 L:      linux-sctp@vger.kernel.org
9065 W:      http://lksctp.sourceforge.net
9066 S:      Maintained
9067 F:      Documentation/networking/sctp.txt
9068 F:      include/linux/sctp.h
9069 F:      include/uapi/linux/sctp.h
9070 F:      include/net/sctp/
9071 F:      net/sctp/
9072
9073 SCx200 CPU SUPPORT
9074 M:      Jim Cromie <jim.cromie@gmail.com>
9075 S:      Odd Fixes
9076 F:      Documentation/i2c/busses/scx200_acb
9077 F:      arch/x86/platform/scx200/
9078 F:      drivers/watchdog/scx200_wdt.c
9079 F:      drivers/i2c/busses/scx200*
9080 F:      drivers/mtd/maps/scx200_docflash.c
9081 F:      include/linux/scx200.h
9082
9083 SCx200 GPIO DRIVER
9084 M:      Jim Cromie <jim.cromie@gmail.com>
9085 S:      Maintained
9086 F:      drivers/char/scx200_gpio.c
9087 F:      include/linux/scx200_gpio.h
9088
9089 SCx200 HRT CLOCKSOURCE DRIVER
9090 M:      Jim Cromie <jim.cromie@gmail.com>
9091 S:      Maintained
9092 F:      drivers/clocksource/scx200_hrt.c
9093
9094 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9095 M:      Sascha Sommer <saschasommer@freenet.de>
9096 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9097 S:      Maintained
9098 F:      drivers/mmc/host/sdricoh_cs.c
9099
9100 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9101 L:      linux-mmc@vger.kernel.org
9102 S:      Orphan
9103 F:      drivers/mmc/host/sdhci.*
9104 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9105
9106 SECURE COMPUTING
9107 M:      Kees Cook <keescook@chromium.org>
9108 R:      Andy Lutomirski <luto@amacapital.net>
9109 R:      Will Drewry <wad@chromium.org>
9110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9111 S:      Supported
9112 F:      kernel/seccomp.c
9113 F:      include/uapi/linux/seccomp.h
9114 F:      include/linux/seccomp.h
9115 F:      tools/testing/selftests/seccomp/*
9116 K:      \bsecure_computing
9117 K:      \bTIF_SECCOMP\b
9118
9119 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9120 M:      Ben Dooks <ben-linux@fluff.org>
9121 M:      Jaehoon Chung <jh80.chung@samsung.com>
9122 L:      linux-mmc@vger.kernel.org
9123 S:      Maintained
9124 F:      drivers/mmc/host/sdhci-s3c*
9125
9126 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9127 M:      Viresh Kumar <vireshk@kernel.org>
9128 L:      spear-devel@list.st.com
9129 L:      linux-mmc@vger.kernel.org
9130 S:      Maintained
9131 F:      drivers/mmc/host/sdhci-spear.c
9132
9133 SECURITY SUBSYSTEM
9134 M:      James Morris <james.l.morris@oracle.com>
9135 M:      "Serge E. Hallyn" <serge@hallyn.com>
9136 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9138 W:      http://kernsec.org/
9139 S:      Supported
9140 F:      security/
9141
9142 SECURITY CONTACT
9143 M:      Security Officers <security@kernel.org>
9144 S:      Supported
9145
9146 SELINUX SECURITY MODULE
9147 M:      Paul Moore <paul@paul-moore.com>
9148 M:      Stephen Smalley <sds@tycho.nsa.gov>
9149 M:      Eric Paris <eparis@parisplace.org>
9150 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9151 W:      http://selinuxproject.org
9152 T:      git git://git.infradead.org/users/pcmoore/selinux
9153 S:      Supported
9154 F:      include/linux/selinux*
9155 F:      security/selinux/
9156 F:      scripts/selinux/
9157
9158 APPARMOR SECURITY MODULE
9159 M:      John Johansen <john.johansen@canonical.com>
9160 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9161 W:      apparmor.wiki.kernel.org
9162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9163 S:      Supported
9164 F:      security/apparmor/
9165
9166 SENSABLE PHANTOM
9167 M:      Jiri Slaby <jirislaby@gmail.com>
9168 S:      Maintained
9169 F:      drivers/misc/phantom.c
9170 F:      include/uapi/linux/phantom.h
9171
9172 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9173 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9174 M:      Minh Tran <minh.tran@avagotech.com>
9175 M:      John Soni Jose <sony.john-n@avagotech.com>
9176 L:      linux-scsi@vger.kernel.org
9177 W:      http://www.avagotech.com
9178 S:      Supported
9179 F:      drivers/scsi/be2iscsi/
9180
9181 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9182 M:      Sathya Perla <sathya.perla@avagotech.com>
9183 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9184 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9185 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9186 L:      netdev@vger.kernel.org
9187 W:      http://www.emulex.com
9188 S:      Supported
9189 F:      drivers/net/ethernet/emulex/benet/
9190
9191 EMULEX ONECONNECT ROCE DRIVER
9192 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9193 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9194 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9195 L:      linux-rdma@vger.kernel.org
9196 W:      http://www.emulex.com
9197 S:      Supported
9198 F:      drivers/infiniband/hw/ocrdma/
9199
9200 SFC NETWORK DRIVER
9201 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9202 M:      Shradha Shah <sshah@solarflare.com>
9203 L:      netdev@vger.kernel.org
9204 S:      Supported
9205 F:      drivers/net/ethernet/sfc/
9206
9207 SGI GRU DRIVER
9208 M:      Dimitri Sivanich <sivanich@sgi.com>
9209 S:      Maintained
9210 F:      drivers/misc/sgi-gru/
9211
9212 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9213 M:      Pat Gefre <pfg@sgi.com>
9214 L:      linux-ia64@vger.kernel.org
9215 S:      Supported
9216 F:      Documentation/ia64/serial.txt
9217 F:      drivers/tty/serial/ioc?_serial.c
9218 F:      include/linux/ioc?.h
9219
9220 SGI XP/XPC/XPNET DRIVER
9221 M:      Cliff Whickman <cpw@sgi.com>
9222 M:      Robin Holt <robinmholt@gmail.com>
9223 S:      Maintained
9224 F:      drivers/misc/sgi-xp/
9225
9226 SI2157 MEDIA DRIVER
9227 M:      Antti Palosaari <crope@iki.fi>
9228 L:      linux-media@vger.kernel.org
9229 W:      http://linuxtv.org/
9230 W:      http://palosaari.fi/linux/
9231 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9232 T:      git git://linuxtv.org/anttip/media_tree.git
9233 S:      Maintained
9234 F:      drivers/media/tuners/si2157*
9235
9236 SI2168 MEDIA DRIVER
9237 M:      Antti Palosaari <crope@iki.fi>
9238 L:      linux-media@vger.kernel.org
9239 W:      http://linuxtv.org/
9240 W:      http://palosaari.fi/linux/
9241 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9242 T:      git git://linuxtv.org/anttip/media_tree.git
9243 S:      Maintained
9244 F:      drivers/media/dvb-frontends/si2168*
9245
9246 SI470X FM RADIO RECEIVER I2C DRIVER
9247 M:      Hans Verkuil <hverkuil@xs4all.nl>
9248 L:      linux-media@vger.kernel.org
9249 T:      git git://linuxtv.org/media_tree.git
9250 W:      http://linuxtv.org
9251 S:      Odd Fixes
9252 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9253
9254 SI470X FM RADIO RECEIVER USB DRIVER
9255 M:      Hans Verkuil <hverkuil@xs4all.nl>
9256 L:      linux-media@vger.kernel.org
9257 T:      git git://linuxtv.org/media_tree.git
9258 W:      http://linuxtv.org
9259 S:      Maintained
9260 F:      drivers/media/radio/si470x/radio-si470x-common.c
9261 F:      drivers/media/radio/si470x/radio-si470x.h
9262 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9263
9264 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9265 M:      Eduardo Valentin <edubezval@gmail.com>
9266 L:      linux-media@vger.kernel.org
9267 T:      git git://linuxtv.org/media_tree.git
9268 W:      http://linuxtv.org
9269 S:      Odd Fixes
9270 F:      drivers/media/radio/si4713/si4713.?
9271
9272 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9273 M:      Eduardo Valentin <edubezval@gmail.com>
9274 L:      linux-media@vger.kernel.org
9275 T:      git git://linuxtv.org/media_tree.git
9276 W:      http://linuxtv.org
9277 S:      Odd Fixes
9278 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9279
9280 SI4713 FM RADIO TRANSMITTER USB DRIVER
9281 M:      Hans Verkuil <hverkuil@xs4all.nl>
9282 L:      linux-media@vger.kernel.org
9283 T:      git git://linuxtv.org/media_tree.git
9284 W:      http://linuxtv.org
9285 S:      Maintained
9286 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9287
9288 SIANO DVB DRIVER
9289 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9290 L:      linux-media@vger.kernel.org
9291 W:      http://linuxtv.org
9292 T:      git git://linuxtv.org/media_tree.git
9293 S:      Odd fixes
9294 F:      drivers/media/common/siano/
9295 F:      drivers/media/usb/siano/
9296 F:      drivers/media/usb/siano/
9297 F:      drivers/media/mmc/siano/
9298
9299 SIMPLEFB FB DRIVER
9300 M:      Hans de Goede <hdegoede@redhat.com>
9301 L:      linux-fbdev@vger.kernel.org
9302 S:      Maintained
9303 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9304 F:      drivers/video/fbdev/simplefb.c
9305 F:      include/linux/platform_data/simplefb.h
9306
9307 SH_VEU V4L2 MEM2MEM DRIVER
9308 L:      linux-media@vger.kernel.org
9309 S:      Orphan
9310 F:      drivers/media/platform/sh_veu.c
9311
9312 SH_VOU V4L2 OUTPUT DRIVER
9313 L:      linux-media@vger.kernel.org
9314 S:      Orphan
9315 F:      drivers/media/platform/sh_vou.c
9316 F:      include/media/sh_vou.h
9317
9318 SIMPLE FIRMWARE INTERFACE (SFI)
9319 M:      Len Brown <lenb@kernel.org>
9320 L:      sfi-devel@simplefirmware.org
9321 W:      http://simplefirmware.org/
9322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9323 S:      Supported
9324 F:      arch/x86/platform/sfi/
9325 F:      drivers/sfi/
9326 F:      include/linux/sfi*.h
9327
9328 SIMTEC EB110ATX (Chalice CATS)
9329 P:      Ben Dooks
9330 P:      Vincent Sanders <vince@simtec.co.uk>
9331 M:      Simtec Linux Team <linux@simtec.co.uk>
9332 W:      http://www.simtec.co.uk/products/EB110ATX/
9333 S:      Supported
9334
9335 SIMTEC EB2410ITX (BAST)
9336 P:      Ben Dooks
9337 P:      Vincent Sanders <vince@simtec.co.uk>
9338 M:      Simtec Linux Team <linux@simtec.co.uk>
9339 W:      http://www.simtec.co.uk/products/EB2410ITX/
9340 S:      Supported
9341 F:      arch/arm/mach-s3c24xx/mach-bast.c
9342 F:      arch/arm/mach-s3c24xx/bast-ide.c
9343 F:      arch/arm/mach-s3c24xx/bast-irq.c
9344
9345 TI DAVINCI MACHINE SUPPORT
9346 M:      Sekhar Nori <nsekhar@ti.com>
9347 M:      Kevin Hilman <khilman@deeprootsystems.com>
9348 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9349 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9350 S:      Supported
9351 F:      arch/arm/mach-davinci/
9352 F:      drivers/i2c/busses/i2c-davinci.c
9353
9354 TI DAVINCI SERIES MEDIA DRIVER
9355 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9356 L:      linux-media@vger.kernel.org
9357 W:      http://linuxtv.org/
9358 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9359 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9360 S:      Maintained
9361 F:      drivers/media/platform/davinci/
9362 F:      include/media/davinci/
9363
9364 TI AM437X VPFE DRIVER
9365 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9366 L:      linux-media@vger.kernel.org
9367 W:      http://linuxtv.org/
9368 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9369 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9370 S:      Maintained
9371 F:      drivers/media/platform/am437x/
9372
9373 OV2659 OMNIVISION SENSOR DRIVER
9374 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9375 L:      linux-media@vger.kernel.org
9376 W:      http://linuxtv.org/
9377 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9378 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9379 S:      Maintained
9380 F:      drivers/media/i2c/ov2659.c
9381 F:      include/media/ov2659.h
9382
9383 SILICON MOTION SM712 FRAME BUFFER DRIVER
9384 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9385 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9386 M:      Sudip Mukherjee <sudip@vectorindia.org>
9387 L:      linux-fbdev@vger.kernel.org
9388 S:      Maintained
9389 F:      drivers/video/fbdev/sm712*
9390 F:      Documentation/fb/sm712fb.txt
9391
9392 SIS 190 ETHERNET DRIVER
9393 M:      Francois Romieu <romieu@fr.zoreil.com>
9394 L:      netdev@vger.kernel.org
9395 S:      Maintained
9396 F:      drivers/net/ethernet/sis/sis190.c
9397
9398 SIS 900/7016 FAST ETHERNET DRIVER
9399 M:      Daniele Venzano <venza@brownhat.org>
9400 W:      http://www.brownhat.org/sis900.html
9401 L:      netdev@vger.kernel.org
9402 S:      Maintained
9403 F:      drivers/net/ethernet/sis/sis900.*
9404
9405 SIS FRAMEBUFFER DRIVER
9406 M:      Thomas Winischhofer <thomas@winischhofer.net>
9407 W:      http://www.winischhofer.net/linuxsisvga.shtml
9408 S:      Maintained
9409 F:      Documentation/fb/sisfb.txt
9410 F:      drivers/video/fbdev/sis/
9411 F:      include/video/sisfb.h
9412
9413 SIS USB2VGA DRIVER
9414 M:      Thomas Winischhofer <thomas@winischhofer.net>
9415 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9416 S:      Maintained
9417 F:      drivers/usb/misc/sisusbvga/
9418
9419 SLAB ALLOCATOR
9420 M:      Christoph Lameter <cl@linux.com>
9421 M:      Pekka Enberg <penberg@kernel.org>
9422 M:      David Rientjes <rientjes@google.com>
9423 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9424 M:      Andrew Morton <akpm@linux-foundation.org>
9425 L:      linux-mm@kvack.org
9426 S:      Maintained
9427 F:      include/linux/sl?b*.h
9428 F:      mm/sl?b*
9429
9430 SLEEPABLE READ-COPY UPDATE (SRCU)
9431 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9432 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9433 M:      Josh Triplett <josh@joshtriplett.org>
9434 R:      Steven Rostedt <rostedt@goodmis.org>
9435 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9436 L:      linux-kernel@vger.kernel.org
9437 W:      http://www.rdrop.com/users/paulmck/RCU/
9438 S:      Supported
9439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9440 F:      include/linux/srcu.h
9441 F:      kernel/rcu/srcu.c
9442
9443 SMACK SECURITY MODULE
9444 M:      Casey Schaufler <casey@schaufler-ca.com>
9445 L:      linux-security-module@vger.kernel.org
9446 W:      http://schaufler-ca.com
9447 T:      git git://git.gitorious.org/smack-next/kernel.git
9448 S:      Maintained
9449 F:      Documentation/security/Smack.txt
9450 F:      security/smack/
9451
9452 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9453 M:      Kevin Hilman <khilman@kernel.org>
9454 M:      Nishanth Menon <nm@ti.com>
9455 S:      Maintained
9456 F:      drivers/power/avs/
9457 F:      include/linux/power/smartreflex.h
9458 L:      linux-pm@vger.kernel.org
9459
9460 SMC91x ETHERNET DRIVER
9461 M:      Nicolas Pitre <nico@fluxnic.net>
9462 S:      Odd Fixes
9463 F:      drivers/net/ethernet/smsc/smc91x.*
9464
9465 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9466 M:      Sakari Ailus <sakari.ailus@iki.fi>
9467 L:      linux-media@vger.kernel.org
9468 S:      Maintained
9469 F:      drivers/media/i2c/smiapp/
9470 F:      include/media/smiapp.h
9471 F:      drivers/media/i2c/smiapp-pll.c
9472 F:      drivers/media/i2c/smiapp-pll.h
9473 F:      include/uapi/linux/smiapp.h
9474 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9475
9476 SMM665 HARDWARE MONITOR DRIVER
9477 M:      Guenter Roeck <linux@roeck-us.net>
9478 L:      lm-sensors@lm-sensors.org
9479 S:      Maintained
9480 F:      Documentation/hwmon/smm665
9481 F:      drivers/hwmon/smm665.c
9482
9483 SMSC EMC2103 HARDWARE MONITOR DRIVER
9484 M:      Steve Glendinning <steve.glendinning@shawell.net>
9485 L:      lm-sensors@lm-sensors.org
9486 S:      Maintained
9487 F:      Documentation/hwmon/emc2103
9488 F:      drivers/hwmon/emc2103.c
9489
9490 SMSC SCH5627 HARDWARE MONITOR DRIVER
9491 M:      Hans de Goede <hdegoede@redhat.com>
9492 L:      lm-sensors@lm-sensors.org
9493 S:      Supported
9494 F:      Documentation/hwmon/sch5627
9495 F:      drivers/hwmon/sch5627.c
9496
9497 SMSC47B397 HARDWARE MONITOR DRIVER
9498 M:      Jean Delvare <jdelvare@suse.com>
9499 L:      lm-sensors@lm-sensors.org
9500 S:      Maintained
9501 F:      Documentation/hwmon/smsc47b397
9502 F:      drivers/hwmon/smsc47b397.c
9503
9504 SMSC911x ETHERNET DRIVER
9505 M:      Steve Glendinning <steve.glendinning@shawell.net>
9506 L:      netdev@vger.kernel.org
9507 S:      Maintained
9508 F:      include/linux/smsc911x.h
9509 F:      drivers/net/ethernet/smsc/smsc911x.*
9510
9511 SMSC9420 PCI ETHERNET DRIVER
9512 M:      Steve Glendinning <steve.glendinning@shawell.net>
9513 L:      netdev@vger.kernel.org
9514 S:      Maintained
9515 F:      drivers/net/ethernet/smsc/smsc9420.*
9516
9517 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9518 M:      Steve Glendinning <steve.glendinning@shawell.net>
9519 L:      linux-fbdev@vger.kernel.org
9520 S:      Maintained
9521 F:      drivers/video/fbdev/smscufx.c
9522
9523 SOC-CAMERA V4L2 SUBSYSTEM
9524 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9525 L:      linux-media@vger.kernel.org
9526 T:      git git://linuxtv.org/media_tree.git
9527 S:      Maintained
9528 F:      include/media/soc*
9529 F:      drivers/media/i2c/soc_camera/
9530 F:      drivers/media/platform/soc_camera/
9531
9532 SOEKRIS NET48XX LED SUPPORT
9533 M:      Chris Boot <bootc@bootc.net>
9534 S:      Maintained
9535 F:      drivers/leds/leds-net48xx.c
9536
9537 SOFTLOGIC 6x10 MPEG CODEC
9538 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9539 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9540 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9541 M:      Ismael Luceno <ismael@iodev.co.uk>
9542 L:      linux-media@vger.kernel.org
9543 S:      Supported
9544 F:      drivers/media/pci/solo6x10/
9545
9546 SOFTWARE RAID (Multiple Disks) SUPPORT
9547 M:      Neil Brown <neilb@suse.com>
9548 L:      linux-raid@vger.kernel.org
9549 S:      Supported
9550 F:      drivers/md/
9551 F:      include/linux/raid/
9552 F:      include/uapi/linux/raid/
9553
9554 SONIC NETWORK DRIVER
9555 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9556 L:      netdev@vger.kernel.org
9557 S:      Maintained
9558 F:      drivers/net/ethernet/natsemi/sonic.*
9559
9560 SONICS SILICON BACKPLANE DRIVER (SSB)
9561 M:      Michael Buesch <m@bues.ch>
9562 L:      netdev@vger.kernel.org
9563 S:      Maintained
9564 F:      drivers/ssb/
9565 F:      include/linux/ssb/
9566
9567 SONY VAIO CONTROL DEVICE DRIVER
9568 M:      Mattia Dongili <malattia@linux.it>
9569 L:      platform-driver-x86@vger.kernel.org
9570 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9571 S:      Maintained
9572 F:      Documentation/laptops/sony-laptop.txt
9573 F:      drivers/char/sonypi.c
9574 F:      drivers/platform/x86/sony-laptop.c
9575 F:      include/linux/sony-laptop.h
9576
9577 SONY MEMORYSTICK CARD SUPPORT
9578 M:      Alex Dubov <oakad@yahoo.com>
9579 W:      http://tifmxx.berlios.de/
9580 S:      Maintained
9581 F:      drivers/memstick/host/tifm_ms.c
9582
9583 SONY MEMORYSTICK STANDARD SUPPORT
9584 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9585 S:      Maintained
9586 F:      drivers/memstick/core/ms_block.*
9587
9588 SOUND
9589 M:      Jaroslav Kysela <perex@perex.cz>
9590 M:      Takashi Iwai <tiwai@suse.com>
9591 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9592 W:      http://www.alsa-project.org/
9593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9594 T:      git git://git.alsa-project.org/alsa-kernel.git
9595 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9596 S:      Maintained
9597 F:      Documentation/sound/
9598 F:      include/sound/
9599 F:      include/uapi/sound/
9600 F:      sound/
9601
9602 SOUND - COMPRESSED AUDIO
9603 M:      Vinod Koul <vinod.koul@intel.com>
9604 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9606 S:      Supported
9607 F:      Documentation/sound/alsa/compress_offload.txt
9608 F:      include/sound/compress_driver.h
9609 F:      include/uapi/sound/compress_*
9610 F:      sound/core/compress_offload.c
9611 F:      sound/soc/soc-compress.c
9612
9613 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9614 M:      Liam Girdwood <lgirdwood@gmail.com>
9615 M:      Mark Brown <broonie@kernel.org>
9616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9617 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9618 W:      http://alsa-project.org/main/index.php/ASoC
9619 S:      Supported
9620 F:      Documentation/sound/alsa/soc/
9621 F:      sound/soc/
9622 F:      include/sound/soc*
9623
9624 SOUND - DMAENGINE HELPERS
9625 M:      Lars-Peter Clausen <lars@metafoo.de>
9626 S:      Supported
9627 F:      include/sound/dmaengine_pcm.h
9628 F:      sound/core/pcm_dmaengine.c
9629 F:      sound/soc/soc-generic-dmaengine-pcm.c
9630
9631 SP2 MEDIA DRIVER
9632 M:      Olli Salonen <olli.salonen@iki.fi>
9633 L:      linux-media@vger.kernel.org
9634 W:      http://linuxtv.org/
9635 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9636 S:      Maintained
9637 F:      drivers/media/dvb-frontends/sp2*
9638
9639 SPARC + UltraSPARC (sparc/sparc64)
9640 M:      "David S. Miller" <davem@davemloft.net>
9641 L:      sparclinux@vger.kernel.org
9642 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9645 S:      Maintained
9646 F:      arch/sparc/
9647 F:      drivers/sbus/
9648
9649 SPARC SERIAL DRIVERS
9650 M:      "David S. Miller" <davem@davemloft.net>
9651 L:      sparclinux@vger.kernel.org
9652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9654 S:      Maintained
9655 F:      include/linux/sunserialcore.h
9656 F:      drivers/tty/serial/suncore.c
9657 F:      drivers/tty/serial/sunhv.c
9658 F:      drivers/tty/serial/sunsab.c
9659 F:      drivers/tty/serial/sunsab.h
9660 F:      drivers/tty/serial/sunsu.c
9661 F:      drivers/tty/serial/sunzilog.c
9662 F:      drivers/tty/serial/sunzilog.h
9663
9664 SPARSE CHECKER
9665 M:      "Christopher Li" <sparse@chrisli.org>
9666 L:      linux-sparse@vger.kernel.org
9667 W:      https://sparse.wiki.kernel.org/
9668 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9669 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9670 S:      Maintained
9671 F:      include/linux/compiler.h
9672
9673 SPEAR PLATFORM SUPPORT
9674 M:      Viresh Kumar <vireshk@kernel.org>
9675 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9676 L:      spear-devel@list.st.com
9677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9678 W:      http://www.st.com/spear
9679 S:      Maintained
9680 F:      arch/arm/mach-spear/
9681
9682 SPEAR CLOCK FRAMEWORK SUPPORT
9683 M:      Viresh Kumar <vireshk@kernel.org>
9684 L:      spear-devel@list.st.com
9685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9686 W:      http://www.st.com/spear
9687 S:      Maintained
9688 F:      drivers/clk/spear/
9689
9690 SPI SUBSYSTEM
9691 M:      Mark Brown <broonie@kernel.org>
9692 L:      linux-spi@vger.kernel.org
9693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9694 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9695 S:      Maintained
9696 F:      Documentation/spi/
9697 F:      drivers/spi/
9698 F:      include/linux/spi/
9699 F:      include/uapi/linux/spi/
9700
9701 SPIDERNET NETWORK DRIVER for CELL
9702 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9703 L:      netdev@vger.kernel.org
9704 S:      Supported
9705 F:      Documentation/networking/spider_net.txt
9706 F:      drivers/net/ethernet/toshiba/spider_net*
9707
9708 SPU FILE SYSTEM
9709 M:      Jeremy Kerr <jk@ozlabs.org>
9710 L:      linuxppc-dev@lists.ozlabs.org
9711 W:      http://www.ibm.com/developerworks/power/cell/
9712 S:      Supported
9713 F:      Documentation/filesystems/spufs.txt
9714 F:      arch/powerpc/platforms/cell/spufs/
9715
9716 SQUASHFS FILE SYSTEM
9717 M:      Phillip Lougher <phillip@squashfs.org.uk>
9718 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9719 W:      http://squashfs.org.uk
9720 S:      Maintained
9721 F:      Documentation/filesystems/squashfs.txt
9722 F:      fs/squashfs/
9723
9724 SRM (Alpha) environment access
9725 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9726 S:      Maintained
9727 F:      arch/alpha/kernel/srm_env.c
9728
9729 STABLE BRANCH
9730 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9731 L:      stable@vger.kernel.org
9732 S:      Supported
9733 F:      Documentation/stable_kernel_rules.txt
9734
9735 STAGING SUBSYSTEM
9736 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9738 L:      devel@driverdev.osuosl.org
9739 S:      Supported
9740 F:      drivers/staging/
9741
9742 STAGING - COMEDI
9743 M:      Ian Abbott <abbotti@mev.co.uk>
9744 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9745 S:      Odd Fixes
9746 F:      drivers/staging/comedi/
9747
9748 STAGING - FLARION FT1000 DRIVERS
9749 M:      Marek Belisko <marek.belisko@gmail.com>
9750 S:      Odd Fixes
9751 F:      drivers/staging/ft1000/
9752
9753 STAGING - INDUSTRIAL IO
9754 M:      Jonathan Cameron <jic23@kernel.org>
9755 L:      linux-iio@vger.kernel.org
9756 S:      Odd Fixes
9757 F:      drivers/staging/iio/
9758
9759 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9760 M:      Jarod Wilson <jarod@wilsonet.com>
9761 W:      http://www.lirc.org/
9762 S:      Odd Fixes
9763 F:      drivers/staging/media/lirc/
9764
9765 STAGING - LUSTRE PARALLEL FILESYSTEM
9766 M:      Oleg Drokin <oleg.drokin@intel.com>
9767 M:      Andreas Dilger <andreas.dilger@intel.com>
9768 L:      HPDD-discuss@lists.01.org (moderated for non-subscribers)
9769 W:      http://lustre.opensfs.org/
9770 S:      Maintained
9771 F:      drivers/staging/lustre
9772
9773 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9774 M:      Julian Andres Klode <jak@jak-linux.org>
9775 M:      Marc Dietrich <marvin24@gmx.de>
9776 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9777 L:      linux-tegra@vger.kernel.org
9778 S:      Maintained
9779 F:      drivers/staging/nvec/
9780
9781 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9782 M:      Jens Frederich <jfrederich@gmail.com>
9783 M:      Daniel Drake <dsd@laptop.org>
9784 M:      Jon Nettleton <jon.nettleton@gmail.com>
9785 W:      http://wiki.laptop.org/go/DCON
9786 S:      Maintained
9787 F:      drivers/staging/olpc_dcon/
9788
9789 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9790 M:      Willy Tarreau <willy@meta-x.org>
9791 S:      Odd Fixes
9792 F:      drivers/staging/panel/
9793
9794 STAGING - REALTEK RTL8712U DRIVERS
9795 M:      Larry Finger <Larry.Finger@lwfinger.net>
9796 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9797 S:      Odd Fixes
9798 F:      drivers/staging/rtl8712/
9799
9800 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9801 M:      Larry Finger <Larry.Finger@lwfinger.net>
9802 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9803 L:      linux-wireless@vger.kernel.org
9804 S:      Maintained
9805 F:      drivers/staging/rtl8723au/
9806
9807 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9808 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9809 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9810 M:      Sudip Mukherjee <sudip@vectorindia.org>
9811 L:      linux-fbdev@vger.kernel.org
9812 S:      Maintained
9813 F:      drivers/staging/sm750fb/
9814
9815 STAGING - SLICOSS
9816 M:      Lior Dotan <liodot@gmail.com>
9817 M:      Christopher Harrer <charrer@alacritech.com>
9818 S:      Odd Fixes
9819 F:      drivers/staging/slicoss/
9820
9821 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9822 M:      William Hubbs <w.d.hubbs@gmail.com>
9823 M:      Chris Brannon <chris@the-brannons.com>
9824 M:      Kirk Reiser <kirk@reisers.ca>
9825 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9826 L:      speakup@linux-speakup.org
9827 W:      http://www.linux-speakup.org/
9828 S:      Odd Fixes
9829 F:      drivers/staging/speakup/
9830
9831 STAGING - VIA VT665X DRIVERS
9832 M:      Forest Bond <forest@alittletooquiet.net>
9833 S:      Odd Fixes
9834 F:      drivers/staging/vt665?/
9835
9836 STAGING - WILC1000 WIFI DRIVER
9837 M:      Johnny Kim <johnny.kim@atmel.com>
9838 M:      Rachel Kim <rachel.kim@atmel.com>
9839 M:      Dean Lee <dean.lee@atmel.com>
9840 M:      Chris Park <chris.park@atmel.com>
9841 L:      linux-wireless@vger.kernel.org
9842 S:      Supported
9843 F:      drivers/staging/wilc1000/
9844
9845 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
9846 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
9847 S:      Odd Fixes
9848 F:      drivers/staging/xgifb/
9849
9850 STARFIRE/DURALAN NETWORK DRIVER
9851 M:      Ion Badulescu <ionut@badula.org>
9852 S:      Odd Fixes
9853 F:      drivers/net/ethernet/adaptec/starfire*
9854
9855 SUN3/3X
9856 M:      Sam Creasey <sammy@sammy.net>
9857 W:      http://sammy.net/sun3/
9858 S:      Maintained
9859 F:      arch/m68k/kernel/*sun3*
9860 F:      arch/m68k/sun3*/
9861 F:      arch/m68k/include/asm/sun3*
9862 F:      drivers/net/ethernet/i825xx/sun3*
9863
9864 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
9865 M:      Hans de Goede <hdegoede@redhat.com>
9866 L:      linux-input@vger.kernel.org
9867 S:      Maintained
9868 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
9869 F:      drivers/input/keyboard/sun4i-lradc-keys.c
9870
9871 SUNDANCE NETWORK DRIVER
9872 M:      Denis Kirjanov <kda@linux-powerpc.org>
9873 L:      netdev@vger.kernel.org
9874 S:      Maintained
9875 F:      drivers/net/ethernet/dlink/sundance.c
9876
9877 SUPERH
9878 L:      linux-sh@vger.kernel.org
9879 Q:      http://patchwork.kernel.org/project/linux-sh/list/
9880 S:      Orphan
9881 F:      Documentation/sh/
9882 F:      arch/sh/
9883 F:      drivers/sh/
9884
9885 SUSPEND TO RAM
9886 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9887 M:      Len Brown <len.brown@intel.com>
9888 M:      Pavel Machek <pavel@ucw.cz>
9889 L:      linux-pm@vger.kernel.org
9890 S:      Supported
9891 F:      Documentation/power/
9892 F:      arch/x86/kernel/acpi/
9893 F:      drivers/base/power/
9894 F:      kernel/power/
9895 F:      include/linux/suspend.h
9896 F:      include/linux/freezer.h
9897 F:      include/linux/pm.h
9898
9899 SVGA HANDLING
9900 M:      Martin Mares <mj@ucw.cz>
9901 L:      linux-video@atrey.karlin.mff.cuni.cz
9902 S:      Maintained
9903 F:      Documentation/svga.txt
9904 F:      arch/x86/boot/video*
9905
9906 SWIOTLB SUBSYSTEM
9907 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9908 L:      linux-kernel@vger.kernel.org
9909 S:      Supported
9910 F:      lib/swiotlb.c
9911 F:      arch/*/kernel/pci-swiotlb.c
9912 F:      include/linux/swiotlb.h
9913
9914 SWITCHDEV
9915 M:      Jiri Pirko <jiri@resnulli.us>
9916 L:      netdev@vger.kernel.org
9917 S:      Supported
9918 F:      net/switchdev/
9919 F:      include/net/switchdev.h
9920
9921 SYNOPSYS ARC ARCHITECTURE
9922 M:      Vineet Gupta <vgupta@synopsys.com>
9923 S:      Supported
9924 F:      arch/arc/
9925 F:      Documentation/devicetree/bindings/arc/*
9926 F:      drivers/tty/serial/arc_uart.c
9927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
9928
9929 SYNOPSYS ARC SDP platform support
9930 M:      Alexey Brodkin <abrodkin@synopsys.com>
9931 S:      Supported
9932 F:      arch/arc/plat-axs10x
9933 F:      arch/arc/boot/dts/ax*
9934 F:      Documentation/devicetree/bindings/arc/axs10*
9935
9936 SYSTEM CONFIGURATION (SYSCON)
9937 M:      Lee Jones <lee.jones@linaro.org>
9938 M:      Arnd Bergmann <arnd@arndb.de>
9939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
9940 S:      Supported
9941 F:      drivers/mfd/syscon.c
9942
9943 SYSV FILESYSTEM
9944 M:      Christoph Hellwig <hch@infradead.org>
9945 S:      Maintained
9946 F:      Documentation/filesystems/sysv-fs.txt
9947 F:      fs/sysv/
9948 F:      include/linux/sysv_fs.h
9949
9950 TARGET SUBSYSTEM
9951 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
9952 L:      linux-scsi@vger.kernel.org
9953 L:      target-devel@vger.kernel.org
9954 W:      http://www.linux-iscsi.org
9955 W:      http://groups.google.com/group/linux-iscsi-target-dev
9956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9957 S:      Supported
9958 F:      drivers/target/
9959 F:      include/target/
9960 F:      Documentation/target/
9961
9962 TASKSTATS STATISTICS INTERFACE
9963 M:      Balbir Singh <bsingharora@gmail.com>
9964 S:      Maintained
9965 F:      Documentation/accounting/taskstats*
9966 F:      include/linux/taskstats*
9967 F:      kernel/taskstats.c
9968
9969 TC CLASSIFIER
9970 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9971 L:      netdev@vger.kernel.org
9972 S:      Maintained
9973 F:      include/net/pkt_cls.h
9974 F:      include/uapi/linux/pkt_cls.h
9975 F:      net/sched/
9976
9977 TCP LOW PRIORITY MODULE
9978 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
9979 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
9980 W:      http://tcp-lp-mod.sourceforge.net/
9981 S:      Maintained
9982 F:      net/ipv4/tcp_lp.c
9983
9984 TDA10071 MEDIA DRIVER
9985 M:      Antti Palosaari <crope@iki.fi>
9986 L:      linux-media@vger.kernel.org
9987 W:      http://linuxtv.org/
9988 W:      http://palosaari.fi/linux/
9989 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9990 T:      git git://linuxtv.org/anttip/media_tree.git
9991 S:      Maintained
9992 F:      drivers/media/dvb-frontends/tda10071*
9993
9994 TDA18212 MEDIA DRIVER
9995 M:      Antti Palosaari <crope@iki.fi>
9996 L:      linux-media@vger.kernel.org
9997 W:      http://linuxtv.org/
9998 W:      http://palosaari.fi/linux/
9999 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10000 T:      git git://linuxtv.org/anttip/media_tree.git
10001 S:      Maintained
10002 F:      drivers/media/tuners/tda18212*
10003
10004 TDA18218 MEDIA DRIVER
10005 M:      Antti Palosaari <crope@iki.fi>
10006 L:      linux-media@vger.kernel.org
10007 W:      http://linuxtv.org/
10008 W:      http://palosaari.fi/linux/
10009 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10010 T:      git git://linuxtv.org/anttip/media_tree.git
10011 S:      Maintained
10012 F:      drivers/media/tuners/tda18218*
10013
10014 TDA18271 MEDIA DRIVER
10015 M:      Michael Krufky <mkrufky@linuxtv.org>
10016 L:      linux-media@vger.kernel.org
10017 W:      http://linuxtv.org/
10018 W:      http://github.com/mkrufky
10019 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10020 T:      git git://linuxtv.org/mkrufky/tuners.git
10021 S:      Maintained
10022 F:      drivers/media/tuners/tda18271*
10023
10024 TDA827x MEDIA DRIVER
10025 M:      Michael Krufky <mkrufky@linuxtv.org>
10026 L:      linux-media@vger.kernel.org
10027 W:      http://linuxtv.org/
10028 W:      http://github.com/mkrufky
10029 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10030 T:      git git://linuxtv.org/mkrufky/tuners.git
10031 S:      Maintained
10032 F:      drivers/media/tuners/tda8290.*
10033
10034 TDA8290 MEDIA DRIVER
10035 M:      Michael Krufky <mkrufky@linuxtv.org>
10036 L:      linux-media@vger.kernel.org
10037 W:      http://linuxtv.org/
10038 W:      http://github.com/mkrufky
10039 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10040 T:      git git://linuxtv.org/mkrufky/tuners.git
10041 S:      Maintained
10042 F:      drivers/media/tuners/tda8290.*
10043
10044 TDA9840 MEDIA DRIVER
10045 M:      Hans Verkuil <hverkuil@xs4all.nl>
10046 L:      linux-media@vger.kernel.org
10047 T:      git git://linuxtv.org/media_tree.git
10048 W:      http://linuxtv.org
10049 S:      Maintained
10050 F:      drivers/media/i2c/tda9840*
10051
10052 TEA5761 TUNER DRIVER
10053 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10054 L:      linux-media@vger.kernel.org
10055 W:      http://linuxtv.org
10056 T:      git git://linuxtv.org/media_tree.git
10057 S:      Odd fixes
10058 F:      drivers/media/tuners/tea5761.*
10059
10060 TEA5767 TUNER DRIVER
10061 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10062 L:      linux-media@vger.kernel.org
10063 W:      http://linuxtv.org
10064 T:      git git://linuxtv.org/media_tree.git
10065 S:      Maintained
10066 F:      drivers/media/tuners/tea5767.*
10067
10068 TEA6415C MEDIA DRIVER
10069 M:      Hans Verkuil <hverkuil@xs4all.nl>
10070 L:      linux-media@vger.kernel.org
10071 T:      git git://linuxtv.org/media_tree.git
10072 W:      http://linuxtv.org
10073 S:      Maintained
10074 F:      drivers/media/i2c/tea6415c*
10075
10076 TEA6420 MEDIA DRIVER
10077 M:      Hans Verkuil <hverkuil@xs4all.nl>
10078 L:      linux-media@vger.kernel.org
10079 T:      git git://linuxtv.org/media_tree.git
10080 W:      http://linuxtv.org
10081 S:      Maintained
10082 F:      drivers/media/i2c/tea6420*
10083
10084 TEAM DRIVER
10085 M:      Jiri Pirko <jiri@resnulli.us>
10086 L:      netdev@vger.kernel.org
10087 S:      Supported
10088 F:      drivers/net/team/
10089 F:      include/linux/if_team.h
10090 F:      include/uapi/linux/if_team.h
10091
10092 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10093 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10094 S:      Maintained
10095 F:      arch/x86/platform/ts5500/
10096
10097 TECHNOTREND USB IR RECEIVER
10098 M:      Sean Young <sean@mess.org>
10099 L:      linux-media@vger.kernel.org
10100 S:      Maintained
10101 F:      drivers/media/rc/ttusbir.c
10102
10103 TEGRA ARCHITECTURE SUPPORT
10104 M:      Stephen Warren <swarren@wwwdotorg.org>
10105 M:      Thierry Reding <thierry.reding@gmail.com>
10106 M:      Alexandre Courbot <gnurou@gmail.com>
10107 L:      linux-tegra@vger.kernel.org
10108 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10110 S:      Supported
10111 N:      [^a-z]tegra
10112
10113 TEGRA CLOCK DRIVER
10114 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10115 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10116 S:      Supported
10117 F:      drivers/clk/tegra/
10118
10119 TEGRA DMA DRIVER
10120 M:      Laxman Dewangan <ldewangan@nvidia.com>
10121 S:      Supported
10122 F:      drivers/dma/tegra20-apb-dma.c
10123
10124 TEGRA I2C DRIVER
10125 M:      Laxman Dewangan <ldewangan@nvidia.com>
10126 S:      Supported
10127 F:      drivers/i2c/busses/i2c-tegra.c
10128
10129 TEGRA IOMMU DRIVERS
10130 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10131 S:      Supported
10132 F:      drivers/iommu/tegra*
10133
10134 TEGRA KBC DRIVER
10135 M:      Rakesh Iyer <riyer@nvidia.com>
10136 M:      Laxman Dewangan <ldewangan@nvidia.com>
10137 S:      Supported
10138 F:      drivers/input/keyboard/tegra-kbc.c
10139
10140 TEGRA PWM DRIVER
10141 M:      Thierry Reding <thierry.reding@gmail.com>
10142 S:      Supported
10143 F:      drivers/pwm/pwm-tegra.c
10144
10145 TEGRA SERIAL DRIVER
10146 M:      Laxman Dewangan <ldewangan@nvidia.com>
10147 S:      Supported
10148 F:      drivers/tty/serial/serial-tegra.c
10149
10150 TEGRA SPI DRIVER
10151 M:      Laxman Dewangan <ldewangan@nvidia.com>
10152 S:      Supported
10153 F:      drivers/spi/spi-tegra*
10154
10155 TEHUTI ETHERNET DRIVER
10156 M:      Andy Gospodarek <andy@greyhouse.net>
10157 L:      netdev@vger.kernel.org
10158 S:      Supported
10159 F:      drivers/net/ethernet/tehuti/*
10160
10161 Telecom Clock Driver for MCPL0010
10162 M:      Mark Gross <mark.gross@intel.com>
10163 S:      Supported
10164 F:      drivers/char/tlclk.c
10165
10166 TENSILICA XTENSA PORT (xtensa)
10167 M:      Chris Zankel <chris@zankel.net>
10168 M:      Max Filippov <jcmvbkbc@gmail.com>
10169 L:      linux-xtensa@linux-xtensa.org
10170 S:      Maintained
10171 F:      arch/xtensa/
10172 F:      drivers/irqchip/irq-xtensa-*
10173
10174 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10175 M:      Hans Verkuil <hverkuil@xs4all.nl>
10176 L:      linux-media@vger.kernel.org
10177 T:      git git://linuxtv.org/media_tree.git
10178 W:      http://linuxtv.org
10179 S:      Maintained
10180 F:      drivers/media/radio/radio-raremono.c
10181
10182 THERMAL
10183 M:      Zhang Rui <rui.zhang@intel.com>
10184 M:      Eduardo Valentin <edubezval@gmail.com>
10185 L:      linux-pm@vger.kernel.org
10186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10188 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10189 S:      Supported
10190 F:      drivers/thermal/
10191 F:      include/linux/thermal.h
10192 F:      include/uapi/linux/thermal.h
10193 F:      include/linux/cpu_cooling.h
10194 F:      Documentation/devicetree/bindings/thermal/
10195
10196 THINGM BLINK(1) USB RGB LED DRIVER
10197 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10198 S:      Maintained
10199 F:      drivers/hid/hid-thingm.c
10200
10201 THINKPAD ACPI EXTRAS DRIVER
10202 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10203 L:      ibm-acpi-devel@lists.sourceforge.net
10204 L:      platform-driver-x86@vger.kernel.org
10205 W:      http://ibm-acpi.sourceforge.net
10206 W:      http://thinkwiki.org/wiki/Ibm-acpi
10207 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10208 S:      Maintained
10209 F:      drivers/platform/x86/thinkpad_acpi.c
10210
10211 TI BANDGAP AND THERMAL DRIVER
10212 M:      Eduardo Valentin <edubezval@gmail.com>
10213 L:      linux-pm@vger.kernel.org
10214 L:      linux-omap@vger.kernel.org
10215 S:      Maintained
10216 F:      drivers/thermal/ti-soc-thermal/
10217
10218 TI CDCE706 CLOCK DRIVER
10219 M:      Max Filippov <jcmvbkbc@gmail.com>
10220 S:      Maintained
10221 F:      drivers/clk/clk-cdce706.c
10222
10223 TI CLOCK DRIVER
10224 M:      Tero Kristo <t-kristo@ti.com>
10225 L:      linux-omap@vger.kernel.org
10226 S:      Maintained
10227 F:      drivers/clk/ti/
10228 F:      include/linux/clk/ti.h
10229
10230 TI FLASH MEDIA INTERFACE DRIVER
10231 M:      Alex Dubov <oakad@yahoo.com>
10232 S:      Maintained
10233 F:      drivers/misc/tifm*
10234 F:      drivers/mmc/host/tifm_sd.c
10235 F:      include/linux/tifm.h
10236
10237 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10238 M:      Santosh Shilimkar <ssantosh@kernel.org>
10239 L:      linux-kernel@vger.kernel.org
10240 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10241 S:      Maintained
10242 F:      drivers/soc/ti/*
10243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10244
10245
10246 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10247 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10248 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10249 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10250 S:      Maintained
10251 F:      sound/soc/codecs/lm49453*
10252 F:      sound/soc/codecs/isabelle*
10253
10254 TI LP855x BACKLIGHT DRIVER
10255 M:      Milo Kim <milo.kim@ti.com>
10256 S:      Maintained
10257 F:      Documentation/backlight/lp855x-driver.txt
10258 F:      drivers/video/backlight/lp855x_bl.c
10259 F:      include/linux/platform_data/lp855x.h
10260
10261 TI LP8727 CHARGER DRIVER
10262 M:      Milo Kim <milo.kim@ti.com>
10263 S:      Maintained
10264 F:      drivers/power/lp8727_charger.c
10265 F:      include/linux/platform_data/lp8727.h
10266
10267 TI LP8788 MFD DRIVER
10268 M:      Milo Kim <milo.kim@ti.com>
10269 S:      Maintained
10270 F:      drivers/iio/adc/lp8788_adc.c
10271 F:      drivers/leds/leds-lp8788.c
10272 F:      drivers/mfd/lp8788*.c
10273 F:      drivers/power/lp8788-charger.c
10274 F:      drivers/regulator/lp8788-*.c
10275 F:      include/linux/mfd/lp8788*.h
10276
10277 TI NETCP ETHERNET DRIVER
10278 M:      Wingman Kwok <w-kwok2@ti.com>
10279 M:      Murali Karicheri <m-karicheri2@ti.com>
10280 L:      netdev@vger.kernel.org
10281 S:      Maintained
10282 F:      drivers/net/ethernet/ti/netcp*
10283
10284 TI TAS571X FAMILY ASoC CODEC DRIVER
10285 M:      Kevin Cernekee <cernekee@chromium.org>
10286 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10287 S:      Odd Fixes
10288 F:      sound/soc/codecs/tas571x*
10289
10290 TI TWL4030 SERIES SOC CODEC DRIVER
10291 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10292 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10293 S:      Maintained
10294 F:      sound/soc/codecs/twl4030*
10295
10296 TI WILINK WIRELESS DRIVERS
10297 L:      linux-wireless@vger.kernel.org
10298 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10299 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10301 S:      Orphan
10302 F:      drivers/net/wireless/ti/
10303 F:      include/linux/wl12xx.h
10304
10305 TIPC NETWORK LAYER
10306 M:      Jon Maloy <jon.maloy@ericsson.com>
10307 M:      Ying Xue <ying.xue@windriver.com>
10308 L:      netdev@vger.kernel.org (core kernel code)
10309 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10310 W:      http://tipc.sourceforge.net/
10311 S:      Maintained
10312 F:      include/uapi/linux/tipc*.h
10313 F:      net/tipc/
10314
10315 TILE ARCHITECTURE
10316 M:      Chris Metcalf <cmetcalf@ezchip.com>
10317 W:      http://www.ezchip.com/scm/
10318 S:      Supported
10319 F:      arch/tile/
10320 F:      drivers/char/tile-srom.c
10321 F:      drivers/edac/tile_edac.c
10322 F:      drivers/net/ethernet/tile/
10323 F:      drivers/rtc/rtc-tile.c
10324 F:      drivers/tty/hvc/hvc_tile.c
10325 F:      drivers/tty/serial/tilegx.c
10326 F:      drivers/usb/host/*-tilegx.c
10327 F:      include/linux/usb/tilegx.h
10328
10329 TLAN NETWORK DRIVER
10330 M:      Samuel Chessman <chessman@tux.org>
10331 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10332 W:      http://sourceforge.net/projects/tlan/
10333 S:      Maintained
10334 F:      Documentation/networking/tlan.txt
10335 F:      drivers/net/ethernet/ti/tlan.*
10336
10337 TOMOYO SECURITY MODULE
10338 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10339 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10340 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10341 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10342 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10343 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10344 W:      http://tomoyo.sourceforge.jp/
10345 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10346 S:      Maintained
10347 F:      security/tomoyo/
10348
10349 TOPSTAR LAPTOP EXTRAS DRIVER
10350 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10351 L:      platform-driver-x86@vger.kernel.org
10352 S:      Maintained
10353 F:      drivers/platform/x86/topstar-laptop.c
10354
10355 TOSHIBA ACPI EXTRAS DRIVER
10356 M:      Azael Avalos <coproscefalo@gmail.com>
10357 L:      platform-driver-x86@vger.kernel.org
10358 S:      Maintained
10359 F:      drivers/platform/x86/toshiba_acpi.c
10360
10361 TOSHIBA BLUETOOTH DRIVER
10362 M:      Azael Avalos <coproscefalo@gmail.com>
10363 L:      platform-driver-x86@vger.kernel.org
10364 S:      Maintained
10365 F:      drivers/platform/x86/toshiba_bluetooth.c
10366
10367 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10368 M:      Azael Avalos <coproscefalo@gmail.com>
10369 L:      platform-driver-x86@vger.kernel.org
10370 S:      Maintained
10371 F:      drivers/platform/x86/toshiba_haps.c
10372
10373 TOSHIBA SMM DRIVER
10374 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10375 L:      tlinux-users@tce.toshiba-dme.co.jp
10376 W:      http://www.buzzard.org.uk/toshiba/
10377 S:      Maintained
10378 F:      drivers/char/toshiba.c
10379 F:      include/linux/toshiba.h
10380 F:      include/uapi/linux/toshiba.h
10381
10382 TMIO MMC DRIVER
10383 M:      Ian Molton <ian@mnementh.co.uk>
10384 L:      linux-mmc@vger.kernel.org
10385 S:      Maintained
10386 F:      drivers/mmc/host/tmio_mmc*
10387 F:      drivers/mmc/host/sh_mobile_sdhi.c
10388 F:      include/linux/mmc/tmio.h
10389 F:      include/linux/mmc/sh_mobile_sdhi.h
10390
10391 TMP401 HARDWARE MONITOR DRIVER
10392 M:      Guenter Roeck <linux@roeck-us.net>
10393 L:      lm-sensors@lm-sensors.org
10394 S:      Maintained
10395 F:      Documentation/hwmon/tmp401
10396 F:      drivers/hwmon/tmp401.c
10397
10398 TMPFS (SHMEM FILESYSTEM)
10399 M:      Hugh Dickins <hughd@google.com>
10400 L:      linux-mm@kvack.org
10401 S:      Maintained
10402 F:      include/linux/shmem_fs.h
10403 F:      mm/shmem.c
10404
10405 TM6000 VIDEO4LINUX DRIVER
10406 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10407 L:      linux-media@vger.kernel.org
10408 W:      http://linuxtv.org
10409 T:      git git://linuxtv.org/media_tree.git
10410 S:      Odd fixes
10411 F:      drivers/media/usb/tm6000/
10412
10413 TW68 VIDEO4LINUX DRIVER
10414 M:      Hans Verkuil <hverkuil@xs4all.nl>
10415 L:      linux-media@vger.kernel.org
10416 T:      git git://linuxtv.org/media_tree.git
10417 W:      http://linuxtv.org
10418 S:      Odd Fixes
10419 F:      drivers/media/pci/tw68/
10420
10421 TPM DEVICE DRIVER
10422 M:      Peter Huewe <peterhuewe@gmx.de>
10423 M:      Marcel Selhorst <tpmdd@selhorst.net>
10424 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10425 W:      http://tpmdd.sourceforge.net
10426 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10427 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10428 T:      https://github.com/PeterHuewe/linux-tpmdd
10429 S:      Maintained
10430 F:      drivers/char/tpm/
10431
10432 TPM IBM_VTPM DEVICE DRIVER
10433 M:      Ashley Lai <ashleydlai@gmail.com>
10434 W:      http://tpmdd.sourceforge.net
10435 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10436 S:      Maintained
10437 F:      drivers/char/tpm/tpm_ibmvtpm*
10438
10439 TRACING
10440 M:      Steven Rostedt <rostedt@goodmis.org>
10441 M:      Ingo Molnar <mingo@redhat.com>
10442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10443 S:      Maintained
10444 F:      Documentation/trace/ftrace.txt
10445 F:      arch/*/*/*/ftrace.h
10446 F:      arch/*/kernel/ftrace.c
10447 F:      include/*/ftrace.h
10448 F:      include/linux/trace*.h
10449 F:      include/trace/
10450 F:      kernel/trace/
10451 F:      tools/testing/selftests/ftrace/
10452
10453 TRIVIAL PATCHES
10454 M:      Jiri Kosina <trivial@kernel.org>
10455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10456 S:      Maintained
10457 K:      ^Subject:.*(?i)trivial
10458
10459 TTY LAYER
10460 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10461 M:      Jiri Slaby <jslaby@suse.com>
10462 S:      Supported
10463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10464 F:      Documentation/serial/
10465 F:      drivers/tty/
10466 F:      drivers/tty/serial/serial_core.c
10467 F:      include/linux/serial_core.h
10468 F:      include/linux/serial.h
10469 F:      include/linux/tty.h
10470 F:      include/uapi/linux/serial_core.h
10471 F:      include/uapi/linux/serial.h
10472 F:      include/uapi/linux/tty.h
10473
10474 TUA9001 MEDIA DRIVER
10475 M:      Antti Palosaari <crope@iki.fi>
10476 L:      linux-media@vger.kernel.org
10477 W:      http://linuxtv.org/
10478 W:      http://palosaari.fi/linux/
10479 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10480 T:      git git://linuxtv.org/anttip/media_tree.git
10481 S:      Maintained
10482 F:      drivers/media/tuners/tua9001*
10483
10484 TULIP NETWORK DRIVERS
10485 M:      Grant Grundler <grundler@parisc-linux.org>
10486 L:      netdev@vger.kernel.org
10487 S:      Maintained
10488 F:      drivers/net/ethernet/dec/tulip/
10489
10490 TUN/TAP driver
10491 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10492 W:      http://vtun.sourceforge.net/tun
10493 S:      Maintained
10494 F:      Documentation/networking/tuntap.txt
10495 F:      arch/um/os-Linux/drivers/
10496
10497 TURBOCHANNEL SUBSYSTEM
10498 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10499 M:      Ralf Baechle <ralf@linux-mips.org>
10500 L:      linux-mips@linux-mips.org
10501 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10502 S:      Maintained
10503 F:      drivers/tc/
10504 F:      include/linux/tc.h
10505
10506 U14-34F SCSI DRIVER
10507 M:      Dario Ballabio <ballabio_dario@emc.com>
10508 L:      linux-scsi@vger.kernel.org
10509 S:      Maintained
10510 F:      drivers/scsi/u14-34f.c
10511
10512 UBI FILE SYSTEM (UBIFS)
10513 M:      Artem Bityutskiy <dedekind1@gmail.com>
10514 M:      Adrian Hunter <adrian.hunter@intel.com>
10515 L:      linux-mtd@lists.infradead.org
10516 T:      git git://git.infradead.org/ubifs-2.6.git
10517 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10518 S:      Maintained
10519 F:      Documentation/filesystems/ubifs.txt
10520 F:      fs/ubifs/
10521
10522 UCLINUX (M68KNOMMU AND COLDFIRE)
10523 M:      Greg Ungerer <gerg@uclinux.org>
10524 W:      http://www.uclinux.org/
10525 L:      linux-m68k@lists.linux-m68k.org
10526 L:      uclinux-dev@uclinux.org  (subscribers-only)
10527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10528 S:      Maintained
10529 F:      arch/m68k/coldfire/
10530 F:      arch/m68k/68*/
10531 F:      arch/m68k/*/*_no.*
10532 F:      arch/m68k/include/asm/*_no.*
10533
10534 UDF FILESYSTEM
10535 M:      Jan Kara <jack@suse.com>
10536 S:      Maintained
10537 F:      Documentation/filesystems/udf.txt
10538 F:      fs/udf/
10539
10540 UFS FILESYSTEM
10541 M:      Evgeniy Dushistov <dushistov@mail.ru>
10542 S:      Maintained
10543 F:      Documentation/filesystems/ufs.txt
10544 F:      fs/ufs/
10545
10546 UHID USERSPACE HID IO DRIVER:
10547 M:      David Herrmann <dh.herrmann@googlemail.com>
10548 L:      linux-input@vger.kernel.org
10549 S:      Maintained
10550 F:      drivers/hid/uhid.c
10551 F:      include/uapi/linux/uhid.h
10552
10553 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10554 L:      linux-usb@vger.kernel.org
10555 S:      Orphan
10556 F:      drivers/uwb/
10557 F:      include/linux/uwb.h
10558 F:      include/linux/uwb/
10559
10560 UNICORE32 ARCHITECTURE:
10561 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10562 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10563 S:      Maintained
10564 T:      git git://github.com/gxt/linux.git
10565 F:      arch/unicore32/
10566
10567 UNIFDEF
10568 M:      Tony Finch <dot@dotat.at>
10569 W:      http://dotat.at/prog/unifdef
10570 S:      Maintained
10571 F:      scripts/unifdef.c
10572
10573 UNIFORM CDROM DRIVER
10574 M:      Jens Axboe <axboe@kernel.dk>
10575 W:      http://www.kernel.dk
10576 S:      Maintained
10577 F:      Documentation/cdrom/
10578 F:      drivers/cdrom/cdrom.c
10579 F:      include/linux/cdrom.h
10580 F:      include/uapi/linux/cdrom.h
10581
10582 UNISYS S-PAR DRIVERS
10583 M:      Benjamin Romer <benjamin.romer@unisys.com>
10584 M:      David Kershner <david.kershner@unisys.com>
10585 L:      sparmaintainer@unisys.com (Unisys internal)
10586 S:      Supported
10587 F:      drivers/staging/unisys/
10588
10589 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10590 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10591 L:      linux-scsi@vger.kernel.org
10592 S:      Supported
10593 F:      Documentation/scsi/ufs.txt
10594 F:      drivers/scsi/ufs/
10595
10596 UNSORTED BLOCK IMAGES (UBI)
10597 M:      Artem Bityutskiy <dedekind1@gmail.com>
10598 M:      Richard Weinberger <richard@nod.at>
10599 W:      http://www.linux-mtd.infradead.org/
10600 L:      linux-mtd@lists.infradead.org
10601 T:      git git://git.infradead.org/ubifs-2.6.git
10602 S:      Supported
10603 F:      drivers/mtd/ubi/
10604 F:      include/linux/mtd/ubi.h
10605 F:      include/uapi/mtd/ubi-user.h
10606
10607 USB ACM DRIVER
10608 M:      Oliver Neukum <oliver@neukum.org>
10609 L:      linux-usb@vger.kernel.org
10610 S:      Maintained
10611 F:      Documentation/usb/acm.txt
10612 F:      drivers/usb/class/cdc-acm.*
10613
10614 USB AR5523 WIRELESS DRIVER
10615 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10616 L:      linux-wireless@vger.kernel.org
10617 S:      Maintained
10618 F:      drivers/net/wireless/ath/ar5523/
10619
10620 USB ATTACHED SCSI
10621 M:      Hans de Goede <hdegoede@redhat.com>
10622 M:      Gerd Hoffmann <kraxel@redhat.com>
10623 L:      linux-usb@vger.kernel.org
10624 L:      linux-scsi@vger.kernel.org
10625 S:      Maintained
10626 F:      drivers/usb/storage/uas.c
10627
10628 USB CDC ETHERNET DRIVER
10629 M:      Oliver Neukum <oliver@neukum.org>
10630 L:      linux-usb@vger.kernel.org
10631 S:      Maintained
10632 F:      drivers/net/usb/cdc_*.c
10633 F:      include/uapi/linux/usb/cdc.h
10634
10635 USB CHAOSKEY DRIVER
10636 M:      Keith Packard <keithp@keithp.com>
10637 L:      linux-usb@vger.kernel.org
10638 S:      Maintained
10639 F:      drivers/usb/misc/chaoskey.c
10640
10641 USB CYPRESS C67X00 DRIVER
10642 M:      Peter Korsgaard <jacmet@sunsite.dk>
10643 L:      linux-usb@vger.kernel.org
10644 S:      Maintained
10645 F:      drivers/usb/c67x00/
10646
10647 USB DAVICOM DM9601 DRIVER
10648 M:      Peter Korsgaard <jacmet@sunsite.dk>
10649 L:      netdev@vger.kernel.org
10650 W:      http://www.linux-usb.org/usbnet
10651 S:      Maintained
10652 F:      drivers/net/usb/dm9601.c
10653
10654 USB DIAMOND RIO500 DRIVER
10655 M:      Cesar Miquel <miquel@df.uba.ar>
10656 L:      rio500-users@lists.sourceforge.net
10657 W:      http://rio500.sourceforge.net
10658 S:      Maintained
10659 F:      drivers/usb/misc/rio500*
10660
10661 USB EHCI DRIVER
10662 M:      Alan Stern <stern@rowland.harvard.edu>
10663 L:      linux-usb@vger.kernel.org
10664 S:      Maintained
10665 F:      Documentation/usb/ehci.txt
10666 F:      drivers/usb/host/ehci*
10667
10668 USB GADGET/PERIPHERAL SUBSYSTEM
10669 M:      Felipe Balbi <balbi@ti.com>
10670 L:      linux-usb@vger.kernel.org
10671 W:      http://www.linux-usb.org/gadget
10672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10673 S:      Maintained
10674 F:      drivers/usb/gadget/
10675 F:      include/linux/usb/gadget*
10676
10677 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10678 M:      Jiri Kosina <jikos@kernel.org>
10679 L:      linux-usb@vger.kernel.org
10680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10681 S:      Maintained
10682 F:      Documentation/hid/hiddev.txt
10683 F:      drivers/hid/usbhid/
10684
10685 USB ISP116X DRIVER
10686 M:      Olav Kongas <ok@artecdesign.ee>
10687 L:      linux-usb@vger.kernel.org
10688 S:      Maintained
10689 F:      drivers/usb/host/isp116x*
10690 F:      include/linux/usb/isp116x.h
10691
10692 USB MASS STORAGE DRIVER
10693 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10694 L:      linux-usb@vger.kernel.org
10695 L:      usb-storage@lists.one-eyed-alien.net
10696 S:      Maintained
10697 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10698 F:      drivers/usb/storage/
10699
10700 USB MIDI DRIVER
10701 M:      Clemens Ladisch <clemens@ladisch.de>
10702 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10703 T:      git git://git.alsa-project.org/alsa-kernel.git
10704 S:      Maintained
10705 F:      sound/usb/midi.*
10706
10707 USB NETWORKING DRIVERS
10708 L:      linux-usb@vger.kernel.org
10709 S:      Odd Fixes
10710 F:      drivers/net/usb/
10711
10712 USB OHCI DRIVER
10713 M:      Alan Stern <stern@rowland.harvard.edu>
10714 L:      linux-usb@vger.kernel.org
10715 S:      Maintained
10716 F:      Documentation/usb/ohci.txt
10717 F:      drivers/usb/host/ohci*
10718
10719 USB OTG FSM (Finite State Machine)
10720 M:      Peter Chen <Peter.Chen@freescale.com>
10721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10722 L:      linux-usb@vger.kernel.org
10723 S:      Maintained
10724 F:      drivers/usb/common/usb-otg-fsm.c
10725
10726 USB OVER IP DRIVER
10727 M:      Valentina Manea <valentina.manea.m@gmail.com>
10728 M:      Shuah Khan <shuah.kh@samsung.com>
10729 L:      linux-usb@vger.kernel.org
10730 S:      Maintained
10731 F:      drivers/usb/usbip/
10732 F:      tools/usb/usbip/
10733
10734 USB PEGASUS DRIVER
10735 M:      Petko Manolov <petkan@nucleusys.com>
10736 L:      linux-usb@vger.kernel.org
10737 L:      netdev@vger.kernel.org
10738 T:      git git://github.com/petkan/pegasus.git
10739 W:      https://github.com/petkan/pegasus
10740 S:      Maintained
10741 F:      drivers/net/usb/pegasus.*
10742
10743 USB PHY LAYER
10744 M:      Felipe Balbi <balbi@ti.com>
10745 L:      linux-usb@vger.kernel.org
10746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10747 S:      Maintained
10748 F:      drivers/usb/phy/
10749
10750 USB PRINTER DRIVER (usblp)
10751 M:      Pete Zaitcev <zaitcev@redhat.com>
10752 L:      linux-usb@vger.kernel.org
10753 S:      Supported
10754 F:      drivers/usb/class/usblp.c
10755
10756 USB RTL8150 DRIVER
10757 M:      Petko Manolov <petkan@nucleusys.com>
10758 L:      linux-usb@vger.kernel.org
10759 L:      netdev@vger.kernel.org
10760 T:      git git://github.com/petkan/rtl8150.git
10761 W:      https://github.com/petkan/rtl8150
10762 S:      Maintained
10763 F:      drivers/net/usb/rtl8150.c
10764
10765 USB SERIAL SUBSYSTEM
10766 M:      Johan Hovold <johan@kernel.org>
10767 L:      linux-usb@vger.kernel.org
10768 S:      Maintained
10769 F:      Documentation/usb/usb-serial.txt
10770 F:      drivers/usb/serial/
10771 F:      include/linux/usb/serial.h
10772
10773 USB SMSC75XX ETHERNET DRIVER
10774 M:      Steve Glendinning <steve.glendinning@shawell.net>
10775 L:      netdev@vger.kernel.org
10776 S:      Maintained
10777 F:      drivers/net/usb/smsc75xx.*
10778
10779 USB SMSC95XX ETHERNET DRIVER
10780 M:      Steve Glendinning <steve.glendinning@shawell.net>
10781 L:      netdev@vger.kernel.org
10782 S:      Maintained
10783 F:      drivers/net/usb/smsc95xx.*
10784
10785 USB SUBSYSTEM
10786 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10787 L:      linux-usb@vger.kernel.org
10788 W:      http://www.linux-usb.org
10789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10790 S:      Supported
10791 F:      Documentation/usb/
10792 F:      drivers/usb/
10793 F:      include/linux/usb.h
10794 F:      include/linux/usb/
10795
10796 USB UHCI DRIVER
10797 M:      Alan Stern <stern@rowland.harvard.edu>
10798 L:      linux-usb@vger.kernel.org
10799 S:      Maintained
10800 F:      drivers/usb/host/uhci*
10801
10802 USB "USBNET" DRIVER FRAMEWORK
10803 M:      Oliver Neukum <oneukum@suse.com>
10804 L:      netdev@vger.kernel.org
10805 W:      http://www.linux-usb.org/usbnet
10806 S:      Maintained
10807 F:      drivers/net/usb/usbnet.c
10808 F:      include/linux/usb/usbnet.h
10809
10810 USB VIDEO CLASS
10811 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10812 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10813 L:      linux-media@vger.kernel.org
10814 T:      git git://linuxtv.org/media_tree.git
10815 W:      http://www.ideasonboard.org/uvc/
10816 S:      Maintained
10817 F:      drivers/media/usb/uvc/
10818 F:      include/uapi/linux/uvcvideo.h
10819
10820 USB VISION DRIVER
10821 M:      Hans Verkuil <hverkuil@xs4all.nl>
10822 L:      linux-media@vger.kernel.org
10823 T:      git git://linuxtv.org/media_tree.git
10824 W:      http://linuxtv.org
10825 S:      Odd Fixes
10826 F:      drivers/media/usb/usbvision/
10827
10828 USB WEBCAM GADGET
10829 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10830 L:      linux-usb@vger.kernel.org
10831 S:      Maintained
10832 F:      drivers/usb/gadget/function/*uvc*
10833 F:      drivers/usb/gadget/legacy/webcam.c
10834
10835 USB WIRELESS RNDIS DRIVER (rndis_wlan)
10836 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
10837 L:      linux-wireless@vger.kernel.org
10838 S:      Maintained
10839 F:      drivers/net/wireless/rndis_wlan.c
10840
10841 USB XHCI DRIVER
10842 M:      Mathias Nyman <mathias.nyman@intel.com>
10843 L:      linux-usb@vger.kernel.org
10844 S:      Supported
10845 F:      drivers/usb/host/xhci*
10846 F:      drivers/usb/host/pci-quirks*
10847
10848 USB ZD1201 DRIVER
10849 L:      linux-wireless@vger.kernel.org
10850 W:      http://linux-lc100020.sourceforge.net
10851 S:      Orphan
10852 F:      drivers/net/wireless/zd1201.*
10853
10854 USB ZR364XX DRIVER
10855 M:      Antoine Jacquet <royale@zerezo.com>
10856 L:      linux-usb@vger.kernel.org
10857 L:      linux-media@vger.kernel.org
10858 T:      git git://linuxtv.org/media_tree.git
10859 W:      http://royale.zerezo.com/zr364xx/
10860 S:      Maintained
10861 F:      Documentation/video4linux/zr364xx.txt
10862 F:      drivers/media/usb/zr364xx/
10863
10864 ULPI BUS
10865 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
10866 L:      linux-usb@vger.kernel.org
10867 S:      Maintained
10868 F:      drivers/usb/common/ulpi.c
10869 F:      include/linux/ulpi/
10870
10871 USER-MODE LINUX (UML)
10872 M:      Jeff Dike <jdike@addtoit.com>
10873 M:      Richard Weinberger <richard@nod.at>
10874 L:      user-mode-linux-devel@lists.sourceforge.net
10875 L:      user-mode-linux-user@lists.sourceforge.net
10876 W:      http://user-mode-linux.sourceforge.net
10877 S:      Maintained
10878 F:      Documentation/virtual/uml/
10879 F:      arch/um/
10880 F:      arch/x86/um/
10881 F:      fs/hostfs/
10882 F:      fs/hppfs/
10883
10884 USERSPACE I/O (UIO)
10885 M:      "Hans J. Koch" <hjk@hansjkoch.de>
10886 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10887 S:      Maintained
10888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
10889 F:      Documentation/DocBook/uio-howto.tmpl
10890 F:      drivers/uio/
10891 F:      include/linux/uio*.h
10892
10893 UTIL-LINUX PACKAGE
10894 M:      Karel Zak <kzak@redhat.com>
10895 L:      util-linux@vger.kernel.org
10896 W:      http://en.wikipedia.org/wiki/Util-linux
10897 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
10898 S:      Maintained
10899
10900 UVESAFB DRIVER
10901 M:      Michal Januszewski <spock@gentoo.org>
10902 L:      linux-fbdev@vger.kernel.org
10903 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
10904 S:      Maintained
10905 F:      Documentation/fb/uvesafb.txt
10906 F:      drivers/video/fbdev/uvesafb.*
10907
10908 VFAT/FAT/MSDOS FILESYSTEM
10909 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
10910 S:      Maintained
10911 F:      Documentation/filesystems/vfat.txt
10912 F:      fs/fat/
10913
10914 VFIO DRIVER
10915 M:      Alex Williamson <alex.williamson@redhat.com>
10916 L:      kvm@vger.kernel.org
10917 S:      Maintained
10918 F:      Documentation/vfio.txt
10919 F:      drivers/vfio/
10920 F:      include/linux/vfio.h
10921 F:      include/uapi/linux/vfio.h
10922
10923 VFIO PLATFORM DRIVER
10924 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
10925 L:      kvm@vger.kernel.org
10926 S:      Maintained
10927 F:      drivers/vfio/platform/
10928
10929 VIDEOBUF2 FRAMEWORK
10930 M:      Pawel Osciak <pawel@osciak.com>
10931 M:      Marek Szyprowski <m.szyprowski@samsung.com>
10932 M:      Kyungmin Park <kyungmin.park@samsung.com>
10933 L:      linux-media@vger.kernel.org
10934 S:      Maintained
10935 F:      drivers/media/v4l2-core/videobuf2-*
10936 F:      include/media/videobuf2-*
10937
10938 VIRTIO CONSOLE DRIVER
10939 M:      Amit Shah <amit.shah@redhat.com>
10940 L:      virtualization@lists.linux-foundation.org
10941 S:      Maintained
10942 F:      drivers/char/virtio_console.c
10943 F:      include/linux/virtio_console.h
10944 F:      include/uapi/linux/virtio_console.h
10945
10946 VIRTIO CORE, NET AND BLOCK DRIVERS
10947 M:      "Michael S. Tsirkin" <mst@redhat.com>
10948 L:      virtualization@lists.linux-foundation.org
10949 S:      Maintained
10950 F:      drivers/virtio/
10951 F:      tools/virtio/
10952 F:      drivers/net/virtio_net.c
10953 F:      drivers/block/virtio_blk.c
10954 F:      include/linux/virtio_*.h
10955 F:      include/uapi/linux/virtio_*.h
10956
10957 VIRTIO DRIVERS FOR S390
10958 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10959 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
10960 L:      linux-s390@vger.kernel.org
10961 L:      virtualization@lists.linux-foundation.org
10962 L:      kvm@vger.kernel.org
10963 S:      Supported
10964 F:      drivers/s390/virtio/
10965
10966 VIRTIO GPU DRIVER
10967 M:      David Airlie <airlied@linux.ie>
10968 M:      Gerd Hoffmann <kraxel@redhat.com>
10969 L:      dri-devel@lists.freedesktop.org
10970 L:      virtualization@lists.linux-foundation.org
10971 S:      Maintained
10972 F:      drivers/gpu/drm/virtio/
10973 F:      include/uapi/linux/virtio_gpu.h
10974
10975 VIRTIO HOST (VHOST)
10976 M:      "Michael S. Tsirkin" <mst@redhat.com>
10977 L:      kvm@vger.kernel.org
10978 L:      virtualization@lists.linux-foundation.org
10979 L:      netdev@vger.kernel.org
10980 S:      Maintained
10981 F:      drivers/vhost/
10982 F:      include/uapi/linux/vhost.h
10983
10984 VIRTIO INPUT DRIVER
10985 M:      Gerd Hoffmann <kraxel@redhat.com>
10986 S:      Maintained
10987 F:      drivers/virtio/virtio_input.c
10988 F:      include/uapi/linux/virtio_input.h
10989
10990 VIA RHINE NETWORK DRIVER
10991 S:      Orphan
10992 F:      drivers/net/ethernet/via/via-rhine.c
10993
10994 VIA SD/MMC CARD CONTROLLER DRIVER
10995 M:      Bruce Chang <brucechang@via.com.tw>
10996 M:      Harald Welte <HaraldWelte@viatech.com>
10997 S:      Maintained
10998 F:      drivers/mmc/host/via-sdmmc.c
10999
11000 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11001 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11002 L:      linux-fbdev@vger.kernel.org
11003 S:      Maintained
11004 F:      include/linux/via-core.h
11005 F:      include/linux/via-gpio.h
11006 F:      include/linux/via_i2c.h
11007 F:      drivers/video/fbdev/via/
11008
11009 VIA VELOCITY NETWORK DRIVER
11010 M:      Francois Romieu <romieu@fr.zoreil.com>
11011 L:      netdev@vger.kernel.org
11012 S:      Maintained
11013 F:      drivers/net/ethernet/via/via-velocity.*
11014
11015 VIVID VIRTUAL VIDEO DRIVER
11016 M:      Hans Verkuil <hverkuil@xs4all.nl>
11017 L:      linux-media@vger.kernel.org
11018 T:      git git://linuxtv.org/media_tree.git
11019 W:      http://linuxtv.org
11020 S:      Maintained
11021 F:      drivers/media/platform/vivid/*
11022
11023 VLAN (802.1Q)
11024 M:      Patrick McHardy <kaber@trash.net>
11025 L:      netdev@vger.kernel.org
11026 S:      Maintained
11027 F:      drivers/net/macvlan.c
11028 F:      include/linux/if_*vlan.h
11029 F:      net/8021q/
11030
11031 VLYNQ BUS
11032 M:      Florian Fainelli <florian@openwrt.org>
11033 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11034 S:      Maintained
11035 F:      drivers/vlynq/vlynq.c
11036 F:      include/linux/vlynq.h
11037
11038 VME SUBSYSTEM
11039 M:      Martyn Welch <martyn.welch@ge.com>
11040 M:      Manohar Vanga <manohar.vanga@gmail.com>
11041 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11042 L:      devel@driverdev.osuosl.org
11043 S:      Maintained
11044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11045 F:      Documentation/vme_api.txt
11046 F:      drivers/staging/vme/
11047 F:      drivers/vme/
11048 F:      include/linux/vme*
11049
11050 VMWARE HYPERVISOR INTERFACE
11051 M:      Alok Kataria <akataria@vmware.com>
11052 L:      virtualization@lists.linux-foundation.org
11053 S:      Supported
11054 F:      arch/x86/kernel/cpu/vmware.c
11055
11056 VMWARE BALLOON DRIVER
11057 M:      Xavier Deguillard <xdeguillard@vmware.com>
11058 M:      Philip Moltmann <moltmann@vmware.com>
11059 M:      "VMware, Inc." <pv-drivers@vmware.com>
11060 L:      linux-kernel@vger.kernel.org
11061 S:      Maintained
11062 F:      drivers/misc/vmw_balloon.c
11063
11064 VMWARE VMMOUSE SUBDRIVER
11065 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11066 M:      "VMware, Inc." <pv-drivers@vmware.com>
11067 L:      linux-input@vger.kernel.org
11068 S:      Maintained
11069 F:      drivers/input/mouse/vmmouse.c
11070 F:      drivers/input/mouse/vmmouse.h
11071
11072 VMWARE VMXNET3 ETHERNET DRIVER
11073 M:      Shrikrishna Khare <skhare@vmware.com>
11074 M:      "VMware, Inc." <pv-drivers@vmware.com>
11075 L:      netdev@vger.kernel.org
11076 S:      Maintained
11077 F:      drivers/net/vmxnet3/
11078
11079 VMware PVSCSI driver
11080 M:      Arvind Kumar <arvindkumar@vmware.com>
11081 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11082 L:      linux-scsi@vger.kernel.org
11083 S:      Maintained
11084 F:      drivers/scsi/vmw_pvscsi.c
11085 F:      drivers/scsi/vmw_pvscsi.h
11086
11087 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11088 M:      Liam Girdwood <lgirdwood@gmail.com>
11089 M:      Mark Brown <broonie@kernel.org>
11090 L:      linux-kernel@vger.kernel.org
11091 W:      http://opensource.wolfsonmicro.com/node/15
11092 W:      http://www.slimlogic.co.uk/?p=48
11093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11094 S:      Supported
11095 F:      drivers/regulator/
11096 F:      include/linux/regulator/
11097
11098 VRF
11099 M:      David Ahern <dsa@cumulusnetworks.com>
11100 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11101 L:      netdev@vger.kernel.org
11102 S:      Maintained
11103 F:      drivers/net/vrf.c
11104 F:      include/net/vrf.h
11105
11106 VT1211 HARDWARE MONITOR DRIVER
11107 M:      Juerg Haefliger <juergh@gmail.com>
11108 L:      lm-sensors@lm-sensors.org
11109 S:      Maintained
11110 F:      Documentation/hwmon/vt1211
11111 F:      drivers/hwmon/vt1211.c
11112
11113 VT8231 HARDWARE MONITOR DRIVER
11114 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11115 L:      lm-sensors@lm-sensors.org
11116 S:      Maintained
11117 F:      drivers/hwmon/vt8231.c
11118
11119 VUB300 USB to SDIO/SD/MMC bridge chip
11120 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11121 L:      linux-mmc@vger.kernel.org
11122 L:      linux-usb@vger.kernel.org
11123 S:      Supported
11124 F:      drivers/mmc/host/vub300.c
11125
11126 W1 DALLAS'S 1-WIRE BUS
11127 M:      Evgeniy Polyakov <zbr@ioremap.net>
11128 S:      Maintained
11129 F:      Documentation/w1/
11130 F:      drivers/w1/
11131
11132 W83791D HARDWARE MONITORING DRIVER
11133 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11134 L:      lm-sensors@lm-sensors.org
11135 S:      Maintained
11136 F:      Documentation/hwmon/w83791d
11137 F:      drivers/hwmon/w83791d.c
11138
11139 W83793 HARDWARE MONITORING DRIVER
11140 M:      Rudolf Marek <r.marek@assembler.cz>
11141 L:      lm-sensors@lm-sensors.org
11142 S:      Maintained
11143 F:      Documentation/hwmon/w83793
11144 F:      drivers/hwmon/w83793.c
11145
11146 W83795 HARDWARE MONITORING DRIVER
11147 M:      Jean Delvare <jdelvare@suse.com>
11148 L:      lm-sensors@lm-sensors.org
11149 S:      Maintained
11150 F:      drivers/hwmon/w83795.c
11151
11152 W83L51xD SD/MMC CARD INTERFACE DRIVER
11153 M:      Pierre Ossman <pierre@ossman.eu>
11154 S:      Maintained
11155 F:      drivers/mmc/host/wbsd.*
11156
11157 WACOM PROTOCOL 4 SERIAL TABLETS
11158 M:      Julian Squires <julian@cipht.net>
11159 M:      Hans de Goede <hdegoede@redhat.com>
11160 L:      linux-input@vger.kernel.org
11161 S:      Maintained
11162 F:      drivers/input/tablet/wacom_serial4.c
11163
11164 WATCHDOG DEVICE DRIVERS
11165 M:      Wim Van Sebroeck <wim@iguana.be>
11166 L:      linux-watchdog@vger.kernel.org
11167 W:      http://www.linux-watchdog.org/
11168 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11169 S:      Maintained
11170 F:      Documentation/watchdog/
11171 F:      drivers/watchdog/
11172 F:      include/linux/watchdog.h
11173 F:      include/uapi/linux/watchdog.h
11174
11175 WD7000 SCSI DRIVER
11176 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11177 L:      linux-scsi@vger.kernel.org
11178 S:      Maintained
11179 F:      drivers/scsi/wd7000.c
11180
11181 WIIMOTE HID DRIVER
11182 M:      David Herrmann <dh.herrmann@googlemail.com>
11183 L:      linux-input@vger.kernel.org
11184 S:      Maintained
11185 F:      drivers/hid/hid-wiimote*
11186
11187 WINBOND CIR DRIVER
11188 M:      David Härdeman <david@hardeman.nu>
11189 S:      Maintained
11190 F:      drivers/media/rc/winbond-cir.c
11191
11192 WIMAX STACK
11193 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11194 M:      linux-wimax@intel.com
11195 L:      wimax@linuxwimax.org (subscribers-only)
11196 S:      Supported
11197 W:      http://linuxwimax.org
11198 F:      Documentation/wimax/README.wimax
11199 F:      include/linux/wimax/debug.h
11200 F:      include/net/wimax.h
11201 F:      include/uapi/linux/wimax.h
11202 F:      net/wimax/
11203
11204 WISTRON LAPTOP BUTTON DRIVER
11205 M:      Miloslav Trmac <mitr@volny.cz>
11206 S:      Maintained
11207 F:      drivers/input/misc/wistron_btns.c
11208
11209 WL3501 WIRELESS PCMCIA CARD DRIVER
11210 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11211 L:      linux-wireless@vger.kernel.org
11212 W:      http://oops.ghostprotocols.net:81/blog
11213 S:      Maintained
11214 F:      drivers/net/wireless/wl3501*
11215
11216 WM97XX TOUCHSCREEN DRIVERS
11217 M:      Mark Brown <broonie@kernel.org>
11218 M:      Liam Girdwood <lrg@slimlogic.co.uk>
11219 L:      linux-input@vger.kernel.org
11220 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
11221 W:      http://opensource.wolfsonmicro.com/node/7
11222 S:      Supported
11223 F:      drivers/input/touchscreen/*wm97*
11224 F:      include/linux/wm97xx.h
11225
11226 WOLFSON MICROELECTRONICS DRIVERS
11227 L:      patches@opensource.wolfsonmicro.com
11228 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
11229 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
11230 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
11231 S:      Supported
11232 F:      Documentation/hwmon/wm83??
11233 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11234 F:      drivers/clk/clk-wm83*.c
11235 F:      drivers/extcon/extcon-arizona.c
11236 F:      drivers/leds/leds-wm83*.c
11237 F:      drivers/gpio/gpio-*wm*.c
11238 F:      drivers/gpio/gpio-arizona.c
11239 F:      drivers/hwmon/wm83??-hwmon.c
11240 F:      drivers/input/misc/wm831x-on.c
11241 F:      drivers/input/touchscreen/wm831x-ts.c
11242 F:      drivers/input/touchscreen/wm97*.c
11243 F:      drivers/mfd/arizona*
11244 F:      drivers/mfd/wm*.c
11245 F:      drivers/power/wm83*.c
11246 F:      drivers/rtc/rtc-wm83*.c
11247 F:      drivers/regulator/wm8*.c
11248 F:      drivers/video/backlight/wm83*_bl.c
11249 F:      drivers/watchdog/wm83*_wdt.c
11250 F:      include/linux/mfd/arizona/
11251 F:      include/linux/mfd/wm831x/
11252 F:      include/linux/mfd/wm8350/
11253 F:      include/linux/mfd/wm8400*
11254 F:      include/linux/wm97xx.h
11255 F:      include/sound/wm????.h
11256 F:      sound/soc/codecs/arizona.?
11257 F:      sound/soc/codecs/wm*
11258
11259 WORKQUEUE
11260 M:      Tejun Heo <tj@kernel.org>
11261 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11263 S:      Maintained
11264 F:      include/linux/workqueue.h
11265 F:      kernel/workqueue.c
11266 F:      Documentation/workqueue.txt
11267
11268 X.25 NETWORK LAYER
11269 M:      Andrew Hendry <andrew.hendry@gmail.com>
11270 L:      linux-x25@vger.kernel.org
11271 S:      Odd Fixes
11272 F:      Documentation/networking/x25*
11273 F:      include/net/x25*
11274 F:      net/x25/
11275
11276 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11277 M:      Thomas Gleixner <tglx@linutronix.de>
11278 M:      Ingo Molnar <mingo@redhat.com>
11279 M:      "H. Peter Anvin" <hpa@zytor.com>
11280 M:      x86@kernel.org
11281 L:      linux-kernel@vger.kernel.org
11282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11283 S:      Maintained
11284 F:      Documentation/x86/
11285 F:      arch/x86/
11286
11287 X86 PLATFORM DRIVERS
11288 M:      Darren Hart <dvhart@infradead.org>
11289 L:      platform-driver-x86@vger.kernel.org
11290 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11291 S:      Maintained
11292 F:      drivers/platform/x86/
11293
11294 X86 MCE INFRASTRUCTURE
11295 M:      Tony Luck <tony.luck@intel.com>
11296 M:      Borislav Petkov <bp@alien8.de>
11297 L:      linux-edac@vger.kernel.org
11298 S:      Maintained
11299 F:      arch/x86/kernel/cpu/mcheck/*
11300
11301 X86 VDSO
11302 M:      Andy Lutomirski <luto@amacapital.net>
11303 L:      linux-kernel@vger.kernel.org
11304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11305 S:      Maintained
11306 F:      arch/x86/entry/vdso/
11307
11308 XC2028/3028 TUNER DRIVER
11309 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11310 L:      linux-media@vger.kernel.org
11311 W:      http://linuxtv.org
11312 T:      git git://linuxtv.org/media_tree.git
11313 S:      Maintained
11314 F:      drivers/media/tuners/tuner-xc2028.*
11315
11316 XEN HYPERVISOR INTERFACE
11317 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11318 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11319 M:      David Vrabel <david.vrabel@citrix.com>
11320 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11322 S:      Supported
11323 F:      arch/x86/xen/
11324 F:      drivers/*/xen-*front.c
11325 F:      drivers/xen/
11326 F:      arch/x86/include/asm/xen/
11327 F:      include/xen/
11328 F:      include/uapi/xen/
11329
11330 XEN HYPERVISOR ARM
11331 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11332 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11333 S:      Supported
11334 F:      arch/arm/xen/
11335 F:      arch/arm/include/asm/xen/
11336
11337 XEN HYPERVISOR ARM64
11338 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11339 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11340 S:      Supported
11341 F:      arch/arm64/xen/
11342 F:      arch/arm64/include/asm/xen/
11343
11344 XEN NETWORK BACKEND DRIVER
11345 M:      Ian Campbell <ian.campbell@citrix.com>
11346 M:      Wei Liu <wei.liu2@citrix.com>
11347 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11348 L:      netdev@vger.kernel.org
11349 S:      Supported
11350 F:      drivers/net/xen-netback/*
11351
11352 XEN PCI SUBSYSTEM
11353 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11354 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11355 S:      Supported
11356 F:      arch/x86/pci/*xen*
11357 F:      drivers/pci/*xen*
11358
11359 XEN BLOCK SUBSYSTEM
11360 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11361 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11362 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11363 S:      Supported
11364 F:      drivers/block/xen-blkback/*
11365 F:      drivers/block/xen*
11366
11367 XEN PVSCSI DRIVERS
11368 M:      Juergen Gross <jgross@suse.com>
11369 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11370 L:      linux-scsi@vger.kernel.org
11371 S:      Supported
11372 F:      drivers/scsi/xen-scsifront.c
11373 F:      drivers/xen/xen-scsiback.c
11374 F:      include/xen/interface/io/vscsiif.h
11375
11376 XEN SWIOTLB SUBSYSTEM
11377 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11378 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11379 S:      Supported
11380 F:      arch/x86/xen/*swiotlb*
11381 F:      drivers/xen/*swiotlb*
11382
11383 XFS FILESYSTEM
11384 P:      Silicon Graphics Inc
11385 M:      Dave Chinner <david@fromorbit.com>
11386 M:      xfs@oss.sgi.com
11387 L:      xfs@oss.sgi.com
11388 W:      http://oss.sgi.com/projects/xfs
11389 T:      git git://oss.sgi.com/xfs/xfs.git
11390 S:      Supported
11391 F:      Documentation/filesystems/xfs.txt
11392 F:      fs/xfs/
11393
11394 XILINX AXI ETHERNET DRIVER
11395 M:      Anirudha Sarangi <anirudh@xilinx.com>
11396 M:      John Linn <John.Linn@xilinx.com>
11397 S:      Maintained
11398 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11399
11400 XILINX UARTLITE SERIAL DRIVER
11401 M:      Peter Korsgaard <jacmet@sunsite.dk>
11402 L:      linux-serial@vger.kernel.org
11403 S:      Maintained
11404 F:      drivers/tty/serial/uartlite.c
11405
11406 XILINX VIDEO IP CORES
11407 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11408 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11409 L:      linux-media@vger.kernel.org
11410 T:      git git://linuxtv.org/media_tree.git
11411 S:      Supported
11412 F:      Documentation/devicetree/bindings/media/xilinx/
11413 F:      drivers/media/platform/xilinx/
11414 F:      include/uapi/linux/xilinx-v4l2-controls.h
11415
11416 XILLYBUS DRIVER
11417 M:      Eli Billauer <eli.billauer@gmail.com>
11418 L:      linux-kernel@vger.kernel.org
11419 S:      Supported
11420 F:      drivers/char/xillybus/
11421
11422 XTENSA XTFPGA PLATFORM SUPPORT
11423 M:      Max Filippov <jcmvbkbc@gmail.com>
11424 L:      linux-xtensa@linux-xtensa.org
11425 S:      Maintained
11426 F:      drivers/spi/spi-xtensa-xtfpga.c
11427 F:      sound/soc/xtensa/xtfpga-i2s.c
11428
11429 YAM DRIVER FOR AX.25
11430 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11431 L:      linux-hams@vger.kernel.org
11432 S:      Maintained
11433 F:      drivers/net/hamradio/yam*
11434 F:      include/linux/yam.h
11435
11436 YEALINK PHONE DRIVER
11437 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11438 L:      usbb2k-api-dev@nongnu.org
11439 S:      Maintained
11440 F:      Documentation/input/yealink.txt
11441 F:      drivers/input/misc/yealink.*
11442
11443 Z8530 DRIVER FOR AX.25
11444 M:      Joerg Reuter <jreuter@yaina.de>
11445 W:      http://yaina.de/jreuter/
11446 W:      http://www.qsl.net/dl1bke/
11447 L:      linux-hams@vger.kernel.org
11448 S:      Maintained
11449 F:      Documentation/networking/z8530drv.txt
11450 F:      drivers/net/hamradio/*scc.c
11451 F:      drivers/net/hamradio/z8530.h
11452
11453 ZBUD COMPRESSED PAGE ALLOCATOR
11454 M:      Seth Jennings <sjennings@variantweb.net>
11455 L:      linux-mm@kvack.org
11456 S:      Maintained
11457 F:      mm/zbud.c
11458 F:      include/linux/zbud.h
11459
11460 ZD1211RW WIRELESS DRIVER
11461 M:      Daniel Drake <dsd@gentoo.org>
11462 M:      Ulrich Kunitz <kune@deine-taler.de>
11463 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11464 L:      linux-wireless@vger.kernel.org
11465 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11466 S:      Maintained
11467 F:      drivers/net/wireless/zd1211rw/
11468
11469 ZPOOL COMPRESSED PAGE STORAGE API
11470 M:      Dan Streetman <ddstreet@ieee.org>
11471 L:      linux-mm@kvack.org
11472 S:      Maintained
11473 F:      mm/zpool.c
11474 F:      include/linux/zpool.h
11475
11476 ZR36067 VIDEO FOR LINUX DRIVER
11477 L:      mjpeg-users@lists.sourceforge.net
11478 L:      linux-media@vger.kernel.org
11479 W:      http://mjpeg.sourceforge.net/driver-zoran/
11480 T:      hg http://linuxtv.org/hg/v4l-dvb
11481 S:      Odd Fixes
11482 F:      drivers/media/pci/zoran/
11483
11484 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11485 M:      Minchan Kim <minchan@kernel.org>
11486 M:      Nitin Gupta <ngupta@vflare.org>
11487 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11488 L:      linux-kernel@vger.kernel.org
11489 S:      Maintained
11490 F:      drivers/block/zram/
11491 F:      Documentation/blockdev/zram.txt
11492
11493 ZS DECSTATION Z85C30 SERIAL DRIVER
11494 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11495 S:      Maintained
11496 F:      drivers/tty/serial/zs.*
11497
11498 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11499 M:      Minchan Kim <minchan@kernel.org>
11500 M:      Nitin Gupta <ngupta@vflare.org>
11501 L:      linux-mm@kvack.org
11502 S:      Maintained
11503 F:      mm/zsmalloc.c
11504 F:      include/linux/zsmalloc.h
11505 F:      Documentation/vm/zsmalloc.txt
11506
11507 ZSWAP COMPRESSED SWAP CACHING
11508 M:      Seth Jennings <sjennings@variantweb.net>
11509 L:      linux-mm@kvack.org
11510 S:      Maintained
11511 F:      mm/zswap.c
11512
11513 THE REST
11514 M:      Linus Torvalds <torvalds@linux-foundation.org>
11515 L:      linux-kernel@vger.kernel.org
11516 Q:      http://patchwork.kernel.org/project/LKML/list/
11517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11518 S:      Buried alive in reporters
11519 F:      *
11520 F:      */