drm/amdgpu: add amdgpu <--> amdkfd gfx7 interface
[firefly-linux-kernel-4.4.55.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
162 6PACK NETWORK DRIVER FOR AX.25
163 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
164 L:      linux-hams@vger.kernel.org
165 S:      Maintained
166 F:      drivers/net/hamradio/6pack.c
167
168 8169 10/100/1000 GIGABIT ETHERNET DRIVER
169 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
170 L:      netdev@vger.kernel.org
171 S:      Maintained
172 F:      drivers/net/ethernet/realtek/r8169.c
173
174 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
175 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
176 L:      linux-serial@vger.kernel.org
177 W:      http://serial.sourceforge.net
178 S:      Maintained
179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
180 F:      drivers/tty/serial/8250*
181 F:      include/linux/serial_8250.h
182
183 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
184 L:      netdev@vger.kernel.org
185 S:      Orphan / Obsolete
186 F:      drivers/net/ethernet/8390/
187
188 9P FILE SYSTEM
189 M:      Eric Van Hensbergen <ericvh@gmail.com>
190 M:      Ron Minnich <rminnich@sandia.gov>
191 M:      Latchesar Ionkov <lucho@ionkov.net>
192 L:      v9fs-developer@lists.sourceforge.net
193 W:      http://swik.net/v9fs
194 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
196 S:      Maintained
197 F:      Documentation/filesystems/9p.txt
198 F:      fs/9p/
199 F:      net/9p/
200 F:      include/net/9p/
201 F:      include/uapi/linux/virtio_9p.h
202 F:      include/trace/events/9p.h
203
204
205 A8293 MEDIA DRIVER
206 M:      Antti Palosaari <crope@iki.fi>
207 L:      linux-media@vger.kernel.org
208 W:      http://linuxtv.org/
209 W:      http://palosaari.fi/linux/
210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
211 T:      git git://linuxtv.org/anttip/media_tree.git
212 S:      Maintained
213 F:      drivers/media/dvb-frontends/a8293*
214
215 AACRAID SCSI RAID DRIVER
216 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
217 L:      linux-scsi@vger.kernel.org
218 W:      http://www.adaptec.com/
219 S:      Supported
220 F:      Documentation/scsi/aacraid.txt
221 F:      drivers/scsi/aacraid/
222
223 ABI/API
224 L:      linux-api@vger.kernel.org
225 F:      Documentation/ABI/
226 F:      include/linux/syscalls.h
227 F:      include/uapi/
228 F:      kernel/sys_ni.c
229
230 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
231 M:      Hans de Goede <hdegoede@redhat.com>
232 L:      lm-sensors@lm-sensors.org
233 S:      Maintained
234 F:      drivers/hwmon/abituguru.c
235
236 ABIT UGURU 3 HARDWARE MONITOR DRIVER
237 M:      Alistair John Strachan <alistair@devzero.co.uk>
238 L:      lm-sensors@lm-sensors.org
239 S:      Maintained
240 F:      drivers/hwmon/abituguru3.c
241
242 ACENIC DRIVER
243 M:      Jes Sorensen <jes@trained-monkey.org>
244 L:      linux-acenic@sunsite.dk
245 S:      Maintained
246 F:      drivers/net/ethernet/alteon/acenic*
247
248 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
249 M:      Peter Feuerer <peter@piie.net>
250 L:      platform-driver-x86@vger.kernel.org
251 W:      http://piie.net/?section=acerhdf
252 S:      Maintained
253 F:      drivers/platform/x86/acerhdf.c
254
255 ACER WMI LAPTOP EXTRAS
256 M:      "Lee, Chun-Yi" <jlee@suse.com>
257 L:      platform-driver-x86@vger.kernel.org
258 S:      Maintained
259 F:      drivers/platform/x86/acer-wmi.c
260
261 ACPI
262 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
263 M:      Len Brown <lenb@kernel.org>
264 L:      linux-acpi@vger.kernel.org
265 W:      https://01.org/linux-acpi
266 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
268 S:      Supported
269 F:      drivers/acpi/
270 F:      drivers/pnp/pnpacpi/
271 F:      include/linux/acpi.h
272 F:      include/acpi/
273 F:      Documentation/acpi/
274 F:      Documentation/ABI/testing/sysfs-bus-acpi
275 F:      drivers/pci/*acpi*
276 F:      drivers/pci/*/*acpi*
277 F:      drivers/pci/*/*/*acpi*
278 F:      tools/power/acpi/
279
280 ACPI COMPONENT ARCHITECTURE (ACPICA)
281 M:      Robert Moore <robert.moore@intel.com>
282 M:      Lv Zheng <lv.zheng@intel.com>
283 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
284 L:      linux-acpi@vger.kernel.org
285 L:      devel@acpica.org
286 W:      https://acpica.org/
287 W:      https://github.com/acpica/acpica/
288 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
290 S:      Supported
291 F:      drivers/acpi/acpica/
292 F:      include/acpi/
293 F:      tools/power/acpi/
294
295 ACPI FAN DRIVER
296 M:      Zhang Rui <rui.zhang@intel.com>
297 L:      linux-acpi@vger.kernel.org
298 W:      https://01.org/linux-acpi
299 S:      Supported
300 F:      drivers/acpi/fan.c
301
302 ACPI THERMAL DRIVER
303 M:      Zhang Rui <rui.zhang@intel.com>
304 L:      linux-acpi@vger.kernel.org
305 W:      https://01.org/linux-acpi
306 S:      Supported
307 F:      drivers/acpi/*thermal*
308
309 ACPI VIDEO DRIVER
310 M:      Zhang Rui <rui.zhang@intel.com>
311 L:      linux-acpi@vger.kernel.org
312 W:      https://01.org/linux-acpi
313 S:      Supported
314 F:      drivers/acpi/video.c
315
316 ACPI WMI DRIVER
317 L:      platform-driver-x86@vger.kernel.org
318 S:      Orphan
319 F:      drivers/platform/x86/wmi.c
320
321 AD1889 ALSA SOUND DRIVER
322 M:      Thibaut Varene <T-Bone@parisc-linux.org>
323 W:      http://wiki.parisc-linux.org/AD1889
324 L:      linux-parisc@vger.kernel.org
325 S:      Maintained
326 F:      sound/pci/ad1889.*
327
328 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
329 M:      Michael Hennerich <michael.hennerich@analog.com>
330 W:      http://wiki.analog.com/AD5254
331 W:      http://ez.analog.com/community/linux-device-drivers
332 S:      Supported
333 F:      drivers/misc/ad525x_dpot.c
334
335 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
336 M:      Michael Hennerich <michael.hennerich@analog.com>
337 W:      http://wiki.analog.com/AD5398
338 W:      http://ez.analog.com/community/linux-device-drivers
339 S:      Supported
340 F:      drivers/regulator/ad5398.c
341
342 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
343 M:      Michael Hennerich <michael.hennerich@analog.com>
344 W:      http://wiki.analog.com/AD7142
345 W:      http://ez.analog.com/community/linux-device-drivers
346 S:      Supported
347 F:      drivers/input/misc/ad714x.c
348
349 AD7877 TOUCHSCREEN DRIVER
350 M:      Michael Hennerich <michael.hennerich@analog.com>
351 W:      http://wiki.analog.com/AD7877
352 W:      http://ez.analog.com/community/linux-device-drivers
353 S:      Supported
354 F:      drivers/input/touchscreen/ad7877.c
355
356 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
357 M:      Michael Hennerich <michael.hennerich@analog.com>
358 W:      http://wiki.analog.com/AD7879
359 W:      http://ez.analog.com/community/linux-device-drivers
360 S:      Supported
361 F:      drivers/input/touchscreen/ad7879.c
362
363 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
364 M:      Jiri Kosina <jkosina@suse.com>
365 S:      Maintained
366
367 ADM1025 HARDWARE MONITOR DRIVER
368 M:      Jean Delvare <jdelvare@suse.com>
369 L:      lm-sensors@lm-sensors.org
370 S:      Maintained
371 F:      Documentation/hwmon/adm1025
372 F:      drivers/hwmon/adm1025.c
373
374 ADM1029 HARDWARE MONITOR DRIVER
375 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
376 L:      lm-sensors@lm-sensors.org
377 S:      Maintained
378 F:      drivers/hwmon/adm1029.c
379
380 ADM8211 WIRELESS DRIVER
381 L:      linux-wireless@vger.kernel.org
382 W:      http://wireless.kernel.org/
383 S:      Orphan
384 F:      drivers/net/wireless/adm8211.*
385
386 ADP1653 FLASH CONTROLLER DRIVER
387 M:      Sakari Ailus <sakari.ailus@iki.fi>
388 L:      linux-media@vger.kernel.org
389 S:      Maintained
390 F:      drivers/media/i2c/adp1653.c
391 F:      include/media/adp1653.h
392
393 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
394 M:      Michael Hennerich <michael.hennerich@analog.com>
395 W:      http://wiki.analog.com/ADP5520
396 W:      http://ez.analog.com/community/linux-device-drivers
397 S:      Supported
398 F:      drivers/mfd/adp5520.c
399 F:      drivers/video/backlight/adp5520_bl.c
400 F:      drivers/leds/leds-adp5520.c
401 F:      drivers/gpio/gpio-adp5520.c
402 F:      drivers/input/keyboard/adp5520-keys.c
403
404 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
405 M:      Michael Hennerich <michael.hennerich@analog.com>
406 W:      http://wiki.analog.com/ADP5588
407 W:      http://ez.analog.com/community/linux-device-drivers
408 S:      Supported
409 F:      drivers/input/keyboard/adp5588-keys.c
410 F:      drivers/gpio/gpio-adp5588.c
411
412 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
413 M:      Michael Hennerich <michael.hennerich@analog.com>
414 W:      http://wiki.analog.com/ADP8860
415 W:      http://ez.analog.com/community/linux-device-drivers
416 S:      Supported
417 F:      drivers/video/backlight/adp8860_bl.c
418
419 ADS1015 HARDWARE MONITOR DRIVER
420 M:      Dirk Eibach <eibach@gdsys.de>
421 L:      lm-sensors@lm-sensors.org
422 S:      Maintained
423 F:      Documentation/hwmon/ads1015
424 F:      drivers/hwmon/ads1015.c
425 F:      include/linux/i2c/ads1015.h
426
427 ADT746X FAN DRIVER
428 M:      Colin Leroy <colin@colino.net>
429 S:      Maintained
430 F:      drivers/macintosh/therm_adt746x.c
431
432 ADT7475 HARDWARE MONITOR DRIVER
433 M:      Jean Delvare <jdelvare@suse.com>
434 L:      lm-sensors@lm-sensors.org
435 S:      Maintained
436 F:      Documentation/hwmon/adt7475
437 F:      drivers/hwmon/adt7475.c
438
439 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
440 M:      Michael Hennerich <michael.hennerich@analog.com>
441 W:      http://wiki.analog.com/ADXL345
442 W:      http://ez.analog.com/community/linux-device-drivers
443 S:      Supported
444 F:      drivers/input/misc/adxl34x.c
445
446 ADVANSYS SCSI DRIVER
447 M:      Matthew Wilcox <matthew@wil.cx>
448 M:      Hannes Reinecke <hare@suse.com>
449 L:      linux-scsi@vger.kernel.org
450 S:      Maintained
451 F:      Documentation/scsi/advansys.txt
452 F:      drivers/scsi/advansys.c
453
454 AEDSP16 DRIVER
455 M:      Riccardo Facchetti <fizban@tin.it>
456 S:      Maintained
457 F:      sound/oss/aedsp16.c
458
459 AF9013 MEDIA DRIVER
460 M:      Antti Palosaari <crope@iki.fi>
461 L:      linux-media@vger.kernel.org
462 W:      http://linuxtv.org/
463 W:      http://palosaari.fi/linux/
464 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
465 T:      git git://linuxtv.org/anttip/media_tree.git
466 S:      Maintained
467 F:      drivers/media/dvb-frontends/af9013*
468
469 AF9033 MEDIA DRIVER
470 M:      Antti Palosaari <crope@iki.fi>
471 L:      linux-media@vger.kernel.org
472 W:      http://linuxtv.org/
473 W:      http://palosaari.fi/linux/
474 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
475 T:      git git://linuxtv.org/anttip/media_tree.git
476 S:      Maintained
477 F:      drivers/media/dvb-frontends/af9033*
478
479 AFFS FILE SYSTEM
480 L:      linux-fsdevel@vger.kernel.org
481 S:      Orphan
482 F:      Documentation/filesystems/affs.txt
483 F:      fs/affs/
484
485 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
486 M:      David Howells <dhowells@redhat.com>
487 L:      linux-afs@lists.infradead.org
488 S:      Supported
489 F:      fs/afs/
490 F:      include/net/af_rxrpc.h
491 F:      net/rxrpc/af_rxrpc.c
492
493 AGPGART DRIVER
494 M:      David Airlie <airlied@linux.ie>
495 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
496 S:      Maintained
497 F:      drivers/char/agp/
498 F:      include/linux/agp*
499 F:      include/uapi/linux/agp*
500
501 AHA152X SCSI DRIVER
502 M:      "Juergen E. Fischer" <fischer@norbit.de>
503 L:      linux-scsi@vger.kernel.org
504 S:      Maintained
505 F:      drivers/scsi/aha152x*
506 F:      drivers/scsi/pcmcia/aha152x*
507
508 AIC7XXX / AIC79XX SCSI DRIVER
509 M:      Hannes Reinecke <hare@suse.com>
510 L:      linux-scsi@vger.kernel.org
511 S:      Maintained
512 F:      drivers/scsi/aic7xxx/
513
514 AIMSLAB FM RADIO RECEIVER DRIVER
515 M:      Hans Verkuil <hverkuil@xs4all.nl>
516 L:      linux-media@vger.kernel.org
517 T:      git git://linuxtv.org/media_tree.git
518 W:      http://linuxtv.org
519 S:      Maintained
520 F:      drivers/media/radio/radio-aimslab*
521
522 AIO
523 M:      Benjamin LaHaise <bcrl@kvack.org>
524 L:      linux-aio@kvack.org
525 S:      Supported
526 F:      fs/aio.c
527 F:      include/linux/*aio*.h
528
529 AIRSPY MEDIA DRIVER
530 M:      Antti Palosaari <crope@iki.fi>
531 L:      linux-media@vger.kernel.org
532 W:      http://linuxtv.org/
533 W:      http://palosaari.fi/linux/
534 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
535 T:      git git://linuxtv.org/anttip/media_tree.git
536 S:      Maintained
537 F:      drivers/media/usb/airspy/
538
539 ALCATEL SPEEDTOUCH USB DRIVER
540 M:      Duncan Sands <duncan.sands@free.fr>
541 L:      linux-usb@vger.kernel.org
542 W:      http://www.linux-usb.org/SpeedTouch/
543 S:      Maintained
544 F:      drivers/usb/atm/speedtch.c
545 F:      drivers/usb/atm/usbatm.c
546
547 ALCHEMY AU1XX0 MMC DRIVER
548 M:      Manuel Lauss <manuel.lauss@gmail.com>
549 S:      Maintained
550 F:      drivers/mmc/host/au1xmmc.c
551
552 ALI1563 I2C DRIVER
553 M:      Rudolf Marek <r.marek@assembler.cz>
554 L:      linux-i2c@vger.kernel.org
555 S:      Maintained
556 F:      Documentation/i2c/busses/i2c-ali1563
557 F:      drivers/i2c/busses/i2c-ali1563.c
558
559 ALPHA PORT
560 M:      Richard Henderson <rth@twiddle.net>
561 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
562 M:      Matt Turner <mattst88@gmail.com>
563 S:      Odd Fixes
564 L:      linux-alpha@vger.kernel.org
565 F:      arch/alpha/
566
567 ALTERA MAILBOX DRIVER
568 M:      Ley Foon Tan <lftan@altera.com>
569 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
570 S:      Maintained
571 F:      drivers/mailbox/mailbox-altera.c
572
573 ALTERA PIO DRIVER
574 M:      Tien Hock Loh <thloh@altera.com>
575 L:      linux-gpio@vger.kernel.org
576 S:      Maintained
577 F:      drivers/gpio/gpio-altera.c
578
579 ALTERA TRIPLE SPEED ETHERNET DRIVER
580 M:      Vince Bridgers <vbridger@opensource.altera.com>
581 L:      netdev@vger.kernel.org
582 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
583 S:      Maintained
584 F:      drivers/net/ethernet/altera/
585
586 ALTERA UART/JTAG UART SERIAL DRIVERS
587 M:      Tobias Klauser <tklauser@distanz.ch>
588 L:      linux-serial@vger.kernel.org
589 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
590 S:      Maintained
591 F:      drivers/tty/serial/altera_uart.c
592 F:      drivers/tty/serial/altera_jtaguart.c
593 F:      include/linux/altera_uart.h
594 F:      include/linux/altera_jtaguart.h
595
596 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
597 M:      Tom Lendacky <thomas.lendacky@amd.com>
598 L:      linux-crypto@vger.kernel.org
599 S:      Supported
600 F:      drivers/crypto/ccp/
601 F:      include/linux/ccp.h
602
603 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
604 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
605 L:      lm-sensors@lm-sensors.org
606 S:      Maintained
607 F:      Documentation/hwmon/fam15h_power
608 F:      drivers/hwmon/fam15h_power.c
609
610 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
611 M:      Thomas Dahlmann <dahlmann.thomas@arcor.de>
612 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
613 S:      Supported
614 F:      drivers/usb/gadget/udc/amd5536udc.*
615
616 AMD GEODE PROCESSOR/CHIPSET SUPPORT
617 P:      Andres Salomon <dilinger@queued.net>
618 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
619 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
620 S:      Supported
621 F:      drivers/char/hw_random/geode-rng.c
622 F:      drivers/crypto/geode*
623 F:      drivers/video/fbdev/geode/
624 F:      arch/x86/include/asm/geode.h
625
626 AMD IOMMU (AMD-VI)
627 M:      Joerg Roedel <joro@8bytes.org>
628 L:      iommu@lists.linux-foundation.org
629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
630 S:      Maintained
631 F:      drivers/iommu/amd_iommu*.[ch]
632 F:      include/linux/amd-iommu.h
633
634 AMD KFD
635 M:      Oded Gabbay <oded.gabbay@gmail.com>
636 L:      dri-devel@lists.freedesktop.org
637 T:      git git://people.freedesktop.org/~gabbayo/linux.git
638 S:      Supported
639 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
640 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
641 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
642 F:      drivers/gpu/drm/amd/amdkfd/
643 F:      drivers/gpu/drm/amd/include/cik_structs.h
644 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
645 F:      drivers/gpu/drm/radeon/radeon_kfd.c
646 F:      drivers/gpu/drm/radeon/radeon_kfd.h
647 F:      include/uapi/linux/kfd_ioctl.h
648
649 AMD MICROCODE UPDATE SUPPORT
650 M:      Borislav Petkov <bp@alien8.de>
651 S:      Maintained
652 F:      arch/x86/kernel/cpu/microcode/amd*
653
654 AMD XGBE DRIVER
655 M:      Tom Lendacky <thomas.lendacky@amd.com>
656 L:      netdev@vger.kernel.org
657 S:      Supported
658 F:      drivers/net/ethernet/amd/xgbe/
659
660 AMS (Apple Motion Sensor) DRIVER
661 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
662 S:      Supported
663 F:      drivers/macintosh/ams/
664
665 AMSO1100 RNIC DRIVER
666 M:      Tom Tucker <tom@opengridcomputing.com>
667 M:      Steve Wise <swise@opengridcomputing.com>
668 L:      linux-rdma@vger.kernel.org
669 S:      Maintained
670 F:      drivers/infiniband/hw/amso1100/
671
672 ANALOG DEVICES INC AD9389B DRIVER
673 M:      Hans Verkuil <hans.verkuil@cisco.com>
674 L:      linux-media@vger.kernel.org
675 S:      Maintained
676 F:      drivers/media/i2c/ad9389b*
677
678 ANALOG DEVICES INC ADV7180 DRIVER
679 M:      Lars-Peter Clausen <lars@metafoo.de>
680 L:      linux-media@vger.kernel.org
681 W:      http://ez.analog.com/community/linux-device-drivers
682 S:      Supported
683 F:      drivers/media/i2c/adv7180.c
684
685 ANALOG DEVICES INC ADV7511 DRIVER
686 M:      Hans Verkuil <hans.verkuil@cisco.com>
687 L:      linux-media@vger.kernel.org
688 S:      Maintained
689 F:      drivers/media/i2c/adv7511*
690
691 ANALOG DEVICES INC ADV7604 DRIVER
692 M:      Hans Verkuil <hans.verkuil@cisco.com>
693 L:      linux-media@vger.kernel.org
694 S:      Maintained
695 F:      drivers/media/i2c/adv7604*
696
697 ANALOG DEVICES INC ADV7842 DRIVER
698 M:      Hans Verkuil <hans.verkuil@cisco.com>
699 L:      linux-media@vger.kernel.org
700 S:      Maintained
701 F:      drivers/media/i2c/adv7842*
702
703 ANALOG DEVICES INC ASOC CODEC DRIVERS
704 M:      Lars-Peter Clausen <lars@metafoo.de>
705 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
706 W:      http://wiki.analog.com/
707 W:      http://ez.analog.com/community/linux-device-drivers
708 S:      Supported
709 F:      sound/soc/codecs/adau*
710 F:      sound/soc/codecs/adav*
711 F:      sound/soc/codecs/ad1*
712 F:      sound/soc/codecs/ad7*
713 F:      sound/soc/codecs/ssm*
714 F:      sound/soc/codecs/sigmadsp.*
715
716 ANALOG DEVICES INC ASOC DRIVERS
717 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
718 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
719 W:      http://blackfin.uclinux.org/
720 S:      Supported
721 F:      sound/soc/blackfin/*
722
723 ANALOG DEVICES INC IIO DRIVERS
724 M:      Lars-Peter Clausen <lars@metafoo.de>
725 M:      Michael Hennerich <Michael.Hennerich@analog.com>
726 W:      http://wiki.analog.com/
727 W:      http://ez.analog.com/community/linux-device-drivers
728 S:      Supported
729 F:      drivers/iio/*/ad*
730 X:      drivers/iio/*/adjd*
731 F:      drivers/staging/iio/*/ad*
732 F:      staging/iio/trigger/iio-trig-bfin-timer.c
733
734 ANDROID DRIVERS
735 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
736 M:      Arve HjønnevĂ¥g <arve@android.com>
737 M:      Riley Andrews <riandrews@android.com>
738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
739 L:      devel@driverdev.osuosl.org
740 S:      Supported
741 F:      drivers/android/
742 F:      drivers/staging/android/
743
744 AOA (Apple Onboard Audio) ALSA DRIVER
745 M:      Johannes Berg <johannes@sipsolutions.net>
746 L:      linuxppc-dev@lists.ozlabs.org
747 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
748 S:      Maintained
749 F:      sound/aoa/
750
751 APM DRIVER
752 M:      Jiri Kosina <jkosina@suse.com>
753 S:      Odd fixes
754 F:      arch/x86/kernel/apm_32.c
755 F:      include/linux/apm_bios.h
756 F:      include/uapi/linux/apm_bios.h
757 F:      drivers/char/apm-emulation.c
758
759 APPLE BCM5974 MULTITOUCH DRIVER
760 M:      Henrik Rydberg <rydberg@bitmath.org>
761 L:      linux-input@vger.kernel.org
762 S:      Odd fixes
763 F:      drivers/input/mouse/bcm5974.c
764
765 APPLE SMC DRIVER
766 M:      Henrik Rydberg <rydberg@bitmath.org>
767 L:      lm-sensors@lm-sensors.org
768 S:      Odd fixes
769 F:      drivers/hwmon/applesmc.c
770
771 APPLETALK NETWORK LAYER
772 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
773 S:      Maintained
774 F:      drivers/net/appletalk/
775 F:      net/appletalk/
776
777 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
778 M:      Iyappan Subramanian <isubramanian@apm.com>
779 M:      Keyur Chudgar <kchudgar@apm.com>
780 S:      Supported
781 F:      drivers/net/ethernet/apm/xgene/
782 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
783
784 APTINA CAMERA SENSOR PLL
785 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
786 L:      linux-media@vger.kernel.org
787 S:      Maintained
788 F:      drivers/media/i2c/aptina-pll.*
789
790 ARC FRAMEBUFFER DRIVER
791 M:      Jaya Kumar <jayalk@intworks.biz>
792 S:      Maintained
793 F:      drivers/video/fbdev/arcfb.c
794 F:      drivers/video/fbdev/core/fb_defio.c
795
796 ARM MFM AND FLOPPY DRIVERS
797 M:      Ian Molton <spyro@f2s.com>
798 S:      Maintained
799 F:      arch/arm/lib/floppydma.S
800 F:      arch/arm/include/asm/floppy.h
801
802 ARM PMU PROFILING AND DEBUGGING
803 M:      Will Deacon <will.deacon@arm.com>
804 S:      Maintained
805 F:      arch/arm/kernel/perf_event*
806 F:      arch/arm/oprofile/common.c
807 F:      arch/arm/include/asm/pmu.h
808 F:      arch/arm/kernel/hw_breakpoint.c
809 F:      arch/arm/include/asm/hw_breakpoint.h
810
811 ARM PORT
812 M:      Russell King <linux@arm.linux.org.uk>
813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
814 W:      http://www.arm.linux.org.uk/
815 S:      Maintained
816 F:      arch/arm/
817
818 ARM SUB-ARCHITECTURES
819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
820 S:      Maintained
821 F:      arch/arm/mach-*/
822 F:      arch/arm/plat-*/
823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
824
825 ARM PRIMECELL AACI PL041 DRIVER
826 M:      Russell King <linux@arm.linux.org.uk>
827 S:      Maintained
828 F:      sound/arm/aaci.*
829
830 ARM PRIMECELL CLCD PL110 DRIVER
831 M:      Russell King <linux@arm.linux.org.uk>
832 S:      Maintained
833 F:      drivers/video/fbdev/amba-clcd.*
834
835 ARM PRIMECELL KMI PL050 DRIVER
836 M:      Russell King <linux@arm.linux.org.uk>
837 S:      Maintained
838 F:      drivers/input/serio/ambakmi.*
839 F:      include/linux/amba/kmi.h
840
841 ARM PRIMECELL MMCI PL180/1 DRIVER
842 M:      Russell King <linux@arm.linux.org.uk>
843 S:      Maintained
844 F:      drivers/mmc/host/mmci.*
845 F:      include/linux/amba/mmci.h
846
847 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
848 M:      Russell King <linux@arm.linux.org.uk>
849 S:      Maintained
850 F:      drivers/tty/serial/amba-pl01*.c
851 F:      include/linux/amba/serial.h
852
853 ARM PRIMECELL BUS SUPPORT
854 M:      Russell King <linux@arm.linux.org.uk>
855 S:      Maintained
856 F:      drivers/amba/
857 F:      include/linux/amba/bus.h
858
859 ARM/ADS SPHERE MACHINE SUPPORT
860 M:      Lennert Buytenhek <kernel@wantstofly.org>
861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
862 S:      Maintained
863
864 ARM/AFEB9260 MACHINE SUPPORT
865 M:      Sergey Lapin <slapin@ossfans.org>
866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
867 S:      Maintained
868
869 ARM/AJECO 1ARM MACHINE SUPPORT
870 M:      Lennert Buytenhek <kernel@wantstofly.org>
871 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
872 S:      Maintained
873
874 ARM/Allwinner A1X SoC support
875 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
877 S:      Maintained
878 N:      sun[x4567]i
879
880 ARM/Allwinner SoC Clock Support
881 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
882 S:      Maintained
883 F:      drivers/clk/sunxi/
884
885 ARM/Amlogic MesonX SoC support
886 M:      Carlo Caione <carlo@caione.org>
887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
888 S:      Maintained
889 F:      drivers/media/rc/meson-ir.c
890 N:      meson[x68]
891
892 ARM/Annapurna Labs ALPINE ARCHITECTURE
893 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
894 S:      Maintained
895 F:      arch/arm/mach-alpine/
896
897 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
898 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
899 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
900 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
902 W:      http://www.linux4sam.org
903 S:      Supported
904 F:      arch/arm/mach-at91/
905 F:      include/soc/at91/
906 F:      arch/arm/boot/dts/at91*.dts
907 F:      arch/arm/boot/dts/at91*.dtsi
908 F:      arch/arm/boot/dts/sama*.dts
909 F:      arch/arm/boot/dts/sama*.dtsi
910 F:      arch/arm/include/debug/at91.S
911
912 ARM/ATMEL AT91 Clock Support
913 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
914 S:      Maintained
915 F:      drivers/clk/at91
916
917 ARM/CALXEDA HIGHBANK ARCHITECTURE
918 M:      Rob Herring <robh@kernel.org>
919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
920 S:      Maintained
921 F:      arch/arm/mach-highbank/
922
923 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
924 M:      Krzysztof Halasa <khalasa@piap.pl>
925 S:      Maintained
926 F:      arch/arm/mach-cns3xxx/
927
928 ARM/CAVIUM THUNDER NETWORK DRIVER
929 M:      Sunil Goutham <sgoutham@cavium.com>
930 M:      Robert Richter <rric@kernel.org>
931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
932 S:      Supported
933 F:      drivers/net/ethernet/cavium/
934
935 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
936 M:      Alexander Shiyan <shc_work@mail.ru>
937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
938 S:      Odd Fixes
939 N:      clps711x
940
941 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
942 M:      Hartley Sweeten <hsweeten@visionengravers.com>
943 M:      Ryan Mallon <rmallon@gmail.com>
944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
945 S:      Maintained
946 F:      arch/arm/mach-ep93xx/
947 F:      arch/arm/mach-ep93xx/include/mach/
948
949 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
950 M:      Lennert Buytenhek <kernel@wantstofly.org>
951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
952 S:      Maintained
953
954 ARM/CLKDEV SUPPORT
955 M:      Russell King <linux@arm.linux.org.uk>
956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
957 S:      Maintained
958 F:      arch/arm/include/asm/clkdev.h
959 F:      drivers/clk/clkdev.c
960
961 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
962 M:      Mike Rapoport <mike@compulab.co.il>
963 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
964 S:      Maintained
965
966 ARM/CONTEC MICRO9 MACHINE SUPPORT
967 M:      Hubert Feurstein <hubert.feurstein@contec.at>
968 S:      Maintained
969 F:      arch/arm/mach-ep93xx/micro9.c
970
971 ARM/CORESIGHT FRAMEWORK AND DRIVERS
972 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
974 S:      Maintained
975 F:      drivers/hwtracing/coresight/*
976 F:      Documentation/trace/coresight.txt
977 F:      Documentation/devicetree/bindings/arm/coresight.txt
978 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
979
980 ARM/CORGI MACHINE SUPPORT
981 M:      Richard Purdie <rpurdie@rpsys.net>
982 S:      Maintained
983
984 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
985 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
987 T:      git git://github.com/ulli-kroll/linux.git
988 S:      Maintained
989 F:      arch/arm/mach-gemini/
990 F:      drivers/rtc/rtc-gemini.c
991
992 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
993 M:      Barry Song <baohua@kernel.org>
994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
996 S:      Maintained
997 F:      arch/arm/mach-prima2/
998 F:      drivers/clk/sirf/
999 F:      drivers/clocksource/timer-prima2.c
1000 F:      drivers/clocksource/timer-atlas7.c
1001 N:      [^a-z]sirf
1002
1003 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1004 M:      Baruch Siach <baruch@tkos.co.il>
1005 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1006 S:      Maintained
1007 F:      arch/arm/boot/dts/cx92755*
1008 N:      digicolor
1009
1010 ARM/EBSA110 MACHINE SUPPORT
1011 M:      Russell King <linux@arm.linux.org.uk>
1012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1013 W:      http://www.arm.linux.org.uk/
1014 S:      Maintained
1015 F:      arch/arm/mach-ebsa110/
1016 F:      drivers/net/ethernet/amd/am79c961a.*
1017
1018 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1019 M:      Uwe Kleine-König <kernel@pengutronix.de>
1020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1021 S:      Maintained
1022 N:      efm32
1023
1024 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1025 M:      Daniel Ribeiro <drwyrm@gmail.com>
1026 M:      Stefan Schmidt <stefan@openezx.org>
1027 M:      Harald Welte <laforge@openezx.org>
1028 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1029 W:      http://www.openezx.org/
1030 S:      Maintained
1031 T:      topgit git://git.openezx.org/openezx.git
1032 F:      arch/arm/mach-pxa/ezx.c
1033
1034 ARM/FARADAY FA526 PORT
1035 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1037 S:      Maintained
1038 T:      git git://git.berlios.de/gemini-board
1039 F:      arch/arm/mm/*-fa*
1040
1041 ARM/FOOTBRIDGE ARCHITECTURE
1042 M:      Russell King <linux@arm.linux.org.uk>
1043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1044 W:      http://www.arm.linux.org.uk/
1045 S:      Maintained
1046 F:      arch/arm/include/asm/hardware/dec21285.h
1047 F:      arch/arm/mach-footbridge/
1048
1049 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1050 M:      Shawn Guo <shawnguo@kernel.org>
1051 M:      Sascha Hauer <kernel@pengutronix.de>
1052 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1053 S:      Maintained
1054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1055 F:      arch/arm/mach-imx/
1056 F:      arch/arm/mach-mxs/
1057 F:      arch/arm/boot/dts/imx*
1058 F:      arch/arm/configs/imx*_defconfig
1059 F:      drivers/clk/imx/
1060 F:      include/soc/imx/
1061
1062 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1063 M:      Shawn Guo <shawnguo@kernel.org>
1064 M:      Sascha Hauer <kernel@pengutronix.de>
1065 R:      Stefan Agner <stefan@agner.ch>
1066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 S:      Maintained
1068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1069 F:      arch/arm/mach-imx/*vf610*
1070 F:      arch/arm/boot/dts/vf*
1071
1072 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1073 M:      Lennert Buytenhek <kernel@wantstofly.org>
1074 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1075 S:      Maintained
1076
1077 ARM/GUMSTIX MACHINE SUPPORT
1078 M:      Steve Sakoman <sakoman@gmail.com>
1079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1080 S:      Maintained
1081
1082 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1083 M:      Philipp Zabel <philipp.zabel@gmail.com>
1084 M:      Paul Parsons <lost.distance@yahoo.com>
1085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1086 S:      Maintained
1087 F:      arch/arm/mach-pxa/hx4700.c
1088 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1089 F:      sound/soc/pxa/hx4700.c
1090
1091 ARM/HISILICON SOC SUPPORT
1092 M:      Wei Xu <xuwei5@hisilicon.com>
1093 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1094 W:      http://www.hisilicon.com
1095 S:      Supported
1096 T:      git git://github.com/hisilicon/linux-hisi.git
1097 F:      arch/arm/mach-hisi/
1098
1099 ARM/HP JORNADA 7XX MACHINE SUPPORT
1100 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1101 W:      www.jlime.com
1102 S:      Maintained
1103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1104 F:      arch/arm/mach-sa1100/jornada720.c
1105 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1106
1107 ARM/IGEP MACHINE SUPPORT
1108 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1109 M:      Javier Martinez Canillas <javier@dowhile0.org>
1110 L:      linux-omap@vger.kernel.org
1111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1112 S:      Maintained
1113 F:      arch/arm/boot/dts/omap3-igep*
1114
1115 ARM/INCOME PXA270 SUPPORT
1116 M:      Marek Vasut <marek.vasut@gmail.com>
1117 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1118 S:      Maintained
1119 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1120
1121 ARM/INTEL IOP32X ARM ARCHITECTURE
1122 M:      Lennert Buytenhek <kernel@wantstofly.org>
1123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1124 S:      Maintained
1125
1126 ARM/INTEL IOP33X ARM ARCHITECTURE
1127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1128 S:      Orphan
1129
1130 ARM/INTEL IOP13XX ARM ARCHITECTURE
1131 M:      Lennert Buytenhek <kernel@wantstofly.org>
1132 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1133 S:      Maintained
1134
1135 ARM/INTEL IQ81342EX MACHINE SUPPORT
1136 M:      Lennert Buytenhek <kernel@wantstofly.org>
1137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1138 S:      Maintained
1139
1140 ARM/INTEL IXDP2850 MACHINE SUPPORT
1141 M:      Lennert Buytenhek <kernel@wantstofly.org>
1142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1143 S:      Maintained
1144
1145 ARM/INTEL IXP4XX ARM ARCHITECTURE
1146 M:      Imre Kaloz <kaloz@openwrt.org>
1147 M:      Krzysztof Halasa <khalasa@piap.pl>
1148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1149 S:      Maintained
1150 F:      arch/arm/mach-ixp4xx/
1151
1152 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1153 M:      Jonathan Cameron <jic23@cam.ac.uk>
1154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1155 S:      Maintained
1156 F:      arch/arm/mach-pxa/stargate2.c
1157 F:      drivers/pcmcia/pxa2xx_stargate2.c
1158
1159 ARM/INTEL XSC3 (MANZANO) ARM CORE
1160 M:      Lennert Buytenhek <kernel@wantstofly.org>
1161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1162 S:      Maintained
1163
1164 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1165 M:      Lennert Buytenhek <kernel@wantstofly.org>
1166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1167 S:      Maintained
1168
1169 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1170 M:      Santosh Shilimkar <ssantosh@kernel.org>
1171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1172 S:      Maintained
1173 F:      arch/arm/mach-keystone/
1174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1175
1176 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1177 M:      Santosh Shilimkar <ssantosh@kernel.org>
1178 L:      linux-kernel@vger.kernel.org
1179 S:      Maintained
1180 F:      drivers/clk/keystone/
1181
1182 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1183 M:      Santosh Shilimkar <ssantosh@kernel.org>
1184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185 L:      linux-kernel@vger.kernel.org
1186 S:      Maintained
1187 F:      drivers/clocksource/timer-keystone.c
1188
1189 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1190 M:      Santosh Shilimkar <ssantosh@kernel.org>
1191 L:      linux-kernel@vger.kernel.org
1192 S:      Maintained
1193 F:      drivers/power/reset/keystone-reset.c
1194
1195 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1196 M:      Santosh Shilimkar <ssantosh@kernel.org>
1197 L:      linux-kernel@vger.kernel.org
1198 S:      Maintained
1199 F:      drivers/memory/*emif*
1200
1201 ARM/LOGICPD PXA270 MACHINE SUPPORT
1202 M:      Lennert Buytenhek <kernel@wantstofly.org>
1203 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1204 S:      Maintained
1205
1206 ARM/LPC18XX ARCHITECTURE
1207 M:      Joachim Eastwood <manabian@gmail.com>
1208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1209 S:      Maintained
1210 N:      lpc18xx
1211
1212 ARM/MAGICIAN MACHINE SUPPORT
1213 M:      Philipp Zabel <philipp.zabel@gmail.com>
1214 S:      Maintained
1215
1216 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1217 M:      Jason Cooper <jason@lakedaemon.net>
1218 M:      Andrew Lunn <andrew@lunn.ch>
1219 M:      Gregory Clement <gregory.clement@free-electrons.com>
1220 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1222 S:      Maintained
1223 F:      arch/arm/mach-mvebu/
1224 F:      drivers/rtc/rtc-armada38x.c
1225 F:      arch/arm/boot/dts/armada*
1226 F:      arch/arm/boot/dts/kirkwood*
1227
1228
1229 ARM/Marvell Berlin SoC support
1230 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1232 S:      Maintained
1233 F:      arch/arm/mach-berlin/
1234 F:      arch/arm/boot/dts/berlin*
1235
1236
1237 ARM/Marvell Dove/MV78xx0/Orion SOC support
1238 M:      Jason Cooper <jason@lakedaemon.net>
1239 M:      Andrew Lunn <andrew@lunn.ch>
1240 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1241 M:      Gregory Clement <gregory.clement@free-electrons.com>
1242 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1243 S:      Maintained
1244 F:      arch/arm/mach-dove/
1245 F:      arch/arm/mach-mv78xx0/
1246 F:      arch/arm/mach-orion5x/
1247 F:      arch/arm/plat-orion/
1248 F:      arch/arm/boot/dts/dove*
1249 F:      arch/arm/boot/dts/orion5x*
1250
1251
1252 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1253 M:      Alexander Clouter <alex@digriz.org.uk>
1254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1255 W:      http://www.digriz.org.uk/ts78xx/kernel
1256 S:      Maintained
1257 F:      arch/arm/mach-orion5x/ts78xx-*
1258
1259 ARM/Mediatek RTC DRIVER
1260 M:      Eddie Huang <eddie.huang@mediatek.com>
1261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1262 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1263 S:      Maintained
1264 F:      drivers/rtc/rtc-mt6397.c
1265
1266 ARM/Mediatek SoC support
1267 M:      Matthias Brugger <matthias.bgg@gmail.com>
1268 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1269 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1270 S:      Maintained
1271 F:      arch/arm/boot/dts/mt6*
1272 F:      arch/arm/boot/dts/mt8*
1273 F:      arch/arm/mach-mediatek/
1274 N:      mtk
1275 K:      mediatek
1276
1277 ARM/MICREL KS8695 ARCHITECTURE
1278 M:      Greg Ungerer <gerg@uclinux.org>
1279 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1280 F:      arch/arm/mach-ks8695/
1281 S:      Odd Fixes
1282
1283 ARM/MIOA701 MACHINE SUPPORT
1284 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1286 F:      arch/arm/mach-pxa/mioa701.c
1287 S:      Maintained
1288
1289 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1290 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1291 S:      Maintained
1292
1293 ARM/NOMADIK ARCHITECTURE
1294 M:      Alessandro Rubini <rubini@unipv.it>
1295 M:      Linus Walleij <linus.walleij@linaro.org>
1296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297 S:      Maintained
1298 F:      arch/arm/mach-nomadik/
1299 F:      drivers/pinctrl/nomadik/
1300 F:      drivers/i2c/busses/i2c-nomadik.c
1301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1302
1303 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1304 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1305 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1306 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1307 S:      Supported
1308
1309 ARM/TOSA MACHINE SUPPORT
1310 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1311 M:      Dirk Opfer <dirk@opfer-online.de>
1312 S:      Maintained
1313
1314 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1315 M:      Marek Vasut <marek.vasut@gmail.com>
1316 L:      linux-arm-kernel@lists.infradead.org
1317 W:      http://hackndev.com
1318 S:      Maintained
1319 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1320 F:      arch/arm/mach-pxa/palmtx.c
1321 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1322 F:      arch/arm/mach-pxa/palmt5.c
1323 F:      arch/arm/mach-pxa/include/mach/palmld.h
1324 F:      arch/arm/mach-pxa/palmld.c
1325 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1326 F:      arch/arm/mach-pxa/palmte2.c
1327 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1328 F:      arch/arm/mach-pxa/palmtc.c
1329
1330 ARM/PALM TREO SUPPORT
1331 M:      Tomas Cech <sleep_walker@suse.com>
1332 L:      linux-arm-kernel@lists.infradead.org
1333 W:      http://hackndev.com
1334 S:      Maintained
1335 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1336 F:      arch/arm/mach-pxa/palmtreo.c
1337
1338 ARM/PALMZ72 SUPPORT
1339 M:      Sergey Lapin <slapin@ossfans.org>
1340 L:      linux-arm-kernel@lists.infradead.org
1341 W:      http://hackndev.com
1342 S:      Maintained
1343 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1344 F:      arch/arm/mach-pxa/palmz72.c
1345
1346 ARM/PLEB SUPPORT
1347 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1348 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1349 S:      Maintained
1350
1351 ARM/PT DIGITAL BOARD PORT
1352 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1353 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1354 W:      http://www.arm.linux.org.uk/
1355 S:      Maintained
1356
1357 ARM/QUALCOMM SUPPORT
1358 M:      Kumar Gala <galak@codeaurora.org>
1359 M:      Andy Gross <agross@codeaurora.org>
1360 M:      David Brown <davidb@codeaurora.org>
1361 L:      linux-arm-msm@vger.kernel.org
1362 L:      linux-soc@vger.kernel.org
1363 S:      Maintained
1364 F:      arch/arm/mach-qcom/
1365 F:      drivers/soc/qcom/
1366 F:      drivers/tty/serial/msm_serial.h
1367 F:      drivers/tty/serial/msm_serial.c
1368 F:      drivers/*/pm8???-*
1369 F:      drivers/mfd/ssbi.c
1370 F:      drivers/firmware/qcom_scm.c
1371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1372
1373 ARM/RADISYS ENP2611 MACHINE SUPPORT
1374 M:      Lennert Buytenhek <kernel@wantstofly.org>
1375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1376 S:      Maintained
1377
1378 ARM/RISCPC ARCHITECTURE
1379 M:      Russell King <linux@arm.linux.org.uk>
1380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1381 W:      http://www.arm.linux.org.uk/
1382 S:      Maintained
1383 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1384 F:      arch/arm/include/asm/hardware/ioc.h
1385 F:      arch/arm/include/asm/hardware/iomd.h
1386 F:      arch/arm/include/asm/hardware/memc.h
1387 F:      arch/arm/mach-rpc/
1388 F:      drivers/net/ethernet/8390/etherh.c
1389 F:      drivers/net/ethernet/i825xx/ether1*
1390 F:      drivers/net/ethernet/seeq/ether3*
1391 F:      drivers/scsi/arm/
1392
1393 ARM/Rockchip SoC support
1394 M:      Heiko Stuebner <heiko@sntech.de>
1395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1396 L:      linux-rockchip@lists.infradead.org
1397 S:      Maintained
1398 F:      arch/arm/boot/dts/rk3*
1399 F:      arch/arm/mach-rockchip/
1400 F:      drivers/clk/rockchip/
1401 F:      drivers/i2c/busses/i2c-rk3x.c
1402 F:      drivers/*/*rockchip*
1403 F:      drivers/*/*/*rockchip*
1404 F:      sound/soc/rockchip/
1405 N:      rockchip
1406
1407 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1408 M:      Kukjin Kim <kgene@kernel.org>
1409 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1410 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1411 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1412 S:      Maintained
1413 F:      arch/arm/boot/dts/s3c*
1414 F:      arch/arm/boot/dts/exynos*
1415 F:      arch/arm64/boot/dts/exynos/
1416 F:      arch/arm/plat-samsung/
1417 F:      arch/arm/mach-s3c24*/
1418 F:      arch/arm/mach-s3c64xx/
1419 F:      arch/arm/mach-s5p*/
1420 F:      arch/arm/mach-exynos*/
1421 F:      drivers/*/*s3c2410*
1422 F:      drivers/*/*/*s3c2410*
1423 F:      drivers/spi/spi-s3c*
1424 F:      sound/soc/samsung/*
1425 N:      exynos
1426
1427 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1428 M:      Kyungmin Park <kyungmin.park@samsung.com>
1429 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1430 S:      Maintained
1431 F:      arch/arm/mach-s5pv210/
1432
1433 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1434 M:      Kyungmin Park <kyungmin.park@samsung.com>
1435 M:      Kamil Debski <k.debski@samsung.com>
1436 L:      linux-arm-kernel@lists.infradead.org
1437 L:      linux-media@vger.kernel.org
1438 S:      Maintained
1439 F:      drivers/media/platform/s5p-g2d/
1440
1441 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1442 M:      Kyungmin Park <kyungmin.park@samsung.com>
1443 M:      Kamil Debski <k.debski@samsung.com>
1444 M:      Jeongtae Park <jtp.park@samsung.com>
1445 L:      linux-arm-kernel@lists.infradead.org
1446 L:      linux-media@vger.kernel.org
1447 S:      Maintained
1448 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1449 F:      drivers/media/platform/s5p-mfc/
1450
1451 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1452 M:      Kyungmin Park <kyungmin.park@samsung.com>
1453 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1454 L:      linux-arm-kernel@lists.infradead.org
1455 L:      linux-media@vger.kernel.org
1456 S:      Maintained
1457 F:      drivers/media/platform/s5p-tv/
1458
1459 ARM/SHMOBILE ARM ARCHITECTURE
1460 M:      Simon Horman <horms@verge.net.au>
1461 M:      Magnus Damm <magnus.damm@gmail.com>
1462 L:      linux-sh@vger.kernel.org
1463 W:      http://oss.renesas.com
1464 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1466 S:      Supported
1467 F:      arch/arm/boot/dts/emev2*
1468 F:      arch/arm/boot/dts/r7s*
1469 F:      arch/arm/boot/dts/r8a*
1470 F:      arch/arm/boot/dts/sh*
1471 F:      arch/arm/configs/armadillo800eva_defconfig
1472 F:      arch/arm/configs/bockw_defconfig
1473 F:      arch/arm/configs/kzm9g_defconfig
1474 F:      arch/arm/configs/marzen_defconfig
1475 F:      arch/arm/configs/shmobile_defconfig
1476 F:      arch/arm/include/debug/renesas-scif.S
1477 F:      arch/arm/mach-shmobile/
1478 F:      drivers/sh/
1479
1480 ARM/SOCFPGA ARCHITECTURE
1481 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1482 S:      Maintained
1483 F:      arch/arm/mach-socfpga/
1484 F:      arch/arm/boot/dts/socfpga*
1485 F:      arch/arm/configs/socfpga_defconfig
1486 W:      http://www.rocketboards.org
1487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1488
1489 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1490 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1491 S:      Maintained
1492 F:      drivers/clk/socfpga/
1493
1494 ARM/SOCFPGA EDAC SUPPORT
1495 M:      Thor Thayer <tthayer@opensource.altera.com>
1496 S:      Maintained
1497 F:      drivers/edac/altera_edac.
1498
1499 ARM/STI ARCHITECTURE
1500 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1501 M:      Maxime Coquelin <maxime.coquelin@st.com>
1502 M:      Patrice Chotard <patrice.chotard@st.com>
1503 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1504 L:      kernel@stlinux.com
1505 W:      http://www.stlinux.com
1506 S:      Maintained
1507 F:      arch/arm/mach-sti/
1508 F:      arch/arm/boot/dts/sti*
1509 F:      drivers/clocksource/arm_global_timer.c
1510 F:      drivers/i2c/busses/i2c-st.c
1511 F:      drivers/media/rc/st_rc.c
1512 F:      drivers/mmc/host/sdhci-st.c
1513 F:      drivers/phy/phy-miphy28lp.c
1514 F:      drivers/phy/phy-miphy365x.c
1515 F:      drivers/phy/phy-stih407-usb.c
1516 F:      drivers/phy/phy-stih41x-usb.c
1517 F:      drivers/pinctrl/pinctrl-st.c
1518 F:      drivers/reset/sti/
1519 F:      drivers/rtc/rtc-st-lpc.c
1520 F:      drivers/tty/serial/st-asc.c
1521 F:      drivers/usb/dwc3/dwc3-st.c
1522 F:      drivers/usb/host/ehci-st.c
1523 F:      drivers/usb/host/ohci-st.c
1524 F:      drivers/watchdog/st_lpc_wdt.c
1525 F:      drivers/ata/ahci_st.c
1526
1527 ARM/STM32 ARCHITECTURE
1528 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1530 S:      Maintained
1531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1532 N:      stm32
1533 F:      drivers/clocksource/armv7m_systick.c
1534
1535 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1536 M:      Lennert Buytenhek <kernel@wantstofly.org>
1537 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1538 S:      Maintained
1539
1540 ARM/TETON BGA MACHINE SUPPORT
1541 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1543 S:      Maintained
1544
1545 ARM/THECUS N2100 MACHINE SUPPORT
1546 M:      Lennert Buytenhek <kernel@wantstofly.org>
1547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1548 S:      Maintained
1549
1550 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1551 M:      Wan ZongShun <mcuos.com@gmail.com>
1552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 W:      http://www.mcuos.com
1554 S:      Maintained
1555 F:      arch/arm/mach-w90x900/
1556 F:      drivers/input/keyboard/w90p910_keypad.c
1557 F:      drivers/input/touchscreen/w90p910_ts.c
1558 F:      drivers/watchdog/nuc900_wdt.c
1559 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1560 F:      drivers/mtd/nand/nuc900_nand.c
1561 F:      drivers/rtc/rtc-nuc900.c
1562 F:      drivers/spi/spi-nuc900.c
1563 F:      drivers/usb/host/ehci-w90x900.c
1564 F:      drivers/video/fbdev/nuc900fb.c
1565
1566 ARM/U300 MACHINE SUPPORT
1567 M:      Linus Walleij <linus.walleij@linaro.org>
1568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1569 S:      Supported
1570 F:      arch/arm/mach-u300/
1571 F:      drivers/clocksource/timer-u300.c
1572 F:      drivers/i2c/busses/i2c-stu300.c
1573 F:      drivers/rtc/rtc-coh901331.c
1574 F:      drivers/watchdog/coh901327_wdt.c
1575 F:      drivers/dma/coh901318*
1576 F:      drivers/mfd/ab3100*
1577 F:      drivers/rtc/rtc-ab3100.c
1578 F:      drivers/rtc/rtc-coh901331.c
1579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1580
1581 ARM/UNIPHIER ARCHITECTURE
1582 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1583 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1584 S:      Maintained
1585 F:      arch/arm/mach-uniphier/
1586 N:      uniphier
1587
1588 ARM/Ux500 ARM ARCHITECTURE
1589 M:      Linus Walleij <linus.walleij@linaro.org>
1590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1591 S:      Maintained
1592 F:      arch/arm/mach-ux500/
1593 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1594 F:      drivers/dma/ste_dma40*
1595 F:      drivers/hwspinlock/u8500_hsem.c
1596 F:      drivers/mfd/abx500*
1597 F:      drivers/mfd/ab8500*
1598 F:      drivers/mfd/dbx500*
1599 F:      drivers/mfd/db8500*
1600 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1601 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1602 F:      drivers/rtc/rtc-ab8500.c
1603 F:      drivers/rtc/rtc-pl031.c
1604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1605
1606 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1607 M:      Ulf Hansson <ulf.hansson@linaro.org>
1608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1609 T:      git git://git.linaro.org/people/ulfh/clk.git
1610 S:      Maintained
1611 F:      drivers/clk/ux500/
1612 F:      include/linux/platform_data/clk-ux500.h
1613
1614 ARM/VERSATILE EXPRESS PLATFORM
1615 M:      Liviu Dudau <liviu.dudau@arm.com>
1616 M:      Sudeep Holla <sudeep.holla@arm.com>
1617 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1619 S:      Maintained
1620 F:      arch/arm/boot/dts/vexpress*
1621 F:      arch/arm64/boot/dts/arm/vexpress*
1622 F:      arch/arm/mach-vexpress/
1623 F:      */*/vexpress*
1624 F:      */*/*/vexpress*
1625 F:      drivers/clk/versatile/clk-vexpress-osc.c
1626 F:      drivers/clocksource/versatile.c
1627
1628 ARM/VFP SUPPORT
1629 M:      Russell King <linux@arm.linux.org.uk>
1630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1631 W:      http://www.arm.linux.org.uk/
1632 S:      Maintained
1633 F:      arch/arm/vfp/
1634
1635 ARM/VOIPAC PXA270 SUPPORT
1636 M:      Marek Vasut <marek.vasut@gmail.com>
1637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1638 S:      Maintained
1639 F:      arch/arm/mach-pxa/vpac270.c
1640 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1641
1642 ARM/VT8500 ARM ARCHITECTURE
1643 M:      Tony Prisk <linux@prisktech.co.nz>
1644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1645 S:      Maintained
1646 F:      arch/arm/mach-vt8500/
1647 F:      drivers/clocksource/vt8500_timer.c
1648 F:      drivers/i2c/busses/i2c-wmt.c
1649 F:      drivers/mmc/host/wmt-sdmmc.c
1650 F:      drivers/pwm/pwm-vt8500.c
1651 F:      drivers/rtc/rtc-vt8500.c
1652 F:      drivers/tty/serial/vt8500_serial.c
1653 F:      drivers/usb/host/ehci-platform.c
1654 F:      drivers/usb/host/uhci-platform.c
1655 F:      drivers/video/fbdev/vt8500lcdfb.*
1656 F:      drivers/video/fbdev/wm8505fb*
1657 F:      drivers/video/fbdev/wmt_ge_rops.*
1658
1659 ARM/ZIPIT Z2 SUPPORT
1660 M:      Marek Vasut <marek.vasut@gmail.com>
1661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1662 S:      Maintained
1663 F:      arch/arm/mach-pxa/z2.c
1664 F:      arch/arm/mach-pxa/include/mach/z2.h
1665
1666 ARM/ZTE ARCHITECTURE
1667 M:      Jun Nie <jun.nie@linaro.org>
1668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1669 S:      Maintained
1670 F:      arch/arm/mach-zx/
1671 F:      drivers/clk/zte/
1672 F:      Documentation/devicetree/bindings/arm/zte.txt
1673 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1674
1675 ARM/ZYNQ ARCHITECTURE
1676 M:      Michal Simek <michal.simek@xilinx.com>
1677 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1679 W:      http://wiki.xilinx.com
1680 T:      git git://git.xilinx.com/linux-xlnx.git
1681 S:      Supported
1682 F:      arch/arm/mach-zynq/
1683 F:      drivers/cpuidle/cpuidle-zynq.c
1684 F:      drivers/block/xsysace.c
1685 N:      zynq
1686 N:      xilinx
1687 F:      drivers/clocksource/cadence_ttc_timer.c
1688 F:      drivers/i2c/busses/i2c-cadence.c
1689 F:      drivers/mmc/host/sdhci-of-arasan.c
1690 F:      drivers/edac/synopsys_edac.c
1691
1692 ARM SMMU DRIVERS
1693 M:      Will Deacon <will.deacon@arm.com>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Maintained
1696 F:      drivers/iommu/arm-smmu.c
1697 F:      drivers/iommu/arm-smmu-v3.c
1698 F:      drivers/iommu/io-pgtable-arm.c
1699
1700 ARM64 PORT (AARCH64 ARCHITECTURE)
1701 M:      Catalin Marinas <catalin.marinas@arm.com>
1702 M:      Will Deacon <will.deacon@arm.com>
1703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1704 S:      Maintained
1705 F:      arch/arm64/
1706 F:      Documentation/arm64/
1707
1708 AS3645A LED FLASH CONTROLLER DRIVER
1709 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1710 L:      linux-media@vger.kernel.org
1711 T:      git git://linuxtv.org/media_tree.git
1712 S:      Maintained
1713 F:      drivers/media/i2c/as3645a.c
1714 F:      include/media/as3645a.h
1715
1716 ASC7621 HARDWARE MONITOR DRIVER
1717 M:      George Joseph <george.joseph@fairview5.com>
1718 L:      lm-sensors@lm-sensors.org
1719 S:      Maintained
1720 F:      Documentation/hwmon/asc7621
1721 F:      drivers/hwmon/asc7621.c
1722
1723 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1724 M:      Corentin Chary <corentin.chary@gmail.com>
1725 L:      acpi4asus-user@lists.sourceforge.net
1726 L:      platform-driver-x86@vger.kernel.org
1727 W:      http://acpi4asus.sf.net
1728 S:      Maintained
1729 F:      drivers/platform/x86/asus*.c
1730 F:      drivers/platform/x86/eeepc*.c
1731
1732 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1733 R:      Dan Williams <dan.j.williams@intel.com>
1734 W:      http://sourceforge.net/projects/xscaleiop
1735 S:      Odd fixes
1736 F:      Documentation/crypto/async-tx-api.txt
1737 F:      crypto/async_tx/
1738 F:      drivers/dma/
1739 F:      include/linux/dmaengine.h
1740 F:      include/linux/async_tx.h
1741
1742 AT24 EEPROM DRIVER
1743 M:      Wolfram Sang <wsa@the-dreams.de>
1744 L:      linux-i2c@vger.kernel.org
1745 S:      Maintained
1746 F:      drivers/misc/eeprom/at24.c
1747 F:      include/linux/platform_data/at24.h
1748
1749 ATA OVER ETHERNET (AOE) DRIVER
1750 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1751 W:      http://www.openaoe.org/
1752 S:      Supported
1753 F:      Documentation/aoe/
1754 F:      drivers/block/aoe/
1755
1756 ATHEROS ATH GENERIC UTILITIES
1757 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1758 L:      linux-wireless@vger.kernel.org
1759 S:      Supported
1760 F:      drivers/net/wireless/ath/*
1761
1762 ATHEROS ATH5K WIRELESS DRIVER
1763 M:      Jiri Slaby <jirislaby@gmail.com>
1764 M:      Nick Kossifidis <mickflemm@gmail.com>
1765 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1766 L:      linux-wireless@vger.kernel.org
1767 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1768 S:      Maintained
1769 F:      drivers/net/wireless/ath/ath5k/
1770
1771 ATHEROS ATH6KL WIRELESS DRIVER
1772 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1773 L:      linux-wireless@vger.kernel.org
1774 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1775 T:      git git://github.com/kvalo/ath.git
1776 S:      Supported
1777 F:      drivers/net/wireless/ath/ath6kl/
1778
1779 WILOCITY WIL6210 WIRELESS DRIVER
1780 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1781 L:      linux-wireless@vger.kernel.org
1782 L:      wil6210@qca.qualcomm.com
1783 S:      Supported
1784 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1785 F:      drivers/net/wireless/ath/wil6210/
1786 F:      include/uapi/linux/wil6210_uapi.h
1787
1788 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1789 M:      Christian Lamparter <chunkeey@googlemail.com>
1790 L:      linux-wireless@vger.kernel.org
1791 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1792 S:      Maintained
1793 F:      drivers/net/wireless/ath/carl9170/
1794
1795 ATK0110 HWMON DRIVER
1796 M:      Luca Tettamanti <kronos.it@gmail.com>
1797 L:      lm-sensors@lm-sensors.org
1798 S:      Maintained
1799 F:      drivers/hwmon/asus_atk0110.c
1800
1801 ATI_REMOTE2 DRIVER
1802 M:      Ville Syrjala <syrjala@sci.fi>
1803 S:      Maintained
1804 F:      drivers/input/misc/ati_remote2.c
1805
1806 ATLX ETHERNET DRIVERS
1807 M:      Jay Cliburn <jcliburn@gmail.com>
1808 M:      Chris Snook <chris.snook@gmail.com>
1809 L:      netdev@vger.kernel.org
1810 W:      http://sourceforge.net/projects/atl1
1811 W:      http://atl1.sourceforge.net
1812 S:      Maintained
1813 F:      drivers/net/ethernet/atheros/
1814
1815 ATM
1816 M:      Chas Williams <3chas3@gmail.com>
1817 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1818 L:      netdev@vger.kernel.org
1819 W:      http://linux-atm.sourceforge.net
1820 S:      Maintained
1821 F:      drivers/atm/
1822 F:      include/linux/atm*
1823 F:      include/uapi/linux/atm*
1824
1825 ATMEL AT91 / AT32 MCI DRIVER
1826 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1827 S:      Maintained
1828 F:      drivers/mmc/host/atmel-mci.c
1829 F:      drivers/mmc/host/atmel-mci-regs.h
1830
1831 ATMEL AT91 / AT32 SERIAL DRIVER
1832 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1833 S:      Supported
1834 F:      drivers/tty/serial/atmel_serial.c
1835
1836 ATMEL Audio ALSA driver
1837 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1838 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1839 S:      Supported
1840 F:      sound/soc/atmel
1841
1842 ATMEL DMA DRIVER
1843 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S:      Supported
1846 F:      drivers/dma/at_hdmac.c
1847 F:      drivers/dma/at_hdmac_regs.h
1848 F:      include/linux/platform_data/dma-atmel.h
1849
1850 ATMEL XDMA DRIVER
1851 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1852 L:      linux-arm-kernel@lists.infradead.org
1853 L:      dmaengine@vger.kernel.org
1854 S:      Supported
1855 F:      drivers/dma/at_xdmac.c
1856
1857 ATMEL I2C DRIVER
1858 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1859 L:      linux-i2c@vger.kernel.org
1860 S:      Supported
1861 F:      drivers/i2c/busses/i2c-at91.c
1862
1863 ATMEL ISI DRIVER
1864 M:      Josh Wu <josh.wu@atmel.com>
1865 L:      linux-media@vger.kernel.org
1866 S:      Supported
1867 F:      drivers/media/platform/soc_camera/atmel-isi.c
1868 F:      include/media/atmel-isi.h
1869
1870 ATMEL LCDFB DRIVER
1871 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1872 L:      linux-fbdev@vger.kernel.org
1873 S:      Maintained
1874 F:      drivers/video/fbdev/atmel_lcdfb.c
1875 F:      include/video/atmel_lcdc.h
1876
1877 ATMEL MACB ETHERNET DRIVER
1878 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1879 S:      Supported
1880 F:      drivers/net/ethernet/cadence/
1881
1882 ATMEL NAND DRIVER
1883 M:      Josh Wu <josh.wu@atmel.com>
1884 L:      linux-mtd@lists.infradead.org
1885 S:      Supported
1886 F:      drivers/mtd/nand/atmel_nand*
1887
1888 ATMEL SPI DRIVER
1889 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1890 S:      Supported
1891 F:      drivers/spi/spi-atmel.*
1892
1893 ATMEL SSC DRIVER
1894 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1896 S:      Supported
1897 F:      drivers/misc/atmel-ssc.c
1898 F:      include/linux/atmel-ssc.h
1899
1900 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1901 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1902 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1903 S:      Supported
1904 F:      drivers/misc/atmel_tclib.c
1905 F:      drivers/clocksource/tcb_clksrc.c
1906
1907 ATMEL USBA UDC DRIVER
1908 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1909 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1910 S:      Supported
1911 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1912
1913 ATMEL WIRELESS DRIVER
1914 M:      Simon Kelley <simon@thekelleys.org.uk>
1915 L:      linux-wireless@vger.kernel.org
1916 W:      http://www.thekelleys.org.uk/atmel
1917 W:      http://atmelwlandriver.sourceforge.net/
1918 S:      Maintained
1919 F:      drivers/net/wireless/atmel*
1920
1921 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1922 M:      Bradley Grove <linuxdrivers@attotech.com>
1923 L:      linux-scsi@vger.kernel.org
1924 W:      http://www.attotech.com
1925 S:      Supported
1926 F:      drivers/scsi/esas2r
1927
1928 ATUSB IEEE 802.15.4 RADIO DRIVER
1929 M:      Stefan Schmidt <stefan@osg.samsung.com>
1930 L:      linux-wpan@vger.kernel.org
1931 S:      Maintained
1932 F:      drivers/net/ieee802154/atusb.c
1933 F:      drivers/net/ieee802154/atusb.h
1934 F:      drivers/net/ieee802154/at86rf230.h
1935
1936 AUDIT SUBSYSTEM
1937 M:      Paul Moore <paul@paul-moore.com>
1938 M:      Eric Paris <eparis@redhat.com>
1939 L:      linux-audit@redhat.com (moderated for non-subscribers)
1940 W:      http://people.redhat.com/sgrubb/audit/
1941 T:      git git://git.infradead.org/users/pcmoore/audit
1942 S:      Maintained
1943 F:      include/linux/audit.h
1944 F:      include/uapi/linux/audit.h
1945 F:      kernel/audit*
1946
1947 AUXILIARY DISPLAY DRIVERS
1948 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1949 W:      http://miguelojeda.es/auxdisplay.htm
1950 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1951 S:      Maintained
1952 F:      drivers/auxdisplay/
1953 F:      include/linux/cfag12864b.h
1954
1955 AVR32 ARCHITECTURE
1956 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1957 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1958 W:      http://www.atmel.com/products/AVR32/
1959 W:      http://mirror.egtvedt.no/avr32linux.org/
1960 W:      http://avrfreaks.net/
1961 S:      Maintained
1962 F:      arch/avr32/
1963
1964 AVR32/AT32AP MACHINE SUPPORT
1965 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1966 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1967 S:      Maintained
1968 F:      arch/avr32/mach-at32ap/
1969
1970 AX.25 NETWORK LAYER
1971 M:      Ralf Baechle <ralf@linux-mips.org>
1972 L:      linux-hams@vger.kernel.org
1973 W:      http://www.linux-ax25.org/
1974 S:      Maintained
1975 F:      include/uapi/linux/ax25.h
1976 F:      include/net/ax25.h
1977 F:      net/ax25/
1978
1979 AZ6007 DVB DRIVER
1980 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
1981 L:      linux-media@vger.kernel.org
1982 W:      http://linuxtv.org
1983 T:      git git://linuxtv.org/media_tree.git
1984 S:      Maintained
1985 F:      drivers/media/usb/dvb-usb-v2/az6007.c
1986
1987 AZTECH FM RADIO RECEIVER DRIVER
1988 M:      Hans Verkuil <hverkuil@xs4all.nl>
1989 L:      linux-media@vger.kernel.org
1990 T:      git git://linuxtv.org/media_tree.git
1991 W:      http://linuxtv.org
1992 S:      Maintained
1993 F:      drivers/media/radio/radio-aztech*
1994
1995 B43 WIRELESS DRIVER
1996 L:      linux-wireless@vger.kernel.org
1997 L:      b43-dev@lists.infradead.org
1998 W:      http://wireless.kernel.org/en/users/Drivers/b43
1999 S:      Odd Fixes
2000 F:      drivers/net/wireless/b43/
2001
2002 B43LEGACY WIRELESS DRIVER
2003 M:      Larry Finger <Larry.Finger@lwfinger.net>
2004 L:      linux-wireless@vger.kernel.org
2005 L:      b43-dev@lists.infradead.org
2006 W:      http://wireless.kernel.org/en/users/Drivers/b43
2007 S:      Maintained
2008 F:      drivers/net/wireless/b43legacy/
2009
2010 BACKLIGHT CLASS/SUBSYSTEM
2011 M:      Jingoo Han <jingoohan1@gmail.com>
2012 M:      Lee Jones <lee.jones@linaro.org>
2013 S:      Maintained
2014 F:      drivers/video/backlight/
2015 F:      include/linux/backlight.h
2016
2017 BATMAN ADVANCED
2018 M:      Marek Lindner <mareklindner@neomailbox.ch>
2019 M:      Simon Wunderlich <sw@simonwunderlich.de>
2020 M:      Antonio Quartulli <antonio@meshcoding.com>
2021 L:      b.a.t.m.a.n@lists.open-mesh.org
2022 W:      http://www.open-mesh.org/
2023 S:      Maintained
2024 F:      net/batman-adv/
2025
2026 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2027 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2028 L:      linux-hams@vger.kernel.org
2029 W:      http://www.baycom.org/~tom/ham/ham.html
2030 S:      Maintained
2031 F:      drivers/net/hamradio/baycom*
2032
2033 BCACHE (BLOCK LAYER CACHE)
2034 M:      Kent Overstreet <kent.overstreet@gmail.com>
2035 L:      linux-bcache@vger.kernel.org
2036 W:      http://bcache.evilpiepirate.org
2037 S:      Maintained
2038 F:      drivers/md/bcache/
2039
2040 BDISP ST MEDIA DRIVER
2041 M:      Fabien Dessenne <fabien.dessenne@st.com>
2042 L:      linux-media@vger.kernel.org
2043 T:      git git://linuxtv.org/media_tree.git
2044 W:      http://linuxtv.org
2045 S:      Supported
2046 F:      drivers/media/platform/sti/bdisp
2047
2048 BEFS FILE SYSTEM
2049 S:      Orphan
2050 F:      Documentation/filesystems/befs.txt
2051 F:      fs/befs/
2052
2053 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2054 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2055 L:      netdev@vger.kernel.org
2056 S:      Maintained
2057 F:      drivers/net/ethernet/ec_bhf.c
2058
2059 BFS FILE SYSTEM
2060 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2061 S:      Maintained
2062 F:      Documentation/filesystems/bfs.txt
2063 F:      fs/bfs/
2064 F:      include/uapi/linux/bfs_fs.h
2065
2066 BLACKFIN ARCHITECTURE
2067 M:      Steven Miao <realmz6@gmail.com>
2068 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2069 T:      git git://git.code.sf.net/p/adi-linux/code
2070 W:      http://blackfin.uclinux.org
2071 S:      Supported
2072 F:      arch/blackfin/
2073
2074 BLACKFIN EMAC DRIVER
2075 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2076 W:      http://blackfin.uclinux.org
2077 S:      Supported
2078 F:      drivers/net/ethernet/adi/
2079
2080 BLACKFIN RTC DRIVER
2081 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2082 W:      http://blackfin.uclinux.org
2083 S:      Supported
2084 F:      drivers/rtc/rtc-bfin.c
2085
2086 BLACKFIN SDH DRIVER
2087 M:      Sonic Zhang <sonic.zhang@analog.com>
2088 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2089 W:      http://blackfin.uclinux.org
2090 S:      Supported
2091 F:      drivers/mmc/host/bfin_sdh.c
2092
2093 BLACKFIN SERIAL DRIVER
2094 M:      Sonic Zhang <sonic.zhang@analog.com>
2095 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2096 W:      http://blackfin.uclinux.org
2097 S:      Supported
2098 F:      drivers/tty/serial/bfin_uart.c
2099
2100 BLACKFIN WATCHDOG DRIVER
2101 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2102 W:      http://blackfin.uclinux.org
2103 S:      Supported
2104 F:      drivers/watchdog/bfin_wdt.c
2105
2106 BLACKFIN I2C TWI DRIVER
2107 M:      Sonic Zhang <sonic.zhang@analog.com>
2108 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2109 W:      http://blackfin.uclinux.org/
2110 S:      Supported
2111 F:      drivers/i2c/busses/i2c-bfin-twi.c
2112
2113 BLACKFIN MEDIA DRIVER
2114 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2115 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2116 W:      http://blackfin.uclinux.org/
2117 S:      Supported
2118 F:      drivers/media/platform/blackfin/
2119 F:      drivers/media/i2c/adv7183*
2120 F:      drivers/media/i2c/vs6624*
2121
2122 BLINKM RGB LED DRIVER
2123 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2124 S:      Maintained
2125 F:      drivers/leds/leds-blinkm.c
2126
2127 BLOCK LAYER
2128 M:      Jens Axboe <axboe@kernel.dk>
2129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2130 S:      Maintained
2131 F:      block/
2132 F:      kernel/trace/blktrace.c
2133
2134 BLOCK2MTD DRIVER
2135 M:      Joern Engel <joern@lazybastard.org>
2136 L:      linux-mtd@lists.infradead.org
2137 S:      Maintained
2138 F:      drivers/mtd/devices/block2mtd.c
2139
2140 BLUETOOTH DRIVERS
2141 M:      Marcel Holtmann <marcel@holtmann.org>
2142 M:      Gustavo Padovan <gustavo@padovan.org>
2143 M:      Johan Hedberg <johan.hedberg@gmail.com>
2144 L:      linux-bluetooth@vger.kernel.org
2145 W:      http://www.bluez.org/
2146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2148 S:      Maintained
2149 F:      drivers/bluetooth/
2150
2151 BLUETOOTH SUBSYSTEM
2152 M:      Marcel Holtmann <marcel@holtmann.org>
2153 M:      Gustavo Padovan <gustavo@padovan.org>
2154 M:      Johan Hedberg <johan.hedberg@gmail.com>
2155 L:      linux-bluetooth@vger.kernel.org
2156 W:      http://www.bluez.org/
2157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2159 S:      Maintained
2160 F:      net/bluetooth/
2161 F:      include/net/bluetooth/
2162
2163 BONDING DRIVER
2164 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2165 M:      Veaceslav Falico <vfalico@gmail.com>
2166 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2167 L:      netdev@vger.kernel.org
2168 W:      http://sourceforge.net/projects/bonding/
2169 S:      Supported
2170 F:      drivers/net/bonding/
2171 F:      include/uapi/linux/if_bonding.h
2172
2173 BPF (Safe dynamic programs and tools)
2174 M:      Alexei Starovoitov <ast@kernel.org>
2175 L:      netdev@vger.kernel.org
2176 L:      linux-kernel@vger.kernel.org
2177 S:      Supported
2178 F:      kernel/bpf/
2179
2180 BROADCOM B44 10/100 ETHERNET DRIVER
2181 M:      Gary Zambrano <zambrano@broadcom.com>
2182 L:      netdev@vger.kernel.org
2183 S:      Supported
2184 F:      drivers/net/ethernet/broadcom/b44.*
2185
2186 BROADCOM GENET ETHERNET DRIVER
2187 M:      Florian Fainelli <f.fainelli@gmail.com>
2188 L:      netdev@vger.kernel.org
2189 S:      Supported
2190 F:      drivers/net/ethernet/broadcom/genet/
2191
2192 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2193 M:      Sony Chacko <sony.chacko@qlogic.com>
2194 M:      Dept-HSGLinuxNICDev@qlogic.com
2195 L:      netdev@vger.kernel.org
2196 S:      Supported
2197 F:      drivers/net/ethernet/broadcom/bnx2.*
2198 F:      drivers/net/ethernet/broadcom/bnx2_*
2199
2200 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2201 M:      Ariel Elior <ariel.elior@qlogic.com>
2202 L:      netdev@vger.kernel.org
2203 S:      Supported
2204 F:      drivers/net/ethernet/broadcom/bnx2x/
2205
2206 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2207 M:      Florian Fainelli <f.fainelli@gmail.com>
2208 M:      Ray Jui <rjui@broadcom.com>
2209 M:      Scott Branden <sbranden@broadcom.com>
2210 L:      bcm-kernel-feedback-list@broadcom.com
2211 T:      git git://github.com/broadcom/mach-bcm
2212 S:      Maintained
2213 F:      arch/arm/mach-bcm/
2214 F:      arch/arm/boot/dts/bcm113*
2215 F:      arch/arm/boot/dts/bcm216*
2216 F:      arch/arm/boot/dts/bcm281*
2217 F:      arch/arm/configs/bcm_defconfig
2218 F:      drivers/mmc/host/sdhci-bcm-kona.c
2219 F:      drivers/clocksource/bcm_kona_timer.c
2220
2221 BROADCOM BCM2835 ARM ARCHITECTURE
2222 M:      Stephen Warren <swarren@wwwdotorg.org>
2223 M:      Lee Jones <lee@kernel.org>
2224 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2226 S:      Maintained
2227 N:      bcm2835
2228
2229 BROADCOM BCM33XX MIPS ARCHITECTURE
2230 M:      Kevin Cernekee <cernekee@gmail.com>
2231 L:      linux-mips@linux-mips.org
2232 S:      Maintained
2233 F:      arch/mips/bcm3384/*
2234 F:      arch/mips/include/asm/mach-bcm3384/*
2235 F:      arch/mips/kernel/*bmips*
2236
2237 BROADCOM BCM47XX MIPS ARCHITECTURE
2238 M:      Hauke Mehrtens <hauke@hauke-m.de>
2239 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2240 L:      linux-mips@linux-mips.org
2241 S:      Maintained
2242 F:      arch/mips/bcm47xx/*
2243 F:      arch/mips/include/asm/mach-bcm47xx/*
2244
2245 BROADCOM BCM5301X ARM ARCHITECTURE
2246 M:      Hauke Mehrtens <hauke@hauke-m.de>
2247 L:      linux-arm-kernel@lists.infradead.org
2248 S:      Maintained
2249 F:      arch/arm/mach-bcm/bcm_5301x.c
2250 F:      arch/arm/boot/dts/bcm5301x.dtsi
2251 F:      arch/arm/boot/dts/bcm470*
2252
2253 BROADCOM BCM63XX ARM ARCHITECTURE
2254 M:      Florian Fainelli <f.fainelli@gmail.com>
2255 L:      linux-arm-kernel@lists.infradead.org
2256 T:      git git://github.com/broadcom/arm-bcm63xx.git
2257 S:      Maintained
2258 F:      arch/arm/mach-bcm/bcm63xx.c
2259 F:      arch/arm/include/debug/bcm63xx.S
2260
2261 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2262 M:      Kevin Cernekee <cernekee@gmail.com>
2263 L:      linux-usb@vger.kernel.org
2264 S:      Maintained
2265 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2266
2267 BROADCOM BCM7XXX ARM ARCHITECTURE
2268 M:      Brian Norris <computersforpeace@gmail.com>
2269 M:      Gregory Fong <gregory.0xf0@gmail.com>
2270 M:      Florian Fainelli <f.fainelli@gmail.com>
2271 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2272 T:      git git://github.com/broadcom/stblinux.git
2273 S:      Maintained
2274 F:      arch/arm/mach-bcm/*brcmstb*
2275 F:      arch/arm/boot/dts/bcm7*.dts*
2276 F:      drivers/bus/brcmstb_gisb.c
2277 N:      brcmstb
2278
2279 BROADCOM BMIPS MIPS ARCHITECTURE
2280 M:      Kevin Cernekee <cernekee@gmail.com>
2281 M:      Florian Fainelli <f.fainelli@gmail.com>
2282 L:      linux-mips@linux-mips.org
2283 T:      git git://github.com/broadcom/stblinux.git
2284 S:      Maintained
2285 F:      arch/mips/bmips/*
2286 F:      arch/mips/include/asm/mach-bmips/*
2287 F:      arch/mips/kernel/*bmips*
2288 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2289 F:      drivers/irqchip/irq-bcm7*
2290 F:      drivers/irqchip/irq-brcmstb*
2291
2292 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2293 M:      Prashant Sreedharan <prashant@broadcom.com>
2294 M:      Michael Chan <mchan@broadcom.com>
2295 L:      netdev@vger.kernel.org
2296 S:      Supported
2297 F:      drivers/net/ethernet/broadcom/tg3.*
2298
2299 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2300 M:      Brett Rudley <brudley@broadcom.com>
2301 M:      Arend van Spriel <arend@broadcom.com>
2302 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2303 M:      Hante Meuleman <meuleman@broadcom.com>
2304 L:      linux-wireless@vger.kernel.org
2305 L:      brcm80211-dev-list@broadcom.com
2306 S:      Supported
2307 F:      drivers/net/wireless/brcm80211/
2308
2309 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2310 M:      QLogic-Storage-Upstream@qlogic.com
2311 L:      linux-scsi@vger.kernel.org
2312 S:      Supported
2313 F:      drivers/scsi/bnx2fc/
2314
2315 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2316 M:      QLogic-Storage-Upstream@qlogic.com
2317 L:      linux-scsi@vger.kernel.org
2318 S:      Supported
2319 F:      drivers/scsi/bnx2i/
2320
2321 BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2322 M:      Ray Jui <rjui@broadcom.com>
2323 M:      Scott Branden <sbranden@broadcom.com>
2324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2325 L:      bcm-kernel-feedback-list@broadcom.com
2326 T:      git git://github.com/broadcom/cygnus-linux.git
2327 S:      Maintained
2328 N:      iproc
2329 N:      cygnus
2330 N:      bcm9113*
2331 N:      bcm9583*
2332 N:      bcm583*
2333 N:      bcm113*
2334
2335 BROADCOM BRCMSTB GPIO DRIVER
2336 M:      Gregory Fong <gregory.0xf0@gmail.com>
2337 L:      bcm-kernel-feedback-list@broadcom.com>
2338 S:      Supported
2339 F:      drivers/gpio/gpio-brcmstb.c
2340 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2341
2342 BROADCOM KONA GPIO DRIVER
2343 M:      Ray Jui <rjui@broadcom.com>
2344 L:      bcm-kernel-feedback-list@broadcom.com
2345 S:      Supported
2346 F:      drivers/gpio/gpio-bcm-kona.c
2347 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2348
2349 BROADCOM NVRAM DRIVER
2350 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2351 L:      linux-mips@linux-mips.org
2352 S:      Maintained
2353 F:      drivers/firmware/broadcom/*
2354
2355 BROADCOM STB NAND FLASH DRIVER
2356 M:      Brian Norris <computersforpeace@gmail.com>
2357 L:      linux-mtd@lists.infradead.org
2358 S:      Maintained
2359 F:      drivers/mtd/nand/brcmnand/
2360
2361 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2362 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2363 L:      linux-wireless@vger.kernel.org
2364 S:      Maintained
2365 F:      drivers/bcma/
2366 F:      include/linux/bcma/
2367
2368 BROADCOM SYSTEMPORT ETHERNET DRIVER
2369 M:      Florian Fainelli <f.fainelli@gmail.com>
2370 L:      netdev@vger.kernel.org
2371 S:      Supported
2372 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2373
2374 BROCADE BFA FC SCSI DRIVER
2375 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2376 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2377 L:      linux-scsi@vger.kernel.org
2378 S:      Supported
2379 F:      drivers/scsi/bfa/
2380
2381 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2382 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2383 L:      netdev@vger.kernel.org
2384 S:      Supported
2385 F:      drivers/net/ethernet/brocade/bna/
2386
2387 BSG (block layer generic sg v4 driver)
2388 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2389 L:      linux-scsi@vger.kernel.org
2390 S:      Supported
2391 F:      block/bsg.c
2392 F:      include/linux/bsg.h
2393 F:      include/uapi/linux/bsg.h
2394
2395 BT87X AUDIO DRIVER
2396 M:      Clemens Ladisch <clemens@ladisch.de>
2397 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2398 T:      git git://git.alsa-project.org/alsa-kernel.git
2399 S:      Maintained
2400 F:      Documentation/sound/alsa/Bt87x.txt
2401 F:      sound/pci/bt87x.c
2402
2403 BT8XXGPIO DRIVER
2404 M:      Michael Buesch <m@bues.ch>
2405 W:      http://bu3sch.de/btgpio.php
2406 S:      Maintained
2407 F:      drivers/gpio/gpio-bt8xx.c
2408
2409 BTRFS FILE SYSTEM
2410 M:      Chris Mason <clm@fb.com>
2411 M:      Josef Bacik <jbacik@fb.com>
2412 M:      David Sterba <dsterba@suse.com>
2413 L:      linux-btrfs@vger.kernel.org
2414 W:      http://btrfs.wiki.kernel.org/
2415 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2417 S:      Maintained
2418 F:      Documentation/filesystems/btrfs.txt
2419 F:      fs/btrfs/
2420
2421 BTTV VIDEO4LINUX DRIVER
2422 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2423 L:      linux-media@vger.kernel.org
2424 W:      http://linuxtv.org
2425 T:      git git://linuxtv.org/media_tree.git
2426 S:      Odd fixes
2427 F:      Documentation/video4linux/bttv/
2428 F:      drivers/media/pci/bt8xx/bttv*
2429
2430 BUSLOGIC SCSI DRIVER
2431 M:      Khalid Aziz <khalid@gonehiking.org>
2432 L:      linux-scsi@vger.kernel.org
2433 S:      Maintained
2434 F:      drivers/scsi/BusLogic.*
2435 F:      drivers/scsi/FlashPoint.*
2436
2437 C-MEDIA CMI8788 DRIVER
2438 M:      Clemens Ladisch <clemens@ladisch.de>
2439 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2440 T:      git git://git.alsa-project.org/alsa-kernel.git
2441 S:      Maintained
2442 F:      sound/pci/oxygen/
2443
2444 C6X ARCHITECTURE
2445 M:      Mark Salter <msalter@redhat.com>
2446 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2447 L:      linux-c6x-dev@linux-c6x.org
2448 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2449 S:      Maintained
2450 F:      arch/c6x/
2451
2452 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2453 M:      David Howells <dhowells@redhat.com>
2454 L:      linux-cachefs@redhat.com
2455 S:      Supported
2456 F:      Documentation/filesystems/caching/cachefiles.txt
2457 F:      fs/cachefiles/
2458
2459 CADET FM/AM RADIO RECEIVER DRIVER
2460 M:      Hans Verkuil <hverkuil@xs4all.nl>
2461 L:      linux-media@vger.kernel.org
2462 T:      git git://linuxtv.org/media_tree.git
2463 W:      http://linuxtv.org
2464 S:      Maintained
2465 F:      drivers/media/radio/radio-cadet*
2466
2467 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2468 M:      Jonathan Corbet <corbet@lwn.net>
2469 L:      linux-media@vger.kernel.org
2470 T:      git git://linuxtv.org/media_tree.git
2471 S:      Maintained
2472 F:      Documentation/video4linux/cafe_ccic
2473 F:      drivers/media/platform/marvell-ccic/
2474
2475 CAIF NETWORK LAYER
2476 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2477 L:      netdev@vger.kernel.org
2478 S:      Supported
2479 F:      Documentation/networking/caif/
2480 F:      drivers/net/caif/
2481 F:      include/uapi/linux/caif/
2482 F:      include/net/caif/
2483 F:      net/caif/
2484
2485 CALGARY x86-64 IOMMU
2486 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2487 M:      "Jon D. Mason" <jdmason@kudzu.us>
2488 L:      discuss@x86-64.org
2489 S:      Maintained
2490 F:      arch/x86/kernel/pci-calgary_64.c
2491 F:      arch/x86/kernel/tce_64.c
2492 F:      arch/x86/include/asm/calgary.h
2493 F:      arch/x86/include/asm/tce.h
2494
2495 CAN NETWORK LAYER
2496 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2497 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2498 L:      linux-can@vger.kernel.org
2499 W:      https://github.com/linux-can
2500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2502 S:      Maintained
2503 F:      Documentation/networking/can.txt
2504 F:      net/can/
2505 F:      include/linux/can/core.h
2506 F:      include/uapi/linux/can.h
2507 F:      include/uapi/linux/can/bcm.h
2508 F:      include/uapi/linux/can/raw.h
2509 F:      include/uapi/linux/can/gw.h
2510
2511 CAN NETWORK DRIVERS
2512 M:      Wolfgang Grandegger <wg@grandegger.com>
2513 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2514 L:      linux-can@vger.kernel.org
2515 W:      https://github.com/linux-can
2516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2518 S:      Maintained
2519 F:      drivers/net/can/
2520 F:      include/linux/can/dev.h
2521 F:      include/linux/can/platform/
2522 F:      include/uapi/linux/can/error.h
2523 F:      include/uapi/linux/can/netlink.h
2524
2525 CAPABILITIES
2526 M:      Serge Hallyn <serge.hallyn@canonical.com>
2527 L:      linux-security-module@vger.kernel.org
2528 S:      Supported
2529 F:      include/linux/capability.h
2530 F:      include/uapi/linux/capability.h
2531 F:      security/commoncap.c
2532 F:      kernel/capability.c
2533
2534 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2535 M:      Kevin Tsai <ktsai@capellamicro.com>
2536 S:      Maintained
2537 F:      drivers/iio/light/cm*
2538 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2539
2540 CAVIUM LIQUIDIO NETWORK DRIVER
2541 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2542 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2543 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2544 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2545 L:     netdev@vger.kernel.org
2546 W:     http://www.cavium.com
2547 S:     Supported
2548 F:     drivers/net/ethernet/cavium/
2549 F:     drivers/net/ethernet/cavium/liquidio/
2550
2551 CC2520 IEEE-802.15.4 RADIO DRIVER
2552 M:      Varka Bhadram <varkabhadram@gmail.com>
2553 L:      linux-wpan@vger.kernel.org
2554 S:      Maintained
2555 F:      drivers/net/ieee802154/cc2520.c
2556 F:      include/linux/spi/cc2520.h
2557 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2558
2559 CELL BROADBAND ENGINE ARCHITECTURE
2560 M:      Arnd Bergmann <arnd@arndb.de>
2561 L:      linuxppc-dev@lists.ozlabs.org
2562 W:      http://www.ibm.com/developerworks/power/cell/
2563 S:      Supported
2564 F:      arch/powerpc/include/asm/cell*.h
2565 F:      arch/powerpc/include/asm/spu*.h
2566 F:      arch/powerpc/include/uapi/asm/spu*.h
2567 F:      arch/powerpc/oprofile/*cell*
2568 F:      arch/powerpc/platforms/cell/
2569
2570 CEPH COMMON CODE (LIBCEPH)
2571 M:      Ilya Dryomov <idryomov@gmail.com>
2572 M:      "Yan, Zheng" <zyan@redhat.com>
2573 M:      Sage Weil <sage@redhat.com>
2574 L:      ceph-devel@vger.kernel.org
2575 W:      http://ceph.com/
2576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2577 T:      git git://github.com/ceph/ceph-client.git
2578 S:      Supported
2579 F:      net/ceph/
2580 F:      include/linux/ceph/
2581 F:      include/linux/crush/
2582
2583 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2584 M:      "Yan, Zheng" <zyan@redhat.com>
2585 M:      Sage Weil <sage@redhat.com>
2586 M:      Ilya Dryomov <idryomov@gmail.com>
2587 L:      ceph-devel@vger.kernel.org
2588 W:      http://ceph.com/
2589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2590 T:      git git://github.com/ceph/ceph-client.git
2591 S:      Supported
2592 F:      Documentation/filesystems/ceph.txt
2593 F:      fs/ceph/
2594
2595 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2596 L:      linux-usb@vger.kernel.org
2597 S:      Orphan
2598 F:      Documentation/usb/WUSB-Design-overview.txt
2599 F:      Documentation/usb/wusb-cbaf
2600 F:      drivers/usb/host/hwa-hc.c
2601 F:      drivers/usb/host/whci/
2602 F:      drivers/usb/wusbcore/
2603 F:      include/linux/usb/wusb*
2604
2605 CFAG12864B LCD DRIVER
2606 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2607 W:      http://miguelojeda.es/auxdisplay.htm
2608 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2609 S:      Maintained
2610 F:      drivers/auxdisplay/cfag12864b.c
2611 F:      include/linux/cfag12864b.h
2612
2613 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2614 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2615 W:      http://miguelojeda.es/auxdisplay.htm
2616 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2617 S:      Maintained
2618 F:      drivers/auxdisplay/cfag12864bfb.c
2619 F:      include/linux/cfag12864b.h
2620
2621 CFG80211 and NL80211
2622 M:      Johannes Berg <johannes@sipsolutions.net>
2623 L:      linux-wireless@vger.kernel.org
2624 W:      http://wireless.kernel.org/
2625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2627 S:      Maintained
2628 F:      include/uapi/linux/nl80211.h
2629 F:      include/net/cfg80211.h
2630 F:      net/wireless/*
2631 X:      net/wireless/wext*
2632
2633 CHAR and MISC DRIVERS
2634 M:      Arnd Bergmann <arnd@arndb.de>
2635 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2637 S:      Supported
2638 F:      drivers/char/*
2639 F:      drivers/misc/*
2640 F:      include/linux/miscdevice.h
2641
2642 CHECKPATCH
2643 M:      Andy Whitcroft <apw@canonical.com>
2644 M:      Joe Perches <joe@perches.com>
2645 S:      Maintained
2646 F:      scripts/checkpatch.pl
2647
2648 CHINESE DOCUMENTATION
2649 M:      Harry Wei <harryxiyou@gmail.com>
2650 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2651 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2652 S:      Maintained
2653 F:      Documentation/zh_CN/
2654
2655 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2656 M:      Peter Chen <Peter.Chen@freescale.com>
2657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2658 L:      linux-usb@vger.kernel.org
2659 S:      Maintained
2660 F:      drivers/usb/chipidea/
2661
2662 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2663 M:      Hans de Goede <hdegoede@redhat.com>
2664 L:      linux-input@vger.kernel.org
2665 S:      Maintained
2666 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2667 F:      drivers/input/touchscreen/chipone_icn8318.c
2668
2669 CHROME HARDWARE PLATFORM SUPPORT
2670 M:      Olof Johansson <olof@lixom.net>
2671 S:      Maintained
2672 F:      drivers/platform/chrome/
2673
2674 CISCO VIC ETHERNET NIC DRIVER
2675 M:      Christian Benvenuti <benve@cisco.com>
2676 M:      Sujith Sankar <ssujith@cisco.com>
2677 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2678 M:      Neel Patel <neepatel@cisco.com>
2679 S:      Supported
2680 F:      drivers/net/ethernet/cisco/enic/
2681
2682 CISCO VIC LOW LATENCY NIC DRIVER
2683 M:      Upinder Malhi <umalhi@cisco.com>
2684 S:      Supported
2685 F:      drivers/infiniband/hw/usnic
2686
2687 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2688 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2689 L:      netdev@vger.kernel.org
2690 S:      Maintained
2691 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2692
2693 CIRRUS LOGIC AUDIO CODEC DRIVERS
2694 M:      Brian Austin <brian.austin@cirrus.com>
2695 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2696 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2697 S:      Maintained
2698 F:      sound/soc/codecs/cs*
2699
2700 CLEANCACHE API
2701 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2702 L:      linux-kernel@vger.kernel.org
2703 S:      Maintained
2704 F:      mm/cleancache.c
2705 F:      include/linux/cleancache.h
2706
2707 CLK API
2708 M:      Russell King <linux@arm.linux.org.uk>
2709 L:      linux-clk@vger.kernel.org
2710 S:      Maintained
2711 F:      include/linux/clk.h
2712
2713 CLOCKSOURCE, CLOCKEVENT DRIVERS
2714 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2715 M:      Thomas Gleixner <tglx@linutronix.de>
2716 L:      linux-kernel@vger.kernel.org
2717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2718 S:      Supported
2719 F:      drivers/clocksource
2720
2721 CISCO FCOE HBA DRIVER
2722 M:      Hiral Patel <hiralpat@cisco.com>
2723 M:      Suma Ramars <sramars@cisco.com>
2724 M:      Brian Uchino <buchino@cisco.com>
2725 L:      linux-scsi@vger.kernel.org
2726 S:      Supported
2727 F:      drivers/scsi/fnic/
2728
2729 CISCO SCSI HBA DRIVER
2730 M:      Narsimhulu Musini <nmusini@cisco.com>
2731 M:      Sesidhar Baddela <sebaddel@cisco.com>
2732 L:      linux-scsi@vger.kernel.org
2733 S:      Supported
2734 F:      drivers/scsi/snic/
2735
2736 CMPC ACPI DRIVER
2737 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2738 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2739 L:      platform-driver-x86@vger.kernel.org
2740 S:      Supported
2741 F:      drivers/platform/x86/classmate-laptop.c
2742
2743 COBALT MEDIA DRIVER
2744 M:      Hans Verkuil <hans.verkuil@cisco.com>
2745 L:      linux-media@vger.kernel.org
2746 T:      git git://linuxtv.org/media_tree.git
2747 W:      http://linuxtv.org
2748 S:      Supported
2749 F:      drivers/media/pci/cobalt/
2750
2751 COCCINELLE/Semantic Patches (SmPL)
2752 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2753 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2754 M:      Nicolas Palix <nicolas.palix@imag.fr>
2755 M:      Michal Marek <mmarek@suse.com>
2756 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2758 W:      http://coccinelle.lip6.fr/
2759 S:      Supported
2760 F:      Documentation/coccinelle.txt
2761 F:      scripts/coccinelle/
2762 F:      scripts/coccicheck
2763
2764 CODA FILE SYSTEM
2765 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2766 M:      coda@cs.cmu.edu
2767 L:      codalist@coda.cs.cmu.edu
2768 W:      http://www.coda.cs.cmu.edu/
2769 S:      Maintained
2770 F:      Documentation/filesystems/coda.txt
2771 F:      fs/coda/
2772 F:      include/linux/coda*.h
2773 F:      include/uapi/linux/coda*.h
2774
2775 CODA V4L2 MEM2MEM DRIVER
2776 M:      Philipp Zabel <p.zabel@pengutronix.de>
2777 L:      linux-media@vger.kernel.org
2778 S:      Maintained
2779 F:      Documentation/devicetree/bindings/media/coda.txt
2780 F:      drivers/media/platform/coda/
2781
2782 COMMON CLK FRAMEWORK
2783 M:      Michael Turquette <mturquette@baylibre.com>
2784 M:      Stephen Boyd <sboyd@codeaurora.org>
2785 L:      linux-clk@vger.kernel.org
2786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2787 S:      Maintained
2788 F:      drivers/clk/
2789 X:      drivers/clk/clkdev.c
2790 F:      include/linux/clk-pr*
2791 F:      include/linux/clk/
2792
2793 COMMON INTERNET FILE SYSTEM (CIFS)
2794 M:      Steve French <sfrench@samba.org>
2795 L:      linux-cifs@vger.kernel.org
2796 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2797 W:      http://linux-cifs.samba.org/
2798 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2799 S:      Supported
2800 F:      Documentation/filesystems/cifs/
2801 F:      fs/cifs/
2802
2803 COMPACTPCI HOTPLUG CORE
2804 M:      Scott Murray <scott@spiteful.org>
2805 L:      linux-pci@vger.kernel.org
2806 S:      Maintained
2807 F:      drivers/pci/hotplug/cpci_hotplug*
2808
2809 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2810 M:      Scott Murray <scott@spiteful.org>
2811 L:      linux-pci@vger.kernel.org
2812 S:      Maintained
2813 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2814
2815 COMPACTPCI HOTPLUG GENERIC DRIVER
2816 M:      Scott Murray <scott@spiteful.org>
2817 L:      linux-pci@vger.kernel.org
2818 S:      Maintained
2819 F:      drivers/pci/hotplug/cpcihp_generic.c
2820
2821 COMPAL LAPTOP SUPPORT
2822 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2823 L:      platform-driver-x86@vger.kernel.org
2824 S:      Maintained
2825 F:      drivers/platform/x86/compal-laptop.c
2826
2827 CONEXANT ACCESSRUNNER USB DRIVER
2828 M:      Simon Arlott <cxacru@fire.lp0.eu>
2829 L:      accessrunner-general@lists.sourceforge.net
2830 W:      http://accessrunner.sourceforge.net/
2831 S:      Maintained
2832 F:      drivers/usb/atm/cxacru.c
2833
2834 CONFIGFS
2835 M:      Joel Becker <jlbec@evilplan.org>
2836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2837 S:      Supported
2838 F:      fs/configfs/
2839 F:      include/linux/configfs.h
2840
2841 CONNECTOR
2842 M:      Evgeniy Polyakov <zbr@ioremap.net>
2843 L:      netdev@vger.kernel.org
2844 S:      Maintained
2845 F:      drivers/connector/
2846
2847 CONTROL GROUP (CGROUP)
2848 M:      Tejun Heo <tj@kernel.org>
2849 M:      Li Zefan <lizefan@huawei.com>
2850 M:      Johannes Weiner <hannes@cmpxchg.org>
2851 L:      cgroups@vger.kernel.org
2852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2853 S:      Maintained
2854 F:      Documentation/cgroups/
2855 F:      include/linux/cgroup*
2856 F:      kernel/cgroup*
2857
2858 CONTROL GROUP - CPUSET
2859 M:      Li Zefan <lizefan@huawei.com>
2860 L:      cgroups@vger.kernel.org
2861 W:      http://www.bullopensource.org/cpuset/
2862 W:      http://oss.sgi.com/projects/cpusets/
2863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2864 S:      Maintained
2865 F:      Documentation/cgroups/cpusets.txt
2866 F:      include/linux/cpuset.h
2867 F:      kernel/cpuset.c
2868
2869 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2870 M:      Johannes Weiner <hannes@cmpxchg.org>
2871 M:      Michal Hocko <mhocko@kernel.org>
2872 L:      cgroups@vger.kernel.org
2873 L:      linux-mm@kvack.org
2874 S:      Maintained
2875 F:      mm/memcontrol.c
2876 F:      mm/swap_cgroup.c
2877
2878 CORETEMP HARDWARE MONITORING DRIVER
2879 M:      Fenghua Yu <fenghua.yu@intel.com>
2880 L:      lm-sensors@lm-sensors.org
2881 S:      Maintained
2882 F:      Documentation/hwmon/coretemp
2883 F:      drivers/hwmon/coretemp.c
2884
2885 COSA/SRP SYNC SERIAL DRIVER
2886 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2887 W:      http://www.fi.muni.cz/~kas/cosa/
2888 S:      Maintained
2889 F:      drivers/net/wan/cosa*
2890
2891 CPMAC ETHERNET DRIVER
2892 M:      Florian Fainelli <florian@openwrt.org>
2893 L:      netdev@vger.kernel.org
2894 S:      Maintained
2895 F:      drivers/net/ethernet/ti/cpmac.c
2896
2897 CPU FREQUENCY DRIVERS
2898 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2899 M:      Viresh Kumar <viresh.kumar@linaro.org>
2900 L:      linux-pm@vger.kernel.org
2901 S:      Maintained
2902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2903 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2904 F:      drivers/cpufreq/
2905 F:      include/linux/cpufreq.h
2906
2907 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2908 M:      Viresh Kumar <viresh.kumar@linaro.org>
2909 M:      Sudeep Holla <sudeep.holla@arm.com>
2910 L:      linux-pm@vger.kernel.org
2911 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2912 S:      Maintained
2913 F:      drivers/cpufreq/arm_big_little.h
2914 F:      drivers/cpufreq/arm_big_little.c
2915 F:      drivers/cpufreq/arm_big_little_dt.c
2916
2917 CPUIDLE DRIVER - ARM BIG LITTLE
2918 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2919 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2920 L:      linux-pm@vger.kernel.org
2921 L:      linux-arm-kernel@lists.infradead.org
2922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2923 S:      Maintained
2924 F:      drivers/cpuidle/cpuidle-big_little.c
2925
2926 CPUIDLE DRIVER - ARM EXYNOS
2927 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2928 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2929 M:      Kukjin Kim <kgene@kernel.org>
2930 L:      linux-pm@vger.kernel.org
2931 L:      linux-samsung-soc@vger.kernel.org
2932 S:      Supported
2933 F:      drivers/cpuidle/cpuidle-exynos.c
2934 F:      arch/arm/mach-exynos/pm.c
2935
2936 CPUIDLE DRIVERS
2937 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2938 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2939 L:      linux-pm@vger.kernel.org
2940 S:      Maintained
2941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2942 F:      drivers/cpuidle/*
2943 F:      include/linux/cpuidle.h
2944
2945 CPUID/MSR DRIVER
2946 M:      "H. Peter Anvin" <hpa@zytor.com>
2947 S:      Maintained
2948 F:      arch/x86/kernel/cpuid.c
2949 F:      arch/x86/kernel/msr.c
2950
2951 CPU POWER MONITORING SUBSYSTEM
2952 M:      Thomas Renninger <trenn@suse.com>
2953 L:      linux-pm@vger.kernel.org
2954 S:      Maintained
2955 F:      tools/power/cpupower/
2956
2957 CRAMFS FILESYSTEM
2958 W:      http://sourceforge.net/projects/cramfs/
2959 S:      Orphan / Obsolete
2960 F:      Documentation/filesystems/cramfs.txt
2961 F:      fs/cramfs/
2962
2963 CRIS PORT
2964 M:      Mikael Starvik <starvik@axis.com>
2965 M:      Jesper Nilsson <jesper.nilsson@axis.com>
2966 L:      linux-cris-kernel@axis.com
2967 W:      http://developer.axis.com
2968 S:      Maintained
2969 F:      arch/cris/
2970 F:      drivers/tty/serial/crisv10.*
2971
2972 CRYPTO API
2973 M:      Herbert Xu <herbert@gondor.apana.org.au>
2974 M:      "David S. Miller" <davem@davemloft.net>
2975 L:      linux-crypto@vger.kernel.org
2976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2977 S:      Maintained
2978 F:      Documentation/crypto/
2979 F:      Documentation/DocBook/crypto-API.tmpl
2980 F:      arch/*/crypto/
2981 F:      crypto/
2982 F:      drivers/crypto/
2983 F:      include/crypto/
2984
2985 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2986 M:      Neil Horman <nhorman@tuxdriver.com>
2987 L:      linux-crypto@vger.kernel.org
2988 S:      Maintained
2989 F:      crypto/ansi_cprng.c
2990 F:      crypto/rng.c
2991
2992 CS5535 Audio ALSA driver
2993 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
2994 S:      Maintained
2995 F:      sound/pci/cs5535audio/
2996
2997 CW1200 WLAN driver
2998 M:      Solomon Peachy <pizza@shaftnet.org>
2999 S:      Maintained
3000 F:      drivers/net/wireless/cw1200/
3001
3002 CX18 VIDEO4LINUX DRIVER
3003 M:      Andy Walls <awalls@md.metrocast.net>
3004 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3005 L:      linux-media@vger.kernel.org
3006 T:      git git://linuxtv.org/media_tree.git
3007 W:      http://linuxtv.org
3008 W:      http://www.ivtvdriver.org/index.php/Cx18
3009 S:      Maintained
3010 F:      Documentation/video4linux/cx18.txt
3011 F:      drivers/media/pci/cx18/
3012 F:      include/uapi/linux/ivtv*
3013
3014 CX2341X MPEG ENCODER HELPER MODULE
3015 M:      Hans Verkuil <hverkuil@xs4all.nl>
3016 L:      linux-media@vger.kernel.org
3017 T:      git git://linuxtv.org/media_tree.git
3018 W:      http://linuxtv.org
3019 S:      Maintained
3020 F:      drivers/media/common/cx2341x*
3021 F:      include/media/cx2341x*
3022
3023 CX24120 MEDIA DRIVER
3024 M:      Jemma Denson <jdenson@gmail.com>
3025 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3026 L:      linux-media@vger.kernel.org
3027 W:      http://linuxtv.org/
3028 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3029 S:      Maintained
3030 F:      drivers/media/dvb-frontends/cx24120*
3031
3032 CX88 VIDEO4LINUX DRIVER
3033 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3034 L:      linux-media@vger.kernel.org
3035 W:      http://linuxtv.org
3036 T:      git git://linuxtv.org/media_tree.git
3037 S:      Odd fixes
3038 F:      Documentation/video4linux/cx88/
3039 F:      drivers/media/pci/cx88/
3040
3041 CXD2820R MEDIA DRIVER
3042 M:      Antti Palosaari <crope@iki.fi>
3043 L:      linux-media@vger.kernel.org
3044 W:      http://linuxtv.org/
3045 W:      http://palosaari.fi/linux/
3046 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3047 T:      git git://linuxtv.org/anttip/media_tree.git
3048 S:      Maintained
3049 F:      drivers/media/dvb-frontends/cxd2820r*
3050
3051 CXGB3 ETHERNET DRIVER (CXGB3)
3052 M:      Santosh Raspatur <santosh@chelsio.com>
3053 L:      netdev@vger.kernel.org
3054 W:      http://www.chelsio.com
3055 S:      Supported
3056 F:      drivers/net/ethernet/chelsio/cxgb3/
3057
3058 CXGB3 ISCSI DRIVER (CXGB3I)
3059 M:      Karen Xie <kxie@chelsio.com>
3060 L:      linux-scsi@vger.kernel.org
3061 W:      http://www.chelsio.com
3062 S:      Supported
3063 F:      drivers/scsi/cxgbi/cxgb3i
3064
3065 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3066 M:      Steve Wise <swise@chelsio.com>
3067 L:      linux-rdma@vger.kernel.org
3068 W:      http://www.openfabrics.org
3069 S:      Supported
3070 F:      drivers/infiniband/hw/cxgb3/
3071
3072 CXGB4 ETHERNET DRIVER (CXGB4)
3073 M:      Hariprasad S <hariprasad@chelsio.com>
3074 L:      netdev@vger.kernel.org
3075 W:      http://www.chelsio.com
3076 S:      Supported
3077 F:      drivers/net/ethernet/chelsio/cxgb4/
3078
3079 CXGB4 ISCSI DRIVER (CXGB4I)
3080 M:      Karen Xie <kxie@chelsio.com>
3081 L:      linux-scsi@vger.kernel.org
3082 W:      http://www.chelsio.com
3083 S:      Supported
3084 F:      drivers/scsi/cxgbi/cxgb4i
3085
3086 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3087 M:      Steve Wise <swise@chelsio.com>
3088 L:      linux-rdma@vger.kernel.org
3089 W:      http://www.openfabrics.org
3090 S:      Supported
3091 F:      drivers/infiniband/hw/cxgb4/
3092
3093 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3094 M:      Casey Leedom <leedom@chelsio.com>
3095 L:      netdev@vger.kernel.org
3096 W:      http://www.chelsio.com
3097 S:      Supported
3098 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3099
3100 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3101 M:      Ian Munsie <imunsie@au1.ibm.com>
3102 M:      Michael Neuling <mikey@neuling.org>
3103 L:      linuxppc-dev@lists.ozlabs.org
3104 S:      Supported
3105 F:      drivers/misc/cxl/
3106 F:      include/misc/cxl*
3107 F:      include/uapi/misc/cxl.h
3108 F:      Documentation/powerpc/cxl.txt
3109 F:      Documentation/powerpc/cxl.txt
3110 F:      Documentation/ABI/testing/sysfs-class-cxl
3111
3112 STMMAC ETHERNET DRIVER
3113 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3114 L:      netdev@vger.kernel.org
3115 W:      http://www.stlinux.com
3116 S:      Supported
3117 F:      drivers/net/ethernet/stmicro/stmmac/
3118
3119 CYBERPRO FB DRIVER
3120 M:      Russell King <linux@arm.linux.org.uk>
3121 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3122 W:      http://www.arm.linux.org.uk/
3123 S:      Maintained
3124 F:      drivers/video/fbdev/cyber2000fb.*
3125
3126 CYCLADES ASYNC MUX DRIVER
3127 W:      http://www.cyclades.com/
3128 S:      Orphan
3129 F:      drivers/tty/cyclades.c
3130 F:      include/linux/cyclades.h
3131 F:      include/uapi/linux/cyclades.h
3132
3133 CYCLADES PC300 DRIVER
3134 W:      http://www.cyclades.com/
3135 S:      Orphan
3136 F:      drivers/net/wan/pc300*
3137
3138 CYPRESS_FIRMWARE MEDIA DRIVER
3139 M:      Antti Palosaari <crope@iki.fi>
3140 L:      linux-media@vger.kernel.org
3141 W:      http://linuxtv.org/
3142 W:      http://palosaari.fi/linux/
3143 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3144 T:      git git://linuxtv.org/anttip/media_tree.git
3145 S:      Maintained
3146 F:      drivers/media/common/cypress_firmware*
3147
3148 CYTTSP TOUCHSCREEN DRIVER
3149 M:      Ferruh Yigit <fery@cypress.com>
3150 L:      linux-input@vger.kernel.org
3151 S:      Supported
3152 F:      drivers/input/touchscreen/cyttsp*
3153 F:      include/linux/input/cyttsp.h
3154
3155 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3156 M:      Joshua Kinard <kumba@gentoo.org>
3157 S:      Maintained
3158 F:      drivers/rtc/rtc-ds1685.c
3159 F:      include/linux/rtc/ds1685.h
3160
3161 DAMA SLAVE for AX.25
3162 M:      Joerg Reuter <jreuter@yaina.de>
3163 W:      http://yaina.de/jreuter/
3164 W:      http://www.qsl.net/dl1bke/
3165 L:      linux-hams@vger.kernel.org
3166 S:      Maintained
3167 F:      net/ax25/af_ax25.c
3168 F:      net/ax25/ax25_dev.c
3169 F:      net/ax25/ax25_ds_*
3170 F:      net/ax25/ax25_in.c
3171 F:      net/ax25/ax25_out.c
3172 F:      net/ax25/ax25_timer.c
3173 F:      net/ax25/sysctl_net_ax25.c
3174
3175 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3176 L:      netdev@vger.kernel.org
3177 S:      Orphan
3178 F:      Documentation/networking/dmfe.txt
3179 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3180
3181 DC390/AM53C974 SCSI driver
3182 M:      Hannes Reinecke <hare@suse.com>
3183 L:      linux-scsi@vger.kernel.org
3184 S:      Maintained
3185 F:      drivers/scsi/am53c974.c
3186
3187 DC395x SCSI driver
3188 M:      Oliver Neukum <oliver@neukum.org>
3189 M:      Ali Akcaagac <aliakc@web.de>
3190 M:      Jamie Lenehan <lenehan@twibble.org>
3191 L:      dc395x@twibble.org
3192 W:      http://twibble.org/dist/dc395x/
3193 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3194 S:      Maintained
3195 F:      Documentation/scsi/dc395x.txt
3196 F:      drivers/scsi/dc395x.*
3197
3198 DCCP PROTOCOL
3199 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3200 L:      dccp@vger.kernel.org
3201 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3202 S:      Maintained
3203 F:      include/linux/dccp.h
3204 F:      include/uapi/linux/dccp.h
3205 F:      include/linux/tfrc.h
3206 F:      net/dccp/
3207
3208 DECnet NETWORK LAYER
3209 W:      http://linux-decnet.sourceforge.net
3210 L:      linux-decnet-user@lists.sourceforge.net
3211 S:      Orphan
3212 F:      Documentation/networking/decnet.txt
3213 F:      net/decnet/
3214
3215 DECSTATION PLATFORM SUPPORT
3216 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3217 L:      linux-mips@linux-mips.org
3218 W:      http://www.linux-mips.org/wiki/DECstation
3219 S:      Maintained
3220 F:      arch/mips/dec/
3221 F:      arch/mips/include/asm/dec/
3222 F:      arch/mips/include/asm/mach-dec/
3223
3224 DEFXX FDDI NETWORK DRIVER
3225 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3226 S:      Maintained
3227 F:      drivers/net/fddi/defxx.*
3228
3229 DELL LAPTOP DRIVER
3230 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3231 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3232 L:      platform-driver-x86@vger.kernel.org
3233 S:      Maintained
3234 F:      drivers/platform/x86/dell-laptop.c
3235
3236 DELL LAPTOP RBTN DRIVER
3237 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3238 S:      Maintained
3239 F:      drivers/platform/x86/dell-rbtn.*
3240
3241 DELL LAPTOP FREEFALL DRIVER
3242 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3243 S:      Maintained
3244 F:      drivers/platform/x86/dell-smo8800.c
3245
3246 DELL LAPTOP SMM DRIVER
3247 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3248 S:      Maintained
3249 F:      drivers/hwmon/dell-smm-hwmon.c
3250 F:      include/uapi/linux/i8k.h
3251
3252 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3253 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3254 S:      Maintained
3255 F:      Documentation/dcdbas.txt
3256 F:      drivers/firmware/dcdbas.*
3257
3258 DELL WMI EXTRAS DRIVER
3259 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3260 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3261 S:      Maintained
3262 F:      drivers/platform/x86/dell-wmi.c
3263
3264 DESIGNWARE USB2 DRD IP DRIVER
3265 M:      John Youn <johnyoun@synopsys.com>
3266 L:      linux-usb@vger.kernel.org
3267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3268 S:      Maintained
3269 F:      drivers/usb/dwc2/
3270
3271 DESIGNWARE USB3 DRD IP DRIVER
3272 M:      Felipe Balbi <balbi@ti.com>
3273 L:      linux-usb@vger.kernel.org
3274 L:      linux-omap@vger.kernel.org
3275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3276 S:      Maintained
3277 F:      drivers/usb/dwc3/
3278
3279 DEVICE COREDUMP (DEV_COREDUMP)
3280 M:      Johannes Berg <johannes@sipsolutions.net>
3281 L:      linux-kernel@vger.kernel.org
3282 S:      Maintained
3283 F:      drivers/base/devcoredump.c
3284 F:      include/linux/devcoredump.h
3285
3286 DEVICE FREQUENCY (DEVFREQ)
3287 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3288 M:      Kyungmin Park <kyungmin.park@samsung.com>
3289 L:      linux-pm@vger.kernel.org
3290 S:      Maintained
3291 F:      drivers/devfreq/
3292
3293 DEVICE NUMBER REGISTRY
3294 M:      Torben Mathiasen <device@lanana.org>
3295 W:      http://lanana.org/docs/device-list/index.html
3296 S:      Maintained
3297
3298 DEVICE-MAPPER  (LVM)
3299 M:      Alasdair Kergon <agk@redhat.com>
3300 M:      Mike Snitzer <snitzer@redhat.com>
3301 M:      dm-devel@redhat.com
3302 L:      dm-devel@redhat.com
3303 W:      http://sources.redhat.com/dm
3304 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3306 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3307 S:      Maintained
3308 F:      Documentation/device-mapper/
3309 F:      drivers/md/dm*
3310 F:      drivers/md/persistent-data/
3311 F:      include/linux/device-mapper.h
3312 F:      include/linux/dm-*.h
3313 F:      include/uapi/linux/dm-*.h
3314
3315 DIALOG SEMICONDUCTOR DRIVERS
3316 M:      Support Opensource <support.opensource@diasemi.com>
3317 W:      http://www.dialog-semiconductor.com/products
3318 S:      Supported
3319 F:      Documentation/hwmon/da90??
3320 F:      drivers/gpio/gpio-da90??.c
3321 F:      drivers/hwmon/da90??-hwmon.c
3322 F:      drivers/iio/adc/da91??-*.c
3323 F:      drivers/input/misc/da90??_onkey.c
3324 F:      drivers/input/touchscreen/da9052_tsi.c
3325 F:      drivers/leds/leds-da90??.c
3326 F:      drivers/mfd/da903x.c
3327 F:      drivers/mfd/da90??-*.c
3328 F:      drivers/mfd/da91??-*.c
3329 F:      drivers/power/da9052-battery.c
3330 F:      drivers/power/da91??-*.c
3331 F:      drivers/regulator/da903x.c
3332 F:      drivers/regulator/da9???-regulator.[ch]
3333 F:      drivers/rtc/rtc-da90??.c
3334 F:      drivers/video/backlight/da90??_bl.c
3335 F:      drivers/watchdog/da90??_wdt.c
3336 F:      include/linux/mfd/da903x.h
3337 F:      include/linux/mfd/da9052/
3338 F:      include/linux/mfd/da9055/
3339 F:      include/linux/mfd/da9063/
3340 F:      include/linux/mfd/da9150/
3341 F:      include/sound/da[79]*.h
3342 F:      sound/soc/codecs/da[79]*.[ch]
3343
3344 DIGI NEO AND CLASSIC PCI PRODUCTS
3345 M:      Lidza Louina <lidza.louina@gmail.com>
3346 M:      Mark Hounschell <markh@compro.net>
3347 L:      driverdev-devel@linuxdriverproject.org
3348 S:      Maintained
3349 F:      drivers/staging/dgnc/
3350
3351 DIGI EPCA PCI PRODUCTS
3352 M:      Lidza Louina <lidza.louina@gmail.com>
3353 M:      Mark Hounschell <markh@compro.net>
3354 M:      Daeseok Youn <daeseok.youn@gmail.com>
3355 L:      driverdev-devel@linuxdriverproject.org
3356 S:      Maintained
3357 F:      drivers/staging/dgap/
3358
3359 DIOLAN U2C-12 I2C DRIVER
3360 M:      Guenter Roeck <linux@roeck-us.net>
3361 L:      linux-i2c@vger.kernel.org
3362 S:      Maintained
3363 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3364
3365 DIRECT ACCESS (DAX)
3366 M:      Matthew Wilcox <willy@linux.intel.com>
3367 L:      linux-fsdevel@vger.kernel.org
3368 S:      Supported
3369 F:      fs/dax.c
3370
3371 DIRECTORY NOTIFICATION (DNOTIFY)
3372 M:      Eric Paris <eparis@parisplace.org>
3373 S:      Maintained
3374 F:      Documentation/filesystems/dnotify.txt
3375 F:      fs/notify/dnotify/
3376 F:      include/linux/dnotify.h
3377
3378 DISK GEOMETRY AND PARTITION HANDLING
3379 M:      Andries Brouwer <aeb@cwi.nl>
3380 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3381 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3382 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3383 S:      Maintained
3384
3385 DISKQUOTA
3386 M:      Jan Kara <jack@suse.com>
3387 S:      Maintained
3388 F:      Documentation/filesystems/quota.txt
3389 F:      fs/quota/
3390 F:      include/linux/quota*.h
3391 F:      include/uapi/linux/quota*.h
3392
3393 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3394 M:      Bernie Thompson <bernie@plugable.com>
3395 L:      linux-fbdev@vger.kernel.org
3396 S:      Maintained
3397 W:      http://plugable.com/category/projects/udlfb/
3398 F:      drivers/video/fbdev/udlfb.c
3399 F:      include/video/udlfb.h
3400 F:      Documentation/fb/udlfb.txt
3401
3402 DISTRIBUTED LOCK MANAGER (DLM)
3403 M:      Christine Caulfield <ccaulfie@redhat.com>
3404 M:      David Teigland <teigland@redhat.com>
3405 L:      cluster-devel@redhat.com
3406 W:      http://sources.redhat.com/cluster/
3407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3408 S:      Supported
3409 F:      fs/dlm/
3410
3411 DMA BUFFER SHARING FRAMEWORK
3412 M:      Sumit Semwal <sumit.semwal@linaro.org>
3413 S:      Maintained
3414 L:      linux-media@vger.kernel.org
3415 L:      dri-devel@lists.freedesktop.org
3416 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3417 F:      drivers/dma-buf/
3418 F:      include/linux/dma-buf*
3419 F:      include/linux/reservation.h
3420 F:      include/linux/*fence.h
3421 F:      Documentation/dma-buf-sharing.txt
3422 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3423
3424 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3425 M:      Vinod Koul <vinod.koul@intel.com>
3426 L:      dmaengine@vger.kernel.org
3427 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3428 S:      Maintained
3429 F:      drivers/dma/
3430 F:      include/linux/dmaengine.h
3431 F:      Documentation/dmaengine/
3432 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3433
3434 DME1737 HARDWARE MONITOR DRIVER
3435 M:      Juerg Haefliger <juergh@gmail.com>
3436 L:      lm-sensors@lm-sensors.org
3437 S:      Maintained
3438 F:      Documentation/hwmon/dme1737
3439 F:      drivers/hwmon/dme1737.c
3440
3441 DMI/SMBIOS SUPPORT
3442 M:      Jean Delvare <jdelvare@suse.com>
3443 S:      Maintained
3444 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3445 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3446 F:      drivers/firmware/dmi-id.c
3447 F:      drivers/firmware/dmi_scan.c
3448 F:      include/linux/dmi.h
3449
3450 DOCUMENTATION
3451 M:      Jonathan Corbet <corbet@lwn.net>
3452 L:      linux-doc@vger.kernel.org
3453 S:      Maintained
3454 F:      Documentation/
3455 X:      Documentation/ABI/
3456 X:      Documentation/devicetree/
3457 X:      Documentation/acpi
3458 X:      Documentation/power
3459 X:      Documentation/spi
3460 T:      git git://git.lwn.net/linux-2.6.git docs-next
3461
3462 DOUBLETALK DRIVER
3463 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3464 L:      blinux-list@redhat.com
3465 S:      Maintained
3466 F:      drivers/char/dtlk.c
3467 F:      include/linux/dtlk.h
3468
3469 DPT_I2O SCSI RAID DRIVER
3470 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3471 L:      linux-scsi@vger.kernel.org
3472 W:      http://www.adaptec.com/
3473 S:      Maintained
3474 F:      drivers/scsi/dpt*
3475 F:      drivers/scsi/dpt/
3476
3477 DRBD DRIVER
3478 P:      Philipp Reisner
3479 P:      Lars Ellenberg
3480 M:      drbd-dev@lists.linbit.com
3481 L:      drbd-user@lists.linbit.com
3482 W:      http://www.drbd.org
3483 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3484 T:      git git://git.drbd.org/drbd-8.3.git
3485 S:      Supported
3486 F:      drivers/block/drbd/
3487 F:      lib/lru_cache.c
3488 F:      Documentation/blockdev/drbd/
3489
3490 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3491 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3493 S:      Supported
3494 F:      Documentation/kobject.txt
3495 F:      drivers/base/
3496 F:      fs/debugfs/
3497 F:      fs/kernfs/
3498 F:      fs/sysfs/
3499 F:      include/linux/debugfs.h
3500 F:      include/linux/kobj*
3501 F:      lib/kobj*
3502
3503 DRM DRIVERS
3504 M:      David Airlie <airlied@linux.ie>
3505 L:      dri-devel@lists.freedesktop.org
3506 T:      git git://people.freedesktop.org/~airlied/linux
3507 S:      Maintained
3508 F:      drivers/gpu/drm/
3509 F:      drivers/gpu/vga/
3510 F:      include/drm/
3511 F:      include/uapi/drm/
3512
3513 RADEON DRM DRIVERS
3514 M:      Alex Deucher <alexander.deucher@amd.com>
3515 M:      Christian König <christian.koenig@amd.com>
3516 L:      dri-devel@lists.freedesktop.org
3517 T:      git git://people.freedesktop.org/~agd5f/linux
3518 S:      Supported
3519 F:      drivers/gpu/drm/radeon/
3520 F:      include/uapi/drm/radeon*
3521
3522 DRM PANEL DRIVERS
3523 M:      Thierry Reding <thierry.reding@gmail.com>
3524 L:      dri-devel@lists.freedesktop.org
3525 T:      git git://anongit.freedesktop.org/tegra/linux.git
3526 S:      Maintained
3527 F:      drivers/gpu/drm/drm_panel.c
3528 F:      drivers/gpu/drm/panel/
3529 F:      include/drm/drm_panel.h
3530 F:      Documentation/devicetree/bindings/panel/
3531
3532 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3533 M:      Daniel Vetter <daniel.vetter@intel.com>
3534 M:      Jani Nikula <jani.nikula@linux.intel.com>
3535 L:      intel-gfx@lists.freedesktop.org
3536 L:      dri-devel@lists.freedesktop.org
3537 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3538 T:      git git://anongit.freedesktop.org/drm-intel
3539 S:      Supported
3540 F:      drivers/gpu/drm/i915/
3541 F:      include/drm/i915*
3542 F:      include/uapi/drm/i915*
3543
3544 DRM DRIVERS FOR EXYNOS
3545 M:      Inki Dae <inki.dae@samsung.com>
3546 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3547 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3548 M:      Kyungmin Park <kyungmin.park@samsung.com>
3549 L:      dri-devel@lists.freedesktop.org
3550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3551 S:      Supported
3552 F:      drivers/gpu/drm/exynos/
3553 F:      include/drm/exynos*
3554 F:      include/uapi/drm/exynos*
3555
3556 DRM DRIVERS FOR FREESCALE IMX
3557 M:      Philipp Zabel <p.zabel@pengutronix.de>
3558 L:      dri-devel@lists.freedesktop.org
3559 S:      Maintained
3560 F:      drivers/gpu/drm/imx/
3561 F:      Documentation/devicetree/bindings/drm/imx/
3562
3563 DRM DRIVERS FOR NVIDIA TEGRA
3564 M:      Thierry Reding <thierry.reding@gmail.com>
3565 M:      Terje Bergström <tbergstrom@nvidia.com>
3566 L:      dri-devel@lists.freedesktop.org
3567 L:      linux-tegra@vger.kernel.org
3568 T:      git git://anongit.freedesktop.org/tegra/linux.git
3569 S:      Supported
3570 F:      drivers/gpu/drm/tegra/
3571 F:      drivers/gpu/host1x/
3572 F:      include/linux/host1x.h
3573 F:      include/uapi/drm/tegra_drm.h
3574 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3575
3576 DRM DRIVERS FOR RENESAS
3577 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3578 L:      dri-devel@lists.freedesktop.org
3579 L:      linux-sh@vger.kernel.org
3580 T:      git git://people.freedesktop.org/~airlied/linux
3581 S:      Supported
3582 F:      drivers/gpu/drm/rcar-du/
3583 F:      drivers/gpu/drm/shmobile/
3584 F:      include/linux/platform_data/shmob_drm.h
3585
3586 DRM DRIVERS FOR ROCKCHIP
3587 M:      Mark Yao <mark.yao@rock-chips.com>
3588 L:      dri-devel@lists.freedesktop.org
3589 S:      Maintained
3590 F:      drivers/gpu/drm/rockchip/
3591 F:      Documentation/devicetree/bindings/video/rockchip*
3592
3593 DSBR100 USB FM RADIO DRIVER
3594 M:      Alexey Klimov <klimov.linux@gmail.com>
3595 L:      linux-media@vger.kernel.org
3596 T:      git git://linuxtv.org/media_tree.git
3597 S:      Maintained
3598 F:      drivers/media/radio/dsbr100.c
3599
3600 DSCC4 DRIVER
3601 M:      Francois Romieu <romieu@fr.zoreil.com>
3602 L:      netdev@vger.kernel.org
3603 S:      Maintained
3604 F:      drivers/net/wan/dscc4.c
3605
3606 DT3155 MEDIA DRIVER
3607 M:      Hans Verkuil <hverkuil@xs4all.nl>
3608 L:      linux-media@vger.kernel.org
3609 T:      git git://linuxtv.org/media_tree.git
3610 W:      http://linuxtv.org
3611 S:      Odd Fixes
3612 F:      drivers/media/pci/dt3155/
3613
3614 DVB_USB_AF9015 MEDIA DRIVER
3615 M:      Antti Palosaari <crope@iki.fi>
3616 L:      linux-media@vger.kernel.org
3617 W:      http://linuxtv.org/
3618 W:      http://palosaari.fi/linux/
3619 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3620 T:      git git://linuxtv.org/anttip/media_tree.git
3621 S:      Maintained
3622 F:      drivers/media/usb/dvb-usb-v2/af9015*
3623
3624 DVB_USB_AF9035 MEDIA DRIVER
3625 M:      Antti Palosaari <crope@iki.fi>
3626 L:      linux-media@vger.kernel.org
3627 W:      http://linuxtv.org/
3628 W:      http://palosaari.fi/linux/
3629 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3630 T:      git git://linuxtv.org/anttip/media_tree.git
3631 S:      Maintained
3632 F:      drivers/media/usb/dvb-usb-v2/af9035*
3633
3634 DVB_USB_ANYSEE MEDIA DRIVER
3635 M:      Antti Palosaari <crope@iki.fi>
3636 L:      linux-media@vger.kernel.org
3637 W:      http://linuxtv.org/
3638 W:      http://palosaari.fi/linux/
3639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3640 T:      git git://linuxtv.org/anttip/media_tree.git
3641 S:      Maintained
3642 F:      drivers/media/usb/dvb-usb-v2/anysee*
3643
3644 DVB_USB_AU6610 MEDIA DRIVER
3645 M:      Antti Palosaari <crope@iki.fi>
3646 L:      linux-media@vger.kernel.org
3647 W:      http://linuxtv.org/
3648 W:      http://palosaari.fi/linux/
3649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3650 T:      git git://linuxtv.org/anttip/media_tree.git
3651 S:      Maintained
3652 F:      drivers/media/usb/dvb-usb-v2/au6610*
3653
3654 DVB_USB_CE6230 MEDIA DRIVER
3655 M:      Antti Palosaari <crope@iki.fi>
3656 L:      linux-media@vger.kernel.org
3657 W:      http://linuxtv.org/
3658 W:      http://palosaari.fi/linux/
3659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3660 T:      git git://linuxtv.org/anttip/media_tree.git
3661 S:      Maintained
3662 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3663
3664 DVB_USB_CXUSB MEDIA DRIVER
3665 M:      Michael Krufky <mkrufky@linuxtv.org>
3666 L:      linux-media@vger.kernel.org
3667 W:      http://linuxtv.org/
3668 W:      http://github.com/mkrufky
3669 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3670 T:      git git://linuxtv.org/media_tree.git
3671 S:      Maintained
3672 F:      drivers/media/usb/dvb-usb/cxusb*
3673
3674 DVB_USB_EC168 MEDIA DRIVER
3675 M:      Antti Palosaari <crope@iki.fi>
3676 L:      linux-media@vger.kernel.org
3677 W:      http://linuxtv.org/
3678 W:      http://palosaari.fi/linux/
3679 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3680 T:      git git://linuxtv.org/anttip/media_tree.git
3681 S:      Maintained
3682 F:      drivers/media/usb/dvb-usb-v2/ec168*
3683
3684 DVB_USB_GL861 MEDIA DRIVER
3685 M:      Antti Palosaari <crope@iki.fi>
3686 L:      linux-media@vger.kernel.org
3687 W:      http://linuxtv.org/
3688 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3689 T:      git git://linuxtv.org/anttip/media_tree.git
3690 S:      Maintained
3691 F:      drivers/media/usb/dvb-usb-v2/gl861*
3692
3693 DVB_USB_MXL111SF MEDIA DRIVER
3694 M:      Michael Krufky <mkrufky@linuxtv.org>
3695 L:      linux-media@vger.kernel.org
3696 W:      http://linuxtv.org/
3697 W:      http://github.com/mkrufky
3698 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3699 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3700 S:      Maintained
3701 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3702
3703 DVB_USB_RTL28XXU MEDIA DRIVER
3704 M:      Antti Palosaari <crope@iki.fi>
3705 L:      linux-media@vger.kernel.org
3706 W:      http://linuxtv.org/
3707 W:      http://palosaari.fi/linux/
3708 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3709 T:      git git://linuxtv.org/anttip/media_tree.git
3710 S:      Maintained
3711 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3712
3713 DVB_USB_V2 MEDIA DRIVER
3714 M:      Antti Palosaari <crope@iki.fi>
3715 L:      linux-media@vger.kernel.org
3716 W:      http://linuxtv.org/
3717 W:      http://palosaari.fi/linux/
3718 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3719 T:      git git://linuxtv.org/anttip/media_tree.git
3720 S:      Maintained
3721 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3722 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3723
3724 DYNAMIC DEBUG
3725 M:      Jason Baron <jbaron@akamai.com>
3726 S:      Maintained
3727 F:      lib/dynamic_debug.c
3728 F:      include/linux/dynamic_debug.h
3729
3730 DZ DECSTATION DZ11 SERIAL DRIVER
3731 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3732 S:      Maintained
3733 F:      drivers/tty/serial/dz.*
3734
3735 E3X0 POWER BUTTON DRIVER
3736 M:      Moritz Fischer <moritz.fischer@ettus.com>
3737 L:      usrp-users@lists.ettus.com
3738 W:      http://www.ettus.com
3739 S:      Supported
3740 F:      drivers/input/misc/e3x0-button.c
3741 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3742
3743 E4000 MEDIA DRIVER
3744 M:      Antti Palosaari <crope@iki.fi>
3745 L:      linux-media@vger.kernel.org
3746 W:      http://linuxtv.org/
3747 W:      http://palosaari.fi/linux/
3748 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3749 T:      git git://linuxtv.org/anttip/media_tree.git
3750 S:      Maintained
3751 F:      drivers/media/tuners/e4000*
3752
3753 EATA ISA/EISA/PCI SCSI DRIVER
3754 M:      Dario Ballabio <ballabio_dario@emc.com>
3755 L:      linux-scsi@vger.kernel.org
3756 S:      Maintained
3757 F:      drivers/scsi/eata.c
3758
3759 EC100 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/dvb-frontends/ec100*
3768
3769 ECRYPT FILE SYSTEM
3770 M:      Tyler Hicks <tyhicks@canonical.com>
3771 L:      ecryptfs@vger.kernel.org
3772 W:      http://ecryptfs.org
3773 W:      https://launchpad.net/ecryptfs
3774 S:      Supported
3775 F:      Documentation/filesystems/ecryptfs.txt
3776 F:      fs/ecryptfs/
3777
3778 EDAC-CORE
3779 M:      Doug Thompson <dougthompson@xmission.com>
3780 M:      Borislav Petkov <bp@alien8.de>
3781 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3782 L:      linux-edac@vger.kernel.org
3783 W:      bluesmoke.sourceforge.net
3784 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3785 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3786 S:      Supported
3787 F:      Documentation/edac.txt
3788 F:      drivers/edac/
3789 F:      include/linux/edac.h
3790
3791 EDAC-AMD64
3792 M:      Doug Thompson <dougthompson@xmission.com>
3793 M:      Borislav Petkov <bp@alien8.de>
3794 L:      linux-edac@vger.kernel.org
3795 W:      bluesmoke.sourceforge.net
3796 S:      Maintained
3797 F:      drivers/edac/amd64_edac*
3798
3799 EDAC-CALXEDA
3800 M:      Doug Thompson <dougthompson@xmission.com>
3801 M:      Robert Richter <rric@kernel.org>
3802 L:      linux-edac@vger.kernel.org
3803 W:      bluesmoke.sourceforge.net
3804 S:      Maintained
3805 F:      drivers/edac/highbank*
3806
3807 EDAC-CAVIUM
3808 M:      Ralf Baechle <ralf@linux-mips.org>
3809 M:      David Daney <david.daney@cavium.com>
3810 L:      linux-edac@vger.kernel.org
3811 L:      linux-mips@linux-mips.org
3812 W:      bluesmoke.sourceforge.net
3813 S:      Supported
3814 F:      drivers/edac/octeon_edac*
3815
3816 EDAC-E752X
3817 M:      Mark Gross <mark.gross@intel.com>
3818 M:      Doug Thompson <dougthompson@xmission.com>
3819 L:      linux-edac@vger.kernel.org
3820 W:      bluesmoke.sourceforge.net
3821 S:      Maintained
3822 F:      drivers/edac/e752x_edac.c
3823
3824 EDAC-E7XXX
3825 M:      Doug Thompson <dougthompson@xmission.com>
3826 L:      linux-edac@vger.kernel.org
3827 W:      bluesmoke.sourceforge.net
3828 S:      Maintained
3829 F:      drivers/edac/e7xxx_edac.c
3830
3831 EDAC-GHES
3832 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3833 L:      linux-edac@vger.kernel.org
3834 W:      bluesmoke.sourceforge.net
3835 S:      Maintained
3836 F:      drivers/edac/ghes_edac.c
3837
3838 EDAC-I82443BXGX
3839 M:      Tim Small <tim@buttersideup.com>
3840 L:      linux-edac@vger.kernel.org
3841 W:      bluesmoke.sourceforge.net
3842 S:      Maintained
3843 F:      drivers/edac/i82443bxgx_edac.c
3844
3845 EDAC-I3000
3846 M:      Jason Uhlenkott <juhlenko@akamai.com>
3847 L:      linux-edac@vger.kernel.org
3848 W:      bluesmoke.sourceforge.net
3849 S:      Maintained
3850 F:      drivers/edac/i3000_edac.c
3851
3852 EDAC-I5000
3853 M:      Doug Thompson <dougthompson@xmission.com>
3854 L:      linux-edac@vger.kernel.org
3855 W:      bluesmoke.sourceforge.net
3856 S:      Maintained
3857 F:      drivers/edac/i5000_edac.c
3858
3859 EDAC-I5400
3860 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3861 L:      linux-edac@vger.kernel.org
3862 W:      bluesmoke.sourceforge.net
3863 S:      Maintained
3864 F:      drivers/edac/i5400_edac.c
3865
3866 EDAC-I7300
3867 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3868 L:      linux-edac@vger.kernel.org
3869 W:      bluesmoke.sourceforge.net
3870 S:      Maintained
3871 F:      drivers/edac/i7300_edac.c
3872
3873 EDAC-I7CORE
3874 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3875 L:      linux-edac@vger.kernel.org
3876 W:      bluesmoke.sourceforge.net
3877 S:      Maintained
3878 F:      drivers/edac/i7core_edac.c
3879
3880 EDAC-I82975X
3881 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3882 M:      "Arvind R." <arvino55@gmail.com>
3883 L:      linux-edac@vger.kernel.org
3884 W:      bluesmoke.sourceforge.net
3885 S:      Maintained
3886 F:      drivers/edac/i82975x_edac.c
3887
3888 EDAC-IE31200
3889 M:      Jason Baron <jbaron@akamai.com>
3890 L:      linux-edac@vger.kernel.org
3891 W:      bluesmoke.sourceforge.net
3892 S:      Maintained
3893 F:      drivers/edac/ie31200_edac.c
3894
3895 EDAC-MPC85XX
3896 M:      Johannes Thumshirn <morbidrsa@gmail.com>
3897 L:      linux-edac@vger.kernel.org
3898 W:      bluesmoke.sourceforge.net
3899 S:      Maintained
3900 F:      drivers/edac/mpc85xx_edac.[ch]
3901
3902 EDAC-PASEMI
3903 M:      Egor Martovetsky <egor@pasemi.com>
3904 L:      linux-edac@vger.kernel.org
3905 W:      bluesmoke.sourceforge.net
3906 S:      Maintained
3907 F:      drivers/edac/pasemi_edac.c
3908
3909 EDAC-R82600
3910 M:      Tim Small <tim@buttersideup.com>
3911 L:      linux-edac@vger.kernel.org
3912 W:      bluesmoke.sourceforge.net
3913 S:      Maintained
3914 F:      drivers/edac/r82600_edac.c
3915
3916 EDAC-SBRIDGE
3917 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3918 L:      linux-edac@vger.kernel.org
3919 W:      bluesmoke.sourceforge.net
3920 S:      Maintained
3921 F:      drivers/edac/sb_edac.c
3922
3923 EDAC-XGENE
3924 APPLIED MICRO (APM) X-GENE SOC EDAC
3925 M:     Loc Ho <lho@apm.com>
3926 S:     Supported
3927 F:     drivers/edac/xgene_edac.c
3928 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
3929
3930 EDIROL UA-101/UA-1000 DRIVER
3931 M:      Clemens Ladisch <clemens@ladisch.de>
3932 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3933 T:      git git://git.alsa-project.org/alsa-kernel.git
3934 S:      Maintained
3935 F:      sound/usb/misc/ua101.c
3936
3937 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3938 M:      Matt Fleming <matt.fleming@intel.com>
3939 L:      linux-efi@vger.kernel.org
3940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3941 S:      Maintained
3942 F:      Documentation/efi-stub.txt
3943 F:      arch/ia64/kernel/efi.c
3944 F:      arch/x86/boot/compressed/eboot.[ch]
3945 F:      arch/x86/include/asm/efi.h
3946 F:      arch/x86/platform/efi/*
3947 F:      drivers/firmware/efi/*
3948 F:      include/linux/efi*.h
3949
3950 EFI VARIABLE FILESYSTEM
3951 M:      Matthew Garrett <matthew.garrett@nebula.com>
3952 M:      Jeremy Kerr <jk@ozlabs.org>
3953 M:      Matt Fleming <matt.fleming@intel.com>
3954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3955 L:      linux-efi@vger.kernel.org
3956 S:      Maintained
3957 F:      fs/efivarfs/
3958
3959 EFIFB FRAMEBUFFER DRIVER
3960 L:      linux-fbdev@vger.kernel.org
3961 M:      Peter Jones <pjones@redhat.com>
3962 S:      Maintained
3963 F:      drivers/video/fbdev/efifb.c
3964
3965 EFS FILESYSTEM
3966 W:      http://aeschi.ch.eu.org/efs/
3967 S:      Orphan
3968 F:      fs/efs/
3969
3970 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3971 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3972 M:      Christoph Raisch <raisch@de.ibm.com>
3973 L:      linux-rdma@vger.kernel.org
3974 S:      Supported
3975 F:      drivers/infiniband/hw/ehca/
3976
3977 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3978 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3979 L:      netdev@vger.kernel.org
3980 S:      Maintained
3981 F:      drivers/net/ethernet/ibm/ehea/
3982
3983 EM28XX VIDEO4LINUX DRIVER
3984 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3985 L:      linux-media@vger.kernel.org
3986 W:      http://linuxtv.org
3987 T:      git git://linuxtv.org/media_tree.git
3988 S:      Maintained
3989 F:      drivers/media/usb/em28xx/
3990
3991 EMBEDDED LINUX
3992 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
3993 M:      Matt Mackall <mpm@selenic.com>
3994 M:      David Woodhouse <dwmw2@infradead.org>
3995 L:      linux-embedded@vger.kernel.org
3996 S:      Maintained
3997
3998 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
3999 M:      James Smart <james.smart@avagotech.com>
4000 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4001 L:      linux-scsi@vger.kernel.org
4002 W:      http://www.avagotech.com
4003 S:      Supported
4004 F:      drivers/scsi/lpfc/
4005
4006 ENE CB710 FLASH CARD READER DRIVER
4007 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4008 S:      Maintained
4009 F:      drivers/misc/cb710/
4010 F:      drivers/mmc/host/cb710-mmc.*
4011 F:      include/linux/cb710.h
4012
4013 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4014 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4015 S:      Maintained
4016 F:      drivers/media/rc/ene_ir.*
4017
4018 ENHANCED ERROR HANDLING (EEH)
4019 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4020 L:      linuxppc-dev@lists.ozlabs.org
4021 S:      Supported
4022 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4023 F:      arch/powerpc/kernel/eeh*.c
4024
4025 EPSON S1D13XXX FRAMEBUFFER DRIVER
4026 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4027 S:      Maintained
4028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4029 F:      drivers/video/fbdev/s1d13xxxfb.c
4030 F:      include/video/s1d13xxxfb.h
4031
4032 ET131X NETWORK DRIVER
4033 M:      Mark Einon <mark.einon@gmail.com>
4034 S:      Odd Fixes
4035 F:      drivers/net/ethernet/agere/
4036
4037 ETHERNET BRIDGE
4038 M:      Stephen Hemminger <stephen@networkplumber.org>
4039 L:      bridge@lists.linux-foundation.org
4040 L:      netdev@vger.kernel.org
4041 W:      http://www.linuxfoundation.org/en/Net:Bridge
4042 S:      Maintained
4043 F:      include/linux/netfilter_bridge/
4044 F:      net/bridge/
4045
4046 ETHERNET PHY LIBRARY
4047 M:      Florian Fainelli <f.fainelli@gmail.com>
4048 L:      netdev@vger.kernel.org
4049 S:      Maintained
4050 F:      include/linux/phy.h
4051 F:      include/linux/phy_fixed.h
4052 F:      drivers/net/phy/
4053 F:      Documentation/networking/phy.txt
4054 F:      drivers/of/of_mdio.c
4055 F:      drivers/of/of_net.c
4056
4057 EXT2 FILE SYSTEM
4058 M:      Jan Kara <jack@suse.com>
4059 L:      linux-ext4@vger.kernel.org
4060 S:      Maintained
4061 F:      Documentation/filesystems/ext2.txt
4062 F:      fs/ext2/
4063 F:      include/linux/ext2*
4064
4065 EXT3 FILE SYSTEM
4066 M:      Jan Kara <jack@suse.com>
4067 M:      Andrew Morton <akpm@linux-foundation.org>
4068 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4069 L:      linux-ext4@vger.kernel.org
4070 S:      Maintained
4071 F:      Documentation/filesystems/ext3.txt
4072 F:      fs/ext3/
4073
4074 EXT4 FILE SYSTEM
4075 M:      "Theodore Ts'o" <tytso@mit.edu>
4076 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4077 L:      linux-ext4@vger.kernel.org
4078 W:      http://ext4.wiki.kernel.org
4079 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4080 S:      Maintained
4081 F:      Documentation/filesystems/ext4.txt
4082 F:      fs/ext4/
4083
4084 Extended Verification Module (EVM)
4085 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4086 L:      linux-ima-devel@lists.sourceforge.net
4087 L:      linux-security-module@vger.kernel.org
4088 S:      Supported
4089 F:      security/integrity/evm/
4090
4091 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4092 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4093 M:      Chanwoo Choi <cw00.choi@samsung.com>
4094 L:      linux-kernel@vger.kernel.org
4095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4096 S:      Maintained
4097 F:      drivers/extcon/
4098 F:      Documentation/extcon/
4099
4100 EXYNOS DP DRIVER
4101 M:      Jingoo Han <jingoohan1@gmail.com>
4102 L:      dri-devel@lists.freedesktop.org
4103 S:      Maintained
4104 F:      drivers/gpu/drm/exynos/exynos_dp*
4105
4106 EXYNOS MIPI DISPLAY DRIVERS
4107 M:      Inki Dae <inki.dae@samsung.com>
4108 M:      Donghwa Lee <dh09.lee@samsung.com>
4109 M:      Kyungmin Park <kyungmin.park@samsung.com>
4110 L:      linux-fbdev@vger.kernel.org
4111 S:      Maintained
4112 F:      drivers/video/fbdev/exynos/exynos_mipi*
4113 F:      include/video/exynos_mipi*
4114
4115 F71805F HARDWARE MONITORING DRIVER
4116 M:      Jean Delvare <jdelvare@suse.com>
4117 L:      lm-sensors@lm-sensors.org
4118 S:      Maintained
4119 F:      Documentation/hwmon/f71805f
4120 F:      drivers/hwmon/f71805f.c
4121
4122 FC0011 TUNER DRIVER
4123 M:      Michael Buesch <m@bues.ch>
4124 L:      linux-media@vger.kernel.org
4125 S:      Maintained
4126 F:      drivers/media/tuners/fc0011.h
4127 F:      drivers/media/tuners/fc0011.c
4128
4129 FC2580 MEDIA DRIVER
4130 M:      Antti Palosaari <crope@iki.fi>
4131 L:      linux-media@vger.kernel.org
4132 W:      http://linuxtv.org/
4133 W:      http://palosaari.fi/linux/
4134 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4135 T:      git git://linuxtv.org/anttip/media_tree.git
4136 S:      Maintained
4137 F:      drivers/media/tuners/fc2580*
4138
4139 FANOTIFY
4140 M:      Eric Paris <eparis@redhat.com>
4141 S:      Maintained
4142 F:      fs/notify/fanotify/
4143 F:      include/linux/fanotify.h
4144 F:      include/uapi/linux/fanotify.h
4145
4146 FARSYNC SYNCHRONOUS DRIVER
4147 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4148 W:      http://www.farsite.co.uk/
4149 S:      Supported
4150 F:      drivers/net/wan/farsync.*
4151
4152 FAULT INJECTION SUPPORT
4153 M:      Akinobu Mita <akinobu.mita@gmail.com>
4154 S:      Supported
4155 F:      Documentation/fault-injection/
4156 F:      lib/fault-inject.c
4157
4158 FBTFT Framebuffer drivers
4159 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4160 M:      Noralf Trønnes <noralf@tronnes.org>
4161 S:      Maintained
4162 F:      drivers/staging/fbtft/
4163
4164 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4165 M:      Vasu Dev <vasu.dev@intel.com>
4166 L:      fcoe-devel@open-fcoe.org
4167 W:      www.Open-FCoE.org
4168 S:      Supported
4169 F:      drivers/scsi/libfc/
4170 F:      drivers/scsi/fcoe/
4171 F:      include/scsi/fc/
4172 F:      include/scsi/libfc.h
4173 F:      include/scsi/libfcoe.h
4174 F:      include/uapi/scsi/fc/
4175
4176 FILE LOCKING (flock() and fcntl()/lockf())
4177 M:      Jeff Layton <jlayton@poochiereds.net>
4178 M:      "J. Bruce Fields" <bfields@fieldses.org>
4179 L:      linux-fsdevel@vger.kernel.org
4180 S:      Maintained
4181 F:      include/linux/fcntl.h
4182 F:      include/linux/fs.h
4183 F:      include/uapi/linux/fcntl.h
4184 F:      include/uapi/linux/fs.h
4185 F:      fs/fcntl.c
4186 F:      fs/locks.c
4187
4188 FILESYSTEMS (VFS and infrastructure)
4189 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4190 L:      linux-fsdevel@vger.kernel.org
4191 S:      Maintained
4192 F:      fs/*
4193
4194 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4195 M:      Riku Voipio <riku.voipio@iki.fi>
4196 L:      lm-sensors@lm-sensors.org
4197 S:      Maintained
4198 F:      drivers/hwmon/f75375s.c
4199 F:      include/linux/f75375s.h
4200
4201 FIREWIRE AUDIO DRIVERS
4202 M:      Clemens Ladisch <clemens@ladisch.de>
4203 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4204 T:      git git://git.alsa-project.org/alsa-kernel.git
4205 S:      Maintained
4206 F:      sound/firewire/
4207
4208 FIREWIRE MEDIA DRIVERS (firedtv)
4209 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4210 L:      linux-media@vger.kernel.org
4211 L:      linux1394-devel@lists.sourceforge.net
4212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4213 S:      Maintained
4214 F:      drivers/media/firewire/
4215
4216 FIREWIRE SBP-2 TARGET
4217 M:      Chris Boot <bootc@bootc.net>
4218 L:      linux-scsi@vger.kernel.org
4219 L:      target-devel@vger.kernel.org
4220 L:      linux1394-devel@lists.sourceforge.net
4221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4222 S:      Maintained
4223 F:      drivers/target/sbp/
4224
4225 FIREWIRE SUBSYSTEM
4226 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4227 L:      linux1394-devel@lists.sourceforge.net
4228 W:      http://ieee1394.wiki.kernel.org/
4229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4230 S:      Maintained
4231 F:      drivers/firewire/
4232 F:      include/linux/firewire.h
4233 F:      include/uapi/linux/firewire*.h
4234 F:      tools/firewire/
4235
4236 FIRMWARE LOADER (request_firmware)
4237 M:      Ming Lei <ming.lei@canonical.com>
4238 L:      linux-kernel@vger.kernel.org
4239 S:      Maintained
4240 F:      Documentation/firmware_class/
4241 F:      drivers/base/firmware*.c
4242 F:      include/linux/firmware.h
4243
4244 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4245 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4246 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4247 S:      Maintained
4248 F:      drivers/block/rsxx/
4249
4250 FLOPPY DRIVER
4251 M:      Jiri Kosina <jkosina@suse.com>
4252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4253 S:      Odd fixes
4254 F:      drivers/block/floppy.c
4255
4256 FMC SUBSYSTEM
4257 M:      Alessandro Rubini <rubini@gnudd.com>
4258 W:      http://www.ohwr.org/projects/fmc-bus
4259 S:      Supported
4260 F:      drivers/fmc/
4261 F:      include/linux/fmc*.h
4262 F:      include/linux/ipmi-fru.h
4263 K:      fmc_d.*register
4264
4265 FPU EMULATOR
4266 M:      Bill Metzenthen <billm@melbpc.org.au>
4267 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4268 S:      Maintained
4269 F:      arch/x86/math-emu/
4270
4271 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4272 L:      netdev@vger.kernel.org
4273 S:      Orphan
4274 F:      drivers/net/wan/dlci.c
4275 F:      drivers/net/wan/sdla.c
4276
4277 FRAMEBUFFER LAYER
4278 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4279 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4280 L:      linux-fbdev@vger.kernel.org
4281 W:      http://linux-fbdev.sourceforge.net/
4282 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4284 S:      Maintained
4285 F:      Documentation/fb/
4286 F:      Documentation/devicetree/bindings/fb/
4287 F:      drivers/video/
4288 F:      include/video/
4289 F:      include/linux/fb.h
4290 F:      include/uapi/video/
4291 F:      include/uapi/linux/fb.h
4292
4293 FREESCALE DIU FRAMEBUFFER DRIVER
4294 M:      Timur Tabi <timur@tabi.org>
4295 L:      linux-fbdev@vger.kernel.org
4296 S:      Maintained
4297 F:      drivers/video/fbdev/fsl-diu-fb.*
4298
4299 FREESCALE DMA DRIVER
4300 M:      Li Yang <leoli@freescale.com>
4301 M:      Zhang Wei <zw@zh-kernel.org>
4302 L:      linuxppc-dev@lists.ozlabs.org
4303 S:      Maintained
4304 F:      drivers/dma/fsldma.*
4305
4306 FREESCALE I2C CPM DRIVER
4307 M:      Jochen Friedrich <jochen@scram.de>
4308 L:      linuxppc-dev@lists.ozlabs.org
4309 L:      linux-i2c@vger.kernel.org
4310 S:      Maintained
4311 F:      drivers/i2c/busses/i2c-cpm.c
4312
4313 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4314 M:      Sascha Hauer <kernel@pengutronix.de>
4315 L:      linux-fbdev@vger.kernel.org
4316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4317 S:      Maintained
4318 F:      include/linux/platform_data/video-imxfb.h
4319 F:      drivers/video/fbdev/imxfb.c
4320
4321 FREESCALE QUAD SPI DRIVER
4322 M:      Han Xu <han.xu@freescale.com>
4323 L:      linux-mtd@lists.infradead.org
4324 S:      Maintained
4325 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4326
4327 FREESCALE SOC FS_ENET DRIVER
4328 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4329 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4330 L:      linuxppc-dev@lists.ozlabs.org
4331 L:      netdev@vger.kernel.org
4332 S:      Maintained
4333 F:      drivers/net/ethernet/freescale/fs_enet/
4334 F:      include/linux/fs_enet_pd.h
4335
4336 FREESCALE QUICC ENGINE LIBRARY
4337 L:      linuxppc-dev@lists.ozlabs.org
4338 S:      Orphan
4339 F:      arch/powerpc/sysdev/qe_lib/
4340 F:      arch/powerpc/include/asm/*qe.h
4341
4342 FREESCALE USB PERIPHERAL DRIVERS
4343 M:      Li Yang <leoli@freescale.com>
4344 L:      linux-usb@vger.kernel.org
4345 L:      linuxppc-dev@lists.ozlabs.org
4346 S:      Maintained
4347 F:      drivers/usb/gadget/udc/fsl*
4348
4349 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4350 M:      Li Yang <leoli@freescale.com>
4351 L:      netdev@vger.kernel.org
4352 L:      linuxppc-dev@lists.ozlabs.org
4353 S:      Maintained
4354 F:      drivers/net/ethernet/freescale/ucc_geth*
4355
4356 FREESCALE QUICC ENGINE UCC UART DRIVER
4357 M:      Timur Tabi <timur@tabi.org>
4358 L:      linuxppc-dev@lists.ozlabs.org
4359 S:      Maintained
4360 F:      drivers/tty/serial/ucc_uart.c
4361
4362 FREESCALE SOC SOUND DRIVERS
4363 M:      Timur Tabi <timur@tabi.org>
4364 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4365 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4366 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4367 L:      linuxppc-dev@lists.ozlabs.org
4368 S:      Maintained
4369 F:      sound/soc/fsl/fsl*
4370 F:      sound/soc/fsl/imx*
4371 F:      sound/soc/fsl/mpc8610_hpcd.c
4372
4373 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4374 M:      "J. German Rivera" <German.Rivera@freescale.com>
4375 L:      linux-kernel@vger.kernel.org
4376 S:      Maintained
4377 F:      drivers/staging/fsl-mc/
4378
4379 FREEVXFS FILESYSTEM
4380 M:      Christoph Hellwig <hch@infradead.org>
4381 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4382 S:      Maintained
4383 F:      fs/freevxfs/
4384
4385 FREEZER
4386 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4387 M:      Pavel Machek <pavel@ucw.cz>
4388 L:      linux-pm@vger.kernel.org
4389 S:      Supported
4390 F:      Documentation/power/freezing-of-tasks.txt
4391 F:      include/linux/freezer.h
4392 F:      kernel/freezer.c
4393
4394 FRONTSWAP API
4395 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4396 L:      linux-kernel@vger.kernel.org
4397 S:      Maintained
4398 F:      mm/frontswap.c
4399 F:      include/linux/frontswap.h
4400
4401 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4402 M:      David Howells <dhowells@redhat.com>
4403 L:      linux-cachefs@redhat.com
4404 S:      Supported
4405 F:      Documentation/filesystems/caching/
4406 F:      fs/fscache/
4407 F:      include/linux/fscache*.h
4408
4409 F2FS FILE SYSTEM
4410 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4411 M:      Changman Lee <cm224.lee@samsung.com>
4412 L:      linux-f2fs-devel@lists.sourceforge.net
4413 W:      http://en.wikipedia.org/wiki/F2FS
4414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4415 S:      Maintained
4416 F:      Documentation/filesystems/f2fs.txt
4417 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4418 F:      fs/f2fs/
4419 F:      include/linux/f2fs_fs.h
4420
4421 FUJITSU FR-V (FRV) PORT
4422 M:      David Howells <dhowells@redhat.com>
4423 S:      Maintained
4424 F:      arch/frv/
4425
4426 FUJITSU LAPTOP EXTRAS
4427 M:      Jonathan Woithe <jwoithe@just42.net>
4428 L:      platform-driver-x86@vger.kernel.org
4429 S:      Maintained
4430 F:      drivers/platform/x86/fujitsu-laptop.c
4431
4432 FUJITSU M-5MO LS CAMERA ISP DRIVER
4433 M:      Kyungmin Park <kyungmin.park@samsung.com>
4434 M:      Heungjun Kim <riverful.kim@samsung.com>
4435 L:      linux-media@vger.kernel.org
4436 S:      Maintained
4437 F:      drivers/media/i2c/m5mols/
4438 F:      include/media/m5mols.h
4439
4440 FUJITSU TABLET EXTRAS
4441 M:      Robert Gerlach <khnz@gmx.de>
4442 L:      platform-driver-x86@vger.kernel.org
4443 S:      Maintained
4444 F:      drivers/platform/x86/fujitsu-tablet.c
4445
4446 FUSE: FILESYSTEM IN USERSPACE
4447 M:      Miklos Szeredi <miklos@szeredi.hu>
4448 L:      fuse-devel@lists.sourceforge.net
4449 W:      http://fuse.sourceforge.net/
4450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4451 S:      Maintained
4452 F:      fs/fuse/
4453 F:      include/uapi/linux/fuse.h
4454 F:      Documentation/filesystems/fuse.txt
4455
4456 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4457 M:      Rik Faith <faith@cs.unc.edu>
4458 L:      linux-scsi@vger.kernel.org
4459 S:      Odd Fixes (e.g., new signatures)
4460 F:      drivers/scsi/fdomain.*
4461
4462 GCOV BASED KERNEL PROFILING
4463 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4464 S:      Maintained
4465 F:      kernel/gcov/
4466 F:      Documentation/gcov.txt
4467
4468 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4469 M:      Achim Leubner <achim_leubner@adaptec.com>
4470 L:      linux-scsi@vger.kernel.org
4471 W:      http://www.icp-vortex.com/
4472 S:      Supported
4473 F:      drivers/scsi/gdt*
4474
4475 GDB KERNEL DEBUGGING HELPER SCRIPTS
4476 M:      Jan Kiszka <jan.kiszka@siemens.com>
4477 S:      Supported
4478 F:      scripts/gdb/
4479
4480 GEMTEK FM RADIO RECEIVER DRIVER
4481 M:      Hans Verkuil <hverkuil@xs4all.nl>
4482 L:      linux-media@vger.kernel.org
4483 T:      git git://linuxtv.org/media_tree.git
4484 W:      http://linuxtv.org
4485 S:      Maintained
4486 F:      drivers/media/radio/radio-gemtek*
4487
4488 GENERIC GPIO I2C DRIVER
4489 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4490 S:      Supported
4491 F:      drivers/i2c/busses/i2c-gpio.c
4492 F:      include/linux/i2c-gpio.h
4493
4494 GENERIC GPIO I2C MULTIPLEXER DRIVER
4495 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4496 L:      linux-i2c@vger.kernel.org
4497 S:      Supported
4498 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4499 F:      include/linux/i2c-mux-gpio.h
4500 F:      Documentation/i2c/muxes/i2c-mux-gpio
4501
4502 GENERIC HDLC (WAN) DRIVERS
4503 M:      Krzysztof Halasa <khc@pm.waw.pl>
4504 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4505 S:      Maintained
4506 F:      drivers/net/wan/c101.c
4507 F:      drivers/net/wan/hd6457*
4508 F:      drivers/net/wan/hdlc*
4509 F:      drivers/net/wan/n2.c
4510 F:      drivers/net/wan/pc300too.c
4511 F:      drivers/net/wan/pci200syn.c
4512 F:      drivers/net/wan/wanxl*
4513
4514 GENERIC INCLUDE/ASM HEADER FILES
4515 M:      Arnd Bergmann <arnd@arndb.de>
4516 L:      linux-arch@vger.kernel.org
4517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4518 S:      Maintained
4519 F:      include/asm-generic/
4520 F:      include/uapi/asm-generic/
4521
4522 GENERIC PHY FRAMEWORK
4523 M:      Kishon Vijay Abraham I <kishon@ti.com>
4524 L:      linux-kernel@vger.kernel.org
4525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4526 S:      Supported
4527 F:      drivers/phy/
4528 F:      include/linux/phy/
4529
4530 GENERIC PM DOMAINS
4531 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4532 M:      Kevin Hilman <khilman@kernel.org>
4533 M:      Ulf Hansson <ulf.hansson@linaro.org>
4534 L:      linux-pm@vger.kernel.org
4535 S:      Supported
4536 F:      drivers/base/power/domain*.c
4537 F:      include/linux/pm_domain.h
4538
4539 GENERIC UIO DRIVER FOR PCI DEVICES
4540 M:      "Michael S. Tsirkin" <mst@redhat.com>
4541 L:      kvm@vger.kernel.org
4542 S:      Supported
4543 F:      drivers/uio/uio_pci_generic.c
4544
4545 GET_MAINTAINER SCRIPT
4546 M:      Joe Perches <joe@perches.com>
4547 S:      Maintained
4548 F:      scripts/get_maintainer.pl
4549
4550 GFS2 FILE SYSTEM
4551 M:      Steven Whitehouse <swhiteho@redhat.com>
4552 M:      Bob Peterson <rpeterso@redhat.com>
4553 L:      cluster-devel@redhat.com
4554 W:      http://sources.redhat.com/cluster/
4555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4556 S:      Supported
4557 F:      Documentation/filesystems/gfs2*.txt
4558 F:      fs/gfs2/
4559 F:      include/uapi/linux/gfs2_ondisk.h
4560
4561 GIGASET ISDN DRIVERS
4562 M:      Paul Bolle <pebolle@tiscali.nl>
4563 L:      gigaset307x-common@lists.sourceforge.net
4564 W:      http://gigaset307x.sourceforge.net/
4565 S:      Odd Fixes
4566 F:      Documentation/isdn/README.gigaset
4567 F:      drivers/isdn/gigaset/
4568 F:      include/uapi/linux/gigaset_dev.h
4569
4570 GO7007 MPEG CODEC
4571 M:      Hans Verkuil <hans.verkuil@cisco.com>
4572 L:      linux-media@vger.kernel.org
4573 S:      Maintained
4574 F:      drivers/media/usb/go7007/
4575
4576 GOODIX TOUCHSCREEN
4577 M:      Bastien Nocera <hadess@hadess.net>
4578 L:      linux-input@vger.kernel.org
4579 S:      Maintained
4580 F:      drivers/input/touchscreen/goodix.c
4581
4582 GPIO SUBSYSTEM
4583 M:      Linus Walleij <linus.walleij@linaro.org>
4584 M:      Alexandre Courbot <gnurou@gmail.com>
4585 L:      linux-gpio@vger.kernel.org
4586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4587 S:      Maintained
4588 F:      Documentation/gpio/
4589 F:      drivers/gpio/
4590 F:      include/linux/gpio/
4591 F:      include/linux/gpio.h
4592 F:      include/asm-generic/gpio.h
4593
4594 GRE DEMULTIPLEXER DRIVER
4595 M:      Dmitry Kozlov <xeb@mail.ru>
4596 L:      netdev@vger.kernel.org
4597 S:      Maintained
4598 F:      net/ipv4/gre_demux.c
4599 F:      net/ipv4/gre_offload.c
4600 F:      include/net/gre.h
4601
4602 GRETH 10/100/1G Ethernet MAC device driver
4603 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4604 L:      netdev@vger.kernel.org
4605 S:      Maintained
4606 F:      drivers/net/ethernet/aeroflex/
4607
4608 GSPCA FINEPIX SUBDRIVER
4609 M:      Frank Zago <frank@zago.net>
4610 L:      linux-media@vger.kernel.org
4611 T:      git git://linuxtv.org/media_tree.git
4612 S:      Maintained
4613 F:      drivers/media/usb/gspca/finepix.c
4614
4615 GSPCA GL860 SUBDRIVER
4616 M:      Olivier Lorin <o.lorin@laposte.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/gl860/
4621
4622 GSPCA M5602 SUBDRIVER
4623 M:      Erik Andren <erik.andren@gmail.com>
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/m5602/
4628
4629 GSPCA PAC207 SONIXB SUBDRIVER
4630 M:      Hans de Goede <hdegoede@redhat.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/pac207.c
4635
4636 GSPCA SN9C20X SUBDRIVER
4637 M:      Brian Johnson <brijohn@gmail.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/sn9c20x.c
4642
4643 GSPCA T613 SUBDRIVER
4644 M:      Leandro Costantino <lcostantino@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/t613.c
4649
4650 GSPCA USB WEBCAM DRIVER
4651 M:      Hans de Goede <hdegoede@redhat.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/
4656
4657 GUID PARTITION TABLE (GPT)
4658 M:      Davidlohr Bueso <dave@stgolabs.net>
4659 L:      linux-efi@vger.kernel.org
4660 S:      Maintained
4661 F:      block/partitions/efi.*
4662
4663 STK1160 USB VIDEO CAPTURE DRIVER
4664 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4665 L:      linux-media@vger.kernel.org
4666 T:      git git://linuxtv.org/media_tree.git
4667 S:      Maintained
4668 F:      drivers/media/usb/stk1160/
4669
4670 H8/300 ARCHITECTURE
4671 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4672 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4673 W:      http://uclinux-h8.sourceforge.jp
4674 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4675 S:      Maintained
4676 F:      arch/h8300/
4677 F:      drivers/clocksource/h8300_*.c
4678 F:      drivers/clk/h8300/
4679 F:      drivers/irqchip/irq-renesas-h8*.c
4680
4681 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4682 M:      Frank Seidel <frank@f-seidel.de>
4683 L:      platform-driver-x86@vger.kernel.org
4684 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4685 S:      Maintained
4686 F:      drivers/platform/x86/hdaps.c
4687
4688 HDPVR USB VIDEO ENCODER DRIVER
4689 M:      Hans Verkuil <hverkuil@xs4all.nl>
4690 L:      linux-media@vger.kernel.org
4691 T:      git git://linuxtv.org/media_tree.git
4692 W:      http://linuxtv.org
4693 S:      Odd Fixes
4694 F:      drivers/media/usb/hdpvr/
4695
4696 HWPOISON MEMORY FAILURE HANDLING
4697 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4698 L:      linux-mm@kvack.org
4699 S:      Maintained
4700 F:      mm/memory-failure.c
4701 F:      mm/hwpoison-inject.c
4702
4703 HYPERVISOR VIRTUAL CONSOLE DRIVER
4704 L:      linuxppc-dev@lists.ozlabs.org
4705 S:      Odd Fixes
4706 F:      drivers/tty/hvc/
4707
4708 HACKRF MEDIA DRIVER
4709 M:      Antti Palosaari <crope@iki.fi>
4710 L:      linux-media@vger.kernel.org
4711 W:      http://linuxtv.org/
4712 W:      http://palosaari.fi/linux/
4713 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4714 T:      git git://linuxtv.org/anttip/media_tree.git
4715 S:      Maintained
4716 F:      drivers/media/usb/hackrf/
4717
4718 HARDWARE MONITORING
4719 M:      Jean Delvare <jdelvare@suse.com>
4720 M:      Guenter Roeck <linux@roeck-us.net>
4721 L:      lm-sensors@lm-sensors.org
4722 W:      http://www.lm-sensors.org/
4723 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4725 S:      Maintained
4726 F:      Documentation/hwmon/
4727 F:      drivers/hwmon/
4728 F:      include/linux/hwmon*.h
4729
4730 HARDWARE RANDOM NUMBER GENERATOR CORE
4731 M:      Matt Mackall <mpm@selenic.com>
4732 M:      Herbert Xu <herbert@gondor.apana.org.au>
4733 L:      linux-crypto@vger.kernel.org
4734 S:      Odd fixes
4735 F:      Documentation/hw_random.txt
4736 F:      drivers/char/hw_random/
4737 F:      include/linux/hw_random.h
4738
4739 HARDWARE SPINLOCK CORE
4740 M:      Ohad Ben-Cohen <ohad@wizery.com>
4741 S:      Maintained
4742 F:      Documentation/hwspinlock.txt
4743 F:      drivers/hwspinlock/hwspinlock_*
4744 F:      include/linux/hwspinlock.h
4745
4746 HARMONY SOUND DRIVER
4747 L:      linux-parisc@vger.kernel.org
4748 S:      Maintained
4749 F:      sound/parisc/harmony.*
4750
4751 HD29L2 MEDIA DRIVER
4752 M:      Antti Palosaari <crope@iki.fi>
4753 L:      linux-media@vger.kernel.org
4754 W:      http://linuxtv.org/
4755 W:      http://palosaari.fi/linux/
4756 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4757 T:      git git://linuxtv.org/anttip/media_tree.git
4758 S:      Maintained
4759 F:      drivers/media/dvb-frontends/hd29l2*
4760
4761 HEWLETT-PACKARD SMART2 RAID DRIVER
4762 L:      iss_storagedev@hp.com
4763 S:      Orphan
4764 F:      Documentation/blockdev/cpqarray.txt
4765 F:      drivers/block/cpqarray.*
4766
4767 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4768 M:      Don Brace <don.brace@pmcs.com>
4769 L:      iss_storagedev@hp.com
4770 L:      storagedev@pmcs.com
4771 L:      linux-scsi@vger.kernel.org
4772 S:      Supported
4773 F:      Documentation/scsi/hpsa.txt
4774 F:      drivers/scsi/hpsa*.[ch]
4775 F:      include/linux/cciss*.h
4776 F:      include/uapi/linux/cciss*.h
4777
4778 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4779 M:      Don Brace <don.brace@pmcs.com>
4780 L:      iss_storagedev@hp.com
4781 L:      storagedev@pmcs.com
4782 L:      linux-scsi@vger.kernel.org
4783 S:      Supported
4784 F:      Documentation/blockdev/cciss.txt
4785 F:      drivers/block/cciss*
4786 F:      include/linux/cciss_ioctl.h
4787 F:      include/uapi/linux/cciss_ioctl.h
4788
4789 HFS FILESYSTEM
4790 L:      linux-fsdevel@vger.kernel.org
4791 S:      Orphan
4792 F:      Documentation/filesystems/hfs.txt
4793 F:      fs/hfs/
4794
4795 HFSPLUS FILESYSTEM
4796 L:      linux-fsdevel@vger.kernel.org
4797 S:      Orphan
4798 F:      Documentation/filesystems/hfsplus.txt
4799 F:      fs/hfsplus/
4800
4801 HGA FRAMEBUFFER DRIVER
4802 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4803 L:      linux-nvidia@lists.surfsouth.com
4804 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4805 S:      Maintained
4806 F:      drivers/video/fbdev/hgafb.c
4807
4808 HIBERNATION (aka Software Suspend, aka swsusp)
4809 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4810 M:      Pavel Machek <pavel@ucw.cz>
4811 L:      linux-pm@vger.kernel.org
4812 S:      Supported
4813 F:      arch/x86/power/
4814 F:      drivers/base/power/
4815 F:      kernel/power/
4816 F:      include/linux/suspend.h
4817 F:      include/linux/freezer.h
4818 F:      include/linux/pm.h
4819 F:      arch/*/include/asm/suspend*.h
4820
4821 HID CORE LAYER
4822 M:      Jiri Kosina <jkosina@suse.com>
4823 L:      linux-input@vger.kernel.org
4824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4825 S:      Maintained
4826 F:      drivers/hid/
4827 F:      include/linux/hid*
4828 F:      include/uapi/linux/hid*
4829
4830 HID SENSOR HUB DRIVERS
4831 M:      Jiri Kosina <jkosina@suse.com>
4832 M:      Jonathan Cameron <jic23@kernel.org>
4833 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4834 L:      linux-input@vger.kernel.org
4835 L:      linux-iio@vger.kernel.org
4836 S:      Maintained
4837 F:      Documentation/hid/hid-sensor*
4838 F:      drivers/hid/hid-sensor-*
4839 F:      drivers/iio/*/hid-*
4840 F:      include/linux/hid-sensor-*
4841
4842 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4843 M:      Thomas Gleixner <tglx@linutronix.de>
4844 L:      linux-kernel@vger.kernel.org
4845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4846 S:      Maintained
4847 F:      Documentation/timers/
4848 F:      kernel/time/hrtimer.c
4849 F:      kernel/time/clockevents.c
4850 F:      kernel/time/tick*.*
4851 F:      kernel/time/timer_*.c
4852 F:      include/linux/clockchips.h
4853 F:      include/linux/hrtimer.h
4854
4855 HIGH-SPEED SCC DRIVER FOR AX.25
4856 L:      linux-hams@vger.kernel.org
4857 S:      Orphan
4858 F:      drivers/net/hamradio/dmascc.c
4859 F:      drivers/net/hamradio/scc.c
4860
4861 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4862 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4863 W:      http://www.highpoint-tech.com
4864 S:      Supported
4865 F:      Documentation/scsi/hptiop.txt
4866 F:      drivers/scsi/hptiop.c
4867
4868 HIPPI
4869 M:      Jes Sorensen <jes@trained-monkey.org>
4870 L:      linux-hippi@sunsite.dk
4871 S:      Maintained
4872 F:      include/linux/hippidevice.h
4873 F:      include/uapi/linux/if_hippi.h
4874 F:      net/802/hippi.c
4875 F:      drivers/net/hippi/
4876
4877 HOST AP DRIVER
4878 M:      Jouni Malinen <j@w1.fi>
4879 L:      hostap@shmoo.com (subscribers-only)
4880 L:      linux-wireless@vger.kernel.org
4881 W:      http://hostap.epitest.fi/
4882 S:      Maintained
4883 F:      drivers/net/wireless/hostap/
4884
4885 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4886 L:      platform-driver-x86@vger.kernel.org
4887 S:      Orphan
4888 F:      drivers/platform/x86/tc1100-wmi.c
4889
4890 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4891 M:      Jaroslav Kysela <perex@perex.cz>
4892 S:      Maintained
4893 F:      drivers/net/ethernet/hp/hp100.*
4894
4895 HPET:   High Precision Event Timers driver
4896 M:      Clemens Ladisch <clemens@ladisch.de>
4897 S:      Maintained
4898 F:      Documentation/timers/hpet.txt
4899 F:      drivers/char/hpet.c
4900 F:      include/linux/hpet.h
4901 F:      include/uapi/linux/hpet.h
4902
4903 HPET:   x86
4904 S:      Orphan
4905 F:      arch/x86/kernel/hpet.c
4906 F:      arch/x86/include/asm/hpet.h
4907
4908 HPFS FILESYSTEM
4909 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4910 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4911 S:      Maintained
4912 F:      fs/hpfs/
4913
4914 HSI SUBSYSTEM
4915 M:      Sebastian Reichel <sre@kernel.org>
4916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4917 S:      Maintained
4918 F:      Documentation/ABI/testing/sysfs-bus-hsi
4919 F:      Documentation/hsi.txt
4920 F:      drivers/hsi/
4921 F:      include/linux/hsi/
4922 F:      include/uapi/linux/hsi/
4923
4924 HSO 3G MODEM DRIVER
4925 M:      Jan Dumon <j.dumon@option.com>
4926 W:      http://www.pharscape.org
4927 S:      Maintained
4928 F:      drivers/net/usb/hso.c
4929
4930 HSR NETWORK PROTOCOL
4931 M:      Arvid Brodin <arvid.brodin@alten.se>
4932 L:      netdev@vger.kernel.org
4933 S:      Maintained
4934 F:      net/hsr/
4935
4936 HTCPEN TOUCHSCREEN DRIVER
4937 M:      Pau Oliva Fora <pof@eslack.org>
4938 L:      linux-input@vger.kernel.org
4939 S:      Maintained
4940 F:      drivers/input/touchscreen/htcpen.c
4941
4942 HUGETLB FILESYSTEM
4943 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
4944 S:      Maintained
4945 F:      fs/hugetlbfs/
4946
4947 Hyper-V CORE AND DRIVERS
4948 M:      "K. Y. Srinivasan" <kys@microsoft.com>
4949 M:      Haiyang Zhang <haiyangz@microsoft.com>
4950 L:      devel@linuxdriverproject.org
4951 S:      Maintained
4952 F:      arch/x86/include/asm/mshyperv.h
4953 F:      arch/x86/include/uapi/asm/hyperv.h
4954 F:      arch/x86/kernel/cpu/mshyperv.c
4955 F:      drivers/hid/hid-hyperv.c
4956 F:      drivers/hv/
4957 F:      drivers/input/serio/hyperv-keyboard.c
4958 F:      drivers/net/hyperv/
4959 F:      drivers/scsi/storvsc_drv.c
4960 F:      drivers/video/fbdev/hyperv_fb.c
4961 F:      include/linux/hyperv.h
4962 F:      tools/hv/
4963
4964 I2C OVER PARALLEL PORT
4965 M:      Jean Delvare <jdelvare@suse.com>
4966 L:      linux-i2c@vger.kernel.org
4967 S:      Maintained
4968 F:      Documentation/i2c/busses/i2c-parport
4969 F:      Documentation/i2c/busses/i2c-parport-light
4970 F:      drivers/i2c/busses/i2c-parport.c
4971 F:      drivers/i2c/busses/i2c-parport-light.c
4972
4973 I2C/SMBUS CONTROLLER DRIVERS FOR PC
4974 M:      Jean Delvare <jdelvare@suse.com>
4975 L:      linux-i2c@vger.kernel.org
4976 S:      Maintained
4977 F:      Documentation/i2c/busses/i2c-ali1535
4978 F:      Documentation/i2c/busses/i2c-ali1563
4979 F:      Documentation/i2c/busses/i2c-ali15x3
4980 F:      Documentation/i2c/busses/i2c-amd756
4981 F:      Documentation/i2c/busses/i2c-amd8111
4982 F:      Documentation/i2c/busses/i2c-i801
4983 F:      Documentation/i2c/busses/i2c-nforce2
4984 F:      Documentation/i2c/busses/i2c-piix4
4985 F:      Documentation/i2c/busses/i2c-sis5595
4986 F:      Documentation/i2c/busses/i2c-sis630
4987 F:      Documentation/i2c/busses/i2c-sis96x
4988 F:      Documentation/i2c/busses/i2c-via
4989 F:      Documentation/i2c/busses/i2c-viapro
4990 F:      drivers/i2c/busses/i2c-ali1535.c
4991 F:      drivers/i2c/busses/i2c-ali1563.c
4992 F:      drivers/i2c/busses/i2c-ali15x3.c
4993 F:      drivers/i2c/busses/i2c-amd756.c
4994 F:      drivers/i2c/busses/i2c-amd756-s4882.c
4995 F:      drivers/i2c/busses/i2c-amd8111.c
4996 F:      drivers/i2c/busses/i2c-i801.c
4997 F:      drivers/i2c/busses/i2c-isch.c
4998 F:      drivers/i2c/busses/i2c-nforce2.c
4999 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5000 F:      drivers/i2c/busses/i2c-piix4.c
5001 F:      drivers/i2c/busses/i2c-sis5595.c
5002 F:      drivers/i2c/busses/i2c-sis630.c
5003 F:      drivers/i2c/busses/i2c-sis96x.c
5004 F:      drivers/i2c/busses/i2c-via.c
5005 F:      drivers/i2c/busses/i2c-viapro.c
5006
5007 I2C/SMBUS ISMT DRIVER
5008 M:      Seth Heasley <seth.heasley@intel.com>
5009 M:      Neil Horman <nhorman@tuxdriver.com>
5010 L:      linux-i2c@vger.kernel.org
5011 F:      drivers/i2c/busses/i2c-ismt.c
5012 F:      Documentation/i2c/busses/i2c-ismt
5013
5014 I2C/SMBUS STUB DRIVER
5015 M:      Jean Delvare <jdelvare@suse.com>
5016 L:      linux-i2c@vger.kernel.org
5017 S:      Maintained
5018 F:      drivers/i2c/i2c-stub.c
5019
5020 I2C SUBSYSTEM
5021 M:      Wolfram Sang <wsa@the-dreams.de>
5022 L:      linux-i2c@vger.kernel.org
5023 W:      https://i2c.wiki.kernel.org/
5024 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5026 S:      Maintained
5027 F:      Documentation/devicetree/bindings/i2c/
5028 F:      Documentation/i2c/
5029 F:      drivers/i2c/
5030 F:      include/linux/i2c.h
5031 F:      include/linux/i2c-*.h
5032 F:      include/uapi/linux/i2c.h
5033 F:      include/uapi/linux/i2c-*.h
5034
5035 I2C ACPI SUPPORT
5036 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5037 L:      linux-i2c@vger.kernel.org
5038 L:      linux-acpi@vger.kernel.org
5039 S:      Maintained
5040
5041 I2C-TAOS-EVM DRIVER
5042 M:      Jean Delvare <jdelvare@suse.com>
5043 L:      linux-i2c@vger.kernel.org
5044 S:      Maintained
5045 F:      Documentation/i2c/busses/i2c-taos-evm
5046 F:      drivers/i2c/busses/i2c-taos-evm.c
5047
5048 I2C-TINY-USB DRIVER
5049 M:      Till Harbaum <till@harbaum.org>
5050 L:      linux-i2c@vger.kernel.org
5051 W:      http://www.harbaum.org/till/i2c_tiny_usb
5052 S:      Maintained
5053 F:      drivers/i2c/busses/i2c-tiny-usb.c
5054
5055 i386 BOOT CODE
5056 M:      "H. Peter Anvin" <hpa@zytor.com>
5057 S:      Maintained
5058 F:      arch/x86/boot/
5059
5060 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5061 M:      "H. Peter Anvin" <hpa@zytor.com>
5062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5063 S:      Maintained
5064
5065 IA64 (Itanium) PLATFORM
5066 M:      Tony Luck <tony.luck@intel.com>
5067 M:      Fenghua Yu <fenghua.yu@intel.com>
5068 L:      linux-ia64@vger.kernel.org
5069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5070 S:      Maintained
5071 F:      arch/ia64/
5072
5073 IBM Power in-Nest Crypto Acceleration
5074 M:      Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
5075 M:      Fionnuala Gunter <fin@linux.vnet.ibm.com>
5076 L:      linux-crypto@vger.kernel.org
5077 S:      Supported
5078 F:      drivers/crypto/nx/Makefile
5079 F:      drivers/crypto/nx/Kconfig
5080 F:      drivers/crypto/nx/nx-aes*
5081 F:      drivers/crypto/nx/nx-sha*
5082 F:      drivers/crypto/nx/nx.*
5083 F:      drivers/crypto/nx/nx_csbcpb.h
5084 F:      drivers/crypto/nx/nx_debugfs.h
5085
5086 IBM Power 842 compression accelerator
5087 M:      Dan Streetman <ddstreet@us.ibm.com>
5088 S:      Supported
5089 F:      drivers/crypto/nx/Makefile
5090 F:      drivers/crypto/nx/Kconfig
5091 F:      drivers/crypto/nx/nx-842*
5092 F:      include/linux/sw842.h
5093 F:      crypto/842.c
5094 F:      lib/842/
5095
5096 IBM Power Linux RAID adapter
5097 M:      Brian King <brking@us.ibm.com>
5098 S:      Supported
5099 F:      drivers/scsi/ipr.*
5100
5101 IBM Power Virtual Ethernet Device Driver
5102 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5103 L:      netdev@vger.kernel.org
5104 S:      Supported
5105 F:      drivers/net/ethernet/ibm/ibmveth.*
5106
5107 IBM Power Virtual SCSI Device Drivers
5108 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5109 L:      linux-scsi@vger.kernel.org
5110 S:      Supported
5111 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5112 F:      drivers/scsi/ibmvscsi/viosrp.h
5113
5114 IBM Power Virtual FC Device Drivers
5115 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5116 L:      linux-scsi@vger.kernel.org
5117 S:      Supported
5118 F:      drivers/scsi/ibmvscsi/ibmvfc*
5119
5120 IBM ServeRAID RAID DRIVER
5121 S:      Orphan
5122 F:      drivers/scsi/ips.*
5123
5124 ICH LPC AND GPIO DRIVER
5125 M:      Peter Tyser <ptyser@xes-inc.com>
5126 S:      Maintained
5127 F:      drivers/mfd/lpc_ich.c
5128 F:      drivers/gpio/gpio-ich.c
5129
5130 IDE SUBSYSTEM
5131 M:      "David S. Miller" <davem@davemloft.net>
5132 L:      linux-ide@vger.kernel.org
5133 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5135 S:      Maintained
5136 F:      Documentation/ide/
5137 F:      drivers/ide/
5138 F:      include/linux/ide.h
5139
5140 IDEAPAD LAPTOP EXTRAS DRIVER
5141 M:      Ike Panhc <ike.pan@canonical.com>
5142 L:      platform-driver-x86@vger.kernel.org
5143 W:      http://launchpad.net/ideapad-laptop
5144 S:      Maintained
5145 F:      drivers/platform/x86/ideapad-laptop.c
5146
5147 IDEAPAD LAPTOP SLIDEBAR DRIVER
5148 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5149 L:      linux-input@vger.kernel.org
5150 W:      https://github.com/o2genum/ideapad-slidebar
5151 S:      Maintained
5152 F:      drivers/input/misc/ideapad_slidebar.c
5153
5154 IDE/ATAPI DRIVERS
5155 M:      Borislav Petkov <bp@alien8.de>
5156 L:      linux-ide@vger.kernel.org
5157 S:      Maintained
5158 F:      Documentation/cdrom/ide-cd
5159 F:      drivers/ide/ide-cd*
5160
5161 IDLE-I7300
5162 M:      Andy Henroid <andrew.d.henroid@intel.com>
5163 L:      linux-pm@vger.kernel.org
5164 S:      Supported
5165 F:      drivers/idle/i7300_idle.c
5166
5167 IEEE 802.15.4 SUBSYSTEM
5168 M:      Alexander Aring <alex.aring@gmail.com>
5169 L:      linux-wpan@vger.kernel.org
5170 W:      https://github.com/linux-wpan
5171 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5172 S:      Maintained
5173 F:      net/ieee802154/
5174 F:      net/mac802154/
5175 F:      drivers/net/ieee802154/
5176 F:      include/linux/nl802154.h
5177 F:      include/linux/ieee802154.h
5178 F:      include/net/nl802154.h
5179 F:      include/net/mac802154.h
5180 F:      include/net/af_ieee802154.h
5181 F:      include/net/cfg802154.h
5182 F:      include/net/ieee802154_netdev.h
5183 F:      Documentation/networking/ieee802154.txt
5184
5185 IGORPLUG-USB IR RECEIVER
5186 M:      Sean Young <sean@mess.org>
5187 L:      linux-media@vger.kernel.org
5188 S:      Maintained
5189 F:      drivers/media/rc/igorplugusb.c
5190
5191 IGUANAWORKS USB IR TRANSCEIVER
5192 M:      Sean Young <sean@mess.org>
5193 L:      linux-media@vger.kernel.org
5194 S:      Maintained
5195 F:      drivers/media/rc/iguanair.c
5196
5197 IIO SUBSYSTEM AND DRIVERS
5198 M:      Jonathan Cameron <jic23@kernel.org>
5199 R:      Hartmut Knaack <knaack.h@gmx.de>
5200 R:      Lars-Peter Clausen <lars@metafoo.de>
5201 R:      Peter Meerwald <pmeerw@pmeerw.net>
5202 L:      linux-iio@vger.kernel.org
5203 S:      Maintained
5204 F:      drivers/iio/
5205 F:      drivers/staging/iio/
5206 F:      include/linux/iio/
5207 F:      tools/iio/
5208
5209 IKANOS/ADI EAGLE ADSL USB DRIVER
5210 M:      Matthieu Castet <castet.matthieu@free.fr>
5211 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5212 S:      Maintained
5213 F:      drivers/usb/atm/ueagle-atm.c
5214
5215 INA209 HARDWARE MONITOR DRIVER
5216 M:      Guenter Roeck <linux@roeck-us.net>
5217 L:      lm-sensors@lm-sensors.org
5218 S:      Maintained
5219 F:      Documentation/hwmon/ina209
5220 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5221 F:      drivers/hwmon/ina209.c
5222
5223 INA2XX HARDWARE MONITOR DRIVER
5224 M:      Guenter Roeck <linux@roeck-us.net>
5225 L:      lm-sensors@lm-sensors.org
5226 S:      Maintained
5227 F:      Documentation/hwmon/ina2xx
5228 F:      drivers/hwmon/ina2xx.c
5229 F:      include/linux/platform_data/ina2xx.h
5230
5231 INDUSTRY PACK SUBSYSTEM (IPACK)
5232 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5233 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5234 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5235 L:      industrypack-devel@lists.sourceforge.net
5236 W:      http://industrypack.sourceforge.net
5237 S:      Maintained
5238 F:      drivers/ipack/
5239
5240 INGENIC JZ4780 DMA Driver
5241 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5242 S:      Maintained
5243 F:      drivers/dma/dma-jz4780.c
5244
5245 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5246 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5247 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5248 L:      linux-ima-devel@lists.sourceforge.net
5249 L:      linux-ima-user@lists.sourceforge.net
5250 L:      linux-security-module@vger.kernel.org
5251 S:      Supported
5252 F:      security/integrity/ima/
5253
5254 IMGTEC IR DECODER DRIVER
5255 M:      James Hogan <james.hogan@imgtec.com>
5256 S:      Maintained
5257 F:      drivers/media/rc/img-ir/
5258
5259 IMS TWINTURBO FRAMEBUFFER DRIVER
5260 L:      linux-fbdev@vger.kernel.org
5261 S:      Orphan
5262 F:      drivers/video/fbdev/imsttfb.c
5263
5264 INFINIBAND SUBSYSTEM
5265 M:      Doug Ledford <dledford@redhat.com>
5266 M:      Sean Hefty <sean.hefty@intel.com>
5267 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5268 L:      linux-rdma@vger.kernel.org
5269 W:      http://www.openfabrics.org/
5270 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5272 S:      Supported
5273 F:      Documentation/infiniband/
5274 F:      drivers/infiniband/
5275 F:      include/uapi/linux/if_infiniband.h
5276 F:      include/uapi/rdma/
5277 F:      include/rdma/
5278
5279 INOTIFY
5280 M:      John McCutchan <john@johnmccutchan.com>
5281 M:      Robert Love <rlove@rlove.org>
5282 M:      Eric Paris <eparis@parisplace.org>
5283 S:      Maintained
5284 F:      Documentation/filesystems/inotify.txt
5285 F:      fs/notify/inotify/
5286 F:      include/linux/inotify.h
5287 F:      include/uapi/linux/inotify.h
5288
5289 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5290 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5291 L:      linux-input@vger.kernel.org
5292 Q:      http://patchwork.kernel.org/project/linux-input/list/
5293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5294 S:      Maintained
5295 F:      drivers/input/
5296 F:      include/linux/input.h
5297 F:      include/uapi/linux/input.h
5298 F:      include/linux/input/
5299
5300 INPUT MULTITOUCH (MT) PROTOCOL
5301 M:      Henrik Rydberg <rydberg@bitmath.org>
5302 L:      linux-input@vger.kernel.org
5303 S:      Odd fixes
5304 F:      Documentation/input/multi-touch-protocol.txt
5305 F:      drivers/input/input-mt.c
5306 K:      \b(ABS|SYN)_MT_
5307
5308 INTEL ASoC BDW/HSW DRIVERS
5309 M:      Jie Yang <yang.jie@linux.intel.com>
5310 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5311 S:      Supported
5312 F:      sound/soc/intel/common/sst-dsp*
5313 F:      sound/soc/intel/common/sst-firmware.c
5314 F:      sound/soc/intel/boards/broadwell.c
5315 F:      sound/soc/intel/haswell/
5316
5317 INTEL C600 SERIES SAS CONTROLLER DRIVER
5318 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5319 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5320 L:      linux-scsi@vger.kernel.org
5321 T:      git git://git.code.sf.net/p/intel-sas/isci
5322 S:      Supported
5323 F:      drivers/scsi/isci/
5324
5325 INTEL IDLE DRIVER
5326 M:      Len Brown <lenb@kernel.org>
5327 L:      linux-pm@vger.kernel.org
5328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5329 S:      Supported
5330 F:      drivers/idle/intel_idle.c
5331
5332 INTEL PSTATE DRIVER
5333 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5334 L:      linux-pm@vger.kernel.org
5335 S:      Supported
5336 F:      drivers/cpufreq/intel_pstate.c
5337
5338 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5339 M:      Maik Broemme <mbroemme@plusserver.de>
5340 L:      linux-fbdev@vger.kernel.org
5341 S:      Maintained
5342 F:      Documentation/fb/intelfb.txt
5343 F:      drivers/video/fbdev/intelfb/
5344
5345 INTEL 810/815 FRAMEBUFFER DRIVER
5346 M:      Antonino Daplas <adaplas@gmail.com>
5347 L:      linux-fbdev@vger.kernel.org
5348 S:      Maintained
5349 F:      drivers/video/fbdev/i810/
5350
5351 INTEL MENLOW THERMAL DRIVER
5352 M:      Sujith Thomas <sujith.thomas@intel.com>
5353 L:      platform-driver-x86@vger.kernel.org
5354 W:      https://01.org/linux-acpi
5355 S:      Supported
5356 F:      drivers/platform/x86/intel_menlow.c
5357
5358 INTEL IA32 MICROCODE UPDATE SUPPORT
5359 M:      Borislav Petkov <bp@alien8.de>
5360 S:      Maintained
5361 F:      arch/x86/kernel/cpu/microcode/core*
5362 F:      arch/x86/kernel/cpu/microcode/intel*
5363
5364 INTEL I/OAT DMA DRIVER
5365 M:      Dave Jiang <dave.jiang@intel.com>
5366 R:      Dan Williams <dan.j.williams@intel.com>
5367 L:      dmaengine@vger.kernel.org
5368 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5369 S:      Supported
5370 F:      drivers/dma/ioat*
5371
5372 INTEL IOMMU (VT-d)
5373 M:      David Woodhouse <dwmw2@infradead.org>
5374 L:      iommu@lists.linux-foundation.org
5375 T:      git git://git.infradead.org/iommu-2.6.git
5376 S:      Supported
5377 F:      drivers/iommu/intel-iommu.c
5378 F:      include/linux/intel-iommu.h
5379
5380 INTEL IOP-ADMA DMA DRIVER
5381 R:      Dan Williams <dan.j.williams@intel.com>
5382 S:      Odd fixes
5383 F:      drivers/dma/iop-adma.c
5384
5385 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5386 M:      Krzysztof Halasa <khalasa@piap.pl>
5387 S:      Maintained
5388 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5389 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5390 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5391 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5392 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5393 F:      drivers/net/wan/ixp4xx_hss.c
5394
5395 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5396 M:      Deepak Saxena <dsaxena@plexity.net>
5397 S:      Maintained
5398 F:      drivers/char/hw_random/ixp4xx-rng.c
5399
5400 INTEL ETHERNET DRIVERS
5401 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5402 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5403 R:      Shannon Nelson <shannon.nelson@intel.com>
5404 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5405 R:      Don Skidmore <donald.c.skidmore@intel.com>
5406 R:      Matthew Vick <matthew.vick@intel.com>
5407 R:      John Ronciak <john.ronciak@intel.com>
5408 R:      Mitch Williams <mitch.a.williams@intel.com>
5409 L:      intel-wired-lan@lists.osuosl.org
5410 W:      http://www.intel.com/support/feedback.htm
5411 W:      http://e1000.sourceforge.net/
5412 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5415 S:      Supported
5416 F:      Documentation/networking/e100.txt
5417 F:      Documentation/networking/e1000.txt
5418 F:      Documentation/networking/e1000e.txt
5419 F:      Documentation/networking/igb.txt
5420 F:      Documentation/networking/igbvf.txt
5421 F:      Documentation/networking/ixgb.txt
5422 F:      Documentation/networking/ixgbe.txt
5423 F:      Documentation/networking/ixgbevf.txt
5424 F:      Documentation/networking/i40e.txt
5425 F:      Documentation/networking/i40evf.txt
5426 F:      drivers/net/ethernet/intel/
5427 F:      drivers/net/ethernet/intel/*/
5428
5429 INTEL-MID GPIO DRIVER
5430 M:      David Cohen <david.a.cohen@linux.intel.com>
5431 L:      linux-gpio@vger.kernel.org
5432 S:      Maintained
5433 F:      drivers/gpio/gpio-intel-mid.c
5434
5435 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5436 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5437 L:      linux-wireless@vger.kernel.org
5438 S:      Maintained
5439 F:      Documentation/networking/README.ipw2100
5440 F:      Documentation/networking/README.ipw2200
5441 F:      drivers/net/wireless/ipw2x00/
5442
5443 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5444 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5445 M:      Gang Wei <gang.wei@intel.com>
5446 M:      Shane Wang <shane.wang@intel.com>
5447 L:      tboot-devel@lists.sourceforge.net
5448 W:      http://tboot.sourceforge.net
5449 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5450 S:      Supported
5451 F:      Documentation/intel_txt.txt
5452 F:      include/linux/tboot.h
5453 F:      arch/x86/kernel/tboot.c
5454
5455 INTEL WIRELESS WIMAX CONNECTION 2400
5456 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5457 M:      linux-wimax@intel.com
5458 L:      wimax@linuxwimax.org (subscribers-only)
5459 S:      Supported
5460 W:      http://linuxwimax.org
5461 F:      Documentation/wimax/README.i2400m
5462 F:      drivers/net/wimax/i2400m/
5463 F:      include/uapi/linux/wimax/i2400m.h
5464
5465 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5466 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5467 L:      linux-wireless@vger.kernel.org
5468 S:      Supported
5469 F:      drivers/net/wireless/iwlegacy/
5470
5471 INTEL WIRELESS WIFI LINK (iwlwifi)
5472 M:      Johannes Berg <johannes.berg@intel.com>
5473 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5474 M:      Intel Linux Wireless <ilw@linux.intel.com>
5475 L:      linux-wireless@vger.kernel.org
5476 W:      http://intellinuxwireless.org
5477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5478 S:      Supported
5479 F:      drivers/net/wireless/iwlwifi/
5480
5481 INTEL MANAGEMENT ENGINE (mei)
5482 M:      Tomas Winkler <tomas.winkler@intel.com>
5483 L:      linux-kernel@vger.kernel.org
5484 S:      Supported
5485 F:      include/uapi/linux/mei.h
5486 F:      include/linux/mei_cl_bus.h
5487 F:      drivers/misc/mei/*
5488 F:      Documentation/misc-devices/mei/*
5489
5490 INTEL PMC IPC DRIVER
5491 M:      Zha Qipeng<qipeng.zha@intel.com>
5492 L:      platform-driver-x86@vger.kernel.org
5493 S:      Maintained
5494 F:      drivers/platform/x86/intel_pmc_ipc.c
5495 F:      arch/x86/include/asm/intel_pmc_ipc.h
5496
5497 IOC3 ETHERNET DRIVER
5498 M:      Ralf Baechle <ralf@linux-mips.org>
5499 L:      linux-mips@linux-mips.org
5500 S:      Maintained
5501 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5502
5503 IOC3 SERIAL DRIVER
5504 M:      Pat Gefre <pfg@sgi.com>
5505 L:      linux-serial@vger.kernel.org
5506 S:      Maintained
5507 F:      drivers/tty/serial/ioc3_serial.c
5508
5509 IOMMU DRIVERS
5510 M:      Joerg Roedel <joro@8bytes.org>
5511 L:      iommu@lists.linux-foundation.org
5512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5513 S:      Maintained
5514 F:      drivers/iommu/
5515
5516 IP MASQUERADING
5517 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5518 S:      Maintained
5519 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5520
5521 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5522 M:      Francois Romieu <romieu@fr.zoreil.com>
5523 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5524 L:      netdev@vger.kernel.org
5525 S:      Maintained
5526 F:      drivers/net/ethernet/icplus/ipg.*
5527
5528 IPATH DRIVER
5529 M:      Mike Marciniszyn <infinipath@intel.com>
5530 L:      linux-rdma@vger.kernel.org
5531 S:      Maintained
5532 F:      drivers/infiniband/hw/ipath/
5533
5534 IPMI SUBSYSTEM
5535 M:      Corey Minyard <minyard@acm.org>
5536 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5537 W:      http://openipmi.sourceforge.net/
5538 S:      Supported
5539 F:      Documentation/IPMI.txt
5540 F:      drivers/char/ipmi/
5541 F:      include/linux/ipmi*
5542 F:      include/uapi/linux/ipmi*
5543
5544 QCOM AUDIO (ASoC) DRIVERS
5545 M:      Patrick Lai <plai@codeaurora.org>
5546 M:      Banajit Goswami <bgoswami@codeaurora.org>
5547 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5548 S:      Supported
5549 F:      sound/soc/qcom/
5550
5551 IPS SCSI RAID DRIVER
5552 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5553 L:      linux-scsi@vger.kernel.org
5554 W:      http://www.adaptec.com/
5555 S:      Maintained
5556 F:      drivers/scsi/ips*
5557
5558 IPVS
5559 M:      Wensong Zhang <wensong@linux-vs.org>
5560 M:      Simon Horman <horms@verge.net.au>
5561 M:      Julian Anastasov <ja@ssi.bg>
5562 L:      netdev@vger.kernel.org
5563 L:      lvs-devel@vger.kernel.org
5564 S:      Maintained
5565 F:      Documentation/networking/ipvs-sysctl.txt
5566 F:      include/net/ip_vs.h
5567 F:      include/uapi/linux/ip_vs.h
5568 F:      net/netfilter/ipvs/
5569
5570 IPWIRELESS DRIVER
5571 M:      Jiri Kosina <jkosina@suse.com>
5572 M:      David Sterba <dsterba@suse.com>
5573 S:      Odd Fixes
5574 F:      drivers/tty/ipwireless/
5575
5576 IPX NETWORK LAYER
5577 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5578 L:      netdev@vger.kernel.org
5579 S:      Maintained
5580 F:      include/net/ipx.h
5581 F:      include/uapi/linux/ipx.h
5582 F:      net/ipx/
5583
5584 IRDA SUBSYSTEM
5585 M:      Samuel Ortiz <samuel@sortiz.org>
5586 L:      irda-users@lists.sourceforge.net (subscribers-only)
5587 L:      netdev@vger.kernel.org
5588 W:      http://irda.sourceforge.net/
5589 S:      Maintained
5590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5591 F:      Documentation/networking/irda.txt
5592 F:      drivers/net/irda/
5593 F:      include/net/irda/
5594 F:      net/irda/
5595
5596 IRQ SUBSYSTEM
5597 M:      Thomas Gleixner <tglx@linutronix.de>
5598 L:      linux-kernel@vger.kernel.org
5599 S:      Maintained
5600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5601 F:      kernel/irq/
5602
5603 IRQCHIP DRIVERS
5604 M:      Thomas Gleixner <tglx@linutronix.de>
5605 M:      Jason Cooper <jason@lakedaemon.net>
5606 L:      linux-kernel@vger.kernel.org
5607 S:      Maintained
5608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5609 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5610 F:      Documentation/devicetree/bindings/interrupt-controller/
5611 F:      drivers/irqchip/
5612
5613 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5614 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5615 S:      Maintained
5616 F:      Documentation/IRQ-domain.txt
5617 F:      include/linux/irqdomain.h
5618 F:      kernel/irq/irqdomain.c
5619
5620 ISAPNP
5621 M:      Jaroslav Kysela <perex@perex.cz>
5622 S:      Maintained
5623 F:      Documentation/isapnp.txt
5624 F:      drivers/pnp/isapnp/
5625 F:      include/linux/isapnp.h
5626
5627 ISA RADIO MODULE
5628 M:      Hans Verkuil <hverkuil@xs4all.nl>
5629 L:      linux-media@vger.kernel.org
5630 T:      git git://linuxtv.org/media_tree.git
5631 W:      http://linuxtv.org
5632 S:      Maintained
5633 F:      drivers/media/radio/radio-isa*
5634
5635 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5636 M:      Peter Jones <pjones@redhat.com>
5637 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5638 S:      Maintained
5639 F:      drivers/firmware/iscsi_ibft*
5640
5641 ISCSI
5642 M:      Mike Christie <michaelc@cs.wisc.edu>
5643 L:      open-iscsi@googlegroups.com
5644 W:      www.open-iscsi.org
5645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5646 S:      Maintained
5647 F:      drivers/scsi/*iscsi*
5648 F:      include/scsi/*iscsi*
5649
5650 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5651 M:      Or Gerlitz <ogerlitz@mellanox.com>
5652 M:      Sagi Grimberg <sagig@mellanox.com>
5653 M:      Roi Dayan <roid@mellanox.com>
5654 L:      linux-rdma@vger.kernel.org
5655 S:      Supported
5656 W:      http://www.openfabrics.org
5657 W:      www.open-iscsi.org
5658 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5659 F:      drivers/infiniband/ulp/iser/
5660
5661 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5662 M:      Sagi Grimberg <sagig@mellanox.com>
5663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5664 L:      linux-rdma@vger.kernel.org
5665 L:      target-devel@vger.kernel.org
5666 S:      Supported
5667 W:      http://www.linux-iscsi.org
5668 F:      drivers/infiniband/ulp/isert
5669
5670 ISDN SUBSYSTEM
5671 M:      Karsten Keil <isdn@linux-pingi.de>
5672 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5673 L:      netdev@vger.kernel.org
5674 W:      http://www.isdn4linux.de
5675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5676 S:      Maintained
5677 F:      Documentation/isdn/
5678 F:      drivers/isdn/
5679 F:      include/linux/isdn.h
5680 F:      include/linux/isdn/
5681 F:      include/uapi/linux/isdn.h
5682 F:      include/uapi/linux/isdn/
5683
5684 ISDN SUBSYSTEM (Eicon active card driver)
5685 M:      Armin Schindler <mac@melware.de>
5686 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5687 W:      http://www.melware.de
5688 S:      Maintained
5689 F:      drivers/isdn/hardware/eicon/
5690
5691 IT87 HARDWARE MONITORING DRIVER
5692 M:      Jean Delvare <jdelvare@suse.com>
5693 L:      lm-sensors@lm-sensors.org
5694 S:      Maintained
5695 F:      Documentation/hwmon/it87
5696 F:      drivers/hwmon/it87.c
5697
5698 IT913X MEDIA DRIVER
5699 M:      Antti Palosaari <crope@iki.fi>
5700 L:      linux-media@vger.kernel.org
5701 W:      http://linuxtv.org/
5702 W:      http://palosaari.fi/linux/
5703 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5704 T:      git git://linuxtv.org/anttip/media_tree.git
5705 S:      Maintained
5706 F:      drivers/media/tuners/it913x*
5707
5708 IVTV VIDEO4LINUX DRIVER
5709 M:      Andy Walls <awalls@md.metrocast.net>
5710 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5711 L:      linux-media@vger.kernel.org
5712 T:      git git://linuxtv.org/media_tree.git
5713 W:      http://www.ivtvdriver.org
5714 S:      Maintained
5715 F:      Documentation/video4linux/*.ivtv
5716 F:      drivers/media/pci/ivtv/
5717 F:      include/uapi/linux/ivtv*
5718
5719 IX2505V MEDIA DRIVER
5720 M:      Malcolm Priestley <tvboxspy@gmail.com>
5721 L:      linux-media@vger.kernel.org
5722 W:      http://linuxtv.org/
5723 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5724 S:      Maintained
5725 F:      drivers/media/dvb-frontends/ix2505v*
5726
5727 JC42.4 TEMPERATURE SENSOR DRIVER
5728 M:      Guenter Roeck <linux@roeck-us.net>
5729 L:      lm-sensors@lm-sensors.org
5730 S:      Maintained
5731 F:      drivers/hwmon/jc42.c
5732 F:      Documentation/hwmon/jc42
5733
5734 JFS FILESYSTEM
5735 M:      Dave Kleikamp <shaggy@kernel.org>
5736 L:      jfs-discussion@lists.sourceforge.net
5737 W:      http://jfs.sourceforge.net/
5738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5739 S:      Maintained
5740 F:      Documentation/filesystems/jfs.txt
5741 F:      fs/jfs/
5742
5743 JME NETWORK DRIVER
5744 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5745 L:      netdev@vger.kernel.org
5746 S:      Maintained
5747 F:      drivers/net/ethernet/jme.*
5748
5749 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5750 M:      David Woodhouse <dwmw2@infradead.org>
5751 L:      linux-mtd@lists.infradead.org
5752 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5753 S:      Maintained
5754 F:      fs/jffs2/
5755 F:      include/uapi/linux/jffs2.h
5756
5757 JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
5758 M:      Andrew Morton <akpm@linux-foundation.org>
5759 M:      Jan Kara <jack@suse.com>
5760 L:      linux-ext4@vger.kernel.org
5761 S:      Maintained
5762 F:      fs/jbd/
5763 F:      include/linux/jbd.h
5764
5765 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5766 M:      "Theodore Ts'o" <tytso@mit.edu>
5767 L:      linux-ext4@vger.kernel.org
5768 S:      Maintained
5769 F:      fs/jbd2/
5770 F:      include/linux/jbd2.h
5771
5772 JSM Neo PCI based serial card
5773 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5774 L:      linux-serial@vger.kernel.org
5775 S:      Maintained
5776 F:      drivers/tty/serial/jsm/
5777
5778 K10TEMP HARDWARE MONITORING DRIVER
5779 M:      Clemens Ladisch <clemens@ladisch.de>
5780 L:      lm-sensors@lm-sensors.org
5781 S:      Maintained
5782 F:      Documentation/hwmon/k10temp
5783 F:      drivers/hwmon/k10temp.c
5784
5785 K8TEMP HARDWARE MONITORING DRIVER
5786 M:      Rudolf Marek <r.marek@assembler.cz>
5787 L:      lm-sensors@lm-sensors.org
5788 S:      Maintained
5789 F:      Documentation/hwmon/k8temp
5790 F:      drivers/hwmon/k8temp.c
5791
5792 KCONFIG
5793 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5794 L:      linux-kbuild@vger.kernel.org
5795 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5796 S:      Maintained
5797 F:      Documentation/kbuild/kconfig-language.txt
5798 F:      scripts/kconfig/
5799
5800 KDUMP
5801 M:      Vivek Goyal <vgoyal@redhat.com>
5802 M:      Haren Myneni <hbabu@us.ibm.com>
5803 L:      kexec@lists.infradead.org
5804 W:      http://lse.sourceforge.net/kdump/
5805 S:      Maintained
5806 F:      Documentation/kdump/
5807
5808 KEENE FM RADIO TRANSMITTER DRIVER
5809 M:      Hans Verkuil <hverkuil@xs4all.nl>
5810 L:      linux-media@vger.kernel.org
5811 T:      git git://linuxtv.org/media_tree.git
5812 W:      http://linuxtv.org
5813 S:      Maintained
5814 F:      drivers/media/radio/radio-keene*
5815
5816 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5817 M:      Ian Kent <raven@themaw.net>
5818 L:      autofs@vger.kernel.org
5819 S:      Maintained
5820 F:      fs/autofs4/
5821
5822 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5823 M:      Michal Marek <mmarek@suse.com>
5824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5826 L:      linux-kbuild@vger.kernel.org
5827 S:      Maintained
5828 F:      Documentation/kbuild/
5829 F:      Makefile
5830 F:      scripts/Makefile.*
5831 F:      scripts/basic/
5832 F:      scripts/mk*
5833 F:      scripts/package/
5834
5835 KERNEL JANITORS
5836 L:      kernel-janitors@vger.kernel.org
5837 W:      http://kernelnewbies.org/KernelJanitors
5838 S:      Odd Fixes
5839
5840 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5841 M:      "J. Bruce Fields" <bfields@fieldses.org>
5842 L:      linux-nfs@vger.kernel.org
5843 W:      http://nfs.sourceforge.net/
5844 S:      Supported
5845 F:      fs/nfsd/
5846 F:      include/uapi/linux/nfsd/
5847 F:      fs/lockd/
5848 F:      fs/nfs_common/
5849 F:      net/sunrpc/
5850 F:      include/linux/lockd/
5851 F:      include/linux/sunrpc/
5852 F:      include/uapi/linux/sunrpc/
5853
5854 KERNEL SELFTEST FRAMEWORK
5855 M:      Shuah Khan <shuahkh@osg.samsung.com>
5856 L:      linux-api@vger.kernel.org
5857 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5858 S:      Maintained
5859 F:      tools/testing/selftests
5860
5861 KERNEL VIRTUAL MACHINE (KVM)
5862 M:      Gleb Natapov <gleb@kernel.org>
5863 M:      Paolo Bonzini <pbonzini@redhat.com>
5864 L:      kvm@vger.kernel.org
5865 W:      http://www.linux-kvm.org
5866 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5867 S:      Supported
5868 F:      Documentation/*/kvm*.txt
5869 F:      Documentation/virtual/kvm/
5870 F:      arch/*/kvm/
5871 F:      arch/x86/kernel/kvm.c
5872 F:      arch/x86/kernel/kvmclock.c
5873 F:      arch/*/include/asm/kvm*
5874 F:      include/linux/kvm*
5875 F:      include/uapi/linux/kvm*
5876 F:      virt/kvm/
5877
5878 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5879 M:      Joerg Roedel <joro@8bytes.org>
5880 L:      kvm@vger.kernel.org
5881 W:      http://kvm.qumranet.com
5882 S:      Maintained
5883 F:      arch/x86/include/asm/svm.h
5884 F:      arch/x86/kvm/svm.c
5885
5886 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5887 M:      Alexander Graf <agraf@suse.com>
5888 L:      kvm-ppc@vger.kernel.org
5889 W:      http://kvm.qumranet.com
5890 T:      git git://github.com/agraf/linux-2.6.git
5891 S:      Supported
5892 F:      arch/powerpc/include/asm/kvm*
5893 F:      arch/powerpc/kvm/
5894
5895 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5896 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5897 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5898 M:      linux390@de.ibm.com
5899 L:      linux-s390@vger.kernel.org
5900 W:      http://www.ibm.com/developerworks/linux/linux390/
5901 S:      Supported
5902 F:      Documentation/s390/kvm.txt
5903 F:      arch/s390/include/asm/kvm*
5904 F:      arch/s390/kvm/
5905 F:      drivers/s390/kvm/
5906
5907 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5908 M:      Christoffer Dall <christoffer.dall@linaro.org>
5909 M:      Marc Zyngier <marc.zyngier@arm.com>
5910 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5911 L:      kvmarm@lists.cs.columbia.edu
5912 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5913 S:      Supported
5914 F:      arch/arm/include/uapi/asm/kvm*
5915 F:      arch/arm/include/asm/kvm*
5916 F:      arch/arm/kvm/
5917 F:      virt/kvm/arm/
5918 F:      include/kvm/arm_*
5919
5920 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5921 M:      Christoffer Dall <christoffer.dall@linaro.org>
5922 M:      Marc Zyngier <marc.zyngier@arm.com>
5923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5924 L:      kvmarm@lists.cs.columbia.edu
5925 S:      Maintained
5926 F:      arch/arm64/include/uapi/asm/kvm*
5927 F:      arch/arm64/include/asm/kvm*
5928 F:      arch/arm64/kvm/
5929
5930 KEXEC
5931 M:      Eric Biederman <ebiederm@xmission.com>
5932 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
5933 L:      kexec@lists.infradead.org
5934 S:      Maintained
5935 F:      include/linux/kexec.h
5936 F:      include/uapi/linux/kexec.h
5937 F:      kernel/kexec.c
5938
5939 KEYS/KEYRINGS:
5940 M:      David Howells <dhowells@redhat.com>
5941 L:      keyrings@linux-nfs.org
5942 S:      Maintained
5943 F:      Documentation/security/keys.txt
5944 F:      include/linux/key.h
5945 F:      include/linux/key-type.h
5946 F:      include/keys/
5947 F:      security/keys/
5948
5949 KEYS-TRUSTED
5950 M:      David Safford <safford@us.ibm.com>
5951 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5952 L:      linux-security-module@vger.kernel.org
5953 L:      keyrings@linux-nfs.org
5954 S:      Supported
5955 F:      Documentation/security/keys-trusted-encrypted.txt
5956 F:      include/keys/trusted-type.h
5957 F:      security/keys/trusted.c
5958 F:      security/keys/trusted.h
5959
5960 KEYS-ENCRYPTED
5961 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5962 M:      David Safford <safford@us.ibm.com>
5963 L:      linux-security-module@vger.kernel.org
5964 L:      keyrings@linux-nfs.org
5965 S:      Supported
5966 F:      Documentation/security/keys-trusted-encrypted.txt
5967 F:      include/keys/encrypted-type.h
5968 F:      security/keys/encrypted-keys/
5969
5970 KGDB / KDB /debug_core
5971 M:      Jason Wessel <jason.wessel@windriver.com>
5972 W:      http://kgdb.wiki.kernel.org/
5973 L:      kgdb-bugreport@lists.sourceforge.net
5974 S:      Maintained
5975 F:      Documentation/DocBook/kgdb.tmpl
5976 F:      drivers/misc/kgdbts.c
5977 F:      drivers/tty/serial/kgdboc.c
5978 F:      include/linux/kdb.h
5979 F:      include/linux/kgdb.h
5980 F:      kernel/debug/
5981
5982 KMEMCHECK
5983 M:      Vegard Nossum <vegardno@ifi.uio.no>
5984 M:      Pekka Enberg <penberg@kernel.org>
5985 S:      Maintained
5986 F:      Documentation/kmemcheck.txt
5987 F:      arch/x86/include/asm/kmemcheck.h
5988 F:      arch/x86/mm/kmemcheck/
5989 F:      include/linux/kmemcheck.h
5990 F:      mm/kmemcheck.c
5991
5992 KMEMLEAK
5993 M:      Catalin Marinas <catalin.marinas@arm.com>
5994 S:      Maintained
5995 F:      Documentation/kmemleak.txt
5996 F:      include/linux/kmemleak.h
5997 F:      mm/kmemleak.c
5998 F:      mm/kmemleak-test.c
5999
6000 KPROBES
6001 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6002 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6003 M:      "David S. Miller" <davem@davemloft.net>
6004 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6005 S:      Maintained
6006 F:      Documentation/kprobes.txt
6007 F:      include/linux/kprobes.h
6008 F:      kernel/kprobes.c
6009
6010 KS0108 LCD CONTROLLER DRIVER
6011 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6012 W:      http://miguelojeda.es/auxdisplay.htm
6013 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6014 S:      Maintained
6015 F:      Documentation/auxdisplay/ks0108
6016 F:      drivers/auxdisplay/ks0108.c
6017 F:      include/linux/ks0108.h
6018
6019 LAPB module
6020 L:      linux-x25@vger.kernel.org
6021 S:      Orphan
6022 F:      Documentation/networking/lapb-module.txt
6023 F:      include/*/lapb.h
6024 F:      net/lapb/
6025
6026 LASI 53c700 driver for PARISC
6027 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6028 L:      linux-scsi@vger.kernel.org
6029 S:      Maintained
6030 F:      Documentation/scsi/53c700.txt
6031 F:      drivers/scsi/53c700*
6032
6033 LED SUBSYSTEM
6034 M:      Bryan Wu <cooloney@gmail.com>
6035 M:      Richard Purdie <rpurdie@rpsys.net>
6036 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6037 L:      linux-leds@vger.kernel.org
6038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
6039 S:      Maintained
6040 F:      drivers/leds/
6041 F:      include/linux/leds.h
6042
6043 LEGACY EEPROM DRIVER
6044 M:      Jean Delvare <jdelvare@suse.com>
6045 S:      Maintained
6046 F:      Documentation/misc-devices/eeprom
6047 F:      drivers/misc/eeprom/eeprom.c
6048
6049 LEGO USB Tower driver
6050 M:      Juergen Stuber <starblue@users.sourceforge.net>
6051 L:      legousb-devel@lists.sourceforge.net
6052 W:      http://legousb.sourceforge.net/
6053 S:      Maintained
6054 F:      drivers/usb/misc/legousbtower.c
6055
6056 LG2160 MEDIA DRIVER
6057 M:      Michael Krufky <mkrufky@linuxtv.org>
6058 L:      linux-media@vger.kernel.org
6059 W:      http://linuxtv.org/
6060 W:      http://github.com/mkrufky
6061 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6062 T:      git git://linuxtv.org/mkrufky/tuners.git
6063 S:      Maintained
6064 F:      drivers/media/dvb-frontends/lg2160.*
6065
6066 LGDT3305 MEDIA DRIVER
6067 M:      Michael Krufky <mkrufky@linuxtv.org>
6068 L:      linux-media@vger.kernel.org
6069 W:      http://linuxtv.org/
6070 W:      http://github.com/mkrufky
6071 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6072 T:      git git://linuxtv.org/mkrufky/tuners.git
6073 S:      Maintained
6074 F:      drivers/media/dvb-frontends/lgdt3305.*
6075
6076 LGUEST
6077 M:      Rusty Russell <rusty@rustcorp.com.au>
6078 L:      lguest@lists.ozlabs.org
6079 W:      http://lguest.ozlabs.org/
6080 S:      Odd Fixes
6081 F:      arch/x86/include/asm/lguest*.h
6082 F:      arch/x86/lguest/
6083 F:      drivers/lguest/
6084 F:      include/linux/lguest*.h
6085 F:      tools/lguest/
6086
6087 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6088 M:      Tejun Heo <tj@kernel.org>
6089 L:      linux-ide@vger.kernel.org
6090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6091 S:      Maintained
6092 F:      drivers/ata/
6093 F:      include/linux/ata.h
6094 F:      include/linux/libata.h
6095
6096 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6097 M:      Viresh Kumar <vireshk@kernel.org>
6098 L:      linux-ide@vger.kernel.org
6099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6100 S:      Maintained
6101 F:      include/linux/pata_arasan_cf_data.h
6102 F:      drivers/ata/pata_arasan_cf.c
6103
6104 LIBATA PATA DRIVERS
6105 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6106 M:      Tejun Heo <tj@kernel.org>
6107 L:      linux-ide@vger.kernel.org
6108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6109 S:      Maintained
6110 F:      drivers/ata/pata_*.c
6111 F:      drivers/ata/ata_generic.c
6112
6113 LIBATA SATA AHCI PLATFORM devices support
6114 M:      Hans de Goede <hdegoede@redhat.com>
6115 M:      Tejun Heo <tj@kernel.org>
6116 L:      linux-ide@vger.kernel.org
6117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6118 S:      Maintained
6119 F:      drivers/ata/ahci_platform.c
6120 F:      drivers/ata/libahci_platform.c
6121 F:      include/linux/ahci_platform.h
6122
6123 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6124 M:      Mikael Pettersson <mikpelinux@gmail.com>
6125 L:      linux-ide@vger.kernel.org
6126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6127 S:      Maintained
6128 F:      drivers/ata/sata_promise.*
6129
6130 LIBLOCKDEP
6131 M:      Sasha Levin <sasha.levin@oracle.com>
6132 S:      Maintained
6133 F:      tools/lib/lockdep/
6134
6135 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6136 M:      Dan Williams <dan.j.williams@intel.com>
6137 L:      linux-nvdimm@lists.01.org
6138 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6139 S:      Supported
6140 F:      drivers/nvdimm/*
6141 F:      include/linux/nd.h
6142 F:      include/linux/libnvdimm.h
6143 F:      include/uapi/linux/ndctl.h
6144
6145 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6146 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6147 L:      linux-nvdimm@lists.01.org
6148 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6149 S:      Supported
6150 F:      drivers/nvdimm/blk.c
6151 F:      drivers/nvdimm/region_devs.c
6152 F:      drivers/acpi/nfit*
6153
6154 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6155 M:      Vishal Verma <vishal.l.verma@intel.com>
6156 L:      linux-nvdimm@lists.01.org
6157 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6158 S:      Supported
6159 F:      drivers/nvdimm/btt*
6160
6161 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6162 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6163 L:      linux-nvdimm@lists.01.org
6164 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6165 S:      Supported
6166 F:      drivers/nvdimm/pmem.c
6167 F:      include/linux/pmem.h
6168
6169 LINUX FOR IBM pSERIES (RS/6000)
6170 M:      Paul Mackerras <paulus@au.ibm.com>
6171 W:      http://www.ibm.com/linux/ltc/projects/ppc
6172 S:      Supported
6173 F:      arch/powerpc/boot/rs6000.h
6174
6175 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6176 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6177 M:      Paul Mackerras <paulus@samba.org>
6178 M:      Michael Ellerman <mpe@ellerman.id.au>
6179 W:      http://www.penguinppc.org/
6180 L:      linuxppc-dev@lists.ozlabs.org
6181 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6183 S:      Supported
6184 F:      Documentation/powerpc/
6185 F:      arch/powerpc/
6186
6187 LINUX FOR POWER MACINTOSH
6188 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6189 W:      http://www.penguinppc.org/
6190 L:      linuxppc-dev@lists.ozlabs.org
6191 S:      Maintained
6192 F:      arch/powerpc/platforms/powermac/
6193 F:      drivers/macintosh/
6194
6195 LINUX FOR POWERPC EMBEDDED MPC5XXX
6196 M:      Anatolij Gustschin <agust@denx.de>
6197 L:      linuxppc-dev@lists.ozlabs.org
6198 T:      git git://git.denx.de/linux-denx-agust.git
6199 S:      Maintained
6200 F:      arch/powerpc/platforms/512x/
6201 F:      arch/powerpc/platforms/52xx/
6202
6203 LINUX FOR POWERPC EMBEDDED PPC4XX
6204 M:      Alistair Popple <alistair@popple.id.au>
6205 M:      Matt Porter <mporter@kernel.crashing.org>
6206 W:      http://www.penguinppc.org/
6207 L:      linuxppc-dev@lists.ozlabs.org
6208 S:      Maintained
6209 F:      arch/powerpc/platforms/40x/
6210 F:      arch/powerpc/platforms/44x/
6211
6212 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6213 L:      linuxppc-dev@lists.ozlabs.org
6214 S:      Orphan
6215 F:      arch/powerpc/*/*virtex*
6216 F:      arch/powerpc/*/*/*virtex*
6217
6218 LINUX FOR POWERPC EMBEDDED PPC8XX
6219 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6220 W:      http://www.penguinppc.org/
6221 L:      linuxppc-dev@lists.ozlabs.org
6222 S:      Maintained
6223 F:      arch/powerpc/platforms/8xx/
6224
6225 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6226 M:      Scott Wood <scottwood@freescale.com>
6227 M:      Kumar Gala <galak@kernel.crashing.org>
6228 W:      http://www.penguinppc.org/
6229 L:      linuxppc-dev@lists.ozlabs.org
6230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6231 S:      Maintained
6232 F:      arch/powerpc/platforms/83xx/
6233 F:      arch/powerpc/platforms/85xx/
6234
6235 LINUX FOR POWERPC PA SEMI PWRFICIENT
6236 M:      Olof Johansson <olof@lixom.net>
6237 L:      linuxppc-dev@lists.ozlabs.org
6238 S:      Maintained
6239 F:      arch/powerpc/platforms/pasemi/
6240 F:      drivers/*/*pasemi*
6241 F:      drivers/*/*/*pasemi*
6242
6243 LINUX SECURITY MODULE (LSM) FRAMEWORK
6244 M:      Chris Wright <chrisw@sous-sol.org>
6245 L:      linux-security-module@vger.kernel.org
6246 S:      Supported
6247
6248 LIS3LV02D ACCELEROMETER DRIVER
6249 M:      Eric Piel <eric.piel@tremplin-utc.net>
6250 S:      Maintained
6251 F:      Documentation/misc-devices/lis3lv02d
6252 F:      drivers/misc/lis3lv02d/
6253 F:      drivers/platform/x86/hp_accel.c
6254
6255 LIVE PATCHING
6256 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6257 M:      Seth Jennings <sjenning@redhat.com>
6258 M:      Jiri Kosina <jkosina@suse.com>
6259 M:      Vojtech Pavlik <vojtech@suse.com>
6260 S:      Maintained
6261 F:      kernel/livepatch/
6262 F:      include/linux/livepatch.h
6263 F:      arch/x86/include/asm/livepatch.h
6264 F:      arch/x86/kernel/livepatch.c
6265 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6266 F:      samples/livepatch/
6267 L:      live-patching@vger.kernel.org
6268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6269
6270 LLC (802.2)
6271 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6272 S:      Maintained
6273 F:      include/linux/llc.h
6274 F:      include/uapi/linux/llc.h
6275 F:      include/net/llc*
6276 F:      net/llc/
6277
6278 LM73 HARDWARE MONITOR DRIVER
6279 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6280 L:      lm-sensors@lm-sensors.org
6281 S:      Maintained
6282 F:      drivers/hwmon/lm73.c
6283
6284 LM78 HARDWARE MONITOR DRIVER
6285 M:      Jean Delvare <jdelvare@suse.com>
6286 L:      lm-sensors@lm-sensors.org
6287 S:      Maintained
6288 F:      Documentation/hwmon/lm78
6289 F:      drivers/hwmon/lm78.c
6290
6291 LM83 HARDWARE MONITOR DRIVER
6292 M:      Jean Delvare <jdelvare@suse.com>
6293 L:      lm-sensors@lm-sensors.org
6294 S:      Maintained
6295 F:      Documentation/hwmon/lm83
6296 F:      drivers/hwmon/lm83.c
6297
6298 LM90 HARDWARE MONITOR DRIVER
6299 M:      Jean Delvare <jdelvare@suse.com>
6300 L:      lm-sensors@lm-sensors.org
6301 S:      Maintained
6302 F:      Documentation/hwmon/lm90
6303 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6304 F:      drivers/hwmon/lm90.c
6305
6306 LM95234 HARDWARE MONITOR DRIVER
6307 M:      Guenter Roeck <linux@roeck-us.net>
6308 L:      lm-sensors@lm-sensors.org
6309 S:      Maintained
6310 F:      Documentation/hwmon/lm95234
6311 F:      drivers/hwmon/lm95234.c
6312
6313 LME2510 MEDIA DRIVER
6314 M:      Malcolm Priestley <tvboxspy@gmail.com>
6315 L:      linux-media@vger.kernel.org
6316 W:      http://linuxtv.org/
6317 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6318 S:      Maintained
6319 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6320
6321 LOCKDEP AND LOCKSTAT
6322 M:      Peter Zijlstra <peterz@infradead.org>
6323 M:      Ingo Molnar <mingo@redhat.com>
6324 L:      linux-kernel@vger.kernel.org
6325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6326 S:      Maintained
6327 F:      Documentation/locking/lockdep*.txt
6328 F:      Documentation/locking/lockstat.txt
6329 F:      include/linux/lockdep.h
6330 F:      kernel/locking/
6331
6332 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6333 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6334 L:      linux-ntfs-dev@lists.sourceforge.net
6335 W:      http://www.linux-ntfs.org/content/view/19/37/
6336 S:      Maintained
6337 F:      Documentation/ldm.txt
6338 F:      block/partitions/ldm.*
6339
6340 LogFS
6341 M:      Joern Engel <joern@logfs.org>
6342 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6343 L:      logfs@logfs.org
6344 W:      logfs.org
6345 S:      Maintained
6346 F:      fs/logfs/
6347
6348 LPC32XX MACHINE SUPPORT
6349 M:      Roland Stigge <stigge@antcom.de>
6350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6351 S:      Maintained
6352 F:      arch/arm/mach-lpc32xx/
6353
6354 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6355 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6356 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6357 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6358 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6359 L:      MPT-FusionLinux.pdl@avagotech.com
6360 L:      linux-scsi@vger.kernel.org
6361 W:      http://www.lsilogic.com/support
6362 S:      Supported
6363 F:      drivers/message/fusion/
6364 F:      drivers/scsi/mpt2sas/
6365 F:      drivers/scsi/mpt3sas/
6366
6367 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6368 M:      Matthew Wilcox <matthew@wil.cx>
6369 L:      linux-scsi@vger.kernel.org
6370 S:      Maintained
6371 F:      drivers/scsi/sym53c8xx_2/
6372
6373 LTC4261 HARDWARE MONITOR DRIVER
6374 M:      Guenter Roeck <linux@roeck-us.net>
6375 L:      lm-sensors@lm-sensors.org
6376 S:      Maintained
6377 F:      Documentation/hwmon/ltc4261
6378 F:      drivers/hwmon/ltc4261.c
6379
6380 LTP (Linux Test Project)
6381 M:      Mike Frysinger <vapier@gentoo.org>
6382 M:      Cyril Hrubis <chrubis@suse.cz>
6383 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
6384 M:      Jan Stancek <jstancek@redhat.com>
6385 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6386 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6387 L:      ltp-list@lists.sourceforge.net (subscribers-only)
6388 W:      http://linux-test-project.github.io/
6389 T:      git git://github.com/linux-test-project/ltp.git
6390 S:      Maintained
6391
6392 M32R ARCHITECTURE
6393 W:      http://www.linux-m32r.org/
6394 S:      Orphan
6395 F:      arch/m32r/
6396
6397 M68K ARCHITECTURE
6398 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6399 L:      linux-m68k@lists.linux-m68k.org
6400 W:      http://www.linux-m68k.org/
6401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6402 S:      Maintained
6403 F:      arch/m68k/
6404 F:      drivers/zorro/
6405
6406 M68K ON APPLE MACINTOSH
6407 M:      Joshua Thompson <funaho@jurai.org>
6408 W:      http://www.mac.linux-m68k.org/
6409 L:      linux-m68k@lists.linux-m68k.org
6410 S:      Maintained
6411 F:      arch/m68k/mac/
6412
6413 M68K ON HP9000/300
6414 M:      Philip Blundell <philb@gnu.org>
6415 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6416 S:      Maintained
6417 F:      arch/m68k/hp300/
6418
6419 M88DS3103 MEDIA DRIVER
6420 M:      Antti Palosaari <crope@iki.fi>
6421 L:      linux-media@vger.kernel.org
6422 W:      http://linuxtv.org/
6423 W:      http://palosaari.fi/linux/
6424 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6425 T:      git git://linuxtv.org/anttip/media_tree.git
6426 S:      Maintained
6427 F:      drivers/media/dvb-frontends/m88ds3103*
6428
6429 M88RS2000 MEDIA DRIVER
6430 M:      Malcolm Priestley <tvboxspy@gmail.com>
6431 L:      linux-media@vger.kernel.org
6432 W:      http://linuxtv.org/
6433 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6434 S:      Maintained
6435 F:      drivers/media/dvb-frontends/m88rs2000*
6436
6437 MA901 MASTERKIT USB FM RADIO DRIVER
6438 M:      Alexey Klimov <klimov.linux@gmail.com>
6439 L:      linux-media@vger.kernel.org
6440 T:      git git://linuxtv.org/media_tree.git
6441 S:      Maintained
6442 F:      drivers/media/radio/radio-ma901.c
6443
6444 MAC80211
6445 M:      Johannes Berg <johannes@sipsolutions.net>
6446 L:      linux-wireless@vger.kernel.org
6447 W:      http://wireless.kernel.org/
6448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6450 S:      Maintained
6451 F:      Documentation/networking/mac80211-injection.txt
6452 F:      include/net/mac80211.h
6453 F:      net/mac80211/
6454
6455 MACVLAN DRIVER
6456 M:      Patrick McHardy <kaber@trash.net>
6457 L:      netdev@vger.kernel.org
6458 S:      Maintained
6459 F:      drivers/net/macvlan.c
6460 F:      include/linux/if_macvlan.h
6461
6462 MAILBOX API
6463 M:      Jassi Brar <jassisinghbrar@gmail.com>
6464 L:      linux-kernel@vger.kernel.org
6465 S:      Maintained
6466 F:      drivers/mailbox/
6467 F:      include/linux/mailbox_client.h
6468 F:      include/linux/mailbox_controller.h
6469
6470 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6471 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6472 W:      http://www.kernel.org/doc/man-pages
6473 L:      linux-man@vger.kernel.org
6474 S:      Maintained
6475
6476 MARVELL ARMADA DRM SUPPORT
6477 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6478 S:      Maintained
6479 F:      drivers/gpu/drm/armada/
6480
6481 MARVELL 88E6352 DSA support
6482 M:      Guenter Roeck <linux@roeck-us.net>
6483 S:      Maintained
6484 F:      drivers/net/dsa/mv88e6352.c
6485
6486 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6487 M:      Mirko Lindner <mlindner@marvell.com>
6488 M:      Stephen Hemminger <stephen@networkplumber.org>
6489 L:      netdev@vger.kernel.org
6490 S:      Maintained
6491 F:      drivers/net/ethernet/marvell/sk*
6492
6493 MARVELL LIBERTAS WIRELESS DRIVER
6494 L:      libertas-dev@lists.infradead.org
6495 S:      Orphan
6496 F:      drivers/net/wireless/libertas/
6497
6498 MARVELL MV643XX ETHERNET DRIVER
6499 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6500 L:      netdev@vger.kernel.org
6501 S:      Maintained
6502 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6503 F:      include/linux/mv643xx.h
6504
6505 MARVELL MVNETA ETHERNET DRIVER
6506 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6507 L:      netdev@vger.kernel.org
6508 S:      Maintained
6509 F:      drivers/net/ethernet/marvell/mvneta.*
6510
6511 MARVELL MWIFIEX WIRELESS DRIVER
6512 M:      Amitkumar Karwar <akarwar@marvell.com>
6513 M:      Avinash Patil <patila@marvell.com>
6514 L:      linux-wireless@vger.kernel.org
6515 S:      Maintained
6516 F:      drivers/net/wireless/mwifiex/
6517
6518 MARVELL MWL8K WIRELESS DRIVER
6519 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6520 L:      linux-wireless@vger.kernel.org
6521 S:      Odd Fixes
6522 F:      drivers/net/wireless/mwl8k.c
6523
6524 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6525 M:      Nicolas Pitre <nico@fluxnic.net>
6526 S:      Odd Fixes
6527 F:      drivers/mmc/host/mvsdio.*
6528
6529 MATROX FRAMEBUFFER DRIVER
6530 L:      linux-fbdev@vger.kernel.org
6531 S:      Orphan
6532 F:      drivers/video/fbdev/matrox/matroxfb_*
6533 F:      include/uapi/linux/matroxfb.h
6534
6535 MAX16065 HARDWARE MONITOR DRIVER
6536 M:      Guenter Roeck <linux@roeck-us.net>
6537 L:      lm-sensors@lm-sensors.org
6538 S:      Maintained
6539 F:      Documentation/hwmon/max16065
6540 F:      drivers/hwmon/max16065.c
6541
6542 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6543 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6544 L:      lm-sensors@lm-sensors.org
6545 S:      Maintained
6546 F:      Documentation/hwmon/max6650
6547 F:      drivers/hwmon/max6650.c
6548
6549 MAX6697 HARDWARE MONITOR DRIVER
6550 M:      Guenter Roeck <linux@roeck-us.net>
6551 L:      lm-sensors@lm-sensors.org
6552 S:      Maintained
6553 F:      Documentation/hwmon/max6697
6554 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6555 F:      drivers/hwmon/max6697.c
6556 F:      include/linux/platform_data/max6697.h
6557
6558 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6559 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6560 L:      linux-pm@vger.kernel.org
6561 S:      Supported
6562 F:      drivers/power/max14577_charger.c
6563 F:      drivers/power/max77693_charger.c
6564
6565 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6566 M:      Chanwoo Choi <cw00.choi@samsung.com>
6567 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6568 L:      linux-kernel@vger.kernel.org
6569 S:      Supported
6570 F:      drivers/*/max14577.c
6571 F:      drivers/*/max77686.c
6572 F:      drivers/*/max77693.c
6573 F:      drivers/extcon/extcon-max14577.c
6574 F:      drivers/extcon/extcon-max77693.c
6575 F:      drivers/rtc/rtc-max77686.c
6576 F:      drivers/clk/clk-max77686.c
6577 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6578 F:      Documentation/devicetree/bindings/mfd/max77686.txt
6579 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6580 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6581 F:      include/linux/mfd/max14577*.h
6582 F:      include/linux/mfd/max77686*.h
6583 F:      include/linux/mfd/max77693*.h
6584
6585 MAXIRADIO FM RADIO RECEIVER DRIVER
6586 M:      Hans Verkuil <hverkuil@xs4all.nl>
6587 L:      linux-media@vger.kernel.org
6588 T:      git git://linuxtv.org/media_tree.git
6589 W:      http://linuxtv.org
6590 S:      Maintained
6591 F:      drivers/media/radio/radio-maxiradio*
6592
6593 MEDIA DRIVERS FOR RENESAS - VSP1
6594 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6595 L:      linux-media@vger.kernel.org
6596 L:      linux-sh@vger.kernel.org
6597 T:      git git://linuxtv.org/media_tree.git
6598 S:      Supported
6599 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6600 F:      drivers/media/platform/vsp1/
6601
6602 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6603 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6604 P:      LinuxTV.org Project
6605 L:      linux-media@vger.kernel.org
6606 W:      http://linuxtv.org
6607 Q:      http://patchwork.kernel.org/project/linux-media/list/
6608 T:      git git://linuxtv.org/media_tree.git
6609 S:      Maintained
6610 F:      Documentation/dvb/
6611 F:      Documentation/video4linux/
6612 F:      Documentation/DocBook/media/
6613 F:      drivers/media/
6614 F:      drivers/staging/media/
6615 F:      include/media/
6616 F:      include/uapi/linux/dvb/
6617 F:      include/uapi/linux/videodev2.h
6618 F:      include/uapi/linux/media.h
6619 F:      include/uapi/linux/v4l2-*
6620 F:      include/uapi/linux/meye.h
6621 F:      include/uapi/linux/ivtv*
6622 F:      include/uapi/linux/uvcvideo.h
6623
6624 MEDIATEK MT7601U WIRELESS LAN DRIVER
6625 M:      Jakub Kicinski <kubakici@wp.pl>
6626 L:      linux-wireless@vger.kernel.org
6627 S:      Maintained
6628 F:      drivers/net/wireless/mediatek/mt7601u/
6629
6630 MEGARAID SCSI/SAS DRIVERS
6631 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6632 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6633 M:      Uday Lingala <uday.lingala@avagotech.com>
6634 L:      megaraidlinux.pdl@avagotech.com
6635 L:      linux-scsi@vger.kernel.org
6636 W:      http://www.lsi.com
6637 S:      Maintained
6638 F:      Documentation/scsi/megaraid.txt
6639 F:      drivers/scsi/megaraid.*
6640 F:      drivers/scsi/megaraid/
6641
6642 MELLANOX ETHERNET DRIVER (mlx4_en)
6643 M:      Amir Vadai <amirv@mellanox.com>
6644 M:      Ido Shamay <idos@mellanox.com>
6645 L:      netdev@vger.kernel.org
6646 S:      Supported
6647 W:      http://www.mellanox.com
6648 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6649 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6650
6651 MEMORY MANAGEMENT
6652 L:      linux-mm@kvack.org
6653 W:      http://www.linux-mm.org
6654 S:      Maintained
6655 F:      include/linux/mm.h
6656 F:      include/linux/gfp.h
6657 F:      include/linux/mmzone.h
6658 F:      include/linux/memory_hotplug.h
6659 F:      include/linux/vmalloc.h
6660 F:      mm/
6661
6662 MEMORY TECHNOLOGY DEVICES (MTD)
6663 M:      David Woodhouse <dwmw2@infradead.org>
6664 M:      Brian Norris <computersforpeace@gmail.com>
6665 L:      linux-mtd@lists.infradead.org
6666 W:      http://www.linux-mtd.infradead.org/
6667 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6668 T:      git git://git.infradead.org/linux-mtd.git
6669 T:      git git://git.infradead.org/l2-mtd.git
6670 S:      Maintained
6671 F:      drivers/mtd/
6672 F:      include/linux/mtd/
6673 F:      include/uapi/mtd/
6674
6675 MEN A21 WATCHDOG DRIVER
6676 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6677 L:      linux-watchdog@vger.kernel.org
6678 S:      Maintained
6679 F:      drivers/watchdog/mena21_wdt.c
6680
6681 MEN CHAMELEON BUS (mcb)
6682 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6683 S:      Maintained
6684 F:      drivers/mcb/
6685 F:      include/linux/mcb.h
6686
6687 MEN F21BMC (Board Management Controller)
6688 M:      Andreas Werner <andreas.werner@men.de>
6689 S:      Supported
6690 F:      drivers/mfd/menf21bmc.c
6691 F:      drivers/watchdog/menf21bmc_wdt.c
6692 F:      drivers/leds/leds-menf21bmc.c
6693 F:      drivers/hwmon/menf21bmc_hwmon.c
6694 F:      Documentation/hwmon/menf21bmc
6695
6696 METAG ARCHITECTURE
6697 M:      James Hogan <james.hogan@imgtec.com>
6698 L:      linux-metag@vger.kernel.org
6699 S:      Supported
6700 F:      arch/metag/
6701 F:      Documentation/metag/
6702 F:      Documentation/devicetree/bindings/metag/
6703 F:      drivers/clocksource/metag_generic.c
6704 F:      drivers/irqchip/irq-metag.c
6705 F:      drivers/irqchip/irq-metag-ext.c
6706 F:      drivers/tty/metag_da.c
6707
6708 MICROBLAZE ARCHITECTURE
6709 M:      Michal Simek <monstr@monstr.eu>
6710 W:      http://www.monstr.eu/fdt/
6711 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6712 S:      Supported
6713 F:      arch/microblaze/
6714
6715 MICROTEK X6 SCANNER
6716 M:      Oliver Neukum <oliver@neukum.org>
6717 S:      Maintained
6718 F:      drivers/usb/image/microtek.*
6719
6720 MIPS
6721 M:      Ralf Baechle <ralf@linux-mips.org>
6722 L:      linux-mips@linux-mips.org
6723 W:      http://www.linux-mips.org/
6724 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6725 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6726 S:      Supported
6727 F:      Documentation/mips/
6728 F:      arch/mips/
6729
6730 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6731 M:      Hans Verkuil <hverkuil@xs4all.nl>
6732 L:      linux-media@vger.kernel.org
6733 T:      git git://linuxtv.org/media_tree.git
6734 W:      http://linuxtv.org
6735 S:      Odd Fixes
6736 F:      drivers/media/radio/radio-miropcm20*
6737
6738 Mellanox MLX5 core VPI driver
6739 M:      Eli Cohen <eli@mellanox.com>
6740 L:      netdev@vger.kernel.org
6741 L:      linux-rdma@vger.kernel.org
6742 W:      http://www.mellanox.com
6743 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6744 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6745 T:      git git://openfabrics.org/~eli/connect-ib.git
6746 S:      Supported
6747 F:      drivers/net/ethernet/mellanox/mlx5/core/
6748 F:      include/linux/mlx5/
6749
6750 Mellanox MLX5 IB driver
6751 M:      Eli Cohen <eli@mellanox.com>
6752 L:      linux-rdma@vger.kernel.org
6753 W:      http://www.mellanox.com
6754 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6755 T:      git git://openfabrics.org/~eli/connect-ib.git
6756 S:      Supported
6757 F:      include/linux/mlx5/
6758 F:      drivers/infiniband/hw/mlx5/
6759
6760 MN88472 MEDIA DRIVER
6761 M:      Antti Palosaari <crope@iki.fi>
6762 L:      linux-media@vger.kernel.org
6763 W:      http://linuxtv.org/
6764 W:      http://palosaari.fi/linux/
6765 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6766 T:      git git://linuxtv.org/anttip/media_tree.git
6767 S:      Maintained
6768 F:      drivers/staging/media/mn88472/
6769 F:      drivers/media/dvb-frontends/mn88472.h
6770
6771 MN88473 MEDIA DRIVER
6772 M:      Antti Palosaari <crope@iki.fi>
6773 L:      linux-media@vger.kernel.org
6774 W:      http://linuxtv.org/
6775 W:      http://palosaari.fi/linux/
6776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6777 T:      git git://linuxtv.org/anttip/media_tree.git
6778 S:      Maintained
6779 F:      drivers/staging/media/mn88473/
6780 F:      drivers/media/dvb-frontends/mn88473.h
6781
6782 MODULE SUPPORT
6783 M:      Rusty Russell <rusty@rustcorp.com.au>
6784 S:      Maintained
6785 F:      include/linux/module.h
6786 F:      kernel/module.c
6787
6788 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6789 W:      http://popies.net/meye/
6790 S:      Orphan
6791 F:      Documentation/video4linux/meye.txt
6792 F:      drivers/media/pci/meye/
6793 F:      include/uapi/linux/meye.h
6794
6795 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6796 M:      Jiri Slaby <jirislaby@gmail.com>
6797 S:      Maintained
6798 F:      Documentation/serial/moxa-smartio
6799 F:      drivers/tty/mxser.*
6800
6801 MR800 AVERMEDIA USB FM RADIO DRIVER
6802 M:      Alexey Klimov <klimov.linux@gmail.com>
6803 L:      linux-media@vger.kernel.org
6804 T:      git git://linuxtv.org/media_tree.git
6805 S:      Maintained
6806 F:      drivers/media/radio/radio-mr800.c
6807
6808 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6809 M:      Alan Ott <alan@signal11.us>
6810 L:      linux-wpan@vger.kernel.org
6811 S:      Maintained
6812 F:      drivers/net/ieee802154/mrf24j40.c
6813
6814 MSI LAPTOP SUPPORT
6815 M:      "Lee, Chun-Yi" <jlee@suse.com>
6816 L:      platform-driver-x86@vger.kernel.org
6817 S:      Maintained
6818 F:      drivers/platform/x86/msi-laptop.c
6819
6820 MSI WMI SUPPORT
6821 L:      platform-driver-x86@vger.kernel.org
6822 S:      Orphan
6823 F:      drivers/platform/x86/msi-wmi.c
6824
6825 MSI001 MEDIA DRIVER
6826 M:      Antti Palosaari <crope@iki.fi>
6827 L:      linux-media@vger.kernel.org
6828 W:      http://linuxtv.org/
6829 W:      http://palosaari.fi/linux/
6830 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6831 T:      git git://linuxtv.org/anttip/media_tree.git
6832 S:      Maintained
6833 F:      drivers/media/tuners/msi001*
6834
6835 MSI2500 MEDIA DRIVER
6836 M:      Antti Palosaari <crope@iki.fi>
6837 L:      linux-media@vger.kernel.org
6838 W:      http://linuxtv.org/
6839 W:      http://palosaari.fi/linux/
6840 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6841 T:      git git://linuxtv.org/anttip/media_tree.git
6842 S:      Maintained
6843 F:      drivers/media/usb/msi2500/
6844
6845 MT9M032 APTINA SENSOR DRIVER
6846 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6847 L:      linux-media@vger.kernel.org
6848 T:      git git://linuxtv.org/media_tree.git
6849 S:      Maintained
6850 F:      drivers/media/i2c/mt9m032.c
6851 F:      include/media/mt9m032.h
6852
6853 MT9P031 APTINA CAMERA SENSOR
6854 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6855 L:      linux-media@vger.kernel.org
6856 T:      git git://linuxtv.org/media_tree.git
6857 S:      Maintained
6858 F:      drivers/media/i2c/mt9p031.c
6859 F:      include/media/mt9p031.h
6860
6861 MT9T001 APTINA CAMERA SENSOR
6862 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6863 L:      linux-media@vger.kernel.org
6864 T:      git git://linuxtv.org/media_tree.git
6865 S:      Maintained
6866 F:      drivers/media/i2c/mt9t001.c
6867 F:      include/media/mt9t001.h
6868
6869 MT9V032 APTINA CAMERA SENSOR
6870 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6871 L:      linux-media@vger.kernel.org
6872 T:      git git://linuxtv.org/media_tree.git
6873 S:      Maintained
6874 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
6875 F:      drivers/media/i2c/mt9v032.c
6876 F:      include/media/mt9v032.h
6877
6878 MULTIFUNCTION DEVICES (MFD)
6879 M:      Samuel Ortiz <sameo@linux.intel.com>
6880 M:      Lee Jones <lee.jones@linaro.org>
6881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
6882 S:      Supported
6883 F:      drivers/mfd/
6884 F:      include/linux/mfd/
6885
6886 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
6887 M:      Ulf Hansson <ulf.hansson@linaro.org>
6888 L:      linux-mmc@vger.kernel.org
6889 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
6890 S:      Maintained
6891 F:      drivers/mmc/
6892 F:      include/linux/mmc/
6893 F:      include/uapi/linux/mmc/
6894
6895 MULTIMEDIA CARD (MMC) ETC. OVER SPI
6896 S:      Orphan
6897 F:      drivers/mmc/host/mmc_spi.c
6898 F:      include/linux/spi/mmc_spi.h
6899
6900 MULTISOUND SOUND DRIVER
6901 M:      Andrew Veliath <andrewtv@usa.net>
6902 S:      Maintained
6903 F:      Documentation/sound/oss/MultiSound
6904 F:      sound/oss/msnd*
6905
6906 MULTITECH MULTIPORT CARD (ISICOM)
6907 S:      Orphan
6908 F:      drivers/tty/isicom.c
6909 F:      include/linux/isicom.h
6910
6911 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
6912 M:      Felipe Balbi <balbi@ti.com>
6913 L:      linux-usb@vger.kernel.org
6914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6915 S:      Maintained
6916 F:      drivers/usb/musb/
6917
6918 MXL5007T MEDIA DRIVER
6919 M:      Michael Krufky <mkrufky@linuxtv.org>
6920 L:      linux-media@vger.kernel.org
6921 W:      http://linuxtv.org/
6922 W:      http://github.com/mkrufky
6923 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6924 T:      git git://linuxtv.org/mkrufky/tuners.git
6925 S:      Maintained
6926 F:      drivers/media/tuners/mxl5007t.*
6927
6928 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
6929 M:      Hyong-Youb Kim <hykim@myri.com>
6930 L:      netdev@vger.kernel.org
6931 W:      https://www.myricom.com/support/downloads/myri10ge.html
6932 S:      Supported
6933 F:      drivers/net/ethernet/myricom/myri10ge/
6934
6935 NATSEMI ETHERNET DRIVER (DP8381x)
6936 S:      Orphan
6937 F:      drivers/net/ethernet/natsemi/natsemi.c
6938
6939 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
6940 M:      Daniel Mack <zonque@gmail.com>
6941 S:      Maintained
6942 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6943 W:      http://www.native-instruments.com
6944 F:      sound/usb/caiaq/
6945
6946 NCP FILESYSTEM
6947 M:      Petr Vandrovec <petr@vandrovec.name>
6948 S:      Odd Fixes
6949 F:      fs/ncpfs/
6950
6951 NCR 5380 SCSI DRIVERS
6952 M:      Finn Thain <fthain@telegraphics.com.au>
6953 M:      Michael Schmitz <schmitzmic@gmail.com>
6954 L:      linux-scsi@vger.kernel.org
6955 S:      Maintained
6956 F:      Documentation/scsi/g_NCR5380.txt
6957 F:      drivers/scsi/NCR5380.*
6958 F:      drivers/scsi/arm/cumana_1.c
6959 F:      drivers/scsi/arm/oak.c
6960 F:      drivers/scsi/atari_NCR5380.c
6961 F:      drivers/scsi/atari_scsi.*
6962 F:      drivers/scsi/dmx3191d.c
6963 F:      drivers/scsi/dtc.*
6964 F:      drivers/scsi/g_NCR5380.*
6965 F:      drivers/scsi/g_NCR5380_mmio.c
6966 F:      drivers/scsi/mac_scsi.*
6967 F:      drivers/scsi/pas16.*
6968 F:      drivers/scsi/sun3_scsi.*
6969 F:      drivers/scsi/sun3_scsi_vme.c
6970 F:      drivers/scsi/t128.*
6971
6972 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
6973 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6974 L:      linux-scsi@vger.kernel.org
6975 S:      Maintained
6976 F:      drivers/scsi/NCR_D700.*
6977
6978 NCT6775 HARDWARE MONITOR DRIVER
6979 M:      Guenter Roeck <linux@roeck-us.net>
6980 L:      lm-sensors@lm-sensors.org
6981 S:      Maintained
6982 F:      Documentation/hwmon/nct6775
6983 F:      drivers/hwmon/nct6775.c
6984
6985 NETEFFECT IWARP RNIC DRIVER (IW_NES)
6986 M:      Faisal Latif <faisal.latif@intel.com>
6987 L:      linux-rdma@vger.kernel.org
6988 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
6989 S:      Supported
6990 F:      drivers/infiniband/hw/nes/
6991
6992 NETEM NETWORK EMULATOR
6993 M:      Stephen Hemminger <stephen@networkplumber.org>
6994 L:      netem@lists.linux-foundation.org
6995 S:      Maintained
6996 F:      net/sched/sch_netem.c
6997
6998 NETERION 10GbE DRIVERS (s2io/vxge)
6999 M:      Jon Mason <jdmason@kudzu.us>
7000 L:      netdev@vger.kernel.org
7001 S:      Supported
7002 F:      Documentation/networking/s2io.txt
7003 F:      Documentation/networking/vxge.txt
7004 F:      drivers/net/ethernet/neterion/
7005
7006 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7007 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7008 M:      Patrick McHardy <kaber@trash.net>
7009 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7010 L:      netfilter-devel@vger.kernel.org
7011 L:      coreteam@netfilter.org
7012 W:      http://www.netfilter.org/
7013 W:      http://www.iptables.org/
7014 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7017 S:      Supported
7018 F:      include/linux/netfilter*
7019 F:      include/linux/netfilter/
7020 F:      include/net/netfilter/
7021 F:      include/uapi/linux/netfilter*
7022 F:      include/uapi/linux/netfilter/
7023 F:      net/*/netfilter.c
7024 F:      net/*/netfilter/
7025 F:      net/netfilter/
7026 F:      net/bridge/br_netfilter*.c
7027
7028 NETLABEL
7029 M:      Paul Moore <paul@paul-moore.com>
7030 W:      http://netlabel.sf.net
7031 L:      netdev@vger.kernel.org
7032 S:      Maintained
7033 F:      Documentation/netlabel/
7034 F:      include/net/netlabel.h
7035 F:      net/netlabel/
7036
7037 NETROM NETWORK LAYER
7038 M:      Ralf Baechle <ralf@linux-mips.org>
7039 L:      linux-hams@vger.kernel.org
7040 W:      http://www.linux-ax25.org/
7041 S:      Maintained
7042 F:      include/net/netrom.h
7043 F:      include/uapi/linux/netrom.h
7044 F:      net/netrom/
7045
7046 NETWORK BLOCK DEVICE (NBD)
7047 M:      Markus Pargmann <mpa@pengutronix.de>
7048 S:      Maintained
7049 L:      nbd-general@lists.sourceforge.net
7050 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7051 F:      Documentation/blockdev/nbd.txt
7052 F:      drivers/block/nbd.c
7053 F:      include/uapi/linux/nbd.h
7054
7055 NETWORK DROP MONITOR
7056 M:      Neil Horman <nhorman@tuxdriver.com>
7057 L:      netdev@vger.kernel.org
7058 S:      Maintained
7059 W:      https://fedorahosted.org/dropwatch/
7060 F:      net/core/drop_monitor.c
7061
7062 NETWORKING [GENERAL]
7063 M:      "David S. Miller" <davem@davemloft.net>
7064 L:      netdev@vger.kernel.org
7065 W:      http://www.linuxfoundation.org/en/Net
7066 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7069 S:      Maintained
7070 F:      net/
7071 F:      include/net/
7072 F:      include/linux/in.h
7073 F:      include/linux/net.h
7074 F:      include/linux/netdevice.h
7075 F:      include/uapi/linux/in.h
7076 F:      include/uapi/linux/net.h
7077 F:      include/uapi/linux/netdevice.h
7078 F:      include/uapi/linux/net_namespace.h
7079 F:      tools/net/
7080 F:      tools/testing/selftests/net/
7081 F:      lib/random32.c
7082 F:      lib/test_bpf.c
7083
7084 NETWORKING [IPv4/IPv6]
7085 M:      "David S. Miller" <davem@davemloft.net>
7086 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7087 M:      James Morris <jmorris@namei.org>
7088 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7089 M:      Patrick McHardy <kaber@trash.net>
7090 L:      netdev@vger.kernel.org
7091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7092 S:      Maintained
7093 F:      net/ipv4/
7094 F:      net/ipv6/
7095 F:      include/net/ip*
7096 F:      arch/x86/net/*
7097
7098 NETWORKING [IPSEC]
7099 M:      Steffen Klassert <steffen.klassert@secunet.com>
7100 M:      Herbert Xu <herbert@gondor.apana.org.au>
7101 M:      "David S. Miller" <davem@davemloft.net>
7102 L:      netdev@vger.kernel.org
7103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7105 S:      Maintained
7106 F:      net/core/flow.c
7107 F:      net/xfrm/
7108 F:      net/key/
7109 F:      net/ipv4/xfrm*
7110 F:      net/ipv4/esp4.c
7111 F:      net/ipv4/ah4.c
7112 F:      net/ipv4/ipcomp.c
7113 F:      net/ipv4/ip_vti.c
7114 F:      net/ipv6/xfrm*
7115 F:      net/ipv6/esp6.c
7116 F:      net/ipv6/ah6.c
7117 F:      net/ipv6/ipcomp6.c
7118 F:      net/ipv6/ip6_vti.c
7119 F:      include/uapi/linux/xfrm.h
7120 F:      include/net/xfrm.h
7121
7122 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7123 M:      Paul Moore <paul@paul-moore.com>
7124 L:      netdev@vger.kernel.org
7125 S:      Maintained
7126
7127 NETWORKING [WIRELESS]
7128 L:      linux-wireless@vger.kernel.org
7129 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7130
7131 NETWORKING DRIVERS
7132 L:      netdev@vger.kernel.org
7133 W:      http://www.linuxfoundation.org/en/Net
7134 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7137 S:      Odd Fixes
7138 F:      drivers/net/
7139 F:      include/linux/if_*
7140 F:      include/linux/netdevice.h
7141 F:      include/linux/arcdevice.h
7142 F:      include/linux/etherdevice.h
7143 F:      include/linux/fcdevice.h
7144 F:      include/linux/fddidevice.h
7145 F:      include/linux/hippidevice.h
7146 F:      include/linux/inetdevice.h
7147 F:      include/uapi/linux/if_*
7148 F:      include/uapi/linux/netdevice.h
7149
7150 NETWORKING DRIVERS (WIRELESS)
7151 M:      Kalle Valo <kvalo@codeaurora.org>
7152 L:      linux-wireless@vger.kernel.org
7153 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7155 S:      Maintained
7156 F:      drivers/net/wireless/
7157
7158 NETXEN (1/10) GbE SUPPORT
7159 M:      Manish Chopra <manish.chopra@qlogic.com>
7160 M:      Sony Chacko <sony.chacko@qlogic.com>
7161 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7162 L:      netdev@vger.kernel.org
7163 W:      http://www.qlogic.com
7164 S:      Supported
7165 F:      drivers/net/ethernet/qlogic/netxen/
7166
7167 NFC SUBSYSTEM
7168 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7169 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7170 M:      Samuel Ortiz <sameo@linux.intel.com>
7171 L:      linux-wireless@vger.kernel.org
7172 L:      linux-nfc@lists.01.org (subscribers-only)
7173 S:      Supported
7174 F:      net/nfc/
7175 F:      include/net/nfc/
7176 F:      include/uapi/linux/nfc.h
7177 F:      drivers/nfc/
7178 F:      include/linux/platform_data/pn544.h
7179 F:      Documentation/devicetree/bindings/net/nfc/
7180
7181 NFS, SUNRPC, AND LOCKD CLIENTS
7182 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7183 M:      Anna Schumaker <anna.schumaker@netapp.com>
7184 L:      linux-nfs@vger.kernel.org
7185 W:      http://client.linux-nfs.org
7186 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7187 S:      Maintained
7188 F:      fs/lockd/
7189 F:      fs/nfs/
7190 F:      fs/nfs_common/
7191 F:      net/sunrpc/
7192 F:      include/linux/lockd/
7193 F:      include/linux/nfs*
7194 F:      include/linux/sunrpc/
7195 F:      include/uapi/linux/nfs*
7196 F:      include/uapi/linux/sunrpc/
7197
7198 NILFS2 FILESYSTEM
7199 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7200 L:      linux-nilfs@vger.kernel.org
7201 W:      http://nilfs.sourceforge.net/
7202 T:      git git://github.com/konis/nilfs2.git
7203 S:      Supported
7204 F:      Documentation/filesystems/nilfs2.txt
7205 F:      fs/nilfs2/
7206 F:      include/linux/nilfs2_fs.h
7207
7208 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7209 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7210 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7211 S:      Maintained
7212 F:      Documentation/scsi/NinjaSCSI.txt
7213 F:      drivers/scsi/pcmcia/nsp_*
7214
7215 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7216 M:      GOTO Masanori <gotom@debian.or.jp>
7217 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7218 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7219 S:      Maintained
7220 F:      Documentation/scsi/NinjaSCSI.txt
7221 F:      drivers/scsi/nsp32*
7222
7223 NIOS2 ARCHITECTURE
7224 M:      Ley Foon Tan <lftan@altera.com>
7225 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7226 T:      git git://git.rocketboards.org/linux-socfpga-next.git
7227 S:      Maintained
7228 F:      arch/nios2/
7229
7230 NOKIA N900 POWER SUPPLY DRIVERS
7231 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7232 S:      Maintained
7233 F:      include/linux/power/bq2415x_charger.h
7234 F:      include/linux/power/bq27x00_battery.h
7235 F:      include/linux/power/isp1704_charger.h
7236 F:      drivers/power/bq2415x_charger.c
7237 F:      drivers/power/bq27x00_battery.c
7238 F:      drivers/power/isp1704_charger.c
7239 F:      drivers/power/rx51_battery.c
7240
7241 NTB DRIVER CORE
7242 M:      Jon Mason <jdmason@kudzu.us>
7243 M:      Dave Jiang <dave.jiang@intel.com>
7244 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7245 S:      Supported
7246 W:      https://github.com/jonmason/ntb/wiki
7247 T:      git git://github.com/jonmason/ntb.git
7248 F:      drivers/ntb/
7249 F:      drivers/net/ntb_netdev.c
7250 F:      include/linux/ntb.h
7251 F:      include/linux/ntb_transport.h
7252
7253 NTB INTEL DRIVER
7254 M:      Jon Mason <jdmason@kudzu.us>
7255 M:      Dave Jiang <dave.jiang@intel.com>
7256 S:      Supported
7257 W:      https://github.com/jonmason/ntb/wiki
7258 T:      git git://github.com/jonmason/ntb.git
7259 F:      drivers/ntb/hw/intel/
7260
7261 NTFS FILESYSTEM
7262 M:      Anton Altaparmakov <anton@tuxera.com>
7263 L:      linux-ntfs-dev@lists.sourceforge.net
7264 W:      http://www.tuxera.com/
7265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7266 S:      Supported
7267 F:      Documentation/filesystems/ntfs.txt
7268 F:      fs/ntfs/
7269
7270 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7271 M:      Antonino Daplas <adaplas@gmail.com>
7272 L:      linux-fbdev@vger.kernel.org
7273 S:      Maintained
7274 F:      drivers/video/fbdev/riva/
7275 F:      drivers/video/fbdev/nvidia/
7276
7277 NVM EXPRESS DRIVER
7278 M:      Matthew Wilcox <willy@linux.intel.com>
7279 L:      linux-nvme@lists.infradead.org
7280 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7281 S:      Supported
7282 F:      drivers/block/nvme*
7283 F:      include/linux/nvme.h
7284
7285 NXP-NCI NFC DRIVER
7286 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7287 R:      Charles Gorand <charles.gorand@effinnov.com>
7288 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7289 S:      Supported
7290 F:      drivers/nfc/nxp-nci
7291
7292 NXP TDA998X DRM DRIVER
7293 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7294 S:      Supported
7295 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7296 F:      include/drm/i2c/tda998x.h
7297
7298 NXP TFA9879 DRIVER
7299 M:      Peter Rosin <peda@axentia.se>
7300 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7301 S:      Maintained
7302 F:      sound/soc/codecs/tfa9879*
7303
7304 OMAP SUPPORT
7305 M:      Tony Lindgren <tony@atomide.com>
7306 L:      linux-omap@vger.kernel.org
7307 W:      http://www.muru.com/linux/omap/
7308 W:      http://linux.omap.com/
7309 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7311 S:      Maintained
7312 F:      arch/arm/*omap*/
7313 F:      arch/arm/configs/omap1_defconfig
7314 F:      arch/arm/configs/omap2plus_defconfig
7315 F:      drivers/i2c/busses/i2c-omap.c
7316 F:      drivers/irqchip/irq-omap-intc.c
7317 F:      drivers/mfd/*omap*.c
7318 F:      drivers/mfd/menelaus.c
7319 F:      drivers/mfd/palmas.c
7320 F:      drivers/mfd/tps65217.c
7321 F:      drivers/mfd/tps65218.c
7322 F:      drivers/mfd/tps65910.c
7323 F:      drivers/mfd/twl-core.[ch]
7324 F:      drivers/mfd/twl4030*.c
7325 F:      drivers/mfd/twl6030*.c
7326 F:      drivers/mfd/twl6040*.c
7327 F:      drivers/regulator/palmas-regulator*.c
7328 F:      drivers/regulator/pbias-regulator.c
7329 F:      drivers/regulator/tps65217-regulator.c
7330 F:      drivers/regulator/tps65218-regulator.c
7331 F:      drivers/regulator/tps65910-regulator.c
7332 F:      drivers/regulator/twl-regulator.c
7333 F:      include/linux/i2c-omap.h
7334
7335 OMAP DEVICE TREE SUPPORT
7336 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7337 M:      Tony Lindgren <tony@atomide.com>
7338 L:      linux-omap@vger.kernel.org
7339 L:      devicetree@vger.kernel.org
7340 S:      Maintained
7341 F:      arch/arm/boot/dts/*omap*
7342 F:      arch/arm/boot/dts/*am3*
7343 F:      arch/arm/boot/dts/*am4*
7344 F:      arch/arm/boot/dts/*am5*
7345 F:      arch/arm/boot/dts/*dra7*
7346
7347 OMAP CLOCK FRAMEWORK SUPPORT
7348 M:      Paul Walmsley <paul@pwsan.com>
7349 L:      linux-omap@vger.kernel.org
7350 S:      Maintained
7351 F:      arch/arm/*omap*/*clock*
7352
7353 OMAP POWER MANAGEMENT SUPPORT
7354 M:      Kevin Hilman <khilman@deeprootsystems.com>
7355 L:      linux-omap@vger.kernel.org
7356 S:      Maintained
7357 F:      arch/arm/*omap*/*pm*
7358 F:      drivers/cpufreq/omap-cpufreq.c
7359
7360 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7361 M:      Rajendra Nayak <rnayak@ti.com>
7362 M:      Paul Walmsley <paul@pwsan.com>
7363 L:      linux-omap@vger.kernel.org
7364 S:      Maintained
7365 F:      arch/arm/mach-omap2/prm*
7366
7367 OMAP AUDIO SUPPORT
7368 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7369 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7370 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7371 L:      linux-omap@vger.kernel.org
7372 S:      Maintained
7373 F:      sound/soc/omap/
7374
7375 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7376 M:      Roger Quadros <rogerq@ti.com>
7377 M:      Tony Lindgren <tony@atomide.com>
7378 L:      linux-omap@vger.kernel.org
7379 S:      Maintained
7380 F:      drivers/memory/omap-gpmc.c
7381 F:      arch/arm/mach-omap2/*gpmc*
7382
7383 OMAP FRAMEBUFFER SUPPORT
7384 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7385 L:      linux-fbdev@vger.kernel.org
7386 L:      linux-omap@vger.kernel.org
7387 S:      Maintained
7388 F:      drivers/video/fbdev/omap/
7389
7390 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7391 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7392 L:      linux-omap@vger.kernel.org
7393 L:      linux-fbdev@vger.kernel.org
7394 S:      Maintained
7395 F:      drivers/video/fbdev/omap2/
7396 F:      Documentation/arm/OMAP/DSS
7397
7398 OMAP HARDWARE SPINLOCK SUPPORT
7399 M:      Ohad Ben-Cohen <ohad@wizery.com>
7400 L:      linux-omap@vger.kernel.org
7401 S:      Maintained
7402 F:      drivers/hwspinlock/omap_hwspinlock.c
7403
7404 OMAP MMC SUPPORT
7405 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7406 L:      linux-omap@vger.kernel.org
7407 S:      Maintained
7408 F:      drivers/mmc/host/omap.c
7409
7410 OMAP HS MMC SUPPORT
7411 L:      linux-mmc@vger.kernel.org
7412 L:      linux-omap@vger.kernel.org
7413 S:      Orphan
7414 F:      drivers/mmc/host/omap_hsmmc.c
7415
7416 OMAP RANDOM NUMBER GENERATOR SUPPORT
7417 M:      Deepak Saxena <dsaxena@plexity.net>
7418 S:      Maintained
7419 F:      drivers/char/hw_random/omap-rng.c
7420
7421 OMAP HWMOD SUPPORT
7422 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7423 M:      Paul Walmsley <paul@pwsan.com>
7424 L:      linux-omap@vger.kernel.org
7425 S:      Maintained
7426 F:      arch/arm/mach-omap2/omap_hwmod.*
7427
7428 OMAP HWMOD DATA
7429 M:      Paul Walmsley <paul@pwsan.com>
7430 L:      linux-omap@vger.kernel.org
7431 S:      Maintained
7432 F:      arch/arm/mach-omap2/omap_hwmod*data*
7433
7434 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7435 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7436 L:      linux-omap@vger.kernel.org
7437 S:      Maintained
7438 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7439
7440 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7441 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7442 L:      linux-media@vger.kernel.org
7443 S:      Maintained
7444 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7445 F:      drivers/media/platform/omap3isp/
7446 F:      drivers/staging/media/omap4iss/
7447
7448 OMAP USB SUPPORT
7449 M:      Felipe Balbi <balbi@ti.com>
7450 L:      linux-usb@vger.kernel.org
7451 L:      linux-omap@vger.kernel.org
7452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7453 S:      Maintained
7454 F:      drivers/usb/*/*omap*
7455 F:      arch/arm/*omap*/usb*
7456
7457 OMAP GPIO DRIVER
7458 M:      Javier Martinez Canillas <javier@dowhile0.org>
7459 M:      Santosh Shilimkar <ssantosh@kernel.org>
7460 M:      Kevin Hilman <khilman@deeprootsystems.com>
7461 L:      linux-omap@vger.kernel.org
7462 S:      Maintained
7463 F:      drivers/gpio/gpio-omap.c
7464
7465 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7466 M:      Mark Jackson <mpfj@newflow.co.uk>
7467 L:      linux-omap@vger.kernel.org
7468 S:      Maintained
7469 F:      arch/arm/boot/dts/am335x-nano.dts
7470
7471 OMFS FILESYSTEM
7472 M:      Bob Copeland <me@bobcopeland.com>
7473 L:      linux-karma-devel@lists.sourceforge.net
7474 S:      Maintained
7475 F:      Documentation/filesystems/omfs.txt
7476 F:      fs/omfs/
7477
7478 OMNIKEY CARDMAN 4000 DRIVER
7479 M:      Harald Welte <laforge@gnumonks.org>
7480 S:      Maintained
7481 F:      drivers/char/pcmcia/cm4000_cs.c
7482 F:      include/linux/cm4000_cs.h
7483 F:      include/uapi/linux/cm4000_cs.h
7484
7485 OMNIKEY CARDMAN 4040 DRIVER
7486 M:      Harald Welte <laforge@gnumonks.org>
7487 S:      Maintained
7488 F:      drivers/char/pcmcia/cm4040_cs.*
7489
7490 OMNIVISION OV7670 SENSOR DRIVER
7491 M:      Jonathan Corbet <corbet@lwn.net>
7492 L:      linux-media@vger.kernel.org
7493 T:      git git://linuxtv.org/media_tree.git
7494 S:      Maintained
7495 F:      drivers/media/i2c/ov7670.c
7496
7497 ONENAND FLASH DRIVER
7498 M:      Kyungmin Park <kyungmin.park@samsung.com>
7499 L:      linux-mtd@lists.infradead.org
7500 S:      Maintained
7501 F:      drivers/mtd/onenand/
7502 F:      include/linux/mtd/onenand*.h
7503
7504 ONSTREAM SCSI TAPE DRIVER
7505 M:      Willem Riede <osst@riede.org>
7506 L:      osst-users@lists.sourceforge.net
7507 L:      linux-scsi@vger.kernel.org
7508 S:      Maintained
7509 F:      Documentation/scsi/osst.txt
7510 F:      drivers/scsi/osst.*
7511 F:      drivers/scsi/osst_*.h
7512 F:      drivers/scsi/st.h
7513
7514 OPENCORES I2C BUS DRIVER
7515 M:      Peter Korsgaard <jacmet@sunsite.dk>
7516 L:      linux-i2c@vger.kernel.org
7517 S:      Maintained
7518 F:      Documentation/i2c/busses/i2c-ocores
7519 F:      drivers/i2c/busses/i2c-ocores.c
7520
7521 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7522 M:      Grant Likely <grant.likely@linaro.org>
7523 M:      Rob Herring <robh+dt@kernel.org>
7524 L:      devicetree@vger.kernel.org
7525 W:      http://www.devicetree.org/
7526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7527 S:      Maintained
7528 F:      drivers/of/
7529 F:      include/linux/of*.h
7530 F:      scripts/dtc/
7531
7532 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7533 M:      Rob Herring <robh+dt@kernel.org>
7534 M:      Pawel Moll <pawel.moll@arm.com>
7535 M:      Mark Rutland <mark.rutland@arm.com>
7536 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7537 M:      Kumar Gala <galak@codeaurora.org>
7538 L:      devicetree@vger.kernel.org
7539 S:      Maintained
7540 F:      Documentation/devicetree/
7541 F:      arch/*/boot/dts/
7542 F:      include/dt-bindings/
7543
7544 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7545 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7546 L:      devicetree@vger.kernel.org
7547 S:      Maintained
7548 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7549 F:      Documentation/devicetree/overlay-notes.txt
7550 F:      drivers/of/overlay.c
7551 F:      drivers/of/resolver.c
7552
7553 OPENRISC ARCHITECTURE
7554 M:      Jonas Bonn <jonas@southpole.se>
7555 W:      http://openrisc.net
7556 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7557 S:      Maintained
7558 T:      git git://openrisc.net/~jonas/linux
7559 F:      arch/openrisc/
7560
7561 OPENVSWITCH
7562 M:      Pravin Shelar <pshelar@nicira.com>
7563 L:      netdev@vger.kernel.org
7564 L:      dev@openvswitch.org
7565 W:      http://openvswitch.org
7566 S:      Maintained
7567 F:      net/openvswitch/
7568 F:      include/uapi/linux/openvswitch.h
7569
7570 OPL4 DRIVER
7571 M:      Clemens Ladisch <clemens@ladisch.de>
7572 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7573 T:      git git://git.alsa-project.org/alsa-kernel.git
7574 S:      Maintained
7575 F:      sound/drivers/opl4/
7576
7577 OPROFILE
7578 M:      Robert Richter <rric@kernel.org>
7579 L:      oprofile-list@lists.sf.net
7580 S:      Maintained
7581 F:      arch/*/include/asm/oprofile*.h
7582 F:      arch/*/oprofile/
7583 F:      drivers/oprofile/
7584 F:      include/linux/oprofile.h
7585
7586 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7587 M:      Mark Fasheh <mfasheh@suse.com>
7588 M:      Joel Becker <jlbec@evilplan.org>
7589 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7590 W:      http://ocfs2.wiki.kernel.org
7591 S:      Supported
7592 F:      Documentation/filesystems/ocfs2.txt
7593 F:      Documentation/filesystems/dlmfs.txt
7594 F:      fs/ocfs2/
7595
7596 ORINOCO DRIVER
7597 L:      linux-wireless@vger.kernel.org
7598 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7599 W:      http://www.nongnu.org/orinoco/
7600 S:      Orphan
7601 F:      drivers/net/wireless/orinoco/
7602
7603 OSD LIBRARY and FILESYSTEM
7604 M:      Boaz Harrosh <ooo@electrozaur.com>
7605 M:      Benny Halevy <bhalevy@primarydata.com>
7606 L:      osd-dev@open-osd.org
7607 W:      http://open-osd.org
7608 T:      git git://git.open-osd.org/open-osd.git
7609 S:      Maintained
7610 F:      drivers/scsi/osd/
7611 F:      include/scsi/osd_*
7612 F:      fs/exofs/
7613
7614 OVERLAY FILESYSTEM
7615 M:      Miklos Szeredi <miklos@szeredi.hu>
7616 L:      linux-unionfs@vger.kernel.org
7617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7618 S:      Supported
7619 F:      fs/overlayfs/
7620 F:      Documentation/filesystems/overlayfs.txt
7621
7622 P54 WIRELESS DRIVER
7623 M:      Christian Lamparter <chunkeey@googlemail.com>
7624 L:      linux-wireless@vger.kernel.org
7625 W:      http://wireless.kernel.org/en/users/Drivers/p54
7626 S:      Maintained
7627 F:      drivers/net/wireless/p54/
7628
7629 PA SEMI ETHERNET DRIVER
7630 M:      Olof Johansson <olof@lixom.net>
7631 L:      netdev@vger.kernel.org
7632 S:      Maintained
7633 F:      drivers/net/ethernet/pasemi/*
7634
7635 PA SEMI SMBUS DRIVER
7636 M:      Olof Johansson <olof@lixom.net>
7637 L:      linux-i2c@vger.kernel.org
7638 S:      Maintained
7639 F:      drivers/i2c/busses/i2c-pasemi.c
7640
7641 PADATA PARALLEL EXECUTION MECHANISM
7642 M:      Steffen Klassert <steffen.klassert@secunet.com>
7643 L:      linux-crypto@vger.kernel.org
7644 S:      Maintained
7645 F:      kernel/padata.c
7646 F:      include/linux/padata.h
7647 F:      Documentation/padata.txt
7648
7649 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7650 M:      Harald Welte <laforge@gnumonks.org>
7651 L:      platform-driver-x86@vger.kernel.org
7652 S:      Maintained
7653 F:      drivers/platform/x86/panasonic-laptop.c
7654
7655 PANASONIC MN10300/AM33/AM34 PORT
7656 M:      David Howells <dhowells@redhat.com>
7657 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7658 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7659 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7660 S:      Maintained
7661 F:      Documentation/mn10300/
7662 F:      arch/mn10300/
7663
7664 PARALLEL PORT SUBSYSTEM
7665 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7666 M:      Sudip Mukherjee <sudip@vectorindia.org>
7667 L:      linux-parport@lists.infradead.org (subscribers-only)
7668 S:      Maintained
7669 F:      drivers/parport/
7670 F:      include/linux/parport*.h
7671 F:      drivers/char/ppdev.c
7672 F:      include/uapi/linux/ppdev.h
7673 F:      Documentation/parport*.txt
7674
7675 PARAVIRT_OPS INTERFACE
7676 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7677 M:      Chris Wright <chrisw@sous-sol.org>
7678 M:      Alok Kataria <akataria@vmware.com>
7679 M:      Rusty Russell <rusty@rustcorp.com.au>
7680 L:      virtualization@lists.linux-foundation.org
7681 S:      Supported
7682 F:      Documentation/virtual/paravirt_ops.txt
7683 F:      arch/*/kernel/paravirt*
7684 F:      arch/*/include/asm/paravirt.h
7685
7686 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7687 M:      Tim Waugh <tim@cyberelk.net>
7688 L:      linux-parport@lists.infradead.org (subscribers-only)
7689 S:      Maintained
7690 F:      Documentation/blockdev/paride.txt
7691 F:      drivers/block/paride/
7692
7693 PARISC ARCHITECTURE
7694 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7695 M:      Helge Deller <deller@gmx.de>
7696 L:      linux-parisc@vger.kernel.org
7697 W:      http://www.parisc-linux.org/
7698 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7701 S:      Maintained
7702 F:      arch/parisc/
7703 F:      Documentation/parisc/
7704 F:      drivers/parisc/
7705 F:      drivers/char/agp/parisc-agp.c
7706 F:      drivers/input/serio/gscps2.c
7707 F:      drivers/parport/parport_gsc.*
7708 F:      drivers/tty/serial/8250/8250_gsc.c
7709 F:      drivers/video/fbdev/sti*
7710 F:      drivers/video/console/sti*
7711 F:      drivers/video/logo/logo_parisc*
7712
7713 PC87360 HARDWARE MONITORING DRIVER
7714 M:      Jim Cromie <jim.cromie@gmail.com>
7715 L:      lm-sensors@lm-sensors.org
7716 S:      Maintained
7717 F:      Documentation/hwmon/pc87360
7718 F:      drivers/hwmon/pc87360.c
7719
7720 PC8736x GPIO DRIVER
7721 M:      Jim Cromie <jim.cromie@gmail.com>
7722 S:      Maintained
7723 F:      drivers/char/pc8736x_gpio.c
7724
7725 PC87427 HARDWARE MONITORING DRIVER
7726 M:      Jean Delvare <jdelvare@suse.com>
7727 L:      lm-sensors@lm-sensors.org
7728 S:      Maintained
7729 F:      Documentation/hwmon/pc87427
7730 F:      drivers/hwmon/pc87427.c
7731
7732 PCA9532 LED DRIVER
7733 M:      Riku Voipio <riku.voipio@iki.fi>
7734 S:      Maintained
7735 F:      drivers/leds/leds-pca9532.c
7736 F:      include/linux/leds-pca9532.h
7737
7738 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7739 M:      Guenter Roeck <linux@roeck-us.net>
7740 L:      linux-i2c@vger.kernel.org
7741 S:      Maintained
7742 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7743
7744 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7745 M:      Khalid Aziz <khalid@gonehiking.org>
7746 S:      Maintained
7747 F:      drivers/firmware/pcdp.*
7748
7749 PCI ERROR RECOVERY
7750 M:      Linas Vepstas <linasvepstas@gmail.com>
7751 L:      linux-pci@vger.kernel.org
7752 S:      Supported
7753 F:      Documentation/PCI/pci-error-recovery.txt
7754
7755 PCI SUBSYSTEM
7756 M:      Bjorn Helgaas <bhelgaas@google.com>
7757 L:      linux-pci@vger.kernel.org
7758 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7760 S:      Supported
7761 F:      Documentation/PCI/
7762 F:      drivers/pci/
7763 F:      include/linux/pci*
7764 F:      arch/x86/pci/
7765 F:      arch/x86/kernel/quirks.c
7766
7767 PCI DRIVER FOR ARM VERSATILE PLATFORM
7768 M:      Rob Herring <robh@kernel.org>
7769 L:      linux-pci@vger.kernel.org
7770 L:      linux-arm-kernel@lists.infradead.org
7771 S:      Maintained
7772 F:      Documentation/devicetree/bindings/pci/versatile.txt
7773 F:      drivers/pci/host/pci-versatile.c
7774
7775 PCI DRIVER FOR APPLIEDMICRO XGENE
7776 M:      Tanmay Inamdar <tinamdar@apm.com>
7777 L:      linux-pci@vger.kernel.org
7778 L:      linux-arm-kernel@lists.infradead.org
7779 S:      Maintained
7780 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7781 F:      drivers/pci/host/pci-xgene.c
7782
7783 PCI DRIVER FOR FREESCALE LAYERSCAPE
7784 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7785 M:      Mingkai Hu <mingkai.hu@freescale.com>
7786 M:      Roy Zang <tie-fei.zang@freescale.com>
7787 L:      linuxppc-dev@lists.ozlabs.org
7788 L:      linux-pci@vger.kernel.org
7789 L:      linux-arm-kernel@lists.infradead.org
7790 S:      Maintained
7791 F:      drivers/pci/host/*layerscape*
7792
7793 PCI DRIVER FOR IMX6
7794 M:      Richard Zhu <Richard.Zhu@freescale.com>
7795 M:      Lucas Stach <l.stach@pengutronix.de>
7796 L:      linux-pci@vger.kernel.org
7797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7798 S:      Maintained
7799 F:      drivers/pci/host/*imx6*
7800
7801 PCI DRIVER FOR TI KEYSTONE
7802 M:      Murali Karicheri <m-karicheri2@ti.com>
7803 L:      linux-pci@vger.kernel.org
7804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7805 S:      Maintained
7806 F:      drivers/pci/host/*keystone*
7807
7808 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7809 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7810 M:      Jason Cooper <jason@lakedaemon.net>
7811 L:      linux-pci@vger.kernel.org
7812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7813 S:      Maintained
7814 F:      drivers/pci/host/*mvebu*
7815
7816 PCI DRIVER FOR NVIDIA TEGRA
7817 M:      Thierry Reding <thierry.reding@gmail.com>
7818 L:      linux-tegra@vger.kernel.org
7819 L:      linux-pci@vger.kernel.org
7820 S:      Supported
7821 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
7822 F:      drivers/pci/host/pci-tegra.c
7823
7824 PCI DRIVER FOR TI DRA7XX
7825 M:      Kishon Vijay Abraham I <kishon@ti.com>
7826 L:      linux-omap@vger.kernel.org
7827 L:      linux-pci@vger.kernel.org
7828 S:      Supported
7829 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
7830 F:      drivers/pci/host/pci-dra7xx.c
7831
7832 PCI DRIVER FOR RENESAS R-CAR
7833 M:      Simon Horman <horms@verge.net.au>
7834 L:      linux-pci@vger.kernel.org
7835 L:      linux-sh@vger.kernel.org
7836 S:      Maintained
7837 F:      drivers/pci/host/*rcar*
7838
7839 PCI DRIVER FOR SAMSUNG EXYNOS
7840 M:      Jingoo Han <jingoohan1@gmail.com>
7841 L:      linux-pci@vger.kernel.org
7842 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7843 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7844 S:      Maintained
7845 F:      drivers/pci/host/pci-exynos.c
7846
7847 PCI DRIVER FOR SYNOPSIS DESIGNWARE
7848 M:      Jingoo Han <jingoohan1@gmail.com>
7849 M:      Pratyush Anand <pratyush.anand@gmail.com>
7850 L:      linux-pci@vger.kernel.org
7851 S:      Maintained
7852 F:      drivers/pci/host/*designware*
7853
7854 PCI DRIVER FOR GENERIC OF HOSTS
7855 M:      Will Deacon <will.deacon@arm.com>
7856 L:      linux-pci@vger.kernel.org
7857 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7858 S:      Maintained
7859 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
7860 F:      drivers/pci/host/pci-host-generic.c
7861
7862 PCIE DRIVER FOR ST SPEAR13XX
7863 M:      Pratyush Anand <pratyush.anand@gmail.com>
7864 L:      linux-pci@vger.kernel.org
7865 S:      Maintained
7866 F:      drivers/pci/host/*spear*
7867
7868 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
7869 M:      Duc Dang <dhdang@apm.com>
7870 L:      linux-pci@vger.kernel.org
7871 L:      linux-arm-kernel@lists.infradead.org
7872 S:      Maintained
7873 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
7874 F:      drivers/pci/host/pci-xgene-msi.c
7875
7876 PCMCIA SUBSYSTEM
7877 P:      Linux PCMCIA Team
7878 L:      linux-pcmcia@lists.infradead.org
7879 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
7880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
7881 S:      Maintained
7882 F:      Documentation/pcmcia/
7883 F:      drivers/pcmcia/
7884 F:      include/pcmcia/
7885
7886 PCNET32 NETWORK DRIVER
7887 M:      Don Fry <pcnet32@frontier.com>
7888 L:      netdev@vger.kernel.org
7889 S:      Maintained
7890 F:      drivers/net/ethernet/amd/pcnet32.c
7891
7892 PCRYPT PARALLEL CRYPTO ENGINE
7893 M:      Steffen Klassert <steffen.klassert@secunet.com>
7894 L:      linux-crypto@vger.kernel.org
7895 S:      Maintained
7896 F:      crypto/pcrypt.c
7897 F:      include/crypto/pcrypt.h
7898
7899 PER-CPU MEMORY ALLOCATOR
7900 M:      Tejun Heo <tj@kernel.org>
7901 M:      Christoph Lameter <cl@linux-foundation.org>
7902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
7903 S:      Maintained
7904 F:      include/linux/percpu*.h
7905 F:      mm/percpu*.c
7906 F:      arch/*/include/asm/percpu.h
7907
7908 PER-TASK DELAY ACCOUNTING
7909 M:      Balbir Singh <bsingharora@gmail.com>
7910 S:      Maintained
7911 F:      include/linux/delayacct.h
7912 F:      kernel/delayacct.c
7913
7914 PERFORMANCE EVENTS SUBSYSTEM
7915 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
7916 M:      Ingo Molnar <mingo@redhat.com>
7917 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
7918 L:      linux-kernel@vger.kernel.org
7919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
7920 S:      Supported
7921 F:      kernel/events/*
7922 F:      include/linux/perf_event.h
7923 F:      include/uapi/linux/perf_event.h
7924 F:      arch/*/kernel/perf_event*.c
7925 F:      arch/*/kernel/*/perf_event*.c
7926 F:      arch/*/kernel/*/*/perf_event*.c
7927 F:      arch/*/include/asm/perf_event.h
7928 F:      arch/*/kernel/perf_callchain.c
7929 F:      tools/perf/
7930
7931 PERSONALITY HANDLING
7932 M:      Christoph Hellwig <hch@infradead.org>
7933 L:      linux-abi-devel@lists.sourceforge.net
7934 S:      Maintained
7935 F:      include/linux/personality.h
7936 F:      include/uapi/linux/personality.h
7937
7938 PHONET PROTOCOL
7939 M:      Remi Denis-Courmont <courmisch@gmail.com>
7940 S:      Supported
7941 F:      Documentation/networking/phonet.txt
7942 F:      include/linux/phonet.h
7943 F:      include/net/phonet/
7944 F:      include/uapi/linux/phonet.h
7945 F:      net/phonet/
7946
7947 PHRAM MTD DRIVER
7948 M:      Joern Engel <joern@lazybastard.org>
7949 L:      linux-mtd@lists.infradead.org
7950 S:      Maintained
7951 F:      drivers/mtd/devices/phram.c
7952
7953 PICOLCD HID DRIVER
7954 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
7955 L:      linux-input@vger.kernel.org
7956 S:      Maintained
7957 F:      drivers/hid/hid-picolcd*
7958
7959 PICOXCELL SUPPORT
7960 M:      Jamie Iles <jamie@jamieiles.com>
7961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7962 T:      git git://github.com/jamieiles/linux-2.6-ji.git
7963 S:      Supported
7964 F:      arch/arm/boot/dts/picoxcell*
7965 F:      arch/arm/mach-picoxcell/
7966 F:      drivers/crypto/picoxcell*
7967
7968 PIN CONTROL SUBSYSTEM
7969 M:      Linus Walleij <linus.walleij@linaro.org>
7970 L:      linux-gpio@vger.kernel.org
7971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
7972 S:      Maintained
7973 F:      drivers/pinctrl/
7974 F:      include/linux/pinctrl/
7975
7976 PIN CONTROLLER - ATMEL AT91
7977 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
7978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7979 S:      Maintained
7980 F:      drivers/pinctrl/pinctrl-at91.*
7981
7982 PIN CONTROLLER - INTEL
7983 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7984 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
7985 S:      Maintained
7986 F:      drivers/pinctrl/intel/
7987
7988 PIN CONTROLLER - RENESAS
7989 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7990 L:      linux-sh@vger.kernel.org
7991 S:      Maintained
7992 F:      drivers/pinctrl/sh-pfc/
7993
7994 PIN CONTROLLER - SAMSUNG
7995 M:      Tomasz Figa <tomasz.figa@gmail.com>
7996 M:      Thomas Abraham <thomas.abraham@linaro.org>
7997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7998 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7999 S:      Maintained
8000 F:      drivers/pinctrl/samsung/
8001
8002 PIN CONTROLLER - ST SPEAR
8003 M:      Viresh Kumar <vireshk@kernel.org>
8004 L:      spear-devel@list.st.com
8005 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8006 W:      http://www.st.com/spear
8007 S:      Maintained
8008 F:      drivers/pinctrl/spear/
8009
8010 PKTCDVD DRIVER
8011 M:      Jiri Kosina <jkosina@suse.com>
8012 S:      Maintained
8013 F:      drivers/block/pktcdvd.c
8014 F:      include/linux/pktcdvd.h
8015 F:      include/uapi/linux/pktcdvd.h
8016
8017 PKUNITY SOC DRIVERS
8018 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8019 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8020 S:      Maintained
8021 T:      git git://github.com/gxt/linux.git
8022 F:      drivers/input/serio/i8042-unicore32io.h
8023 F:      drivers/i2c/busses/i2c-puv3.c
8024 F:      drivers/video/fbdev/fb-puv3.c
8025 F:      drivers/rtc/rtc-puv3.c
8026
8027 PMBUS HARDWARE MONITORING DRIVERS
8028 M:      Guenter Roeck <linux@roeck-us.net>
8029 L:      lm-sensors@lm-sensors.org
8030 W:      http://www.lm-sensors.org/
8031 W:      http://www.roeck-us.net/linux/drivers/
8032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8033 S:      Maintained
8034 F:      Documentation/hwmon/pmbus
8035 F:      drivers/hwmon/pmbus/
8036 F:      include/linux/i2c/pmbus.h
8037
8038 PMC SIERRA MaxRAID DRIVER
8039 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
8040 L:      linux-scsi@vger.kernel.org
8041 W:      http://www.pmc-sierra.com/
8042 S:      Supported
8043 F:      drivers/scsi/pmcraid.*
8044
8045 PMC SIERRA PM8001 DRIVER
8046 M:      xjtuwjp@gmail.com
8047 M:      lindar_liu@usish.com
8048 L:      pmchba@pmcs.com
8049 L:      linux-scsi@vger.kernel.org
8050 S:      Supported
8051 F:      drivers/scsi/pm8001/
8052
8053 POSIX CLOCKS and TIMERS
8054 M:      Thomas Gleixner <tglx@linutronix.de>
8055 L:      linux-kernel@vger.kernel.org
8056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8057 S:      Maintained
8058 F:      fs/timerfd.c
8059 F:      include/linux/timer*
8060 F:      kernel/time/*timer*
8061
8062 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8063 M:      Sebastian Reichel <sre@kernel.org>
8064 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8065 M:      David Woodhouse <dwmw2@infradead.org>
8066 L:      linux-pm@vger.kernel.org
8067 T:      git git://git.infradead.org/battery-2.6.git
8068 S:      Maintained
8069 F:      include/linux/power_supply.h
8070 F:      drivers/power/
8071
8072 PNP SUPPORT
8073 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8074 S:      Maintained
8075 F:      drivers/pnp/
8076
8077 PNXxxxx I2C DRIVER
8078 M:      Vitaly Wool <vitalywool@gmail.com>
8079 L:      linux-i2c@vger.kernel.org
8080 S:      Maintained
8081 F:      drivers/i2c/busses/i2c-pnx.c
8082
8083 PPP PROTOCOL DRIVERS AND COMPRESSORS
8084 M:      Paul Mackerras <paulus@samba.org>
8085 L:      linux-ppp@vger.kernel.org
8086 S:      Maintained
8087 F:      drivers/net/ppp/ppp_*
8088
8089 PPP OVER ATM (RFC 2364)
8090 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8091 S:      Maintained
8092 F:      net/atm/pppoatm.c
8093 F:      include/uapi/linux/atmppp.h
8094
8095 PPP OVER ETHERNET
8096 M:      Michal Ostrowski <mostrows@earthlink.net>
8097 S:      Maintained
8098 F:      drivers/net/ppp/pppoe.c
8099 F:      drivers/net/ppp/pppox.c
8100
8101 PPP OVER L2TP
8102 M:      James Chapman <jchapman@katalix.com>
8103 S:      Maintained
8104 F:      net/l2tp/l2tp_ppp.c
8105 F:      include/linux/if_pppol2tp.h
8106 F:      include/uapi/linux/if_pppol2tp.h
8107
8108 PPS SUPPORT
8109 M:      Rodolfo Giometti <giometti@enneenne.com>
8110 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8111 L:      linuxpps@ml.enneenne.com (subscribers-only)
8112 S:      Maintained
8113 F:      Documentation/pps/
8114 F:      drivers/pps/
8115 F:      include/linux/pps*.h
8116
8117 PPTP DRIVER
8118 M:      Dmitry Kozlov <xeb@mail.ru>
8119 L:      netdev@vger.kernel.org
8120 S:      Maintained
8121 F:      drivers/net/ppp/pptp.c
8122 W:      http://sourceforge.net/projects/accel-pptp
8123
8124 PREEMPTIBLE KERNEL
8125 M:      Robert Love <rml@tech9.net>
8126 L:      kpreempt-tech@lists.sourceforge.net
8127 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8128 S:      Supported
8129 F:      Documentation/preempt-locking.txt
8130 F:      include/linux/preempt.h
8131
8132 PRISM54 WIRELESS DRIVER
8133 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8134 L:      linux-wireless@vger.kernel.org
8135 W:      http://wireless.kernel.org/en/users/Drivers/p54
8136 S:      Obsolete
8137 F:      drivers/net/wireless/prism54/
8138
8139 PS3 NETWORK SUPPORT
8140 M:      Geoff Levand <geoff@infradead.org>
8141 L:      netdev@vger.kernel.org
8142 L:      linuxppc-dev@lists.ozlabs.org
8143 S:      Maintained
8144 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8145
8146 PS3 PLATFORM SUPPORT
8147 M:      Geoff Levand <geoff@infradead.org>
8148 L:      linuxppc-dev@lists.ozlabs.org
8149 S:      Maintained
8150 F:      arch/powerpc/boot/ps3*
8151 F:      arch/powerpc/include/asm/lv1call.h
8152 F:      arch/powerpc/include/asm/ps3*.h
8153 F:      arch/powerpc/platforms/ps3/
8154 F:      drivers/*/ps3*
8155 F:      drivers/ps3/
8156 F:      drivers/rtc/rtc-ps3.c
8157 F:      drivers/usb/host/*ps3.c
8158 F:      sound/ppc/snd_ps3*
8159
8160 PS3VRAM DRIVER
8161 M:      Jim Paris <jim@jtan.com>
8162 M:      Geoff Levand <geoff@infradead.org>
8163 L:      linuxppc-dev@lists.ozlabs.org
8164 S:      Maintained
8165 F:      drivers/block/ps3vram.c
8166
8167 PSTORE FILESYSTEM
8168 M:      Anton Vorontsov <anton@enomsg.org>
8169 M:      Colin Cross <ccross@android.com>
8170 M:      Kees Cook <keescook@chromium.org>
8171 M:      Tony Luck <tony.luck@intel.com>
8172 S:      Maintained
8173 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8174 F:      fs/pstore/
8175 F:      include/linux/pstore*
8176 F:      drivers/firmware/efi/efi-pstore.c
8177 F:      drivers/acpi/apei/erst.c
8178
8179 PTP HARDWARE CLOCK SUPPORT
8180 M:      Richard Cochran <richardcochran@gmail.com>
8181 L:      netdev@vger.kernel.org
8182 S:      Maintained
8183 W:      http://linuxptp.sourceforge.net/
8184 F:      Documentation/ABI/testing/sysfs-ptp
8185 F:      Documentation/ptp/*
8186 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8187 F:      drivers/net/phy/dp83640*
8188 F:      drivers/ptp/*
8189 F:      include/linux/ptp_cl*
8190
8191 PTRACE SUPPORT
8192 M:      Roland McGrath <roland@hack.frob.com>
8193 M:      Oleg Nesterov <oleg@redhat.com>
8194 S:      Maintained
8195 F:      include/asm-generic/syscall.h
8196 F:      include/linux/ptrace.h
8197 F:      include/linux/regset.h
8198 F:      include/linux/tracehook.h
8199 F:      include/uapi/linux/ptrace.h
8200 F:      kernel/ptrace.c
8201
8202 PVRUSB2 VIDEO4LINUX DRIVER
8203 M:      Mike Isely <isely@pobox.com>
8204 L:      pvrusb2@isely.net       (subscribers-only)
8205 L:      linux-media@vger.kernel.org
8206 W:      http://www.isely.net/pvrusb2/
8207 T:      git git://linuxtv.org/media_tree.git
8208 S:      Maintained
8209 F:      Documentation/video4linux/README.pvrusb2
8210 F:      drivers/media/usb/pvrusb2/
8211
8212 PWC WEBCAM DRIVER
8213 M:      Hans de Goede <hdegoede@redhat.com>
8214 L:      linux-media@vger.kernel.org
8215 T:      git git://linuxtv.org/media_tree.git
8216 S:      Maintained
8217 F:      drivers/media/usb/pwc/*
8218
8219 PWM FAN DRIVER
8220 M:      Kamil Debski <k.debski@samsung.com>
8221 L:      lm-sensors@lm-sensors.org
8222 S:      Supported
8223 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8224 F:      Documentation/hwmon/pwm-fan
8225 F:      drivers/hwmon/pwm-fan.c
8226
8227 PWM SUBSYSTEM
8228 M:      Thierry Reding <thierry.reding@gmail.com>
8229 L:      linux-pwm@vger.kernel.org
8230 S:      Maintained
8231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8232 F:      Documentation/pwm.txt
8233 F:      Documentation/devicetree/bindings/pwm/
8234 F:      include/linux/pwm.h
8235 F:      drivers/pwm/
8236 F:      drivers/video/backlight/pwm_bl.c
8237 F:      include/linux/pwm_backlight.h
8238
8239 PXA2xx/PXA3xx SUPPORT
8240 M:      Daniel Mack <daniel@zonque.org>
8241 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8242 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8243 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8244 T:      git git://github.com/hzhuang1/linux.git
8245 T:      git git://github.com/rjarzmik/linux.git
8246 S:      Maintained
8247 F:      arch/arm/mach-pxa/
8248 F:      drivers/dma/pxa*
8249 F:      drivers/pcmcia/pxa2xx*
8250 F:      drivers/spi/spi-pxa2xx*
8251 F:      drivers/usb/gadget/udc/pxa2*
8252 F:      include/sound/pxa2xx-lib.h
8253 F:      sound/arm/pxa*
8254 F:      sound/soc/pxa/
8255
8256 PXA3xx NAND FLASH DRIVER
8257 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8258 L:      linux-mtd@lists.infradead.org
8259 S:      Maintained
8260 F:      drivers/mtd/nand/pxa3xx_nand.c
8261
8262 MMP SUPPORT
8263 M:      Eric Miao <eric.y.miao@gmail.com>
8264 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8265 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8266 T:      git git://github.com/hzhuang1/linux.git
8267 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8268 S:      Maintained
8269 F:      arch/arm/mach-mmp/
8270
8271 PXA MMCI DRIVER
8272 S:      Orphan
8273
8274 PXA RTC DRIVER
8275 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8276 L:      rtc-linux@googlegroups.com
8277 S:      Maintained
8278
8279 QAT DRIVER
8280 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8281 L:      qat-linux@intel.com
8282 S:      Supported
8283 F:      drivers/crypto/qat/
8284
8285 QIB DRIVER
8286 M:      Mike Marciniszyn <infinipath@intel.com>
8287 L:      linux-rdma@vger.kernel.org
8288 S:      Supported
8289 F:      drivers/infiniband/hw/qib/
8290
8291 QLOGIC QLA1280 SCSI DRIVER
8292 M:      Michael Reed <mdr@sgi.com>
8293 L:      linux-scsi@vger.kernel.org
8294 S:      Maintained
8295 F:      drivers/scsi/qla1280.[ch]
8296
8297 QLOGIC QLA2XXX FC-SCSI DRIVER
8298 M:      qla2xxx-upstream@qlogic.com
8299 L:      linux-scsi@vger.kernel.org
8300 S:      Supported
8301 F:      Documentation/scsi/LICENSE.qla2xxx
8302 F:      drivers/scsi/qla2xxx/
8303
8304 QLOGIC QLA4XXX iSCSI DRIVER
8305 M:      QLogic-Storage-Upstream@qlogic.com
8306 L:      linux-scsi@vger.kernel.org
8307 S:      Supported
8308 F:      Documentation/scsi/LICENSE.qla4xxx
8309 F:      drivers/scsi/qla4xxx/
8310
8311 QLOGIC QLA3XXX NETWORK DRIVER
8312 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8313 M:      Ron Mercer <ron.mercer@qlogic.com>
8314 M:      linux-driver@qlogic.com
8315 L:      netdev@vger.kernel.org
8316 S:      Supported
8317 F:      Documentation/networking/LICENSE.qla3xxx
8318 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8319
8320 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8321 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
8322 M:      Dept-GELinuxNICDev@qlogic.com
8323 L:      netdev@vger.kernel.org
8324 S:      Supported
8325 F:      drivers/net/ethernet/qlogic/qlcnic/
8326
8327 QLOGIC QLGE 10Gb ETHERNET DRIVER
8328 M:      Harish Patil <harish.patil@qlogic.com>
8329 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8330 M:      Dept-GELinuxNICDev@qlogic.com
8331 M:      linux-driver@qlogic.com
8332 L:      netdev@vger.kernel.org
8333 S:      Supported
8334 F:      drivers/net/ethernet/qlogic/qlge/
8335
8336 QNX4 FILESYSTEM
8337 M:      Anders Larsen <al@alarsen.net>
8338 W:      http://www.alarsen.net/linux/qnx4fs/
8339 S:      Maintained
8340 F:      fs/qnx4/
8341 F:      include/uapi/linux/qnx4_fs.h
8342 F:      include/uapi/linux/qnxtypes.h
8343
8344 QT1010 MEDIA DRIVER
8345 M:      Antti Palosaari <crope@iki.fi>
8346 L:      linux-media@vger.kernel.org
8347 W:      http://linuxtv.org/
8348 W:      http://palosaari.fi/linux/
8349 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8350 T:      git git://linuxtv.org/anttip/media_tree.git
8351 S:      Maintained
8352 F:      drivers/media/tuners/qt1010*
8353
8354 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8355 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8356 L:      linux-wireless@vger.kernel.org
8357 L:      ath9k-devel@lists.ath9k.org
8358 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8359 S:      Supported
8360 F:      drivers/net/wireless/ath/ath9k/
8361
8362 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8363 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8364 L:      ath10k@lists.infradead.org
8365 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8366 T:      git git://github.com/kvalo/ath.git
8367 S:      Supported
8368 F:      drivers/net/wireless/ath/ath10k/
8369
8370 QUALCOMM HEXAGON ARCHITECTURE
8371 M:      Richard Kuo <rkuo@codeaurora.org>
8372 L:      linux-hexagon@vger.kernel.org
8373 S:      Supported
8374 F:      arch/hexagon/
8375
8376 QUALCOMM WCN36XX WIRELESS DRIVER
8377 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8378 L:      wcn36xx@lists.infradead.org
8379 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8380 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8381 S:      Supported
8382 F:      drivers/net/wireless/ath/wcn36xx/
8383
8384 RADOS BLOCK DEVICE (RBD)
8385 M:      Ilya Dryomov <idryomov@gmail.com>
8386 M:      Sage Weil <sage@redhat.com>
8387 M:      Alex Elder <elder@kernel.org>
8388 L:      ceph-devel@vger.kernel.org
8389 W:      http://ceph.com/
8390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8391 T:      git git://github.com/ceph/ceph-client.git
8392 S:      Supported
8393 F:      Documentation/ABI/testing/sysfs-bus-rbd
8394 F:      drivers/block/rbd.c
8395 F:      drivers/block/rbd_types.h
8396
8397 RADEON FRAMEBUFFER DISPLAY DRIVER
8398 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8399 L:      linux-fbdev@vger.kernel.org
8400 S:      Maintained
8401 F:      drivers/video/fbdev/aty/radeon*
8402 F:      include/uapi/linux/radeonfb.h
8403
8404 RADIOSHARK RADIO DRIVER
8405 M:      Hans de Goede <hdegoede@redhat.com>
8406 L:      linux-media@vger.kernel.org
8407 T:      git git://linuxtv.org/media_tree.git
8408 S:      Maintained
8409 F:      drivers/media/radio/radio-shark.c
8410
8411 RADIOSHARK2 RADIO DRIVER
8412 M:      Hans de Goede <hdegoede@redhat.com>
8413 L:      linux-media@vger.kernel.org
8414 T:      git git://linuxtv.org/media_tree.git
8415 S:      Maintained
8416 F:      drivers/media/radio/radio-shark2.c
8417 F:      drivers/media/radio/radio-tea5777.c
8418
8419 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8420 M:      Paul Mackerras <paulus@samba.org>
8421 L:      linux-fbdev@vger.kernel.org
8422 S:      Maintained
8423 F:      drivers/video/fbdev/aty/aty128fb.c
8424
8425 RALINK RT2X00 WIRELESS LAN DRIVER
8426 P:      rt2x00 project
8427 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8428 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8429 L:      linux-wireless@vger.kernel.org
8430 S:      Maintained
8431 F:      drivers/net/wireless/rt2x00/
8432
8433 RAMDISK RAM BLOCK DEVICE DRIVER
8434 M:      Jens Axboe <axboe@kernel.dk>
8435 S:      Maintained
8436 F:      Documentation/blockdev/ramdisk.txt
8437 F:      drivers/block/brd.c
8438
8439 RANDOM NUMBER DRIVER
8440 M:      "Theodore Ts'o" <tytso@mit.edu>
8441 S:      Maintained
8442 F:      drivers/char/random.c
8443
8444 RAPIDIO SUBSYSTEM
8445 M:      Matt Porter <mporter@kernel.crashing.org>
8446 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8447 S:      Maintained
8448 F:      drivers/rapidio/
8449
8450 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8451 L:      linux-wireless@vger.kernel.org
8452 S:      Orphan
8453 F:      drivers/net/wireless/ray*
8454
8455 RCUTORTURE MODULE
8456 M:      Josh Triplett <josh@joshtriplett.org>
8457 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8458 L:      linux-kernel@vger.kernel.org
8459 S:      Supported
8460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8461 F:      Documentation/RCU/torture.txt
8462 F:      kernel/rcu/rcutorture.c
8463
8464 RCUTORTURE TEST FRAMEWORK
8465 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8466 M:      Josh Triplett <josh@joshtriplett.org>
8467 R:      Steven Rostedt <rostedt@goodmis.org>
8468 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8469 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
8470 L:      linux-kernel@vger.kernel.org
8471 S:      Supported
8472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8473 F:      tools/testing/selftests/rcutorture
8474
8475 RDC R-321X SoC
8476 M:      Florian Fainelli <florian@openwrt.org>
8477 S:      Maintained
8478
8479 RDC R6040 FAST ETHERNET DRIVER
8480 M:      Florian Fainelli <florian@openwrt.org>
8481 L:      netdev@vger.kernel.org
8482 S:      Maintained
8483 F:      drivers/net/ethernet/rdc/r6040.c
8484
8485 RDS - RELIABLE DATAGRAM SOCKETS
8486 M:      Chien Yen <chien.yen@oracle.com>
8487 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8488 S:      Supported
8489 F:      net/rds/
8490
8491 READ-COPY UPDATE (RCU)
8492 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8493 M:      Josh Triplett <josh@joshtriplett.org>
8494 R:      Steven Rostedt <rostedt@goodmis.org>
8495 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8496 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
8497 L:      linux-kernel@vger.kernel.org
8498 W:      http://www.rdrop.com/users/paulmck/RCU/
8499 S:      Supported
8500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8501 F:      Documentation/RCU/
8502 X:      Documentation/RCU/torture.txt
8503 F:      include/linux/rcu*
8504 X:      include/linux/srcu.h
8505 F:      kernel/rcu/
8506 X:      kernel/torture.c
8507
8508 REAL TIME CLOCK (RTC) SUBSYSTEM
8509 M:      Alessandro Zummo <a.zummo@towertech.it>
8510 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8511 L:      rtc-linux@googlegroups.com
8512 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8514 S:      Maintained
8515 F:      Documentation/rtc.txt
8516 F:      drivers/rtc/
8517 F:      include/linux/rtc.h
8518 F:      include/uapi/linux/rtc.h
8519
8520 REALTEK AUDIO CODECS
8521 M:      Bard Liao <bardliao@realtek.com>
8522 M:      Oder Chiou <oder_chiou@realtek.com>
8523 S:      Maintained
8524 F:      sound/soc/codecs/rt*
8525 F:      include/sound/rt*.h
8526
8527 REISERFS FILE SYSTEM
8528 L:      reiserfs-devel@vger.kernel.org
8529 S:      Supported
8530 F:      fs/reiserfs/
8531
8532 REGISTER MAP ABSTRACTION
8533 M:      Mark Brown <broonie@kernel.org>
8534 L:      linux-kernel@vger.kernel.org
8535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8536 S:      Supported
8537 F:      drivers/base/regmap/
8538 F:      include/linux/regmap.h
8539
8540 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8541 M:      Ohad Ben-Cohen <ohad@wizery.com>
8542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8543 S:      Maintained
8544 F:      drivers/remoteproc/
8545 F:      Documentation/remoteproc.txt
8546 F:      include/linux/remoteproc.h
8547
8548 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8549 M:      Ohad Ben-Cohen <ohad@wizery.com>
8550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8551 S:      Maintained
8552 F:      drivers/rpmsg/
8553 F:      Documentation/rpmsg.txt
8554 F:      include/linux/rpmsg.h
8555
8556 RESET CONTROLLER FRAMEWORK
8557 M:      Philipp Zabel <p.zabel@pengutronix.de>
8558 S:      Maintained
8559 F:      drivers/reset/
8560 F:      Documentation/devicetree/bindings/reset/
8561 F:      include/linux/reset.h
8562 F:      include/linux/reset-controller.h
8563
8564 RFKILL
8565 M:      Johannes Berg <johannes@sipsolutions.net>
8566 L:      linux-wireless@vger.kernel.org
8567 W:      http://wireless.kernel.org/
8568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8570 S:      Maintained
8571 F:      Documentation/rfkill.txt
8572 F:      net/rfkill/
8573
8574 RHASHTABLE
8575 M:      Thomas Graf <tgraf@suug.ch>
8576 L:      netdev@vger.kernel.org
8577 S:      Maintained
8578 F:      lib/rhashtable.c
8579 F:      include/linux/rhashtable.h
8580
8581 RICOH SMARTMEDIA/XD DRIVER
8582 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8583 S:      Maintained
8584 F:      drivers/mtd/nand/r852.c
8585 F:      drivers/mtd/nand/r852.h
8586
8587 RICOH R5C592 MEMORYSTICK DRIVER
8588 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8589 S:      Maintained
8590 F:      drivers/memstick/host/r592.*
8591
8592 ROCCAT DRIVERS
8593 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8594 W:      http://sourceforge.net/projects/roccat/
8595 S:      Maintained
8596 F:      drivers/hid/hid-roccat*
8597 F:      include/linux/hid-roccat*
8598 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8599
8600 ROCKER DRIVER
8601 M:      Jiri Pirko <jiri@resnulli.us>
8602 M:      Scott Feldman <sfeldma@gmail.com>
8603 L:      netdev@vger.kernel.org
8604 S:      Supported
8605 F:      drivers/net/ethernet/rocker/
8606
8607 ROCKETPORT DRIVER
8608 P:      Comtrol Corp.
8609 W:      http://www.comtrol.com
8610 S:      Maintained
8611 F:      Documentation/serial/rocket.txt
8612 F:      drivers/tty/rocket*
8613
8614 ROCKETPORT EXPRESS/INFINITY DRIVER
8615 M:      Kevin Cernekee <cernekee@gmail.com>
8616 L:      linux-serial@vger.kernel.org
8617 S:      Odd Fixes
8618 F:      drivers/tty/serial/rp2.*
8619
8620 ROSE NETWORK LAYER
8621 M:      Ralf Baechle <ralf@linux-mips.org>
8622 L:      linux-hams@vger.kernel.org
8623 W:      http://www.linux-ax25.org/
8624 S:      Maintained
8625 F:      include/net/rose.h
8626 F:      include/uapi/linux/rose.h
8627 F:      net/rose/
8628
8629 RTL2830 MEDIA DRIVER
8630 M:      Antti Palosaari <crope@iki.fi>
8631 L:      linux-media@vger.kernel.org
8632 W:      http://linuxtv.org/
8633 W:      http://palosaari.fi/linux/
8634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8635 T:      git git://linuxtv.org/anttip/media_tree.git
8636 S:      Maintained
8637 F:      drivers/media/dvb-frontends/rtl2830*
8638
8639 RTL2832 MEDIA DRIVER
8640 M:      Antti Palosaari <crope@iki.fi>
8641 L:      linux-media@vger.kernel.org
8642 W:      http://linuxtv.org/
8643 W:      http://palosaari.fi/linux/
8644 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8645 T:      git git://linuxtv.org/anttip/media_tree.git
8646 S:      Maintained
8647 F:      drivers/media/dvb-frontends/rtl2832*
8648
8649 RTL2832_SDR MEDIA DRIVER
8650 M:      Antti Palosaari <crope@iki.fi>
8651 L:      linux-media@vger.kernel.org
8652 W:      http://linuxtv.org/
8653 W:      http://palosaari.fi/linux/
8654 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8655 T:      git git://linuxtv.org/anttip/media_tree.git
8656 S:      Maintained
8657 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8658
8659 RTL8180 WIRELESS DRIVER
8660 L:      linux-wireless@vger.kernel.org
8661 W:      http://wireless.kernel.org/
8662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8663 S:      Orphan
8664 F:      drivers/net/wireless/rtl818x/rtl8180/
8665
8666 RTL8187 WIRELESS DRIVER
8667 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8668 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8669 M:      Larry Finger <Larry.Finger@lwfinger.net>
8670 L:      linux-wireless@vger.kernel.org
8671 W:      http://wireless.kernel.org/
8672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8673 S:      Maintained
8674 F:      drivers/net/wireless/rtl818x/rtl8187/
8675
8676 RTL8192CE WIRELESS DRIVER
8677 M:      Larry Finger <Larry.Finger@lwfinger.net>
8678 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8679 L:      linux-wireless@vger.kernel.org
8680 W:      http://wireless.kernel.org/
8681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8682 S:      Maintained
8683 F:      drivers/net/wireless/rtlwifi/
8684 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8685
8686 S3 SAVAGE FRAMEBUFFER DRIVER
8687 M:      Antonino Daplas <adaplas@gmail.com>
8688 L:      linux-fbdev@vger.kernel.org
8689 S:      Maintained
8690 F:      drivers/video/fbdev/savage/
8691
8692 S390
8693 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8694 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8695 M:      linux390@de.ibm.com
8696 L:      linux-s390@vger.kernel.org
8697 W:      http://www.ibm.com/developerworks/linux/linux390/
8698 S:      Supported
8699 F:      arch/s390/
8700 F:      drivers/s390/
8701 F:      Documentation/s390/
8702 F:      Documentation/DocBook/s390*
8703
8704 S390 COMMON I/O LAYER
8705 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8706 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8707 L:      linux-s390@vger.kernel.org
8708 W:      http://www.ibm.com/developerworks/linux/linux390/
8709 S:      Supported
8710 F:      drivers/s390/cio/
8711
8712 S390 DASD DRIVER
8713 M:      Stefan Weinhuber <wein@de.ibm.com>
8714 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8715 L:      linux-s390@vger.kernel.org
8716 W:      http://www.ibm.com/developerworks/linux/linux390/
8717 S:      Supported
8718 F:      drivers/s390/block/dasd*
8719 F:      block/partitions/ibm.c
8720
8721 S390 NETWORK DRIVERS
8722 M:      Ursula Braun <ursula.braun@de.ibm.com>
8723 M:      linux390@de.ibm.com
8724 L:      linux-s390@vger.kernel.org
8725 W:      http://www.ibm.com/developerworks/linux/linux390/
8726 S:      Supported
8727 F:      drivers/s390/net/
8728
8729 S390 PCI SUBSYSTEM
8730 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8731 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8732 L:      linux-s390@vger.kernel.org
8733 W:      http://www.ibm.com/developerworks/linux/linux390/
8734 S:      Supported
8735 F:      arch/s390/pci/
8736 F:      drivers/pci/hotplug/s390_pci_hpc.c
8737
8738 S390 ZCRYPT DRIVER
8739 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8740 M:      linux390@de.ibm.com
8741 L:      linux-s390@vger.kernel.org
8742 W:      http://www.ibm.com/developerworks/linux/linux390/
8743 S:      Supported
8744 F:      drivers/s390/crypto/
8745
8746 S390 ZFCP DRIVER
8747 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8748 M:      linux390@de.ibm.com
8749 L:      linux-s390@vger.kernel.org
8750 W:      http://www.ibm.com/developerworks/linux/linux390/
8751 S:      Supported
8752 F:      drivers/s390/scsi/zfcp_*
8753
8754 S390 IUCV NETWORK LAYER
8755 M:      Ursula Braun <ursula.braun@de.ibm.com>
8756 M:      linux390@de.ibm.com
8757 L:      linux-s390@vger.kernel.org
8758 W:      http://www.ibm.com/developerworks/linux/linux390/
8759 S:      Supported
8760 F:      drivers/s390/net/*iucv*
8761 F:      include/net/iucv/
8762 F:      net/iucv/
8763
8764 S3C24XX SD/MMC Driver
8765 M:      Ben Dooks <ben-linux@fluff.org>
8766 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8767 S:      Supported
8768 F:      drivers/mmc/host/s3cmci.*
8769
8770 SAA6588 RDS RECEIVER DRIVER
8771 M:      Hans Verkuil <hverkuil@xs4all.nl>
8772 L:      linux-media@vger.kernel.org
8773 T:      git git://linuxtv.org/media_tree.git
8774 W:      http://linuxtv.org
8775 S:      Odd Fixes
8776 F:      drivers/media/i2c/saa6588*
8777
8778 SAA7134 VIDEO4LINUX DRIVER
8779 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8780 L:      linux-media@vger.kernel.org
8781 W:      http://linuxtv.org
8782 T:      git git://linuxtv.org/media_tree.git
8783 S:      Odd fixes
8784 F:      Documentation/video4linux/*.saa7134
8785 F:      drivers/media/pci/saa7134/
8786
8787 SAA7146 VIDEO4LINUX-2 DRIVER
8788 M:      Hans Verkuil <hverkuil@xs4all.nl>
8789 L:      linux-media@vger.kernel.org
8790 T:      git git://linuxtv.org/media_tree.git
8791 S:      Maintained
8792 F:      drivers/media/common/saa7146/
8793 F:      drivers/media/pci/saa7146/
8794 F:      include/media/saa7146*
8795
8796 SAMSUNG LAPTOP DRIVER
8797 M:      Corentin Chary <corentin.chary@gmail.com>
8798 L:      platform-driver-x86@vger.kernel.org
8799 S:      Maintained
8800 F:      drivers/platform/x86/samsung-laptop.c
8801
8802 SAMSUNG AUDIO (ASoC) DRIVERS
8803 M:      Sangbeom Kim <sbkim73@samsung.com>
8804 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8805 S:      Supported
8806 F:      sound/soc/samsung/
8807
8808 SAMSUNG FRAMEBUFFER DRIVER
8809 M:      Jingoo Han <jingoohan1@gmail.com>
8810 L:      linux-fbdev@vger.kernel.org
8811 S:      Maintained
8812 F:      drivers/video/fbdev/s3c-fb.c
8813
8814 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
8815 M:      Sangbeom Kim <sbkim73@samsung.com>
8816 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
8817 L:      linux-kernel@vger.kernel.org
8818 L:      linux-samsung-soc@vger.kernel.org
8819 S:      Supported
8820 F:      drivers/mfd/sec*.c
8821 F:      drivers/regulator/s2m*.c
8822 F:      drivers/regulator/s5m*.c
8823 F:      drivers/clk/clk-s2mps11.c
8824 F:      drivers/rtc/rtc-s5m.c
8825 F:      include/linux/mfd/samsung/
8826 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
8827 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
8828
8829 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
8830 M:      Kyungmin Park <kyungmin.park@samsung.com>
8831 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8832 L:      linux-media@vger.kernel.org
8833 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
8834 S:      Supported
8835 F:      drivers/media/platform/exynos4-is/
8836
8837 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
8838 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
8839 L:      linux-media@vger.kernel.org
8840 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8841 S:      Maintained
8842 F:      drivers/media/platform/s3c-camif/
8843 F:      include/media/s3c_camif.h
8844
8845 SAMSUNG S5C73M3 CAMERA DRIVER
8846 M:      Kyungmin Park <kyungmin.park@samsung.com>
8847 M:      Andrzej Hajda <a.hajda@samsung.com>
8848 L:      linux-media@vger.kernel.org
8849 S:      Supported
8850 F:      drivers/media/i2c/s5c73m3/*
8851
8852 SAMSUNG S5K5BAF CAMERA DRIVER
8853 M:      Kyungmin Park <kyungmin.park@samsung.com>
8854 M:      Andrzej Hajda <a.hajda@samsung.com>
8855 L:      linux-media@vger.kernel.org
8856 S:      Supported
8857 F:      drivers/media/i2c/s5k5baf.c
8858
8859 SAMSUNG SOC CLOCK DRIVERS
8860 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8861 M:      Tomasz Figa <tomasz.figa@gmail.com>
8862 S:      Supported
8863 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8864 F:      drivers/clk/samsung/
8865
8866 SAMSUNG SXGBE DRIVERS
8867 M:      Byungho An <bh74.an@samsung.com>
8868 M:      Girish K S <ks.giri@samsung.com>
8869 M:      Vipul Pandya <vipul.pandya@samsung.com>
8870 S:      Supported
8871 L:      netdev@vger.kernel.org
8872 F:      drivers/net/ethernet/samsung/sxgbe/
8873
8874 SAMSUNG THERMAL DRIVER
8875 M:      Lukasz Majewski <l.majewski@samsung.com>
8876 L:      linux-pm@vger.kernel.org
8877 L:      linux-samsung-soc@vger.kernel.org
8878 S:      Supported
8879 T:      https://github.com/lmajewski/linux-samsung-thermal.git
8880 F:      drivers/thermal/samsung/
8881
8882 SAMSUNG USB2 PHY DRIVER
8883 M:      Kamil Debski <k.debski@samsung.com>
8884 L:      linux-kernel@vger.kernel.org
8885 S:      Supported
8886 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
8887 F:      Documentation/phy/samsung-usb2.txt
8888 F:      drivers/phy/phy-exynos4210-usb2.c
8889 F:      drivers/phy/phy-exynos4x12-usb2.c
8890 F:      drivers/phy/phy-exynos5250-usb2.c
8891 F:      drivers/phy/phy-s5pv210-usb2.c
8892 F:      drivers/phy/phy-samsung-usb2.c
8893 F:      drivers/phy/phy-samsung-usb2.h
8894
8895 SERIAL DRIVERS
8896 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8897 L:      linux-serial@vger.kernel.org
8898 S:      Maintained
8899 F:      drivers/tty/serial/
8900
8901 SYNOPSYS DESIGNWARE DMAC DRIVER
8902 M:      Viresh Kumar <vireshk@kernel.org>
8903 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8904 S:      Maintained
8905 F:      include/linux/dma/dw.h
8906 F:      include/linux/platform_data/dma-dw.h
8907 F:      drivers/dma/dw/
8908
8909 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
8910 M:      Seungwon Jeon <tgih.jun@samsung.com>
8911 M:      Jaehoon Chung <jh80.chung@samsung.com>
8912 L:      linux-mmc@vger.kernel.org
8913 S:      Maintained
8914 F:      include/linux/mmc/dw_mmc.h
8915 F:      drivers/mmc/host/dw_mmc*
8916
8917 THUNDERBOLT DRIVER
8918 M:      Andreas Noever <andreas.noever@gmail.com>
8919 S:      Maintained
8920 F:      drivers/thunderbolt/
8921
8922 TIMEKEEPING, CLOCKSOURCE CORE, NTP
8923 M:      John Stultz <john.stultz@linaro.org>
8924 M:      Thomas Gleixner <tglx@linutronix.de>
8925 L:      linux-kernel@vger.kernel.org
8926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8927 S:      Supported
8928 F:      include/linux/clocksource.h
8929 F:      include/linux/time.h
8930 F:      include/linux/timex.h
8931 F:      include/uapi/linux/time.h
8932 F:      include/uapi/linux/timex.h
8933 F:      kernel/time/clocksource.c
8934 F:      kernel/time/time*.c
8935 F:      kernel/time/ntp.c
8936 F:      tools/testing/selftests/timers/
8937
8938 SC1200 WDT DRIVER
8939 M:      Zwane Mwaikambo <zwanem@gmail.com>
8940 S:      Maintained
8941 F:      drivers/watchdog/sc1200wdt.c
8942
8943 SCHEDULER
8944 M:      Ingo Molnar <mingo@redhat.com>
8945 M:      Peter Zijlstra <peterz@infradead.org>
8946 L:      linux-kernel@vger.kernel.org
8947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
8948 S:      Maintained
8949 F:      kernel/sched/
8950 F:      include/linux/sched.h
8951 F:      include/uapi/linux/sched.h
8952 F:      include/linux/wait.h
8953
8954 SCORE ARCHITECTURE
8955 M:      Chen Liqin <liqin.linux@gmail.com>
8956 M:      Lennox Wu <lennox.wu@gmail.com>
8957 W:      http://www.sunplus.com
8958 S:      Supported
8959 F:      arch/score/
8960
8961 SCSI CDROM DRIVER
8962 M:      Jens Axboe <axboe@kernel.dk>
8963 L:      linux-scsi@vger.kernel.org
8964 W:      http://www.kernel.dk
8965 S:      Maintained
8966 F:      drivers/scsi/sr*
8967
8968 SCSI RDMA PROTOCOL (SRP) INITIATOR
8969 M:      Bart Van Assche <bart.vanassche@sandisk.com>
8970 L:      linux-rdma@vger.kernel.org
8971 S:      Supported
8972 W:      http://www.openfabrics.org
8973 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
8975 F:      drivers/infiniband/ulp/srp/
8976 F:      include/scsi/srp.h
8977
8978 SCSI SG DRIVER
8979 M:      Doug Gilbert <dgilbert@interlog.com>
8980 L:      linux-scsi@vger.kernel.org
8981 W:      http://sg.danny.cz/sg
8982 S:      Maintained
8983 F:      Documentation/scsi/scsi-generic.txt
8984 F:      drivers/scsi/sg.c
8985 F:      include/scsi/sg.h
8986
8987 SCSI SUBSYSTEM
8988 M:      "James E.J. Bottomley" <JBottomley@odin.com>
8989 L:      linux-scsi@vger.kernel.org
8990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
8991 S:      Maintained
8992 F:      drivers/scsi/
8993 F:      include/scsi/
8994
8995 SCSI TAPE DRIVER
8996 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
8997 L:      linux-scsi@vger.kernel.org
8998 S:      Maintained
8999 F:      Documentation/scsi/st.txt
9000 F:      drivers/scsi/st.*
9001 F:      drivers/scsi/st_*.h
9002
9003 SCTP PROTOCOL
9004 M:      Vlad Yasevich <vyasevich@gmail.com>
9005 M:      Neil Horman <nhorman@tuxdriver.com>
9006 L:      linux-sctp@vger.kernel.org
9007 W:      http://lksctp.sourceforge.net
9008 S:      Maintained
9009 F:      Documentation/networking/sctp.txt
9010 F:      include/linux/sctp.h
9011 F:      include/uapi/linux/sctp.h
9012 F:      include/net/sctp/
9013 F:      net/sctp/
9014
9015 SCx200 CPU SUPPORT
9016 M:      Jim Cromie <jim.cromie@gmail.com>
9017 S:      Odd Fixes
9018 F:      Documentation/i2c/busses/scx200_acb
9019 F:      arch/x86/platform/scx200/
9020 F:      drivers/watchdog/scx200_wdt.c
9021 F:      drivers/i2c/busses/scx200*
9022 F:      drivers/mtd/maps/scx200_docflash.c
9023 F:      include/linux/scx200.h
9024
9025 SCx200 GPIO DRIVER
9026 M:      Jim Cromie <jim.cromie@gmail.com>
9027 S:      Maintained
9028 F:      drivers/char/scx200_gpio.c
9029 F:      include/linux/scx200_gpio.h
9030
9031 SCx200 HRT CLOCKSOURCE DRIVER
9032 M:      Jim Cromie <jim.cromie@gmail.com>
9033 S:      Maintained
9034 F:      drivers/clocksource/scx200_hrt.c
9035
9036 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9037 M:      Sascha Sommer <saschasommer@freenet.de>
9038 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9039 S:      Maintained
9040 F:      drivers/mmc/host/sdricoh_cs.c
9041
9042 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9043 L:      linux-mmc@vger.kernel.org
9044 S:      Orphan
9045 F:      drivers/mmc/host/sdhci.*
9046 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9047
9048 SECURE COMPUTING
9049 M:      Kees Cook <keescook@chromium.org>
9050 R:      Andy Lutomirski <luto@amacapital.net>
9051 R:      Will Drewry <wad@chromium.org>
9052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9053 S:      Supported
9054 F:      kernel/seccomp.c
9055 F:      include/uapi/linux/seccomp.h
9056 F:      include/linux/seccomp.h
9057 F:      tools/testing/selftests/seccomp/*
9058 K:      \bsecure_computing
9059 K:      \bTIF_SECCOMP\b
9060
9061 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9062 M:      Ben Dooks <ben-linux@fluff.org>
9063 M:      Jaehoon Chung <jh80.chung@samsung.com>
9064 L:      linux-mmc@vger.kernel.org
9065 S:      Maintained
9066 F:      drivers/mmc/host/sdhci-s3c*
9067
9068 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9069 M:      Viresh Kumar <vireshk@kernel.org>
9070 L:      spear-devel@list.st.com
9071 L:      linux-mmc@vger.kernel.org
9072 S:      Maintained
9073 F:      drivers/mmc/host/sdhci-spear.c
9074
9075 SECURITY SUBSYSTEM
9076 M:      James Morris <james.l.morris@oracle.com>
9077 M:      "Serge E. Hallyn" <serge@hallyn.com>
9078 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9080 W:      http://kernsec.org/
9081 S:      Supported
9082 F:      security/
9083
9084 SECURITY CONTACT
9085 M:      Security Officers <security@kernel.org>
9086 S:      Supported
9087
9088 SELINUX SECURITY MODULE
9089 M:      Paul Moore <paul@paul-moore.com>
9090 M:      Stephen Smalley <sds@tycho.nsa.gov>
9091 M:      Eric Paris <eparis@parisplace.org>
9092 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9093 W:      http://selinuxproject.org
9094 T:      git git://git.infradead.org/users/pcmoore/selinux
9095 S:      Supported
9096 F:      include/linux/selinux*
9097 F:      security/selinux/
9098 F:      scripts/selinux/
9099
9100 APPARMOR SECURITY MODULE
9101 M:      John Johansen <john.johansen@canonical.com>
9102 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9103 W:      apparmor.wiki.kernel.org
9104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9105 S:      Supported
9106 F:      security/apparmor/
9107
9108 SENSABLE PHANTOM
9109 M:      Jiri Slaby <jirislaby@gmail.com>
9110 S:      Maintained
9111 F:      drivers/misc/phantom.c
9112 F:      include/uapi/linux/phantom.h
9113
9114 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9115 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9116 M:      Minh Tran <minh.tran@avagotech.com>
9117 M:      John Soni Jose <sony.john-n@avagotech.com>
9118 L:      linux-scsi@vger.kernel.org
9119 W:      http://www.avagotech.com
9120 S:      Supported
9121 F:      drivers/scsi/be2iscsi/
9122
9123 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9124 M:      Sathya Perla <sathya.perla@avagotech.com>
9125 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9126 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9127 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9128 L:      netdev@vger.kernel.org
9129 W:      http://www.emulex.com
9130 S:      Supported
9131 F:      drivers/net/ethernet/emulex/benet/
9132
9133 EMULEX ONECONNECT ROCE DRIVER
9134 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9135 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9136 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9137 L:      linux-rdma@vger.kernel.org
9138 W:      http://www.emulex.com
9139 S:      Supported
9140 F:      drivers/infiniband/hw/ocrdma/
9141
9142 SFC NETWORK DRIVER
9143 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9144 M:      Shradha Shah <sshah@solarflare.com>
9145 L:      netdev@vger.kernel.org
9146 S:      Supported
9147 F:      drivers/net/ethernet/sfc/
9148
9149 SGI GRU DRIVER
9150 M:      Dimitri Sivanich <sivanich@sgi.com>
9151 S:      Maintained
9152 F:      drivers/misc/sgi-gru/
9153
9154 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9155 M:      Pat Gefre <pfg@sgi.com>
9156 L:      linux-ia64@vger.kernel.org
9157 S:      Supported
9158 F:      Documentation/ia64/serial.txt
9159 F:      drivers/tty/serial/ioc?_serial.c
9160 F:      include/linux/ioc?.h
9161
9162 SGI XP/XPC/XPNET DRIVER
9163 M:      Cliff Whickman <cpw@sgi.com>
9164 M:      Robin Holt <robinmholt@gmail.com>
9165 S:      Maintained
9166 F:      drivers/misc/sgi-xp/
9167
9168 SI2157 MEDIA DRIVER
9169 M:      Antti Palosaari <crope@iki.fi>
9170 L:      linux-media@vger.kernel.org
9171 W:      http://linuxtv.org/
9172 W:      http://palosaari.fi/linux/
9173 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9174 T:      git git://linuxtv.org/anttip/media_tree.git
9175 S:      Maintained
9176 F:      drivers/media/tuners/si2157*
9177
9178 SI2168 MEDIA DRIVER
9179 M:      Antti Palosaari <crope@iki.fi>
9180 L:      linux-media@vger.kernel.org
9181 W:      http://linuxtv.org/
9182 W:      http://palosaari.fi/linux/
9183 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9184 T:      git git://linuxtv.org/anttip/media_tree.git
9185 S:      Maintained
9186 F:      drivers/media/dvb-frontends/si2168*
9187
9188 SI470X FM RADIO RECEIVER I2C DRIVER
9189 M:      Hans Verkuil <hverkuil@xs4all.nl>
9190 L:      linux-media@vger.kernel.org
9191 T:      git git://linuxtv.org/media_tree.git
9192 W:      http://linuxtv.org
9193 S:      Odd Fixes
9194 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9195
9196 SI470X FM RADIO RECEIVER USB DRIVER
9197 M:      Hans Verkuil <hverkuil@xs4all.nl>
9198 L:      linux-media@vger.kernel.org
9199 T:      git git://linuxtv.org/media_tree.git
9200 W:      http://linuxtv.org
9201 S:      Maintained
9202 F:      drivers/media/radio/si470x/radio-si470x-common.c
9203 F:      drivers/media/radio/si470x/radio-si470x.h
9204 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9205
9206 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9207 M:      Eduardo Valentin <edubezval@gmail.com>
9208 L:      linux-media@vger.kernel.org
9209 T:      git git://linuxtv.org/media_tree.git
9210 W:      http://linuxtv.org
9211 S:      Odd Fixes
9212 F:      drivers/media/radio/si4713/si4713.?
9213
9214 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9215 M:      Eduardo Valentin <edubezval@gmail.com>
9216 L:      linux-media@vger.kernel.org
9217 T:      git git://linuxtv.org/media_tree.git
9218 W:      http://linuxtv.org
9219 S:      Odd Fixes
9220 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9221
9222 SI4713 FM RADIO TRANSMITTER USB DRIVER
9223 M:      Hans Verkuil <hverkuil@xs4all.nl>
9224 L:      linux-media@vger.kernel.org
9225 T:      git git://linuxtv.org/media_tree.git
9226 W:      http://linuxtv.org
9227 S:      Maintained
9228 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9229
9230 SIANO DVB DRIVER
9231 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9232 L:      linux-media@vger.kernel.org
9233 W:      http://linuxtv.org
9234 T:      git git://linuxtv.org/media_tree.git
9235 S:      Odd fixes
9236 F:      drivers/media/common/siano/
9237 F:      drivers/media/usb/siano/
9238 F:      drivers/media/usb/siano/
9239 F:      drivers/media/mmc/siano/
9240
9241 SIMPLEFB FB DRIVER
9242 M:      Hans de Goede <hdegoede@redhat.com>
9243 L:      linux-fbdev@vger.kernel.org
9244 S:      Maintained
9245 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9246 F:      drivers/video/fbdev/simplefb.c
9247 F:      include/linux/platform_data/simplefb.h
9248
9249 SH_VEU V4L2 MEM2MEM DRIVER
9250 L:      linux-media@vger.kernel.org
9251 S:      Orphan
9252 F:      drivers/media/platform/sh_veu.c
9253
9254 SH_VOU V4L2 OUTPUT DRIVER
9255 L:      linux-media@vger.kernel.org
9256 S:      Orphan
9257 F:      drivers/media/platform/sh_vou.c
9258 F:      include/media/sh_vou.h
9259
9260 SIMPLE FIRMWARE INTERFACE (SFI)
9261 M:      Len Brown <lenb@kernel.org>
9262 L:      sfi-devel@simplefirmware.org
9263 W:      http://simplefirmware.org/
9264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9265 S:      Supported
9266 F:      arch/x86/platform/sfi/
9267 F:      drivers/sfi/
9268 F:      include/linux/sfi*.h
9269
9270 SIMTEC EB110ATX (Chalice CATS)
9271 P:      Ben Dooks
9272 P:      Vincent Sanders <vince@simtec.co.uk>
9273 M:      Simtec Linux Team <linux@simtec.co.uk>
9274 W:      http://www.simtec.co.uk/products/EB110ATX/
9275 S:      Supported
9276
9277 SIMTEC EB2410ITX (BAST)
9278 P:      Ben Dooks
9279 P:      Vincent Sanders <vince@simtec.co.uk>
9280 M:      Simtec Linux Team <linux@simtec.co.uk>
9281 W:      http://www.simtec.co.uk/products/EB2410ITX/
9282 S:      Supported
9283 F:      arch/arm/mach-s3c24xx/mach-bast.c
9284 F:      arch/arm/mach-s3c24xx/bast-ide.c
9285 F:      arch/arm/mach-s3c24xx/bast-irq.c
9286
9287 TI DAVINCI MACHINE SUPPORT
9288 M:      Sekhar Nori <nsekhar@ti.com>
9289 M:      Kevin Hilman <khilman@deeprootsystems.com>
9290 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9291 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9292 S:      Supported
9293 F:      arch/arm/mach-davinci/
9294 F:      drivers/i2c/busses/i2c-davinci.c
9295
9296 TI DAVINCI SERIES MEDIA DRIVER
9297 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9298 L:      linux-media@vger.kernel.org
9299 W:      http://linuxtv.org/
9300 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9301 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9302 S:      Maintained
9303 F:      drivers/media/platform/davinci/
9304 F:      include/media/davinci/
9305
9306 TI AM437X VPFE DRIVER
9307 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9308 L:      linux-media@vger.kernel.org
9309 W:      http://linuxtv.org/
9310 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9311 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9312 S:      Maintained
9313 F:      drivers/media/platform/am437x/
9314
9315 OV2659 OMNIVISION SENSOR DRIVER
9316 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9317 L:      linux-media@vger.kernel.org
9318 W:      http://linuxtv.org/
9319 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9320 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9321 S:      Maintained
9322 F:      drivers/media/i2c/ov2659.c
9323 F:      include/media/ov2659.h
9324
9325 SIS 190 ETHERNET DRIVER
9326 M:      Francois Romieu <romieu@fr.zoreil.com>
9327 L:      netdev@vger.kernel.org
9328 S:      Maintained
9329 F:      drivers/net/ethernet/sis/sis190.c
9330
9331 SIS 900/7016 FAST ETHERNET DRIVER
9332 M:      Daniele Venzano <venza@brownhat.org>
9333 W:      http://www.brownhat.org/sis900.html
9334 L:      netdev@vger.kernel.org
9335 S:      Maintained
9336 F:      drivers/net/ethernet/sis/sis900.*
9337
9338 SIS FRAMEBUFFER DRIVER
9339 M:      Thomas Winischhofer <thomas@winischhofer.net>
9340 W:      http://www.winischhofer.net/linuxsisvga.shtml
9341 S:      Maintained
9342 F:      Documentation/fb/sisfb.txt
9343 F:      drivers/video/fbdev/sis/
9344 F:      include/video/sisfb.h
9345
9346 SIS USB2VGA DRIVER
9347 M:      Thomas Winischhofer <thomas@winischhofer.net>
9348 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9349 S:      Maintained
9350 F:      drivers/usb/misc/sisusbvga/
9351
9352 SLAB ALLOCATOR
9353 M:      Christoph Lameter <cl@linux.com>
9354 M:      Pekka Enberg <penberg@kernel.org>
9355 M:      David Rientjes <rientjes@google.com>
9356 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9357 M:      Andrew Morton <akpm@linux-foundation.org>
9358 L:      linux-mm@kvack.org
9359 S:      Maintained
9360 F:      include/linux/sl?b*.h
9361 F:      mm/sl?b*
9362
9363 SLEEPABLE READ-COPY UPDATE (SRCU)
9364 M:      Lai Jiangshan <laijs@cn.fujitsu.com>
9365 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9366 M:      Josh Triplett <josh@joshtriplett.org>
9367 R:      Steven Rostedt <rostedt@goodmis.org>
9368 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9369 L:      linux-kernel@vger.kernel.org
9370 W:      http://www.rdrop.com/users/paulmck/RCU/
9371 S:      Supported
9372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9373 F:      include/linux/srcu.h
9374 F:      kernel/rcu/srcu.c
9375
9376 SMACK SECURITY MODULE
9377 M:      Casey Schaufler <casey@schaufler-ca.com>
9378 L:      linux-security-module@vger.kernel.org
9379 W:      http://schaufler-ca.com
9380 T:      git git://git.gitorious.org/smack-next/kernel.git
9381 S:      Maintained
9382 F:      Documentation/security/Smack.txt
9383 F:      security/smack/
9384
9385 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9386 M:      Kevin Hilman <khilman@kernel.org>
9387 M:      Nishanth Menon <nm@ti.com>
9388 S:      Maintained
9389 F:      drivers/power/avs/
9390 F:      include/linux/power/smartreflex.h
9391 L:      linux-pm@vger.kernel.org
9392
9393 SMC91x ETHERNET DRIVER
9394 M:      Nicolas Pitre <nico@fluxnic.net>
9395 S:      Odd Fixes
9396 F:      drivers/net/ethernet/smsc/smc91x.*
9397
9398 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9399 M:      Sakari Ailus <sakari.ailus@iki.fi>
9400 L:      linux-media@vger.kernel.org
9401 S:      Maintained
9402 F:      drivers/media/i2c/smiapp/
9403 F:      include/media/smiapp.h
9404 F:      drivers/media/i2c/smiapp-pll.c
9405 F:      drivers/media/i2c/smiapp-pll.h
9406 F:      include/uapi/linux/smiapp.h
9407 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9408
9409 SMM665 HARDWARE MONITOR DRIVER
9410 M:      Guenter Roeck <linux@roeck-us.net>
9411 L:      lm-sensors@lm-sensors.org
9412 S:      Maintained
9413 F:      Documentation/hwmon/smm665
9414 F:      drivers/hwmon/smm665.c
9415
9416 SMSC EMC2103 HARDWARE MONITOR DRIVER
9417 M:      Steve Glendinning <steve.glendinning@shawell.net>
9418 L:      lm-sensors@lm-sensors.org
9419 S:      Maintained
9420 F:      Documentation/hwmon/emc2103
9421 F:      drivers/hwmon/emc2103.c
9422
9423 SMSC SCH5627 HARDWARE MONITOR DRIVER
9424 M:      Hans de Goede <hdegoede@redhat.com>
9425 L:      lm-sensors@lm-sensors.org
9426 S:      Supported
9427 F:      Documentation/hwmon/sch5627
9428 F:      drivers/hwmon/sch5627.c
9429
9430 SMSC47B397 HARDWARE MONITOR DRIVER
9431 M:      Jean Delvare <jdelvare@suse.com>
9432 L:      lm-sensors@lm-sensors.org
9433 S:      Maintained
9434 F:      Documentation/hwmon/smsc47b397
9435 F:      drivers/hwmon/smsc47b397.c
9436
9437 SMSC911x ETHERNET DRIVER
9438 M:      Steve Glendinning <steve.glendinning@shawell.net>
9439 L:      netdev@vger.kernel.org
9440 S:      Maintained
9441 F:      include/linux/smsc911x.h
9442 F:      drivers/net/ethernet/smsc/smsc911x.*
9443
9444 SMSC9420 PCI ETHERNET DRIVER
9445 M:      Steve Glendinning <steve.glendinning@shawell.net>
9446 L:      netdev@vger.kernel.org
9447 S:      Maintained
9448 F:      drivers/net/ethernet/smsc/smsc9420.*
9449
9450 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9451 M:      Steve Glendinning <steve.glendinning@shawell.net>
9452 L:      linux-fbdev@vger.kernel.org
9453 S:      Maintained
9454 F:      drivers/video/fbdev/smscufx.c
9455
9456 SOC-CAMERA V4L2 SUBSYSTEM
9457 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9458 L:      linux-media@vger.kernel.org
9459 T:      git git://linuxtv.org/media_tree.git
9460 S:      Maintained
9461 F:      include/media/soc*
9462 F:      drivers/media/i2c/soc_camera/
9463 F:      drivers/media/platform/soc_camera/
9464
9465 SOEKRIS NET48XX LED SUPPORT
9466 M:      Chris Boot <bootc@bootc.net>
9467 S:      Maintained
9468 F:      drivers/leds/leds-net48xx.c
9469
9470 SOFTLOGIC 6x10 MPEG CODEC
9471 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9472 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9473 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9474 M:      Ismael Luceno <ismael@iodev.co.uk>
9475 L:      linux-media@vger.kernel.org
9476 S:      Supported
9477 F:      drivers/media/pci/solo6x10/
9478
9479 SOFTWARE RAID (Multiple Disks) SUPPORT
9480 M:      Neil Brown <neilb@suse.com>
9481 L:      linux-raid@vger.kernel.org
9482 S:      Supported
9483 F:      drivers/md/
9484 F:      include/linux/raid/
9485 F:      include/uapi/linux/raid/
9486
9487 SONIC NETWORK DRIVER
9488 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9489 L:      netdev@vger.kernel.org
9490 S:      Maintained
9491 F:      drivers/net/ethernet/natsemi/sonic.*
9492
9493 SONICS SILICON BACKPLANE DRIVER (SSB)
9494 M:      Michael Buesch <m@bues.ch>
9495 L:      netdev@vger.kernel.org
9496 S:      Maintained
9497 F:      drivers/ssb/
9498 F:      include/linux/ssb/
9499
9500 SONY VAIO CONTROL DEVICE DRIVER
9501 M:      Mattia Dongili <malattia@linux.it>
9502 L:      platform-driver-x86@vger.kernel.org
9503 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9504 S:      Maintained
9505 F:      Documentation/laptops/sony-laptop.txt
9506 F:      drivers/char/sonypi.c
9507 F:      drivers/platform/x86/sony-laptop.c
9508 F:      include/linux/sony-laptop.h
9509
9510 SONY MEMORYSTICK CARD SUPPORT
9511 M:      Alex Dubov <oakad@yahoo.com>
9512 W:      http://tifmxx.berlios.de/
9513 S:      Maintained
9514 F:      drivers/memstick/host/tifm_ms.c
9515
9516 SONY MEMORYSTICK STANDARD SUPPORT
9517 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9518 S:      Maintained
9519 F:      drivers/memstick/core/ms_block.*
9520
9521 SOUND
9522 M:      Jaroslav Kysela <perex@perex.cz>
9523 M:      Takashi Iwai <tiwai@suse.com>
9524 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9525 W:      http://www.alsa-project.org/
9526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9527 T:      git git://git.alsa-project.org/alsa-kernel.git
9528 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9529 S:      Maintained
9530 F:      Documentation/sound/
9531 F:      include/sound/
9532 F:      include/uapi/sound/
9533 F:      sound/
9534
9535 SOUND - COMPRESSED AUDIO
9536 M:      Vinod Koul <vinod.koul@intel.com>
9537 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9539 S:      Supported
9540 F:      Documentation/sound/alsa/compress_offload.txt
9541 F:      include/sound/compress_driver.h
9542 F:      include/uapi/sound/compress_*
9543 F:      sound/core/compress_offload.c
9544 F:      sound/soc/soc-compress.c
9545
9546 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9547 M:      Liam Girdwood <lgirdwood@gmail.com>
9548 M:      Mark Brown <broonie@kernel.org>
9549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9550 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9551 W:      http://alsa-project.org/main/index.php/ASoC
9552 S:      Supported
9553 F:      Documentation/sound/alsa/soc/
9554 F:      sound/soc/
9555 F:      include/sound/soc*
9556
9557 SOUND - DMAENGINE HELPERS
9558 M:      Lars-Peter Clausen <lars@metafoo.de>
9559 S:      Supported
9560 F:      include/sound/dmaengine_pcm.h
9561 F:      sound/core/pcm_dmaengine.c
9562 F:      sound/soc/soc-generic-dmaengine-pcm.c
9563
9564 SP2 MEDIA DRIVER
9565 M:      Olli Salonen <olli.salonen@iki.fi>
9566 L:      linux-media@vger.kernel.org
9567 W:      http://linuxtv.org/
9568 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9569 S:      Maintained
9570 F:      drivers/media/dvb-frontends/sp2*
9571
9572 SPARC + UltraSPARC (sparc/sparc64)
9573 M:      "David S. Miller" <davem@davemloft.net>
9574 L:      sparclinux@vger.kernel.org
9575 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9578 S:      Maintained
9579 F:      arch/sparc/
9580 F:      drivers/sbus/
9581
9582 SPARC SERIAL DRIVERS
9583 M:      "David S. Miller" <davem@davemloft.net>
9584 L:      sparclinux@vger.kernel.org
9585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9587 S:      Maintained
9588 F:      include/linux/sunserialcore.h
9589 F:      drivers/tty/serial/suncore.c
9590 F:      drivers/tty/serial/sunhv.c
9591 F:      drivers/tty/serial/sunsab.c
9592 F:      drivers/tty/serial/sunsab.h
9593 F:      drivers/tty/serial/sunsu.c
9594 F:      drivers/tty/serial/sunzilog.c
9595 F:      drivers/tty/serial/sunzilog.h
9596
9597 SPARSE CHECKER
9598 M:      "Christopher Li" <sparse@chrisli.org>
9599 L:      linux-sparse@vger.kernel.org
9600 W:      https://sparse.wiki.kernel.org/
9601 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9602 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9603 S:      Maintained
9604 F:      include/linux/compiler.h
9605
9606 SPEAR PLATFORM SUPPORT
9607 M:      Viresh Kumar <vireshk@kernel.org>
9608 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9609 L:      spear-devel@list.st.com
9610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9611 W:      http://www.st.com/spear
9612 S:      Maintained
9613 F:      arch/arm/mach-spear/
9614
9615 SPEAR CLOCK FRAMEWORK SUPPORT
9616 M:      Viresh Kumar <vireshk@kernel.org>
9617 L:      spear-devel@list.st.com
9618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9619 W:      http://www.st.com/spear
9620 S:      Maintained
9621 F:      drivers/clk/spear/
9622
9623 SPI SUBSYSTEM
9624 M:      Mark Brown <broonie@kernel.org>
9625 L:      linux-spi@vger.kernel.org
9626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9627 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9628 S:      Maintained
9629 F:      Documentation/spi/
9630 F:      drivers/spi/
9631 F:      include/linux/spi/
9632 F:      include/uapi/linux/spi/
9633
9634 SPIDERNET NETWORK DRIVER for CELL
9635 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9636 L:      netdev@vger.kernel.org
9637 S:      Supported
9638 F:      Documentation/networking/spider_net.txt
9639 F:      drivers/net/ethernet/toshiba/spider_net*
9640
9641 SPU FILE SYSTEM
9642 M:      Jeremy Kerr <jk@ozlabs.org>
9643 L:      linuxppc-dev@lists.ozlabs.org
9644 W:      http://www.ibm.com/developerworks/power/cell/
9645 S:      Supported
9646 F:      Documentation/filesystems/spufs.txt
9647 F:      arch/powerpc/platforms/cell/spufs/
9648
9649 SQUASHFS FILE SYSTEM
9650 M:      Phillip Lougher <phillip@squashfs.org.uk>
9651 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9652 W:      http://squashfs.org.uk
9653 S:      Maintained
9654 F:      Documentation/filesystems/squashfs.txt
9655 F:      fs/squashfs/
9656
9657 SRM (Alpha) environment access
9658 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9659 S:      Maintained
9660 F:      arch/alpha/kernel/srm_env.c
9661
9662 STABLE BRANCH
9663 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9664 L:      stable@vger.kernel.org
9665 S:      Supported
9666 F:      Documentation/stable_kernel_rules.txt
9667
9668 STAGING SUBSYSTEM
9669 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9671 L:      devel@driverdev.osuosl.org
9672 S:      Supported
9673 F:      drivers/staging/
9674
9675 STAGING - COMEDI
9676 M:      Ian Abbott <abbotti@mev.co.uk>
9677 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9678 S:      Odd Fixes
9679 F:      drivers/staging/comedi/
9680
9681 STAGING - FLARION FT1000 DRIVERS
9682 M:      Marek Belisko <marek.belisko@gmail.com>
9683 S:      Odd Fixes
9684 F:      drivers/staging/ft1000/
9685
9686 STAGING - INDUSTRIAL IO
9687 M:      Jonathan Cameron <jic23@kernel.org>
9688 L:      linux-iio@vger.kernel.org
9689 S:      Odd Fixes
9690 F:      drivers/staging/iio/
9691
9692 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9693 M:      Jarod Wilson <jarod@wilsonet.com>
9694 W:      http://www.lirc.org/
9695 S:      Odd Fixes
9696 F:      drivers/staging/media/lirc/
9697
9698 STAGING - LUSTRE PARALLEL FILESYSTEM
9699 M:      Oleg Drokin <oleg.drokin@intel.com>
9700 M:      Andreas Dilger <andreas.dilger@intel.com>
9701 L:      HPDD-discuss@lists.01.org (moderated for non-subscribers)
9702 W:      http://lustre.opensfs.org/
9703 S:      Maintained
9704 F:      drivers/staging/lustre
9705
9706 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9707 M:      Julian Andres Klode <jak@jak-linux.org>
9708 M:      Marc Dietrich <marvin24@gmx.de>
9709 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9710 L:      linux-tegra@vger.kernel.org
9711 S:      Maintained
9712 F:      drivers/staging/nvec/
9713
9714 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9715 M:      Jens Frederich <jfrederich@gmail.com>
9716 M:      Daniel Drake <dsd@laptop.org>
9717 M:      Jon Nettleton <jon.nettleton@gmail.com>
9718 W:      http://wiki.laptop.org/go/DCON
9719 S:      Maintained
9720 F:      drivers/staging/olpc_dcon/
9721
9722 STAGING - OZMO DEVICES USB OVER WIFI DRIVER
9723 M:      Shigekatsu Tateno <shigekatsu.tateno@atmel.com>
9724 S:      Maintained
9725 F:      drivers/staging/ozwpan/
9726
9727 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9728 M:      Willy Tarreau <willy@meta-x.org>
9729 S:      Odd Fixes
9730 F:      drivers/staging/panel/
9731
9732 STAGING - REALTEK RTL8712U DRIVERS
9733 M:      Larry Finger <Larry.Finger@lwfinger.net>
9734 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9735 S:      Odd Fixes
9736 F:      drivers/staging/rtl8712/
9737
9738 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9739 M:      Larry Finger <Larry.Finger@lwfinger.net>
9740 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9741 L:      linux-wireless@vger.kernel.org
9742 S:      Maintained
9743 F:      drivers/staging/rtl8723au/
9744
9745 STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
9746 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9747 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9748 M:      Sudip Mukherjee <sudip@vectorindia.org>
9749 L:      linux-fbdev@vger.kernel.org
9750 S:      Maintained
9751 F:      drivers/staging/sm7xxfb/
9752
9753 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9754 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9755 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9756 M:      Sudip Mukherjee <sudip@vectorindia.org>
9757 L:      linux-fbdev@vger.kernel.org
9758 S:      Maintained
9759 F:      drivers/staging/sm750fb/
9760
9761 STAGING - SLICOSS
9762 M:      Lior Dotan <liodot@gmail.com>
9763 M:      Christopher Harrer <charrer@alacritech.com>
9764 S:      Odd Fixes
9765 F:      drivers/staging/slicoss/
9766
9767 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9768 M:      William Hubbs <w.d.hubbs@gmail.com>
9769 M:      Chris Brannon <chris@the-brannons.com>
9770 M:      Kirk Reiser <kirk@reisers.ca>
9771 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9772 L:      speakup@linux-speakup.org
9773 W:      http://www.linux-speakup.org/
9774 S:      Odd Fixes
9775 F:      drivers/staging/speakup/
9776
9777 STAGING - VIA VT665X DRIVERS
9778 M:      Forest Bond <forest@alittletooquiet.net>
9779 S:      Odd Fixes
9780 F:      drivers/staging/vt665?/
9781
9782 STAGING - WILC1000 WIFI DRIVER
9783 M:      Johnny Kim <johnny.kim@atmel.com>
9784 M:      Rachel Kim <rachel.kim@atmel.com>
9785 M:      Dean Lee <dean.lee@atmel.com>
9786 M:      Chris Park <chris.park@atmel.com>
9787 L:      linux-wireless@vger.kernel.org
9788 S:      Supported
9789 F:      drivers/staging/wilc1000/
9790
9791 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
9792 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
9793 S:      Odd Fixes
9794 F:      drivers/staging/xgifb/
9795
9796 STARFIRE/DURALAN NETWORK DRIVER
9797 M:      Ion Badulescu <ionut@badula.org>
9798 S:      Odd Fixes
9799 F:      drivers/net/ethernet/adaptec/starfire*
9800
9801 SUN3/3X
9802 M:      Sam Creasey <sammy@sammy.net>
9803 W:      http://sammy.net/sun3/
9804 S:      Maintained
9805 F:      arch/m68k/kernel/*sun3*
9806 F:      arch/m68k/sun3*/
9807 F:      arch/m68k/include/asm/sun3*
9808 F:      drivers/net/ethernet/i825xx/sun3*
9809
9810 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
9811 M:      Hans de Goede <hdegoede@redhat.com>
9812 L:      linux-input@vger.kernel.org
9813 S:      Maintained
9814 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
9815 F:      drivers/input/keyboard/sun4i-lradc-keys.c
9816
9817 SUNDANCE NETWORK DRIVER
9818 M:      Denis Kirjanov <kda@linux-powerpc.org>
9819 L:      netdev@vger.kernel.org
9820 S:      Maintained
9821 F:      drivers/net/ethernet/dlink/sundance.c
9822
9823 SUPERH
9824 L:      linux-sh@vger.kernel.org
9825 Q:      http://patchwork.kernel.org/project/linux-sh/list/
9826 S:      Orphan
9827 F:      Documentation/sh/
9828 F:      arch/sh/
9829 F:      drivers/sh/
9830
9831 SUSPEND TO RAM
9832 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9833 M:      Len Brown <len.brown@intel.com>
9834 M:      Pavel Machek <pavel@ucw.cz>
9835 L:      linux-pm@vger.kernel.org
9836 S:      Supported
9837 F:      Documentation/power/
9838 F:      arch/x86/kernel/acpi/
9839 F:      drivers/base/power/
9840 F:      kernel/power/
9841 F:      include/linux/suspend.h
9842 F:      include/linux/freezer.h
9843 F:      include/linux/pm.h
9844
9845 SVGA HANDLING
9846 M:      Martin Mares <mj@ucw.cz>
9847 L:      linux-video@atrey.karlin.mff.cuni.cz
9848 S:      Maintained
9849 F:      Documentation/svga.txt
9850 F:      arch/x86/boot/video*
9851
9852 SWIOTLB SUBSYSTEM
9853 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9854 L:      linux-kernel@vger.kernel.org
9855 S:      Supported
9856 F:      lib/swiotlb.c
9857 F:      arch/*/kernel/pci-swiotlb.c
9858 F:      include/linux/swiotlb.h
9859
9860 SWITCHDEV
9861 M:      Jiri Pirko <jiri@resnulli.us>
9862 L:      netdev@vger.kernel.org
9863 S:      Supported
9864 F:      net/switchdev/
9865 F:      include/net/switchdev.h
9866
9867 SYNOPSYS ARC ARCHITECTURE
9868 M:      Vineet Gupta <vgupta@synopsys.com>
9869 S:      Supported
9870 F:      arch/arc/
9871 F:      Documentation/devicetree/bindings/arc/
9872 F:      drivers/tty/serial/arc_uart.c
9873
9874 SYNOPSYS ARC SDP platform support
9875 M:      Alexey Brodkin <abrodkin@synopsys.com>
9876 S:      Supported
9877 F:      arch/arc/plat-axs10x
9878 F:      arch/arc/boot/dts/ax*
9879 F:      Documentation/devicetree/bindings/arc/axs10*
9880
9881 SYSTEM CONFIGURATION (SYSCON)
9882 M:      Lee Jones <lee.jones@linaro.org>
9883 M:      Arnd Bergmann <arnd@arndb.de>
9884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
9885 S:      Supported
9886 F:      drivers/mfd/syscon.c
9887
9888 SYSV FILESYSTEM
9889 M:      Christoph Hellwig <hch@infradead.org>
9890 S:      Maintained
9891 F:      Documentation/filesystems/sysv-fs.txt
9892 F:      fs/sysv/
9893 F:      include/linux/sysv_fs.h
9894
9895 TARGET SUBSYSTEM
9896 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
9897 L:      linux-scsi@vger.kernel.org
9898 L:      target-devel@vger.kernel.org
9899 W:      http://www.linux-iscsi.org
9900 W:      http://groups.google.com/group/linux-iscsi-target-dev
9901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9902 S:      Supported
9903 F:      drivers/target/
9904 F:      include/target/
9905 F:      Documentation/target/
9906
9907 TASKSTATS STATISTICS INTERFACE
9908 M:      Balbir Singh <bsingharora@gmail.com>
9909 S:      Maintained
9910 F:      Documentation/accounting/taskstats*
9911 F:      include/linux/taskstats*
9912 F:      kernel/taskstats.c
9913
9914 TC CLASSIFIER
9915 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9916 L:      netdev@vger.kernel.org
9917 S:      Maintained
9918 F:      include/net/pkt_cls.h
9919 F:      include/uapi/linux/pkt_cls.h
9920 F:      net/sched/
9921
9922 TCP LOW PRIORITY MODULE
9923 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
9924 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
9925 W:      http://tcp-lp-mod.sourceforge.net/
9926 S:      Maintained
9927 F:      net/ipv4/tcp_lp.c
9928
9929 TDA10071 MEDIA DRIVER
9930 M:      Antti Palosaari <crope@iki.fi>
9931 L:      linux-media@vger.kernel.org
9932 W:      http://linuxtv.org/
9933 W:      http://palosaari.fi/linux/
9934 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9935 T:      git git://linuxtv.org/anttip/media_tree.git
9936 S:      Maintained
9937 F:      drivers/media/dvb-frontends/tda10071*
9938
9939 TDA18212 MEDIA DRIVER
9940 M:      Antti Palosaari <crope@iki.fi>
9941 L:      linux-media@vger.kernel.org
9942 W:      http://linuxtv.org/
9943 W:      http://palosaari.fi/linux/
9944 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9945 T:      git git://linuxtv.org/anttip/media_tree.git
9946 S:      Maintained
9947 F:      drivers/media/tuners/tda18212*
9948
9949 TDA18218 MEDIA DRIVER
9950 M:      Antti Palosaari <crope@iki.fi>
9951 L:      linux-media@vger.kernel.org
9952 W:      http://linuxtv.org/
9953 W:      http://palosaari.fi/linux/
9954 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9955 T:      git git://linuxtv.org/anttip/media_tree.git
9956 S:      Maintained
9957 F:      drivers/media/tuners/tda18218*
9958
9959 TDA18271 MEDIA DRIVER
9960 M:      Michael Krufky <mkrufky@linuxtv.org>
9961 L:      linux-media@vger.kernel.org
9962 W:      http://linuxtv.org/
9963 W:      http://github.com/mkrufky
9964 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9965 T:      git git://linuxtv.org/mkrufky/tuners.git
9966 S:      Maintained
9967 F:      drivers/media/tuners/tda18271*
9968
9969 TDA827x MEDIA DRIVER
9970 M:      Michael Krufky <mkrufky@linuxtv.org>
9971 L:      linux-media@vger.kernel.org
9972 W:      http://linuxtv.org/
9973 W:      http://github.com/mkrufky
9974 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9975 T:      git git://linuxtv.org/mkrufky/tuners.git
9976 S:      Maintained
9977 F:      drivers/media/tuners/tda8290.*
9978
9979 TDA8290 MEDIA DRIVER
9980 M:      Michael Krufky <mkrufky@linuxtv.org>
9981 L:      linux-media@vger.kernel.org
9982 W:      http://linuxtv.org/
9983 W:      http://github.com/mkrufky
9984 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9985 T:      git git://linuxtv.org/mkrufky/tuners.git
9986 S:      Maintained
9987 F:      drivers/media/tuners/tda8290.*
9988
9989 TDA9840 MEDIA DRIVER
9990 M:      Hans Verkuil <hverkuil@xs4all.nl>
9991 L:      linux-media@vger.kernel.org
9992 T:      git git://linuxtv.org/media_tree.git
9993 W:      http://linuxtv.org
9994 S:      Maintained
9995 F:      drivers/media/i2c/tda9840*
9996
9997 TEA5761 TUNER DRIVER
9998 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9999 L:      linux-media@vger.kernel.org
10000 W:      http://linuxtv.org
10001 T:      git git://linuxtv.org/media_tree.git
10002 S:      Odd fixes
10003 F:      drivers/media/tuners/tea5761.*
10004
10005 TEA5767 TUNER DRIVER
10006 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10007 L:      linux-media@vger.kernel.org
10008 W:      http://linuxtv.org
10009 T:      git git://linuxtv.org/media_tree.git
10010 S:      Maintained
10011 F:      drivers/media/tuners/tea5767.*
10012
10013 TEA6415C MEDIA DRIVER
10014 M:      Hans Verkuil <hverkuil@xs4all.nl>
10015 L:      linux-media@vger.kernel.org
10016 T:      git git://linuxtv.org/media_tree.git
10017 W:      http://linuxtv.org
10018 S:      Maintained
10019 F:      drivers/media/i2c/tea6415c*
10020
10021 TEA6420 MEDIA DRIVER
10022 M:      Hans Verkuil <hverkuil@xs4all.nl>
10023 L:      linux-media@vger.kernel.org
10024 T:      git git://linuxtv.org/media_tree.git
10025 W:      http://linuxtv.org
10026 S:      Maintained
10027 F:      drivers/media/i2c/tea6420*
10028
10029 TEAM DRIVER
10030 M:      Jiri Pirko <jiri@resnulli.us>
10031 L:      netdev@vger.kernel.org
10032 S:      Supported
10033 F:      drivers/net/team/
10034 F:      include/linux/if_team.h
10035 F:      include/uapi/linux/if_team.h
10036
10037 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10038 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10039 S:      Maintained
10040 F:      arch/x86/platform/ts5500/
10041
10042 TECHNOTREND USB IR RECEIVER
10043 M:      Sean Young <sean@mess.org>
10044 L:      linux-media@vger.kernel.org
10045 S:      Maintained
10046 F:      drivers/media/rc/ttusbir.c
10047
10048 TEGRA ARCHITECTURE SUPPORT
10049 M:      Stephen Warren <swarren@wwwdotorg.org>
10050 M:      Thierry Reding <thierry.reding@gmail.com>
10051 M:      Alexandre Courbot <gnurou@gmail.com>
10052 L:      linux-tegra@vger.kernel.org
10053 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10055 S:      Supported
10056 N:      [^a-z]tegra
10057
10058 TEGRA CLOCK DRIVER
10059 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10060 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10061 S:      Supported
10062 F:      drivers/clk/tegra/
10063
10064 TEGRA DMA DRIVER
10065 M:      Laxman Dewangan <ldewangan@nvidia.com>
10066 S:      Supported
10067 F:      drivers/dma/tegra20-apb-dma.c
10068
10069 TEGRA I2C DRIVER
10070 M:      Laxman Dewangan <ldewangan@nvidia.com>
10071 S:      Supported
10072 F:      drivers/i2c/busses/i2c-tegra.c
10073
10074 TEGRA IOMMU DRIVERS
10075 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10076 S:      Supported
10077 F:      drivers/iommu/tegra*
10078
10079 TEGRA KBC DRIVER
10080 M:      Rakesh Iyer <riyer@nvidia.com>
10081 M:      Laxman Dewangan <ldewangan@nvidia.com>
10082 S:      Supported
10083 F:      drivers/input/keyboard/tegra-kbc.c
10084
10085 TEGRA PWM DRIVER
10086 M:      Thierry Reding <thierry.reding@gmail.com>
10087 S:      Supported
10088 F:      drivers/pwm/pwm-tegra.c
10089
10090 TEGRA SERIAL DRIVER
10091 M:      Laxman Dewangan <ldewangan@nvidia.com>
10092 S:      Supported
10093 F:      drivers/tty/serial/serial-tegra.c
10094
10095 TEGRA SPI DRIVER
10096 M:      Laxman Dewangan <ldewangan@nvidia.com>
10097 S:      Supported
10098 F:      drivers/spi/spi-tegra*
10099
10100 TEHUTI ETHERNET DRIVER
10101 M:      Andy Gospodarek <andy@greyhouse.net>
10102 L:      netdev@vger.kernel.org
10103 S:      Supported
10104 F:      drivers/net/ethernet/tehuti/*
10105
10106 Telecom Clock Driver for MCPL0010
10107 M:      Mark Gross <mark.gross@intel.com>
10108 S:      Supported
10109 F:      drivers/char/tlclk.c
10110
10111 TENSILICA XTENSA PORT (xtensa)
10112 M:      Chris Zankel <chris@zankel.net>
10113 M:      Max Filippov <jcmvbkbc@gmail.com>
10114 L:      linux-xtensa@linux-xtensa.org
10115 S:      Maintained
10116 F:      arch/xtensa/
10117 F:      drivers/irqchip/irq-xtensa-*
10118
10119 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10120 M:      Hans Verkuil <hverkuil@xs4all.nl>
10121 L:      linux-media@vger.kernel.org
10122 T:      git git://linuxtv.org/media_tree.git
10123 W:      http://linuxtv.org
10124 S:      Maintained
10125 F:      drivers/media/radio/radio-raremono.c
10126
10127 THERMAL
10128 M:      Zhang Rui <rui.zhang@intel.com>
10129 M:      Eduardo Valentin <edubezval@gmail.com>
10130 L:      linux-pm@vger.kernel.org
10131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10133 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10134 S:      Supported
10135 F:      drivers/thermal/
10136 F:      include/linux/thermal.h
10137 F:      include/uapi/linux/thermal.h
10138 F:      include/linux/cpu_cooling.h
10139 F:      Documentation/devicetree/bindings/thermal/
10140
10141 THINGM BLINK(1) USB RGB LED DRIVER
10142 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10143 S:      Maintained
10144 F:      drivers/hid/hid-thingm.c
10145
10146 THINKPAD ACPI EXTRAS DRIVER
10147 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10148 L:      ibm-acpi-devel@lists.sourceforge.net
10149 L:      platform-driver-x86@vger.kernel.org
10150 W:      http://ibm-acpi.sourceforge.net
10151 W:      http://thinkwiki.org/wiki/Ibm-acpi
10152 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10153 S:      Maintained
10154 F:      drivers/platform/x86/thinkpad_acpi.c
10155
10156 TI BANDGAP AND THERMAL DRIVER
10157 M:      Eduardo Valentin <edubezval@gmail.com>
10158 L:      linux-pm@vger.kernel.org
10159 L:      linux-omap@vger.kernel.org
10160 S:      Maintained
10161 F:      drivers/thermal/ti-soc-thermal/
10162
10163 TI CDCE706 CLOCK DRIVER
10164 M:      Max Filippov <jcmvbkbc@gmail.com>
10165 S:      Maintained
10166 F:      drivers/clk/clk-cdce706.c
10167
10168 TI CLOCK DRIVER
10169 M:      Tero Kristo <t-kristo@ti.com>
10170 L:      linux-omap@vger.kernel.org
10171 S:      Maintained
10172 F:      drivers/clk/ti/
10173 F:      include/linux/clk/ti.h
10174
10175 TI FLASH MEDIA INTERFACE DRIVER
10176 M:      Alex Dubov <oakad@yahoo.com>
10177 S:      Maintained
10178 F:      drivers/misc/tifm*
10179 F:      drivers/mmc/host/tifm_sd.c
10180 F:      include/linux/tifm.h
10181
10182 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10183 M:      Santosh Shilimkar <ssantosh@kernel.org>
10184 L:      linux-kernel@vger.kernel.org
10185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10186 S:      Maintained
10187 F:      drivers/soc/ti/*
10188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10189
10190
10191 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10192 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10193 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10194 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10195 S:      Maintained
10196 F:      sound/soc/codecs/lm49453*
10197 F:      sound/soc/codecs/isabelle*
10198
10199 TI LP855x BACKLIGHT DRIVER
10200 M:      Milo Kim <milo.kim@ti.com>
10201 S:      Maintained
10202 F:      Documentation/backlight/lp855x-driver.txt
10203 F:      drivers/video/backlight/lp855x_bl.c
10204 F:      include/linux/platform_data/lp855x.h
10205
10206 TI LP8727 CHARGER DRIVER
10207 M:      Milo Kim <milo.kim@ti.com>
10208 S:      Maintained
10209 F:      drivers/power/lp8727_charger.c
10210 F:      include/linux/platform_data/lp8727.h
10211
10212 TI LP8788 MFD DRIVER
10213 M:      Milo Kim <milo.kim@ti.com>
10214 S:      Maintained
10215 F:      drivers/iio/adc/lp8788_adc.c
10216 F:      drivers/leds/leds-lp8788.c
10217 F:      drivers/mfd/lp8788*.c
10218 F:      drivers/power/lp8788-charger.c
10219 F:      drivers/regulator/lp8788-*.c
10220 F:      include/linux/mfd/lp8788*.h
10221
10222 TI NETCP ETHERNET DRIVER
10223 M:      Wingman Kwok <w-kwok2@ti.com>
10224 M:      Murali Karicheri <m-karicheri2@ti.com>
10225 L:      netdev@vger.kernel.org
10226 S:      Maintained
10227 F:      drivers/net/ethernet/ti/netcp*
10228
10229 TI TAS571X FAMILY ASoC CODEC DRIVER
10230 M:      Kevin Cernekee <cernekee@chromium.org>
10231 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10232 S:      Odd Fixes
10233 F:      sound/soc/codecs/tas571x*
10234
10235 TI TWL4030 SERIES SOC CODEC DRIVER
10236 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10237 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10238 S:      Maintained
10239 F:      sound/soc/codecs/twl4030*
10240
10241 TI WILINK WIRELESS DRIVERS
10242 L:      linux-wireless@vger.kernel.org
10243 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10244 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10246 S:      Orphan
10247 F:      drivers/net/wireless/ti/
10248 F:      include/linux/wl12xx.h
10249
10250 TIPC NETWORK LAYER
10251 M:      Jon Maloy <jon.maloy@ericsson.com>
10252 M:      Ying Xue <ying.xue@windriver.com>
10253 L:      netdev@vger.kernel.org (core kernel code)
10254 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10255 W:      http://tipc.sourceforge.net/
10256 S:      Maintained
10257 F:      include/uapi/linux/tipc*.h
10258 F:      net/tipc/
10259
10260 TILE ARCHITECTURE
10261 M:      Chris Metcalf <cmetcalf@ezchip.com>
10262 W:      http://www.ezchip.com/scm/
10263 S:      Supported
10264 F:      arch/tile/
10265 F:      drivers/char/tile-srom.c
10266 F:      drivers/edac/tile_edac.c
10267 F:      drivers/net/ethernet/tile/
10268 F:      drivers/rtc/rtc-tile.c
10269 F:      drivers/tty/hvc/hvc_tile.c
10270 F:      drivers/tty/serial/tilegx.c
10271 F:      drivers/usb/host/*-tilegx.c
10272 F:      include/linux/usb/tilegx.h
10273
10274 TLAN NETWORK DRIVER
10275 M:      Samuel Chessman <chessman@tux.org>
10276 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10277 W:      http://sourceforge.net/projects/tlan/
10278 S:      Maintained
10279 F:      Documentation/networking/tlan.txt
10280 F:      drivers/net/ethernet/ti/tlan.*
10281
10282 TOMOYO SECURITY MODULE
10283 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10284 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10285 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10286 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10287 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10288 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10289 W:      http://tomoyo.sourceforge.jp/
10290 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10291 S:      Maintained
10292 F:      security/tomoyo/
10293
10294 TOPSTAR LAPTOP EXTRAS DRIVER
10295 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10296 L:      platform-driver-x86@vger.kernel.org
10297 S:      Maintained
10298 F:      drivers/platform/x86/topstar-laptop.c
10299
10300 TOSHIBA ACPI EXTRAS DRIVER
10301 M:      Azael Avalos <coproscefalo@gmail.com>
10302 L:      platform-driver-x86@vger.kernel.org
10303 S:      Maintained
10304 F:      drivers/platform/x86/toshiba_acpi.c
10305
10306 TOSHIBA BLUETOOTH DRIVER
10307 M:      Azael Avalos <coproscefalo@gmail.com>
10308 L:      platform-driver-x86@vger.kernel.org
10309 S:      Maintained
10310 F:      drivers/platform/x86/toshiba_bluetooth.c
10311
10312 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10313 M:      Azael Avalos <coproscefalo@gmail.com>
10314 L:      platform-driver-x86@vger.kernel.org
10315 S:      Maintained
10316 F:      drivers/platform/x86/toshiba_haps.c
10317
10318 TOSHIBA SMM DRIVER
10319 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10320 L:      tlinux-users@tce.toshiba-dme.co.jp
10321 W:      http://www.buzzard.org.uk/toshiba/
10322 S:      Maintained
10323 F:      drivers/char/toshiba.c
10324 F:      include/linux/toshiba.h
10325 F:      include/uapi/linux/toshiba.h
10326
10327 TMIO MMC DRIVER
10328 M:      Ian Molton <ian@mnementh.co.uk>
10329 L:      linux-mmc@vger.kernel.org
10330 S:      Maintained
10331 F:      drivers/mmc/host/tmio_mmc*
10332 F:      drivers/mmc/host/sh_mobile_sdhi.c
10333 F:      include/linux/mmc/tmio.h
10334 F:      include/linux/mmc/sh_mobile_sdhi.h
10335
10336 TMP401 HARDWARE MONITOR DRIVER
10337 M:      Guenter Roeck <linux@roeck-us.net>
10338 L:      lm-sensors@lm-sensors.org
10339 S:      Maintained
10340 F:      Documentation/hwmon/tmp401
10341 F:      drivers/hwmon/tmp401.c
10342
10343 TMPFS (SHMEM FILESYSTEM)
10344 M:      Hugh Dickins <hughd@google.com>
10345 L:      linux-mm@kvack.org
10346 S:      Maintained
10347 F:      include/linux/shmem_fs.h
10348 F:      mm/shmem.c
10349
10350 TM6000 VIDEO4LINUX DRIVER
10351 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10352 L:      linux-media@vger.kernel.org
10353 W:      http://linuxtv.org
10354 T:      git git://linuxtv.org/media_tree.git
10355 S:      Odd fixes
10356 F:      drivers/media/usb/tm6000/
10357
10358 TW68 VIDEO4LINUX DRIVER
10359 M:      Hans Verkuil <hverkuil@xs4all.nl>
10360 L:      linux-media@vger.kernel.org
10361 T:      git git://linuxtv.org/media_tree.git
10362 W:      http://linuxtv.org
10363 S:      Odd Fixes
10364 F:      drivers/media/pci/tw68/
10365
10366 TPM DEVICE DRIVER
10367 M:      Peter Huewe <peterhuewe@gmx.de>
10368 M:      Marcel Selhorst <tpmdd@selhorst.net>
10369 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10370 W:      http://tpmdd.sourceforge.net
10371 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10372 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10373 T:      https://github.com/PeterHuewe/linux-tpmdd
10374 S:      Maintained
10375 F:      drivers/char/tpm/
10376
10377 TPM IBM_VTPM DEVICE DRIVER
10378 M:      Ashley Lai <ashleydlai@gmail.com>
10379 W:      http://tpmdd.sourceforge.net
10380 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10381 S:      Maintained
10382 F:      drivers/char/tpm/tpm_ibmvtpm*
10383
10384 TRACING
10385 M:      Steven Rostedt <rostedt@goodmis.org>
10386 M:      Ingo Molnar <mingo@redhat.com>
10387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10388 S:      Maintained
10389 F:      Documentation/trace/ftrace.txt
10390 F:      arch/*/*/*/ftrace.h
10391 F:      arch/*/kernel/ftrace.c
10392 F:      include/*/ftrace.h
10393 F:      include/linux/trace*.h
10394 F:      include/trace/
10395 F:      kernel/trace/
10396 F:      tools/testing/selftests/ftrace/
10397
10398 TRIVIAL PATCHES
10399 M:      Jiri Kosina <trivial@kernel.org>
10400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10401 S:      Maintained
10402 K:      ^Subject:.*(?i)trivial
10403
10404 TTY LAYER
10405 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10406 M:      Jiri Slaby <jslaby@suse.com>
10407 S:      Supported
10408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10409 F:      Documentation/serial/
10410 F:      drivers/tty/
10411 F:      drivers/tty/serial/serial_core.c
10412 F:      include/linux/serial_core.h
10413 F:      include/linux/serial.h
10414 F:      include/linux/tty.h
10415 F:      include/uapi/linux/serial_core.h
10416 F:      include/uapi/linux/serial.h
10417 F:      include/uapi/linux/tty.h
10418
10419 TUA9001 MEDIA DRIVER
10420 M:      Antti Palosaari <crope@iki.fi>
10421 L:      linux-media@vger.kernel.org
10422 W:      http://linuxtv.org/
10423 W:      http://palosaari.fi/linux/
10424 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10425 T:      git git://linuxtv.org/anttip/media_tree.git
10426 S:      Maintained
10427 F:      drivers/media/tuners/tua9001*
10428
10429 TULIP NETWORK DRIVERS
10430 M:      Grant Grundler <grundler@parisc-linux.org>
10431 L:      netdev@vger.kernel.org
10432 S:      Maintained
10433 F:      drivers/net/ethernet/dec/tulip/
10434
10435 TUN/TAP driver
10436 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10437 W:      http://vtun.sourceforge.net/tun
10438 S:      Maintained
10439 F:      Documentation/networking/tuntap.txt
10440 F:      arch/um/os-Linux/drivers/
10441
10442 TURBOCHANNEL SUBSYSTEM
10443 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10444 M:      Ralf Baechle <ralf@linux-mips.org>
10445 L:      linux-mips@linux-mips.org
10446 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10447 S:      Maintained
10448 F:      drivers/tc/
10449 F:      include/linux/tc.h
10450
10451 U14-34F SCSI DRIVER
10452 M:      Dario Ballabio <ballabio_dario@emc.com>
10453 L:      linux-scsi@vger.kernel.org
10454 S:      Maintained
10455 F:      drivers/scsi/u14-34f.c
10456
10457 UBI FILE SYSTEM (UBIFS)
10458 M:      Artem Bityutskiy <dedekind1@gmail.com>
10459 M:      Adrian Hunter <adrian.hunter@intel.com>
10460 L:      linux-mtd@lists.infradead.org
10461 T:      git git://git.infradead.org/ubifs-2.6.git
10462 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10463 S:      Maintained
10464 F:      Documentation/filesystems/ubifs.txt
10465 F:      fs/ubifs/
10466
10467 UCLINUX (M68KNOMMU AND COLDFIRE)
10468 M:      Greg Ungerer <gerg@uclinux.org>
10469 W:      http://www.uclinux.org/
10470 L:      linux-m68k@lists.linux-m68k.org
10471 L:      uclinux-dev@uclinux.org  (subscribers-only)
10472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10473 S:      Maintained
10474 F:      arch/m68k/coldfire/
10475 F:      arch/m68k/68*/
10476 F:      arch/m68k/*/*_no.*
10477 F:      arch/m68k/include/asm/*_no.*
10478
10479 UDF FILESYSTEM
10480 M:      Jan Kara <jack@suse.com>
10481 S:      Maintained
10482 F:      Documentation/filesystems/udf.txt
10483 F:      fs/udf/
10484
10485 UFS FILESYSTEM
10486 M:      Evgeniy Dushistov <dushistov@mail.ru>
10487 S:      Maintained
10488 F:      Documentation/filesystems/ufs.txt
10489 F:      fs/ufs/
10490
10491 UHID USERSPACE HID IO DRIVER:
10492 M:      David Herrmann <dh.herrmann@googlemail.com>
10493 L:      linux-input@vger.kernel.org
10494 S:      Maintained
10495 F:      drivers/hid/uhid.c
10496 F:      include/uapi/linux/uhid.h
10497
10498 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10499 L:      linux-usb@vger.kernel.org
10500 S:      Orphan
10501 F:      drivers/uwb/
10502 F:      include/linux/uwb.h
10503 F:      include/linux/uwb/
10504
10505 UNICORE32 ARCHITECTURE:
10506 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10507 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10508 S:      Maintained
10509 T:      git git://github.com/gxt/linux.git
10510 F:      arch/unicore32/
10511
10512 UNIFDEF
10513 M:      Tony Finch <dot@dotat.at>
10514 W:      http://dotat.at/prog/unifdef
10515 S:      Maintained
10516 F:      scripts/unifdef.c
10517
10518 UNIFORM CDROM DRIVER
10519 M:      Jens Axboe <axboe@kernel.dk>
10520 W:      http://www.kernel.dk
10521 S:      Maintained
10522 F:      Documentation/cdrom/
10523 F:      drivers/cdrom/cdrom.c
10524 F:      include/linux/cdrom.h
10525 F:      include/uapi/linux/cdrom.h
10526
10527 UNISYS S-PAR DRIVERS
10528 M:      Benjamin Romer <benjamin.romer@unisys.com>
10529 M:      David Kershner <david.kershner@unisys.com>
10530 L:      sparmaintainer@unisys.com (Unisys internal)
10531 S:      Supported
10532 F:      drivers/staging/unisys/
10533
10534 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10535 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10536 L:      linux-scsi@vger.kernel.org
10537 S:      Supported
10538 F:      Documentation/scsi/ufs.txt
10539 F:      drivers/scsi/ufs/
10540
10541 UNSORTED BLOCK IMAGES (UBI)
10542 M:      Artem Bityutskiy <dedekind1@gmail.com>
10543 M:      Richard Weinberger <richard@nod.at>
10544 W:      http://www.linux-mtd.infradead.org/
10545 L:      linux-mtd@lists.infradead.org
10546 T:      git git://git.infradead.org/ubifs-2.6.git
10547 S:      Supported
10548 F:      drivers/mtd/ubi/
10549 F:      include/linux/mtd/ubi.h
10550 F:      include/uapi/mtd/ubi-user.h
10551
10552 USB ACM DRIVER
10553 M:      Oliver Neukum <oliver@neukum.org>
10554 L:      linux-usb@vger.kernel.org
10555 S:      Maintained
10556 F:      Documentation/usb/acm.txt
10557 F:      drivers/usb/class/cdc-acm.*
10558
10559 USB AR5523 WIRELESS DRIVER
10560 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10561 L:      linux-wireless@vger.kernel.org
10562 S:      Maintained
10563 F:      drivers/net/wireless/ath/ar5523/
10564
10565 USB ATTACHED SCSI
10566 M:      Hans de Goede <hdegoede@redhat.com>
10567 M:      Gerd Hoffmann <kraxel@redhat.com>
10568 L:      linux-usb@vger.kernel.org
10569 L:      linux-scsi@vger.kernel.org
10570 S:      Maintained
10571 F:      drivers/usb/storage/uas.c
10572
10573 USB CDC ETHERNET DRIVER
10574 M:      Oliver Neukum <oliver@neukum.org>
10575 L:      linux-usb@vger.kernel.org
10576 S:      Maintained
10577 F:      drivers/net/usb/cdc_*.c
10578 F:      include/uapi/linux/usb/cdc.h
10579
10580 USB CHAOSKEY DRIVER
10581 M:      Keith Packard <keithp@keithp.com>
10582 L:      linux-usb@vger.kernel.org
10583 S:      Maintained
10584 F:      drivers/usb/misc/chaoskey.c
10585
10586 USB CYPRESS C67X00 DRIVER
10587 M:      Peter Korsgaard <jacmet@sunsite.dk>
10588 L:      linux-usb@vger.kernel.org
10589 S:      Maintained
10590 F:      drivers/usb/c67x00/
10591
10592 USB DAVICOM DM9601 DRIVER
10593 M:      Peter Korsgaard <jacmet@sunsite.dk>
10594 L:      netdev@vger.kernel.org
10595 W:      http://www.linux-usb.org/usbnet
10596 S:      Maintained
10597 F:      drivers/net/usb/dm9601.c
10598
10599 USB DIAMOND RIO500 DRIVER
10600 M:      Cesar Miquel <miquel@df.uba.ar>
10601 L:      rio500-users@lists.sourceforge.net
10602 W:      http://rio500.sourceforge.net
10603 S:      Maintained
10604 F:      drivers/usb/misc/rio500*
10605
10606 USB EHCI DRIVER
10607 M:      Alan Stern <stern@rowland.harvard.edu>
10608 L:      linux-usb@vger.kernel.org
10609 S:      Maintained
10610 F:      Documentation/usb/ehci.txt
10611 F:      drivers/usb/host/ehci*
10612
10613 USB GADGET/PERIPHERAL SUBSYSTEM
10614 M:      Felipe Balbi <balbi@ti.com>
10615 L:      linux-usb@vger.kernel.org
10616 W:      http://www.linux-usb.org/gadget
10617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10618 S:      Maintained
10619 F:      drivers/usb/gadget/
10620 F:      include/linux/usb/gadget*
10621
10622 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10623 M:      Jiri Kosina <jkosina@suse.com>
10624 L:      linux-usb@vger.kernel.org
10625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10626 S:      Maintained
10627 F:      Documentation/hid/hiddev.txt
10628 F:      drivers/hid/usbhid/
10629
10630 USB ISP116X DRIVER
10631 M:      Olav Kongas <ok@artecdesign.ee>
10632 L:      linux-usb@vger.kernel.org
10633 S:      Maintained
10634 F:      drivers/usb/host/isp116x*
10635 F:      include/linux/usb/isp116x.h
10636
10637 USB MASS STORAGE DRIVER
10638 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10639 L:      linux-usb@vger.kernel.org
10640 L:      usb-storage@lists.one-eyed-alien.net
10641 S:      Maintained
10642 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10643 F:      drivers/usb/storage/
10644
10645 USB MIDI DRIVER
10646 M:      Clemens Ladisch <clemens@ladisch.de>
10647 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10648 T:      git git://git.alsa-project.org/alsa-kernel.git
10649 S:      Maintained
10650 F:      sound/usb/midi.*
10651
10652 USB NETWORKING DRIVERS
10653 L:      linux-usb@vger.kernel.org
10654 S:      Odd Fixes
10655 F:      drivers/net/usb/
10656
10657 USB OHCI DRIVER
10658 M:      Alan Stern <stern@rowland.harvard.edu>
10659 L:      linux-usb@vger.kernel.org
10660 S:      Maintained
10661 F:      Documentation/usb/ohci.txt
10662 F:      drivers/usb/host/ohci*
10663
10664 USB OTG FSM (Finite State Machine)
10665 M:      Peter Chen <Peter.Chen@freescale.com>
10666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10667 L:      linux-usb@vger.kernel.org
10668 S:      Maintained
10669 F:      drivers/usb/common/usb-otg-fsm.c
10670
10671 USB OVER IP DRIVER
10672 M:      Valentina Manea <valentina.manea.m@gmail.com>
10673 M:      Shuah Khan <shuah.kh@samsung.com>
10674 L:      linux-usb@vger.kernel.org
10675 S:      Maintained
10676 F:      drivers/usb/usbip/
10677 F:      tools/usb/usbip/
10678
10679 USB PEGASUS DRIVER
10680 M:      Petko Manolov <petkan@nucleusys.com>
10681 L:      linux-usb@vger.kernel.org
10682 L:      netdev@vger.kernel.org
10683 T:      git git://github.com/petkan/pegasus.git
10684 W:      https://github.com/petkan/pegasus
10685 S:      Maintained
10686 F:      drivers/net/usb/pegasus.*
10687
10688 USB PHY LAYER
10689 M:      Felipe Balbi <balbi@ti.com>
10690 L:      linux-usb@vger.kernel.org
10691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10692 S:      Maintained
10693 F:      drivers/usb/phy/
10694
10695 USB PRINTER DRIVER (usblp)
10696 M:      Pete Zaitcev <zaitcev@redhat.com>
10697 L:      linux-usb@vger.kernel.org
10698 S:      Supported
10699 F:      drivers/usb/class/usblp.c
10700
10701 USB RTL8150 DRIVER
10702 M:      Petko Manolov <petkan@nucleusys.com>
10703 L:      linux-usb@vger.kernel.org
10704 L:      netdev@vger.kernel.org
10705 T:      git git://github.com/petkan/rtl8150.git
10706 W:      https://github.com/petkan/rtl8150
10707 S:      Maintained
10708 F:      drivers/net/usb/rtl8150.c
10709
10710 USB SERIAL SUBSYSTEM
10711 M:      Johan Hovold <johan@kernel.org>
10712 L:      linux-usb@vger.kernel.org
10713 S:      Maintained
10714 F:      Documentation/usb/usb-serial.txt
10715 F:      drivers/usb/serial/
10716 F:      include/linux/usb/serial.h
10717
10718 USB SMSC75XX ETHERNET DRIVER
10719 M:      Steve Glendinning <steve.glendinning@shawell.net>
10720 L:      netdev@vger.kernel.org
10721 S:      Maintained
10722 F:      drivers/net/usb/smsc75xx.*
10723
10724 USB SMSC95XX ETHERNET DRIVER
10725 M:      Steve Glendinning <steve.glendinning@shawell.net>
10726 L:      netdev@vger.kernel.org
10727 S:      Maintained
10728 F:      drivers/net/usb/smsc95xx.*
10729
10730 USB SUBSYSTEM
10731 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10732 L:      linux-usb@vger.kernel.org
10733 W:      http://www.linux-usb.org
10734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10735 S:      Supported
10736 F:      Documentation/usb/
10737 F:      drivers/usb/
10738 F:      include/linux/usb.h
10739 F:      include/linux/usb/
10740
10741 USB UHCI DRIVER
10742 M:      Alan Stern <stern@rowland.harvard.edu>
10743 L:      linux-usb@vger.kernel.org
10744 S:      Maintained
10745 F:      drivers/usb/host/uhci*
10746
10747 USB "USBNET" DRIVER FRAMEWORK
10748 M:      Oliver Neukum <oneukum@suse.com>
10749 L:      netdev@vger.kernel.org
10750 W:      http://www.linux-usb.org/usbnet
10751 S:      Maintained
10752 F:      drivers/net/usb/usbnet.c
10753 F:      include/linux/usb/usbnet.h
10754
10755 USB VIDEO CLASS
10756 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10757 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10758 L:      linux-media@vger.kernel.org
10759 T:      git git://linuxtv.org/media_tree.git
10760 W:      http://www.ideasonboard.org/uvc/
10761 S:      Maintained
10762 F:      drivers/media/usb/uvc/
10763 F:      include/uapi/linux/uvcvideo.h
10764
10765 USB VISION DRIVER
10766 M:      Hans Verkuil <hverkuil@xs4all.nl>
10767 L:      linux-media@vger.kernel.org
10768 T:      git git://linuxtv.org/media_tree.git
10769 W:      http://linuxtv.org
10770 S:      Odd Fixes
10771 F:      drivers/media/usb/usbvision/
10772
10773 USB WEBCAM GADGET
10774 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10775 L:      linux-usb@vger.kernel.org
10776 S:      Maintained
10777 F:      drivers/usb/gadget/function/*uvc*
10778 F:      drivers/usb/gadget/legacy/webcam.c
10779
10780 USB WIRELESS RNDIS DRIVER (rndis_wlan)
10781 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
10782 L:      linux-wireless@vger.kernel.org
10783 S:      Maintained
10784 F:      drivers/net/wireless/rndis_wlan.c
10785
10786 USB XHCI DRIVER
10787 M:      Mathias Nyman <mathias.nyman@intel.com>
10788 L:      linux-usb@vger.kernel.org
10789 S:      Supported
10790 F:      drivers/usb/host/xhci*
10791 F:      drivers/usb/host/pci-quirks*
10792
10793 USB ZD1201 DRIVER
10794 L:      linux-wireless@vger.kernel.org
10795 W:      http://linux-lc100020.sourceforge.net
10796 S:      Orphan
10797 F:      drivers/net/wireless/zd1201.*
10798
10799 USB ZR364XX DRIVER
10800 M:      Antoine Jacquet <royale@zerezo.com>
10801 L:      linux-usb@vger.kernel.org
10802 L:      linux-media@vger.kernel.org
10803 T:      git git://linuxtv.org/media_tree.git
10804 W:      http://royale.zerezo.com/zr364xx/
10805 S:      Maintained
10806 F:      Documentation/video4linux/zr364xx.txt
10807 F:      drivers/media/usb/zr364xx/
10808
10809 ULPI BUS
10810 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
10811 L:      linux-usb@vger.kernel.org
10812 S:      Maintained
10813 F:      drivers/usb/common/ulpi.c
10814 F:      include/linux/ulpi/
10815
10816 USER-MODE LINUX (UML)
10817 M:      Jeff Dike <jdike@addtoit.com>
10818 M:      Richard Weinberger <richard@nod.at>
10819 L:      user-mode-linux-devel@lists.sourceforge.net
10820 L:      user-mode-linux-user@lists.sourceforge.net
10821 W:      http://user-mode-linux.sourceforge.net
10822 S:      Maintained
10823 F:      Documentation/virtual/uml/
10824 F:      arch/um/
10825 F:      arch/x86/um/
10826 F:      fs/hostfs/
10827 F:      fs/hppfs/
10828
10829 USERSPACE I/O (UIO)
10830 M:      "Hans J. Koch" <hjk@hansjkoch.de>
10831 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10832 S:      Maintained
10833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
10834 F:      Documentation/DocBook/uio-howto.tmpl
10835 F:      drivers/uio/
10836 F:      include/linux/uio*.h
10837
10838 UTIL-LINUX PACKAGE
10839 M:      Karel Zak <kzak@redhat.com>
10840 L:      util-linux@vger.kernel.org
10841 W:      http://en.wikipedia.org/wiki/Util-linux
10842 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
10843 S:      Maintained
10844
10845 UVESAFB DRIVER
10846 M:      Michal Januszewski <spock@gentoo.org>
10847 L:      linux-fbdev@vger.kernel.org
10848 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
10849 S:      Maintained
10850 F:      Documentation/fb/uvesafb.txt
10851 F:      drivers/video/fbdev/uvesafb.*
10852
10853 VFAT/FAT/MSDOS FILESYSTEM
10854 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
10855 S:      Maintained
10856 F:      Documentation/filesystems/vfat.txt
10857 F:      fs/fat/
10858
10859 VFIO DRIVER
10860 M:      Alex Williamson <alex.williamson@redhat.com>
10861 L:      kvm@vger.kernel.org
10862 S:      Maintained
10863 F:      Documentation/vfio.txt
10864 F:      drivers/vfio/
10865 F:      include/linux/vfio.h
10866 F:      include/uapi/linux/vfio.h
10867
10868 VFIO PLATFORM DRIVER
10869 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
10870 L:      kvm@vger.kernel.org
10871 S:      Maintained
10872 F:      drivers/vfio/platform/
10873
10874 VIDEOBUF2 FRAMEWORK
10875 M:      Pawel Osciak <pawel@osciak.com>
10876 M:      Marek Szyprowski <m.szyprowski@samsung.com>
10877 M:      Kyungmin Park <kyungmin.park@samsung.com>
10878 L:      linux-media@vger.kernel.org
10879 S:      Maintained
10880 F:      drivers/media/v4l2-core/videobuf2-*
10881 F:      include/media/videobuf2-*
10882
10883 VIRTIO CONSOLE DRIVER
10884 M:      Amit Shah <amit.shah@redhat.com>
10885 L:      virtualization@lists.linux-foundation.org
10886 S:      Maintained
10887 F:      drivers/char/virtio_console.c
10888 F:      include/linux/virtio_console.h
10889 F:      include/uapi/linux/virtio_console.h
10890
10891 VIRTIO CORE, NET AND BLOCK DRIVERS
10892 M:      "Michael S. Tsirkin" <mst@redhat.com>
10893 L:      virtualization@lists.linux-foundation.org
10894 S:      Maintained
10895 F:      drivers/virtio/
10896 F:      tools/virtio/
10897 F:      drivers/net/virtio_net.c
10898 F:      drivers/block/virtio_blk.c
10899 F:      include/linux/virtio_*.h
10900 F:      include/uapi/linux/virtio_*.h
10901
10902 VIRTIO GPU DRIVER
10903 M:      David Airlie <airlied@linux.ie>
10904 M:      Gerd Hoffmann <kraxel@redhat.com>
10905 L:      dri-devel@lists.freedesktop.org
10906 L:      virtualization@lists.linux-foundation.org
10907 S:      Maintained
10908 F:      drivers/gpu/drm/virtio/
10909 F:      include/uapi/linux/virtio_gpu.h
10910
10911 VIRTIO HOST (VHOST)
10912 M:      "Michael S. Tsirkin" <mst@redhat.com>
10913 L:      kvm@vger.kernel.org
10914 L:      virtualization@lists.linux-foundation.org
10915 L:      netdev@vger.kernel.org
10916 S:      Maintained
10917 F:      drivers/vhost/
10918 F:      include/uapi/linux/vhost.h
10919
10920 VIRTIO INPUT DRIVER
10921 M:      Gerd Hoffmann <kraxel@redhat.com>
10922 S:      Maintained
10923 F:      drivers/virtio/virtio_input.c
10924 F:      include/uapi/linux/virtio_input.h
10925
10926 VIA RHINE NETWORK DRIVER
10927 S:      Orphan
10928 F:      drivers/net/ethernet/via/via-rhine.c
10929
10930 VIA SD/MMC CARD CONTROLLER DRIVER
10931 M:      Bruce Chang <brucechang@via.com.tw>
10932 M:      Harald Welte <HaraldWelte@viatech.com>
10933 S:      Maintained
10934 F:      drivers/mmc/host/via-sdmmc.c
10935
10936 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
10937 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
10938 L:      linux-fbdev@vger.kernel.org
10939 S:      Maintained
10940 F:      include/linux/via-core.h
10941 F:      include/linux/via-gpio.h
10942 F:      include/linux/via_i2c.h
10943 F:      drivers/video/fbdev/via/
10944
10945 VIA VELOCITY NETWORK DRIVER
10946 M:      Francois Romieu <romieu@fr.zoreil.com>
10947 L:      netdev@vger.kernel.org
10948 S:      Maintained
10949 F:      drivers/net/ethernet/via/via-velocity.*
10950
10951 VIVID VIRTUAL VIDEO DRIVER
10952 M:      Hans Verkuil <hverkuil@xs4all.nl>
10953 L:      linux-media@vger.kernel.org
10954 T:      git git://linuxtv.org/media_tree.git
10955 W:      http://linuxtv.org
10956 S:      Maintained
10957 F:      drivers/media/platform/vivid/*
10958
10959 VLAN (802.1Q)
10960 M:      Patrick McHardy <kaber@trash.net>
10961 L:      netdev@vger.kernel.org
10962 S:      Maintained
10963 F:      drivers/net/macvlan.c
10964 F:      include/linux/if_*vlan.h
10965 F:      net/8021q/
10966
10967 VLYNQ BUS
10968 M:      Florian Fainelli <florian@openwrt.org>
10969 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
10970 S:      Maintained
10971 F:      drivers/vlynq/vlynq.c
10972 F:      include/linux/vlynq.h
10973
10974 VME SUBSYSTEM
10975 M:      Martyn Welch <martyn.welch@ge.com>
10976 M:      Manohar Vanga <manohar.vanga@gmail.com>
10977 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10978 L:      devel@driverdev.osuosl.org
10979 S:      Maintained
10980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10981 F:      Documentation/vme_api.txt
10982 F:      drivers/staging/vme/
10983 F:      drivers/vme/
10984 F:      include/linux/vme*
10985
10986 VMWARE HYPERVISOR INTERFACE
10987 M:      Alok Kataria <akataria@vmware.com>
10988 L:      virtualization@lists.linux-foundation.org
10989 S:      Supported
10990 F:      arch/x86/kernel/cpu/vmware.c
10991
10992 VMWARE BALLOON DRIVER
10993 M:      Xavier Deguillard <xdeguillard@vmware.com>
10994 M:      Philip Moltmann <moltmann@vmware.com>
10995 M:      "VMware, Inc." <pv-drivers@vmware.com>
10996 L:      linux-kernel@vger.kernel.org
10997 S:      Maintained
10998 F:      drivers/misc/vmw_balloon.c
10999
11000 VMWARE VMMOUSE SUBDRIVER
11001 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11002 M:      "VMware, Inc." <pv-drivers@vmware.com>
11003 L:      linux-input@vger.kernel.org
11004 S:      Maintained
11005 F:      drivers/input/mouse/vmmouse.c
11006 F:      drivers/input/mouse/vmmouse.h
11007
11008 VMWARE VMXNET3 ETHERNET DRIVER
11009 M:      Shreyas Bhatewara <sbhatewara@vmware.com>
11010 M:      "VMware, Inc." <pv-drivers@vmware.com>
11011 L:      netdev@vger.kernel.org
11012 S:      Maintained
11013 F:      drivers/net/vmxnet3/
11014
11015 VMware PVSCSI driver
11016 M:      Arvind Kumar <arvindkumar@vmware.com>
11017 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11018 L:      linux-scsi@vger.kernel.org
11019 S:      Maintained
11020 F:      drivers/scsi/vmw_pvscsi.c
11021 F:      drivers/scsi/vmw_pvscsi.h
11022
11023 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11024 M:      Liam Girdwood <lgirdwood@gmail.com>
11025 M:      Mark Brown <broonie@kernel.org>
11026 L:      linux-kernel@vger.kernel.org
11027 W:      http://opensource.wolfsonmicro.com/node/15
11028 W:      http://www.slimlogic.co.uk/?p=48
11029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11030 S:      Supported
11031 F:      drivers/regulator/
11032 F:      include/linux/regulator/
11033
11034 VT1211 HARDWARE MONITOR DRIVER
11035 M:      Juerg Haefliger <juergh@gmail.com>
11036 L:      lm-sensors@lm-sensors.org
11037 S:      Maintained
11038 F:      Documentation/hwmon/vt1211
11039 F:      drivers/hwmon/vt1211.c
11040
11041 VT8231 HARDWARE MONITOR DRIVER
11042 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11043 L:      lm-sensors@lm-sensors.org
11044 S:      Maintained
11045 F:      drivers/hwmon/vt8231.c
11046
11047 VUB300 USB to SDIO/SD/MMC bridge chip
11048 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11049 L:      linux-mmc@vger.kernel.org
11050 L:      linux-usb@vger.kernel.org
11051 S:      Supported
11052 F:      drivers/mmc/host/vub300.c
11053
11054 W1 DALLAS'S 1-WIRE BUS
11055 M:      Evgeniy Polyakov <zbr@ioremap.net>
11056 S:      Maintained
11057 F:      Documentation/w1/
11058 F:      drivers/w1/
11059
11060 W83791D HARDWARE MONITORING DRIVER
11061 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11062 L:      lm-sensors@lm-sensors.org
11063 S:      Maintained
11064 F:      Documentation/hwmon/w83791d
11065 F:      drivers/hwmon/w83791d.c
11066
11067 W83793 HARDWARE MONITORING DRIVER
11068 M:      Rudolf Marek <r.marek@assembler.cz>
11069 L:      lm-sensors@lm-sensors.org
11070 S:      Maintained
11071 F:      Documentation/hwmon/w83793
11072 F:      drivers/hwmon/w83793.c
11073
11074 W83795 HARDWARE MONITORING DRIVER
11075 M:      Jean Delvare <jdelvare@suse.com>
11076 L:      lm-sensors@lm-sensors.org
11077 S:      Maintained
11078 F:      drivers/hwmon/w83795.c
11079
11080 W83L51xD SD/MMC CARD INTERFACE DRIVER
11081 M:      Pierre Ossman <pierre@ossman.eu>
11082 S:      Maintained
11083 F:      drivers/mmc/host/wbsd.*
11084
11085 WACOM PROTOCOL 4 SERIAL TABLETS
11086 M:      Julian Squires <julian@cipht.net>
11087 M:      Hans de Goede <hdegoede@redhat.com>
11088 L:      linux-input@vger.kernel.org
11089 S:      Maintained
11090 F:      drivers/input/tablet/wacom_serial4.c
11091
11092 WATCHDOG DEVICE DRIVERS
11093 M:      Wim Van Sebroeck <wim@iguana.be>
11094 L:      linux-watchdog@vger.kernel.org
11095 W:      http://www.linux-watchdog.org/
11096 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11097 S:      Maintained
11098 F:      Documentation/watchdog/
11099 F:      drivers/watchdog/
11100 F:      include/linux/watchdog.h
11101 F:      include/uapi/linux/watchdog.h
11102
11103 WD7000 SCSI DRIVER
11104 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11105 L:      linux-scsi@vger.kernel.org
11106 S:      Maintained
11107 F:      drivers/scsi/wd7000.c
11108
11109 WIIMOTE HID DRIVER
11110 M:      David Herrmann <dh.herrmann@googlemail.com>
11111 L:      linux-input@vger.kernel.org
11112 S:      Maintained
11113 F:      drivers/hid/hid-wiimote*
11114
11115 WINBOND CIR DRIVER
11116 M:      David Härdeman <david@hardeman.nu>
11117 S:      Maintained
11118 F:      drivers/media/rc/winbond-cir.c
11119
11120 WIMAX STACK
11121 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11122 M:      linux-wimax@intel.com
11123 L:      wimax@linuxwimax.org (subscribers-only)
11124 S:      Supported
11125 W:      http://linuxwimax.org
11126 F:      Documentation/wimax/README.wimax
11127 F:      include/linux/wimax/debug.h
11128 F:      include/net/wimax.h
11129 F:      include/uapi/linux/wimax.h
11130 F:      net/wimax/
11131
11132 WISTRON LAPTOP BUTTON DRIVER
11133 M:      Miloslav Trmac <mitr@volny.cz>
11134 S:      Maintained
11135 F:      drivers/input/misc/wistron_btns.c
11136
11137 WL3501 WIRELESS PCMCIA CARD DRIVER
11138 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11139 L:      linux-wireless@vger.kernel.org
11140 W:      http://oops.ghostprotocols.net:81/blog
11141 S:      Maintained
11142 F:      drivers/net/wireless/wl3501*
11143
11144 WM97XX TOUCHSCREEN DRIVERS
11145 M:      Mark Brown <broonie@kernel.org>
11146 M:      Liam Girdwood <lrg@slimlogic.co.uk>
11147 L:      linux-input@vger.kernel.org
11148 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
11149 W:      http://opensource.wolfsonmicro.com/node/7
11150 S:      Supported
11151 F:      drivers/input/touchscreen/*wm97*
11152 F:      include/linux/wm97xx.h
11153
11154 WOLFSON MICROELECTRONICS DRIVERS
11155 L:      patches@opensource.wolfsonmicro.com
11156 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
11157 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
11158 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
11159 S:      Supported
11160 F:      Documentation/hwmon/wm83??
11161 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11162 F:      drivers/clk/clk-wm83*.c
11163 F:      drivers/extcon/extcon-arizona.c
11164 F:      drivers/leds/leds-wm83*.c
11165 F:      drivers/gpio/gpio-*wm*.c
11166 F:      drivers/gpio/gpio-arizona.c
11167 F:      drivers/hwmon/wm83??-hwmon.c
11168 F:      drivers/input/misc/wm831x-on.c
11169 F:      drivers/input/touchscreen/wm831x-ts.c
11170 F:      drivers/input/touchscreen/wm97*.c
11171 F:      drivers/mfd/arizona*
11172 F:      drivers/mfd/wm*.c
11173 F:      drivers/power/wm83*.c
11174 F:      drivers/rtc/rtc-wm83*.c
11175 F:      drivers/regulator/wm8*.c
11176 F:      drivers/video/backlight/wm83*_bl.c
11177 F:      drivers/watchdog/wm83*_wdt.c
11178 F:      include/linux/mfd/arizona/
11179 F:      include/linux/mfd/wm831x/
11180 F:      include/linux/mfd/wm8350/
11181 F:      include/linux/mfd/wm8400*
11182 F:      include/linux/wm97xx.h
11183 F:      include/sound/wm????.h
11184 F:      sound/soc/codecs/arizona.?
11185 F:      sound/soc/codecs/wm*
11186
11187 WORKQUEUE
11188 M:      Tejun Heo <tj@kernel.org>
11189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11190 S:      Maintained
11191 F:      include/linux/workqueue.h
11192 F:      kernel/workqueue.c
11193 F:      Documentation/workqueue.txt
11194
11195 X.25 NETWORK LAYER
11196 M:      Andrew Hendry <andrew.hendry@gmail.com>
11197 L:      linux-x25@vger.kernel.org
11198 S:      Odd Fixes
11199 F:      Documentation/networking/x25*
11200 F:      include/net/x25*
11201 F:      net/x25/
11202
11203 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11204 M:      Thomas Gleixner <tglx@linutronix.de>
11205 M:      Ingo Molnar <mingo@redhat.com>
11206 M:      "H. Peter Anvin" <hpa@zytor.com>
11207 M:      x86@kernel.org
11208 L:      linux-kernel@vger.kernel.org
11209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11210 S:      Maintained
11211 F:      Documentation/x86/
11212 F:      arch/x86/
11213
11214 X86 PLATFORM DRIVERS
11215 M:      Darren Hart <dvhart@infradead.org>
11216 L:      platform-driver-x86@vger.kernel.org
11217 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11218 S:      Maintained
11219 F:      drivers/platform/x86/
11220
11221 X86 MCE INFRASTRUCTURE
11222 M:      Tony Luck <tony.luck@intel.com>
11223 M:      Borislav Petkov <bp@alien8.de>
11224 L:      linux-edac@vger.kernel.org
11225 S:      Maintained
11226 F:      arch/x86/kernel/cpu/mcheck/*
11227
11228 X86 VDSO
11229 M:      Andy Lutomirski <luto@amacapital.net>
11230 L:      linux-kernel@vger.kernel.org
11231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11232 S:      Maintained
11233 F:      arch/x86/entry/vdso/
11234
11235 XC2028/3028 TUNER DRIVER
11236 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11237 L:      linux-media@vger.kernel.org
11238 W:      http://linuxtv.org
11239 T:      git git://linuxtv.org/media_tree.git
11240 S:      Maintained
11241 F:      drivers/media/tuners/tuner-xc2028.*
11242
11243 XEN HYPERVISOR INTERFACE
11244 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11245 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11246 M:      David Vrabel <david.vrabel@citrix.com>
11247 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11249 S:      Supported
11250 F:      arch/x86/xen/
11251 F:      drivers/*/xen-*front.c
11252 F:      drivers/xen/
11253 F:      arch/x86/include/asm/xen/
11254 F:      include/xen/
11255 F:      include/uapi/xen/
11256
11257 XEN HYPERVISOR ARM
11258 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11259 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11260 S:      Supported
11261 F:      arch/arm/xen/
11262 F:      arch/arm/include/asm/xen/
11263
11264 XEN HYPERVISOR ARM64
11265 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11266 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11267 S:      Supported
11268 F:      arch/arm64/xen/
11269 F:      arch/arm64/include/asm/xen/
11270
11271 XEN NETWORK BACKEND DRIVER
11272 M:      Ian Campbell <ian.campbell@citrix.com>
11273 M:      Wei Liu <wei.liu2@citrix.com>
11274 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11275 L:      netdev@vger.kernel.org
11276 S:      Supported
11277 F:      drivers/net/xen-netback/*
11278
11279 XEN PCI SUBSYSTEM
11280 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11281 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11282 S:      Supported
11283 F:      arch/x86/pci/*xen*
11284 F:      drivers/pci/*xen*
11285
11286 XEN BLOCK SUBSYSTEM
11287 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11288 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11289 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11290 S:      Supported
11291 F:      drivers/block/xen-blkback/*
11292 F:      drivers/block/xen*
11293
11294 XEN PVSCSI DRIVERS
11295 M:      Juergen Gross <jgross@suse.com>
11296 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11297 L:      linux-scsi@vger.kernel.org
11298 S:      Supported
11299 F:      drivers/scsi/xen-scsifront.c
11300 F:      drivers/xen/xen-scsiback.c
11301 F:      include/xen/interface/io/vscsiif.h
11302
11303 XEN SWIOTLB SUBSYSTEM
11304 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11305 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11306 S:      Supported
11307 F:      arch/x86/xen/*swiotlb*
11308 F:      drivers/xen/*swiotlb*
11309
11310 XFS FILESYSTEM
11311 P:      Silicon Graphics Inc
11312 M:      Dave Chinner <david@fromorbit.com>
11313 M:      xfs@oss.sgi.com
11314 L:      xfs@oss.sgi.com
11315 W:      http://oss.sgi.com/projects/xfs
11316 T:      git git://oss.sgi.com/xfs/xfs.git
11317 S:      Supported
11318 F:      Documentation/filesystems/xfs.txt
11319 F:      fs/xfs/
11320
11321 XILINX AXI ETHERNET DRIVER
11322 M:      Anirudha Sarangi <anirudh@xilinx.com>
11323 M:      John Linn <John.Linn@xilinx.com>
11324 S:      Maintained
11325 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11326
11327 XILINX UARTLITE SERIAL DRIVER
11328 M:      Peter Korsgaard <jacmet@sunsite.dk>
11329 L:      linux-serial@vger.kernel.org
11330 S:      Maintained
11331 F:      drivers/tty/serial/uartlite.c
11332
11333 XILINX VIDEO IP CORES
11334 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11335 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11336 L:      linux-media@vger.kernel.org
11337 T:      git git://linuxtv.org/media_tree.git
11338 S:      Supported
11339 F:      Documentation/devicetree/bindings/media/xilinx/
11340 F:      drivers/media/platform/xilinx/
11341 F:      include/uapi/linux/xilinx-v4l2-controls.h
11342
11343 XILLYBUS DRIVER
11344 M:      Eli Billauer <eli.billauer@gmail.com>
11345 L:      linux-kernel@vger.kernel.org
11346 S:      Supported
11347 F:      drivers/char/xillybus/
11348
11349 XTENSA XTFPGA PLATFORM SUPPORT
11350 M:      Max Filippov <jcmvbkbc@gmail.com>
11351 L:      linux-xtensa@linux-xtensa.org
11352 S:      Maintained
11353 F:      drivers/spi/spi-xtensa-xtfpga.c
11354 F:      sound/soc/xtensa/xtfpga-i2s.c
11355
11356 YAM DRIVER FOR AX.25
11357 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11358 L:      linux-hams@vger.kernel.org
11359 S:      Maintained
11360 F:      drivers/net/hamradio/yam*
11361 F:      include/linux/yam.h
11362
11363 YEALINK PHONE DRIVER
11364 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11365 L:      usbb2k-api-dev@nongnu.org
11366 S:      Maintained
11367 F:      Documentation/input/yealink.txt
11368 F:      drivers/input/misc/yealink.*
11369
11370 Z8530 DRIVER FOR AX.25
11371 M:      Joerg Reuter <jreuter@yaina.de>
11372 W:      http://yaina.de/jreuter/
11373 W:      http://www.qsl.net/dl1bke/
11374 L:      linux-hams@vger.kernel.org
11375 S:      Maintained
11376 F:      Documentation/networking/z8530drv.txt
11377 F:      drivers/net/hamradio/*scc.c
11378 F:      drivers/net/hamradio/z8530.h
11379
11380 ZBUD COMPRESSED PAGE ALLOCATOR
11381 M:      Seth Jennings <sjennings@variantweb.net>
11382 L:      linux-mm@kvack.org
11383 S:      Maintained
11384 F:      mm/zbud.c
11385 F:      include/linux/zbud.h
11386
11387 ZD1211RW WIRELESS DRIVER
11388 M:      Daniel Drake <dsd@gentoo.org>
11389 M:      Ulrich Kunitz <kune@deine-taler.de>
11390 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11391 L:      linux-wireless@vger.kernel.org
11392 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11393 S:      Maintained
11394 F:      drivers/net/wireless/zd1211rw/
11395
11396 ZPOOL COMPRESSED PAGE STORAGE API
11397 M:      Dan Streetman <ddstreet@ieee.org>
11398 L:      linux-mm@kvack.org
11399 S:      Maintained
11400 F:      mm/zpool.c
11401 F:      include/linux/zpool.h
11402
11403 ZR36067 VIDEO FOR LINUX DRIVER
11404 L:      mjpeg-users@lists.sourceforge.net
11405 L:      linux-media@vger.kernel.org
11406 W:      http://mjpeg.sourceforge.net/driver-zoran/
11407 T:      hg http://linuxtv.org/hg/v4l-dvb
11408 S:      Odd Fixes
11409 F:      drivers/media/pci/zoran/
11410
11411 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11412 M:      Minchan Kim <minchan@kernel.org>
11413 M:      Nitin Gupta <ngupta@vflare.org>
11414 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11415 L:      linux-kernel@vger.kernel.org
11416 S:      Maintained
11417 F:      drivers/block/zram/
11418 F:      Documentation/blockdev/zram.txt
11419
11420 ZS DECSTATION Z85C30 SERIAL DRIVER
11421 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11422 S:      Maintained
11423 F:      drivers/tty/serial/zs.*
11424
11425 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11426 M:      Minchan Kim <minchan@kernel.org>
11427 M:      Nitin Gupta <ngupta@vflare.org>
11428 L:      linux-mm@kvack.org
11429 S:      Maintained
11430 F:      mm/zsmalloc.c
11431 F:      include/linux/zsmalloc.h
11432 F:      Documentation/vm/zsmalloc.txt
11433
11434 ZSWAP COMPRESSED SWAP CACHING
11435 M:      Seth Jennings <sjennings@variantweb.net>
11436 L:      linux-mm@kvack.org
11437 S:      Maintained
11438 F:      mm/zswap.c
11439
11440 THE REST
11441 M:      Linus Torvalds <torvalds@linux-foundation.org>
11442 L:      linux-kernel@vger.kernel.org
11443 Q:      http://patchwork.kernel.org/project/LKML/list/
11444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11445 S:      Buried alive in reporters
11446 F:      *
11447 F:      */