Merge branch 'for-linus' of git://ftp.arm.linux.org.uk/~rmk/linux-arm
[cascardo/linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161
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.cz>
365 S:      Maintained
366
367 ADM1025 HARDWARE MONITOR DRIVER
368 M:      Jean Delvare <jdelvare@suse.de>
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.de>
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.de>
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.de>
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@amd.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/amdkfd/
640 F:      drivers/gpu/drm/amd/include/cik_structs.h
641 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
642 F:      drivers/gpu/drm/radeon/radeon_kfd.c
643 F:      drivers/gpu/drm/radeon/radeon_kfd.h
644 F:      include/uapi/linux/kfd_ioctl.h
645
646 AMD MICROCODE UPDATE SUPPORT
647 M:      Borislav Petkov <bp@alien8.de>
648 S:      Maintained
649 F:      arch/x86/kernel/cpu/microcode/amd*
650
651 AMD XGBE DRIVER
652 M:      Tom Lendacky <thomas.lendacky@amd.com>
653 L:      netdev@vger.kernel.org
654 S:      Supported
655 F:      drivers/net/ethernet/amd/xgbe/
656
657 AMS (Apple Motion Sensor) DRIVER
658 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
659 S:      Supported
660 F:      drivers/macintosh/ams/
661
662 AMSO1100 RNIC DRIVER
663 M:      Tom Tucker <tom@opengridcomputing.com>
664 M:      Steve Wise <swise@opengridcomputing.com>
665 L:      linux-rdma@vger.kernel.org
666 S:      Maintained
667 F:      drivers/infiniband/hw/amso1100/
668
669 ANALOG DEVICES INC AD9389B DRIVER
670 M:      Hans Verkuil <hans.verkuil@cisco.com>
671 L:      linux-media@vger.kernel.org
672 S:      Maintained
673 F:      drivers/media/i2c/ad9389b*
674
675 ANALOG DEVICES INC ADV7180 DRIVER
676 M:      Lars-Peter Clausen <lars@metafoo.de>
677 L:      linux-media@vger.kernel.org
678 W:      http://ez.analog.com/community/linux-device-drivers
679 S:      Supported
680 F:      drivers/media/i2c/adv7180.c
681
682 ANALOG DEVICES INC ADV7511 DRIVER
683 M:      Hans Verkuil <hans.verkuil@cisco.com>
684 L:      linux-media@vger.kernel.org
685 S:      Maintained
686 F:      drivers/media/i2c/adv7511*
687
688 ANALOG DEVICES INC ADV7604 DRIVER
689 M:      Hans Verkuil <hans.verkuil@cisco.com>
690 L:      linux-media@vger.kernel.org
691 S:      Maintained
692 F:      drivers/media/i2c/adv7604*
693
694 ANALOG DEVICES INC ADV7842 DRIVER
695 M:      Hans Verkuil <hans.verkuil@cisco.com>
696 L:      linux-media@vger.kernel.org
697 S:      Maintained
698 F:      drivers/media/i2c/adv7842*
699
700 ANALOG DEVICES INC ASOC CODEC DRIVERS
701 M:      Lars-Peter Clausen <lars@metafoo.de>
702 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
703 W:      http://wiki.analog.com/
704 W:      http://ez.analog.com/community/linux-device-drivers
705 S:      Supported
706 F:      sound/soc/codecs/adau*
707 F:      sound/soc/codecs/adav*
708 F:      sound/soc/codecs/ad1*
709 F:      sound/soc/codecs/ad7*
710 F:      sound/soc/codecs/ssm*
711 F:      sound/soc/codecs/sigmadsp.*
712
713 ANALOG DEVICES INC ASOC DRIVERS
714 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
715 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
716 W:      http://blackfin.uclinux.org/
717 S:      Supported
718 F:      sound/soc/blackfin/*
719
720 ANALOG DEVICES INC IIO DRIVERS
721 M:      Lars-Peter Clausen <lars@metafoo.de>
722 M:      Michael Hennerich <Michael.Hennerich@analog.com>
723 W:      http://wiki.analog.com/
724 W:      http://ez.analog.com/community/linux-device-drivers
725 S:      Supported
726 F:      drivers/iio/*/ad*
727 X:      drivers/iio/*/adjd*
728 F:      drivers/staging/iio/*/ad*
729 F:      staging/iio/trigger/iio-trig-bfin-timer.c
730
731 ANDROID DRIVERS
732 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
733 M:      Arve HjønnevĂ¥g <arve@android.com>
734 M:      Riley Andrews <riandrews@android.com>
735 T:      git git://git.kernel.org/pub/scm/linux/kernel/gregkh/staging.git
736 L:      devel@driverdev.osuosl.org
737 S:      Supported
738 F:      drivers/android/
739 F:      drivers/staging/android/
740
741 AOA (Apple Onboard Audio) ALSA DRIVER
742 M:      Johannes Berg <johannes@sipsolutions.net>
743 L:      linuxppc-dev@lists.ozlabs.org
744 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
745 S:      Maintained
746 F:      sound/aoa/
747
748 APM DRIVER
749 M:      Jiri Kosina <jkosina@suse.cz>
750 S:      Odd fixes
751 F:      arch/x86/kernel/apm_32.c
752 F:      include/linux/apm_bios.h
753 F:      include/uapi/linux/apm_bios.h
754 F:      drivers/char/apm-emulation.c
755
756 APPLE BCM5974 MULTITOUCH DRIVER
757 M:      Henrik Rydberg <rydberg@bitmath.org>
758 L:      linux-input@vger.kernel.org
759 S:      Odd fixes
760 F:      drivers/input/mouse/bcm5974.c
761
762 APPLE SMC DRIVER
763 M:      Henrik Rydberg <rydberg@bitmath.org>
764 L:      lm-sensors@lm-sensors.org
765 S:      Odd fixes
766 F:      drivers/hwmon/applesmc.c
767
768 APPLETALK NETWORK LAYER
769 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
770 S:      Maintained
771 F:      drivers/net/appletalk/
772 F:      net/appletalk/
773
774 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
775 M:      Iyappan Subramanian <isubramanian@apm.com>
776 M:      Keyur Chudgar <kchudgar@apm.com>
777 S:      Supported
778 F:      drivers/net/ethernet/apm/xgene/
779 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
780
781 APTINA CAMERA SENSOR PLL
782 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
783 L:      linux-media@vger.kernel.org
784 S:      Maintained
785 F:      drivers/media/i2c/aptina-pll.*
786
787 ARC FRAMEBUFFER DRIVER
788 M:      Jaya Kumar <jayalk@intworks.biz>
789 S:      Maintained
790 F:      drivers/video/fbdev/arcfb.c
791 F:      drivers/video/fbdev/core/fb_defio.c
792
793 ARM MFM AND FLOPPY DRIVERS
794 M:      Ian Molton <spyro@f2s.com>
795 S:      Maintained
796 F:      arch/arm/lib/floppydma.S
797 F:      arch/arm/include/asm/floppy.h
798
799 ARM PMU PROFILING AND DEBUGGING
800 M:      Will Deacon <will.deacon@arm.com>
801 S:      Maintained
802 F:      arch/arm/kernel/perf_event*
803 F:      arch/arm/oprofile/common.c
804 F:      arch/arm/include/asm/pmu.h
805 F:      arch/arm/kernel/hw_breakpoint.c
806 F:      arch/arm/include/asm/hw_breakpoint.h
807
808 ARM PORT
809 M:      Russell King <linux@arm.linux.org.uk>
810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
811 W:      http://www.arm.linux.org.uk/
812 S:      Maintained
813 F:      arch/arm/
814
815 ARM SUB-ARCHITECTURES
816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
817 S:      Maintained
818 F:      arch/arm/mach-*/
819 F:      arch/arm/plat-*/
820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
821
822 ARM PRIMECELL AACI PL041 DRIVER
823 M:      Russell King <linux@arm.linux.org.uk>
824 S:      Maintained
825 F:      sound/arm/aaci.*
826
827 ARM PRIMECELL CLCD PL110 DRIVER
828 M:      Russell King <linux@arm.linux.org.uk>
829 S:      Maintained
830 F:      drivers/video/fbdev/amba-clcd.*
831
832 ARM PRIMECELL KMI PL050 DRIVER
833 M:      Russell King <linux@arm.linux.org.uk>
834 S:      Maintained
835 F:      drivers/input/serio/ambakmi.*
836 F:      include/linux/amba/kmi.h
837
838 ARM PRIMECELL MMCI PL180/1 DRIVER
839 M:      Russell King <linux@arm.linux.org.uk>
840 S:      Maintained
841 F:      drivers/mmc/host/mmci.*
842 F:      include/linux/amba/mmci.h
843
844 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
845 M:      Russell King <linux@arm.linux.org.uk>
846 S:      Maintained
847 F:      drivers/tty/serial/amba-pl01*.c
848 F:      include/linux/amba/serial.h
849
850 ARM PRIMECELL BUS SUPPORT
851 M:      Russell King <linux@arm.linux.org.uk>
852 S:      Maintained
853 F:      drivers/amba/
854 F:      include/linux/amba/bus.h
855
856 ARM/ADS SPHERE MACHINE SUPPORT
857 M:      Lennert Buytenhek <kernel@wantstofly.org>
858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
859 S:      Maintained
860
861 ARM/AFEB9260 MACHINE SUPPORT
862 M:      Sergey Lapin <slapin@ossfans.org>
863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
864 S:      Maintained
865
866 ARM/AJECO 1ARM MACHINE SUPPORT
867 M:      Lennert Buytenhek <kernel@wantstofly.org>
868 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
869 S:      Maintained
870
871 ARM/Allwinner A1X SoC support
872 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
874 S:      Maintained
875 N:      sun[x4567]i
876
877 ARM/Allwinner SoC Clock Support
878 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
879 S:      Maintained
880 F:      drivers/clk/sunxi/
881
882 ARM/Amlogic MesonX SoC support
883 M:      Carlo Caione <carlo@caione.org>
884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
885 S:      Maintained
886 F:      drivers/media/rc/meson-ir.c
887 N:      meson[x68]
888
889 ARM/Annapurna Labs ALPINE ARCHITECTURE
890 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
891 S:      Maintained
892 F:      arch/arm/mach-alpine/
893
894 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
895 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
896 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
897 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
899 W:      http://www.linux4sam.org
900 S:      Supported
901 F:      arch/arm/mach-at91/
902 F:      include/soc/at91/
903 F:      arch/arm/boot/dts/at91*.dts
904 F:      arch/arm/boot/dts/at91*.dtsi
905 F:      arch/arm/boot/dts/sama*.dts
906 F:      arch/arm/boot/dts/sama*.dtsi
907 F:      arch/arm/include/debug/at91.S
908
909 ARM/ATMEL AT91 Clock Support
910 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
911 S:      Maintained
912 F:      drivers/clk/at91
913
914 ARM/CALXEDA HIGHBANK ARCHITECTURE
915 M:      Rob Herring <robh@kernel.org>
916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917 S:      Maintained
918 F:      arch/arm/mach-highbank/
919
920 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
921 M:      Krzysztof Halasa <khalasa@piap.pl>
922 S:      Maintained
923 F:      arch/arm/mach-cns3xxx/
924
925 ARM/CAVIUM THUNDER NETWORK DRIVER
926 M:      Sunil Goutham <sgoutham@cavium.com>
927 M:      Robert Richter <rric@kernel.org>
928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
929 S:      Supported
930 F:      drivers/net/ethernet/cavium/
931
932 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
933 M:      Alexander Shiyan <shc_work@mail.ru>
934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
935 S:      Odd Fixes
936 N:      clps711x
937
938 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
939 M:      Hartley Sweeten <hsweeten@visionengravers.com>
940 M:      Ryan Mallon <rmallon@gmail.com>
941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
942 S:      Maintained
943 F:      arch/arm/mach-ep93xx/
944 F:      arch/arm/mach-ep93xx/include/mach/
945
946 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
947 M:      Lennert Buytenhek <kernel@wantstofly.org>
948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
949 S:      Maintained
950
951 ARM/CLKDEV SUPPORT
952 M:      Russell King <linux@arm.linux.org.uk>
953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
954 S:      Maintained
955 F:      arch/arm/include/asm/clkdev.h
956 F:      drivers/clk/clkdev.c
957
958 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
959 M:      Mike Rapoport <mike@compulab.co.il>
960 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
961 S:      Maintained
962
963 ARM/CONTEC MICRO9 MACHINE SUPPORT
964 M:      Hubert Feurstein <hubert.feurstein@contec.at>
965 S:      Maintained
966 F:      arch/arm/mach-ep93xx/micro9.c
967
968 ARM/CORESIGHT FRAMEWORK AND DRIVERS
969 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
971 S:      Maintained
972 F:      drivers/hwtracing/coresight/*
973 F:      Documentation/trace/coresight.txt
974 F:      Documentation/devicetree/bindings/arm/coresight.txt
975 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
976
977 ARM/CORGI MACHINE SUPPORT
978 M:      Richard Purdie <rpurdie@rpsys.net>
979 S:      Maintained
980
981 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
982 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
984 T:      git git://github.com/ulli-kroll/linux.git
985 S:      Maintained
986 F:      arch/arm/mach-gemini/
987 F:      drivers/rtc/rtc-gemini.c
988
989 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
990 M:      Barry Song <baohua@kernel.org>
991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
993 S:      Maintained
994 F:      arch/arm/mach-prima2/
995 F:      drivers/clk/sirf/
996 F:      drivers/clocksource/timer-prima2.c
997 F:      drivers/clocksource/timer-atlas7.c
998 N:      [^a-z]sirf
999
1000 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1001 M:      Baruch Siach <baruch@tkos.co.il>
1002 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1003 S:      Maintained
1004 N:      digicolor
1005
1006 ARM/EBSA110 MACHINE SUPPORT
1007 M:      Russell King <linux@arm.linux.org.uk>
1008 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1009 W:      http://www.arm.linux.org.uk/
1010 S:      Maintained
1011 F:      arch/arm/mach-ebsa110/
1012 F:      drivers/net/ethernet/amd/am79c961a.*
1013
1014 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1015 M:      Uwe Kleine-König <kernel@pengutronix.de>
1016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1017 S:      Maintained
1018 N:      efm32
1019
1020 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1021 M:      Daniel Ribeiro <drwyrm@gmail.com>
1022 M:      Stefan Schmidt <stefan@openezx.org>
1023 M:      Harald Welte <laforge@openezx.org>
1024 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1025 W:      http://www.openezx.org/
1026 S:      Maintained
1027 T:      topgit git://git.openezx.org/openezx.git
1028 F:      arch/arm/mach-pxa/ezx.c
1029
1030 ARM/FARADAY FA526 PORT
1031 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1033 S:      Maintained
1034 T:      git git://git.berlios.de/gemini-board
1035 F:      arch/arm/mm/*-fa*
1036
1037 ARM/FOOTBRIDGE ARCHITECTURE
1038 M:      Russell King <linux@arm.linux.org.uk>
1039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1040 W:      http://www.arm.linux.org.uk/
1041 S:      Maintained
1042 F:      arch/arm/include/asm/hardware/dec21285.h
1043 F:      arch/arm/mach-footbridge/
1044
1045 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1046 M:      Shawn Guo <shawnguo@kernel.org>
1047 M:      Sascha Hauer <kernel@pengutronix.de>
1048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1049 S:      Maintained
1050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1051 F:      arch/arm/mach-imx/
1052 F:      arch/arm/mach-mxs/
1053 F:      arch/arm/boot/dts/imx*
1054 F:      arch/arm/configs/imx*_defconfig
1055 F:      drivers/clk/imx/
1056 F:      include/soc/imx/
1057
1058 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1059 M:      Shawn Guo <shawnguo@kernel.org>
1060 M:      Sascha Hauer <kernel@pengutronix.de>
1061 R:      Stefan Agner <stefan@agner.ch>
1062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1063 S:      Maintained
1064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1065 F:      arch/arm/mach-imx/*vf610*
1066 F:      arch/arm/boot/dts/vf*
1067
1068 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1069 M:      Lennert Buytenhek <kernel@wantstofly.org>
1070 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1071 S:      Maintained
1072
1073 ARM/GUMSTIX MACHINE SUPPORT
1074 M:      Steve Sakoman <sakoman@gmail.com>
1075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1076 S:      Maintained
1077
1078 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1079 M:      Philipp Zabel <philipp.zabel@gmail.com>
1080 M:      Paul Parsons <lost.distance@yahoo.com>
1081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1082 S:      Maintained
1083 F:      arch/arm/mach-pxa/hx4700.c
1084 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1085 F:      sound/soc/pxa/hx4700.c
1086
1087 ARM/HISILICON SOC SUPPORT
1088 M:      Wei Xu <xuwei5@hisilicon.com>
1089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090 W:      http://www.hisilicon.com
1091 S:      Supported
1092 T:      git git://github.com/hisilicon/linux-hisi.git
1093 F:      arch/arm/mach-hisi/
1094
1095 ARM/HP JORNADA 7XX MACHINE SUPPORT
1096 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1097 W:      www.jlime.com
1098 S:      Maintained
1099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1100 F:      arch/arm/mach-sa1100/jornada720.c
1101 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1102
1103 ARM/IGEP MACHINE SUPPORT
1104 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1105 M:      Javier Martinez Canillas <javier@dowhile0.org>
1106 L:      linux-omap@vger.kernel.org
1107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1108 S:      Maintained
1109 F:      arch/arm/boot/dts/omap3-igep*
1110
1111 ARM/INCOME PXA270 SUPPORT
1112 M:      Marek Vasut <marek.vasut@gmail.com>
1113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1114 S:      Maintained
1115 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1116
1117 ARM/INTEL IOP32X ARM ARCHITECTURE
1118 M:      Lennert Buytenhek <kernel@wantstofly.org>
1119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1120 S:      Maintained
1121
1122 ARM/INTEL IOP33X ARM ARCHITECTURE
1123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1124 S:      Orphan
1125
1126 ARM/INTEL IOP13XX ARM ARCHITECTURE
1127 M:      Lennert Buytenhek <kernel@wantstofly.org>
1128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1129 S:      Maintained
1130
1131 ARM/INTEL IQ81342EX MACHINE SUPPORT
1132 M:      Lennert Buytenhek <kernel@wantstofly.org>
1133 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1134 S:      Maintained
1135
1136 ARM/INTEL IXDP2850 MACHINE SUPPORT
1137 M:      Lennert Buytenhek <kernel@wantstofly.org>
1138 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1139 S:      Maintained
1140
1141 ARM/INTEL IXP4XX ARM ARCHITECTURE
1142 M:      Imre Kaloz <kaloz@openwrt.org>
1143 M:      Krzysztof Halasa <khalasa@piap.pl>
1144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1145 S:      Maintained
1146 F:      arch/arm/mach-ixp4xx/
1147
1148 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1149 M:      Jonathan Cameron <jic23@cam.ac.uk>
1150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1151 S:      Maintained
1152 F:      arch/arm/mach-pxa/stargate2.c
1153 F:      drivers/pcmcia/pxa2xx_stargate2.c
1154
1155 ARM/INTEL XSC3 (MANZANO) ARM CORE
1156 M:      Lennert Buytenhek <kernel@wantstofly.org>
1157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1158 S:      Maintained
1159
1160 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1161 M:      Lennert Buytenhek <kernel@wantstofly.org>
1162 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1163 S:      Maintained
1164
1165 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1166 M:      Santosh Shilimkar <ssantosh@kernel.org>
1167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1168 S:      Maintained
1169 F:      arch/arm/mach-keystone/
1170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1171
1172 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1173 M:      Santosh Shilimkar <ssantosh@kernel.org>
1174 L:      linux-kernel@vger.kernel.org
1175 S:      Maintained
1176 F:      drivers/clk/keystone/
1177
1178 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1179 M:      Santosh Shilimkar <ssantosh@kernel.org>
1180 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1181 L:      linux-kernel@vger.kernel.org
1182 S:      Maintained
1183 F:      drivers/clocksource/timer-keystone.c
1184
1185 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1186 M:      Santosh Shilimkar <ssantosh@kernel.org>
1187 L:      linux-kernel@vger.kernel.org
1188 S:      Maintained
1189 F:      drivers/power/reset/keystone-reset.c
1190
1191 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1192 M:      Santosh Shilimkar <ssantosh@kernel.org>
1193 L:      linux-kernel@vger.kernel.org
1194 S:      Maintained
1195 F:      drivers/memory/*emif*
1196
1197 ARM/LOGICPD PXA270 MACHINE SUPPORT
1198 M:      Lennert Buytenhek <kernel@wantstofly.org>
1199 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1200 S:      Maintained
1201
1202 ARM/LPC18XX ARCHITECTURE
1203 M:      Joachim Eastwood <manabian@gmail.com>
1204 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1205 S:      Maintained
1206 N:      lpc18xx
1207
1208 ARM/MAGICIAN MACHINE SUPPORT
1209 M:      Philipp Zabel <philipp.zabel@gmail.com>
1210 S:      Maintained
1211
1212 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1213 M:      Jason Cooper <jason@lakedaemon.net>
1214 M:      Andrew Lunn <andrew@lunn.ch>
1215 M:      Gregory Clement <gregory.clement@free-electrons.com>
1216 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218 S:      Maintained
1219 F:      arch/arm/mach-mvebu/
1220 F:      drivers/rtc/rtc-armada38x.c
1221 F:      arch/arm/boot/dts/armada*
1222 F:      arch/arm/boot/dts/kirkwood*
1223
1224
1225 ARM/Marvell Berlin SoC support
1226 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1227 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1228 S:      Maintained
1229 F:      arch/arm/mach-berlin/
1230 F:      arch/arm/boot/dts/berlin*
1231
1232
1233 ARM/Marvell Dove/MV78xx0/Orion SOC support
1234 M:      Jason Cooper <jason@lakedaemon.net>
1235 M:      Andrew Lunn <andrew@lunn.ch>
1236 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1237 M:      Gregory Clement <gregory.clement@free-electrons.com>
1238 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239 S:      Maintained
1240 F:      arch/arm/mach-dove/
1241 F:      arch/arm/mach-mv78xx0/
1242 F:      arch/arm/mach-orion5x/
1243 F:      arch/arm/plat-orion/
1244 F:      arch/arm/boot/dts/dove*
1245 F:      arch/arm/boot/dts/orion5x*
1246
1247
1248 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1249 M:      Alexander Clouter <alex@digriz.org.uk>
1250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251 W:      http://www.digriz.org.uk/ts78xx/kernel
1252 S:      Maintained
1253 F:      arch/arm/mach-orion5x/ts78xx-*
1254
1255 ARM/Mediatek RTC DRIVER
1256 M:      Eddie Huang <eddie.huang@mediatek.com>
1257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1258 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1259 S:      Maintained
1260 F:      drivers/rtc/rtc-mt6397.c
1261
1262 ARM/Mediatek SoC support
1263 M:      Matthias Brugger <matthias.bgg@gmail.com>
1264 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1265 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1266 S:      Maintained
1267 F:      arch/arm/boot/dts/mt6*
1268 F:      arch/arm/boot/dts/mt8*
1269 F:      arch/arm/mach-mediatek/
1270 N:      mtk
1271 K:      mediatek
1272
1273 ARM/MICREL KS8695 ARCHITECTURE
1274 M:      Greg Ungerer <gerg@uclinux.org>
1275 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1276 F:      arch/arm/mach-ks8695/
1277 S:      Odd Fixes
1278
1279 ARM/MIOA701 MACHINE SUPPORT
1280 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1281 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1282 F:      arch/arm/mach-pxa/mioa701.c
1283 S:      Maintained
1284
1285 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1286 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1287 S:      Maintained
1288
1289 ARM/NOMADIK ARCHITECTURE
1290 M:      Alessandro Rubini <rubini@unipv.it>
1291 M:      Linus Walleij <linus.walleij@linaro.org>
1292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1293 S:      Maintained
1294 F:      arch/arm/mach-nomadik/
1295 F:      drivers/pinctrl/nomadik/
1296 F:      drivers/i2c/busses/i2c-nomadik.c
1297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1298
1299 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1300 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1301 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1302 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1303 S:      Supported
1304
1305 ARM/TOSA MACHINE SUPPORT
1306 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1307 M:      Dirk Opfer <dirk@opfer-online.de>
1308 S:      Maintained
1309
1310 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1311 M:      Marek Vasut <marek.vasut@gmail.com>
1312 L:      linux-arm-kernel@lists.infradead.org
1313 W:      http://hackndev.com
1314 S:      Maintained
1315 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1316 F:      arch/arm/mach-pxa/palmtx.c
1317 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1318 F:      arch/arm/mach-pxa/palmt5.c
1319 F:      arch/arm/mach-pxa/include/mach/palmld.h
1320 F:      arch/arm/mach-pxa/palmld.c
1321 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1322 F:      arch/arm/mach-pxa/palmte2.c
1323 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1324 F:      arch/arm/mach-pxa/palmtc.c
1325
1326 ARM/PALM TREO SUPPORT
1327 M:      Tomas Cech <sleep_walker@suse.cz>
1328 L:      linux-arm-kernel@lists.infradead.org
1329 W:      http://hackndev.com
1330 S:      Maintained
1331 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1332 F:      arch/arm/mach-pxa/palmtreo.c
1333
1334 ARM/PALMZ72 SUPPORT
1335 M:      Sergey Lapin <slapin@ossfans.org>
1336 L:      linux-arm-kernel@lists.infradead.org
1337 W:      http://hackndev.com
1338 S:      Maintained
1339 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1340 F:      arch/arm/mach-pxa/palmz72.c
1341
1342 ARM/PLEB SUPPORT
1343 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1344 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1345 S:      Maintained
1346
1347 ARM/PT DIGITAL BOARD PORT
1348 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1350 W:      http://www.arm.linux.org.uk/
1351 S:      Maintained
1352
1353 ARM/QUALCOMM SUPPORT
1354 M:      Kumar Gala <galak@codeaurora.org>
1355 M:      Andy Gross <agross@codeaurora.org>
1356 M:      David Brown <davidb@codeaurora.org>
1357 L:      linux-arm-msm@vger.kernel.org
1358 L:      linux-soc@vger.kernel.org
1359 S:      Maintained
1360 F:      arch/arm/mach-qcom/
1361 F:      drivers/soc/qcom/
1362 F:      drivers/tty/serial/msm_serial.h
1363 F:      drivers/tty/serial/msm_serial.c
1364 F:      drivers/*/pm8???-*
1365 F:      drivers/mfd/ssbi.c
1366 F:      drivers/firmware/qcom_scm.c
1367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1368
1369 ARM/RADISYS ENP2611 MACHINE SUPPORT
1370 M:      Lennert Buytenhek <kernel@wantstofly.org>
1371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1372 S:      Maintained
1373
1374 ARM/RISCPC ARCHITECTURE
1375 M:      Russell King <linux@arm.linux.org.uk>
1376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1377 W:      http://www.arm.linux.org.uk/
1378 S:      Maintained
1379 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1380 F:      arch/arm/include/asm/hardware/ioc.h
1381 F:      arch/arm/include/asm/hardware/iomd.h
1382 F:      arch/arm/include/asm/hardware/memc.h
1383 F:      arch/arm/mach-rpc/
1384 F:      drivers/net/ethernet/8390/etherh.c
1385 F:      drivers/net/ethernet/i825xx/ether1*
1386 F:      drivers/net/ethernet/seeq/ether3*
1387 F:      drivers/scsi/arm/
1388
1389 ARM/Rockchip SoC support
1390 M:      Heiko Stuebner <heiko@sntech.de>
1391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1392 L:      linux-rockchip@lists.infradead.org
1393 S:      Maintained
1394 F:      arch/arm/boot/dts/rk3*
1395 F:      arch/arm/mach-rockchip/
1396 F:      drivers/clk/rockchip/
1397 F:      drivers/i2c/busses/i2c-rk3x.c
1398 F:      drivers/*/*rockchip*
1399 F:      drivers/*/*/*rockchip*
1400 F:      sound/soc/rockchip/
1401 N:      rockchip
1402
1403 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1404 M:      Kukjin Kim <kgene@kernel.org>
1405 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1407 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1408 S:      Maintained
1409 F:      arch/arm/boot/dts/s3c*
1410 F:      arch/arm/boot/dts/exynos*
1411 F:      arch/arm64/boot/dts/exynos/
1412 F:      arch/arm/plat-samsung/
1413 F:      arch/arm/mach-s3c24*/
1414 F:      arch/arm/mach-s3c64xx/
1415 F:      arch/arm/mach-s5p*/
1416 F:      arch/arm/mach-exynos*/
1417 F:      drivers/*/*s3c2410*
1418 F:      drivers/*/*/*s3c2410*
1419 F:      drivers/spi/spi-s3c*
1420 F:      sound/soc/samsung/*
1421 N:      exynos
1422
1423 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1424 M:      Kyungmin Park <kyungmin.park@samsung.com>
1425 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1426 S:      Maintained
1427 F:      arch/arm/mach-s5pv210/
1428
1429 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1430 M:      Kyungmin Park <kyungmin.park@samsung.com>
1431 M:      Kamil Debski <k.debski@samsung.com>
1432 L:      linux-arm-kernel@lists.infradead.org
1433 L:      linux-media@vger.kernel.org
1434 S:      Maintained
1435 F:      drivers/media/platform/s5p-g2d/
1436
1437 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1438 M:      Kyungmin Park <kyungmin.park@samsung.com>
1439 M:      Kamil Debski <k.debski@samsung.com>
1440 M:      Jeongtae Park <jtp.park@samsung.com>
1441 L:      linux-arm-kernel@lists.infradead.org
1442 L:      linux-media@vger.kernel.org
1443 S:      Maintained
1444 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1445 F:      drivers/media/platform/s5p-mfc/
1446
1447 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1448 M:      Kyungmin Park <kyungmin.park@samsung.com>
1449 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1450 L:      linux-arm-kernel@lists.infradead.org
1451 L:      linux-media@vger.kernel.org
1452 S:      Maintained
1453 F:      drivers/media/platform/s5p-tv/
1454
1455 ARM/SHMOBILE ARM ARCHITECTURE
1456 M:      Simon Horman <horms@verge.net.au>
1457 M:      Magnus Damm <magnus.damm@gmail.com>
1458 L:      linux-sh@vger.kernel.org
1459 W:      http://oss.renesas.com
1460 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1462 S:      Supported
1463 F:      arch/arm/boot/dts/emev2*
1464 F:      arch/arm/boot/dts/r7s*
1465 F:      arch/arm/boot/dts/r8a*
1466 F:      arch/arm/boot/dts/sh*
1467 F:      arch/arm/configs/armadillo800eva_defconfig
1468 F:      arch/arm/configs/bockw_defconfig
1469 F:      arch/arm/configs/kzm9g_defconfig
1470 F:      arch/arm/configs/marzen_defconfig
1471 F:      arch/arm/configs/shmobile_defconfig
1472 F:      arch/arm/include/debug/renesas-scif.S
1473 F:      arch/arm/mach-shmobile/
1474 F:      drivers/sh/
1475
1476 ARM/SOCFPGA ARCHITECTURE
1477 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1478 S:      Maintained
1479 F:      arch/arm/mach-socfpga/
1480 F:      arch/arm/boot/dts/socfpga*
1481 F:      arch/arm/configs/socfpga_defconfig
1482 W:      http://www.rocketboards.org
1483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1484
1485 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1486 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1487 S:      Maintained
1488 F:      drivers/clk/socfpga/
1489
1490 ARM/SOCFPGA EDAC SUPPORT
1491 M:      Thor Thayer <tthayer@opensource.altera.com>
1492 S:      Maintained
1493 F:      drivers/edac/altera_edac.
1494
1495 ARM/STI ARCHITECTURE
1496 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1497 M:      Maxime Coquelin <maxime.coquelin@st.com>
1498 M:      Patrice Chotard <patrice.chotard@st.com>
1499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1500 L:      kernel@stlinux.com
1501 W:      http://www.stlinux.com
1502 S:      Maintained
1503 F:      arch/arm/mach-sti/
1504 F:      arch/arm/boot/dts/sti*
1505 F:      drivers/clocksource/arm_global_timer.c
1506 F:      drivers/i2c/busses/i2c-st.c
1507 F:      drivers/media/rc/st_rc.c
1508 F:      drivers/mmc/host/sdhci-st.c
1509 F:      drivers/phy/phy-miphy28lp.c
1510 F:      drivers/phy/phy-miphy365x.c
1511 F:      drivers/phy/phy-stih407-usb.c
1512 F:      drivers/phy/phy-stih41x-usb.c
1513 F:      drivers/pinctrl/pinctrl-st.c
1514 F:      drivers/reset/sti/
1515 F:      drivers/rtc/rtc-st-lpc.c
1516 F:      drivers/tty/serial/st-asc.c
1517 F:      drivers/usb/dwc3/dwc3-st.c
1518 F:      drivers/usb/host/ehci-st.c
1519 F:      drivers/usb/host/ohci-st.c
1520 F:      drivers/watchdog/st_lpc_wdt.c
1521 F:      drivers/ata/ahci_st.c
1522
1523 ARM/STM32 ARCHITECTURE
1524 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1525 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1526 S:      Maintained
1527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1528 N:      stm32
1529 F:      drivers/clocksource/armv7m_systick.c
1530
1531 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1532 M:      Lennert Buytenhek <kernel@wantstofly.org>
1533 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1534 S:      Maintained
1535
1536 ARM/TETON BGA MACHINE SUPPORT
1537 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1539 S:      Maintained
1540
1541 ARM/THECUS N2100 MACHINE SUPPORT
1542 M:      Lennert Buytenhek <kernel@wantstofly.org>
1543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1544 S:      Maintained
1545
1546 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1547 M:      Wan ZongShun <mcuos.com@gmail.com>
1548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1549 W:      http://www.mcuos.com
1550 S:      Maintained
1551 F:      arch/arm/mach-w90x900/
1552 F:      drivers/input/keyboard/w90p910_keypad.c
1553 F:      drivers/input/touchscreen/w90p910_ts.c
1554 F:      drivers/watchdog/nuc900_wdt.c
1555 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1556 F:      drivers/mtd/nand/nuc900_nand.c
1557 F:      drivers/rtc/rtc-nuc900.c
1558 F:      drivers/spi/spi-nuc900.c
1559 F:      drivers/usb/host/ehci-w90x900.c
1560 F:      drivers/video/fbdev/nuc900fb.c
1561
1562 ARM/U300 MACHINE SUPPORT
1563 M:      Linus Walleij <linus.walleij@linaro.org>
1564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1565 S:      Supported
1566 F:      arch/arm/mach-u300/
1567 F:      drivers/clocksource/timer-u300.c
1568 F:      drivers/i2c/busses/i2c-stu300.c
1569 F:      drivers/rtc/rtc-coh901331.c
1570 F:      drivers/watchdog/coh901327_wdt.c
1571 F:      drivers/dma/coh901318*
1572 F:      drivers/mfd/ab3100*
1573 F:      drivers/rtc/rtc-ab3100.c
1574 F:      drivers/rtc/rtc-coh901331.c
1575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1576
1577 ARM/UNIPHIER ARCHITECTURE
1578 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1579 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1580 S:      Maintained
1581 F:      arch/arm/mach-uniphier/
1582 N:      uniphier
1583
1584 ARM/Ux500 ARM ARCHITECTURE
1585 M:      Linus Walleij <linus.walleij@linaro.org>
1586 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1587 S:      Maintained
1588 F:      arch/arm/mach-ux500/
1589 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1590 F:      drivers/dma/ste_dma40*
1591 F:      drivers/hwspinlock/u8500_hsem.c
1592 F:      drivers/mfd/abx500*
1593 F:      drivers/mfd/ab8500*
1594 F:      drivers/mfd/dbx500*
1595 F:      drivers/mfd/db8500*
1596 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1597 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1598 F:      drivers/rtc/rtc-ab8500.c
1599 F:      drivers/rtc/rtc-pl031.c
1600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1601
1602 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1603 M:      Ulf Hansson <ulf.hansson@linaro.org>
1604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1605 T:      git git://git.linaro.org/people/ulfh/clk.git
1606 S:      Maintained
1607 F:      drivers/clk/ux500/
1608 F:      include/linux/platform_data/clk-ux500.h
1609
1610 ARM/VERSATILE EXPRESS PLATFORM
1611 M:      Liviu Dudau <liviu.dudau@arm.com>
1612 M:      Sudeep Holla <sudeep.holla@arm.com>
1613 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1615 S:      Maintained
1616 F:      arch/arm/boot/dts/vexpress*
1617 F:      arch/arm/mach-vexpress/
1618 F:      */*/vexpress*
1619 F:      */*/*/vexpress*
1620 F:      drivers/clk/versatile/clk-vexpress-osc.c
1621 F:      drivers/clocksource/versatile.c
1622
1623 ARM/VFP SUPPORT
1624 M:      Russell King <linux@arm.linux.org.uk>
1625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1626 W:      http://www.arm.linux.org.uk/
1627 S:      Maintained
1628 F:      arch/arm/vfp/
1629
1630 ARM/VOIPAC PXA270 SUPPORT
1631 M:      Marek Vasut <marek.vasut@gmail.com>
1632 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1633 S:      Maintained
1634 F:      arch/arm/mach-pxa/vpac270.c
1635 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1636
1637 ARM/VT8500 ARM ARCHITECTURE
1638 M:      Tony Prisk <linux@prisktech.co.nz>
1639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1640 S:      Maintained
1641 F:      arch/arm/mach-vt8500/
1642 F:      drivers/clocksource/vt8500_timer.c
1643 F:      drivers/i2c/busses/i2c-wmt.c
1644 F:      drivers/mmc/host/wmt-sdmmc.c
1645 F:      drivers/pwm/pwm-vt8500.c
1646 F:      drivers/rtc/rtc-vt8500.c
1647 F:      drivers/tty/serial/vt8500_serial.c
1648 F:      drivers/usb/host/ehci-platform.c
1649 F:      drivers/usb/host/uhci-platform.c
1650 F:      drivers/video/fbdev/vt8500lcdfb.*
1651 F:      drivers/video/fbdev/wm8505fb*
1652 F:      drivers/video/fbdev/wmt_ge_rops.*
1653
1654 ARM/ZIPIT Z2 SUPPORT
1655 M:      Marek Vasut <marek.vasut@gmail.com>
1656 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1657 S:      Maintained
1658 F:      arch/arm/mach-pxa/z2.c
1659 F:      arch/arm/mach-pxa/include/mach/z2.h
1660
1661 ARM/ZTE ARCHITECTURE
1662 M:      Jun Nie <jun.nie@linaro.org>
1663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1664 S:      Maintained
1665 F:      arch/arm/mach-zx/
1666 F:      drivers/clk/zte/
1667 F:      Documentation/devicetree/bindings/arm/zte.txt
1668 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1669
1670 ARM/ZYNQ ARCHITECTURE
1671 M:      Michal Simek <michal.simek@xilinx.com>
1672 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1674 W:      http://wiki.xilinx.com
1675 T:      git git://git.xilinx.com/linux-xlnx.git
1676 S:      Supported
1677 F:      arch/arm/mach-zynq/
1678 F:      drivers/cpuidle/cpuidle-zynq.c
1679 F:      drivers/block/xsysace.c
1680 N:      zynq
1681 N:      xilinx
1682 F:      drivers/clocksource/cadence_ttc_timer.c
1683 F:      drivers/i2c/busses/i2c-cadence.c
1684 F:      drivers/mmc/host/sdhci-of-arasan.c
1685 F:      drivers/edac/synopsys_edac.c
1686
1687 ARM SMMU DRIVERS
1688 M:      Will Deacon <will.deacon@arm.com>
1689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1690 S:      Maintained
1691 F:      drivers/iommu/arm-smmu.c
1692 F:      drivers/iommu/arm-smmu-v3.c
1693 F:      drivers/iommu/io-pgtable-arm.c
1694
1695 ARM64 PORT (AARCH64 ARCHITECTURE)
1696 M:      Catalin Marinas <catalin.marinas@arm.com>
1697 M:      Will Deacon <will.deacon@arm.com>
1698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 S:      Maintained
1700 F:      arch/arm64/
1701 F:      Documentation/arm64/
1702
1703 AS3645A LED FLASH CONTROLLER DRIVER
1704 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1705 L:      linux-media@vger.kernel.org
1706 T:      git git://linuxtv.org/media_tree.git
1707 S:      Maintained
1708 F:      drivers/media/i2c/as3645a.c
1709 F:      include/media/as3645a.h
1710
1711 ASC7621 HARDWARE MONITOR DRIVER
1712 M:      George Joseph <george.joseph@fairview5.com>
1713 L:      lm-sensors@lm-sensors.org
1714 S:      Maintained
1715 F:      Documentation/hwmon/asc7621
1716 F:      drivers/hwmon/asc7621.c
1717
1718 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1719 M:      Corentin Chary <corentin.chary@gmail.com>
1720 L:      acpi4asus-user@lists.sourceforge.net
1721 L:      platform-driver-x86@vger.kernel.org
1722 W:      http://acpi4asus.sf.net
1723 S:      Maintained
1724 F:      drivers/platform/x86/asus*.c
1725 F:      drivers/platform/x86/eeepc*.c
1726
1727 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1728 R:      Dan Williams <dan.j.williams@intel.com>
1729 W:      http://sourceforge.net/projects/xscaleiop
1730 S:      Odd fixes
1731 F:      Documentation/crypto/async-tx-api.txt
1732 F:      crypto/async_tx/
1733 F:      drivers/dma/
1734 F:      include/linux/dmaengine.h
1735 F:      include/linux/async_tx.h
1736
1737 AT24 EEPROM DRIVER
1738 M:      Wolfram Sang <wsa@the-dreams.de>
1739 L:      linux-i2c@vger.kernel.org
1740 S:      Maintained
1741 F:      drivers/misc/eeprom/at24.c
1742 F:      include/linux/platform_data/at24.h
1743
1744 ATA OVER ETHERNET (AOE) DRIVER
1745 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1746 W:      http://www.openaoe.org/
1747 S:      Supported
1748 F:      Documentation/aoe/
1749 F:      drivers/block/aoe/
1750
1751 ATHEROS ATH GENERIC UTILITIES
1752 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1753 L:      linux-wireless@vger.kernel.org
1754 S:      Supported
1755 F:      drivers/net/wireless/ath/*
1756
1757 ATHEROS ATH5K WIRELESS DRIVER
1758 M:      Jiri Slaby <jirislaby@gmail.com>
1759 M:      Nick Kossifidis <mickflemm@gmail.com>
1760 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1761 L:      linux-wireless@vger.kernel.org
1762 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1763 S:      Maintained
1764 F:      drivers/net/wireless/ath/ath5k/
1765
1766 ATHEROS ATH6KL WIRELESS DRIVER
1767 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1768 L:      linux-wireless@vger.kernel.org
1769 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1770 T:      git git://github.com/kvalo/ath.git
1771 S:      Supported
1772 F:      drivers/net/wireless/ath/ath6kl/
1773
1774 WILOCITY WIL6210 WIRELESS DRIVER
1775 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1776 L:      linux-wireless@vger.kernel.org
1777 L:      wil6210@qca.qualcomm.com
1778 S:      Supported
1779 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1780 F:      drivers/net/wireless/ath/wil6210/
1781 F:      include/uapi/linux/wil6210_uapi.h
1782
1783 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1784 M:      Christian Lamparter <chunkeey@googlemail.com>
1785 L:      linux-wireless@vger.kernel.org
1786 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1787 S:      Maintained
1788 F:      drivers/net/wireless/ath/carl9170/
1789
1790 ATK0110 HWMON DRIVER
1791 M:      Luca Tettamanti <kronos.it@gmail.com>
1792 L:      lm-sensors@lm-sensors.org
1793 S:      Maintained
1794 F:      drivers/hwmon/asus_atk0110.c
1795
1796 ATI_REMOTE2 DRIVER
1797 M:      Ville Syrjala <syrjala@sci.fi>
1798 S:      Maintained
1799 F:      drivers/input/misc/ati_remote2.c
1800
1801 ATLX ETHERNET DRIVERS
1802 M:      Jay Cliburn <jcliburn@gmail.com>
1803 M:      Chris Snook <chris.snook@gmail.com>
1804 L:      netdev@vger.kernel.org
1805 W:      http://sourceforge.net/projects/atl1
1806 W:      http://atl1.sourceforge.net
1807 S:      Maintained
1808 F:      drivers/net/ethernet/atheros/
1809
1810 ATM
1811 M:      Chas Williams <3chas3@gmail.com>
1812 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1813 L:      netdev@vger.kernel.org
1814 W:      http://linux-atm.sourceforge.net
1815 S:      Maintained
1816 F:      drivers/atm/
1817 F:      include/linux/atm*
1818 F:      include/uapi/linux/atm*
1819
1820 ATMEL AT91 / AT32 MCI DRIVER
1821 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1822 S:      Maintained
1823 F:      drivers/mmc/host/atmel-mci.c
1824 F:      drivers/mmc/host/atmel-mci-regs.h
1825
1826 ATMEL AT91 / AT32 SERIAL DRIVER
1827 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1828 S:      Supported
1829 F:      drivers/tty/serial/atmel_serial.c
1830
1831 ATMEL Audio ALSA driver
1832 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1833 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1834 S:      Supported
1835 F:      sound/soc/atmel
1836
1837 ATMEL DMA DRIVER
1838 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1839 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1840 S:      Supported
1841 F:      drivers/dma/at_hdmac.c
1842 F:      drivers/dma/at_hdmac_regs.h
1843 F:      include/linux/platform_data/dma-atmel.h
1844
1845 ATMEL XDMA DRIVER
1846 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1847 L:      linux-arm-kernel@lists.infradead.org
1848 L:      dmaengine@vger.kernel.org
1849 S:      Supported
1850 F:      drivers/dma/at_xdmac.c
1851
1852 ATMEL I2C DRIVER
1853 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1854 L:      linux-i2c@vger.kernel.org
1855 S:      Supported
1856 F:      drivers/i2c/busses/i2c-at91.c
1857
1858 ATMEL ISI DRIVER
1859 M:      Josh Wu <josh.wu@atmel.com>
1860 L:      linux-media@vger.kernel.org
1861 S:      Supported
1862 F:      drivers/media/platform/soc_camera/atmel-isi.c
1863 F:      include/media/atmel-isi.h
1864
1865 ATMEL LCDFB DRIVER
1866 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1867 L:      linux-fbdev@vger.kernel.org
1868 S:      Maintained
1869 F:      drivers/video/fbdev/atmel_lcdfb.c
1870 F:      include/video/atmel_lcdc.h
1871
1872 ATMEL MACB ETHERNET DRIVER
1873 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1874 S:      Supported
1875 F:      drivers/net/ethernet/cadence/
1876
1877 ATMEL NAND DRIVER
1878 M:      Josh Wu <josh.wu@atmel.com>
1879 L:      linux-mtd@lists.infradead.org
1880 S:      Supported
1881 F:      drivers/mtd/nand/atmel_nand*
1882
1883 ATMEL SPI DRIVER
1884 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1885 S:      Supported
1886 F:      drivers/spi/spi-atmel.*
1887
1888 ATMEL SSC DRIVER
1889 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1891 S:      Supported
1892 F:      drivers/misc/atmel-ssc.c
1893 F:      include/linux/atmel-ssc.h
1894
1895 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1896 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1898 S:      Supported
1899 F:      drivers/misc/atmel_tclib.c
1900 F:      drivers/clocksource/tcb_clksrc.c
1901
1902 ATMEL USBA UDC DRIVER
1903 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1905 S:      Supported
1906 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1907
1908 ATMEL WIRELESS DRIVER
1909 M:      Simon Kelley <simon@thekelleys.org.uk>
1910 L:      linux-wireless@vger.kernel.org
1911 W:      http://www.thekelleys.org.uk/atmel
1912 W:      http://atmelwlandriver.sourceforge.net/
1913 S:      Maintained
1914 F:      drivers/net/wireless/atmel*
1915
1916 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1917 M:      Bradley Grove <linuxdrivers@attotech.com>
1918 L:      linux-scsi@vger.kernel.org
1919 W:      http://www.attotech.com
1920 S:      Supported
1921 F:      drivers/scsi/esas2r
1922
1923 ATUSB IEEE 802.15.4 RADIO DRIVER
1924 M:      Stefan Schmidt <stefan@osg.samsung.com>
1925 L:      linux-wpan@vger.kernel.org
1926 S:      Maintained
1927 F:      drivers/net/ieee802154/atusb.c
1928 F:      drivers/net/ieee802154/atusb.h
1929 F:      drivers/net/ieee802154/at86rf230.h
1930
1931 AUDIT SUBSYSTEM
1932 M:      Paul Moore <paul@paul-moore.com>
1933 M:      Eric Paris <eparis@redhat.com>
1934 L:      linux-audit@redhat.com (moderated for non-subscribers)
1935 W:      http://people.redhat.com/sgrubb/audit/
1936 T:      git git://git.infradead.org/users/pcmoore/audit
1937 S:      Maintained
1938 F:      include/linux/audit.h
1939 F:      include/uapi/linux/audit.h
1940 F:      kernel/audit*
1941
1942 AUXILIARY DISPLAY DRIVERS
1943 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1944 W:      http://miguelojeda.es/auxdisplay.htm
1945 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1946 S:      Maintained
1947 F:      drivers/auxdisplay/
1948 F:      include/linux/cfag12864b.h
1949
1950 AVR32 ARCHITECTURE
1951 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1952 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1953 W:      http://www.atmel.com/products/AVR32/
1954 W:      http://mirror.egtvedt.no/avr32linux.org/
1955 W:      http://avrfreaks.net/
1956 S:      Maintained
1957 F:      arch/avr32/
1958
1959 AVR32/AT32AP MACHINE SUPPORT
1960 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1961 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1962 S:      Maintained
1963 F:      arch/avr32/mach-at32ap/
1964
1965 AX.25 NETWORK LAYER
1966 M:      Ralf Baechle <ralf@linux-mips.org>
1967 L:      linux-hams@vger.kernel.org
1968 W:      http://www.linux-ax25.org/
1969 S:      Maintained
1970 F:      include/uapi/linux/ax25.h
1971 F:      include/net/ax25.h
1972 F:      net/ax25/
1973
1974 AZ6007 DVB DRIVER
1975 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
1976 L:      linux-media@vger.kernel.org
1977 W:      http://linuxtv.org
1978 T:      git git://linuxtv.org/media_tree.git
1979 S:      Maintained
1980 F:      drivers/media/usb/dvb-usb-v2/az6007.c
1981
1982 AZTECH FM RADIO RECEIVER DRIVER
1983 M:      Hans Verkuil <hverkuil@xs4all.nl>
1984 L:      linux-media@vger.kernel.org
1985 T:      git git://linuxtv.org/media_tree.git
1986 W:      http://linuxtv.org
1987 S:      Maintained
1988 F:      drivers/media/radio/radio-aztech*
1989
1990 B43 WIRELESS DRIVER
1991 L:      linux-wireless@vger.kernel.org
1992 L:      b43-dev@lists.infradead.org
1993 W:      http://wireless.kernel.org/en/users/Drivers/b43
1994 S:      Odd Fixes
1995 F:      drivers/net/wireless/b43/
1996
1997 B43LEGACY WIRELESS DRIVER
1998 M:      Larry Finger <Larry.Finger@lwfinger.net>
1999 L:      linux-wireless@vger.kernel.org
2000 L:      b43-dev@lists.infradead.org
2001 W:      http://wireless.kernel.org/en/users/Drivers/b43
2002 S:      Maintained
2003 F:      drivers/net/wireless/b43legacy/
2004
2005 BACKLIGHT CLASS/SUBSYSTEM
2006 M:      Jingoo Han <jingoohan1@gmail.com>
2007 M:      Lee Jones <lee.jones@linaro.org>
2008 S:      Maintained
2009 F:      drivers/video/backlight/
2010 F:      include/linux/backlight.h
2011
2012 BATMAN ADVANCED
2013 M:      Marek Lindner <mareklindner@neomailbox.ch>
2014 M:      Simon Wunderlich <sw@simonwunderlich.de>
2015 M:      Antonio Quartulli <antonio@meshcoding.com>
2016 L:      b.a.t.m.a.n@lists.open-mesh.org
2017 W:      http://www.open-mesh.org/
2018 S:      Maintained
2019 F:      net/batman-adv/
2020
2021 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2022 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2023 L:      linux-hams@vger.kernel.org
2024 W:      http://www.baycom.org/~tom/ham/ham.html
2025 S:      Maintained
2026 F:      drivers/net/hamradio/baycom*
2027
2028 BCACHE (BLOCK LAYER CACHE)
2029 M:      Kent Overstreet <kmo@daterainc.com>
2030 L:      linux-bcache@vger.kernel.org
2031 W:      http://bcache.evilpiepirate.org
2032 S:      Maintained:
2033 F:      drivers/md/bcache/
2034
2035 BDISP ST MEDIA DRIVER
2036 M:      Fabien Dessenne <fabien.dessenne@st.com>
2037 L:      linux-media@vger.kernel.org
2038 T:      git git://linuxtv.org/media_tree.git
2039 W:      http://linuxtv.org
2040 S:      Supported
2041 F:      drivers/media/platform/sti/bdisp
2042
2043 BEFS FILE SYSTEM
2044 S:      Orphan
2045 F:      Documentation/filesystems/befs.txt
2046 F:      fs/befs/
2047
2048 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2049 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2050 L:      netdev@vger.kernel.org
2051 S:      Maintained
2052 F:      drivers/net/ethernet/ec_bhf.c
2053
2054 BFS FILE SYSTEM
2055 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2056 S:      Maintained
2057 F:      Documentation/filesystems/bfs.txt
2058 F:      fs/bfs/
2059 F:      include/uapi/linux/bfs_fs.h
2060
2061 BLACKFIN ARCHITECTURE
2062 M:      Steven Miao <realmz6@gmail.com>
2063 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2064 T:      git git://git.code.sf.net/p/adi-linux/code
2065 W:      http://blackfin.uclinux.org
2066 S:      Supported
2067 F:      arch/blackfin/
2068
2069 BLACKFIN EMAC DRIVER
2070 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2071 W:      http://blackfin.uclinux.org
2072 S:      Supported
2073 F:      drivers/net/ethernet/adi/
2074
2075 BLACKFIN RTC DRIVER
2076 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2077 W:      http://blackfin.uclinux.org
2078 S:      Supported
2079 F:      drivers/rtc/rtc-bfin.c
2080
2081 BLACKFIN SDH DRIVER
2082 M:      Sonic Zhang <sonic.zhang@analog.com>
2083 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2084 W:      http://blackfin.uclinux.org
2085 S:      Supported
2086 F:      drivers/mmc/host/bfin_sdh.c
2087
2088 BLACKFIN SERIAL DRIVER
2089 M:      Sonic Zhang <sonic.zhang@analog.com>
2090 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2091 W:      http://blackfin.uclinux.org
2092 S:      Supported
2093 F:      drivers/tty/serial/bfin_uart.c
2094
2095 BLACKFIN WATCHDOG DRIVER
2096 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2097 W:      http://blackfin.uclinux.org
2098 S:      Supported
2099 F:      drivers/watchdog/bfin_wdt.c
2100
2101 BLACKFIN I2C TWI DRIVER
2102 M:      Sonic Zhang <sonic.zhang@analog.com>
2103 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2104 W:      http://blackfin.uclinux.org/
2105 S:      Supported
2106 F:      drivers/i2c/busses/i2c-bfin-twi.c
2107
2108 BLACKFIN MEDIA DRIVER
2109 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2110 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2111 W:      http://blackfin.uclinux.org/
2112 S:      Supported
2113 F:      drivers/media/platform/blackfin/
2114 F:      drivers/media/i2c/adv7183*
2115 F:      drivers/media/i2c/vs6624*
2116
2117 BLINKM RGB LED DRIVER
2118 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2119 S:      Maintained
2120 F:      drivers/leds/leds-blinkm.c
2121
2122 BLOCK LAYER
2123 M:      Jens Axboe <axboe@kernel.dk>
2124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2125 S:      Maintained
2126 F:      block/
2127 F:      kernel/trace/blktrace.c
2128
2129 BLOCK2MTD DRIVER
2130 M:      Joern Engel <joern@lazybastard.org>
2131 L:      linux-mtd@lists.infradead.org
2132 S:      Maintained
2133 F:      drivers/mtd/devices/block2mtd.c
2134
2135 BLUETOOTH DRIVERS
2136 M:      Marcel Holtmann <marcel@holtmann.org>
2137 M:      Gustavo Padovan <gustavo@padovan.org>
2138 M:      Johan Hedberg <johan.hedberg@gmail.com>
2139 L:      linux-bluetooth@vger.kernel.org
2140 W:      http://www.bluez.org/
2141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2143 S:      Maintained
2144 F:      drivers/bluetooth/
2145
2146 BLUETOOTH SUBSYSTEM
2147 M:      Marcel Holtmann <marcel@holtmann.org>
2148 M:      Gustavo Padovan <gustavo@padovan.org>
2149 M:      Johan Hedberg <johan.hedberg@gmail.com>
2150 L:      linux-bluetooth@vger.kernel.org
2151 W:      http://www.bluez.org/
2152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2154 S:      Maintained
2155 F:      net/bluetooth/
2156 F:      include/net/bluetooth/
2157
2158 BONDING DRIVER
2159 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2160 M:      Veaceslav Falico <vfalico@gmail.com>
2161 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2162 L:      netdev@vger.kernel.org
2163 W:      http://sourceforge.net/projects/bonding/
2164 S:      Supported
2165 F:      drivers/net/bonding/
2166 F:      include/uapi/linux/if_bonding.h
2167
2168 BPF (Safe dynamic programs and tools)
2169 M:      Alexei Starovoitov <ast@kernel.org>
2170 L:      netdev@vger.kernel.org
2171 L:      linux-kernel@vger.kernel.org
2172 S:      Supported
2173 F:      kernel/bpf/
2174
2175 BROADCOM B44 10/100 ETHERNET DRIVER
2176 M:      Gary Zambrano <zambrano@broadcom.com>
2177 L:      netdev@vger.kernel.org
2178 S:      Supported
2179 F:      drivers/net/ethernet/broadcom/b44.*
2180
2181 BROADCOM GENET ETHERNET DRIVER
2182 M:      Florian Fainelli <f.fainelli@gmail.com>
2183 L:      netdev@vger.kernel.org
2184 S:      Supported
2185 F:      drivers/net/ethernet/broadcom/genet/
2186
2187 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2188 M:      Sony Chacko <sony.chacko@qlogic.com>
2189 M:      Dept-HSGLinuxNICDev@qlogic.com
2190 L:      netdev@vger.kernel.org
2191 S:      Supported
2192 F:      drivers/net/ethernet/broadcom/bnx2.*
2193 F:      drivers/net/ethernet/broadcom/bnx2_*
2194
2195 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2196 M:      Ariel Elior <ariel.elior@qlogic.com>
2197 L:      netdev@vger.kernel.org
2198 S:      Supported
2199 F:      drivers/net/ethernet/broadcom/bnx2x/
2200
2201 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2202 M:      Florian Fainelli <f.fainelli@gmail.com>
2203 M:      Ray Jui <rjui@broadcom.com>
2204 M:      Scott Branden <sbranden@broadcom.com>
2205 L:      bcm-kernel-feedback-list@broadcom.com
2206 T:      git git://github.com/broadcom/mach-bcm
2207 S:      Maintained
2208 F:      arch/arm/mach-bcm/
2209 F:      arch/arm/boot/dts/bcm113*
2210 F:      arch/arm/boot/dts/bcm216*
2211 F:      arch/arm/boot/dts/bcm281*
2212 F:      arch/arm/configs/bcm_defconfig
2213 F:      drivers/mmc/host/sdhci-bcm-kona.c
2214 F:      drivers/clocksource/bcm_kona_timer.c
2215
2216 BROADCOM BCM2835 ARM ARCHITECTURE
2217 M:      Stephen Warren <swarren@wwwdotorg.org>
2218 M:      Lee Jones <lee@kernel.org>
2219 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2221 S:      Maintained
2222 N:      bcm2835
2223
2224 BROADCOM BCM33XX MIPS ARCHITECTURE
2225 M:      Kevin Cernekee <cernekee@gmail.com>
2226 L:      linux-mips@linux-mips.org
2227 S:      Maintained
2228 F:      arch/mips/bcm3384/*
2229 F:      arch/mips/include/asm/mach-bcm3384/*
2230 F:      arch/mips/kernel/*bmips*
2231
2232 BROADCOM BCM5301X ARM ARCHITECTURE
2233 M:      Hauke Mehrtens <hauke@hauke-m.de>
2234 L:      linux-arm-kernel@lists.infradead.org
2235 S:      Maintained
2236 F:      arch/arm/mach-bcm/bcm_5301x.c
2237 F:      arch/arm/boot/dts/bcm5301x.dtsi
2238 F:      arch/arm/boot/dts/bcm470*
2239
2240 BROADCOM BCM63XX ARM ARCHITECTURE
2241 M:      Florian Fainelli <f.fainelli@gmail.com>
2242 L:      linux-arm-kernel@lists.infradead.org
2243 T:      git git://github.com/broadcom/arm-bcm63xx.git
2244 S:      Maintained
2245 F:      arch/arm/mach-bcm/bcm63xx.c
2246 F:      arch/arm/include/debug/bcm63xx.S
2247
2248 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2249 M:      Kevin Cernekee <cernekee@gmail.com>
2250 L:      linux-usb@vger.kernel.org
2251 S:      Maintained
2252 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2253
2254 BROADCOM BCM7XXX ARM ARCHITECTURE
2255 M:      Brian Norris <computersforpeace@gmail.com>
2256 M:      Gregory Fong <gregory.0xf0@gmail.com>
2257 M:      Florian Fainelli <f.fainelli@gmail.com>
2258 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2259 T:      git git://github.com/broadcom/stblinux.git
2260 S:      Maintained
2261 F:      arch/arm/mach-bcm/*brcmstb*
2262 F:      arch/arm/boot/dts/bcm7*.dts*
2263 F:      drivers/bus/brcmstb_gisb.c
2264 N:      brcmstb
2265
2266 BROADCOM BMIPS MIPS ARCHITECTURE
2267 M:      Kevin Cernekee <cernekee@gmail.com>
2268 M:      Florian Fainelli <f.fainelli@gmail.com>
2269 L:      linux-mips@linux-mips.org
2270 T:      git git://github.com/broadcom/stblinux.git
2271 S:      Maintained
2272 F:      arch/mips/bmips/*
2273 F:      arch/mips/include/asm/mach-bmips/*
2274 F:      arch/mips/kernel/*bmips*
2275 F:      arch/mips/boot/dts/bcm*.dts*
2276 F:      drivers/irqchip/irq-bcm7*
2277 F:      drivers/irqchip/irq-brcmstb*
2278
2279 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2280 M:      Prashant Sreedharan <prashant@broadcom.com>
2281 M:      Michael Chan <mchan@broadcom.com>
2282 L:      netdev@vger.kernel.org
2283 S:      Supported
2284 F:      drivers/net/ethernet/broadcom/tg3.*
2285
2286 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2287 M:      Brett Rudley <brudley@broadcom.com>
2288 M:      Arend van Spriel <arend@broadcom.com>
2289 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2290 M:      Hante Meuleman <meuleman@broadcom.com>
2291 L:      linux-wireless@vger.kernel.org
2292 L:      brcm80211-dev-list@broadcom.com
2293 S:      Supported
2294 F:      drivers/net/wireless/brcm80211/
2295
2296 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2297 M:      QLogic-Storage-Upstream@qlogic.com
2298 L:      linux-scsi@vger.kernel.org
2299 S:      Supported
2300 F:      drivers/scsi/bnx2fc/
2301
2302 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2303 M:      QLogic-Storage-Upstream@qlogic.com
2304 L:      linux-scsi@vger.kernel.org
2305 S:      Supported
2306 F:      drivers/scsi/bnx2i/
2307
2308 BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2309 M:      Ray Jui <rjui@broadcom.com>
2310 M:      Scott Branden <sbranden@broadcom.com>
2311 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2312 L:      bcm-kernel-feedback-list@broadcom.com
2313 T:      git git://github.com/broadcom/cygnus-linux.git
2314 S:      Maintained
2315 N:      iproc
2316 N:      cygnus
2317 N:      bcm9113*
2318 N:      bcm9583*
2319 N:      bcm583*
2320 N:      bcm113*
2321
2322 BROADCOM BRCMSTB GPIO DRIVER
2323 M:      Gregory Fong <gregory.0xf0@gmail.com>
2324 L:      bcm-kernel-feedback-list@broadcom.com>
2325 S:      Supported
2326 F:      drivers/gpio/gpio-brcmstb.c
2327 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2328
2329 BROADCOM KONA GPIO DRIVER
2330 M:      Ray Jui <rjui@broadcom.com>
2331 L:      bcm-kernel-feedback-list@broadcom.com
2332 S:      Supported
2333 F:      drivers/gpio/gpio-bcm-kona.c
2334 F:      Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt
2335
2336 BROADCOM STB NAND FLASH DRIVER
2337 M:      Brian Norris <computersforpeace@gmail.com>
2338 L:      linux-mtd@lists.infradead.org
2339 S:      Maintained
2340 F:      drivers/mtd/nand/brcmnand/
2341
2342 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2343 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2344 L:      linux-wireless@vger.kernel.org
2345 S:      Maintained
2346 F:      drivers/bcma/
2347 F:      include/linux/bcma/
2348
2349 BROADCOM SYSTEMPORT ETHERNET DRIVER
2350 M:      Florian Fainelli <f.fainelli@gmail.com>
2351 L:      netdev@vger.kernel.org
2352 S:      Supported
2353 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2354
2355 BROCADE BFA FC SCSI DRIVER
2356 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2357 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2358 L:      linux-scsi@vger.kernel.org
2359 S:      Supported
2360 F:      drivers/scsi/bfa/
2361
2362 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2363 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2364 L:      netdev@vger.kernel.org
2365 S:      Supported
2366 F:      drivers/net/ethernet/brocade/bna/
2367
2368 BSG (block layer generic sg v4 driver)
2369 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2370 L:      linux-scsi@vger.kernel.org
2371 S:      Supported
2372 F:      block/bsg.c
2373 F:      include/linux/bsg.h
2374 F:      include/uapi/linux/bsg.h
2375
2376 BT87X AUDIO DRIVER
2377 M:      Clemens Ladisch <clemens@ladisch.de>
2378 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2379 T:      git git://git.alsa-project.org/alsa-kernel.git
2380 S:      Maintained
2381 F:      Documentation/sound/alsa/Bt87x.txt
2382 F:      sound/pci/bt87x.c
2383
2384 BT8XXGPIO DRIVER
2385 M:      Michael Buesch <m@bues.ch>
2386 W:      http://bu3sch.de/btgpio.php
2387 S:      Maintained
2388 F:      drivers/gpio/gpio-bt8xx.c
2389
2390 BTRFS FILE SYSTEM
2391 M:      Chris Mason <clm@fb.com>
2392 M:      Josef Bacik <jbacik@fb.com>
2393 M:      David Sterba <dsterba@suse.cz>
2394 L:      linux-btrfs@vger.kernel.org
2395 W:      http://btrfs.wiki.kernel.org/
2396 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2398 S:      Maintained
2399 F:      Documentation/filesystems/btrfs.txt
2400 F:      fs/btrfs/
2401
2402 BTTV VIDEO4LINUX DRIVER
2403 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2404 L:      linux-media@vger.kernel.org
2405 W:      http://linuxtv.org
2406 T:      git git://linuxtv.org/media_tree.git
2407 S:      Odd fixes
2408 F:      Documentation/video4linux/bttv/
2409 F:      drivers/media/pci/bt8xx/bttv*
2410
2411 BUSLOGIC SCSI DRIVER
2412 M:      Khalid Aziz <khalid@gonehiking.org>
2413 L:      linux-scsi@vger.kernel.org
2414 S:      Maintained
2415 F:      drivers/scsi/BusLogic.*
2416 F:      drivers/scsi/FlashPoint.*
2417
2418 C-MEDIA CMI8788 DRIVER
2419 M:      Clemens Ladisch <clemens@ladisch.de>
2420 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2421 T:      git git://git.alsa-project.org/alsa-kernel.git
2422 S:      Maintained
2423 F:      sound/pci/oxygen/
2424
2425 C6X ARCHITECTURE
2426 M:      Mark Salter <msalter@redhat.com>
2427 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2428 L:      linux-c6x-dev@linux-c6x.org
2429 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2430 S:      Maintained
2431 F:      arch/c6x/
2432
2433 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2434 M:      David Howells <dhowells@redhat.com>
2435 L:      linux-cachefs@redhat.com
2436 S:      Supported
2437 F:      Documentation/filesystems/caching/cachefiles.txt
2438 F:      fs/cachefiles/
2439
2440 CADET FM/AM RADIO RECEIVER DRIVER
2441 M:      Hans Verkuil <hverkuil@xs4all.nl>
2442 L:      linux-media@vger.kernel.org
2443 T:      git git://linuxtv.org/media_tree.git
2444 W:      http://linuxtv.org
2445 S:      Maintained
2446 F:      drivers/media/radio/radio-cadet*
2447
2448 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2449 M:      Jonathan Corbet <corbet@lwn.net>
2450 L:      linux-media@vger.kernel.org
2451 T:      git git://linuxtv.org/media_tree.git
2452 S:      Maintained
2453 F:      Documentation/video4linux/cafe_ccic
2454 F:      drivers/media/platform/marvell-ccic/
2455
2456 CAIF NETWORK LAYER
2457 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2458 L:      netdev@vger.kernel.org
2459 S:      Supported
2460 F:      Documentation/networking/caif/
2461 F:      drivers/net/caif/
2462 F:      include/uapi/linux/caif/
2463 F:      include/net/caif/
2464 F:      net/caif/
2465
2466 CALGARY x86-64 IOMMU
2467 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2468 M:      "Jon D. Mason" <jdmason@kudzu.us>
2469 L:      discuss@x86-64.org
2470 S:      Maintained
2471 F:      arch/x86/kernel/pci-calgary_64.c
2472 F:      arch/x86/kernel/tce_64.c
2473 F:      arch/x86/include/asm/calgary.h
2474 F:      arch/x86/include/asm/tce.h
2475
2476 CAN NETWORK LAYER
2477 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2478 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2479 L:      linux-can@vger.kernel.org
2480 W:      https://github.com/linux-can
2481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2483 S:      Maintained
2484 F:      Documentation/networking/can.txt
2485 F:      net/can/
2486 F:      include/linux/can/core.h
2487 F:      include/uapi/linux/can.h
2488 F:      include/uapi/linux/can/bcm.h
2489 F:      include/uapi/linux/can/raw.h
2490 F:      include/uapi/linux/can/gw.h
2491
2492 CAN NETWORK DRIVERS
2493 M:      Wolfgang Grandegger <wg@grandegger.com>
2494 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2495 L:      linux-can@vger.kernel.org
2496 W:      https://github.com/linux-can
2497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2499 S:      Maintained
2500 F:      drivers/net/can/
2501 F:      include/linux/can/dev.h
2502 F:      include/linux/can/platform/
2503 F:      include/uapi/linux/can/error.h
2504 F:      include/uapi/linux/can/netlink.h
2505
2506 CAPABILITIES
2507 M:      Serge Hallyn <serge.hallyn@canonical.com>
2508 L:      linux-security-module@vger.kernel.org
2509 S:      Supported
2510 F:      include/linux/capability.h
2511 F:      include/uapi/linux/capability.h
2512 F:      security/commoncap.c
2513 F:      kernel/capability.c
2514
2515 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2516 M:      Kevin Tsai <ktsai@capellamicro.com>
2517 S:      Maintained
2518 F:      drivers/iio/light/cm*
2519 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2520
2521 CAVIUM LIQUIDIO NETWORK DRIVER
2522 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2523 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2524 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2525 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2526 L:     netdev@vger.kernel.org
2527 W:     http://www.cavium.com
2528 S:     Supported
2529 F:     drivers/net/ethernet/cavium/
2530 F:     drivers/net/ethernet/cavium/liquidio/
2531
2532 CC2520 IEEE-802.15.4 RADIO DRIVER
2533 M:      Varka Bhadram <varkabhadram@gmail.com>
2534 L:      linux-wpan@vger.kernel.org
2535 S:      Maintained
2536 F:      drivers/net/ieee802154/cc2520.c
2537 F:      include/linux/spi/cc2520.h
2538 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2539
2540 CELL BROADBAND ENGINE ARCHITECTURE
2541 M:      Arnd Bergmann <arnd@arndb.de>
2542 L:      linuxppc-dev@lists.ozlabs.org
2543 W:      http://www.ibm.com/developerworks/power/cell/
2544 S:      Supported
2545 F:      arch/powerpc/include/asm/cell*.h
2546 F:      arch/powerpc/include/asm/spu*.h
2547 F:      arch/powerpc/include/uapi/asm/spu*.h
2548 F:      arch/powerpc/oprofile/*cell*
2549 F:      arch/powerpc/platforms/cell/
2550
2551 CEPH DISTRIBUTED FILE SYSTEM CLIENT
2552 M:      "Yan, Zheng" <zyan@redhat.com>
2553 M:      Sage Weil <sage@redhat.com>
2554 L:      ceph-devel@vger.kernel.org
2555 W:      http://ceph.com/
2556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2557 S:      Supported
2558 F:      Documentation/filesystems/ceph.txt
2559 F:      fs/ceph/
2560 F:      net/ceph/
2561 F:      include/linux/ceph/
2562 F:      include/linux/crush/
2563
2564 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2565 L:      linux-usb@vger.kernel.org
2566 S:      Orphan
2567 F:      Documentation/usb/WUSB-Design-overview.txt
2568 F:      Documentation/usb/wusb-cbaf
2569 F:      drivers/usb/host/hwa-hc.c
2570 F:      drivers/usb/host/whci/
2571 F:      drivers/usb/wusbcore/
2572 F:      include/linux/usb/wusb*
2573
2574 CFAG12864B LCD DRIVER
2575 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2576 W:      http://miguelojeda.es/auxdisplay.htm
2577 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2578 S:      Maintained
2579 F:      drivers/auxdisplay/cfag12864b.c
2580 F:      include/linux/cfag12864b.h
2581
2582 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2583 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2584 W:      http://miguelojeda.es/auxdisplay.htm
2585 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2586 S:      Maintained
2587 F:      drivers/auxdisplay/cfag12864bfb.c
2588 F:      include/linux/cfag12864b.h
2589
2590 CFG80211 and NL80211
2591 M:      Johannes Berg <johannes@sipsolutions.net>
2592 L:      linux-wireless@vger.kernel.org
2593 W:      http://wireless.kernel.org/
2594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2596 S:      Maintained
2597 F:      include/uapi/linux/nl80211.h
2598 F:      include/net/cfg80211.h
2599 F:      net/wireless/*
2600 X:      net/wireless/wext*
2601
2602 CHAR and MISC DRIVERS
2603 M:      Arnd Bergmann <arnd@arndb.de>
2604 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2606 S:      Supported
2607 F:      drivers/char/*
2608 F:      drivers/misc/*
2609 F:      include/linux/miscdevice.h
2610
2611 CHECKPATCH
2612 M:      Andy Whitcroft <apw@canonical.com>
2613 M:      Joe Perches <joe@perches.com>
2614 S:      Maintained
2615 F:      scripts/checkpatch.pl
2616
2617 CHINESE DOCUMENTATION
2618 M:      Harry Wei <harryxiyou@gmail.com>
2619 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2620 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2621 S:      Maintained
2622 F:      Documentation/zh_CN/
2623
2624 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2625 M:      Peter Chen <Peter.Chen@freescale.com>
2626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2627 L:      linux-usb@vger.kernel.org
2628 S:      Maintained
2629 F:      drivers/usb/chipidea/
2630
2631 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2632 M:      Hans de Goede <hdegoede@redhat.com>
2633 L:      linux-input@vger.kernel.org
2634 S:      Maintained
2635 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2636 F:      drivers/input/touchscreen/chipone_icn8318.c
2637
2638 CHROME HARDWARE PLATFORM SUPPORT
2639 M:      Olof Johansson <olof@lixom.net>
2640 S:      Maintained
2641 F:      drivers/platform/chrome/
2642
2643 CISCO VIC ETHERNET NIC DRIVER
2644 M:      Christian Benvenuti <benve@cisco.com>
2645 M:      Sujith Sankar <ssujith@cisco.com>
2646 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2647 M:      Neel Patel <neepatel@cisco.com>
2648 S:      Supported
2649 F:      drivers/net/ethernet/cisco/enic/
2650
2651 CISCO VIC LOW LATENCY NIC DRIVER
2652 M:      Upinder Malhi <umalhi@cisco.com>
2653 S:      Supported
2654 F:      drivers/infiniband/hw/usnic
2655
2656 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2657 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2658 L:      netdev@vger.kernel.org
2659 S:      Maintained
2660 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2661
2662 CIRRUS LOGIC AUDIO CODEC DRIVERS
2663 M:      Brian Austin <brian.austin@cirrus.com>
2664 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2665 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2666 S:      Maintained
2667 F:      sound/soc/codecs/cs*
2668
2669 CLEANCACHE API
2670 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2671 L:      linux-kernel@vger.kernel.org
2672 S:      Maintained
2673 F:      mm/cleancache.c
2674 F:      include/linux/cleancache.h
2675
2676 CLK API
2677 M:      Russell King <linux@arm.linux.org.uk>
2678 L:      linux-clk@vger.kernel.org
2679 S:      Maintained
2680 F:      include/linux/clk.h
2681
2682 CLOCKSOURCE, CLOCKEVENT DRIVERS
2683 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2684 M:      Thomas Gleixner <tglx@linutronix.de>
2685 L:      linux-kernel@vger.kernel.org
2686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2687 S:      Supported
2688 F:      drivers/clocksource
2689
2690 CISCO FCOE HBA DRIVER
2691 M:      Hiral Patel <hiralpat@cisco.com>
2692 M:      Suma Ramars <sramars@cisco.com>
2693 M:      Brian Uchino <buchino@cisco.com>
2694 L:      linux-scsi@vger.kernel.org
2695 S:      Supported
2696 F:      drivers/scsi/fnic/
2697
2698 CISCO SCSI HBA DRIVER
2699 M:      Narsimhulu Musini <nmusini@cisco.com>
2700 M:      Sesidhar Baddela <sebaddel@cisco.com>
2701 L:      linux-scsi@vger.kernel.org
2702 S:      Supported
2703 F:      drivers/scsi/snic/
2704
2705 CMPC ACPI DRIVER
2706 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2707 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2708 L:      platform-driver-x86@vger.kernel.org
2709 S:      Supported
2710 F:      drivers/platform/x86/classmate-laptop.c
2711
2712 COBALT MEDIA DRIVER
2713 M:      Hans Verkuil <hans.verkuil@cisco.com>
2714 L:      linux-media@vger.kernel.org
2715 T:      git git://linuxtv.org/media_tree.git
2716 W:      http://linuxtv.org
2717 S:      Supported
2718 F:      drivers/media/pci/cobalt/
2719
2720 COCCINELLE/Semantic Patches (SmPL)
2721 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2722 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2723 M:      Nicolas Palix <nicolas.palix@imag.fr>
2724 M:      Michal Marek <mmarek@suse.cz>
2725 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2727 W:      http://coccinelle.lip6.fr/
2728 S:      Supported
2729 F:      Documentation/coccinelle.txt
2730 F:      scripts/coccinelle/
2731 F:      scripts/coccicheck
2732
2733 CODA FILE SYSTEM
2734 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2735 M:      coda@cs.cmu.edu
2736 L:      codalist@coda.cs.cmu.edu
2737 W:      http://www.coda.cs.cmu.edu/
2738 S:      Maintained
2739 F:      Documentation/filesystems/coda.txt
2740 F:      fs/coda/
2741 F:      include/linux/coda*.h
2742 F:      include/uapi/linux/coda*.h
2743
2744 CODA V4L2 MEM2MEM DRIVER
2745 M:      Philipp Zabel <p.zabel@pengutronix.de>
2746 L:      linux-media@vger.kernel.org
2747 S:      Maintained
2748 F:      Documentation/devicetree/bindings/media/coda.txt
2749 F:      drivers/media/platform/coda/
2750
2751 COMMON CLK FRAMEWORK
2752 M:      Mike Turquette <mturquette@linaro.org>
2753 M:      Stephen Boyd <sboyd@codeaurora.org>
2754 L:      linux-clk@vger.kernel.org
2755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2756 S:      Maintained
2757 F:      drivers/clk/
2758 X:      drivers/clk/clkdev.c
2759 F:      include/linux/clk-pr*
2760 F:      include/linux/clk/
2761
2762 COMMON INTERNET FILE SYSTEM (CIFS)
2763 M:      Steve French <sfrench@samba.org>
2764 L:      linux-cifs@vger.kernel.org
2765 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2766 W:      http://linux-cifs.samba.org/
2767 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2768 S:      Supported
2769 F:      Documentation/filesystems/cifs/
2770 F:      fs/cifs/
2771
2772 COMPACTPCI HOTPLUG CORE
2773 M:      Scott Murray <scott@spiteful.org>
2774 L:      linux-pci@vger.kernel.org
2775 S:      Maintained
2776 F:      drivers/pci/hotplug/cpci_hotplug*
2777
2778 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2779 M:      Scott Murray <scott@spiteful.org>
2780 L:      linux-pci@vger.kernel.org
2781 S:      Maintained
2782 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2783
2784 COMPACTPCI HOTPLUG GENERIC DRIVER
2785 M:      Scott Murray <scott@spiteful.org>
2786 L:      linux-pci@vger.kernel.org
2787 S:      Maintained
2788 F:      drivers/pci/hotplug/cpcihp_generic.c
2789
2790 COMPAL LAPTOP SUPPORT
2791 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2792 L:      platform-driver-x86@vger.kernel.org
2793 S:      Maintained
2794 F:      drivers/platform/x86/compal-laptop.c
2795
2796 CONEXANT ACCESSRUNNER USB DRIVER
2797 M:      Simon Arlott <cxacru@fire.lp0.eu>
2798 L:      accessrunner-general@lists.sourceforge.net
2799 W:      http://accessrunner.sourceforge.net/
2800 S:      Maintained
2801 F:      drivers/usb/atm/cxacru.c
2802
2803 CONFIGFS
2804 M:      Joel Becker <jlbec@evilplan.org>
2805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2806 S:      Supported
2807 F:      fs/configfs/
2808 F:      include/linux/configfs.h
2809
2810 CONNECTOR
2811 M:      Evgeniy Polyakov <zbr@ioremap.net>
2812 L:      netdev@vger.kernel.org
2813 S:      Maintained
2814 F:      drivers/connector/
2815
2816 CONTROL GROUP (CGROUP)
2817 M:      Tejun Heo <tj@kernel.org>
2818 M:      Li Zefan <lizefan@huawei.com>
2819 L:      cgroups@vger.kernel.org
2820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2821 S:      Maintained
2822 F:      Documentation/cgroups/
2823 F:      include/linux/cgroup*
2824 F:      kernel/cgroup*
2825
2826 CONTROL GROUP - CPUSET
2827 M:      Li Zefan <lizefan@huawei.com>
2828 L:      cgroups@vger.kernel.org
2829 W:      http://www.bullopensource.org/cpuset/
2830 W:      http://oss.sgi.com/projects/cpusets/
2831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2832 S:      Maintained
2833 F:      Documentation/cgroups/cpusets.txt
2834 F:      include/linux/cpuset.h
2835 F:      kernel/cpuset.c
2836
2837 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2838 M:      Johannes Weiner <hannes@cmpxchg.org>
2839 M:      Michal Hocko <mhocko@suse.cz>
2840 L:      cgroups@vger.kernel.org
2841 L:      linux-mm@kvack.org
2842 S:      Maintained
2843 F:      mm/memcontrol.c
2844 F:      mm/swap_cgroup.c
2845
2846 CORETEMP HARDWARE MONITORING DRIVER
2847 M:      Fenghua Yu <fenghua.yu@intel.com>
2848 L:      lm-sensors@lm-sensors.org
2849 S:      Maintained
2850 F:      Documentation/hwmon/coretemp
2851 F:      drivers/hwmon/coretemp.c
2852
2853 COSA/SRP SYNC SERIAL DRIVER
2854 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2855 W:      http://www.fi.muni.cz/~kas/cosa/
2856 S:      Maintained
2857 F:      drivers/net/wan/cosa*
2858
2859 CPMAC ETHERNET DRIVER
2860 M:      Florian Fainelli <florian@openwrt.org>
2861 L:      netdev@vger.kernel.org
2862 S:      Maintained
2863 F:      drivers/net/ethernet/ti/cpmac.c
2864
2865 CPU FREQUENCY DRIVERS
2866 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2867 M:      Viresh Kumar <viresh.kumar@linaro.org>
2868 L:      linux-pm@vger.kernel.org
2869 S:      Maintained
2870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2871 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2872 F:      drivers/cpufreq/
2873 F:      include/linux/cpufreq.h
2874
2875 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2876 M:      Viresh Kumar <viresh.kumar@linaro.org>
2877 M:      Sudeep Holla <sudeep.holla@arm.com>
2878 L:      linux-pm@vger.kernel.org
2879 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2880 S:      Maintained
2881 F:      drivers/cpufreq/arm_big_little.h
2882 F:      drivers/cpufreq/arm_big_little.c
2883 F:      drivers/cpufreq/arm_big_little_dt.c
2884
2885 CPUIDLE DRIVER - ARM BIG LITTLE
2886 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2887 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2888 L:      linux-pm@vger.kernel.org
2889 L:      linux-arm-kernel@lists.infradead.org
2890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2891 S:      Maintained
2892 F:      drivers/cpuidle/cpuidle-big_little.c
2893
2894 CPUIDLE DRIVER - ARM EXYNOS
2895 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2896 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2897 M:      Kukjin Kim <kgene@kernel.org>
2898 L:      linux-pm@vger.kernel.org
2899 L:      linux-samsung-soc@vger.kernel.org
2900 S:      Supported
2901 F:      drivers/cpuidle/cpuidle-exynos.c
2902 F:      arch/arm/mach-exynos/pm.c
2903
2904 CPUIDLE DRIVERS
2905 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2906 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2907 L:      linux-pm@vger.kernel.org
2908 S:      Maintained
2909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2910 F:      drivers/cpuidle/*
2911 F:      include/linux/cpuidle.h
2912
2913 CPUID/MSR DRIVER
2914 M:      "H. Peter Anvin" <hpa@zytor.com>
2915 S:      Maintained
2916 F:      arch/x86/kernel/cpuid.c
2917 F:      arch/x86/kernel/msr.c
2918
2919 CPU POWER MONITORING SUBSYSTEM
2920 M:      Thomas Renninger <trenn@suse.de>
2921 L:      linux-pm@vger.kernel.org
2922 S:      Maintained
2923 F:      tools/power/cpupower/
2924
2925 CRAMFS FILESYSTEM
2926 W:      http://sourceforge.net/projects/cramfs/
2927 S:      Orphan / Obsolete
2928 F:      Documentation/filesystems/cramfs.txt
2929 F:      fs/cramfs/
2930
2931 CRIS PORT
2932 M:      Mikael Starvik <starvik@axis.com>
2933 M:      Jesper Nilsson <jesper.nilsson@axis.com>
2934 L:      linux-cris-kernel@axis.com
2935 W:      http://developer.axis.com
2936 S:      Maintained
2937 F:      arch/cris/
2938 F:      drivers/tty/serial/crisv10.*
2939
2940 CRYPTO API
2941 M:      Herbert Xu <herbert@gondor.apana.org.au>
2942 M:      "David S. Miller" <davem@davemloft.net>
2943 L:      linux-crypto@vger.kernel.org
2944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2945 S:      Maintained
2946 F:      Documentation/crypto/
2947 F:      Documentation/DocBook/crypto-API.tmpl
2948 F:      arch/*/crypto/
2949 F:      crypto/
2950 F:      drivers/crypto/
2951 F:      include/crypto/
2952
2953 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2954 M:      Neil Horman <nhorman@tuxdriver.com>
2955 L:      linux-crypto@vger.kernel.org
2956 S:      Maintained
2957 F:      crypto/ansi_cprng.c
2958 F:      crypto/rng.c
2959
2960 CS5535 Audio ALSA driver
2961 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
2962 S:      Maintained
2963 F:      sound/pci/cs5535audio/
2964
2965 CW1200 WLAN driver
2966 M:      Solomon Peachy <pizza@shaftnet.org>
2967 S:      Maintained
2968 F:      drivers/net/wireless/cw1200/
2969
2970 CX18 VIDEO4LINUX DRIVER
2971 M:      Andy Walls <awalls@md.metrocast.net>
2972 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
2973 L:      linux-media@vger.kernel.org
2974 T:      git git://linuxtv.org/media_tree.git
2975 W:      http://linuxtv.org
2976 W:      http://www.ivtvdriver.org/index.php/Cx18
2977 S:      Maintained
2978 F:      Documentation/video4linux/cx18.txt
2979 F:      drivers/media/pci/cx18/
2980 F:      include/uapi/linux/ivtv*
2981
2982 CX2341X MPEG ENCODER HELPER MODULE
2983 M:      Hans Verkuil <hverkuil@xs4all.nl>
2984 L:      linux-media@vger.kernel.org
2985 T:      git git://linuxtv.org/media_tree.git
2986 W:      http://linuxtv.org
2987 S:      Maintained
2988 F:      drivers/media/common/cx2341x*
2989 F:      include/media/cx2341x*
2990
2991 CX24120 MEDIA DRIVER
2992 M:      Jemma Denson <jdenson@gmail.com>
2993 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
2994 L:      linux-media@vger.kernel.org
2995 W:      http://linuxtv.org/
2996 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
2997 S:      Maintained
2998 F:      drivers/media/dvb-frontends/cx24120*
2999
3000 CX88 VIDEO4LINUX DRIVER
3001 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3002 L:      linux-media@vger.kernel.org
3003 W:      http://linuxtv.org
3004 T:      git git://linuxtv.org/media_tree.git
3005 S:      Odd fixes
3006 F:      Documentation/video4linux/cx88/
3007 F:      drivers/media/pci/cx88/
3008
3009 CXD2820R MEDIA DRIVER
3010 M:      Antti Palosaari <crope@iki.fi>
3011 L:      linux-media@vger.kernel.org
3012 W:      http://linuxtv.org/
3013 W:      http://palosaari.fi/linux/
3014 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3015 T:      git git://linuxtv.org/anttip/media_tree.git
3016 S:      Maintained
3017 F:      drivers/media/dvb-frontends/cxd2820r*
3018
3019 CXGB3 ETHERNET DRIVER (CXGB3)
3020 M:      Santosh Raspatur <santosh@chelsio.com>
3021 L:      netdev@vger.kernel.org
3022 W:      http://www.chelsio.com
3023 S:      Supported
3024 F:      drivers/net/ethernet/chelsio/cxgb3/
3025
3026 CXGB3 ISCSI DRIVER (CXGB3I)
3027 M:      Karen Xie <kxie@chelsio.com>
3028 L:      linux-scsi@vger.kernel.org
3029 W:      http://www.chelsio.com
3030 S:      Supported
3031 F:      drivers/scsi/cxgbi/cxgb3i
3032
3033 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3034 M:      Steve Wise <swise@chelsio.com>
3035 L:      linux-rdma@vger.kernel.org
3036 W:      http://www.openfabrics.org
3037 S:      Supported
3038 F:      drivers/infiniband/hw/cxgb3/
3039
3040 CXGB4 ETHERNET DRIVER (CXGB4)
3041 M:      Hariprasad S <hariprasad@chelsio.com>
3042 L:      netdev@vger.kernel.org
3043 W:      http://www.chelsio.com
3044 S:      Supported
3045 F:      drivers/net/ethernet/chelsio/cxgb4/
3046
3047 CXGB4 ISCSI DRIVER (CXGB4I)
3048 M:      Karen Xie <kxie@chelsio.com>
3049 L:      linux-scsi@vger.kernel.org
3050 W:      http://www.chelsio.com
3051 S:      Supported
3052 F:      drivers/scsi/cxgbi/cxgb4i
3053
3054 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3055 M:      Steve Wise <swise@chelsio.com>
3056 L:      linux-rdma@vger.kernel.org
3057 W:      http://www.openfabrics.org
3058 S:      Supported
3059 F:      drivers/infiniband/hw/cxgb4/
3060
3061 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3062 M:      Casey Leedom <leedom@chelsio.com>
3063 L:      netdev@vger.kernel.org
3064 W:      http://www.chelsio.com
3065 S:      Supported
3066 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3067
3068 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3069 M:      Ian Munsie <imunsie@au1.ibm.com>
3070 M:      Michael Neuling <mikey@neuling.org>
3071 L:      linuxppc-dev@lists.ozlabs.org
3072 S:      Supported
3073 F:      drivers/misc/cxl/
3074 F:      include/misc/cxl*
3075 F:      include/uapi/misc/cxl.h
3076 F:      Documentation/powerpc/cxl.txt
3077 F:      Documentation/powerpc/cxl.txt
3078 F:      Documentation/ABI/testing/sysfs-class-cxl
3079
3080 STMMAC ETHERNET DRIVER
3081 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3082 L:      netdev@vger.kernel.org
3083 W:      http://www.stlinux.com
3084 S:      Supported
3085 F:      drivers/net/ethernet/stmicro/stmmac/
3086
3087 CYBERPRO FB DRIVER
3088 M:      Russell King <linux@arm.linux.org.uk>
3089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3090 W:      http://www.arm.linux.org.uk/
3091 S:      Maintained
3092 F:      drivers/video/fbdev/cyber2000fb.*
3093
3094 CYCLADES ASYNC MUX DRIVER
3095 W:      http://www.cyclades.com/
3096 S:      Orphan
3097 F:      drivers/tty/cyclades.c
3098 F:      include/linux/cyclades.h
3099 F:      include/uapi/linux/cyclades.h
3100
3101 CYCLADES PC300 DRIVER
3102 W:      http://www.cyclades.com/
3103 S:      Orphan
3104 F:      drivers/net/wan/pc300*
3105
3106 CYPRESS_FIRMWARE MEDIA DRIVER
3107 M:      Antti Palosaari <crope@iki.fi>
3108 L:      linux-media@vger.kernel.org
3109 W:      http://linuxtv.org/
3110 W:      http://palosaari.fi/linux/
3111 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3112 T:      git git://linuxtv.org/anttip/media_tree.git
3113 S:      Maintained
3114 F:      drivers/media/common/cypress_firmware*
3115
3116 CYTTSP TOUCHSCREEN DRIVER
3117 M:      Ferruh Yigit <fery@cypress.com>
3118 L:      linux-input@vger.kernel.org
3119 S:      Supported
3120 F:      drivers/input/touchscreen/cyttsp*
3121 F:      include/linux/input/cyttsp.h
3122
3123 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3124 M:      Joshua Kinard <kumba@gentoo.org>
3125 S:      Maintained
3126 F:      drivers/rtc/rtc-ds1685.c
3127 F:      include/linux/rtc/ds1685.h
3128
3129 DAMA SLAVE for AX.25
3130 M:      Joerg Reuter <jreuter@yaina.de>
3131 W:      http://yaina.de/jreuter/
3132 W:      http://www.qsl.net/dl1bke/
3133 L:      linux-hams@vger.kernel.org
3134 S:      Maintained
3135 F:      net/ax25/af_ax25.c
3136 F:      net/ax25/ax25_dev.c
3137 F:      net/ax25/ax25_ds_*
3138 F:      net/ax25/ax25_in.c
3139 F:      net/ax25/ax25_out.c
3140 F:      net/ax25/ax25_timer.c
3141 F:      net/ax25/sysctl_net_ax25.c
3142
3143 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3144 L:      netdev@vger.kernel.org
3145 S:      Orphan
3146 F:      Documentation/networking/dmfe.txt
3147 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3148
3149 DC390/AM53C974 SCSI driver
3150 M:      Hannes Reinecke <hare@suse.de>
3151 L:      linux-scsi@vger.kernel.org
3152 S:      Maintained
3153 F:      drivers/scsi/am53c974.c
3154
3155 DC395x SCSI driver
3156 M:      Oliver Neukum <oliver@neukum.org>
3157 M:      Ali Akcaagac <aliakc@web.de>
3158 M:      Jamie Lenehan <lenehan@twibble.org>
3159 L:      dc395x@twibble.org
3160 W:      http://twibble.org/dist/dc395x/
3161 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3162 S:      Maintained
3163 F:      Documentation/scsi/dc395x.txt
3164 F:      drivers/scsi/dc395x.*
3165
3166 DCCP PROTOCOL
3167 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3168 L:      dccp@vger.kernel.org
3169 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3170 S:      Maintained
3171 F:      include/linux/dccp.h
3172 F:      include/uapi/linux/dccp.h
3173 F:      include/linux/tfrc.h
3174 F:      net/dccp/
3175
3176 DECnet NETWORK LAYER
3177 W:      http://linux-decnet.sourceforge.net
3178 L:      linux-decnet-user@lists.sourceforge.net
3179 S:      Orphan
3180 F:      Documentation/networking/decnet.txt
3181 F:      net/decnet/
3182
3183 DECSTATION PLATFORM SUPPORT
3184 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3185 L:      linux-mips@linux-mips.org
3186 W:      http://www.linux-mips.org/wiki/DECstation
3187 S:      Maintained
3188 F:      arch/mips/dec/
3189 F:      arch/mips/include/asm/dec/
3190 F:      arch/mips/include/asm/mach-dec/
3191
3192 DEFXX FDDI NETWORK DRIVER
3193 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3194 S:      Maintained
3195 F:      drivers/net/fddi/defxx.*
3196
3197 DELL LAPTOP DRIVER
3198 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3199 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3200 L:      platform-driver-x86@vger.kernel.org
3201 S:      Maintained
3202 F:      drivers/platform/x86/dell-laptop.c
3203
3204 DELL LAPTOP FREEFALL DRIVER
3205 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3206 S:      Maintained
3207 F:      drivers/platform/x86/dell-smo8800.c
3208
3209 DELL LAPTOP SMM DRIVER
3210 M:      Guenter Roeck <linux@roeck-us.net>
3211 S:      Maintained
3212 F:      drivers/char/i8k.c
3213 F:      include/uapi/linux/i8k.h
3214
3215 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3216 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3217 S:      Maintained
3218 F:      Documentation/dcdbas.txt
3219 F:      drivers/firmware/dcdbas.*
3220
3221 DELL WMI EXTRAS DRIVER
3222 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3223 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3224 S:      Maintained
3225 F:      drivers/platform/x86/dell-wmi.c
3226
3227 DESIGNWARE USB2 DRD IP DRIVER
3228 M:      John Youn <johnyoun@synopsys.com>
3229 L:      linux-usb@vger.kernel.org
3230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3231 S:      Maintained
3232 F:      drivers/usb/dwc2/
3233
3234 DESIGNWARE USB3 DRD IP DRIVER
3235 M:      Felipe Balbi <balbi@ti.com>
3236 L:      linux-usb@vger.kernel.org
3237 L:      linux-omap@vger.kernel.org
3238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3239 S:      Maintained
3240 F:      drivers/usb/dwc3/
3241
3242 DEVICE COREDUMP (DEV_COREDUMP)
3243 M:      Johannes Berg <johannes@sipsolutions.net>
3244 L:      linux-kernel@vger.kernel.org
3245 S:      Maintained
3246 F:      drivers/base/devcoredump.c
3247 F:      include/linux/devcoredump.h
3248
3249 DEVICE FREQUENCY (DEVFREQ)
3250 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3251 M:      Kyungmin Park <kyungmin.park@samsung.com>
3252 L:      linux-pm@vger.kernel.org
3253 S:      Maintained
3254 F:      drivers/devfreq/
3255
3256 DEVICE NUMBER REGISTRY
3257 M:      Torben Mathiasen <device@lanana.org>
3258 W:      http://lanana.org/docs/device-list/index.html
3259 S:      Maintained
3260
3261 DEVICE-MAPPER  (LVM)
3262 M:      Alasdair Kergon <agk@redhat.com>
3263 M:      Mike Snitzer <snitzer@redhat.com>
3264 M:      dm-devel@redhat.com
3265 L:      dm-devel@redhat.com
3266 W:      http://sources.redhat.com/dm
3267 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3269 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3270 S:      Maintained
3271 F:      Documentation/device-mapper/
3272 F:      drivers/md/dm*
3273 F:      drivers/md/persistent-data/
3274 F:      include/linux/device-mapper.h
3275 F:      include/linux/dm-*.h
3276 F:      include/uapi/linux/dm-*.h
3277
3278 DIALOG SEMICONDUCTOR DRIVERS
3279 M:      Support Opensource <support.opensource@diasemi.com>
3280 W:      http://www.dialog-semiconductor.com/products
3281 S:      Supported
3282 F:      Documentation/hwmon/da90??
3283 F:      drivers/gpio/gpio-da90??.c
3284 F:      drivers/hwmon/da90??-hwmon.c
3285 F:      drivers/iio/adc/da91??-*.c
3286 F:      drivers/input/misc/da90??_onkey.c
3287 F:      drivers/input/touchscreen/da9052_tsi.c
3288 F:      drivers/leds/leds-da90??.c
3289 F:      drivers/mfd/da903x.c
3290 F:      drivers/mfd/da90??-*.c
3291 F:      drivers/mfd/da91??-*.c
3292 F:      drivers/power/da9052-battery.c
3293 F:      drivers/power/da91??-*.c
3294 F:      drivers/regulator/da903x.c
3295 F:      drivers/regulator/da9???-regulator.[ch]
3296 F:      drivers/rtc/rtc-da90??.c
3297 F:      drivers/video/backlight/da90??_bl.c
3298 F:      drivers/watchdog/da90??_wdt.c
3299 F:      include/linux/mfd/da903x.h
3300 F:      include/linux/mfd/da9052/
3301 F:      include/linux/mfd/da9055/
3302 F:      include/linux/mfd/da9063/
3303 F:      include/linux/mfd/da9150/
3304 F:      include/sound/da[79]*.h
3305 F:      sound/soc/codecs/da[79]*.[ch]
3306
3307 DIGI NEO AND CLASSIC PCI PRODUCTS
3308 M:      Lidza Louina <lidza.louina@gmail.com>
3309 M:      Mark Hounschell <markh@compro.net>
3310 L:      driverdev-devel@linuxdriverproject.org
3311 S:      Maintained
3312 F:      drivers/staging/dgnc/
3313
3314 DIGI EPCA PCI PRODUCTS
3315 M:      Lidza Louina <lidza.louina@gmail.com>
3316 M:      Mark Hounschell <markh@compro.net>
3317 M:      Daeseok Youn <daeseok.youn@gmail.com>
3318 L:      driverdev-devel@linuxdriverproject.org
3319 S:      Maintained
3320 F:      drivers/staging/dgap/
3321
3322 DIOLAN U2C-12 I2C DRIVER
3323 M:      Guenter Roeck <linux@roeck-us.net>
3324 L:      linux-i2c@vger.kernel.org
3325 S:      Maintained
3326 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3327
3328 DIRECT ACCESS (DAX)
3329 M:      Matthew Wilcox <willy@linux.intel.com>
3330 L:      linux-fsdevel@vger.kernel.org
3331 S:      Supported
3332 F:      fs/dax.c
3333
3334 DIRECTORY NOTIFICATION (DNOTIFY)
3335 M:      Eric Paris <eparis@parisplace.org>
3336 S:      Maintained
3337 F:      Documentation/filesystems/dnotify.txt
3338 F:      fs/notify/dnotify/
3339 F:      include/linux/dnotify.h
3340
3341 DISK GEOMETRY AND PARTITION HANDLING
3342 M:      Andries Brouwer <aeb@cwi.nl>
3343 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3344 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3345 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3346 S:      Maintained
3347
3348 DISKQUOTA
3349 M:      Jan Kara <jack@suse.cz>
3350 S:      Maintained
3351 F:      Documentation/filesystems/quota.txt
3352 F:      fs/quota/
3353 F:      include/linux/quota*.h
3354 F:      include/uapi/linux/quota*.h
3355
3356 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3357 M:      Bernie Thompson <bernie@plugable.com>
3358 L:      linux-fbdev@vger.kernel.org
3359 S:      Maintained
3360 W:      http://plugable.com/category/projects/udlfb/
3361 F:      drivers/video/fbdev/udlfb.c
3362 F:      include/video/udlfb.h
3363 F:      Documentation/fb/udlfb.txt
3364
3365 DISTRIBUTED LOCK MANAGER (DLM)
3366 M:      Christine Caulfield <ccaulfie@redhat.com>
3367 M:      David Teigland <teigland@redhat.com>
3368 L:      cluster-devel@redhat.com
3369 W:      http://sources.redhat.com/cluster/
3370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3371 S:      Supported
3372 F:      fs/dlm/
3373
3374 DMA BUFFER SHARING FRAMEWORK
3375 M:      Sumit Semwal <sumit.semwal@linaro.org>
3376 S:      Maintained
3377 L:      linux-media@vger.kernel.org
3378 L:      dri-devel@lists.freedesktop.org
3379 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3380 F:      drivers/dma-buf/
3381 F:      include/linux/dma-buf*
3382 F:      include/linux/reservation.h
3383 F:      include/linux/*fence.h
3384 F:      Documentation/dma-buf-sharing.txt
3385 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3386
3387 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3388 M:      Vinod Koul <vinod.koul@intel.com>
3389 L:      dmaengine@vger.kernel.org
3390 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3391 S:      Maintained
3392 F:      drivers/dma/
3393 F:      include/linux/dmaengine.h
3394 F:      Documentation/dmaengine/
3395 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3396
3397 DME1737 HARDWARE MONITOR DRIVER
3398 M:      Juerg Haefliger <juergh@gmail.com>
3399 L:      lm-sensors@lm-sensors.org
3400 S:      Maintained
3401 F:      Documentation/hwmon/dme1737
3402 F:      drivers/hwmon/dme1737.c
3403
3404 DMI/SMBIOS SUPPORT
3405 M:      Jean Delvare <jdelvare@suse.de>
3406 S:      Maintained
3407 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3408 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3409 F:      drivers/firmware/dmi-id.c
3410 F:      drivers/firmware/dmi_scan.c
3411 F:      include/linux/dmi.h
3412
3413 DOCUMENTATION
3414 M:      Jonathan Corbet <corbet@lwn.net>
3415 L:      linux-doc@vger.kernel.org
3416 S:      Maintained
3417 F:      Documentation/
3418 X:      Documentation/ABI/
3419 X:      Documentation/devicetree/
3420 X:      Documentation/acpi
3421 X:      Documentation/power
3422 X:      Documentation/spi
3423 T:      git git://git.lwn.net/linux-2.6.git docs-next
3424
3425 DOUBLETALK DRIVER
3426 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3427 L:      blinux-list@redhat.com
3428 S:      Maintained
3429 F:      drivers/char/dtlk.c
3430 F:      include/linux/dtlk.h
3431
3432 DPT_I2O SCSI RAID DRIVER
3433 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3434 L:      linux-scsi@vger.kernel.org
3435 W:      http://www.adaptec.com/
3436 S:      Maintained
3437 F:      drivers/scsi/dpt*
3438 F:      drivers/scsi/dpt/
3439
3440 DRBD DRIVER
3441 P:      Philipp Reisner
3442 P:      Lars Ellenberg
3443 M:      drbd-dev@lists.linbit.com
3444 L:      drbd-user@lists.linbit.com
3445 W:      http://www.drbd.org
3446 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3447 T:      git git://git.drbd.org/drbd-8.3.git
3448 S:      Supported
3449 F:      drivers/block/drbd/
3450 F:      lib/lru_cache.c
3451 F:      Documentation/blockdev/drbd/
3452
3453 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
3454 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3456 S:      Supported
3457 F:      Documentation/kobject.txt
3458 F:      drivers/base/
3459 F:      fs/sysfs/
3460 F:      fs/debugfs/
3461 F:      include/linux/kobj*
3462 F:      include/linux/debugfs.h
3463 F:      lib/kobj*
3464
3465 DRM DRIVERS
3466 M:      David Airlie <airlied@linux.ie>
3467 L:      dri-devel@lists.freedesktop.org
3468 T:      git git://people.freedesktop.org/~airlied/linux
3469 S:      Maintained
3470 F:      drivers/gpu/drm/
3471 F:      drivers/gpu/vga/
3472 F:      include/drm/
3473 F:      include/uapi/drm/
3474
3475 RADEON DRM DRIVERS
3476 M:      Alex Deucher <alexander.deucher@amd.com>
3477 M:      Christian König <christian.koenig@amd.com>
3478 L:      dri-devel@lists.freedesktop.org
3479 T:      git git://people.freedesktop.org/~agd5f/linux
3480 S:      Supported
3481 F:      drivers/gpu/drm/radeon/
3482 F:      include/uapi/drm/radeon*
3483
3484 DRM PANEL DRIVERS
3485 M:      Thierry Reding <thierry.reding@gmail.com>
3486 L:      dri-devel@lists.freedesktop.org
3487 T:      git git://anongit.freedesktop.org/tegra/linux.git
3488 S:      Maintained
3489 F:      drivers/gpu/drm/drm_panel.c
3490 F:      drivers/gpu/drm/panel/
3491 F:      include/drm/drm_panel.h
3492 F:      Documentation/devicetree/bindings/panel/
3493
3494 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3495 M:      Daniel Vetter <daniel.vetter@intel.com>
3496 M:      Jani Nikula <jani.nikula@linux.intel.com>
3497 L:      intel-gfx@lists.freedesktop.org
3498 L:      dri-devel@lists.freedesktop.org
3499 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3500 T:      git git://anongit.freedesktop.org/drm-intel
3501 S:      Supported
3502 F:      drivers/gpu/drm/i915/
3503 F:      include/drm/i915*
3504 F:      include/uapi/drm/i915*
3505
3506 DRM DRIVERS FOR EXYNOS
3507 M:      Inki Dae <inki.dae@samsung.com>
3508 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3509 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3510 M:      Kyungmin Park <kyungmin.park@samsung.com>
3511 L:      dri-devel@lists.freedesktop.org
3512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3513 S:      Supported
3514 F:      drivers/gpu/drm/exynos/
3515 F:      include/drm/exynos*
3516 F:      include/uapi/drm/exynos*
3517
3518 DRM DRIVERS FOR FREESCALE IMX
3519 M:      Philipp Zabel <p.zabel@pengutronix.de>
3520 L:      dri-devel@lists.freedesktop.org
3521 S:      Maintained
3522 F:      drivers/gpu/drm/imx/
3523 F:      Documentation/devicetree/bindings/drm/imx/
3524
3525 DRM DRIVERS FOR NVIDIA TEGRA
3526 M:      Thierry Reding <thierry.reding@gmail.com>
3527 M:      Terje Bergström <tbergstrom@nvidia.com>
3528 L:      dri-devel@lists.freedesktop.org
3529 L:      linux-tegra@vger.kernel.org
3530 T:      git git://anongit.freedesktop.org/tegra/linux.git
3531 S:      Supported
3532 F:      drivers/gpu/drm/tegra/
3533 F:      drivers/gpu/host1x/
3534 F:      include/linux/host1x.h
3535 F:      include/uapi/drm/tegra_drm.h
3536 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3537
3538 DRM DRIVERS FOR RENESAS
3539 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3540 L:      dri-devel@lists.freedesktop.org
3541 L:      linux-sh@vger.kernel.org
3542 T:      git git://people.freedesktop.org/~airlied/linux
3543 S:      Supported
3544 F:      drivers/gpu/drm/rcar-du/
3545 F:      drivers/gpu/drm/shmobile/
3546 F:      include/linux/platform_data/shmob_drm.h
3547
3548 DRM DRIVERS FOR ROCKCHIP
3549 M:      Mark Yao <mark.yao@rock-chips.com>
3550 L:      dri-devel@lists.freedesktop.org
3551 S:      Maintained
3552 F:      drivers/gpu/drm/rockchip/
3553 F:      Documentation/devicetree/bindings/video/rockchip*
3554
3555 DSBR100 USB FM RADIO DRIVER
3556 M:      Alexey Klimov <klimov.linux@gmail.com>
3557 L:      linux-media@vger.kernel.org
3558 T:      git git://linuxtv.org/media_tree.git
3559 S:      Maintained
3560 F:      drivers/media/radio/dsbr100.c
3561
3562 DSCC4 DRIVER
3563 M:      Francois Romieu <romieu@fr.zoreil.com>
3564 L:      netdev@vger.kernel.org
3565 S:      Maintained
3566 F:      drivers/net/wan/dscc4.c
3567
3568 DT3155 MEDIA DRIVER
3569 M:      Hans Verkuil <hverkuil@xs4all.nl>
3570 L:      linux-media@vger.kernel.org
3571 T:      git git://linuxtv.org/media_tree.git
3572 W:      http://linuxtv.org
3573 S:      Odd Fixes
3574 F:      drivers/media/pci/dt3155/
3575
3576 DVB_USB_AF9015 MEDIA DRIVER
3577 M:      Antti Palosaari <crope@iki.fi>
3578 L:      linux-media@vger.kernel.org
3579 W:      http://linuxtv.org/
3580 W:      http://palosaari.fi/linux/
3581 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3582 T:      git git://linuxtv.org/anttip/media_tree.git
3583 S:      Maintained
3584 F:      drivers/media/usb/dvb-usb-v2/af9015*
3585
3586 DVB_USB_AF9035 MEDIA DRIVER
3587 M:      Antti Palosaari <crope@iki.fi>
3588 L:      linux-media@vger.kernel.org
3589 W:      http://linuxtv.org/
3590 W:      http://palosaari.fi/linux/
3591 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3592 T:      git git://linuxtv.org/anttip/media_tree.git
3593 S:      Maintained
3594 F:      drivers/media/usb/dvb-usb-v2/af9035*
3595
3596 DVB_USB_ANYSEE MEDIA DRIVER
3597 M:      Antti Palosaari <crope@iki.fi>
3598 L:      linux-media@vger.kernel.org
3599 W:      http://linuxtv.org/
3600 W:      http://palosaari.fi/linux/
3601 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3602 T:      git git://linuxtv.org/anttip/media_tree.git
3603 S:      Maintained
3604 F:      drivers/media/usb/dvb-usb-v2/anysee*
3605
3606 DVB_USB_AU6610 MEDIA DRIVER
3607 M:      Antti Palosaari <crope@iki.fi>
3608 L:      linux-media@vger.kernel.org
3609 W:      http://linuxtv.org/
3610 W:      http://palosaari.fi/linux/
3611 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3612 T:      git git://linuxtv.org/anttip/media_tree.git
3613 S:      Maintained
3614 F:      drivers/media/usb/dvb-usb-v2/au6610*
3615
3616 DVB_USB_CE6230 MEDIA DRIVER
3617 M:      Antti Palosaari <crope@iki.fi>
3618 L:      linux-media@vger.kernel.org
3619 W:      http://linuxtv.org/
3620 W:      http://palosaari.fi/linux/
3621 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3622 T:      git git://linuxtv.org/anttip/media_tree.git
3623 S:      Maintained
3624 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3625
3626 DVB_USB_CXUSB MEDIA DRIVER
3627 M:      Michael Krufky <mkrufky@linuxtv.org>
3628 L:      linux-media@vger.kernel.org
3629 W:      http://linuxtv.org/
3630 W:      http://github.com/mkrufky
3631 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3632 T:      git git://linuxtv.org/media_tree.git
3633 S:      Maintained
3634 F:      drivers/media/usb/dvb-usb/cxusb*
3635
3636 DVB_USB_EC168 MEDIA DRIVER
3637 M:      Antti Palosaari <crope@iki.fi>
3638 L:      linux-media@vger.kernel.org
3639 W:      http://linuxtv.org/
3640 W:      http://palosaari.fi/linux/
3641 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3642 T:      git git://linuxtv.org/anttip/media_tree.git
3643 S:      Maintained
3644 F:      drivers/media/usb/dvb-usb-v2/ec168*
3645
3646 DVB_USB_GL861 MEDIA DRIVER
3647 M:      Antti Palosaari <crope@iki.fi>
3648 L:      linux-media@vger.kernel.org
3649 W:      http://linuxtv.org/
3650 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3651 T:      git git://linuxtv.org/anttip/media_tree.git
3652 S:      Maintained
3653 F:      drivers/media/usb/dvb-usb-v2/gl861*
3654
3655 DVB_USB_MXL111SF MEDIA DRIVER
3656 M:      Michael Krufky <mkrufky@linuxtv.org>
3657 L:      linux-media@vger.kernel.org
3658 W:      http://linuxtv.org/
3659 W:      http://github.com/mkrufky
3660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3661 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3662 S:      Maintained
3663 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3664
3665 DVB_USB_RTL28XXU MEDIA DRIVER
3666 M:      Antti Palosaari <crope@iki.fi>
3667 L:      linux-media@vger.kernel.org
3668 W:      http://linuxtv.org/
3669 W:      http://palosaari.fi/linux/
3670 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3671 T:      git git://linuxtv.org/anttip/media_tree.git
3672 S:      Maintained
3673 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3674
3675 DVB_USB_V2 MEDIA DRIVER
3676 M:      Antti Palosaari <crope@iki.fi>
3677 L:      linux-media@vger.kernel.org
3678 W:      http://linuxtv.org/
3679 W:      http://palosaari.fi/linux/
3680 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3681 T:      git git://linuxtv.org/anttip/media_tree.git
3682 S:      Maintained
3683 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3684 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3685
3686 DYNAMIC DEBUG
3687 M:      Jason Baron <jbaron@akamai.com>
3688 S:      Maintained
3689 F:      lib/dynamic_debug.c
3690 F:      include/linux/dynamic_debug.h
3691
3692 DZ DECSTATION DZ11 SERIAL DRIVER
3693 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3694 S:      Maintained
3695 F:      drivers/tty/serial/dz.*
3696
3697 E3X0 POWER BUTTON DRIVER
3698 M:      Moritz Fischer <moritz.fischer@ettus.com>
3699 L:      usrp-users@lists.ettus.com
3700 W:      http://www.ettus.com
3701 S:      Supported
3702 F:      drivers/input/misc/e3x0-button.c
3703 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3704
3705 E4000 MEDIA DRIVER
3706 M:      Antti Palosaari <crope@iki.fi>
3707 L:      linux-media@vger.kernel.org
3708 W:      http://linuxtv.org/
3709 W:      http://palosaari.fi/linux/
3710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3711 T:      git git://linuxtv.org/anttip/media_tree.git
3712 S:      Maintained
3713 F:      drivers/media/tuners/e4000*
3714
3715 EATA ISA/EISA/PCI SCSI DRIVER
3716 M:      Dario Ballabio <ballabio_dario@emc.com>
3717 L:      linux-scsi@vger.kernel.org
3718 S:      Maintained
3719 F:      drivers/scsi/eata.c
3720
3721 EC100 MEDIA DRIVER
3722 M:      Antti Palosaari <crope@iki.fi>
3723 L:      linux-media@vger.kernel.org
3724 W:      http://linuxtv.org/
3725 W:      http://palosaari.fi/linux/
3726 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3727 T:      git git://linuxtv.org/anttip/media_tree.git
3728 S:      Maintained
3729 F:      drivers/media/dvb-frontends/ec100*
3730
3731 ECRYPT FILE SYSTEM
3732 M:      Tyler Hicks <tyhicks@canonical.com>
3733 L:      ecryptfs@vger.kernel.org
3734 W:      http://ecryptfs.org
3735 W:      https://launchpad.net/ecryptfs
3736 S:      Supported
3737 F:      Documentation/filesystems/ecryptfs.txt
3738 F:      fs/ecryptfs/
3739
3740 EDAC-CORE
3741 M:      Doug Thompson <dougthompson@xmission.com>
3742 M:      Borislav Petkov <bp@alien8.de>
3743 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3744 L:      linux-edac@vger.kernel.org
3745 W:      bluesmoke.sourceforge.net
3746 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3747 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3748 S:      Supported
3749 F:      Documentation/edac.txt
3750 F:      drivers/edac/
3751 F:      include/linux/edac.h
3752
3753 EDAC-AMD64
3754 M:      Doug Thompson <dougthompson@xmission.com>
3755 M:      Borislav Petkov <bp@alien8.de>
3756 L:      linux-edac@vger.kernel.org
3757 W:      bluesmoke.sourceforge.net
3758 S:      Maintained
3759 F:      drivers/edac/amd64_edac*
3760
3761 EDAC-CALXEDA
3762 M:      Doug Thompson <dougthompson@xmission.com>
3763 M:      Robert Richter <rric@kernel.org>
3764 L:      linux-edac@vger.kernel.org
3765 W:      bluesmoke.sourceforge.net
3766 S:      Maintained
3767 F:      drivers/edac/highbank*
3768
3769 EDAC-CAVIUM
3770 M:      Ralf Baechle <ralf@linux-mips.org>
3771 M:      David Daney <david.daney@cavium.com>
3772 L:      linux-edac@vger.kernel.org
3773 L:      linux-mips@linux-mips.org
3774 W:      bluesmoke.sourceforge.net
3775 S:      Supported
3776 F:      drivers/edac/octeon_edac*
3777
3778 EDAC-E752X
3779 M:      Mark Gross <mark.gross@intel.com>
3780 M:      Doug Thompson <dougthompson@xmission.com>
3781 L:      linux-edac@vger.kernel.org
3782 W:      bluesmoke.sourceforge.net
3783 S:      Maintained
3784 F:      drivers/edac/e752x_edac.c
3785
3786 EDAC-E7XXX
3787 M:      Doug Thompson <dougthompson@xmission.com>
3788 L:      linux-edac@vger.kernel.org
3789 W:      bluesmoke.sourceforge.net
3790 S:      Maintained
3791 F:      drivers/edac/e7xxx_edac.c
3792
3793 EDAC-GHES
3794 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3795 L:      linux-edac@vger.kernel.org
3796 W:      bluesmoke.sourceforge.net
3797 S:      Maintained
3798 F:      drivers/edac/ghes_edac.c
3799
3800 EDAC-I82443BXGX
3801 M:      Tim Small <tim@buttersideup.com>
3802 L:      linux-edac@vger.kernel.org
3803 W:      bluesmoke.sourceforge.net
3804 S:      Maintained
3805 F:      drivers/edac/i82443bxgx_edac.c
3806
3807 EDAC-I3000
3808 M:      Jason Uhlenkott <juhlenko@akamai.com>
3809 L:      linux-edac@vger.kernel.org
3810 W:      bluesmoke.sourceforge.net
3811 S:      Maintained
3812 F:      drivers/edac/i3000_edac.c
3813
3814 EDAC-I5000
3815 M:      Doug Thompson <dougthompson@xmission.com>
3816 L:      linux-edac@vger.kernel.org
3817 W:      bluesmoke.sourceforge.net
3818 S:      Maintained
3819 F:      drivers/edac/i5000_edac.c
3820
3821 EDAC-I5400
3822 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3823 L:      linux-edac@vger.kernel.org
3824 W:      bluesmoke.sourceforge.net
3825 S:      Maintained
3826 F:      drivers/edac/i5400_edac.c
3827
3828 EDAC-I7300
3829 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3830 L:      linux-edac@vger.kernel.org
3831 W:      bluesmoke.sourceforge.net
3832 S:      Maintained
3833 F:      drivers/edac/i7300_edac.c
3834
3835 EDAC-I7CORE
3836 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3837 L:      linux-edac@vger.kernel.org
3838 W:      bluesmoke.sourceforge.net
3839 S:      Maintained
3840 F:      drivers/edac/i7core_edac.c
3841
3842 EDAC-I82975X
3843 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3844 M:      "Arvind R." <arvino55@gmail.com>
3845 L:      linux-edac@vger.kernel.org
3846 W:      bluesmoke.sourceforge.net
3847 S:      Maintained
3848 F:      drivers/edac/i82975x_edac.c
3849
3850 EDAC-IE31200
3851 M:      Jason Baron <jbaron@akamai.com>
3852 L:      linux-edac@vger.kernel.org
3853 W:      bluesmoke.sourceforge.net
3854 S:      Maintained
3855 F:      drivers/edac/ie31200_edac.c
3856
3857 EDAC-MPC85XX
3858 M:      Johannes Thumshirn <morbidrsa@gmail.com>
3859 L:      linux-edac@vger.kernel.org
3860 W:      bluesmoke.sourceforge.net
3861 S:      Maintained
3862 F:      drivers/edac/mpc85xx_edac.[ch]
3863
3864 EDAC-PASEMI
3865 M:      Egor Martovetsky <egor@pasemi.com>
3866 L:      linux-edac@vger.kernel.org
3867 W:      bluesmoke.sourceforge.net
3868 S:      Maintained
3869 F:      drivers/edac/pasemi_edac.c
3870
3871 EDAC-R82600
3872 M:      Tim Small <tim@buttersideup.com>
3873 L:      linux-edac@vger.kernel.org
3874 W:      bluesmoke.sourceforge.net
3875 S:      Maintained
3876 F:      drivers/edac/r82600_edac.c
3877
3878 EDAC-SBRIDGE
3879 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3880 L:      linux-edac@vger.kernel.org
3881 W:      bluesmoke.sourceforge.net
3882 S:      Maintained
3883 F:      drivers/edac/sb_edac.c
3884
3885 EDAC-XGENE
3886 APPLIED MICRO (APM) X-GENE SOC EDAC
3887 M:     Loc Ho <lho@apm.com>
3888 S:     Supported
3889 F:     drivers/edac/xgene_edac.c
3890 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
3891
3892 EDIROL UA-101/UA-1000 DRIVER
3893 M:      Clemens Ladisch <clemens@ladisch.de>
3894 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3895 T:      git git://git.alsa-project.org/alsa-kernel.git
3896 S:      Maintained
3897 F:      sound/usb/misc/ua101.c
3898
3899 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3900 M:      Matt Fleming <matt.fleming@intel.com>
3901 L:      linux-efi@vger.kernel.org
3902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3903 S:      Maintained
3904 F:      Documentation/efi-stub.txt
3905 F:      arch/ia64/kernel/efi.c
3906 F:      arch/x86/boot/compressed/eboot.[ch]
3907 F:      arch/x86/include/asm/efi.h
3908 F:      arch/x86/platform/efi/*
3909 F:      drivers/firmware/efi/*
3910 F:      include/linux/efi*.h
3911
3912 EFI VARIABLE FILESYSTEM
3913 M:      Matthew Garrett <matthew.garrett@nebula.com>
3914 M:      Jeremy Kerr <jk@ozlabs.org>
3915 M:      Matt Fleming <matt.fleming@intel.com>
3916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3917 L:      linux-efi@vger.kernel.org
3918 S:      Maintained
3919 F:      fs/efivarfs/
3920
3921 EFIFB FRAMEBUFFER DRIVER
3922 L:      linux-fbdev@vger.kernel.org
3923 M:      Peter Jones <pjones@redhat.com>
3924 S:      Maintained
3925 F:      drivers/video/fbdev/efifb.c
3926
3927 EFS FILESYSTEM
3928 W:      http://aeschi.ch.eu.org/efs/
3929 S:      Orphan
3930 F:      fs/efs/
3931
3932 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3933 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3934 M:      Christoph Raisch <raisch@de.ibm.com>
3935 L:      linux-rdma@vger.kernel.org
3936 S:      Supported
3937 F:      drivers/infiniband/hw/ehca/
3938
3939 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3940 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3941 L:      netdev@vger.kernel.org
3942 S:      Maintained
3943 F:      drivers/net/ethernet/ibm/ehea/
3944
3945 EM28XX VIDEO4LINUX DRIVER
3946 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3947 L:      linux-media@vger.kernel.org
3948 W:      http://linuxtv.org
3949 T:      git git://linuxtv.org/media_tree.git
3950 S:      Maintained
3951 F:      drivers/media/usb/em28xx/
3952
3953 EMBEDDED LINUX
3954 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
3955 M:      Matt Mackall <mpm@selenic.com>
3956 M:      David Woodhouse <dwmw2@infradead.org>
3957 L:      linux-embedded@vger.kernel.org
3958 S:      Maintained
3959
3960 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
3961 M:      James Smart <james.smart@avagotech.com>
3962 M:      Dick Kennedy <dick.kennedy@avagotech.com>
3963 L:      linux-scsi@vger.kernel.org
3964 W:      http://www.avagotech.com
3965 S:      Supported
3966 F:      drivers/scsi/lpfc/
3967
3968 ENE CB710 FLASH CARD READER DRIVER
3969 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
3970 S:      Maintained
3971 F:      drivers/misc/cb710/
3972 F:      drivers/mmc/host/cb710-mmc.*
3973 F:      include/linux/cb710.h
3974
3975 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3976 M:      Maxim Levitsky <maximlevitsky@gmail.com>
3977 S:      Maintained
3978 F:      drivers/media/rc/ene_ir.*
3979
3980 ENHANCED ERROR HANDLING (EEH)
3981 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
3982 L:      linuxppc-dev@lists.ozlabs.org
3983 S:      Supported
3984 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
3985 F:      arch/powerpc/kernel/eeh*.c
3986
3987 EPSON S1D13XXX FRAMEBUFFER DRIVER
3988 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
3989 S:      Maintained
3990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
3991 F:      drivers/video/fbdev/s1d13xxxfb.c
3992 F:      include/video/s1d13xxxfb.h
3993
3994 ET131X NETWORK DRIVER
3995 M:      Mark Einon <mark.einon@gmail.com>
3996 S:      Odd Fixes
3997 F:      drivers/net/ethernet/agere/
3998
3999 ETHERNET BRIDGE
4000 M:      Stephen Hemminger <stephen@networkplumber.org>
4001 L:      bridge@lists.linux-foundation.org
4002 L:      netdev@vger.kernel.org
4003 W:      http://www.linuxfoundation.org/en/Net:Bridge
4004 S:      Maintained
4005 F:      include/linux/netfilter_bridge/
4006 F:      net/bridge/
4007
4008 ETHERNET PHY LIBRARY
4009 M:      Florian Fainelli <f.fainelli@gmail.com>
4010 L:      netdev@vger.kernel.org
4011 S:      Maintained
4012 F:      include/linux/phy.h
4013 F:      include/linux/phy_fixed.h
4014 F:      drivers/net/phy/
4015 F:      Documentation/networking/phy.txt
4016 F:      drivers/of/of_mdio.c
4017 F:      drivers/of/of_net.c
4018
4019 EXT2 FILE SYSTEM
4020 M:      Jan Kara <jack@suse.cz>
4021 L:      linux-ext4@vger.kernel.org
4022 S:      Maintained
4023 F:      Documentation/filesystems/ext2.txt
4024 F:      fs/ext2/
4025 F:      include/linux/ext2*
4026
4027 EXT3 FILE SYSTEM
4028 M:      Jan Kara <jack@suse.cz>
4029 M:      Andrew Morton <akpm@linux-foundation.org>
4030 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4031 L:      linux-ext4@vger.kernel.org
4032 S:      Maintained
4033 F:      Documentation/filesystems/ext3.txt
4034 F:      fs/ext3/
4035
4036 EXT4 FILE SYSTEM
4037 M:      "Theodore Ts'o" <tytso@mit.edu>
4038 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4039 L:      linux-ext4@vger.kernel.org
4040 W:      http://ext4.wiki.kernel.org
4041 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4042 S:      Maintained
4043 F:      Documentation/filesystems/ext4.txt
4044 F:      fs/ext4/
4045
4046 Extended Verification Module (EVM)
4047 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4048 L:      linux-ima-devel@lists.sourceforge.net
4049 L:      linux-security-module@vger.kernel.org
4050 S:      Supported
4051 F:      security/integrity/evm/
4052
4053 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4054 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4055 M:      Chanwoo Choi <cw00.choi@samsung.com>
4056 L:      linux-kernel@vger.kernel.org
4057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4058 S:      Maintained
4059 F:      drivers/extcon/
4060 F:      Documentation/extcon/
4061
4062 EXYNOS DP DRIVER
4063 M:      Jingoo Han <jingoohan1@gmail.com>
4064 L:      dri-devel@lists.freedesktop.org
4065 S:      Maintained
4066 F:      drivers/gpu/drm/exynos/exynos_dp*
4067
4068 EXYNOS MIPI DISPLAY DRIVERS
4069 M:      Inki Dae <inki.dae@samsung.com>
4070 M:      Donghwa Lee <dh09.lee@samsung.com>
4071 M:      Kyungmin Park <kyungmin.park@samsung.com>
4072 L:      linux-fbdev@vger.kernel.org
4073 S:      Maintained
4074 F:      drivers/video/fbdev/exynos/exynos_mipi*
4075 F:      include/video/exynos_mipi*
4076
4077 F71805F HARDWARE MONITORING DRIVER
4078 M:      Jean Delvare <jdelvare@suse.de>
4079 L:      lm-sensors@lm-sensors.org
4080 S:      Maintained
4081 F:      Documentation/hwmon/f71805f
4082 F:      drivers/hwmon/f71805f.c
4083
4084 FC0011 TUNER DRIVER
4085 M:      Michael Buesch <m@bues.ch>
4086 L:      linux-media@vger.kernel.org
4087 S:      Maintained
4088 F:      drivers/media/tuners/fc0011.h
4089 F:      drivers/media/tuners/fc0011.c
4090
4091 FC2580 MEDIA DRIVER
4092 M:      Antti Palosaari <crope@iki.fi>
4093 L:      linux-media@vger.kernel.org
4094 W:      http://linuxtv.org/
4095 W:      http://palosaari.fi/linux/
4096 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4097 T:      git git://linuxtv.org/anttip/media_tree.git
4098 S:      Maintained
4099 F:      drivers/media/tuners/fc2580*
4100
4101 FANOTIFY
4102 M:      Eric Paris <eparis@redhat.com>
4103 S:      Maintained
4104 F:      fs/notify/fanotify/
4105 F:      include/linux/fanotify.h
4106 F:      include/uapi/linux/fanotify.h
4107
4108 FARSYNC SYNCHRONOUS DRIVER
4109 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4110 W:      http://www.farsite.co.uk/
4111 S:      Supported
4112 F:      drivers/net/wan/farsync.*
4113
4114 FAULT INJECTION SUPPORT
4115 M:      Akinobu Mita <akinobu.mita@gmail.com>
4116 S:      Supported
4117 F:      Documentation/fault-injection/
4118 F:      lib/fault-inject.c
4119
4120 FBTFT Framebuffer drivers
4121 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4122 M:      Noralf Trønnes <noralf@tronnes.org>
4123 S:      Maintained
4124 F:      drivers/staging/fbtft/
4125
4126 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4127 M:      Vasu Dev <vasu.dev@intel.com>
4128 L:      fcoe-devel@open-fcoe.org
4129 W:      www.Open-FCoE.org
4130 S:      Supported
4131 F:      drivers/scsi/libfc/
4132 F:      drivers/scsi/fcoe/
4133 F:      include/scsi/fc/
4134 F:      include/scsi/libfc.h
4135 F:      include/scsi/libfcoe.h
4136 F:      include/uapi/scsi/fc/
4137
4138 FILE LOCKING (flock() and fcntl()/lockf())
4139 M:      Jeff Layton <jlayton@poochiereds.net>
4140 M:      "J. Bruce Fields" <bfields@fieldses.org>
4141 L:      linux-fsdevel@vger.kernel.org
4142 S:      Maintained
4143 F:      include/linux/fcntl.h
4144 F:      include/linux/fs.h
4145 F:      include/uapi/linux/fcntl.h
4146 F:      include/uapi/linux/fs.h
4147 F:      fs/fcntl.c
4148 F:      fs/locks.c
4149
4150 FILESYSTEMS (VFS and infrastructure)
4151 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4152 L:      linux-fsdevel@vger.kernel.org
4153 S:      Maintained
4154 F:      fs/*
4155
4156 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4157 M:      Riku Voipio <riku.voipio@iki.fi>
4158 L:      lm-sensors@lm-sensors.org
4159 S:      Maintained
4160 F:      drivers/hwmon/f75375s.c
4161 F:      include/linux/f75375s.h
4162
4163 FIREWIRE AUDIO DRIVERS
4164 M:      Clemens Ladisch <clemens@ladisch.de>
4165 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4166 T:      git git://git.alsa-project.org/alsa-kernel.git
4167 S:      Maintained
4168 F:      sound/firewire/
4169
4170 FIREWIRE MEDIA DRIVERS (firedtv)
4171 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4172 L:      linux-media@vger.kernel.org
4173 L:      linux1394-devel@lists.sourceforge.net
4174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4175 S:      Maintained
4176 F:      drivers/media/firewire/
4177
4178 FIREWIRE SBP-2 TARGET
4179 M:      Chris Boot <bootc@bootc.net>
4180 L:      linux-scsi@vger.kernel.org
4181 L:      target-devel@vger.kernel.org
4182 L:      linux1394-devel@lists.sourceforge.net
4183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4184 S:      Maintained
4185 F:      drivers/target/sbp/
4186
4187 FIREWIRE SUBSYSTEM
4188 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4189 L:      linux1394-devel@lists.sourceforge.net
4190 W:      http://ieee1394.wiki.kernel.org/
4191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4192 S:      Maintained
4193 F:      drivers/firewire/
4194 F:      include/linux/firewire.h
4195 F:      include/uapi/linux/firewire*.h
4196 F:      tools/firewire/
4197
4198 FIRMWARE LOADER (request_firmware)
4199 M:      Ming Lei <ming.lei@canonical.com>
4200 L:      linux-kernel@vger.kernel.org
4201 S:      Maintained
4202 F:      Documentation/firmware_class/
4203 F:      drivers/base/firmware*.c
4204 F:      include/linux/firmware.h
4205
4206 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4207 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4208 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4209 S:      Maintained
4210 F:      drivers/block/rsxx/
4211
4212 FLOPPY DRIVER
4213 M:      Jiri Kosina <jkosina@suse.cz>
4214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4215 S:      Odd fixes
4216 F:      drivers/block/floppy.c
4217
4218 FMC SUBSYSTEM
4219 M:      Alessandro Rubini <rubini@gnudd.com>
4220 W:      http://www.ohwr.org/projects/fmc-bus
4221 S:      Supported
4222 F:      drivers/fmc/
4223 F:      include/linux/fmc*.h
4224 F:      include/linux/ipmi-fru.h
4225 K:      fmc_d.*register
4226
4227 FPU EMULATOR
4228 M:      Bill Metzenthen <billm@melbpc.org.au>
4229 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4230 S:      Maintained
4231 F:      arch/x86/math-emu/
4232
4233 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4234 L:      netdev@vger.kernel.org
4235 S:      Orphan
4236 F:      drivers/net/wan/dlci.c
4237 F:      drivers/net/wan/sdla.c
4238
4239 FRAMEBUFFER LAYER
4240 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4241 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4242 L:      linux-fbdev@vger.kernel.org
4243 W:      http://linux-fbdev.sourceforge.net/
4244 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4246 S:      Maintained
4247 F:      Documentation/fb/
4248 F:      Documentation/devicetree/bindings/fb/
4249 F:      drivers/video/
4250 F:      include/video/
4251 F:      include/linux/fb.h
4252 F:      include/uapi/video/
4253 F:      include/uapi/linux/fb.h
4254
4255 FREESCALE DIU FRAMEBUFFER DRIVER
4256 M:      Timur Tabi <timur@tabi.org>
4257 L:      linux-fbdev@vger.kernel.org
4258 S:      Maintained
4259 F:      drivers/video/fbdev/fsl-diu-fb.*
4260
4261 FREESCALE DMA DRIVER
4262 M:      Li Yang <leoli@freescale.com>
4263 M:      Zhang Wei <zw@zh-kernel.org>
4264 L:      linuxppc-dev@lists.ozlabs.org
4265 S:      Maintained
4266 F:      drivers/dma/fsldma.*
4267
4268 FREESCALE I2C CPM DRIVER
4269 M:      Jochen Friedrich <jochen@scram.de>
4270 L:      linuxppc-dev@lists.ozlabs.org
4271 L:      linux-i2c@vger.kernel.org
4272 S:      Maintained
4273 F:      drivers/i2c/busses/i2c-cpm.c
4274
4275 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4276 M:      Sascha Hauer <kernel@pengutronix.de>
4277 L:      linux-fbdev@vger.kernel.org
4278 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4279 S:      Maintained
4280 F:      include/linux/platform_data/video-imxfb.h
4281 F:      drivers/video/fbdev/imxfb.c
4282
4283 FREESCALE QUAD SPI DRIVER
4284 M:      Han Xu <han.xu@freescale.com>
4285 L:      linux-mtd@lists.infradead.org
4286 S:      Maintained
4287 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4288
4289 FREESCALE SOC FS_ENET DRIVER
4290 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4291 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4292 L:      linuxppc-dev@lists.ozlabs.org
4293 L:      netdev@vger.kernel.org
4294 S:      Maintained
4295 F:      drivers/net/ethernet/freescale/fs_enet/
4296 F:      include/linux/fs_enet_pd.h
4297
4298 FREESCALE QUICC ENGINE LIBRARY
4299 L:      linuxppc-dev@lists.ozlabs.org
4300 S:      Orphan
4301 F:      arch/powerpc/sysdev/qe_lib/
4302 F:      arch/powerpc/include/asm/*qe.h
4303
4304 FREESCALE USB PERIPHERAL DRIVERS
4305 M:      Li Yang <leoli@freescale.com>
4306 L:      linux-usb@vger.kernel.org
4307 L:      linuxppc-dev@lists.ozlabs.org
4308 S:      Maintained
4309 F:      drivers/usb/gadget/udc/fsl*
4310
4311 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4312 M:      Li Yang <leoli@freescale.com>
4313 L:      netdev@vger.kernel.org
4314 L:      linuxppc-dev@lists.ozlabs.org
4315 S:      Maintained
4316 F:      drivers/net/ethernet/freescale/ucc_geth*
4317
4318 FREESCALE QUICC ENGINE UCC UART DRIVER
4319 M:      Timur Tabi <timur@tabi.org>
4320 L:      linuxppc-dev@lists.ozlabs.org
4321 S:      Maintained
4322 F:      drivers/tty/serial/ucc_uart.c
4323
4324 FREESCALE SOC SOUND DRIVERS
4325 M:      Timur Tabi <timur@tabi.org>
4326 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4327 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4328 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4329 L:      linuxppc-dev@lists.ozlabs.org
4330 S:      Maintained
4331 F:      sound/soc/fsl/fsl*
4332 F:      sound/soc/fsl/imx*
4333 F:      sound/soc/fsl/mpc8610_hpcd.c
4334
4335 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4336 M:      "J. German Rivera" <German.Rivera@freescale.com>
4337 L:      linux-kernel@vger.kernel.org
4338 S:      Maintained
4339 F:      drivers/staging/fsl-mc/
4340
4341 FREEVXFS FILESYSTEM
4342 M:      Christoph Hellwig <hch@infradead.org>
4343 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4344 S:      Maintained
4345 F:      fs/freevxfs/
4346
4347 FREEZER
4348 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4349 M:      Pavel Machek <pavel@ucw.cz>
4350 L:      linux-pm@vger.kernel.org
4351 S:      Supported
4352 F:      Documentation/power/freezing-of-tasks.txt
4353 F:      include/linux/freezer.h
4354 F:      kernel/freezer.c
4355
4356 FRONTSWAP API
4357 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4358 L:      linux-kernel@vger.kernel.org
4359 S:      Maintained
4360 F:      mm/frontswap.c
4361 F:      include/linux/frontswap.h
4362
4363 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4364 M:      David Howells <dhowells@redhat.com>
4365 L:      linux-cachefs@redhat.com
4366 S:      Supported
4367 F:      Documentation/filesystems/caching/
4368 F:      fs/fscache/
4369 F:      include/linux/fscache*.h
4370
4371 F2FS FILE SYSTEM
4372 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4373 M:      Changman Lee <cm224.lee@samsung.com>
4374 L:      linux-f2fs-devel@lists.sourceforge.net
4375 W:      http://en.wikipedia.org/wiki/F2FS
4376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4377 S:      Maintained
4378 F:      Documentation/filesystems/f2fs.txt
4379 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4380 F:      fs/f2fs/
4381 F:      include/linux/f2fs_fs.h
4382
4383 FUJITSU FR-V (FRV) PORT
4384 M:      David Howells <dhowells@redhat.com>
4385 S:      Maintained
4386 F:      arch/frv/
4387
4388 FUJITSU LAPTOP EXTRAS
4389 M:      Jonathan Woithe <jwoithe@just42.net>
4390 L:      platform-driver-x86@vger.kernel.org
4391 S:      Maintained
4392 F:      drivers/platform/x86/fujitsu-laptop.c
4393
4394 FUJITSU M-5MO LS CAMERA ISP DRIVER
4395 M:      Kyungmin Park <kyungmin.park@samsung.com>
4396 M:      Heungjun Kim <riverful.kim@samsung.com>
4397 L:      linux-media@vger.kernel.org
4398 S:      Maintained
4399 F:      drivers/media/i2c/m5mols/
4400 F:      include/media/m5mols.h
4401
4402 FUJITSU TABLET EXTRAS
4403 M:      Robert Gerlach <khnz@gmx.de>
4404 L:      platform-driver-x86@vger.kernel.org
4405 S:      Maintained
4406 F:      drivers/platform/x86/fujitsu-tablet.c
4407
4408 FUSE: FILESYSTEM IN USERSPACE
4409 M:      Miklos Szeredi <miklos@szeredi.hu>
4410 L:      fuse-devel@lists.sourceforge.net
4411 W:      http://fuse.sourceforge.net/
4412 S:      Maintained
4413 F:      fs/fuse/
4414 F:      include/uapi/linux/fuse.h
4415
4416 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4417 M:      Rik Faith <faith@cs.unc.edu>
4418 L:      linux-scsi@vger.kernel.org
4419 S:      Odd Fixes (e.g., new signatures)
4420 F:      drivers/scsi/fdomain.*
4421
4422 GCOV BASED KERNEL PROFILING
4423 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4424 S:      Maintained
4425 F:      kernel/gcov/
4426 F:      Documentation/gcov.txt
4427
4428 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4429 M:      Achim Leubner <achim_leubner@adaptec.com>
4430 L:      linux-scsi@vger.kernel.org
4431 W:      http://www.icp-vortex.com/
4432 S:      Supported
4433 F:      drivers/scsi/gdt*
4434
4435 GDB KERNEL DEBUGGING HELPER SCRIPTS
4436 M:      Jan Kiszka <jan.kiszka@siemens.com>
4437 S:      Supported
4438 F:      scripts/gdb/
4439
4440 GEMTEK FM RADIO RECEIVER DRIVER
4441 M:      Hans Verkuil <hverkuil@xs4all.nl>
4442 L:      linux-media@vger.kernel.org
4443 T:      git git://linuxtv.org/media_tree.git
4444 W:      http://linuxtv.org
4445 S:      Maintained
4446 F:      drivers/media/radio/radio-gemtek*
4447
4448 GENERIC GPIO I2C DRIVER
4449 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4450 S:      Supported
4451 F:      drivers/i2c/busses/i2c-gpio.c
4452 F:      include/linux/i2c-gpio.h
4453
4454 GENERIC GPIO I2C MULTIPLEXER DRIVER
4455 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4456 L:      linux-i2c@vger.kernel.org
4457 S:      Supported
4458 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4459 F:      include/linux/i2c-mux-gpio.h
4460 F:      Documentation/i2c/muxes/i2c-mux-gpio
4461
4462 GENERIC HDLC (WAN) DRIVERS
4463 M:      Krzysztof Halasa <khc@pm.waw.pl>
4464 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4465 S:      Maintained
4466 F:      drivers/net/wan/c101.c
4467 F:      drivers/net/wan/hd6457*
4468 F:      drivers/net/wan/hdlc*
4469 F:      drivers/net/wan/n2.c
4470 F:      drivers/net/wan/pc300too.c
4471 F:      drivers/net/wan/pci200syn.c
4472 F:      drivers/net/wan/wanxl*
4473
4474 GENERIC INCLUDE/ASM HEADER FILES
4475 M:      Arnd Bergmann <arnd@arndb.de>
4476 L:      linux-arch@vger.kernel.org
4477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4478 S:      Maintained
4479 F:      include/asm-generic/
4480 F:      include/uapi/asm-generic/
4481
4482 GENERIC PHY FRAMEWORK
4483 M:      Kishon Vijay Abraham I <kishon@ti.com>
4484 L:      linux-kernel@vger.kernel.org
4485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4486 S:      Supported
4487 F:      drivers/phy/
4488 F:      include/linux/phy/
4489
4490 GENERIC PM DOMAINS
4491 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4492 M:      Kevin Hilman <khilman@kernel.org>
4493 M:      Ulf Hansson <ulf.hansson@linaro.org>
4494 L:      linux-pm@vger.kernel.org
4495 S:      Supported
4496 F:      drivers/base/power/domain*.c
4497 F:      include/linux/pm_domain.h
4498
4499 GENERIC UIO DRIVER FOR PCI DEVICES
4500 M:      "Michael S. Tsirkin" <mst@redhat.com>
4501 L:      kvm@vger.kernel.org
4502 S:      Supported
4503 F:      drivers/uio/uio_pci_generic.c
4504
4505 GET_MAINTAINER SCRIPT
4506 M:      Joe Perches <joe@perches.com>
4507 S:      Maintained
4508 F:      scripts/get_maintainer.pl
4509
4510 GFS2 FILE SYSTEM
4511 M:      Steven Whitehouse <swhiteho@redhat.com>
4512 M:      Bob Peterson <rpeterso@redhat.com>
4513 L:      cluster-devel@redhat.com
4514 W:      http://sources.redhat.com/cluster/
4515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4516 S:      Supported
4517 F:      Documentation/filesystems/gfs2*.txt
4518 F:      fs/gfs2/
4519 F:      include/uapi/linux/gfs2_ondisk.h
4520
4521 GIGASET ISDN DRIVERS
4522 M:      Paul Bolle <pebolle@tiscali.nl>
4523 L:      gigaset307x-common@lists.sourceforge.net
4524 W:      http://gigaset307x.sourceforge.net/
4525 S:      Odd Fixes
4526 F:      Documentation/isdn/README.gigaset
4527 F:      drivers/isdn/gigaset/
4528 F:      include/uapi/linux/gigaset_dev.h
4529
4530 GO7007 MPEG CODEC
4531 M:      Hans Verkuil <hans.verkuil@cisco.com>
4532 L:      linux-media@vger.kernel.org
4533 S:      Maintained
4534 F:      drivers/media/usb/go7007/
4535
4536 GOODIX TOUCHSCREEN
4537 M:      Bastien Nocera <hadess@hadess.net>
4538 L:      linux-input@vger.kernel.org
4539 S:      Maintained
4540 F:      drivers/input/touchscreen/goodix.c
4541
4542 GPIO SUBSYSTEM
4543 M:      Linus Walleij <linus.walleij@linaro.org>
4544 M:      Alexandre Courbot <gnurou@gmail.com>
4545 L:      linux-gpio@vger.kernel.org
4546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4547 S:      Maintained
4548 F:      Documentation/gpio/
4549 F:      drivers/gpio/
4550 F:      include/linux/gpio/
4551 F:      include/linux/gpio.h
4552 F:      include/asm-generic/gpio.h
4553
4554 GRE DEMULTIPLEXER DRIVER
4555 M:      Dmitry Kozlov <xeb@mail.ru>
4556 L:      netdev@vger.kernel.org
4557 S:      Maintained
4558 F:      net/ipv4/gre_demux.c
4559 F:      net/ipv4/gre_offload.c
4560 F:      include/net/gre.h
4561
4562 GRETH 10/100/1G Ethernet MAC device driver
4563 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4564 L:      netdev@vger.kernel.org
4565 S:      Maintained
4566 F:      drivers/net/ethernet/aeroflex/
4567
4568 GSPCA FINEPIX SUBDRIVER
4569 M:      Frank Zago <frank@zago.net>
4570 L:      linux-media@vger.kernel.org
4571 T:      git git://linuxtv.org/media_tree.git
4572 S:      Maintained
4573 F:      drivers/media/usb/gspca/finepix.c
4574
4575 GSPCA GL860 SUBDRIVER
4576 M:      Olivier Lorin <o.lorin@laposte.net>
4577 L:      linux-media@vger.kernel.org
4578 T:      git git://linuxtv.org/media_tree.git
4579 S:      Maintained
4580 F:      drivers/media/usb/gspca/gl860/
4581
4582 GSPCA M5602 SUBDRIVER
4583 M:      Erik Andren <erik.andren@gmail.com>
4584 L:      linux-media@vger.kernel.org
4585 T:      git git://linuxtv.org/media_tree.git
4586 S:      Maintained
4587 F:      drivers/media/usb/gspca/m5602/
4588
4589 GSPCA PAC207 SONIXB SUBDRIVER
4590 M:      Hans de Goede <hdegoede@redhat.com>
4591 L:      linux-media@vger.kernel.org
4592 T:      git git://linuxtv.org/media_tree.git
4593 S:      Maintained
4594 F:      drivers/media/usb/gspca/pac207.c
4595
4596 GSPCA SN9C20X SUBDRIVER
4597 M:      Brian Johnson <brijohn@gmail.com>
4598 L:      linux-media@vger.kernel.org
4599 T:      git git://linuxtv.org/media_tree.git
4600 S:      Maintained
4601 F:      drivers/media/usb/gspca/sn9c20x.c
4602
4603 GSPCA T613 SUBDRIVER
4604 M:      Leandro Costantino <lcostantino@gmail.com>
4605 L:      linux-media@vger.kernel.org
4606 T:      git git://linuxtv.org/media_tree.git
4607 S:      Maintained
4608 F:      drivers/media/usb/gspca/t613.c
4609
4610 GSPCA USB WEBCAM DRIVER
4611 M:      Hans de Goede <hdegoede@redhat.com>
4612 L:      linux-media@vger.kernel.org
4613 T:      git git://linuxtv.org/media_tree.git
4614 S:      Maintained
4615 F:      drivers/media/usb/gspca/
4616
4617 GUID PARTITION TABLE (GPT)
4618 M:      Davidlohr Bueso <dave@stgolabs.net>
4619 L:      linux-efi@vger.kernel.org
4620 S:      Maintained
4621 F:      block/partitions/efi.*
4622
4623 STK1160 USB VIDEO CAPTURE DRIVER
4624 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4625 L:      linux-media@vger.kernel.org
4626 T:      git git://linuxtv.org/media_tree.git
4627 S:      Maintained
4628 F:      drivers/media/usb/stk1160/
4629
4630 H8/300 ARCHITECTURE
4631 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4632 L:      uclinux-h8-devel@lists.sourceforge.jp
4633 W:      http://uclinux-h8.sourceforge.jp
4634 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4635 S:      Maintained
4636 F:      arch/h8300/
4637 F:      drivers/clocksource/h8300_*.c
4638 F:      drivers/clk/h8300/
4639 F:      drivers/irqchip/irq-renesas-h8*.c
4640
4641 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4642 M:      Frank Seidel <frank@f-seidel.de>
4643 L:      platform-driver-x86@vger.kernel.org
4644 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4645 S:      Maintained
4646 F:      drivers/platform/x86/hdaps.c
4647
4648 HDPVR USB VIDEO ENCODER DRIVER
4649 M:      Hans Verkuil <hverkuil@xs4all.nl>
4650 L:      linux-media@vger.kernel.org
4651 T:      git git://linuxtv.org/media_tree.git
4652 W:      http://linuxtv.org
4653 S:      Odd Fixes
4654 F:      drivers/media/usb/hdpvr/
4655
4656 HWPOISON MEMORY FAILURE HANDLING
4657 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4658 L:      linux-mm@kvack.org
4659 S:      Maintained
4660 F:      mm/memory-failure.c
4661 F:      mm/hwpoison-inject.c
4662
4663 HYPERVISOR VIRTUAL CONSOLE DRIVER
4664 L:      linuxppc-dev@lists.ozlabs.org
4665 S:      Odd Fixes
4666 F:      drivers/tty/hvc/
4667
4668 HACKRF MEDIA DRIVER
4669 M:      Antti Palosaari <crope@iki.fi>
4670 L:      linux-media@vger.kernel.org
4671 W:      http://linuxtv.org/
4672 W:      http://palosaari.fi/linux/
4673 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4674 T:      git git://linuxtv.org/anttip/media_tree.git
4675 S:      Maintained
4676 F:      drivers/media/usb/hackrf/
4677
4678 HARDWARE MONITORING
4679 M:      Jean Delvare <jdelvare@suse.de>
4680 M:      Guenter Roeck <linux@roeck-us.net>
4681 L:      lm-sensors@lm-sensors.org
4682 W:      http://www.lm-sensors.org/
4683 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4685 S:      Maintained
4686 F:      Documentation/hwmon/
4687 F:      drivers/hwmon/
4688 F:      include/linux/hwmon*.h
4689
4690 HARDWARE RANDOM NUMBER GENERATOR CORE
4691 M:      Matt Mackall <mpm@selenic.com>
4692 M:      Herbert Xu <herbert@gondor.apana.org.au>
4693 L:      linux-crypto@vger.kernel.org
4694 S:      Odd fixes
4695 F:      Documentation/hw_random.txt
4696 F:      drivers/char/hw_random/
4697 F:      include/linux/hw_random.h
4698
4699 HARDWARE SPINLOCK CORE
4700 M:      Ohad Ben-Cohen <ohad@wizery.com>
4701 S:      Maintained
4702 F:      Documentation/hwspinlock.txt
4703 F:      drivers/hwspinlock/hwspinlock_*
4704 F:      include/linux/hwspinlock.h
4705
4706 HARMONY SOUND DRIVER
4707 L:      linux-parisc@vger.kernel.org
4708 S:      Maintained
4709 F:      sound/parisc/harmony.*
4710
4711 HD29L2 MEDIA DRIVER
4712 M:      Antti Palosaari <crope@iki.fi>
4713 L:      linux-media@vger.kernel.org
4714 W:      http://linuxtv.org/
4715 W:      http://palosaari.fi/linux/
4716 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4717 T:      git git://linuxtv.org/anttip/media_tree.git
4718 S:      Maintained
4719 F:      drivers/media/dvb-frontends/hd29l2*
4720
4721 HEWLETT-PACKARD SMART2 RAID DRIVER
4722 L:      iss_storagedev@hp.com
4723 S:      Orphan
4724 F:      Documentation/blockdev/cpqarray.txt
4725 F:      drivers/block/cpqarray.*
4726
4727 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4728 M:      Don Brace <don.brace@pmcs.com>
4729 L:      iss_storagedev@hp.com
4730 L:      storagedev@pmcs.com
4731 L:      linux-scsi@vger.kernel.org
4732 S:      Supported
4733 F:      Documentation/scsi/hpsa.txt
4734 F:      drivers/scsi/hpsa*.[ch]
4735 F:      include/linux/cciss*.h
4736 F:      include/uapi/linux/cciss*.h
4737
4738 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4739 M:      Don Brace <don.brace@pmcs.com>
4740 L:      iss_storagedev@hp.com
4741 L:      storagedev@pmcs.com
4742 L:      linux-scsi@vger.kernel.org
4743 S:      Supported
4744 F:      Documentation/blockdev/cciss.txt
4745 F:      drivers/block/cciss*
4746 F:      include/linux/cciss_ioctl.h
4747 F:      include/uapi/linux/cciss_ioctl.h
4748
4749 HFS FILESYSTEM
4750 L:      linux-fsdevel@vger.kernel.org
4751 S:      Orphan
4752 F:      Documentation/filesystems/hfs.txt
4753 F:      fs/hfs/
4754
4755 HFSPLUS FILESYSTEM
4756 L:      linux-fsdevel@vger.kernel.org
4757 S:      Orphan
4758 F:      Documentation/filesystems/hfsplus.txt
4759 F:      fs/hfsplus/
4760
4761 HGA FRAMEBUFFER DRIVER
4762 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4763 L:      linux-nvidia@lists.surfsouth.com
4764 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4765 S:      Maintained
4766 F:      drivers/video/fbdev/hgafb.c
4767
4768 HIBERNATION (aka Software Suspend, aka swsusp)
4769 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4770 M:      Pavel Machek <pavel@ucw.cz>
4771 L:      linux-pm@vger.kernel.org
4772 S:      Supported
4773 F:      arch/x86/power/
4774 F:      drivers/base/power/
4775 F:      kernel/power/
4776 F:      include/linux/suspend.h
4777 F:      include/linux/freezer.h
4778 F:      include/linux/pm.h
4779 F:      arch/*/include/asm/suspend*.h
4780
4781 HID CORE LAYER
4782 M:      Jiri Kosina <jkosina@suse.cz>
4783 L:      linux-input@vger.kernel.org
4784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4785 S:      Maintained
4786 F:      drivers/hid/
4787 F:      include/linux/hid*
4788 F:      include/uapi/linux/hid*
4789
4790 HID SENSOR HUB DRIVERS
4791 M:      Jiri Kosina <jkosina@suse.cz>
4792 M:      Jonathan Cameron <jic23@kernel.org>
4793 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4794 L:      linux-input@vger.kernel.org
4795 L:      linux-iio@vger.kernel.org
4796 S:      Maintained
4797 F:      Documentation/hid/hid-sensor*
4798 F:      drivers/hid/hid-sensor-*
4799 F:      drivers/iio/*/hid-*
4800 F:      include/linux/hid-sensor-*
4801
4802 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4803 M:      Thomas Gleixner <tglx@linutronix.de>
4804 L:      linux-kernel@vger.kernel.org
4805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4806 S:      Maintained
4807 F:      Documentation/timers/
4808 F:      kernel/time/hrtimer.c
4809 F:      kernel/time/clockevents.c
4810 F:      kernel/time/tick*.*
4811 F:      kernel/time/timer_*.c
4812 F:      include/linux/clockchips.h
4813 F:      include/linux/hrtimer.h
4814
4815 HIGH-SPEED SCC DRIVER FOR AX.25
4816 L:      linux-hams@vger.kernel.org
4817 S:      Orphan
4818 F:      drivers/net/hamradio/dmascc.c
4819 F:      drivers/net/hamradio/scc.c
4820
4821 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4822 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4823 W:      http://www.highpoint-tech.com
4824 S:      Supported
4825 F:      Documentation/scsi/hptiop.txt
4826 F:      drivers/scsi/hptiop.c
4827
4828 HIPPI
4829 M:      Jes Sorensen <jes@trained-monkey.org>
4830 L:      linux-hippi@sunsite.dk
4831 S:      Maintained
4832 F:      include/linux/hippidevice.h
4833 F:      include/uapi/linux/if_hippi.h
4834 F:      net/802/hippi.c
4835 F:      drivers/net/hippi/
4836
4837 HOST AP DRIVER
4838 M:      Jouni Malinen <j@w1.fi>
4839 L:      hostap@shmoo.com (subscribers-only)
4840 L:      linux-wireless@vger.kernel.org
4841 W:      http://hostap.epitest.fi/
4842 S:      Maintained
4843 F:      drivers/net/wireless/hostap/
4844
4845 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4846 L:      platform-driver-x86@vger.kernel.org
4847 S:      Orphan
4848 F:      drivers/platform/x86/tc1100-wmi.c
4849
4850 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4851 M:      Jaroslav Kysela <perex@perex.cz>
4852 S:      Maintained
4853 F:      drivers/net/ethernet/hp/hp100.*
4854
4855 HPET:   High Precision Event Timers driver
4856 M:      Clemens Ladisch <clemens@ladisch.de>
4857 S:      Maintained
4858 F:      Documentation/timers/hpet.txt
4859 F:      drivers/char/hpet.c
4860 F:      include/linux/hpet.h
4861 F:      include/uapi/linux/hpet.h
4862
4863 HPET:   x86
4864 S:      Orphan
4865 F:      arch/x86/kernel/hpet.c
4866 F:      arch/x86/include/asm/hpet.h
4867
4868 HPFS FILESYSTEM
4869 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4870 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4871 S:      Maintained
4872 F:      fs/hpfs/
4873
4874 HSI SUBSYSTEM
4875 M:      Sebastian Reichel <sre@kernel.org>
4876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4877 S:      Maintained
4878 F:      Documentation/ABI/testing/sysfs-bus-hsi
4879 F:      Documentation/hsi.txt
4880 F:      drivers/hsi/
4881 F:      include/linux/hsi/
4882 F:      include/uapi/linux/hsi/
4883
4884 HSO 3G MODEM DRIVER
4885 M:      Jan Dumon <j.dumon@option.com>
4886 W:      http://www.pharscape.org
4887 S:      Maintained
4888 F:      drivers/net/usb/hso.c
4889
4890 HSR NETWORK PROTOCOL
4891 M:      Arvid Brodin <arvid.brodin@alten.se>
4892 L:      netdev@vger.kernel.org
4893 S:      Maintained
4894 F:      net/hsr/
4895
4896 HTCPEN TOUCHSCREEN DRIVER
4897 M:      Pau Oliva Fora <pof@eslack.org>
4898 L:      linux-input@vger.kernel.org
4899 S:      Maintained
4900 F:      drivers/input/touchscreen/htcpen.c
4901
4902 HUGETLB FILESYSTEM
4903 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
4904 S:      Maintained
4905 F:      fs/hugetlbfs/
4906
4907 Hyper-V CORE AND DRIVERS
4908 M:      "K. Y. Srinivasan" <kys@microsoft.com>
4909 M:      Haiyang Zhang <haiyangz@microsoft.com>
4910 L:      devel@linuxdriverproject.org
4911 S:      Maintained
4912 F:      arch/x86/include/asm/mshyperv.h
4913 F:      arch/x86/include/uapi/asm/hyperv.h
4914 F:      arch/x86/kernel/cpu/mshyperv.c
4915 F:      drivers/hid/hid-hyperv.c
4916 F:      drivers/hv/
4917 F:      drivers/input/serio/hyperv-keyboard.c
4918 F:      drivers/net/hyperv/
4919 F:      drivers/scsi/storvsc_drv.c
4920 F:      drivers/video/fbdev/hyperv_fb.c
4921 F:      include/linux/hyperv.h
4922 F:      tools/hv/
4923
4924 I2C OVER PARALLEL PORT
4925 M:      Jean Delvare <jdelvare@suse.de>
4926 L:      linux-i2c@vger.kernel.org
4927 S:      Maintained
4928 F:      Documentation/i2c/busses/i2c-parport
4929 F:      Documentation/i2c/busses/i2c-parport-light
4930 F:      drivers/i2c/busses/i2c-parport.c
4931 F:      drivers/i2c/busses/i2c-parport-light.c
4932
4933 I2C/SMBUS CONTROLLER DRIVERS FOR PC
4934 M:      Jean Delvare <jdelvare@suse.de>
4935 L:      linux-i2c@vger.kernel.org
4936 S:      Maintained
4937 F:      Documentation/i2c/busses/i2c-ali1535
4938 F:      Documentation/i2c/busses/i2c-ali1563
4939 F:      Documentation/i2c/busses/i2c-ali15x3
4940 F:      Documentation/i2c/busses/i2c-amd756
4941 F:      Documentation/i2c/busses/i2c-amd8111
4942 F:      Documentation/i2c/busses/i2c-i801
4943 F:      Documentation/i2c/busses/i2c-nforce2
4944 F:      Documentation/i2c/busses/i2c-piix4
4945 F:      Documentation/i2c/busses/i2c-sis5595
4946 F:      Documentation/i2c/busses/i2c-sis630
4947 F:      Documentation/i2c/busses/i2c-sis96x
4948 F:      Documentation/i2c/busses/i2c-via
4949 F:      Documentation/i2c/busses/i2c-viapro
4950 F:      drivers/i2c/busses/i2c-ali1535.c
4951 F:      drivers/i2c/busses/i2c-ali1563.c
4952 F:      drivers/i2c/busses/i2c-ali15x3.c
4953 F:      drivers/i2c/busses/i2c-amd756.c
4954 F:      drivers/i2c/busses/i2c-amd756-s4882.c
4955 F:      drivers/i2c/busses/i2c-amd8111.c
4956 F:      drivers/i2c/busses/i2c-i801.c
4957 F:      drivers/i2c/busses/i2c-isch.c
4958 F:      drivers/i2c/busses/i2c-nforce2.c
4959 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
4960 F:      drivers/i2c/busses/i2c-piix4.c
4961 F:      drivers/i2c/busses/i2c-sis5595.c
4962 F:      drivers/i2c/busses/i2c-sis630.c
4963 F:      drivers/i2c/busses/i2c-sis96x.c
4964 F:      drivers/i2c/busses/i2c-via.c
4965 F:      drivers/i2c/busses/i2c-viapro.c
4966
4967 I2C/SMBUS ISMT DRIVER
4968 M:      Seth Heasley <seth.heasley@intel.com>
4969 M:      Neil Horman <nhorman@tuxdriver.com>
4970 L:      linux-i2c@vger.kernel.org
4971 F:      drivers/i2c/busses/i2c-ismt.c
4972 F:      Documentation/i2c/busses/i2c-ismt
4973
4974 I2C/SMBUS STUB DRIVER
4975 M:      Jean Delvare <jdelvare@suse.de>
4976 L:      linux-i2c@vger.kernel.org
4977 S:      Maintained
4978 F:      drivers/i2c/i2c-stub.c
4979
4980 I2C SUBSYSTEM
4981 M:      Wolfram Sang <wsa@the-dreams.de>
4982 L:      linux-i2c@vger.kernel.org
4983 W:      https://i2c.wiki.kernel.org/
4984 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
4985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
4986 S:      Maintained
4987 F:      Documentation/devicetree/bindings/i2c/
4988 F:      Documentation/i2c/
4989 F:      drivers/i2c/
4990 F:      include/linux/i2c.h
4991 F:      include/linux/i2c-*.h
4992 F:      include/uapi/linux/i2c.h
4993 F:      include/uapi/linux/i2c-*.h
4994
4995 I2C ACPI SUPPORT
4996 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
4997 L:      linux-i2c@vger.kernel.org
4998 L:      linux-acpi@vger.kernel.org
4999 S:      Maintained
5000
5001 I2C-TAOS-EVM DRIVER
5002 M:      Jean Delvare <jdelvare@suse.de>
5003 L:      linux-i2c@vger.kernel.org
5004 S:      Maintained
5005 F:      Documentation/i2c/busses/i2c-taos-evm
5006 F:      drivers/i2c/busses/i2c-taos-evm.c
5007
5008 I2C-TINY-USB DRIVER
5009 M:      Till Harbaum <till@harbaum.org>
5010 L:      linux-i2c@vger.kernel.org
5011 W:      http://www.harbaum.org/till/i2c_tiny_usb
5012 S:      Maintained
5013 F:      drivers/i2c/busses/i2c-tiny-usb.c
5014
5015 i386 BOOT CODE
5016 M:      "H. Peter Anvin" <hpa@zytor.com>
5017 S:      Maintained
5018 F:      arch/x86/boot/
5019
5020 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5021 M:      "H. Peter Anvin" <hpa@zytor.com>
5022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5023 S:      Maintained
5024
5025 IA64 (Itanium) PLATFORM
5026 M:      Tony Luck <tony.luck@intel.com>
5027 M:      Fenghua Yu <fenghua.yu@intel.com>
5028 L:      linux-ia64@vger.kernel.org
5029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5030 S:      Maintained
5031 F:      arch/ia64/
5032
5033 IBM Power in-Nest Crypto Acceleration
5034 M:      Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
5035 M:      Fionnuala Gunter <fin@linux.vnet.ibm.com>
5036 L:      linux-crypto@vger.kernel.org
5037 S:      Supported
5038 F:      drivers/crypto/nx/Makefile
5039 F:      drivers/crypto/nx/Kconfig
5040 F:      drivers/crypto/nx/nx-aes*
5041 F:      drivers/crypto/nx/nx-sha*
5042 F:      drivers/crypto/nx/nx.*
5043 F:      drivers/crypto/nx/nx_csbcpb.h
5044 F:      drivers/crypto/nx/nx_debugfs.h
5045
5046 IBM Power 842 compression accelerator
5047 M:      Dan Streetman <ddstreet@us.ibm.com>
5048 S:      Supported
5049 F:      drivers/crypto/nx/Makefile
5050 F:      drivers/crypto/nx/Kconfig
5051 F:      drivers/crypto/nx/nx-842*
5052 F:      include/linux/sw842.h
5053 F:      crypto/842.c
5054 F:      lib/842/
5055
5056 IBM Power Linux RAID adapter
5057 M:      Brian King <brking@us.ibm.com>
5058 S:      Supported
5059 F:      drivers/scsi/ipr.*
5060
5061 IBM Power Virtual Ethernet Device Driver
5062 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5063 L:      netdev@vger.kernel.org
5064 S:      Supported
5065 F:      drivers/net/ethernet/ibm/ibmveth.*
5066
5067 IBM Power Virtual SCSI Device Drivers
5068 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5069 L:      linux-scsi@vger.kernel.org
5070 S:      Supported
5071 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5072 F:      drivers/scsi/ibmvscsi/viosrp.h
5073
5074 IBM Power Virtual FC Device Drivers
5075 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5076 L:      linux-scsi@vger.kernel.org
5077 S:      Supported
5078 F:      drivers/scsi/ibmvscsi/ibmvfc*
5079
5080 IBM ServeRAID RAID DRIVER
5081 S:      Orphan
5082 F:      drivers/scsi/ips.*
5083
5084 ICH LPC AND GPIO DRIVER
5085 M:      Peter Tyser <ptyser@xes-inc.com>
5086 S:      Maintained
5087 F:      drivers/mfd/lpc_ich.c
5088 F:      drivers/gpio/gpio-ich.c
5089
5090 IDE SUBSYSTEM
5091 M:      "David S. Miller" <davem@davemloft.net>
5092 L:      linux-ide@vger.kernel.org
5093 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5095 S:      Maintained
5096 F:      Documentation/ide/
5097 F:      drivers/ide/
5098 F:      include/linux/ide.h
5099
5100 IDEAPAD LAPTOP EXTRAS DRIVER
5101 M:      Ike Panhc <ike.pan@canonical.com>
5102 L:      platform-driver-x86@vger.kernel.org
5103 W:      http://launchpad.net/ideapad-laptop
5104 S:      Maintained
5105 F:      drivers/platform/x86/ideapad-laptop.c
5106
5107 IDEAPAD LAPTOP SLIDEBAR DRIVER
5108 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5109 L:      linux-input@vger.kernel.org
5110 W:      https://github.com/o2genum/ideapad-slidebar
5111 S:      Maintained
5112 F:      drivers/input/misc/ideapad_slidebar.c
5113
5114 IDE/ATAPI DRIVERS
5115 M:      Borislav Petkov <bp@alien8.de>
5116 L:      linux-ide@vger.kernel.org
5117 S:      Maintained
5118 F:      Documentation/cdrom/ide-cd
5119 F:      drivers/ide/ide-cd*
5120
5121 IDLE-I7300
5122 M:      Andy Henroid <andrew.d.henroid@intel.com>
5123 L:      linux-pm@vger.kernel.org
5124 S:      Supported
5125 F:      drivers/idle/i7300_idle.c
5126
5127 IEEE 802.15.4 SUBSYSTEM
5128 M:      Alexander Aring <alex.aring@gmail.com>
5129 L:      linux-wpan@vger.kernel.org
5130 W:      https://github.com/linux-wpan
5131 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5132 S:      Maintained
5133 F:      net/ieee802154/
5134 F:      net/mac802154/
5135 F:      drivers/net/ieee802154/
5136 F:      include/linux/nl802154.h
5137 F:      include/linux/ieee802154.h
5138 F:      include/net/nl802154.h
5139 F:      include/net/mac802154.h
5140 F:      include/net/af_ieee802154.h
5141 F:      include/net/cfg802154.h
5142 F:      include/net/ieee802154_netdev.h
5143 F:      Documentation/networking/ieee802154.txt
5144
5145 IGORPLUG-USB IR RECEIVER
5146 M:      Sean Young <sean@mess.org>
5147 L:      linux-media@vger.kernel.org
5148 S:      Maintained
5149 F:      drivers/media/rc/igorplugusb.c
5150
5151 IGUANAWORKS USB IR TRANSCEIVER
5152 M:      Sean Young <sean@mess.org>
5153 L:      linux-media@vger.kernel.org
5154 S:      Maintained
5155 F:      drivers/media/rc/iguanair.c
5156
5157 IIO SUBSYSTEM AND DRIVERS
5158 M:      Jonathan Cameron <jic23@kernel.org>
5159 R:      Hartmut Knaack <knaack.h@gmx.de>
5160 R:      Lars-Peter Clausen <lars@metafoo.de>
5161 R:      Peter Meerwald <pmeerw@pmeerw.net>
5162 L:      linux-iio@vger.kernel.org
5163 S:      Maintained
5164 F:      drivers/iio/
5165 F:      drivers/staging/iio/
5166 F:      include/linux/iio/
5167 F:      tools/iio/
5168
5169 IKANOS/ADI EAGLE ADSL USB DRIVER
5170 M:      Matthieu Castet <castet.matthieu@free.fr>
5171 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5172 S:      Maintained
5173 F:      drivers/usb/atm/ueagle-atm.c
5174
5175 INA209 HARDWARE MONITOR DRIVER
5176 M:      Guenter Roeck <linux@roeck-us.net>
5177 L:      lm-sensors@lm-sensors.org
5178 S:      Maintained
5179 F:      Documentation/hwmon/ina209
5180 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5181 F:      drivers/hwmon/ina209.c
5182
5183 INA2XX HARDWARE MONITOR DRIVER
5184 M:      Guenter Roeck <linux@roeck-us.net>
5185 L:      lm-sensors@lm-sensors.org
5186 S:      Maintained
5187 F:      Documentation/hwmon/ina2xx
5188 F:      drivers/hwmon/ina2xx.c
5189 F:      include/linux/platform_data/ina2xx.h
5190
5191 INDUSTRY PACK SUBSYSTEM (IPACK)
5192 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5193 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5194 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5195 L:      industrypack-devel@lists.sourceforge.net
5196 W:      http://industrypack.sourceforge.net
5197 S:      Maintained
5198 F:      drivers/ipack/
5199
5200 INGENIC JZ4780 DMA Driver
5201 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5202 S:      Maintained
5203 F:      drivers/dma/dma-jz4780.c
5204
5205 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5206 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5207 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5208 L:      linux-ima-devel@lists.sourceforge.net
5209 L:      linux-ima-user@lists.sourceforge.net
5210 L:      linux-security-module@vger.kernel.org
5211 S:      Supported
5212 F:      security/integrity/ima/
5213
5214 IMGTEC IR DECODER DRIVER
5215 M:      James Hogan <james.hogan@imgtec.com>
5216 S:      Maintained
5217 F:      drivers/media/rc/img-ir/
5218
5219 IMS TWINTURBO FRAMEBUFFER DRIVER
5220 L:      linux-fbdev@vger.kernel.org
5221 S:      Orphan
5222 F:      drivers/video/fbdev/imsttfb.c
5223
5224 INFINIBAND SUBSYSTEM
5225 M:      Doug Ledford <dledford@redhat.com>
5226 M:      Sean Hefty <sean.hefty@intel.com>
5227 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5228 L:      linux-rdma@vger.kernel.org
5229 W:      http://www.openfabrics.org/
5230 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5232 S:      Supported
5233 F:      Documentation/infiniband/
5234 F:      drivers/infiniband/
5235 F:      include/uapi/linux/if_infiniband.h
5236 F:      include/uapi/rdma/
5237 F:      include/rdma/
5238
5239 INOTIFY
5240 M:      John McCutchan <john@johnmccutchan.com>
5241 M:      Robert Love <rlove@rlove.org>
5242 M:      Eric Paris <eparis@parisplace.org>
5243 S:      Maintained
5244 F:      Documentation/filesystems/inotify.txt
5245 F:      fs/notify/inotify/
5246 F:      include/linux/inotify.h
5247 F:      include/uapi/linux/inotify.h
5248
5249 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5250 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5251 L:      linux-input@vger.kernel.org
5252 Q:      http://patchwork.kernel.org/project/linux-input/list/
5253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5254 S:      Maintained
5255 F:      drivers/input/
5256 F:      include/linux/input.h
5257 F:      include/uapi/linux/input.h
5258 F:      include/linux/input/
5259
5260 INPUT MULTITOUCH (MT) PROTOCOL
5261 M:      Henrik Rydberg <rydberg@bitmath.org>
5262 L:      linux-input@vger.kernel.org
5263 S:      Odd fixes
5264 F:      Documentation/input/multi-touch-protocol.txt
5265 F:      drivers/input/input-mt.c
5266 K:      \b(ABS|SYN)_MT_
5267
5268 INTEL ASoC BDW/HSW DRIVERS
5269 M:      Jie Yang <yang.jie@linux.intel.com>
5270 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5271 S:      Supported
5272 F:      sound/soc/intel/sst-haswell*
5273 F:      sound/soc/intel/sst-dsp*
5274 F:      sound/soc/intel/sst-firmware.c
5275 F:      sound/soc/intel/broadwell.c
5276 F:      sound/soc/intel/haswell.c
5277
5278 INTEL C600 SERIES SAS CONTROLLER DRIVER
5279 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5280 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5281 L:      linux-scsi@vger.kernel.org
5282 T:      git git://git.code.sf.net/p/intel-sas/isci
5283 S:      Supported
5284 F:      drivers/scsi/isci/
5285
5286 INTEL IDLE DRIVER
5287 M:      Len Brown <lenb@kernel.org>
5288 L:      linux-pm@vger.kernel.org
5289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5290 S:      Supported
5291 F:      drivers/idle/intel_idle.c
5292
5293 INTEL PSTATE DRIVER
5294 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5295 L:      linux-pm@vger.kernel.org
5296 S:      Supported
5297 F:      drivers/cpufreq/intel_pstate.c
5298
5299 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5300 M:      Maik Broemme <mbroemme@plusserver.de>
5301 L:      linux-fbdev@vger.kernel.org
5302 S:      Maintained
5303 F:      Documentation/fb/intelfb.txt
5304 F:      drivers/video/fbdev/intelfb/
5305
5306 INTEL 810/815 FRAMEBUFFER DRIVER
5307 M:      Antonino Daplas <adaplas@gmail.com>
5308 L:      linux-fbdev@vger.kernel.org
5309 S:      Maintained
5310 F:      drivers/video/fbdev/i810/
5311
5312 INTEL MENLOW THERMAL DRIVER
5313 M:      Sujith Thomas <sujith.thomas@intel.com>
5314 L:      platform-driver-x86@vger.kernel.org
5315 W:      https://01.org/linux-acpi
5316 S:      Supported
5317 F:      drivers/platform/x86/intel_menlow.c
5318
5319 INTEL IA32 MICROCODE UPDATE SUPPORT
5320 M:      Borislav Petkov <bp@alien8.de>
5321 S:      Maintained
5322 F:      arch/x86/kernel/cpu/microcode/core*
5323 F:      arch/x86/kernel/cpu/microcode/intel*
5324
5325 INTEL I/OAT DMA DRIVER
5326 M:      Dave Jiang <dave.jiang@intel.com>
5327 R:      Dan Williams <dan.j.williams@intel.com>
5328 L:      dmaengine@vger.kernel.org
5329 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5330 S:      Supported
5331 F:      drivers/dma/ioat*
5332
5333 INTEL IOMMU (VT-d)
5334 M:      David Woodhouse <dwmw2@infradead.org>
5335 L:      iommu@lists.linux-foundation.org
5336 T:      git git://git.infradead.org/iommu-2.6.git
5337 S:      Supported
5338 F:      drivers/iommu/intel-iommu.c
5339 F:      include/linux/intel-iommu.h
5340
5341 INTEL IOP-ADMA DMA DRIVER
5342 R:      Dan Williams <dan.j.williams@intel.com>
5343 S:      Odd fixes
5344 F:      drivers/dma/iop-adma.c
5345
5346 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5347 M:      Krzysztof Halasa <khalasa@piap.pl>
5348 S:      Maintained
5349 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5350 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5351 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5352 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5353 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5354 F:      drivers/net/wan/ixp4xx_hss.c
5355
5356 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5357 M:      Deepak Saxena <dsaxena@plexity.net>
5358 S:      Maintained
5359 F:      drivers/char/hw_random/ixp4xx-rng.c
5360
5361 INTEL ETHERNET DRIVERS
5362 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5363 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5364 R:      Shannon Nelson <shannon.nelson@intel.com>
5365 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5366 R:      Don Skidmore <donald.c.skidmore@intel.com>
5367 R:      Matthew Vick <matthew.vick@intel.com>
5368 R:      John Ronciak <john.ronciak@intel.com>
5369 R:      Mitch Williams <mitch.a.williams@intel.com>
5370 L:      intel-wired-lan@lists.osuosl.org
5371 W:      http://www.intel.com/support/feedback.htm
5372 W:      http://e1000.sourceforge.net/
5373 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5376 S:      Supported
5377 F:      Documentation/networking/e100.txt
5378 F:      Documentation/networking/e1000.txt
5379 F:      Documentation/networking/e1000e.txt
5380 F:      Documentation/networking/igb.txt
5381 F:      Documentation/networking/igbvf.txt
5382 F:      Documentation/networking/ixgb.txt
5383 F:      Documentation/networking/ixgbe.txt
5384 F:      Documentation/networking/ixgbevf.txt
5385 F:      Documentation/networking/i40e.txt
5386 F:      Documentation/networking/i40evf.txt
5387 F:      drivers/net/ethernet/intel/
5388 F:      drivers/net/ethernet/intel/*/
5389
5390 INTEL-MID GPIO DRIVER
5391 M:      David Cohen <david.a.cohen@linux.intel.com>
5392 L:      linux-gpio@vger.kernel.org
5393 S:      Maintained
5394 F:      drivers/gpio/gpio-intel-mid.c
5395
5396 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5397 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5398 L:      linux-wireless@vger.kernel.org
5399 S:      Maintained
5400 F:      Documentation/networking/README.ipw2100
5401 F:      Documentation/networking/README.ipw2200
5402 F:      drivers/net/wireless/ipw2x00/
5403
5404 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5405 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5406 M:      Gang Wei <gang.wei@intel.com>
5407 M:      Shane Wang <shane.wang@intel.com>
5408 L:      tboot-devel@lists.sourceforge.net
5409 W:      http://tboot.sourceforge.net
5410 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5411 S:      Supported
5412 F:      Documentation/intel_txt.txt
5413 F:      include/linux/tboot.h
5414 F:      arch/x86/kernel/tboot.c
5415
5416 INTEL WIRELESS WIMAX CONNECTION 2400
5417 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5418 M:      linux-wimax@intel.com
5419 L:      wimax@linuxwimax.org (subscribers-only)
5420 S:      Supported
5421 W:      http://linuxwimax.org
5422 F:      Documentation/wimax/README.i2400m
5423 F:      drivers/net/wimax/i2400m/
5424 F:      include/uapi/linux/wimax/i2400m.h
5425
5426 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5427 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5428 L:      linux-wireless@vger.kernel.org
5429 S:      Supported
5430 F:      drivers/net/wireless/iwlegacy/
5431
5432 INTEL WIRELESS WIFI LINK (iwlwifi)
5433 M:      Johannes Berg <johannes.berg@intel.com>
5434 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5435 M:      Intel Linux Wireless <ilw@linux.intel.com>
5436 L:      linux-wireless@vger.kernel.org
5437 W:      http://intellinuxwireless.org
5438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5439 S:      Supported
5440 F:      drivers/net/wireless/iwlwifi/
5441
5442 INTEL MANAGEMENT ENGINE (mei)
5443 M:      Tomas Winkler <tomas.winkler@intel.com>
5444 L:      linux-kernel@vger.kernel.org
5445 S:      Supported
5446 F:      include/uapi/linux/mei.h
5447 F:      drivers/misc/mei/*
5448 F:      Documentation/misc-devices/mei/*
5449
5450 IOC3 ETHERNET DRIVER
5451 M:      Ralf Baechle <ralf@linux-mips.org>
5452 L:      linux-mips@linux-mips.org
5453 S:      Maintained
5454 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5455
5456 IOC3 SERIAL DRIVER
5457 M:      Pat Gefre <pfg@sgi.com>
5458 L:      linux-serial@vger.kernel.org
5459 S:      Maintained
5460 F:      drivers/tty/serial/ioc3_serial.c
5461
5462 IOMMU DRIVERS
5463 M:      Joerg Roedel <joro@8bytes.org>
5464 L:      iommu@lists.linux-foundation.org
5465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5466 S:      Maintained
5467 F:      drivers/iommu/
5468
5469 IP MASQUERADING
5470 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5471 S:      Maintained
5472 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5473
5474 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5475 M:      Francois Romieu <romieu@fr.zoreil.com>
5476 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5477 L:      netdev@vger.kernel.org
5478 S:      Maintained
5479 F:      drivers/net/ethernet/icplus/ipg.*
5480
5481 IPATH DRIVER
5482 M:      Mike Marciniszyn <infinipath@intel.com>
5483 L:      linux-rdma@vger.kernel.org
5484 S:      Maintained
5485 F:      drivers/infiniband/hw/ipath/
5486
5487 IPMI SUBSYSTEM
5488 M:      Corey Minyard <minyard@acm.org>
5489 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5490 W:      http://openipmi.sourceforge.net/
5491 S:      Supported
5492 F:      Documentation/IPMI.txt
5493 F:      drivers/char/ipmi/
5494 F:      include/linux/ipmi*
5495 F:      include/uapi/linux/ipmi*
5496
5497 QCOM AUDIO (ASoC) DRIVERS
5498 M:      Patrick Lai <plai@codeaurora.org>
5499 M:      Banajit Goswami <bgoswami@codeaurora.org>
5500 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5501 S:      Supported
5502 F:      sound/soc/qcom/
5503
5504 IPS SCSI RAID DRIVER
5505 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5506 L:      linux-scsi@vger.kernel.org
5507 W:      http://www.adaptec.com/
5508 S:      Maintained
5509 F:      drivers/scsi/ips*
5510
5511 IPVS
5512 M:      Wensong Zhang <wensong@linux-vs.org>
5513 M:      Simon Horman <horms@verge.net.au>
5514 M:      Julian Anastasov <ja@ssi.bg>
5515 L:      netdev@vger.kernel.org
5516 L:      lvs-devel@vger.kernel.org
5517 S:      Maintained
5518 F:      Documentation/networking/ipvs-sysctl.txt
5519 F:      include/net/ip_vs.h
5520 F:      include/uapi/linux/ip_vs.h
5521 F:      net/netfilter/ipvs/
5522
5523 IPWIRELESS DRIVER
5524 M:      Jiri Kosina <jkosina@suse.cz>
5525 M:      David Sterba <dsterba@suse.cz>
5526 S:      Odd Fixes
5527 F:      drivers/tty/ipwireless/
5528
5529 IPX NETWORK LAYER
5530 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5531 L:      netdev@vger.kernel.org
5532 S:      Maintained
5533 F:      include/net/ipx.h
5534 F:      include/uapi/linux/ipx.h
5535 F:      net/ipx/
5536
5537 IRDA SUBSYSTEM
5538 M:      Samuel Ortiz <samuel@sortiz.org>
5539 L:      irda-users@lists.sourceforge.net (subscribers-only)
5540 L:      netdev@vger.kernel.org
5541 W:      http://irda.sourceforge.net/
5542 S:      Maintained
5543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5544 F:      Documentation/networking/irda.txt
5545 F:      drivers/net/irda/
5546 F:      include/net/irda/
5547 F:      net/irda/
5548
5549 IRQ SUBSYSTEM
5550 M:      Thomas Gleixner <tglx@linutronix.de>
5551 L:      linux-kernel@vger.kernel.org
5552 S:      Maintained
5553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5554 F:      kernel/irq/
5555
5556 IRQCHIP DRIVERS
5557 M:      Thomas Gleixner <tglx@linutronix.de>
5558 M:      Jason Cooper <jason@lakedaemon.net>
5559 L:      linux-kernel@vger.kernel.org
5560 S:      Maintained
5561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5562 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5563 F:      Documentation/devicetree/bindings/interrupt-controller/
5564 F:      drivers/irqchip/
5565
5566 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5567 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5568 S:      Maintained
5569 F:      Documentation/IRQ-domain.txt
5570 F:      include/linux/irqdomain.h
5571 F:      kernel/irq/irqdomain.c
5572
5573 ISAPNP
5574 M:      Jaroslav Kysela <perex@perex.cz>
5575 S:      Maintained
5576 F:      Documentation/isapnp.txt
5577 F:      drivers/pnp/isapnp/
5578 F:      include/linux/isapnp.h
5579
5580 ISA RADIO MODULE
5581 M:      Hans Verkuil <hverkuil@xs4all.nl>
5582 L:      linux-media@vger.kernel.org
5583 T:      git git://linuxtv.org/media_tree.git
5584 W:      http://linuxtv.org
5585 S:      Maintained
5586 F:      drivers/media/radio/radio-isa*
5587
5588 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5589 M:      Peter Jones <pjones@redhat.com>
5590 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5591 S:      Maintained
5592 F:      drivers/firmware/iscsi_ibft*
5593
5594 ISCSI
5595 M:      Mike Christie <michaelc@cs.wisc.edu>
5596 L:      open-iscsi@googlegroups.com
5597 W:      www.open-iscsi.org
5598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5599 S:      Maintained
5600 F:      drivers/scsi/*iscsi*
5601 F:      include/scsi/*iscsi*
5602
5603 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5604 M:      Or Gerlitz <ogerlitz@mellanox.com>
5605 M:      Sagi Grimberg <sagig@mellanox.com>
5606 M:      Roi Dayan <roid@mellanox.com>
5607 L:      linux-rdma@vger.kernel.org
5608 S:      Supported
5609 W:      http://www.openfabrics.org
5610 W:      www.open-iscsi.org
5611 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5612 F:      drivers/infiniband/ulp/iser/
5613
5614 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5615 M:      Sagi Grimberg <sagig@mellanox.com>
5616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5617 L:      linux-rdma@vger.kernel.org
5618 L:      target-devel@vger.kernel.org
5619 S:      Supported
5620 W:      http://www.linux-iscsi.org
5621 F:      drivers/infiniband/ulp/isert
5622
5623 ISDN SUBSYSTEM
5624 M:      Karsten Keil <isdn@linux-pingi.de>
5625 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5626 L:      netdev@vger.kernel.org
5627 W:      http://www.isdn4linux.de
5628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5629 S:      Maintained
5630 F:      Documentation/isdn/
5631 F:      drivers/isdn/
5632 F:      include/linux/isdn.h
5633 F:      include/linux/isdn/
5634 F:      include/uapi/linux/isdn.h
5635 F:      include/uapi/linux/isdn/
5636
5637 ISDN SUBSYSTEM (Eicon active card driver)
5638 M:      Armin Schindler <mac@melware.de>
5639 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5640 W:      http://www.melware.de
5641 S:      Maintained
5642 F:      drivers/isdn/hardware/eicon/
5643
5644 IT87 HARDWARE MONITORING DRIVER
5645 M:      Jean Delvare <jdelvare@suse.de>
5646 L:      lm-sensors@lm-sensors.org
5647 S:      Maintained
5648 F:      Documentation/hwmon/it87
5649 F:      drivers/hwmon/it87.c
5650
5651 IT913X MEDIA DRIVER
5652 M:      Antti Palosaari <crope@iki.fi>
5653 L:      linux-media@vger.kernel.org
5654 W:      http://linuxtv.org/
5655 W:      http://palosaari.fi/linux/
5656 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5657 T:      git git://linuxtv.org/anttip/media_tree.git
5658 S:      Maintained
5659 F:      drivers/media/tuners/it913x*
5660
5661 IVTV VIDEO4LINUX DRIVER
5662 M:      Andy Walls <awalls@md.metrocast.net>
5663 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5664 L:      linux-media@vger.kernel.org
5665 T:      git git://linuxtv.org/media_tree.git
5666 W:      http://www.ivtvdriver.org
5667 S:      Maintained
5668 F:      Documentation/video4linux/*.ivtv
5669 F:      drivers/media/pci/ivtv/
5670 F:      include/uapi/linux/ivtv*
5671
5672 IX2505V MEDIA DRIVER
5673 M:      Malcolm Priestley <tvboxspy@gmail.com>
5674 L:      linux-media@vger.kernel.org
5675 W:      http://linuxtv.org/
5676 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5677 S:      Maintained
5678 F:      drivers/media/dvb-frontends/ix2505v*
5679
5680 JC42.4 TEMPERATURE SENSOR DRIVER
5681 M:      Guenter Roeck <linux@roeck-us.net>
5682 L:      lm-sensors@lm-sensors.org
5683 S:      Maintained
5684 F:      drivers/hwmon/jc42.c
5685 F:      Documentation/hwmon/jc42
5686
5687 JFS FILESYSTEM
5688 M:      Dave Kleikamp <shaggy@kernel.org>
5689 L:      jfs-discussion@lists.sourceforge.net
5690 W:      http://jfs.sourceforge.net/
5691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5692 S:      Maintained
5693 F:      Documentation/filesystems/jfs.txt
5694 F:      fs/jfs/
5695
5696 JME NETWORK DRIVER
5697 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5698 L:      netdev@vger.kernel.org
5699 S:      Maintained
5700 F:      drivers/net/ethernet/jme.*
5701
5702 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5703 M:      David Woodhouse <dwmw2@infradead.org>
5704 L:      linux-mtd@lists.infradead.org
5705 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5706 S:      Maintained
5707 F:      fs/jffs2/
5708 F:      include/uapi/linux/jffs2.h
5709
5710 JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
5711 M:      Andrew Morton <akpm@linux-foundation.org>
5712 M:      Jan Kara <jack@suse.cz>
5713 L:      linux-ext4@vger.kernel.org
5714 S:      Maintained
5715 F:      fs/jbd/
5716 F:      include/linux/jbd.h
5717
5718 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5719 M:      "Theodore Ts'o" <tytso@mit.edu>
5720 L:      linux-ext4@vger.kernel.org
5721 S:      Maintained
5722 F:      fs/jbd2/
5723 F:      include/linux/jbd2.h
5724
5725 JSM Neo PCI based serial card
5726 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5727 L:      linux-serial@vger.kernel.org
5728 S:      Maintained
5729 F:      drivers/tty/serial/jsm/
5730
5731 K10TEMP HARDWARE MONITORING DRIVER
5732 M:      Clemens Ladisch <clemens@ladisch.de>
5733 L:      lm-sensors@lm-sensors.org
5734 S:      Maintained
5735 F:      Documentation/hwmon/k10temp
5736 F:      drivers/hwmon/k10temp.c
5737
5738 K8TEMP HARDWARE MONITORING DRIVER
5739 M:      Rudolf Marek <r.marek@assembler.cz>
5740 L:      lm-sensors@lm-sensors.org
5741 S:      Maintained
5742 F:      Documentation/hwmon/k8temp
5743 F:      drivers/hwmon/k8temp.c
5744
5745 KCONFIG
5746 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5747 L:      linux-kbuild@vger.kernel.org
5748 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5749 S:      Maintained
5750 F:      Documentation/kbuild/kconfig-language.txt
5751 F:      scripts/kconfig/
5752
5753 KDUMP
5754 M:      Vivek Goyal <vgoyal@redhat.com>
5755 M:      Haren Myneni <hbabu@us.ibm.com>
5756 L:      kexec@lists.infradead.org
5757 W:      http://lse.sourceforge.net/kdump/
5758 S:      Maintained
5759 F:      Documentation/kdump/
5760
5761 KEENE FM RADIO TRANSMITTER DRIVER
5762 M:      Hans Verkuil <hverkuil@xs4all.nl>
5763 L:      linux-media@vger.kernel.org
5764 T:      git git://linuxtv.org/media_tree.git
5765 W:      http://linuxtv.org
5766 S:      Maintained
5767 F:      drivers/media/radio/radio-keene*
5768
5769 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5770 M:      Ian Kent <raven@themaw.net>
5771 L:      autofs@vger.kernel.org
5772 S:      Maintained
5773 F:      fs/autofs4/
5774
5775 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5776 M:      Michal Marek <mmarek@suse.cz>
5777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5779 L:      linux-kbuild@vger.kernel.org
5780 S:      Maintained
5781 F:      Documentation/kbuild/
5782 F:      Makefile
5783 F:      scripts/Makefile.*
5784 F:      scripts/basic/
5785 F:      scripts/mk*
5786 F:      scripts/package/
5787
5788 KERNEL JANITORS
5789 L:      kernel-janitors@vger.kernel.org
5790 W:      http://kernelnewbies.org/KernelJanitors
5791 S:      Odd Fixes
5792
5793 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5794 M:      "J. Bruce Fields" <bfields@fieldses.org>
5795 L:      linux-nfs@vger.kernel.org
5796 W:      http://nfs.sourceforge.net/
5797 S:      Supported
5798 F:      fs/nfsd/
5799 F:      include/uapi/linux/nfsd/
5800 F:      fs/lockd/
5801 F:      fs/nfs_common/
5802 F:      net/sunrpc/
5803 F:      include/linux/lockd/
5804 F:      include/linux/sunrpc/
5805 F:      include/uapi/linux/sunrpc/
5806
5807 KERNEL SELFTEST FRAMEWORK
5808 M:      Shuah Khan <shuahkh@osg.samsung.com>
5809 L:      linux-api@vger.kernel.org
5810 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5811 S:      Maintained
5812 F:      tools/testing/selftests
5813
5814 KERNEL VIRTUAL MACHINE (KVM)
5815 M:      Gleb Natapov <gleb@kernel.org>
5816 M:      Paolo Bonzini <pbonzini@redhat.com>
5817 L:      kvm@vger.kernel.org
5818 W:      http://www.linux-kvm.org
5819 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5820 S:      Supported
5821 F:      Documentation/*/kvm*.txt
5822 F:      Documentation/virtual/kvm/
5823 F:      arch/*/kvm/
5824 F:      arch/x86/kernel/kvm.c
5825 F:      arch/x86/kernel/kvmclock.c
5826 F:      arch/*/include/asm/kvm*
5827 F:      include/linux/kvm*
5828 F:      include/uapi/linux/kvm*
5829 F:      virt/kvm/
5830
5831 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5832 M:      Joerg Roedel <joro@8bytes.org>
5833 L:      kvm@vger.kernel.org
5834 W:      http://kvm.qumranet.com
5835 S:      Maintained
5836 F:      arch/x86/include/asm/svm.h
5837 F:      arch/x86/kvm/svm.c
5838
5839 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5840 M:      Alexander Graf <agraf@suse.de>
5841 L:      kvm-ppc@vger.kernel.org
5842 W:      http://kvm.qumranet.com
5843 T:      git git://github.com/agraf/linux-2.6.git
5844 S:      Supported
5845 F:      arch/powerpc/include/asm/kvm*
5846 F:      arch/powerpc/kvm/
5847
5848 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5849 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5850 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5851 M:      linux390@de.ibm.com
5852 L:      linux-s390@vger.kernel.org
5853 W:      http://www.ibm.com/developerworks/linux/linux390/
5854 S:      Supported
5855 F:      Documentation/s390/kvm.txt
5856 F:      arch/s390/include/asm/kvm*
5857 F:      arch/s390/kvm/
5858 F:      drivers/s390/kvm/
5859
5860 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5861 M:      Christoffer Dall <christoffer.dall@linaro.org>
5862 M:      Marc Zyngier <marc.zyngier@arm.com>
5863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5864 L:      kvmarm@lists.cs.columbia.edu
5865 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5866 S:      Supported
5867 F:      arch/arm/include/uapi/asm/kvm*
5868 F:      arch/arm/include/asm/kvm*
5869 F:      arch/arm/kvm/
5870 F:      virt/kvm/arm/
5871 F:      include/kvm/arm_*
5872
5873 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5874 M:      Christoffer Dall <christoffer.dall@linaro.org>
5875 M:      Marc Zyngier <marc.zyngier@arm.com>
5876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5877 L:      kvmarm@lists.cs.columbia.edu
5878 S:      Maintained
5879 F:      arch/arm64/include/uapi/asm/kvm*
5880 F:      arch/arm64/include/asm/kvm*
5881 F:      arch/arm64/kvm/
5882
5883 KEXEC
5884 M:      Eric Biederman <ebiederm@xmission.com>
5885 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
5886 L:      kexec@lists.infradead.org
5887 S:      Maintained
5888 F:      include/linux/kexec.h
5889 F:      include/uapi/linux/kexec.h
5890 F:      kernel/kexec.c
5891
5892 KEYS/KEYRINGS:
5893 M:      David Howells <dhowells@redhat.com>
5894 L:      keyrings@linux-nfs.org
5895 S:      Maintained
5896 F:      Documentation/security/keys.txt
5897 F:      include/linux/key.h
5898 F:      include/linux/key-type.h
5899 F:      include/keys/
5900 F:      security/keys/
5901
5902 KEYS-TRUSTED
5903 M:      David Safford <safford@us.ibm.com>
5904 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5905 L:      linux-security-module@vger.kernel.org
5906 L:      keyrings@linux-nfs.org
5907 S:      Supported
5908 F:      Documentation/security/keys-trusted-encrypted.txt
5909 F:      include/keys/trusted-type.h
5910 F:      security/keys/trusted.c
5911 F:      security/keys/trusted.h
5912
5913 KEYS-ENCRYPTED
5914 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5915 M:      David Safford <safford@us.ibm.com>
5916 L:      linux-security-module@vger.kernel.org
5917 L:      keyrings@linux-nfs.org
5918 S:      Supported
5919 F:      Documentation/security/keys-trusted-encrypted.txt
5920 F:      include/keys/encrypted-type.h
5921 F:      security/keys/encrypted-keys/
5922
5923 KGDB / KDB /debug_core
5924 M:      Jason Wessel <jason.wessel@windriver.com>
5925 W:      http://kgdb.wiki.kernel.org/
5926 L:      kgdb-bugreport@lists.sourceforge.net
5927 S:      Maintained
5928 F:      Documentation/DocBook/kgdb.tmpl
5929 F:      drivers/misc/kgdbts.c
5930 F:      drivers/tty/serial/kgdboc.c
5931 F:      include/linux/kdb.h
5932 F:      include/linux/kgdb.h
5933 F:      kernel/debug/
5934
5935 KMEMCHECK
5936 M:      Vegard Nossum <vegardno@ifi.uio.no>
5937 M:      Pekka Enberg <penberg@kernel.org>
5938 S:      Maintained
5939 F:      Documentation/kmemcheck.txt
5940 F:      arch/x86/include/asm/kmemcheck.h
5941 F:      arch/x86/mm/kmemcheck/
5942 F:      include/linux/kmemcheck.h
5943 F:      mm/kmemcheck.c
5944
5945 KMEMLEAK
5946 M:      Catalin Marinas <catalin.marinas@arm.com>
5947 S:      Maintained
5948 F:      Documentation/kmemleak.txt
5949 F:      include/linux/kmemleak.h
5950 F:      mm/kmemleak.c
5951 F:      mm/kmemleak-test.c
5952
5953 KPROBES
5954 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
5955 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
5956 M:      "David S. Miller" <davem@davemloft.net>
5957 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
5958 S:      Maintained
5959 F:      Documentation/kprobes.txt
5960 F:      include/linux/kprobes.h
5961 F:      kernel/kprobes.c
5962
5963 KS0108 LCD CONTROLLER DRIVER
5964 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
5965 W:      http://miguelojeda.es/auxdisplay.htm
5966 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
5967 S:      Maintained
5968 F:      Documentation/auxdisplay/ks0108
5969 F:      drivers/auxdisplay/ks0108.c
5970 F:      include/linux/ks0108.h
5971
5972 LAPB module
5973 L:      linux-x25@vger.kernel.org
5974 S:      Orphan
5975 F:      Documentation/networking/lapb-module.txt
5976 F:      include/*/lapb.h
5977 F:      net/lapb/
5978
5979 LASI 53c700 driver for PARISC
5980 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
5981 L:      linux-scsi@vger.kernel.org
5982 S:      Maintained
5983 F:      Documentation/scsi/53c700.txt
5984 F:      drivers/scsi/53c700*
5985
5986 LED SUBSYSTEM
5987 M:      Bryan Wu <cooloney@gmail.com>
5988 M:      Richard Purdie <rpurdie@rpsys.net>
5989 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
5990 L:      linux-leds@vger.kernel.org
5991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
5992 S:      Maintained
5993 F:      drivers/leds/
5994 F:      include/linux/leds.h
5995
5996 LEGACY EEPROM DRIVER
5997 M:      Jean Delvare <jdelvare@suse.de>
5998 S:      Maintained
5999 F:      Documentation/misc-devices/eeprom
6000 F:      drivers/misc/eeprom/eeprom.c
6001
6002 LEGO USB Tower driver
6003 M:      Juergen Stuber <starblue@users.sourceforge.net>
6004 L:      legousb-devel@lists.sourceforge.net
6005 W:      http://legousb.sourceforge.net/
6006 S:      Maintained
6007 F:      drivers/usb/misc/legousbtower.c
6008
6009 LG2160 MEDIA DRIVER
6010 M:      Michael Krufky <mkrufky@linuxtv.org>
6011 L:      linux-media@vger.kernel.org
6012 W:      http://linuxtv.org/
6013 W:      http://github.com/mkrufky
6014 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6015 T:      git git://linuxtv.org/mkrufky/tuners.git
6016 S:      Maintained
6017 F:      drivers/media/dvb-frontends/lg2160.*
6018
6019 LGDT3305 MEDIA DRIVER
6020 M:      Michael Krufky <mkrufky@linuxtv.org>
6021 L:      linux-media@vger.kernel.org
6022 W:      http://linuxtv.org/
6023 W:      http://github.com/mkrufky
6024 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6025 T:      git git://linuxtv.org/mkrufky/tuners.git
6026 S:      Maintained
6027 F:      drivers/media/dvb-frontends/lgdt3305.*
6028
6029 LGUEST
6030 M:      Rusty Russell <rusty@rustcorp.com.au>
6031 L:      lguest@lists.ozlabs.org
6032 W:      http://lguest.ozlabs.org/
6033 S:      Odd Fixes
6034 F:      arch/x86/include/asm/lguest*.h
6035 F:      arch/x86/lguest/
6036 F:      drivers/lguest/
6037 F:      include/linux/lguest*.h
6038 F:      tools/lguest/
6039
6040 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6041 M:      Tejun Heo <tj@kernel.org>
6042 L:      linux-ide@vger.kernel.org
6043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6044 S:      Maintained
6045 F:      drivers/ata/
6046 F:      include/linux/ata.h
6047 F:      include/linux/libata.h
6048
6049 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6050 M:      Viresh Kumar <viresh.linux@gmail.com>
6051 L:      linux-ide@vger.kernel.org
6052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6053 S:      Maintained
6054 F:      include/linux/pata_arasan_cf_data.h
6055 F:      drivers/ata/pata_arasan_cf.c
6056
6057 LIBATA PATA DRIVERS
6058 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6059 M:      Tejun Heo <tj@kernel.org>
6060 L:      linux-ide@vger.kernel.org
6061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6062 S:      Maintained
6063 F:      drivers/ata/pata_*.c
6064 F:      drivers/ata/ata_generic.c
6065
6066 LIBATA SATA AHCI PLATFORM devices support
6067 M:      Hans de Goede <hdegoede@redhat.com>
6068 M:      Tejun Heo <tj@kernel.org>
6069 L:      linux-ide@vger.kernel.org
6070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6071 S:      Maintained
6072 F:      drivers/ata/ahci_platform.c
6073 F:      drivers/ata/libahci_platform.c
6074 F:      include/linux/ahci_platform.h
6075
6076 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6077 M:      Mikael Pettersson <mikpelinux@gmail.com>
6078 L:      linux-ide@vger.kernel.org
6079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6080 S:      Maintained
6081 F:      drivers/ata/sata_promise.*
6082
6083 LIBLOCKDEP
6084 M:      Sasha Levin <sasha.levin@oracle.com>
6085 S:      Maintained
6086 F:      tools/lib/lockdep/
6087
6088 LINUX FOR IBM pSERIES (RS/6000)
6089 M:      Paul Mackerras <paulus@au.ibm.com>
6090 W:      http://www.ibm.com/linux/ltc/projects/ppc
6091 S:      Supported
6092 F:      arch/powerpc/boot/rs6000.h
6093
6094 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6095 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6096 M:      Paul Mackerras <paulus@samba.org>
6097 M:      Michael Ellerman <mpe@ellerman.id.au>
6098 W:      http://www.penguinppc.org/
6099 L:      linuxppc-dev@lists.ozlabs.org
6100 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
6102 S:      Supported
6103 F:      Documentation/powerpc/
6104 F:      arch/powerpc/
6105
6106 LINUX FOR POWER MACINTOSH
6107 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6108 W:      http://www.penguinppc.org/
6109 L:      linuxppc-dev@lists.ozlabs.org
6110 S:      Maintained
6111 F:      arch/powerpc/platforms/powermac/
6112 F:      drivers/macintosh/
6113
6114 LINUX FOR POWERPC EMBEDDED MPC5XXX
6115 M:      Anatolij Gustschin <agust@denx.de>
6116 L:      linuxppc-dev@lists.ozlabs.org
6117 T:      git git://git.denx.de/linux-denx-agust.git
6118 S:      Maintained
6119 F:      arch/powerpc/platforms/512x/
6120 F:      arch/powerpc/platforms/52xx/
6121
6122 LINUX FOR POWERPC EMBEDDED PPC4XX
6123 M:      Alistair Popple <alistair@popple.id.au>
6124 M:      Matt Porter <mporter@kernel.crashing.org>
6125 W:      http://www.penguinppc.org/
6126 L:      linuxppc-dev@lists.ozlabs.org
6127 S:      Maintained
6128 F:      arch/powerpc/platforms/40x/
6129 F:      arch/powerpc/platforms/44x/
6130
6131 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6132 L:      linuxppc-dev@lists.ozlabs.org
6133 S:      Orphan
6134 F:      arch/powerpc/*/*virtex*
6135 F:      arch/powerpc/*/*/*virtex*
6136
6137 LINUX FOR POWERPC EMBEDDED PPC8XX
6138 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6139 W:      http://www.penguinppc.org/
6140 L:      linuxppc-dev@lists.ozlabs.org
6141 S:      Maintained
6142 F:      arch/powerpc/platforms/8xx/
6143
6144 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6145 M:      Scott Wood <scottwood@freescale.com>
6146 M:      Kumar Gala <galak@kernel.crashing.org>
6147 W:      http://www.penguinppc.org/
6148 L:      linuxppc-dev@lists.ozlabs.org
6149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6150 S:      Maintained
6151 F:      arch/powerpc/platforms/83xx/
6152 F:      arch/powerpc/platforms/85xx/
6153
6154 LINUX FOR POWERPC PA SEMI PWRFICIENT
6155 M:      Olof Johansson <olof@lixom.net>
6156 L:      linuxppc-dev@lists.ozlabs.org
6157 S:      Maintained
6158 F:      arch/powerpc/platforms/pasemi/
6159 F:      drivers/*/*pasemi*
6160 F:      drivers/*/*/*pasemi*
6161
6162 LINUX SECURITY MODULE (LSM) FRAMEWORK
6163 M:      Chris Wright <chrisw@sous-sol.org>
6164 L:      linux-security-module@vger.kernel.org
6165 S:      Supported
6166
6167 LIS3LV02D ACCELEROMETER DRIVER
6168 M:      Eric Piel <eric.piel@tremplin-utc.net>
6169 S:      Maintained
6170 F:      Documentation/misc-devices/lis3lv02d
6171 F:      drivers/misc/lis3lv02d/
6172 F:      drivers/platform/x86/hp_accel.c
6173
6174 LIVE PATCHING
6175 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6176 M:      Seth Jennings <sjenning@redhat.com>
6177 M:      Jiri Kosina <jkosina@suse.cz>
6178 M:      Vojtech Pavlik <vojtech@suse.cz>
6179 S:      Maintained
6180 F:      kernel/livepatch/
6181 F:      include/linux/livepatch.h
6182 F:      arch/x86/include/asm/livepatch.h
6183 F:      arch/x86/kernel/livepatch.c
6184 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6185 F:      samples/livepatch/
6186 L:      live-patching@vger.kernel.org
6187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6188
6189 LLC (802.2)
6190 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6191 S:      Maintained
6192 F:      include/linux/llc.h
6193 F:      include/uapi/linux/llc.h
6194 F:      include/net/llc*
6195 F:      net/llc/
6196
6197 LM73 HARDWARE MONITOR DRIVER
6198 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6199 L:      lm-sensors@lm-sensors.org
6200 S:      Maintained
6201 F:      drivers/hwmon/lm73.c
6202
6203 LM78 HARDWARE MONITOR DRIVER
6204 M:      Jean Delvare <jdelvare@suse.de>
6205 L:      lm-sensors@lm-sensors.org
6206 S:      Maintained
6207 F:      Documentation/hwmon/lm78
6208 F:      drivers/hwmon/lm78.c
6209
6210 LM83 HARDWARE MONITOR DRIVER
6211 M:      Jean Delvare <jdelvare@suse.de>
6212 L:      lm-sensors@lm-sensors.org
6213 S:      Maintained
6214 F:      Documentation/hwmon/lm83
6215 F:      drivers/hwmon/lm83.c
6216
6217 LM90 HARDWARE MONITOR DRIVER
6218 M:      Jean Delvare <jdelvare@suse.de>
6219 L:      lm-sensors@lm-sensors.org
6220 S:      Maintained
6221 F:      Documentation/hwmon/lm90
6222 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6223 F:      drivers/hwmon/lm90.c
6224
6225 LM95234 HARDWARE MONITOR DRIVER
6226 M:      Guenter Roeck <linux@roeck-us.net>
6227 L:      lm-sensors@lm-sensors.org
6228 S:      Maintained
6229 F:      Documentation/hwmon/lm95234
6230 F:      drivers/hwmon/lm95234.c
6231
6232 LME2510 MEDIA DRIVER
6233 M:      Malcolm Priestley <tvboxspy@gmail.com>
6234 L:      linux-media@vger.kernel.org
6235 W:      http://linuxtv.org/
6236 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6237 S:      Maintained
6238 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6239
6240 LOCKDEP AND LOCKSTAT
6241 M:      Peter Zijlstra <peterz@infradead.org>
6242 M:      Ingo Molnar <mingo@redhat.com>
6243 L:      linux-kernel@vger.kernel.org
6244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6245 S:      Maintained
6246 F:      Documentation/locking/lockdep*.txt
6247 F:      Documentation/locking/lockstat.txt
6248 F:      include/linux/lockdep.h
6249 F:      kernel/locking/
6250
6251 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6252 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6253 L:      linux-ntfs-dev@lists.sourceforge.net
6254 W:      http://www.linux-ntfs.org/content/view/19/37/
6255 S:      Maintained
6256 F:      Documentation/ldm.txt
6257 F:      block/partitions/ldm.*
6258
6259 LogFS
6260 M:      Joern Engel <joern@logfs.org>
6261 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6262 L:      logfs@logfs.org
6263 W:      logfs.org
6264 S:      Maintained
6265 F:      fs/logfs/
6266
6267 LPC32XX MACHINE SUPPORT
6268 M:      Roland Stigge <stigge@antcom.de>
6269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6270 S:      Maintained
6271 F:      arch/arm/mach-lpc32xx/
6272
6273 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6274 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6275 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6276 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6277 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6278 L:      MPT-FusionLinux.pdl@avagotech.com
6279 L:      linux-scsi@vger.kernel.org
6280 W:      http://www.lsilogic.com/support
6281 S:      Supported
6282 F:      drivers/message/fusion/
6283 F:      drivers/scsi/mpt2sas/
6284 F:      drivers/scsi/mpt3sas/
6285
6286 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6287 M:      Matthew Wilcox <matthew@wil.cx>
6288 L:      linux-scsi@vger.kernel.org
6289 S:      Maintained
6290 F:      drivers/scsi/sym53c8xx_2/
6291
6292 LTC4261 HARDWARE MONITOR DRIVER
6293 M:      Guenter Roeck <linux@roeck-us.net>
6294 L:      lm-sensors@lm-sensors.org
6295 S:      Maintained
6296 F:      Documentation/hwmon/ltc4261
6297 F:      drivers/hwmon/ltc4261.c
6298
6299 LTP (Linux Test Project)
6300 M:      Mike Frysinger <vapier@gentoo.org>
6301 M:      Cyril Hrubis <chrubis@suse.cz>
6302 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
6303 M:      Jan Stancek <jstancek@redhat.com>
6304 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6305 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6306 L:      ltp-list@lists.sourceforge.net (subscribers-only)
6307 W:      http://linux-test-project.github.io/
6308 T:      git git://github.com/linux-test-project/ltp.git
6309 S:      Maintained
6310
6311 M32R ARCHITECTURE
6312 W:      http://www.linux-m32r.org/
6313 S:      Orphan
6314 F:      arch/m32r/
6315
6316 M68K ARCHITECTURE
6317 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6318 L:      linux-m68k@lists.linux-m68k.org
6319 W:      http://www.linux-m68k.org/
6320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6321 S:      Maintained
6322 F:      arch/m68k/
6323 F:      drivers/zorro/
6324
6325 M68K ON APPLE MACINTOSH
6326 M:      Joshua Thompson <funaho@jurai.org>
6327 W:      http://www.mac.linux-m68k.org/
6328 L:      linux-m68k@lists.linux-m68k.org
6329 S:      Maintained
6330 F:      arch/m68k/mac/
6331
6332 M68K ON HP9000/300
6333 M:      Philip Blundell <philb@gnu.org>
6334 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6335 S:      Maintained
6336 F:      arch/m68k/hp300/
6337
6338 M88DS3103 MEDIA DRIVER
6339 M:      Antti Palosaari <crope@iki.fi>
6340 L:      linux-media@vger.kernel.org
6341 W:      http://linuxtv.org/
6342 W:      http://palosaari.fi/linux/
6343 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6344 T:      git git://linuxtv.org/anttip/media_tree.git
6345 S:      Maintained
6346 F:      drivers/media/dvb-frontends/m88ds3103*
6347
6348 M88RS2000 MEDIA DRIVER
6349 M:      Malcolm Priestley <tvboxspy@gmail.com>
6350 L:      linux-media@vger.kernel.org
6351 W:      http://linuxtv.org/
6352 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6353 S:      Maintained
6354 F:      drivers/media/dvb-frontends/m88rs2000*
6355
6356 MA901 MASTERKIT USB FM RADIO DRIVER
6357 M:      Alexey Klimov <klimov.linux@gmail.com>
6358 L:      linux-media@vger.kernel.org
6359 T:      git git://linuxtv.org/media_tree.git
6360 S:      Maintained
6361 F:      drivers/media/radio/radio-ma901.c
6362
6363 MAC80211
6364 M:      Johannes Berg <johannes@sipsolutions.net>
6365 L:      linux-wireless@vger.kernel.org
6366 W:      http://wireless.kernel.org/
6367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6369 S:      Maintained
6370 F:      Documentation/networking/mac80211-injection.txt
6371 F:      include/net/mac80211.h
6372 F:      net/mac80211/
6373
6374 MACVLAN DRIVER
6375 M:      Patrick McHardy <kaber@trash.net>
6376 L:      netdev@vger.kernel.org
6377 S:      Maintained
6378 F:      drivers/net/macvlan.c
6379 F:      include/linux/if_macvlan.h
6380
6381 MAILBOX API
6382 M:      Jassi Brar <jassisinghbrar@gmail.com>
6383 L:      linux-kernel@vger.kernel.org
6384 S:      Maintained
6385 F:      drivers/mailbox/
6386 F:      include/linux/mailbox_client.h
6387 F:      include/linux/mailbox_controller.h
6388
6389 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6390 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6391 W:      http://www.kernel.org/doc/man-pages
6392 L:      linux-man@vger.kernel.org
6393 S:      Maintained
6394
6395 MARVELL ARMADA DRM SUPPORT
6396 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6397 S:      Maintained
6398 F:      drivers/gpu/drm/armada/
6399
6400 MARVELL 88E6352 DSA support
6401 M:      Guenter Roeck <linux@roeck-us.net>
6402 S:      Maintained
6403 F:      drivers/net/dsa/mv88e6352.c
6404
6405 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6406 M:      Mirko Lindner <mlindner@marvell.com>
6407 M:      Stephen Hemminger <stephen@networkplumber.org>
6408 L:      netdev@vger.kernel.org
6409 S:      Maintained
6410 F:      drivers/net/ethernet/marvell/sk*
6411
6412 MARVELL LIBERTAS WIRELESS DRIVER
6413 L:      libertas-dev@lists.infradead.org
6414 S:      Orphan
6415 F:      drivers/net/wireless/libertas/
6416
6417 MARVELL MV643XX ETHERNET DRIVER
6418 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6419 L:      netdev@vger.kernel.org
6420 S:      Maintained
6421 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6422 F:      include/linux/mv643xx.h
6423
6424 MARVELL MVNETA ETHERNET DRIVER
6425 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6426 L:      netdev@vger.kernel.org
6427 S:      Maintained
6428 F:      drivers/net/ethernet/marvell/mvneta.*
6429
6430 MARVELL MWIFIEX WIRELESS DRIVER
6431 M:      Amitkumar Karwar <akarwar@marvell.com>
6432 M:      Avinash Patil <patila@marvell.com>
6433 L:      linux-wireless@vger.kernel.org
6434 S:      Maintained
6435 F:      drivers/net/wireless/mwifiex/
6436
6437 MARVELL MWL8K WIRELESS DRIVER
6438 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6439 L:      linux-wireless@vger.kernel.org
6440 S:      Odd Fixes
6441 F:      drivers/net/wireless/mwl8k.c
6442
6443 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6444 M:      Nicolas Pitre <nico@fluxnic.net>
6445 S:      Odd Fixes
6446 F:      drivers/mmc/host/mvsdio.*
6447
6448 MATROX FRAMEBUFFER DRIVER
6449 L:      linux-fbdev@vger.kernel.org
6450 S:      Orphan
6451 F:      drivers/video/fbdev/matrox/matroxfb_*
6452 F:      include/uapi/linux/matroxfb.h
6453
6454 MAX16065 HARDWARE MONITOR DRIVER
6455 M:      Guenter Roeck <linux@roeck-us.net>
6456 L:      lm-sensors@lm-sensors.org
6457 S:      Maintained
6458 F:      Documentation/hwmon/max16065
6459 F:      drivers/hwmon/max16065.c
6460
6461 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6462 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6463 L:      lm-sensors@lm-sensors.org
6464 S:      Maintained
6465 F:      Documentation/hwmon/max6650
6466 F:      drivers/hwmon/max6650.c
6467
6468 MAX6697 HARDWARE MONITOR DRIVER
6469 M:      Guenter Roeck <linux@roeck-us.net>
6470 L:      lm-sensors@lm-sensors.org
6471 S:      Maintained
6472 F:      Documentation/hwmon/max6697
6473 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6474 F:      drivers/hwmon/max6697.c
6475 F:      include/linux/platform_data/max6697.h
6476
6477 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6478 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6479 L:      linux-pm@vger.kernel.org
6480 S:      Supported
6481 F:      drivers/power/max14577_charger.c
6482 F:      drivers/power/max77693_charger.c
6483
6484 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6485 M:      Chanwoo Choi <cw00.choi@samsung.com>
6486 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6487 L:      linux-kernel@vger.kernel.org
6488 S:      Supported
6489 F:      drivers/*/max14577.c
6490 F:      drivers/*/max77686.c
6491 F:      drivers/*/max77693.c
6492 F:      drivers/extcon/extcon-max14577.c
6493 F:      drivers/extcon/extcon-max77693.c
6494 F:      drivers/rtc/rtc-max77686.c
6495 F:      drivers/clk/clk-max77686.c
6496 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6497 F:      Documentation/devicetree/bindings/mfd/max77686.txt
6498 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6499 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6500 F:      include/linux/mfd/max14577*.h
6501 F:      include/linux/mfd/max77686*.h
6502 F:      include/linux/mfd/max77693*.h
6503
6504 MAXIRADIO FM RADIO RECEIVER DRIVER
6505 M:      Hans Verkuil <hverkuil@xs4all.nl>
6506 L:      linux-media@vger.kernel.org
6507 T:      git git://linuxtv.org/media_tree.git
6508 W:      http://linuxtv.org
6509 S:      Maintained
6510 F:      drivers/media/radio/radio-maxiradio*
6511
6512 MEDIA DRIVERS FOR RENESAS - VSP1
6513 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6514 L:      linux-media@vger.kernel.org
6515 L:      linux-sh@vger.kernel.org
6516 T:      git git://linuxtv.org/media_tree.git
6517 S:      Supported
6518 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6519 F:      drivers/media/platform/vsp1/
6520
6521 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6522 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6523 P:      LinuxTV.org Project
6524 L:      linux-media@vger.kernel.org
6525 W:      http://linuxtv.org
6526 Q:      http://patchwork.kernel.org/project/linux-media/list/
6527 T:      git git://linuxtv.org/media_tree.git
6528 S:      Maintained
6529 F:      Documentation/dvb/
6530 F:      Documentation/video4linux/
6531 F:      Documentation/DocBook/media/
6532 F:      drivers/media/
6533 F:      drivers/staging/media/
6534 F:      include/media/
6535 F:      include/uapi/linux/dvb/
6536 F:      include/uapi/linux/videodev2.h
6537 F:      include/uapi/linux/media.h
6538 F:      include/uapi/linux/v4l2-*
6539 F:      include/uapi/linux/meye.h
6540 F:      include/uapi/linux/ivtv*
6541 F:      include/uapi/linux/uvcvideo.h
6542
6543 MEDIATEK MT7601U WIRELESS LAN DRIVER
6544 M:      Jakub Kicinski <kubakici@wp.pl>
6545 L:      linux-wireless@vger.kernel.org
6546 S:      Maintained
6547 F:      drivers/net/wireless/mediatek/mt7601u/
6548
6549 MEGARAID SCSI/SAS DRIVERS
6550 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6551 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6552 M:      Uday Lingala <uday.lingala@avagotech.com>
6553 L:      megaraidlinux.pdl@avagotech.com
6554 L:      linux-scsi@vger.kernel.org
6555 W:      http://www.lsi.com
6556 S:      Maintained
6557 F:      Documentation/scsi/megaraid.txt
6558 F:      drivers/scsi/megaraid.*
6559 F:      drivers/scsi/megaraid/
6560
6561 MELLANOX ETHERNET DRIVER (mlx4_en)
6562 M:      Amir Vadai <amirv@mellanox.com>
6563 M:      Ido Shamay <idos@mellanox.com>
6564 L:      netdev@vger.kernel.org
6565 S:      Supported
6566 W:      http://www.mellanox.com
6567 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6568 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6569
6570 MEMORY MANAGEMENT
6571 L:      linux-mm@kvack.org
6572 W:      http://www.linux-mm.org
6573 S:      Maintained
6574 F:      include/linux/mm.h
6575 F:      include/linux/gfp.h
6576 F:      include/linux/mmzone.h
6577 F:      include/linux/memory_hotplug.h
6578 F:      include/linux/vmalloc.h
6579 F:      mm/
6580
6581 MEMORY TECHNOLOGY DEVICES (MTD)
6582 M:      David Woodhouse <dwmw2@infradead.org>
6583 M:      Brian Norris <computersforpeace@gmail.com>
6584 L:      linux-mtd@lists.infradead.org
6585 W:      http://www.linux-mtd.infradead.org/
6586 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6587 T:      git git://git.infradead.org/linux-mtd.git
6588 T:      git git://git.infradead.org/l2-mtd.git
6589 S:      Maintained
6590 F:      drivers/mtd/
6591 F:      include/linux/mtd/
6592 F:      include/uapi/mtd/
6593
6594 MEN A21 WATCHDOG DRIVER
6595 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6596 L:      linux-watchdog@vger.kernel.org
6597 S:      Maintained
6598 F:      drivers/watchdog/mena21_wdt.c
6599
6600 MEN CHAMELEON BUS (mcb)
6601 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6602 S:      Maintained
6603 F:      drivers/mcb/
6604 F:      include/linux/mcb.h
6605
6606 MEN F21BMC (Board Management Controller)
6607 M:      Andreas Werner <andreas.werner@men.de>
6608 S:      Supported
6609 F:      drivers/mfd/menf21bmc.c
6610 F:      drivers/watchdog/menf21bmc_wdt.c
6611 F:      drivers/leds/leds-menf21bmc.c
6612 F:      drivers/hwmon/menf21bmc_hwmon.c
6613 F:      Documentation/hwmon/menf21bmc
6614
6615 METAG ARCHITECTURE
6616 M:      James Hogan <james.hogan@imgtec.com>
6617 L:      linux-metag@vger.kernel.org
6618 S:      Supported
6619 F:      arch/metag/
6620 F:      Documentation/metag/
6621 F:      Documentation/devicetree/bindings/metag/
6622 F:      drivers/clocksource/metag_generic.c
6623 F:      drivers/irqchip/irq-metag.c
6624 F:      drivers/irqchip/irq-metag-ext.c
6625 F:      drivers/tty/metag_da.c
6626
6627 MICROBLAZE ARCHITECTURE
6628 M:      Michal Simek <monstr@monstr.eu>
6629 W:      http://www.monstr.eu/fdt/
6630 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6631 S:      Supported
6632 F:      arch/microblaze/
6633
6634 MICROTEK X6 SCANNER
6635 M:      Oliver Neukum <oliver@neukum.org>
6636 S:      Maintained
6637 F:      drivers/usb/image/microtek.*
6638
6639 MIPS
6640 M:      Ralf Baechle <ralf@linux-mips.org>
6641 L:      linux-mips@linux-mips.org
6642 W:      http://www.linux-mips.org/
6643 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6644 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6645 S:      Supported
6646 F:      Documentation/mips/
6647 F:      arch/mips/
6648
6649 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6650 M:      Hans Verkuil <hverkuil@xs4all.nl>
6651 L:      linux-media@vger.kernel.org
6652 T:      git git://linuxtv.org/media_tree.git
6653 W:      http://linuxtv.org
6654 S:      Odd Fixes
6655 F:      drivers/media/radio/radio-miropcm20*
6656
6657 Mellanox MLX5 core VPI driver
6658 M:      Eli Cohen <eli@mellanox.com>
6659 L:      netdev@vger.kernel.org
6660 L:      linux-rdma@vger.kernel.org
6661 W:      http://www.mellanox.com
6662 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6663 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6664 T:      git git://openfabrics.org/~eli/connect-ib.git
6665 S:      Supported
6666 F:      drivers/net/ethernet/mellanox/mlx5/core/
6667 F:      include/linux/mlx5/
6668
6669 Mellanox MLX5 IB driver
6670 M:      Eli Cohen <eli@mellanox.com>
6671 L:      linux-rdma@vger.kernel.org
6672 W:      http://www.mellanox.com
6673 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6674 T:      git git://openfabrics.org/~eli/connect-ib.git
6675 S:      Supported
6676 F:      include/linux/mlx5/
6677 F:      drivers/infiniband/hw/mlx5/
6678
6679 MN88472 MEDIA DRIVER
6680 M:      Antti Palosaari <crope@iki.fi>
6681 L:      linux-media@vger.kernel.org
6682 W:      http://linuxtv.org/
6683 W:      http://palosaari.fi/linux/
6684 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6685 T:      git git://linuxtv.org/anttip/media_tree.git
6686 S:      Maintained
6687 F:      drivers/staging/media/mn88472/
6688 F:      drivers/media/dvb-frontends/mn88472.h
6689
6690 MN88473 MEDIA DRIVER
6691 M:      Antti Palosaari <crope@iki.fi>
6692 L:      linux-media@vger.kernel.org
6693 W:      http://linuxtv.org/
6694 W:      http://palosaari.fi/linux/
6695 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6696 T:      git git://linuxtv.org/anttip/media_tree.git
6697 S:      Maintained
6698 F:      drivers/staging/media/mn88473/
6699 F:      drivers/media/dvb-frontends/mn88473.h
6700
6701 MODULE SUPPORT
6702 M:      Rusty Russell <rusty@rustcorp.com.au>
6703 S:      Maintained
6704 F:      include/linux/module.h
6705 F:      kernel/module.c
6706
6707 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6708 W:      http://popies.net/meye/
6709 S:      Orphan
6710 F:      Documentation/video4linux/meye.txt
6711 F:      drivers/media/pci/meye/
6712 F:      include/uapi/linux/meye.h
6713
6714 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6715 M:      Jiri Slaby <jirislaby@gmail.com>
6716 S:      Maintained
6717 F:      Documentation/serial/moxa-smartio
6718 F:      drivers/tty/mxser.*
6719
6720 MR800 AVERMEDIA USB FM RADIO DRIVER
6721 M:      Alexey Klimov <klimov.linux@gmail.com>
6722 L:      linux-media@vger.kernel.org
6723 T:      git git://linuxtv.org/media_tree.git
6724 S:      Maintained
6725 F:      drivers/media/radio/radio-mr800.c
6726
6727 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6728 M:      Alan Ott <alan@signal11.us>
6729 L:      linux-wpan@vger.kernel.org
6730 S:      Maintained
6731 F:      drivers/net/ieee802154/mrf24j40.c
6732
6733 MSI LAPTOP SUPPORT
6734 M:      "Lee, Chun-Yi" <jlee@suse.com>
6735 L:      platform-driver-x86@vger.kernel.org
6736 S:      Maintained
6737 F:      drivers/platform/x86/msi-laptop.c
6738
6739 MSI WMI SUPPORT
6740 M:      Anisse Astier <anisse@astier.eu>
6741 L:      platform-driver-x86@vger.kernel.org
6742 S:      Supported
6743 F:      drivers/platform/x86/msi-wmi.c
6744
6745 MSI001 MEDIA DRIVER
6746 M:      Antti Palosaari <crope@iki.fi>
6747 L:      linux-media@vger.kernel.org
6748 W:      http://linuxtv.org/
6749 W:      http://palosaari.fi/linux/
6750 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6751 T:      git git://linuxtv.org/anttip/media_tree.git
6752 S:      Maintained
6753 F:      drivers/media/tuners/msi001*
6754
6755 MSI2500 MEDIA DRIVER
6756 M:      Antti Palosaari <crope@iki.fi>
6757 L:      linux-media@vger.kernel.org
6758 W:      http://linuxtv.org/
6759 W:      http://palosaari.fi/linux/
6760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6761 T:      git git://linuxtv.org/anttip/media_tree.git
6762 S:      Maintained
6763 F:      drivers/media/usb/msi2500/
6764
6765 MT9M032 APTINA SENSOR DRIVER
6766 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6767 L:      linux-media@vger.kernel.org
6768 T:      git git://linuxtv.org/media_tree.git
6769 S:      Maintained
6770 F:      drivers/media/i2c/mt9m032.c
6771 F:      include/media/mt9m032.h
6772
6773 MT9P031 APTINA CAMERA SENSOR
6774 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6775 L:      linux-media@vger.kernel.org
6776 T:      git git://linuxtv.org/media_tree.git
6777 S:      Maintained
6778 F:      drivers/media/i2c/mt9p031.c
6779 F:      include/media/mt9p031.h
6780
6781 MT9T001 APTINA CAMERA SENSOR
6782 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6783 L:      linux-media@vger.kernel.org
6784 T:      git git://linuxtv.org/media_tree.git
6785 S:      Maintained
6786 F:      drivers/media/i2c/mt9t001.c
6787 F:      include/media/mt9t001.h
6788
6789 MT9V032 APTINA CAMERA SENSOR
6790 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6791 L:      linux-media@vger.kernel.org
6792 T:      git git://linuxtv.org/media_tree.git
6793 S:      Maintained
6794 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
6795 F:      drivers/media/i2c/mt9v032.c
6796 F:      include/media/mt9v032.h
6797
6798 MULTIFUNCTION DEVICES (MFD)
6799 M:      Samuel Ortiz <sameo@linux.intel.com>
6800 M:      Lee Jones <lee.jones@linaro.org>
6801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
6802 S:      Supported
6803 F:      drivers/mfd/
6804 F:      include/linux/mfd/
6805
6806 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
6807 M:      Ulf Hansson <ulf.hansson@linaro.org>
6808 L:      linux-mmc@vger.kernel.org
6809 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
6810 S:      Maintained
6811 F:      drivers/mmc/
6812 F:      include/linux/mmc/
6813 F:      include/uapi/linux/mmc/
6814
6815 MULTIMEDIA CARD (MMC) ETC. OVER SPI
6816 S:      Orphan
6817 F:      drivers/mmc/host/mmc_spi.c
6818 F:      include/linux/spi/mmc_spi.h
6819
6820 MULTISOUND SOUND DRIVER
6821 M:      Andrew Veliath <andrewtv@usa.net>
6822 S:      Maintained
6823 F:      Documentation/sound/oss/MultiSound
6824 F:      sound/oss/msnd*
6825
6826 MULTITECH MULTIPORT CARD (ISICOM)
6827 S:      Orphan
6828 F:      drivers/tty/isicom.c
6829 F:      include/linux/isicom.h
6830
6831 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
6832 M:      Felipe Balbi <balbi@ti.com>
6833 L:      linux-usb@vger.kernel.org
6834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6835 S:      Maintained
6836 F:      drivers/usb/musb/
6837
6838 MXL5007T MEDIA DRIVER
6839 M:      Michael Krufky <mkrufky@linuxtv.org>
6840 L:      linux-media@vger.kernel.org
6841 W:      http://linuxtv.org/
6842 W:      http://github.com/mkrufky
6843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6844 T:      git git://linuxtv.org/mkrufky/tuners.git
6845 S:      Maintained
6846 F:      drivers/media/tuners/mxl5007t.*
6847
6848 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
6849 M:      Hyong-Youb Kim <hykim@myri.com>
6850 L:      netdev@vger.kernel.org
6851 W:      https://www.myricom.com/support/downloads/myri10ge.html
6852 S:      Supported
6853 F:      drivers/net/ethernet/myricom/myri10ge/
6854
6855 NATSEMI ETHERNET DRIVER (DP8381x)
6856 S:      Orphan
6857 F:      drivers/net/ethernet/natsemi/natsemi.c
6858
6859 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
6860 M:      Daniel Mack <zonque@gmail.com>
6861 S:      Maintained
6862 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6863 W:      http://www.native-instruments.com
6864 F:      sound/usb/caiaq/
6865
6866 NCP FILESYSTEM
6867 M:      Petr Vandrovec <petr@vandrovec.name>
6868 S:      Odd Fixes
6869 F:      fs/ncpfs/
6870
6871 NCR 5380 SCSI DRIVERS
6872 M:      Finn Thain <fthain@telegraphics.com.au>
6873 M:      Michael Schmitz <schmitzmic@gmail.com>
6874 L:      linux-scsi@vger.kernel.org
6875 S:      Maintained
6876 F:      Documentation/scsi/g_NCR5380.txt
6877 F:      drivers/scsi/NCR5380.*
6878 F:      drivers/scsi/arm/cumana_1.c
6879 F:      drivers/scsi/arm/oak.c
6880 F:      drivers/scsi/atari_NCR5380.c
6881 F:      drivers/scsi/atari_scsi.*
6882 F:      drivers/scsi/dmx3191d.c
6883 F:      drivers/scsi/dtc.*
6884 F:      drivers/scsi/g_NCR5380.*
6885 F:      drivers/scsi/g_NCR5380_mmio.c
6886 F:      drivers/scsi/mac_scsi.*
6887 F:      drivers/scsi/pas16.*
6888 F:      drivers/scsi/sun3_scsi.*
6889 F:      drivers/scsi/sun3_scsi_vme.c
6890 F:      drivers/scsi/t128.*
6891
6892 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
6893 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6894 L:      linux-scsi@vger.kernel.org
6895 S:      Maintained
6896 F:      drivers/scsi/NCR_D700.*
6897
6898 NCT6775 HARDWARE MONITOR DRIVER
6899 M:      Guenter Roeck <linux@roeck-us.net>
6900 L:      lm-sensors@lm-sensors.org
6901 S:      Maintained
6902 F:      Documentation/hwmon/nct6775
6903 F:      drivers/hwmon/nct6775.c
6904
6905 NETEFFECT IWARP RNIC DRIVER (IW_NES)
6906 M:      Faisal Latif <faisal.latif@intel.com>
6907 L:      linux-rdma@vger.kernel.org
6908 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
6909 S:      Supported
6910 F:      drivers/infiniband/hw/nes/
6911
6912 NETEM NETWORK EMULATOR
6913 M:      Stephen Hemminger <stephen@networkplumber.org>
6914 L:      netem@lists.linux-foundation.org
6915 S:      Maintained
6916 F:      net/sched/sch_netem.c
6917
6918 NETERION 10GbE DRIVERS (s2io/vxge)
6919 M:      Jon Mason <jdmason@kudzu.us>
6920 L:      netdev@vger.kernel.org
6921 S:      Supported
6922 F:      Documentation/networking/s2io.txt
6923 F:      Documentation/networking/vxge.txt
6924 F:      drivers/net/ethernet/neterion/
6925
6926 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
6927 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6928 M:      Patrick McHardy <kaber@trash.net>
6929 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
6930 L:      netfilter-devel@vger.kernel.org
6931 L:      coreteam@netfilter.org
6932 W:      http://www.netfilter.org/
6933 W:      http://www.iptables.org/
6934 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
6935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
6936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
6937 S:      Supported
6938 F:      include/linux/netfilter*
6939 F:      include/linux/netfilter/
6940 F:      include/net/netfilter/
6941 F:      include/uapi/linux/netfilter*
6942 F:      include/uapi/linux/netfilter/
6943 F:      net/*/netfilter.c
6944 F:      net/*/netfilter/
6945 F:      net/netfilter/
6946
6947 NETLABEL
6948 M:      Paul Moore <paul@paul-moore.com>
6949 W:      http://netlabel.sf.net
6950 L:      netdev@vger.kernel.org
6951 S:      Maintained
6952 F:      Documentation/netlabel/
6953 F:      include/net/netlabel.h
6954 F:      net/netlabel/
6955
6956 NETROM NETWORK LAYER
6957 M:      Ralf Baechle <ralf@linux-mips.org>
6958 L:      linux-hams@vger.kernel.org
6959 W:      http://www.linux-ax25.org/
6960 S:      Maintained
6961 F:      include/net/netrom.h
6962 F:      include/uapi/linux/netrom.h
6963 F:      net/netrom/
6964
6965 NETWORK BLOCK DEVICE (NBD)
6966 M:      Markus Pargmann <mpa@pengutronix.de>
6967 S:      Maintained
6968 L:      nbd-general@lists.sourceforge.net
6969 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
6970 F:      Documentation/blockdev/nbd.txt
6971 F:      drivers/block/nbd.c
6972 F:      include/linux/nbd.h
6973 F:      include/uapi/linux/nbd.h
6974
6975 NETWORK DROP MONITOR
6976 M:      Neil Horman <nhorman@tuxdriver.com>
6977 L:      netdev@vger.kernel.org
6978 S:      Maintained
6979 W:      https://fedorahosted.org/dropwatch/
6980 F:      net/core/drop_monitor.c
6981
6982 NETWORKING [GENERAL]
6983 M:      "David S. Miller" <davem@davemloft.net>
6984 L:      netdev@vger.kernel.org
6985 W:      http://www.linuxfoundation.org/en/Net
6986 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6989 S:      Maintained
6990 F:      net/
6991 F:      include/net/
6992 F:      include/linux/in.h
6993 F:      include/linux/net.h
6994 F:      include/linux/netdevice.h
6995 F:      include/uapi/linux/in.h
6996 F:      include/uapi/linux/net.h
6997 F:      include/uapi/linux/netdevice.h
6998 F:      include/uapi/linux/net_namespace.h
6999 F:      tools/net/
7000 F:      tools/testing/selftests/net/
7001 F:      lib/random32.c
7002 F:      lib/test_bpf.c
7003
7004 NETWORKING [IPv4/IPv6]
7005 M:      "David S. Miller" <davem@davemloft.net>
7006 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7007 M:      James Morris <jmorris@namei.org>
7008 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7009 M:      Patrick McHardy <kaber@trash.net>
7010 L:      netdev@vger.kernel.org
7011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7012 S:      Maintained
7013 F:      net/ipv4/
7014 F:      net/ipv6/
7015 F:      include/net/ip*
7016 F:      arch/x86/net/*
7017
7018 NETWORKING [IPSEC]
7019 M:      Steffen Klassert <steffen.klassert@secunet.com>
7020 M:      Herbert Xu <herbert@gondor.apana.org.au>
7021 M:      "David S. Miller" <davem@davemloft.net>
7022 L:      netdev@vger.kernel.org
7023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7025 S:      Maintained
7026 F:      net/core/flow.c
7027 F:      net/xfrm/
7028 F:      net/key/
7029 F:      net/ipv4/xfrm*
7030 F:      net/ipv4/esp4.c
7031 F:      net/ipv4/ah4.c
7032 F:      net/ipv4/ipcomp.c
7033 F:      net/ipv4/ip_vti.c
7034 F:      net/ipv6/xfrm*
7035 F:      net/ipv6/esp6.c
7036 F:      net/ipv6/ah6.c
7037 F:      net/ipv6/ipcomp6.c
7038 F:      net/ipv6/ip6_vti.c
7039 F:      include/uapi/linux/xfrm.h
7040 F:      include/net/xfrm.h
7041
7042 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7043 M:      Paul Moore <paul@paul-moore.com>
7044 L:      netdev@vger.kernel.org
7045 S:      Maintained
7046
7047 NETWORKING [WIRELESS]
7048 L:      linux-wireless@vger.kernel.org
7049 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7050
7051 NETWORKING DRIVERS
7052 L:      netdev@vger.kernel.org
7053 W:      http://www.linuxfoundation.org/en/Net
7054 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7057 S:      Odd Fixes
7058 F:      drivers/net/
7059 F:      include/linux/if_*
7060 F:      include/linux/netdevice.h
7061 F:      include/linux/arcdevice.h
7062 F:      include/linux/etherdevice.h
7063 F:      include/linux/fcdevice.h
7064 F:      include/linux/fddidevice.h
7065 F:      include/linux/hippidevice.h
7066 F:      include/linux/inetdevice.h
7067 F:      include/uapi/linux/if_*
7068 F:      include/uapi/linux/netdevice.h
7069
7070 NETWORKING DRIVERS (WIRELESS)
7071 M:      Kalle Valo <kvalo@codeaurora.org>
7072 L:      linux-wireless@vger.kernel.org
7073 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7075 S:      Maintained
7076 F:      drivers/net/wireless/
7077
7078 NETXEN (1/10) GbE SUPPORT
7079 M:      Manish Chopra <manish.chopra@qlogic.com>
7080 M:      Sony Chacko <sony.chacko@qlogic.com>
7081 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7082 L:      netdev@vger.kernel.org
7083 W:      http://www.qlogic.com
7084 S:      Supported
7085 F:      drivers/net/ethernet/qlogic/netxen/
7086
7087 NFC SUBSYSTEM
7088 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7089 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7090 M:      Samuel Ortiz <sameo@linux.intel.com>
7091 L:      linux-wireless@vger.kernel.org
7092 L:      linux-nfc@lists.01.org (subscribers-only)
7093 S:      Supported
7094 F:      net/nfc/
7095 F:      include/net/nfc/
7096 F:      include/uapi/linux/nfc.h
7097 F:      drivers/nfc/
7098 F:      include/linux/platform_data/pn544.h
7099 F:      Documentation/devicetree/bindings/net/nfc/
7100
7101 NFS, SUNRPC, AND LOCKD CLIENTS
7102 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7103 M:      Anna Schumaker <anna.schumaker@netapp.com>
7104 L:      linux-nfs@vger.kernel.org
7105 W:      http://client.linux-nfs.org
7106 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7107 S:      Maintained
7108 F:      fs/lockd/
7109 F:      fs/nfs/
7110 F:      fs/nfs_common/
7111 F:      net/sunrpc/
7112 F:      include/linux/lockd/
7113 F:      include/linux/nfs*
7114 F:      include/linux/sunrpc/
7115 F:      include/uapi/linux/nfs*
7116 F:      include/uapi/linux/sunrpc/
7117
7118 NILFS2 FILESYSTEM
7119 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7120 L:      linux-nilfs@vger.kernel.org
7121 W:      http://nilfs.sourceforge.net/
7122 T:      git git://github.com/konis/nilfs2.git
7123 S:      Supported
7124 F:      Documentation/filesystems/nilfs2.txt
7125 F:      fs/nilfs2/
7126 F:      include/linux/nilfs2_fs.h
7127
7128 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7129 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7130 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7131 S:      Maintained
7132 F:      Documentation/scsi/NinjaSCSI.txt
7133 F:      drivers/scsi/pcmcia/nsp_*
7134
7135 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7136 M:      GOTO Masanori <gotom@debian.or.jp>
7137 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7138 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7139 S:      Maintained
7140 F:      Documentation/scsi/NinjaSCSI.txt
7141 F:      drivers/scsi/nsp32*
7142
7143 NIOS2 ARCHITECTURE
7144 M:      Ley Foon Tan <lftan@altera.com>
7145 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7146 T:      git git://git.rocketboards.org/linux-socfpga-next.git
7147 S:      Maintained
7148 F:      arch/nios2/
7149
7150 NOKIA N900 POWER SUPPLY DRIVERS
7151 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7152 S:      Maintained
7153 F:      include/linux/power/bq2415x_charger.h
7154 F:      include/linux/power/bq27x00_battery.h
7155 F:      include/linux/power/isp1704_charger.h
7156 F:      drivers/power/bq2415x_charger.c
7157 F:      drivers/power/bq27x00_battery.c
7158 F:      drivers/power/isp1704_charger.c
7159 F:      drivers/power/rx51_battery.c
7160
7161 NTB DRIVER
7162 M:      Jon Mason <jdmason@kudzu.us>
7163 M:      Dave Jiang <dave.jiang@intel.com>
7164 S:      Supported
7165 W:      https://github.com/jonmason/ntb/wiki
7166 T:      git git://github.com/jonmason/ntb.git
7167 F:      drivers/ntb/
7168 F:      drivers/net/ntb_netdev.c
7169 F:      include/linux/ntb.h
7170
7171 NTFS FILESYSTEM
7172 M:      Anton Altaparmakov <anton@tuxera.com>
7173 L:      linux-ntfs-dev@lists.sourceforge.net
7174 W:      http://www.tuxera.com/
7175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7176 S:      Supported
7177 F:      Documentation/filesystems/ntfs.txt
7178 F:      fs/ntfs/
7179
7180 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7181 M:      Antonino Daplas <adaplas@gmail.com>
7182 L:      linux-fbdev@vger.kernel.org
7183 S:      Maintained
7184 F:      drivers/video/fbdev/riva/
7185 F:      drivers/video/fbdev/nvidia/
7186
7187 NVM EXPRESS DRIVER
7188 M:      Matthew Wilcox <willy@linux.intel.com>
7189 L:      linux-nvme@lists.infradead.org
7190 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7191 S:      Supported
7192 F:      drivers/block/nvme*
7193 F:      include/linux/nvme.h
7194
7195 NXP-NCI NFC DRIVER
7196 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7197 R:      Charles Gorand <charles.gorand@effinnov.com>
7198 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7199 S:      Supported
7200 F:      drivers/nfc/nxp-nci
7201
7202 NXP TDA998X DRM DRIVER
7203 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7204 S:      Supported
7205 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7206 F:      include/drm/i2c/tda998x.h
7207
7208 NXP TFA9879 DRIVER
7209 M:      Peter Rosin <peda@axentia.se>
7210 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7211 S:      Maintained
7212 F:      sound/soc/codecs/tfa9879*
7213
7214 OMAP SUPPORT
7215 M:      Tony Lindgren <tony@atomide.com>
7216 L:      linux-omap@vger.kernel.org
7217 W:      http://www.muru.com/linux/omap/
7218 W:      http://linux.omap.com/
7219 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7221 S:      Maintained
7222 F:      arch/arm/*omap*/
7223 F:      arch/arm/configs/omap1_defconfig
7224 F:      arch/arm/configs/omap2plus_defconfig
7225 F:      drivers/i2c/busses/i2c-omap.c
7226 F:      drivers/irqchip/irq-omap-intc.c
7227 F:      drivers/mfd/*omap*.c
7228 F:      drivers/mfd/menelaus.c
7229 F:      drivers/mfd/palmas.c
7230 F:      drivers/mfd/tps65217.c
7231 F:      drivers/mfd/tps65218.c
7232 F:      drivers/mfd/tps65910.c
7233 F:      drivers/mfd/twl-core.[ch]
7234 F:      drivers/mfd/twl4030*.c
7235 F:      drivers/mfd/twl6030*.c
7236 F:      drivers/mfd/twl6040*.c
7237 F:      drivers/regulator/palmas-regulator*.c
7238 F:      drivers/regulator/pbias-regulator.c
7239 F:      drivers/regulator/tps65217-regulator.c
7240 F:      drivers/regulator/tps65218-regulator.c
7241 F:      drivers/regulator/tps65910-regulator.c
7242 F:      drivers/regulator/twl-regulator.c
7243 F:      include/linux/i2c-omap.h
7244
7245 OMAP DEVICE TREE SUPPORT
7246 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7247 M:      Tony Lindgren <tony@atomide.com>
7248 L:      linux-omap@vger.kernel.org
7249 L:      devicetree@vger.kernel.org
7250 S:      Maintained
7251 F:      arch/arm/boot/dts/*omap*
7252 F:      arch/arm/boot/dts/*am3*
7253 F:      arch/arm/boot/dts/*am4*
7254 F:      arch/arm/boot/dts/*am5*
7255 F:      arch/arm/boot/dts/*dra7*
7256
7257 OMAP CLOCK FRAMEWORK SUPPORT
7258 M:      Paul Walmsley <paul@pwsan.com>
7259 L:      linux-omap@vger.kernel.org
7260 S:      Maintained
7261 F:      arch/arm/*omap*/*clock*
7262
7263 OMAP POWER MANAGEMENT SUPPORT
7264 M:      Kevin Hilman <khilman@deeprootsystems.com>
7265 L:      linux-omap@vger.kernel.org
7266 S:      Maintained
7267 F:      arch/arm/*omap*/*pm*
7268 F:      drivers/cpufreq/omap-cpufreq.c
7269
7270 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7271 M:      Rajendra Nayak <rnayak@ti.com>
7272 M:      Paul Walmsley <paul@pwsan.com>
7273 L:      linux-omap@vger.kernel.org
7274 S:      Maintained
7275 F:      arch/arm/mach-omap2/prm*
7276
7277 OMAP AUDIO SUPPORT
7278 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7279 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7280 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7281 L:      linux-omap@vger.kernel.org
7282 S:      Maintained
7283 F:      sound/soc/omap/
7284
7285 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7286 M:      Roger Quadros <rogerq@ti.com>
7287 M:      Tony Lindgren <tony@atomide.com>
7288 L:      linux-omap@vger.kernel.org
7289 S:      Maintained
7290 F:      drivers/memory/omap-gpmc.c
7291 F:      arch/arm/mach-omap2/*gpmc*
7292
7293 OMAP FRAMEBUFFER SUPPORT
7294 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7295 L:      linux-fbdev@vger.kernel.org
7296 L:      linux-omap@vger.kernel.org
7297 S:      Maintained
7298 F:      drivers/video/fbdev/omap/
7299
7300 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7301 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7302 L:      linux-omap@vger.kernel.org
7303 L:      linux-fbdev@vger.kernel.org
7304 S:      Maintained
7305 F:      drivers/video/fbdev/omap2/
7306 F:      Documentation/arm/OMAP/DSS
7307
7308 OMAP HARDWARE SPINLOCK SUPPORT
7309 M:      Ohad Ben-Cohen <ohad@wizery.com>
7310 L:      linux-omap@vger.kernel.org
7311 S:      Maintained
7312 F:      drivers/hwspinlock/omap_hwspinlock.c
7313 F:      arch/arm/mach-omap2/hwspinlock.c
7314
7315 OMAP MMC SUPPORT
7316 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7317 L:      linux-omap@vger.kernel.org
7318 S:      Maintained
7319 F:      drivers/mmc/host/omap.c
7320
7321 OMAP HS MMC SUPPORT
7322 L:      linux-mmc@vger.kernel.org
7323 L:      linux-omap@vger.kernel.org
7324 S:      Orphan
7325 F:      drivers/mmc/host/omap_hsmmc.c
7326
7327 OMAP RANDOM NUMBER GENERATOR SUPPORT
7328 M:      Deepak Saxena <dsaxena@plexity.net>
7329 S:      Maintained
7330 F:      drivers/char/hw_random/omap-rng.c
7331
7332 OMAP HWMOD SUPPORT
7333 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7334 M:      Paul Walmsley <paul@pwsan.com>
7335 L:      linux-omap@vger.kernel.org
7336 S:      Maintained
7337 F:      arch/arm/mach-omap2/omap_hwmod.*
7338
7339 OMAP HWMOD DATA
7340 M:      Paul Walmsley <paul@pwsan.com>
7341 L:      linux-omap@vger.kernel.org
7342 S:      Maintained
7343 F:      arch/arm/mach-omap2/omap_hwmod*data*
7344
7345 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7346 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7347 L:      linux-omap@vger.kernel.org
7348 S:      Maintained
7349 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7350
7351 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7352 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7353 L:      linux-media@vger.kernel.org
7354 S:      Maintained
7355 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7356 F:      drivers/media/platform/omap3isp/
7357 F:      drivers/staging/media/omap4iss/
7358
7359 OMAP USB SUPPORT
7360 M:      Felipe Balbi <balbi@ti.com>
7361 L:      linux-usb@vger.kernel.org
7362 L:      linux-omap@vger.kernel.org
7363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7364 S:      Maintained
7365 F:      drivers/usb/*/*omap*
7366 F:      arch/arm/*omap*/usb*
7367
7368 OMAP GPIO DRIVER
7369 M:      Javier Martinez Canillas <javier@dowhile0.org>
7370 M:      Santosh Shilimkar <ssantosh@kernel.org>
7371 M:      Kevin Hilman <khilman@deeprootsystems.com>
7372 L:      linux-omap@vger.kernel.org
7373 S:      Maintained
7374 F:      drivers/gpio/gpio-omap.c
7375
7376 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7377 M:      Mark Jackson <mpfj@newflow.co.uk>
7378 L:      linux-omap@vger.kernel.org
7379 S:      Maintained
7380 F:      arch/arm/boot/dts/am335x-nano.dts
7381
7382 OMFS FILESYSTEM
7383 M:      Bob Copeland <me@bobcopeland.com>
7384 L:      linux-karma-devel@lists.sourceforge.net
7385 S:      Maintained
7386 F:      Documentation/filesystems/omfs.txt
7387 F:      fs/omfs/
7388
7389 OMNIKEY CARDMAN 4000 DRIVER
7390 M:      Harald Welte <laforge@gnumonks.org>
7391 S:      Maintained
7392 F:      drivers/char/pcmcia/cm4000_cs.c
7393 F:      include/linux/cm4000_cs.h
7394 F:      include/uapi/linux/cm4000_cs.h
7395
7396 OMNIKEY CARDMAN 4040 DRIVER
7397 M:      Harald Welte <laforge@gnumonks.org>
7398 S:      Maintained
7399 F:      drivers/char/pcmcia/cm4040_cs.*
7400
7401 OMNIVISION OV7670 SENSOR DRIVER
7402 M:      Jonathan Corbet <corbet@lwn.net>
7403 L:      linux-media@vger.kernel.org
7404 T:      git git://linuxtv.org/media_tree.git
7405 S:      Maintained
7406 F:      drivers/media/i2c/ov7670.c
7407
7408 ONENAND FLASH DRIVER
7409 M:      Kyungmin Park <kyungmin.park@samsung.com>
7410 L:      linux-mtd@lists.infradead.org
7411 S:      Maintained
7412 F:      drivers/mtd/onenand/
7413 F:      include/linux/mtd/onenand*.h
7414
7415 ONSTREAM SCSI TAPE DRIVER
7416 M:      Willem Riede <osst@riede.org>
7417 L:      osst-users@lists.sourceforge.net
7418 L:      linux-scsi@vger.kernel.org
7419 S:      Maintained
7420 F:      Documentation/scsi/osst.txt
7421 F:      drivers/scsi/osst.*
7422 F:      drivers/scsi/osst_*.h
7423 F:      drivers/scsi/st.h
7424
7425 OPENCORES I2C BUS DRIVER
7426 M:      Peter Korsgaard <jacmet@sunsite.dk>
7427 L:      linux-i2c@vger.kernel.org
7428 S:      Maintained
7429 F:      Documentation/i2c/busses/i2c-ocores
7430 F:      drivers/i2c/busses/i2c-ocores.c
7431
7432 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7433 M:      Grant Likely <grant.likely@linaro.org>
7434 M:      Rob Herring <robh+dt@kernel.org>
7435 L:      devicetree@vger.kernel.org
7436 W:      http://www.devicetree.org/
7437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7438 S:      Maintained
7439 F:      drivers/of/
7440 F:      include/linux/of*.h
7441 F:      scripts/dtc/
7442
7443 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7444 M:      Rob Herring <robh+dt@kernel.org>
7445 M:      Pawel Moll <pawel.moll@arm.com>
7446 M:      Mark Rutland <mark.rutland@arm.com>
7447 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7448 M:      Kumar Gala <galak@codeaurora.org>
7449 L:      devicetree@vger.kernel.org
7450 S:      Maintained
7451 F:      Documentation/devicetree/
7452 F:      arch/*/boot/dts/
7453 F:      include/dt-bindings/
7454
7455 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7456 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7457 L:      devicetree@vger.kernel.org
7458 S:      Maintained
7459 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7460 F:      Documentation/devicetree/overlay-notes.txt
7461 F:      drivers/of/overlay.c
7462 F:      drivers/of/resolver.c
7463
7464 OPENRISC ARCHITECTURE
7465 M:      Jonas Bonn <jonas@southpole.se>
7466 W:      http://openrisc.net
7467 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7468 S:      Maintained
7469 T:      git git://openrisc.net/~jonas/linux
7470 F:      arch/openrisc/
7471
7472 OPENVSWITCH
7473 M:      Pravin Shelar <pshelar@nicira.com>
7474 L:      netdev@vger.kernel.org
7475 L:      dev@openvswitch.org
7476 W:      http://openvswitch.org
7477 S:      Maintained
7478 F:      net/openvswitch/
7479 F:      include/uapi/linux/openvswitch.h
7480
7481 OPL4 DRIVER
7482 M:      Clemens Ladisch <clemens@ladisch.de>
7483 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7484 T:      git git://git.alsa-project.org/alsa-kernel.git
7485 S:      Maintained
7486 F:      sound/drivers/opl4/
7487
7488 OPROFILE
7489 M:      Robert Richter <rric@kernel.org>
7490 L:      oprofile-list@lists.sf.net
7491 S:      Maintained
7492 F:      arch/*/include/asm/oprofile*.h
7493 F:      arch/*/oprofile/
7494 F:      drivers/oprofile/
7495 F:      include/linux/oprofile.h
7496
7497 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7498 M:      Mark Fasheh <mfasheh@suse.com>
7499 M:      Joel Becker <jlbec@evilplan.org>
7500 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7501 W:      http://ocfs2.wiki.kernel.org
7502 S:      Supported
7503 F:      Documentation/filesystems/ocfs2.txt
7504 F:      Documentation/filesystems/dlmfs.txt
7505 F:      fs/ocfs2/
7506
7507 ORINOCO DRIVER
7508 L:      linux-wireless@vger.kernel.org
7509 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7510 W:      http://www.nongnu.org/orinoco/
7511 S:      Orphan
7512 F:      drivers/net/wireless/orinoco/
7513
7514 OSD LIBRARY and FILESYSTEM
7515 M:      Boaz Harrosh <ooo@electrozaur.com>
7516 M:      Benny Halevy <bhalevy@primarydata.com>
7517 L:      osd-dev@open-osd.org
7518 W:      http://open-osd.org
7519 T:      git git://git.open-osd.org/open-osd.git
7520 S:      Maintained
7521 F:      drivers/scsi/osd/
7522 F:      include/scsi/osd_*
7523 F:      fs/exofs/
7524
7525 OVERLAY FILESYSTEM
7526 M:      Miklos Szeredi <miklos@szeredi.hu>
7527 L:      linux-unionfs@vger.kernel.org
7528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7529 S:      Supported
7530 F:      fs/overlayfs/
7531 F:      Documentation/filesystems/overlayfs.txt
7532
7533 P54 WIRELESS DRIVER
7534 M:      Christian Lamparter <chunkeey@googlemail.com>
7535 L:      linux-wireless@vger.kernel.org
7536 W:      http://wireless.kernel.org/en/users/Drivers/p54
7537 S:      Maintained
7538 F:      drivers/net/wireless/p54/
7539
7540 PA SEMI ETHERNET DRIVER
7541 M:      Olof Johansson <olof@lixom.net>
7542 L:      netdev@vger.kernel.org
7543 S:      Maintained
7544 F:      drivers/net/ethernet/pasemi/*
7545
7546 PA SEMI SMBUS DRIVER
7547 M:      Olof Johansson <olof@lixom.net>
7548 L:      linux-i2c@vger.kernel.org
7549 S:      Maintained
7550 F:      drivers/i2c/busses/i2c-pasemi.c
7551
7552 PADATA PARALLEL EXECUTION MECHANISM
7553 M:      Steffen Klassert <steffen.klassert@secunet.com>
7554 L:      linux-crypto@vger.kernel.org
7555 S:      Maintained
7556 F:      kernel/padata.c
7557 F:      include/linux/padata.h
7558 F:      Documentation/padata.txt
7559
7560 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7561 M:      Harald Welte <laforge@gnumonks.org>
7562 L:      platform-driver-x86@vger.kernel.org
7563 S:      Maintained
7564 F:      drivers/platform/x86/panasonic-laptop.c
7565
7566 PANASONIC MN10300/AM33/AM34 PORT
7567 M:      David Howells <dhowells@redhat.com>
7568 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7569 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7570 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7571 S:      Maintained
7572 F:      Documentation/mn10300/
7573 F:      arch/mn10300/
7574
7575 PARALLEL PORT SUPPORT
7576 L:      linux-parport@lists.infradead.org (subscribers-only)
7577 S:      Orphan
7578 F:      drivers/parport/
7579 F:      include/linux/parport*.h
7580 F:      drivers/char/ppdev.c
7581 F:      include/uapi/linux/ppdev.h
7582
7583 PARAVIRT_OPS INTERFACE
7584 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7585 M:      Chris Wright <chrisw@sous-sol.org>
7586 M:      Alok Kataria <akataria@vmware.com>
7587 M:      Rusty Russell <rusty@rustcorp.com.au>
7588 L:      virtualization@lists.linux-foundation.org
7589 S:      Supported
7590 F:      Documentation/virtual/paravirt_ops.txt
7591 F:      arch/*/kernel/paravirt*
7592 F:      arch/*/include/asm/paravirt.h
7593
7594 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7595 M:      Tim Waugh <tim@cyberelk.net>
7596 L:      linux-parport@lists.infradead.org (subscribers-only)
7597 W:      http://www.torque.net/linux-pp.html
7598 S:      Maintained
7599 F:      Documentation/blockdev/paride.txt
7600 F:      drivers/block/paride/
7601
7602 PARISC ARCHITECTURE
7603 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7604 M:      Helge Deller <deller@gmx.de>
7605 L:      linux-parisc@vger.kernel.org
7606 W:      http://www.parisc-linux.org/
7607 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7610 S:      Maintained
7611 F:      arch/parisc/
7612 F:      Documentation/parisc/
7613 F:      drivers/parisc/
7614 F:      drivers/char/agp/parisc-agp.c
7615 F:      drivers/input/serio/gscps2.c
7616 F:      drivers/parport/parport_gsc.*
7617 F:      drivers/tty/serial/8250/8250_gsc.c
7618 F:      drivers/video/fbdev/sti*
7619 F:      drivers/video/console/sti*
7620 F:      drivers/video/logo/logo_parisc*
7621
7622 PC87360 HARDWARE MONITORING DRIVER
7623 M:      Jim Cromie <jim.cromie@gmail.com>
7624 L:      lm-sensors@lm-sensors.org
7625 S:      Maintained
7626 F:      Documentation/hwmon/pc87360
7627 F:      drivers/hwmon/pc87360.c
7628
7629 PC8736x GPIO DRIVER
7630 M:      Jim Cromie <jim.cromie@gmail.com>
7631 S:      Maintained
7632 F:      drivers/char/pc8736x_gpio.c
7633
7634 PC87427 HARDWARE MONITORING DRIVER
7635 M:      Jean Delvare <jdelvare@suse.de>
7636 L:      lm-sensors@lm-sensors.org
7637 S:      Maintained
7638 F:      Documentation/hwmon/pc87427
7639 F:      drivers/hwmon/pc87427.c
7640
7641 PCA9532 LED DRIVER
7642 M:      Riku Voipio <riku.voipio@iki.fi>
7643 S:      Maintained
7644 F:      drivers/leds/leds-pca9532.c
7645 F:      include/linux/leds-pca9532.h
7646
7647 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7648 M:      Guenter Roeck <linux@roeck-us.net>
7649 L:      linux-i2c@vger.kernel.org
7650 S:      Maintained
7651 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7652
7653 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7654 M:      Khalid Aziz <khalid@gonehiking.org>
7655 S:      Maintained
7656 F:      drivers/firmware/pcdp.*
7657
7658 PCI ERROR RECOVERY
7659 M:      Linas Vepstas <linasvepstas@gmail.com>
7660 L:      linux-pci@vger.kernel.org
7661 S:      Supported
7662 F:      Documentation/PCI/pci-error-recovery.txt
7663
7664 PCI SUBSYSTEM
7665 M:      Bjorn Helgaas <bhelgaas@google.com>
7666 L:      linux-pci@vger.kernel.org
7667 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7669 S:      Supported
7670 F:      Documentation/PCI/
7671 F:      drivers/pci/
7672 F:      include/linux/pci*
7673 F:      arch/x86/pci/
7674 F:      arch/x86/kernel/quirks.c
7675
7676 PCI DRIVER FOR ARM VERSATILE PLATFORM
7677 M:      Rob Herring <robh@kernel.org>
7678 L:      linux-pci@vger.kernel.org
7679 L:      linux-arm-kernel@lists.infradead.org
7680 S:      Maintained
7681 F:      Documentation/devicetree/bindings/pci/versatile.txt
7682 F:      drivers/pci/host/pci-versatile.c
7683
7684 PCI DRIVER FOR APPLIEDMICRO XGENE
7685 M:      Tanmay Inamdar <tinamdar@apm.com>
7686 L:      linux-pci@vger.kernel.org
7687 L:      linux-arm-kernel@lists.infradead.org
7688 S:      Maintained
7689 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7690 F:      drivers/pci/host/pci-xgene.c
7691
7692 PCI DRIVER FOR FREESCALE LAYERSCAPE
7693 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7694 M:      Mingkai Hu <mingkai.hu@freescale.com>
7695 M:      Roy Zang <tie-fei.zang@freescale.com>
7696 L:      linuxppc-dev@lists.ozlabs.org
7697 L:      linux-pci@vger.kernel.org
7698 L:      linux-arm-kernel@lists.infradead.org
7699 S:      Maintained
7700 F:      drivers/pci/host/*layerscape*
7701
7702 PCI DRIVER FOR IMX6
7703 M:      Richard Zhu <Richard.Zhu@freescale.com>
7704 M:      Lucas Stach <l.stach@pengutronix.de>
7705 L:      linux-pci@vger.kernel.org
7706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7707 S:      Maintained
7708 F:      drivers/pci/host/*imx6*
7709
7710 PCI DRIVER FOR TI KEYSTONE
7711 M:      Murali Karicheri <m-karicheri2@ti.com>
7712 L:      linux-pci@vger.kernel.org
7713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7714 S:      Maintained
7715 F:      drivers/pci/host/*keystone*
7716
7717 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7718 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7719 M:      Jason Cooper <jason@lakedaemon.net>
7720 L:      linux-pci@vger.kernel.org
7721 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7722 S:      Maintained
7723 F:      drivers/pci/host/*mvebu*
7724
7725 PCI DRIVER FOR NVIDIA TEGRA
7726 M:      Thierry Reding <thierry.reding@gmail.com>
7727 L:      linux-tegra@vger.kernel.org
7728 L:      linux-pci@vger.kernel.org
7729 S:      Supported
7730 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
7731 F:      drivers/pci/host/pci-tegra.c
7732
7733 PCI DRIVER FOR TI DRA7XX
7734 M:      Kishon Vijay Abraham I <kishon@ti.com>
7735 L:      linux-omap@vger.kernel.org
7736 L:      linux-pci@vger.kernel.org
7737 S:      Supported
7738 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
7739 F:      drivers/pci/host/pci-dra7xx.c
7740
7741 PCI DRIVER FOR RENESAS R-CAR
7742 M:      Simon Horman <horms@verge.net.au>
7743 L:      linux-pci@vger.kernel.org
7744 L:      linux-sh@vger.kernel.org
7745 S:      Maintained
7746 F:      drivers/pci/host/*rcar*
7747
7748 PCI DRIVER FOR SAMSUNG EXYNOS
7749 M:      Jingoo Han <jingoohan1@gmail.com>
7750 L:      linux-pci@vger.kernel.org
7751 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7752 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7753 S:      Maintained
7754 F:      drivers/pci/host/pci-exynos.c
7755
7756 PCI DRIVER FOR SYNOPSIS DESIGNWARE
7757 M:      Jingoo Han <jingoohan1@gmail.com>
7758 M:      Pratyush Anand <pratyush.anand@gmail.com>
7759 L:      linux-pci@vger.kernel.org
7760 S:      Maintained
7761 F:      drivers/pci/host/*designware*
7762
7763 PCI DRIVER FOR GENERIC OF HOSTS
7764 M:      Will Deacon <will.deacon@arm.com>
7765 L:      linux-pci@vger.kernel.org
7766 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7767 S:      Maintained
7768 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
7769 F:      drivers/pci/host/pci-host-generic.c
7770
7771 PCIE DRIVER FOR ST SPEAR13XX
7772 M:      Pratyush Anand <pratyush.anand@gmail.com>
7773 L:      linux-pci@vger.kernel.org
7774 S:      Maintained
7775 F:      drivers/pci/host/*spear*
7776
7777 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
7778 M:      Duc Dang <dhdang@apm.com>
7779 L:      linux-pci@vger.kernel.org
7780 L:      linux-arm-kernel@lists.infradead.org
7781 S:      Maintained
7782 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
7783 F:      drivers/pci/host/pci-xgene-msi.c
7784
7785 PCMCIA SUBSYSTEM
7786 P:      Linux PCMCIA Team
7787 L:      linux-pcmcia@lists.infradead.org
7788 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
7789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
7790 S:      Maintained
7791 F:      Documentation/pcmcia/
7792 F:      drivers/pcmcia/
7793 F:      include/pcmcia/
7794
7795 PCNET32 NETWORK DRIVER
7796 M:      Don Fry <pcnet32@frontier.com>
7797 L:      netdev@vger.kernel.org
7798 S:      Maintained
7799 F:      drivers/net/ethernet/amd/pcnet32.c
7800
7801 PCRYPT PARALLEL CRYPTO ENGINE
7802 M:      Steffen Klassert <steffen.klassert@secunet.com>
7803 L:      linux-crypto@vger.kernel.org
7804 S:      Maintained
7805 F:      crypto/pcrypt.c
7806 F:      include/crypto/pcrypt.h
7807
7808 PER-CPU MEMORY ALLOCATOR
7809 M:      Tejun Heo <tj@kernel.org>
7810 M:      Christoph Lameter <cl@linux-foundation.org>
7811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
7812 S:      Maintained
7813 F:      include/linux/percpu*.h
7814 F:      mm/percpu*.c
7815 F:      arch/*/include/asm/percpu.h
7816
7817 PER-TASK DELAY ACCOUNTING
7818 M:      Balbir Singh <bsingharora@gmail.com>
7819 S:      Maintained
7820 F:      include/linux/delayacct.h
7821 F:      kernel/delayacct.c
7822
7823 PERFORMANCE EVENTS SUBSYSTEM
7824 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
7825 M:      Ingo Molnar <mingo@redhat.com>
7826 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
7827 L:      linux-kernel@vger.kernel.org
7828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
7829 S:      Supported
7830 F:      kernel/events/*
7831 F:      include/linux/perf_event.h
7832 F:      include/uapi/linux/perf_event.h
7833 F:      arch/*/kernel/perf_event*.c
7834 F:      arch/*/kernel/*/perf_event*.c
7835 F:      arch/*/kernel/*/*/perf_event*.c
7836 F:      arch/*/include/asm/perf_event.h
7837 F:      arch/*/kernel/perf_callchain.c
7838 F:      tools/perf/
7839
7840 PERSONALITY HANDLING
7841 M:      Christoph Hellwig <hch@infradead.org>
7842 L:      linux-abi-devel@lists.sourceforge.net
7843 S:      Maintained
7844 F:      include/linux/personality.h
7845 F:      include/uapi/linux/personality.h
7846
7847 PHONET PROTOCOL
7848 M:      Remi Denis-Courmont <courmisch@gmail.com>
7849 S:      Supported
7850 F:      Documentation/networking/phonet.txt
7851 F:      include/linux/phonet.h
7852 F:      include/net/phonet/
7853 F:      include/uapi/linux/phonet.h
7854 F:      net/phonet/
7855
7856 PHRAM MTD DRIVER
7857 M:      Joern Engel <joern@lazybastard.org>
7858 L:      linux-mtd@lists.infradead.org
7859 S:      Maintained
7860 F:      drivers/mtd/devices/phram.c
7861
7862 PICOLCD HID DRIVER
7863 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
7864 L:      linux-input@vger.kernel.org
7865 S:      Maintained
7866 F:      drivers/hid/hid-picolcd*
7867
7868 PICOXCELL SUPPORT
7869 M:      Jamie Iles <jamie@jamieiles.com>
7870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7871 T:      git git://github.com/jamieiles/linux-2.6-ji.git
7872 S:      Supported
7873 F:      arch/arm/boot/dts/picoxcell*
7874 F:      arch/arm/mach-picoxcell/
7875 F:      drivers/crypto/picoxcell*
7876
7877 PIN CONTROL SUBSYSTEM
7878 M:      Linus Walleij <linus.walleij@linaro.org>
7879 L:      linux-gpio@vger.kernel.org
7880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
7881 S:      Maintained
7882 F:      drivers/pinctrl/
7883 F:      include/linux/pinctrl/
7884
7885 PIN CONTROLLER - ATMEL AT91
7886 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
7887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7888 S:      Maintained
7889 F:      drivers/pinctrl/pinctrl-at91.*
7890
7891 PIN CONTROLLER - INTEL
7892 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7893 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
7894 S:      Maintained
7895 F:      drivers/pinctrl/intel/
7896
7897 PIN CONTROLLER - RENESAS
7898 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7899 L:      linux-sh@vger.kernel.org
7900 S:      Maintained
7901 F:      drivers/pinctrl/sh-pfc/
7902
7903 PIN CONTROLLER - SAMSUNG
7904 M:      Tomasz Figa <tomasz.figa@gmail.com>
7905 M:      Thomas Abraham <thomas.abraham@linaro.org>
7906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7907 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7908 S:      Maintained
7909 F:      drivers/pinctrl/samsung/
7910
7911 PIN CONTROLLER - ST SPEAR
7912 M:      Viresh Kumar <viresh.linux@gmail.com>
7913 L:      spear-devel@list.st.com
7914 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7915 W:      http://www.st.com/spear
7916 S:      Maintained
7917 F:      drivers/pinctrl/spear/
7918
7919 PKTCDVD DRIVER
7920 M:      Jiri Kosina <jkosina@suse.cz>
7921 S:      Maintained
7922 F:      drivers/block/pktcdvd.c
7923 F:      include/linux/pktcdvd.h
7924 F:      include/uapi/linux/pktcdvd.h
7925
7926 PKUNITY SOC DRIVERS
7927 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
7928 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
7929 S:      Maintained
7930 T:      git git://github.com/gxt/linux.git
7931 F:      drivers/input/serio/i8042-unicore32io.h
7932 F:      drivers/i2c/busses/i2c-puv3.c
7933 F:      drivers/video/fbdev/fb-puv3.c
7934 F:      drivers/rtc/rtc-puv3.c
7935
7936 PMBUS HARDWARE MONITORING DRIVERS
7937 M:      Guenter Roeck <linux@roeck-us.net>
7938 L:      lm-sensors@lm-sensors.org
7939 W:      http://www.lm-sensors.org/
7940 W:      http://www.roeck-us.net/linux/drivers/
7941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7942 S:      Maintained
7943 F:      Documentation/hwmon/pmbus
7944 F:      drivers/hwmon/pmbus/
7945 F:      include/linux/i2c/pmbus.h
7946
7947 PMC SIERRA MaxRAID DRIVER
7948 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
7949 L:      linux-scsi@vger.kernel.org
7950 W:      http://www.pmc-sierra.com/
7951 S:      Supported
7952 F:      drivers/scsi/pmcraid.*
7953
7954 PMC SIERRA PM8001 DRIVER
7955 M:      xjtuwjp@gmail.com
7956 M:      lindar_liu@usish.com
7957 L:      pmchba@pmcs.com
7958 L:      linux-scsi@vger.kernel.org
7959 S:      Supported
7960 F:      drivers/scsi/pm8001/
7961
7962 POSIX CLOCKS and TIMERS
7963 M:      Thomas Gleixner <tglx@linutronix.de>
7964 L:      linux-kernel@vger.kernel.org
7965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7966 S:      Maintained
7967 F:      fs/timerfd.c
7968 F:      include/linux/timer*
7969 F:      kernel/time/*timer*
7970
7971 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
7972 M:      Sebastian Reichel <sre@kernel.org>
7973 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
7974 M:      David Woodhouse <dwmw2@infradead.org>
7975 L:      linux-pm@vger.kernel.org
7976 T:      git git://git.infradead.org/battery-2.6.git
7977 S:      Maintained
7978 F:      include/linux/power_supply.h
7979 F:      drivers/power/
7980
7981 PNP SUPPORT
7982 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
7983 S:      Maintained
7984 F:      drivers/pnp/
7985
7986 PNXxxxx I2C DRIVER
7987 M:      Vitaly Wool <vitalywool@gmail.com>
7988 L:      linux-i2c@vger.kernel.org
7989 S:      Maintained
7990 F:      drivers/i2c/busses/i2c-pnx.c
7991
7992 PPP PROTOCOL DRIVERS AND COMPRESSORS
7993 M:      Paul Mackerras <paulus@samba.org>
7994 L:      linux-ppp@vger.kernel.org
7995 S:      Maintained
7996 F:      drivers/net/ppp/ppp_*
7997
7998 PPP OVER ATM (RFC 2364)
7999 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8000 S:      Maintained
8001 F:      net/atm/pppoatm.c
8002 F:      include/uapi/linux/atmppp.h
8003
8004 PPP OVER ETHERNET
8005 M:      Michal Ostrowski <mostrows@earthlink.net>
8006 S:      Maintained
8007 F:      drivers/net/ppp/pppoe.c
8008 F:      drivers/net/ppp/pppox.c
8009
8010 PPP OVER L2TP
8011 M:      James Chapman <jchapman@katalix.com>
8012 S:      Maintained
8013 F:      net/l2tp/l2tp_ppp.c
8014 F:      include/linux/if_pppol2tp.h
8015 F:      include/uapi/linux/if_pppol2tp.h
8016
8017 PPS SUPPORT
8018 M:      Rodolfo Giometti <giometti@enneenne.com>
8019 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8020 L:      linuxpps@ml.enneenne.com (subscribers-only)
8021 S:      Maintained
8022 F:      Documentation/pps/
8023 F:      drivers/pps/
8024 F:      include/linux/pps*.h
8025
8026 PPTP DRIVER
8027 M:      Dmitry Kozlov <xeb@mail.ru>
8028 L:      netdev@vger.kernel.org
8029 S:      Maintained
8030 F:      drivers/net/ppp/pptp.c
8031 W:      http://sourceforge.net/projects/accel-pptp
8032
8033 PREEMPTIBLE KERNEL
8034 M:      Robert Love <rml@tech9.net>
8035 L:      kpreempt-tech@lists.sourceforge.net
8036 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8037 S:      Supported
8038 F:      Documentation/preempt-locking.txt
8039 F:      include/linux/preempt.h
8040
8041 PRISM54 WIRELESS DRIVER
8042 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8043 L:      linux-wireless@vger.kernel.org
8044 W:      http://wireless.kernel.org/en/users/Drivers/p54
8045 S:      Obsolete
8046 F:      drivers/net/wireless/prism54/
8047
8048 PS3 NETWORK SUPPORT
8049 M:      Geoff Levand <geoff@infradead.org>
8050 L:      netdev@vger.kernel.org
8051 L:      linuxppc-dev@lists.ozlabs.org
8052 S:      Maintained
8053 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8054
8055 PS3 PLATFORM SUPPORT
8056 M:      Geoff Levand <geoff@infradead.org>
8057 L:      linuxppc-dev@lists.ozlabs.org
8058 S:      Maintained
8059 F:      arch/powerpc/boot/ps3*
8060 F:      arch/powerpc/include/asm/lv1call.h
8061 F:      arch/powerpc/include/asm/ps3*.h
8062 F:      arch/powerpc/platforms/ps3/
8063 F:      drivers/*/ps3*
8064 F:      drivers/ps3/
8065 F:      drivers/rtc/rtc-ps3.c
8066 F:      drivers/usb/host/*ps3.c
8067 F:      sound/ppc/snd_ps3*
8068
8069 PS3VRAM DRIVER
8070 M:      Jim Paris <jim@jtan.com>
8071 M:      Geoff Levand <geoff@infradead.org>
8072 L:      linuxppc-dev@lists.ozlabs.org
8073 S:      Maintained
8074 F:      drivers/block/ps3vram.c
8075
8076 PSTORE FILESYSTEM
8077 M:      Anton Vorontsov <anton@enomsg.org>
8078 M:      Colin Cross <ccross@android.com>
8079 M:      Kees Cook <keescook@chromium.org>
8080 M:      Tony Luck <tony.luck@intel.com>
8081 S:      Maintained
8082 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8083 F:      fs/pstore/
8084 F:      include/linux/pstore*
8085 F:      drivers/firmware/efi/efi-pstore.c
8086 F:      drivers/acpi/apei/erst.c
8087
8088 PTP HARDWARE CLOCK SUPPORT
8089 M:      Richard Cochran <richardcochran@gmail.com>
8090 L:      netdev@vger.kernel.org
8091 S:      Maintained
8092 W:      http://linuxptp.sourceforge.net/
8093 F:      Documentation/ABI/testing/sysfs-ptp
8094 F:      Documentation/ptp/*
8095 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8096 F:      drivers/net/phy/dp83640*
8097 F:      drivers/ptp/*
8098 F:      include/linux/ptp_cl*
8099
8100 PTRACE SUPPORT
8101 M:      Roland McGrath <roland@hack.frob.com>
8102 M:      Oleg Nesterov <oleg@redhat.com>
8103 S:      Maintained
8104 F:      include/asm-generic/syscall.h
8105 F:      include/linux/ptrace.h
8106 F:      include/linux/regset.h
8107 F:      include/linux/tracehook.h
8108 F:      include/uapi/linux/ptrace.h
8109 F:      kernel/ptrace.c
8110
8111 PVRUSB2 VIDEO4LINUX DRIVER
8112 M:      Mike Isely <isely@pobox.com>
8113 L:      pvrusb2@isely.net       (subscribers-only)
8114 L:      linux-media@vger.kernel.org
8115 W:      http://www.isely.net/pvrusb2/
8116 T:      git git://linuxtv.org/media_tree.git
8117 S:      Maintained
8118 F:      Documentation/video4linux/README.pvrusb2
8119 F:      drivers/media/usb/pvrusb2/
8120
8121 PWC WEBCAM DRIVER
8122 M:      Hans de Goede <hdegoede@redhat.com>
8123 L:      linux-media@vger.kernel.org
8124 T:      git git://linuxtv.org/media_tree.git
8125 S:      Maintained
8126 F:      drivers/media/usb/pwc/*
8127
8128 PWM FAN DRIVER
8129 M:      Kamil Debski <k.debski@samsung.com>
8130 L:      lm-sensors@lm-sensors.org
8131 S:      Supported
8132 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8133 F:      Documentation/hwmon/pwm-fan
8134 F:      drivers/hwmon/pwm-fan.c
8135
8136 PWM SUBSYSTEM
8137 M:      Thierry Reding <thierry.reding@gmail.com>
8138 L:      linux-pwm@vger.kernel.org
8139 S:      Maintained
8140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8141 F:      Documentation/pwm.txt
8142 F:      Documentation/devicetree/bindings/pwm/
8143 F:      include/linux/pwm.h
8144 F:      drivers/pwm/
8145 F:      drivers/video/backlight/pwm_bl.c
8146 F:      include/linux/pwm_backlight.h
8147
8148 PXA2xx/PXA3xx SUPPORT
8149 M:      Daniel Mack <daniel@zonque.org>
8150 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8151 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8153 T:      git git://github.com/hzhuang1/linux.git
8154 T:      git git://github.com/rjarzmik/linux.git
8155 S:      Maintained
8156 F:      arch/arm/mach-pxa/
8157 F:      drivers/pcmcia/pxa2xx*
8158 F:      drivers/spi/spi-pxa2xx*
8159 F:      drivers/usb/gadget/udc/pxa2*
8160 F:      include/sound/pxa2xx-lib.h
8161 F:      sound/arm/pxa*
8162 F:      sound/soc/pxa/
8163
8164 PXA3xx NAND FLASH DRIVER
8165 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8166 L:      linux-mtd@lists.infradead.org
8167 S:      Maintained
8168 F:      drivers/mtd/nand/pxa3xx_nand.c
8169
8170 MMP SUPPORT
8171 M:      Eric Miao <eric.y.miao@gmail.com>
8172 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8174 T:      git git://github.com/hzhuang1/linux.git
8175 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8176 S:      Maintained
8177 F:      arch/arm/mach-mmp/
8178
8179 PXA MMCI DRIVER
8180 S:      Orphan
8181
8182 PXA RTC DRIVER
8183 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8184 L:      rtc-linux@googlegroups.com
8185 S:      Maintained
8186
8187 QAT DRIVER
8188 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8189 L:      qat-linux@intel.com
8190 S:      Supported
8191 F:      drivers/crypto/qat/
8192
8193 QIB DRIVER
8194 M:      Mike Marciniszyn <infinipath@intel.com>
8195 L:      linux-rdma@vger.kernel.org
8196 S:      Supported
8197 F:      drivers/infiniband/hw/qib/
8198
8199 QLOGIC QLA1280 SCSI DRIVER
8200 M:      Michael Reed <mdr@sgi.com>
8201 L:      linux-scsi@vger.kernel.org
8202 S:      Maintained
8203 F:      drivers/scsi/qla1280.[ch]
8204
8205 QLOGIC QLA2XXX FC-SCSI DRIVER
8206 M:      qla2xxx-upstream@qlogic.com
8207 L:      linux-scsi@vger.kernel.org
8208 S:      Supported
8209 F:      Documentation/scsi/LICENSE.qla2xxx
8210 F:      drivers/scsi/qla2xxx/
8211
8212 QLOGIC QLA4XXX iSCSI DRIVER
8213 M:      QLogic-Storage-Upstream@qlogic.com
8214 L:      linux-scsi@vger.kernel.org
8215 S:      Supported
8216 F:      Documentation/scsi/LICENSE.qla4xxx
8217 F:      drivers/scsi/qla4xxx/
8218
8219 QLOGIC QLA3XXX NETWORK DRIVER
8220 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8221 M:      Ron Mercer <ron.mercer@qlogic.com>
8222 M:      linux-driver@qlogic.com
8223 L:      netdev@vger.kernel.org
8224 S:      Supported
8225 F:      Documentation/networking/LICENSE.qla3xxx
8226 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8227
8228 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8229 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
8230 M:      Dept-GELinuxNICDev@qlogic.com
8231 L:      netdev@vger.kernel.org
8232 S:      Supported
8233 F:      drivers/net/ethernet/qlogic/qlcnic/
8234
8235 QLOGIC QLGE 10Gb ETHERNET DRIVER
8236 M:      Harish Patil <harish.patil@qlogic.com>
8237 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8238 M:      Dept-GELinuxNICDev@qlogic.com
8239 M:      linux-driver@qlogic.com
8240 L:      netdev@vger.kernel.org
8241 S:      Supported
8242 F:      drivers/net/ethernet/qlogic/qlge/
8243
8244 QNX4 FILESYSTEM
8245 M:      Anders Larsen <al@alarsen.net>
8246 W:      http://www.alarsen.net/linux/qnx4fs/
8247 S:      Maintained
8248 F:      fs/qnx4/
8249 F:      include/uapi/linux/qnx4_fs.h
8250 F:      include/uapi/linux/qnxtypes.h
8251
8252 QT1010 MEDIA DRIVER
8253 M:      Antti Palosaari <crope@iki.fi>
8254 L:      linux-media@vger.kernel.org
8255 W:      http://linuxtv.org/
8256 W:      http://palosaari.fi/linux/
8257 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8258 T:      git git://linuxtv.org/anttip/media_tree.git
8259 S:      Maintained
8260 F:      drivers/media/tuners/qt1010*
8261
8262 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8263 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8264 L:      linux-wireless@vger.kernel.org
8265 L:      ath9k-devel@lists.ath9k.org
8266 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8267 S:      Supported
8268 F:      drivers/net/wireless/ath/ath9k/
8269
8270 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8271 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8272 L:      ath10k@lists.infradead.org
8273 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8274 T:      git git://github.com/kvalo/ath.git
8275 S:      Supported
8276 F:      drivers/net/wireless/ath/ath10k/
8277
8278 QUALCOMM HEXAGON ARCHITECTURE
8279 M:      Richard Kuo <rkuo@codeaurora.org>
8280 L:      linux-hexagon@vger.kernel.org
8281 S:      Supported
8282 F:      arch/hexagon/
8283
8284 QUALCOMM WCN36XX WIRELESS DRIVER
8285 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8286 L:      wcn36xx@lists.infradead.org
8287 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8288 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8289 S:      Supported
8290 F:      drivers/net/wireless/ath/wcn36xx/
8291
8292 RADOS BLOCK DEVICE (RBD)
8293 M:      Ilya Dryomov <idryomov@gmail.com>
8294 M:      Sage Weil <sage@redhat.com>
8295 M:      Alex Elder <elder@kernel.org>
8296 M:      ceph-devel@vger.kernel.org
8297 W:      http://ceph.com/
8298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8299 S:      Supported
8300 F:      drivers/block/rbd.c
8301 F:      drivers/block/rbd_types.h
8302
8303 RADEON FRAMEBUFFER DISPLAY DRIVER
8304 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8305 L:      linux-fbdev@vger.kernel.org
8306 S:      Maintained
8307 F:      drivers/video/fbdev/aty/radeon*
8308 F:      include/uapi/linux/radeonfb.h
8309
8310 RADIOSHARK RADIO DRIVER
8311 M:      Hans de Goede <hdegoede@redhat.com>
8312 L:      linux-media@vger.kernel.org
8313 T:      git git://linuxtv.org/media_tree.git
8314 S:      Maintained
8315 F:      drivers/media/radio/radio-shark.c
8316
8317 RADIOSHARK2 RADIO DRIVER
8318 M:      Hans de Goede <hdegoede@redhat.com>
8319 L:      linux-media@vger.kernel.org
8320 T:      git git://linuxtv.org/media_tree.git
8321 S:      Maintained
8322 F:      drivers/media/radio/radio-shark2.c
8323 F:      drivers/media/radio/radio-tea5777.c
8324
8325 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8326 M:      Paul Mackerras <paulus@samba.org>
8327 L:      linux-fbdev@vger.kernel.org
8328 S:      Maintained
8329 F:      drivers/video/fbdev/aty/aty128fb.c
8330
8331 RALINK RT2X00 WIRELESS LAN DRIVER
8332 P:      rt2x00 project
8333 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8334 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8335 L:      linux-wireless@vger.kernel.org
8336 S:      Maintained
8337 F:      drivers/net/wireless/rt2x00/
8338
8339 RAMDISK RAM BLOCK DEVICE DRIVER
8340 M:      Jens Axboe <axboe@kernel.dk>
8341 S:      Maintained
8342 F:      Documentation/blockdev/ramdisk.txt
8343 F:      drivers/block/brd.c
8344
8345 PERSISTENT MEMORY DRIVER
8346 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
8347 L:      linux-nvdimm@lists.01.org
8348 S:      Supported
8349 F:      drivers/block/pmem.c
8350
8351 RANDOM NUMBER DRIVER
8352 M:      "Theodore Ts'o" <tytso@mit.edu>
8353 S:      Maintained
8354 F:      drivers/char/random.c
8355
8356 RAPIDIO SUBSYSTEM
8357 M:      Matt Porter <mporter@kernel.crashing.org>
8358 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8359 S:      Maintained
8360 F:      drivers/rapidio/
8361
8362 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8363 L:      linux-wireless@vger.kernel.org
8364 S:      Orphan
8365 F:      drivers/net/wireless/ray*
8366
8367 RCUTORTURE MODULE
8368 M:      Josh Triplett <josh@joshtriplett.org>
8369 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8370 L:      linux-kernel@vger.kernel.org
8371 S:      Supported
8372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8373 F:      Documentation/RCU/torture.txt
8374 F:      kernel/rcu/rcutorture.c
8375
8376 RCUTORTURE TEST FRAMEWORK
8377 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8378 M:      Josh Triplett <josh@joshtriplett.org>
8379 R:      Steven Rostedt <rostedt@goodmis.org>
8380 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8381 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
8382 L:      linux-kernel@vger.kernel.org
8383 S:      Supported
8384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8385 F:      tools/testing/selftests/rcutorture
8386
8387 RDC R-321X SoC
8388 M:      Florian Fainelli <florian@openwrt.org>
8389 S:      Maintained
8390
8391 RDC R6040 FAST ETHERNET DRIVER
8392 M:      Florian Fainelli <florian@openwrt.org>
8393 L:      netdev@vger.kernel.org
8394 S:      Maintained
8395 F:      drivers/net/ethernet/rdc/r6040.c
8396
8397 RDS - RELIABLE DATAGRAM SOCKETS
8398 M:      Chien Yen <chien.yen@oracle.com>
8399 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8400 S:      Supported
8401 F:      net/rds/
8402
8403 READ-COPY UPDATE (RCU)
8404 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8405 M:      Josh Triplett <josh@joshtriplett.org>
8406 R:      Steven Rostedt <rostedt@goodmis.org>
8407 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8408 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
8409 L:      linux-kernel@vger.kernel.org
8410 W:      http://www.rdrop.com/users/paulmck/RCU/
8411 S:      Supported
8412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8413 F:      Documentation/RCU/
8414 X:      Documentation/RCU/torture.txt
8415 F:      include/linux/rcu*
8416 X:      include/linux/srcu.h
8417 F:      kernel/rcu/
8418 X:      kernel/torture.c
8419
8420 REAL TIME CLOCK (RTC) SUBSYSTEM
8421 M:      Alessandro Zummo <a.zummo@towertech.it>
8422 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8423 L:      rtc-linux@googlegroups.com
8424 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8426 S:      Maintained
8427 F:      Documentation/rtc.txt
8428 F:      drivers/rtc/
8429 F:      include/linux/rtc.h
8430 F:      include/uapi/linux/rtc.h
8431
8432 REALTEK AUDIO CODECS
8433 M:      Bard Liao <bardliao@realtek.com>
8434 M:      Oder Chiou <oder_chiou@realtek.com>
8435 S:      Maintained
8436 F:      sound/soc/codecs/rt*
8437 F:      include/sound/rt*.h
8438
8439 REISERFS FILE SYSTEM
8440 L:      reiserfs-devel@vger.kernel.org
8441 S:      Supported
8442 F:      fs/reiserfs/
8443
8444 REGISTER MAP ABSTRACTION
8445 M:      Mark Brown <broonie@kernel.org>
8446 L:      linux-kernel@vger.kernel.org
8447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8448 S:      Supported
8449 F:      drivers/base/regmap/
8450 F:      include/linux/regmap.h
8451
8452 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8453 M:      Ohad Ben-Cohen <ohad@wizery.com>
8454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8455 S:      Maintained
8456 F:      drivers/remoteproc/
8457 F:      Documentation/remoteproc.txt
8458 F:      include/linux/remoteproc.h
8459
8460 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8461 M:      Ohad Ben-Cohen <ohad@wizery.com>
8462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8463 S:      Maintained
8464 F:      drivers/rpmsg/
8465 F:      Documentation/rpmsg.txt
8466 F:      include/linux/rpmsg.h
8467
8468 RESET CONTROLLER FRAMEWORK
8469 M:      Philipp Zabel <p.zabel@pengutronix.de>
8470 S:      Maintained
8471 F:      drivers/reset/
8472 F:      Documentation/devicetree/bindings/reset/
8473 F:      include/linux/reset.h
8474 F:      include/linux/reset-controller.h
8475
8476 RFKILL
8477 M:      Johannes Berg <johannes@sipsolutions.net>
8478 L:      linux-wireless@vger.kernel.org
8479 W:      http://wireless.kernel.org/
8480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8482 S:      Maintained
8483 F:      Documentation/rfkill.txt
8484 F:      net/rfkill/
8485
8486 RHASHTABLE
8487 M:      Thomas Graf <tgraf@suug.ch>
8488 L:      netdev@vger.kernel.org
8489 S:      Maintained
8490 F:      lib/rhashtable.c
8491 F:      include/linux/rhashtable.h
8492
8493 RICOH SMARTMEDIA/XD DRIVER
8494 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8495 S:      Maintained
8496 F:      drivers/mtd/nand/r852.c
8497 F:      drivers/mtd/nand/r852.h
8498
8499 RICOH R5C592 MEMORYSTICK DRIVER
8500 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8501 S:      Maintained
8502 F:      drivers/memstick/host/r592.*
8503
8504 ROCCAT DRIVERS
8505 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8506 W:      http://sourceforge.net/projects/roccat/
8507 S:      Maintained
8508 F:      drivers/hid/hid-roccat*
8509 F:      include/linux/hid-roccat*
8510 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8511
8512 ROCKER DRIVER
8513 M:      Jiri Pirko <jiri@resnulli.us>
8514 M:      Scott Feldman <sfeldma@gmail.com>
8515 L:      netdev@vger.kernel.org
8516 S:      Supported
8517 F:      drivers/net/ethernet/rocker/
8518
8519 ROCKETPORT DRIVER
8520 P:      Comtrol Corp.
8521 W:      http://www.comtrol.com
8522 S:      Maintained
8523 F:      Documentation/serial/rocket.txt
8524 F:      drivers/tty/rocket*
8525
8526 ROCKETPORT EXPRESS/INFINITY DRIVER
8527 M:      Kevin Cernekee <cernekee@gmail.com>
8528 L:      linux-serial@vger.kernel.org
8529 S:      Odd Fixes
8530 F:      drivers/tty/serial/rp2.*
8531
8532 ROSE NETWORK LAYER
8533 M:      Ralf Baechle <ralf@linux-mips.org>
8534 L:      linux-hams@vger.kernel.org
8535 W:      http://www.linux-ax25.org/
8536 S:      Maintained
8537 F:      include/net/rose.h
8538 F:      include/uapi/linux/rose.h
8539 F:      net/rose/
8540
8541 RTL2830 MEDIA DRIVER
8542 M:      Antti Palosaari <crope@iki.fi>
8543 L:      linux-media@vger.kernel.org
8544 W:      http://linuxtv.org/
8545 W:      http://palosaari.fi/linux/
8546 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8547 T:      git git://linuxtv.org/anttip/media_tree.git
8548 S:      Maintained
8549 F:      drivers/media/dvb-frontends/rtl2830*
8550
8551 RTL2832 MEDIA DRIVER
8552 M:      Antti Palosaari <crope@iki.fi>
8553 L:      linux-media@vger.kernel.org
8554 W:      http://linuxtv.org/
8555 W:      http://palosaari.fi/linux/
8556 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8557 T:      git git://linuxtv.org/anttip/media_tree.git
8558 S:      Maintained
8559 F:      drivers/media/dvb-frontends/rtl2832*
8560
8561 RTL2832_SDR MEDIA DRIVER
8562 M:      Antti Palosaari <crope@iki.fi>
8563 L:      linux-media@vger.kernel.org
8564 W:      http://linuxtv.org/
8565 W:      http://palosaari.fi/linux/
8566 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8567 T:      git git://linuxtv.org/anttip/media_tree.git
8568 S:      Maintained
8569 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8570
8571 RTL8180 WIRELESS DRIVER
8572 L:      linux-wireless@vger.kernel.org
8573 W:      http://wireless.kernel.org/
8574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8575 S:      Orphan
8576 F:      drivers/net/wireless/rtl818x/rtl8180/
8577
8578 RTL8187 WIRELESS DRIVER
8579 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8580 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8581 M:      Larry Finger <Larry.Finger@lwfinger.net>
8582 L:      linux-wireless@vger.kernel.org
8583 W:      http://wireless.kernel.org/
8584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8585 S:      Maintained
8586 F:      drivers/net/wireless/rtl818x/rtl8187/
8587
8588 RTL8192CE WIRELESS DRIVER
8589 M:      Larry Finger <Larry.Finger@lwfinger.net>
8590 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8591 L:      linux-wireless@vger.kernel.org
8592 W:      http://wireless.kernel.org/
8593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8594 S:      Maintained
8595 F:      drivers/net/wireless/rtlwifi/
8596 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8597
8598 S3 SAVAGE FRAMEBUFFER DRIVER
8599 M:      Antonino Daplas <adaplas@gmail.com>
8600 L:      linux-fbdev@vger.kernel.org
8601 S:      Maintained
8602 F:      drivers/video/fbdev/savage/
8603
8604 S390
8605 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8606 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8607 M:      linux390@de.ibm.com
8608 L:      linux-s390@vger.kernel.org
8609 W:      http://www.ibm.com/developerworks/linux/linux390/
8610 S:      Supported
8611 F:      arch/s390/
8612 F:      drivers/s390/
8613 F:      Documentation/s390/
8614 F:      Documentation/DocBook/s390*
8615
8616 S390 COMMON I/O LAYER
8617 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8618 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8619 L:      linux-s390@vger.kernel.org
8620 W:      http://www.ibm.com/developerworks/linux/linux390/
8621 S:      Supported
8622 F:      drivers/s390/cio/
8623
8624 S390 DASD DRIVER
8625 M:      Stefan Weinhuber <wein@de.ibm.com>
8626 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8627 L:      linux-s390@vger.kernel.org
8628 W:      http://www.ibm.com/developerworks/linux/linux390/
8629 S:      Supported
8630 F:      drivers/s390/block/dasd*
8631 F:      block/partitions/ibm.c
8632
8633 S390 NETWORK DRIVERS
8634 M:      Ursula Braun <ursula.braun@de.ibm.com>
8635 M:      linux390@de.ibm.com
8636 L:      linux-s390@vger.kernel.org
8637 W:      http://www.ibm.com/developerworks/linux/linux390/
8638 S:      Supported
8639 F:      drivers/s390/net/
8640
8641 S390 PCI SUBSYSTEM
8642 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8643 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8644 L:      linux-s390@vger.kernel.org
8645 W:      http://www.ibm.com/developerworks/linux/linux390/
8646 S:      Supported
8647 F:      arch/s390/pci/
8648 F:      drivers/pci/hotplug/s390_pci_hpc.c
8649
8650 S390 ZCRYPT DRIVER
8651 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8652 M:      linux390@de.ibm.com
8653 L:      linux-s390@vger.kernel.org
8654 W:      http://www.ibm.com/developerworks/linux/linux390/
8655 S:      Supported
8656 F:      drivers/s390/crypto/
8657
8658 S390 ZFCP DRIVER
8659 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8660 M:      linux390@de.ibm.com
8661 L:      linux-s390@vger.kernel.org
8662 W:      http://www.ibm.com/developerworks/linux/linux390/
8663 S:      Supported
8664 F:      drivers/s390/scsi/zfcp_*
8665
8666 S390 IUCV NETWORK LAYER
8667 M:      Ursula Braun <ursula.braun@de.ibm.com>
8668 M:      linux390@de.ibm.com
8669 L:      linux-s390@vger.kernel.org
8670 W:      http://www.ibm.com/developerworks/linux/linux390/
8671 S:      Supported
8672 F:      drivers/s390/net/*iucv*
8673 F:      include/net/iucv/
8674 F:      net/iucv/
8675
8676 S3C24XX SD/MMC Driver
8677 M:      Ben Dooks <ben-linux@fluff.org>
8678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8679 S:      Supported
8680 F:      drivers/mmc/host/s3cmci.*
8681
8682 SAA6588 RDS RECEIVER DRIVER
8683 M:      Hans Verkuil <hverkuil@xs4all.nl>
8684 L:      linux-media@vger.kernel.org
8685 T:      git git://linuxtv.org/media_tree.git
8686 W:      http://linuxtv.org
8687 S:      Odd Fixes
8688 F:      drivers/media/i2c/saa6588*
8689
8690 SAA7134 VIDEO4LINUX DRIVER
8691 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8692 L:      linux-media@vger.kernel.org
8693 W:      http://linuxtv.org
8694 T:      git git://linuxtv.org/media_tree.git
8695 S:      Odd fixes
8696 F:      Documentation/video4linux/*.saa7134
8697 F:      drivers/media/pci/saa7134/
8698
8699 SAA7146 VIDEO4LINUX-2 DRIVER
8700 M:      Hans Verkuil <hverkuil@xs4all.nl>
8701 L:      linux-media@vger.kernel.org
8702 T:      git git://linuxtv.org/media_tree.git
8703 S:      Maintained
8704 F:      drivers/media/common/saa7146/
8705 F:      drivers/media/pci/saa7146/
8706 F:      include/media/saa7146*
8707
8708 SAMSUNG LAPTOP DRIVER
8709 M:      Corentin Chary <corentin.chary@gmail.com>
8710 L:      platform-driver-x86@vger.kernel.org
8711 S:      Maintained
8712 F:      drivers/platform/x86/samsung-laptop.c
8713
8714 SAMSUNG AUDIO (ASoC) DRIVERS
8715 M:      Sangbeom Kim <sbkim73@samsung.com>
8716 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8717 S:      Supported
8718 F:      sound/soc/samsung/
8719
8720 SAMSUNG FRAMEBUFFER DRIVER
8721 M:      Jingoo Han <jingoohan1@gmail.com>
8722 L:      linux-fbdev@vger.kernel.org
8723 S:      Maintained
8724 F:      drivers/video/fbdev/s3c-fb.c
8725
8726 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
8727 M:      Sangbeom Kim <sbkim73@samsung.com>
8728 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
8729 L:      linux-kernel@vger.kernel.org
8730 L:      linux-samsung-soc@vger.kernel.org
8731 S:      Supported
8732 F:      drivers/mfd/sec*.c
8733 F:      drivers/regulator/s2m*.c
8734 F:      drivers/regulator/s5m*.c
8735 F:      drivers/clk/clk-s2mps11.c
8736 F:      drivers/rtc/rtc-s5m.c
8737 F:      include/linux/mfd/samsung/
8738 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
8739 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
8740
8741 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
8742 M:      Kyungmin Park <kyungmin.park@samsung.com>
8743 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8744 L:      linux-media@vger.kernel.org
8745 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
8746 S:      Supported
8747 F:      drivers/media/platform/exynos4-is/
8748
8749 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
8750 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
8751 L:      linux-media@vger.kernel.org
8752 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8753 S:      Maintained
8754 F:      drivers/media/platform/s3c-camif/
8755 F:      include/media/s3c_camif.h
8756
8757 SAMSUNG S5C73M3 CAMERA DRIVER
8758 M:      Kyungmin Park <kyungmin.park@samsung.com>
8759 M:      Andrzej Hajda <a.hajda@samsung.com>
8760 L:      linux-media@vger.kernel.org
8761 S:      Supported
8762 F:      drivers/media/i2c/s5c73m3/*
8763
8764 SAMSUNG S5K5BAF CAMERA DRIVER
8765 M:      Kyungmin Park <kyungmin.park@samsung.com>
8766 M:      Andrzej Hajda <a.hajda@samsung.com>
8767 L:      linux-media@vger.kernel.org
8768 S:      Supported
8769 F:      drivers/media/i2c/s5k5baf.c
8770
8771 SAMSUNG SOC CLOCK DRIVERS
8772 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8773 M:      Tomasz Figa <tomasz.figa@gmail.com>
8774 S:      Supported
8775 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8776 F:      drivers/clk/samsung/
8777
8778 SAMSUNG SXGBE DRIVERS
8779 M:      Byungho An <bh74.an@samsung.com>
8780 M:      Girish K S <ks.giri@samsung.com>
8781 M:      Vipul Pandya <vipul.pandya@samsung.com>
8782 S:      Supported
8783 L:      netdev@vger.kernel.org
8784 F:      drivers/net/ethernet/samsung/sxgbe/
8785
8786 SAMSUNG THERMAL DRIVER
8787 M:      Lukasz Majewski <l.majewski@samsung.com>
8788 L:      linux-pm@vger.kernel.org
8789 L:      linux-samsung-soc@vger.kernel.org
8790 S:      Supported
8791 T:      https://github.com/lmajewski/linux-samsung-thermal.git
8792 F:      drivers/thermal/samsung/
8793
8794 SAMSUNG USB2 PHY DRIVER
8795 M:      Kamil Debski <k.debski@samsung.com>
8796 L:      linux-kernel@vger.kernel.org
8797 S:      Supported
8798 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
8799 F:      Documentation/phy/samsung-usb2.txt
8800 F:      drivers/phy/phy-exynos4210-usb2.c
8801 F:      drivers/phy/phy-exynos4x12-usb2.c
8802 F:      drivers/phy/phy-exynos5250-usb2.c
8803 F:      drivers/phy/phy-s5pv210-usb2.c
8804 F:      drivers/phy/phy-samsung-usb2.c
8805 F:      drivers/phy/phy-samsung-usb2.h
8806
8807 SERIAL DRIVERS
8808 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8809 L:      linux-serial@vger.kernel.org
8810 S:      Maintained
8811 F:      drivers/tty/serial/
8812
8813 SYNOPSYS DESIGNWARE DMAC DRIVER
8814 M:      Viresh Kumar <viresh.linux@gmail.com>
8815 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8816 S:      Maintained
8817 F:      include/linux/dma/dw.h
8818 F:      include/linux/platform_data/dma-dw.h
8819 F:      drivers/dma/dw/
8820
8821 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
8822 M:      Seungwon Jeon <tgih.jun@samsung.com>
8823 M:      Jaehoon Chung <jh80.chung@samsung.com>
8824 L:      linux-mmc@vger.kernel.org
8825 S:      Maintained
8826 F:      include/linux/mmc/dw_mmc.h
8827 F:      drivers/mmc/host/dw_mmc*
8828
8829 THUNDERBOLT DRIVER
8830 M:      Andreas Noever <andreas.noever@gmail.com>
8831 S:      Maintained
8832 F:      drivers/thunderbolt/
8833
8834 TIMEKEEPING, CLOCKSOURCE CORE, NTP
8835 M:      John Stultz <john.stultz@linaro.org>
8836 M:      Thomas Gleixner <tglx@linutronix.de>
8837 L:      linux-kernel@vger.kernel.org
8838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8839 S:      Supported
8840 F:      include/linux/clocksource.h
8841 F:      include/linux/time.h
8842 F:      include/linux/timex.h
8843 F:      include/uapi/linux/time.h
8844 F:      include/uapi/linux/timex.h
8845 F:      kernel/time/clocksource.c
8846 F:      kernel/time/time*.c
8847 F:      kernel/time/ntp.c
8848 F:      tools/testing/selftests/timers/
8849
8850 SC1200 WDT DRIVER
8851 M:      Zwane Mwaikambo <zwanem@gmail.com>
8852 S:      Maintained
8853 F:      drivers/watchdog/sc1200wdt.c
8854
8855 SCHEDULER
8856 M:      Ingo Molnar <mingo@redhat.com>
8857 M:      Peter Zijlstra <peterz@infradead.org>
8858 L:      linux-kernel@vger.kernel.org
8859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
8860 S:      Maintained
8861 F:      kernel/sched/
8862 F:      include/linux/sched.h
8863 F:      include/uapi/linux/sched.h
8864 F:      include/linux/wait.h
8865
8866 SCORE ARCHITECTURE
8867 M:      Chen Liqin <liqin.linux@gmail.com>
8868 M:      Lennox Wu <lennox.wu@gmail.com>
8869 W:      http://www.sunplus.com
8870 S:      Supported
8871 F:      arch/score/
8872
8873 SCSI CDROM DRIVER
8874 M:      Jens Axboe <axboe@kernel.dk>
8875 L:      linux-scsi@vger.kernel.org
8876 W:      http://www.kernel.dk
8877 S:      Maintained
8878 F:      drivers/scsi/sr*
8879
8880 SCSI RDMA PROTOCOL (SRP) INITIATOR
8881 M:      Bart Van Assche <bart.vanassche@sandisk.com>
8882 L:      linux-rdma@vger.kernel.org
8883 S:      Supported
8884 W:      http://www.openfabrics.org
8885 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
8887 F:      drivers/infiniband/ulp/srp/
8888 F:      include/scsi/srp.h
8889
8890 SCSI SG DRIVER
8891 M:      Doug Gilbert <dgilbert@interlog.com>
8892 L:      linux-scsi@vger.kernel.org
8893 W:      http://sg.danny.cz/sg
8894 S:      Maintained
8895 F:      Documentation/scsi/scsi-generic.txt
8896 F:      drivers/scsi/sg.c
8897 F:      include/scsi/sg.h
8898
8899 SCSI SUBSYSTEM
8900 M:      "James E.J. Bottomley" <JBottomley@odin.com>
8901 L:      linux-scsi@vger.kernel.org
8902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
8903 S:      Maintained
8904 F:      drivers/scsi/
8905 F:      include/scsi/
8906
8907 SCSI TAPE DRIVER
8908 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
8909 L:      linux-scsi@vger.kernel.org
8910 S:      Maintained
8911 F:      Documentation/scsi/st.txt
8912 F:      drivers/scsi/st.*
8913 F:      drivers/scsi/st_*.h
8914
8915 SCTP PROTOCOL
8916 M:      Vlad Yasevich <vyasevich@gmail.com>
8917 M:      Neil Horman <nhorman@tuxdriver.com>
8918 L:      linux-sctp@vger.kernel.org
8919 W:      http://lksctp.sourceforge.net
8920 S:      Maintained
8921 F:      Documentation/networking/sctp.txt
8922 F:      include/linux/sctp.h
8923 F:      include/uapi/linux/sctp.h
8924 F:      include/net/sctp/
8925 F:      net/sctp/
8926
8927 SCx200 CPU SUPPORT
8928 M:      Jim Cromie <jim.cromie@gmail.com>
8929 S:      Odd Fixes
8930 F:      Documentation/i2c/busses/scx200_acb
8931 F:      arch/x86/platform/scx200/
8932 F:      drivers/watchdog/scx200_wdt.c
8933 F:      drivers/i2c/busses/scx200*
8934 F:      drivers/mtd/maps/scx200_docflash.c
8935 F:      include/linux/scx200.h
8936
8937 SCx200 GPIO DRIVER
8938 M:      Jim Cromie <jim.cromie@gmail.com>
8939 S:      Maintained
8940 F:      drivers/char/scx200_gpio.c
8941 F:      include/linux/scx200_gpio.h
8942
8943 SCx200 HRT CLOCKSOURCE DRIVER
8944 M:      Jim Cromie <jim.cromie@gmail.com>
8945 S:      Maintained
8946 F:      drivers/clocksource/scx200_hrt.c
8947
8948 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
8949 M:      Sascha Sommer <saschasommer@freenet.de>
8950 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
8951 S:      Maintained
8952 F:      drivers/mmc/host/sdricoh_cs.c
8953
8954 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
8955 L:      linux-mmc@vger.kernel.org
8956 S:      Orphan
8957 F:      drivers/mmc/host/sdhci.*
8958 F:      drivers/mmc/host/sdhci-pltfm.[ch]
8959
8960 SECURE COMPUTING
8961 M:      Kees Cook <keescook@chromium.org>
8962 R:      Andy Lutomirski <luto@amacapital.net>
8963 R:      Will Drewry <wad@chromium.org>
8964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
8965 S:      Supported
8966 F:      kernel/seccomp.c
8967 F:      include/uapi/linux/seccomp.h
8968 F:      include/linux/seccomp.h
8969 K:      \bsecure_computing
8970 K:      \bTIF_SECCOMP\b
8971
8972 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
8973 M:      Ben Dooks <ben-linux@fluff.org>
8974 M:      Jaehoon Chung <jh80.chung@samsung.com>
8975 L:      linux-mmc@vger.kernel.org
8976 S:      Maintained
8977 F:      drivers/mmc/host/sdhci-s3c*
8978
8979 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
8980 M:      Viresh Kumar <viresh.linux@gmail.com>
8981 L:      spear-devel@list.st.com
8982 L:      linux-mmc@vger.kernel.org
8983 S:      Maintained
8984 F:      drivers/mmc/host/sdhci-spear.c
8985
8986 SECURITY SUBSYSTEM
8987 M:      James Morris <james.l.morris@oracle.com>
8988 M:      "Serge E. Hallyn" <serge@hallyn.com>
8989 L:      linux-security-module@vger.kernel.org (suggested Cc:)
8990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
8991 W:      http://kernsec.org/
8992 S:      Supported
8993 F:      security/
8994
8995 SECURITY CONTACT
8996 M:      Security Officers <security@kernel.org>
8997 S:      Supported
8998
8999 SELINUX SECURITY MODULE
9000 M:      Paul Moore <paul@paul-moore.com>
9001 M:      Stephen Smalley <sds@tycho.nsa.gov>
9002 M:      Eric Paris <eparis@parisplace.org>
9003 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9004 W:      http://selinuxproject.org
9005 T:      git git://git.infradead.org/users/pcmoore/selinux
9006 S:      Supported
9007 F:      include/linux/selinux*
9008 F:      security/selinux/
9009 F:      scripts/selinux/
9010
9011 APPARMOR SECURITY MODULE
9012 M:      John Johansen <john.johansen@canonical.com>
9013 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9014 W:      apparmor.wiki.kernel.org
9015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9016 S:      Supported
9017 F:      security/apparmor/
9018
9019 SENSABLE PHANTOM
9020 M:      Jiri Slaby <jirislaby@gmail.com>
9021 S:      Maintained
9022 F:      drivers/misc/phantom.c
9023 F:      include/uapi/linux/phantom.h
9024
9025 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9026 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9027 M:      Minh Tran <minh.tran@avagotech.com>
9028 M:      John Soni Jose <sony.john-n@avagotech.com>
9029 L:      linux-scsi@vger.kernel.org
9030 W:      http://www.avagotech.com
9031 S:      Supported
9032 F:      drivers/scsi/be2iscsi/
9033
9034 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9035 M:      Sathya Perla <sathya.perla@avagotech.com>
9036 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9037 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9038 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9039 L:      netdev@vger.kernel.org
9040 W:      http://www.emulex.com
9041 S:      Supported
9042 F:      drivers/net/ethernet/emulex/benet/
9043
9044 EMULEX ONECONNECT ROCE DRIVER
9045 M:      Selvin Xavier <selvin.xavier@emulex.com>
9046 M:      Devesh Sharma <devesh.sharma@emulex.com>
9047 M:      Mitesh Ahuja <mitesh.ahuja@emulex.com>
9048 L:      linux-rdma@vger.kernel.org
9049 W:      http://www.emulex.com
9050 S:      Supported
9051 F:      drivers/infiniband/hw/ocrdma/
9052
9053 SFC NETWORK DRIVER
9054 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9055 M:      Shradha Shah <sshah@solarflare.com>
9056 L:      netdev@vger.kernel.org
9057 S:      Supported
9058 F:      drivers/net/ethernet/sfc/
9059
9060 SGI GRU DRIVER
9061 M:      Dimitri Sivanich <sivanich@sgi.com>
9062 S:      Maintained
9063 F:      drivers/misc/sgi-gru/
9064
9065 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9066 M:      Pat Gefre <pfg@sgi.com>
9067 L:      linux-ia64@vger.kernel.org
9068 S:      Supported
9069 F:      Documentation/ia64/serial.txt
9070 F:      drivers/tty/serial/ioc?_serial.c
9071 F:      include/linux/ioc?.h
9072
9073 SGI XP/XPC/XPNET DRIVER
9074 M:      Cliff Whickman <cpw@sgi.com>
9075 M:      Robin Holt <robinmholt@gmail.com>
9076 S:      Maintained
9077 F:      drivers/misc/sgi-xp/
9078
9079 SI2157 MEDIA DRIVER
9080 M:      Antti Palosaari <crope@iki.fi>
9081 L:      linux-media@vger.kernel.org
9082 W:      http://linuxtv.org/
9083 W:      http://palosaari.fi/linux/
9084 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9085 T:      git git://linuxtv.org/anttip/media_tree.git
9086 S:      Maintained
9087 F:      drivers/media/tuners/si2157*
9088
9089 SI2168 MEDIA DRIVER
9090 M:      Antti Palosaari <crope@iki.fi>
9091 L:      linux-media@vger.kernel.org
9092 W:      http://linuxtv.org/
9093 W:      http://palosaari.fi/linux/
9094 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9095 T:      git git://linuxtv.org/anttip/media_tree.git
9096 S:      Maintained
9097 F:      drivers/media/dvb-frontends/si2168*
9098
9099 SI470X FM RADIO RECEIVER I2C DRIVER
9100 M:      Hans Verkuil <hverkuil@xs4all.nl>
9101 L:      linux-media@vger.kernel.org
9102 T:      git git://linuxtv.org/media_tree.git
9103 W:      http://linuxtv.org
9104 S:      Odd Fixes
9105 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9106
9107 SI470X FM RADIO RECEIVER USB DRIVER
9108 M:      Hans Verkuil <hverkuil@xs4all.nl>
9109 L:      linux-media@vger.kernel.org
9110 T:      git git://linuxtv.org/media_tree.git
9111 W:      http://linuxtv.org
9112 S:      Maintained
9113 F:      drivers/media/radio/si470x/radio-si470x-common.c
9114 F:      drivers/media/radio/si470x/radio-si470x.h
9115 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9116
9117 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9118 M:      Eduardo Valentin <edubezval@gmail.com>
9119 L:      linux-media@vger.kernel.org
9120 T:      git git://linuxtv.org/media_tree.git
9121 W:      http://linuxtv.org
9122 S:      Odd Fixes
9123 F:      drivers/media/radio/si4713/si4713.?
9124
9125 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9126 M:      Eduardo Valentin <edubezval@gmail.com>
9127 L:      linux-media@vger.kernel.org
9128 T:      git git://linuxtv.org/media_tree.git
9129 W:      http://linuxtv.org
9130 S:      Odd Fixes
9131 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9132
9133 SI4713 FM RADIO TRANSMITTER USB DRIVER
9134 M:      Hans Verkuil <hverkuil@xs4all.nl>
9135 L:      linux-media@vger.kernel.org
9136 T:      git git://linuxtv.org/media_tree.git
9137 W:      http://linuxtv.org
9138 S:      Maintained
9139 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9140
9141 SIANO DVB DRIVER
9142 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9143 L:      linux-media@vger.kernel.org
9144 W:      http://linuxtv.org
9145 T:      git git://linuxtv.org/media_tree.git
9146 S:      Odd fixes
9147 F:      drivers/media/common/siano/
9148 F:      drivers/media/usb/siano/
9149 F:      drivers/media/usb/siano/
9150 F:      drivers/media/mmc/siano/
9151
9152 SIMPLEFB FB DRIVER
9153 M:      Hans de Goede <hdegoede@redhat.com>
9154 L:      linux-fbdev@vger.kernel.org
9155 S:      Maintained
9156 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9157 F:      drivers/video/fbdev/simplefb.c
9158 F:      include/linux/platform_data/simplefb.h
9159
9160 SH_VEU V4L2 MEM2MEM DRIVER
9161 L:      linux-media@vger.kernel.org
9162 S:      Orphan
9163 F:      drivers/media/platform/sh_veu.c
9164
9165 SH_VOU V4L2 OUTPUT DRIVER
9166 L:      linux-media@vger.kernel.org
9167 S:      Orphan
9168 F:      drivers/media/platform/sh_vou.c
9169 F:      include/media/sh_vou.h
9170
9171 SIMPLE FIRMWARE INTERFACE (SFI)
9172 M:      Len Brown <lenb@kernel.org>
9173 L:      sfi-devel@simplefirmware.org
9174 W:      http://simplefirmware.org/
9175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9176 S:      Supported
9177 F:      arch/x86/platform/sfi/
9178 F:      drivers/sfi/
9179 F:      include/linux/sfi*.h
9180
9181 SIMTEC EB110ATX (Chalice CATS)
9182 P:      Ben Dooks
9183 P:      Vincent Sanders <vince@simtec.co.uk>
9184 M:      Simtec Linux Team <linux@simtec.co.uk>
9185 W:      http://www.simtec.co.uk/products/EB110ATX/
9186 S:      Supported
9187
9188 SIMTEC EB2410ITX (BAST)
9189 P:      Ben Dooks
9190 P:      Vincent Sanders <vince@simtec.co.uk>
9191 M:      Simtec Linux Team <linux@simtec.co.uk>
9192 W:      http://www.simtec.co.uk/products/EB2410ITX/
9193 S:      Supported
9194 F:      arch/arm/mach-s3c24xx/mach-bast.c
9195 F:      arch/arm/mach-s3c24xx/bast-ide.c
9196 F:      arch/arm/mach-s3c24xx/bast-irq.c
9197
9198 TI DAVINCI MACHINE SUPPORT
9199 M:      Sekhar Nori <nsekhar@ti.com>
9200 M:      Kevin Hilman <khilman@deeprootsystems.com>
9201 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9202 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9203 S:      Supported
9204 F:      arch/arm/mach-davinci/
9205 F:      drivers/i2c/busses/i2c-davinci.c
9206
9207 TI DAVINCI SERIES MEDIA DRIVER
9208 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9209 L:      linux-media@vger.kernel.org
9210 W:      http://linuxtv.org/
9211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9212 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9213 S:      Maintained
9214 F:      drivers/media/platform/davinci/
9215 F:      include/media/davinci/
9216
9217 TI AM437X VPFE DRIVER
9218 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9219 L:      linux-media@vger.kernel.org
9220 W:      http://linuxtv.org/
9221 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9222 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9223 S:      Maintained
9224 F:      drivers/media/platform/am437x/
9225
9226 OV2659 OMNIVISION SENSOR DRIVER
9227 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9228 L:      linux-media@vger.kernel.org
9229 W:      http://linuxtv.org/
9230 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9231 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9232 S:      Maintained
9233 F:      drivers/media/i2c/ov2659.c
9234 F:      include/media/ov2659.h
9235
9236 SIS 190 ETHERNET DRIVER
9237 M:      Francois Romieu <romieu@fr.zoreil.com>
9238 L:      netdev@vger.kernel.org
9239 S:      Maintained
9240 F:      drivers/net/ethernet/sis/sis190.c
9241
9242 SIS 900/7016 FAST ETHERNET DRIVER
9243 M:      Daniele Venzano <venza@brownhat.org>
9244 W:      http://www.brownhat.org/sis900.html
9245 L:      netdev@vger.kernel.org
9246 S:      Maintained
9247 F:      drivers/net/ethernet/sis/sis900.*
9248
9249 SIS FRAMEBUFFER DRIVER
9250 M:      Thomas Winischhofer <thomas@winischhofer.net>
9251 W:      http://www.winischhofer.net/linuxsisvga.shtml
9252 S:      Maintained
9253 F:      Documentation/fb/sisfb.txt
9254 F:      drivers/video/fbdev/sis/
9255 F:      include/video/sisfb.h
9256
9257 SIS USB2VGA DRIVER
9258 M:      Thomas Winischhofer <thomas@winischhofer.net>
9259 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9260 S:      Maintained
9261 F:      drivers/usb/misc/sisusbvga/
9262
9263 SLAB ALLOCATOR
9264 M:      Christoph Lameter <cl@linux.com>
9265 M:      Pekka Enberg <penberg@kernel.org>
9266 M:      David Rientjes <rientjes@google.com>
9267 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9268 M:      Andrew Morton <akpm@linux-foundation.org>
9269 L:      linux-mm@kvack.org
9270 S:      Maintained
9271 F:      include/linux/sl?b*.h
9272 F:      mm/sl?b*
9273
9274 SLEEPABLE READ-COPY UPDATE (SRCU)
9275 M:      Lai Jiangshan <laijs@cn.fujitsu.com>
9276 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9277 M:      Josh Triplett <josh@joshtriplett.org>
9278 R:      Steven Rostedt <rostedt@goodmis.org>
9279 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9280 L:      linux-kernel@vger.kernel.org
9281 W:      http://www.rdrop.com/users/paulmck/RCU/
9282 S:      Supported
9283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9284 F:      include/linux/srcu.h
9285 F:      kernel/rcu/srcu.c
9286
9287 SMACK SECURITY MODULE
9288 M:      Casey Schaufler <casey@schaufler-ca.com>
9289 L:      linux-security-module@vger.kernel.org
9290 W:      http://schaufler-ca.com
9291 T:      git git://git.gitorious.org/smack-next/kernel.git
9292 S:      Maintained
9293 F:      Documentation/security/Smack.txt
9294 F:      security/smack/
9295
9296 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9297 M:      Kevin Hilman <khilman@kernel.org>
9298 M:      Nishanth Menon <nm@ti.com>
9299 S:      Maintained
9300 F:      drivers/power/avs/
9301 F:      include/linux/power/smartreflex.h
9302 L:      linux-pm@vger.kernel.org
9303
9304 SMC91x ETHERNET DRIVER
9305 M:      Nicolas Pitre <nico@fluxnic.net>
9306 S:      Odd Fixes
9307 F:      drivers/net/ethernet/smsc/smc91x.*
9308
9309 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9310 M:      Sakari Ailus <sakari.ailus@iki.fi>
9311 L:      linux-media@vger.kernel.org
9312 S:      Maintained
9313 F:      drivers/media/i2c/smiapp/
9314 F:      include/media/smiapp.h
9315 F:      drivers/media/i2c/smiapp-pll.c
9316 F:      drivers/media/i2c/smiapp-pll.h
9317 F:      include/uapi/linux/smiapp.h
9318 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9319
9320 SMM665 HARDWARE MONITOR DRIVER
9321 M:      Guenter Roeck <linux@roeck-us.net>
9322 L:      lm-sensors@lm-sensors.org
9323 S:      Maintained
9324 F:      Documentation/hwmon/smm665
9325 F:      drivers/hwmon/smm665.c
9326
9327 SMSC EMC2103 HARDWARE MONITOR DRIVER
9328 M:      Steve Glendinning <steve.glendinning@shawell.net>
9329 L:      lm-sensors@lm-sensors.org
9330 S:      Maintained
9331 F:      Documentation/hwmon/emc2103
9332 F:      drivers/hwmon/emc2103.c
9333
9334 SMSC SCH5627 HARDWARE MONITOR DRIVER
9335 M:      Hans de Goede <hdegoede@redhat.com>
9336 L:      lm-sensors@lm-sensors.org
9337 S:      Supported
9338 F:      Documentation/hwmon/sch5627
9339 F:      drivers/hwmon/sch5627.c
9340
9341 SMSC47B397 HARDWARE MONITOR DRIVER
9342 M:      Jean Delvare <jdelvare@suse.de>
9343 L:      lm-sensors@lm-sensors.org
9344 S:      Maintained
9345 F:      Documentation/hwmon/smsc47b397
9346 F:      drivers/hwmon/smsc47b397.c
9347
9348 SMSC911x ETHERNET DRIVER
9349 M:      Steve Glendinning <steve.glendinning@shawell.net>
9350 L:      netdev@vger.kernel.org
9351 S:      Maintained
9352 F:      include/linux/smsc911x.h
9353 F:      drivers/net/ethernet/smsc/smsc911x.*
9354
9355 SMSC9420 PCI ETHERNET DRIVER
9356 M:      Steve Glendinning <steve.glendinning@shawell.net>
9357 L:      netdev@vger.kernel.org
9358 S:      Maintained
9359 F:      drivers/net/ethernet/smsc/smsc9420.*
9360
9361 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9362 M:      Steve Glendinning <steve.glendinning@shawell.net>
9363 L:      linux-fbdev@vger.kernel.org
9364 S:      Maintained
9365 F:      drivers/video/fbdev/smscufx.c
9366
9367 SOC-CAMERA V4L2 SUBSYSTEM
9368 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9369 L:      linux-media@vger.kernel.org
9370 T:      git git://linuxtv.org/media_tree.git
9371 S:      Maintained
9372 F:      include/media/soc*
9373 F:      drivers/media/i2c/soc_camera/
9374 F:      drivers/media/platform/soc_camera/
9375
9376 SOEKRIS NET48XX LED SUPPORT
9377 M:      Chris Boot <bootc@bootc.net>
9378 S:      Maintained
9379 F:      drivers/leds/leds-net48xx.c
9380
9381 SOFTLOGIC 6x10 MPEG CODEC
9382 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9383 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9384 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9385 M:      Ismael Luceno <ismael@iodev.co.uk>
9386 L:      linux-media@vger.kernel.org
9387 S:      Supported
9388 F:      drivers/media/pci/solo6x10/
9389
9390 SOFTWARE RAID (Multiple Disks) SUPPORT
9391 M:      Neil Brown <neilb@suse.de>
9392 L:      linux-raid@vger.kernel.org
9393 S:      Supported
9394 F:      drivers/md/
9395 F:      include/linux/raid/
9396 F:      include/uapi/linux/raid/
9397
9398 SONIC NETWORK DRIVER
9399 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9400 L:      netdev@vger.kernel.org
9401 S:      Maintained
9402 F:      drivers/net/ethernet/natsemi/sonic.*
9403
9404 SONICS SILICON BACKPLANE DRIVER (SSB)
9405 M:      Michael Buesch <m@bues.ch>
9406 L:      netdev@vger.kernel.org
9407 S:      Maintained
9408 F:      drivers/ssb/
9409 F:      include/linux/ssb/
9410
9411 SONY VAIO CONTROL DEVICE DRIVER
9412 M:      Mattia Dongili <malattia@linux.it>
9413 L:      platform-driver-x86@vger.kernel.org
9414 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9415 S:      Maintained
9416 F:      Documentation/laptops/sony-laptop.txt
9417 F:      drivers/char/sonypi.c
9418 F:      drivers/platform/x86/sony-laptop.c
9419 F:      include/linux/sony-laptop.h
9420
9421 SONY MEMORYSTICK CARD SUPPORT
9422 M:      Alex Dubov <oakad@yahoo.com>
9423 W:      http://tifmxx.berlios.de/
9424 S:      Maintained
9425 F:      drivers/memstick/host/tifm_ms.c
9426
9427 SONY MEMORYSTICK STANDARD SUPPORT
9428 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9429 S:      Maintained
9430 F:      drivers/memstick/core/ms_block.*
9431
9432 SOUND
9433 M:      Jaroslav Kysela <perex@perex.cz>
9434 M:      Takashi Iwai <tiwai@suse.de>
9435 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9436 W:      http://www.alsa-project.org/
9437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9438 T:      git git://git.alsa-project.org/alsa-kernel.git
9439 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9440 S:      Maintained
9441 F:      Documentation/sound/
9442 F:      include/sound/
9443 F:      include/uapi/sound/
9444 F:      sound/
9445
9446 SOUND - COMPRESSED AUDIO
9447 M:      Vinod Koul <vinod.koul@intel.com>
9448 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9450 S:      Supported
9451 F:      Documentation/sound/alsa/compress_offload.txt
9452 F:      include/sound/compress_driver.h
9453 F:      include/uapi/sound/compress_*
9454 F:      sound/core/compress_offload.c
9455 F:      sound/soc/soc-compress.c
9456
9457 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9458 M:      Liam Girdwood <lgirdwood@gmail.com>
9459 M:      Mark Brown <broonie@kernel.org>
9460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9461 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9462 W:      http://alsa-project.org/main/index.php/ASoC
9463 S:      Supported
9464 F:      Documentation/sound/alsa/soc/
9465 F:      sound/soc/
9466 F:      include/sound/soc*
9467
9468 SOUND - DMAENGINE HELPERS
9469 M:      Lars-Peter Clausen <lars@metafoo.de>
9470 S:      Supported
9471 F:      include/sound/dmaengine_pcm.h
9472 F:      sound/core/pcm_dmaengine.c
9473 F:      sound/soc/soc-generic-dmaengine-pcm.c
9474
9475 SP2 MEDIA DRIVER
9476 M:      Olli Salonen <olli.salonen@iki.fi>
9477 L:      linux-media@vger.kernel.org
9478 W:      http://linuxtv.org/
9479 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9480 S:      Maintained
9481 F:      drivers/media/dvb-frontends/sp2*
9482
9483 SPARC + UltraSPARC (sparc/sparc64)
9484 M:      "David S. Miller" <davem@davemloft.net>
9485 L:      sparclinux@vger.kernel.org
9486 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9489 S:      Maintained
9490 F:      arch/sparc/
9491 F:      drivers/sbus/
9492
9493 SPARC SERIAL DRIVERS
9494 M:      "David S. Miller" <davem@davemloft.net>
9495 L:      sparclinux@vger.kernel.org
9496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9498 S:      Maintained
9499 F:      include/linux/sunserialcore.h
9500 F:      drivers/tty/serial/suncore.c
9501 F:      drivers/tty/serial/sunhv.c
9502 F:      drivers/tty/serial/sunsab.c
9503 F:      drivers/tty/serial/sunsab.h
9504 F:      drivers/tty/serial/sunsu.c
9505 F:      drivers/tty/serial/sunzilog.c
9506 F:      drivers/tty/serial/sunzilog.h
9507
9508 SPARSE CHECKER
9509 M:      "Christopher Li" <sparse@chrisli.org>
9510 L:      linux-sparse@vger.kernel.org
9511 W:      https://sparse.wiki.kernel.org/
9512 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9513 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9514 S:      Maintained
9515 F:      include/linux/compiler.h
9516
9517 SPEAR PLATFORM SUPPORT
9518 M:      Viresh Kumar <viresh.linux@gmail.com>
9519 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9520 L:      spear-devel@list.st.com
9521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9522 W:      http://www.st.com/spear
9523 S:      Maintained
9524 F:      arch/arm/mach-spear/
9525
9526 SPEAR CLOCK FRAMEWORK SUPPORT
9527 M:      Viresh Kumar <viresh.linux@gmail.com>
9528 L:      spear-devel@list.st.com
9529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9530 W:      http://www.st.com/spear
9531 S:      Maintained
9532 F:      drivers/clk/spear/
9533
9534 SPI SUBSYSTEM
9535 M:      Mark Brown <broonie@kernel.org>
9536 L:      linux-spi@vger.kernel.org
9537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9538 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9539 S:      Maintained
9540 F:      Documentation/spi/
9541 F:      drivers/spi/
9542 F:      include/linux/spi/
9543 F:      include/uapi/linux/spi/
9544
9545 SPIDERNET NETWORK DRIVER for CELL
9546 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9547 M:      Jens Osterkamp <jens@de.ibm.com>
9548 L:      netdev@vger.kernel.org
9549 S:      Supported
9550 F:      Documentation/networking/spider_net.txt
9551 F:      drivers/net/ethernet/toshiba/spider_net*
9552
9553 SPU FILE SYSTEM
9554 M:      Jeremy Kerr <jk@ozlabs.org>
9555 L:      linuxppc-dev@lists.ozlabs.org
9556 W:      http://www.ibm.com/developerworks/power/cell/
9557 S:      Supported
9558 F:      Documentation/filesystems/spufs.txt
9559 F:      arch/powerpc/platforms/cell/spufs/
9560
9561 SQUASHFS FILE SYSTEM
9562 M:      Phillip Lougher <phillip@squashfs.org.uk>
9563 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9564 W:      http://squashfs.org.uk
9565 S:      Maintained
9566 F:      Documentation/filesystems/squashfs.txt
9567 F:      fs/squashfs/
9568
9569 SRM (Alpha) environment access
9570 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9571 S:      Maintained
9572 F:      arch/alpha/kernel/srm_env.c
9573
9574 STABLE BRANCH
9575 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9576 L:      stable@vger.kernel.org
9577 S:      Supported
9578 F:      Documentation/stable_kernel_rules.txt
9579
9580 STAGING SUBSYSTEM
9581 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9583 L:      devel@driverdev.osuosl.org
9584 S:      Supported
9585 F:      drivers/staging/
9586
9587 STAGING - COMEDI
9588 M:      Ian Abbott <abbotti@mev.co.uk>
9589 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9590 S:      Odd Fixes
9591 F:      drivers/staging/comedi/
9592
9593 STAGING - FLARION FT1000 DRIVERS
9594 M:      Marek Belisko <marek.belisko@gmail.com>
9595 S:      Odd Fixes
9596 F:      drivers/staging/ft1000/
9597
9598 STAGING - INDUSTRIAL IO
9599 M:      Jonathan Cameron <jic23@kernel.org>
9600 L:      linux-iio@vger.kernel.org
9601 S:      Odd Fixes
9602 F:      drivers/staging/iio/
9603
9604 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9605 M:      Jarod Wilson <jarod@wilsonet.com>
9606 W:      http://www.lirc.org/
9607 S:      Odd Fixes
9608 F:      drivers/staging/media/lirc/
9609
9610 STAGING - LUSTRE PARALLEL FILESYSTEM
9611 M:      Oleg Drokin <oleg.drokin@intel.com>
9612 M:      Andreas Dilger <andreas.dilger@intel.com>
9613 L:      HPDD-discuss@lists.01.org (moderated for non-subscribers)
9614 W:      http://lustre.opensfs.org/
9615 S:      Maintained
9616 F:      drivers/staging/lustre
9617
9618 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9619 M:      Julian Andres Klode <jak@jak-linux.org>
9620 M:      Marc Dietrich <marvin24@gmx.de>
9621 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9622 L:      linux-tegra@vger.kernel.org
9623 S:      Maintained
9624 F:      drivers/staging/nvec/
9625
9626 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9627 M:      Jens Frederich <jfrederich@gmail.com>
9628 M:      Daniel Drake <dsd@laptop.org>
9629 M:      Jon Nettleton <jon.nettleton@gmail.com>
9630 W:      http://wiki.laptop.org/go/DCON
9631 S:      Maintained
9632 F:      drivers/staging/olpc_dcon/
9633
9634 STAGING - OZMO DEVICES USB OVER WIFI DRIVER
9635 M:      Shigekatsu Tateno <shigekatsu.tateno@atmel.com>
9636 S:      Maintained
9637 F:      drivers/staging/ozwpan/
9638
9639 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9640 M:      Willy Tarreau <willy@meta-x.org>
9641 S:      Odd Fixes
9642 F:      drivers/staging/panel/
9643
9644 STAGING - REALTEK RTL8712U DRIVERS
9645 M:      Larry Finger <Larry.Finger@lwfinger.net>
9646 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9647 S:      Odd Fixes
9648 F:      drivers/staging/rtl8712/
9649
9650 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9651 M:      Larry Finger <Larry.Finger@lwfinger.net>
9652 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9653 L:      linux-wireless@vger.kernel.org
9654 S:      Maintained
9655 F:      drivers/staging/rtl8723au/
9656
9657 STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
9658 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9659 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9660 M:      Sudip Mukherjee <sudip@vectorindia.org>
9661 L:      linux-fbdev@vger.kernel.org
9662 S:      Maintained
9663 F:      drivers/staging/sm7xxfb/
9664
9665 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9666 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9667 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9668 M:      Sudip Mukherjee <sudip@vectorindia.org>
9669 L:      linux-fbdev@vger.kernel.org
9670 S:      Maintained
9671 F:      drivers/staging/sm750fb/
9672
9673 STAGING - SLICOSS
9674 M:      Lior Dotan <liodot@gmail.com>
9675 M:      Christopher Harrer <charrer@alacritech.com>
9676 S:      Odd Fixes
9677 F:      drivers/staging/slicoss/
9678
9679 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9680 M:      William Hubbs <w.d.hubbs@gmail.com>
9681 M:      Chris Brannon <chris@the-brannons.com>
9682 M:      Kirk Reiser <kirk@reisers.ca>
9683 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9684 L:      speakup@linux-speakup.org
9685 W:      http://www.linux-speakup.org/
9686 S:      Odd Fixes
9687 F:      drivers/staging/speakup/
9688
9689 STAGING - VIA VT665X DRIVERS
9690 M:      Forest Bond <forest@alittletooquiet.net>
9691 S:      Odd Fixes
9692 F:      drivers/staging/vt665?/
9693
9694 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
9695 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
9696 S:      Odd Fixes
9697 F:      drivers/staging/xgifb/
9698
9699 STARFIRE/DURALAN NETWORK DRIVER
9700 M:      Ion Badulescu <ionut@badula.org>
9701 S:      Odd Fixes
9702 F:      drivers/net/ethernet/adaptec/starfire*
9703
9704 SUN3/3X
9705 M:      Sam Creasey <sammy@sammy.net>
9706 W:      http://sammy.net/sun3/
9707 S:      Maintained
9708 F:      arch/m68k/kernel/*sun3*
9709 F:      arch/m68k/sun3*/
9710 F:      arch/m68k/include/asm/sun3*
9711 F:      drivers/net/ethernet/i825xx/sun3*
9712
9713 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
9714 M:      Hans de Goede <hdegoede@redhat.com>
9715 L:      linux-input@vger.kernel.org
9716 S:      Maintained
9717 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
9718 F:      drivers/input/keyboard/sun4i-lradc-keys.c
9719
9720 SUNDANCE NETWORK DRIVER
9721 M:      Denis Kirjanov <kda@linux-powerpc.org>
9722 L:      netdev@vger.kernel.org
9723 S:      Maintained
9724 F:      drivers/net/ethernet/dlink/sundance.c
9725
9726 SUPERH
9727 L:      linux-sh@vger.kernel.org
9728 Q:      http://patchwork.kernel.org/project/linux-sh/list/
9729 S:      Orphan
9730 F:      Documentation/sh/
9731 F:      arch/sh/
9732 F:      drivers/sh/
9733
9734 SUSPEND TO RAM
9735 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9736 M:      Len Brown <len.brown@intel.com>
9737 M:      Pavel Machek <pavel@ucw.cz>
9738 L:      linux-pm@vger.kernel.org
9739 S:      Supported
9740 F:      Documentation/power/
9741 F:      arch/x86/kernel/acpi/
9742 F:      drivers/base/power/
9743 F:      kernel/power/
9744 F:      include/linux/suspend.h
9745 F:      include/linux/freezer.h
9746 F:      include/linux/pm.h
9747
9748 SVGA HANDLING
9749 M:      Martin Mares <mj@ucw.cz>
9750 L:      linux-video@atrey.karlin.mff.cuni.cz
9751 S:      Maintained
9752 F:      Documentation/svga.txt
9753 F:      arch/x86/boot/video*
9754
9755 SWIOTLB SUBSYSTEM
9756 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9757 L:      linux-kernel@vger.kernel.org
9758 S:      Supported
9759 F:      lib/swiotlb.c
9760 F:      arch/*/kernel/pci-swiotlb.c
9761 F:      include/linux/swiotlb.h
9762
9763 SWITCHDEV
9764 M:      Jiri Pirko <jiri@resnulli.us>
9765 L:      netdev@vger.kernel.org
9766 S:      Supported
9767 F:      net/switchdev/
9768 F:      include/net/switchdev.h
9769
9770 SYNOPSYS ARC ARCHITECTURE
9771 M:      Vineet Gupta <vgupta@synopsys.com>
9772 S:      Supported
9773 F:      arch/arc/
9774 F:      Documentation/devicetree/bindings/arc/
9775 F:      drivers/tty/serial/arc_uart.c
9776
9777 SYSTEM CONFIGURATION (SYSCON)
9778 M:      Lee Jones <lee.jones@linaro.org>
9779 M:      Arnd Bergmann <arnd@arndb.de>
9780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
9781 S:      Supported
9782 F:      drivers/mfd/syscon.c
9783
9784 SYSV FILESYSTEM
9785 M:      Christoph Hellwig <hch@infradead.org>
9786 S:      Maintained
9787 F:      Documentation/filesystems/sysv-fs.txt
9788 F:      fs/sysv/
9789 F:      include/linux/sysv_fs.h
9790
9791 TARGET SUBSYSTEM
9792 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
9793 L:      linux-scsi@vger.kernel.org
9794 L:      target-devel@vger.kernel.org
9795 W:      http://www.linux-iscsi.org
9796 W:      http://groups.google.com/group/linux-iscsi-target-dev
9797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9798 S:      Supported
9799 F:      drivers/target/
9800 F:      include/target/
9801 F:      Documentation/target/
9802
9803 TASKSTATS STATISTICS INTERFACE
9804 M:      Balbir Singh <bsingharora@gmail.com>
9805 S:      Maintained
9806 F:      Documentation/accounting/taskstats*
9807 F:      include/linux/taskstats*
9808 F:      kernel/taskstats.c
9809
9810 TC CLASSIFIER
9811 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9812 L:      netdev@vger.kernel.org
9813 S:      Maintained
9814 F:      include/net/pkt_cls.h
9815 F:      include/uapi/linux/pkt_cls.h
9816 F:      net/sched/
9817
9818 TCP LOW PRIORITY MODULE
9819 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
9820 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
9821 W:      http://tcp-lp-mod.sourceforge.net/
9822 S:      Maintained
9823 F:      net/ipv4/tcp_lp.c
9824
9825 TDA10071 MEDIA DRIVER
9826 M:      Antti Palosaari <crope@iki.fi>
9827 L:      linux-media@vger.kernel.org
9828 W:      http://linuxtv.org/
9829 W:      http://palosaari.fi/linux/
9830 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9831 T:      git git://linuxtv.org/anttip/media_tree.git
9832 S:      Maintained
9833 F:      drivers/media/dvb-frontends/tda10071*
9834
9835 TDA18212 MEDIA DRIVER
9836 M:      Antti Palosaari <crope@iki.fi>
9837 L:      linux-media@vger.kernel.org
9838 W:      http://linuxtv.org/
9839 W:      http://palosaari.fi/linux/
9840 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9841 T:      git git://linuxtv.org/anttip/media_tree.git
9842 S:      Maintained
9843 F:      drivers/media/tuners/tda18212*
9844
9845 TDA18218 MEDIA DRIVER
9846 M:      Antti Palosaari <crope@iki.fi>
9847 L:      linux-media@vger.kernel.org
9848 W:      http://linuxtv.org/
9849 W:      http://palosaari.fi/linux/
9850 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9851 T:      git git://linuxtv.org/anttip/media_tree.git
9852 S:      Maintained
9853 F:      drivers/media/tuners/tda18218*
9854
9855 TDA18271 MEDIA DRIVER
9856 M:      Michael Krufky <mkrufky@linuxtv.org>
9857 L:      linux-media@vger.kernel.org
9858 W:      http://linuxtv.org/
9859 W:      http://github.com/mkrufky
9860 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9861 T:      git git://linuxtv.org/mkrufky/tuners.git
9862 S:      Maintained
9863 F:      drivers/media/tuners/tda18271*
9864
9865 TDA827x MEDIA DRIVER
9866 M:      Michael Krufky <mkrufky@linuxtv.org>
9867 L:      linux-media@vger.kernel.org
9868 W:      http://linuxtv.org/
9869 W:      http://github.com/mkrufky
9870 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9871 T:      git git://linuxtv.org/mkrufky/tuners.git
9872 S:      Maintained
9873 F:      drivers/media/tuners/tda8290.*
9874
9875 TDA8290 MEDIA DRIVER
9876 M:      Michael Krufky <mkrufky@linuxtv.org>
9877 L:      linux-media@vger.kernel.org
9878 W:      http://linuxtv.org/
9879 W:      http://github.com/mkrufky
9880 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9881 T:      git git://linuxtv.org/mkrufky/tuners.git
9882 S:      Maintained
9883 F:      drivers/media/tuners/tda8290.*
9884
9885 TDA9840 MEDIA DRIVER
9886 M:      Hans Verkuil <hverkuil@xs4all.nl>
9887 L:      linux-media@vger.kernel.org
9888 T:      git git://linuxtv.org/media_tree.git
9889 W:      http://linuxtv.org
9890 S:      Maintained
9891 F:      drivers/media/i2c/tda9840*
9892
9893 TEA5761 TUNER DRIVER
9894 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9895 L:      linux-media@vger.kernel.org
9896 W:      http://linuxtv.org
9897 T:      git git://linuxtv.org/media_tree.git
9898 S:      Odd fixes
9899 F:      drivers/media/tuners/tea5761.*
9900
9901 TEA5767 TUNER DRIVER
9902 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9903 L:      linux-media@vger.kernel.org
9904 W:      http://linuxtv.org
9905 T:      git git://linuxtv.org/media_tree.git
9906 S:      Maintained
9907 F:      drivers/media/tuners/tea5767.*
9908
9909 TEA6415C MEDIA DRIVER
9910 M:      Hans Verkuil <hverkuil@xs4all.nl>
9911 L:      linux-media@vger.kernel.org
9912 T:      git git://linuxtv.org/media_tree.git
9913 W:      http://linuxtv.org
9914 S:      Maintained
9915 F:      drivers/media/i2c/tea6415c*
9916
9917 TEA6420 MEDIA DRIVER
9918 M:      Hans Verkuil <hverkuil@xs4all.nl>
9919 L:      linux-media@vger.kernel.org
9920 T:      git git://linuxtv.org/media_tree.git
9921 W:      http://linuxtv.org
9922 S:      Maintained
9923 F:      drivers/media/i2c/tea6420*
9924
9925 TEAM DRIVER
9926 M:      Jiri Pirko <jiri@resnulli.us>
9927 L:      netdev@vger.kernel.org
9928 S:      Supported
9929 F:      drivers/net/team/
9930 F:      include/linux/if_team.h
9931 F:      include/uapi/linux/if_team.h
9932
9933 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
9934 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
9935 S:      Maintained
9936 F:      arch/x86/platform/ts5500/
9937
9938 TECHNOTREND USB IR RECEIVER
9939 M:      Sean Young <sean@mess.org>
9940 L:      linux-media@vger.kernel.org
9941 S:      Maintained
9942 F:      drivers/media/rc/ttusbir.c
9943
9944 TEGRA ARCHITECTURE SUPPORT
9945 M:      Stephen Warren <swarren@wwwdotorg.org>
9946 M:      Thierry Reding <thierry.reding@gmail.com>
9947 M:      Alexandre Courbot <gnurou@gmail.com>
9948 L:      linux-tegra@vger.kernel.org
9949 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
9950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
9951 S:      Supported
9952 N:      [^a-z]tegra
9953
9954 TEGRA CLOCK DRIVER
9955 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
9956 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
9957 S:      Supported
9958 F:      drivers/clk/tegra/
9959
9960 TEGRA DMA DRIVER
9961 M:      Laxman Dewangan <ldewangan@nvidia.com>
9962 S:      Supported
9963 F:      drivers/dma/tegra20-apb-dma.c
9964
9965 TEGRA I2C DRIVER
9966 M:      Laxman Dewangan <ldewangan@nvidia.com>
9967 S:      Supported
9968 F:      drivers/i2c/busses/i2c-tegra.c
9969
9970 TEGRA IOMMU DRIVERS
9971 M:      Hiroshi Doyu <hdoyu@nvidia.com>
9972 S:      Supported
9973 F:      drivers/iommu/tegra*
9974
9975 TEGRA KBC DRIVER
9976 M:      Rakesh Iyer <riyer@nvidia.com>
9977 M:      Laxman Dewangan <ldewangan@nvidia.com>
9978 S:      Supported
9979 F:      drivers/input/keyboard/tegra-kbc.c
9980
9981 TEGRA PWM DRIVER
9982 M:      Thierry Reding <thierry.reding@gmail.com>
9983 S:      Supported
9984 F:      drivers/pwm/pwm-tegra.c
9985
9986 TEGRA SERIAL DRIVER
9987 M:      Laxman Dewangan <ldewangan@nvidia.com>
9988 S:      Supported
9989 F:      drivers/tty/serial/serial-tegra.c
9990
9991 TEGRA SPI DRIVER
9992 M:      Laxman Dewangan <ldewangan@nvidia.com>
9993 S:      Supported
9994 F:      drivers/spi/spi-tegra*
9995
9996 TEHUTI ETHERNET DRIVER
9997 M:      Andy Gospodarek <andy@greyhouse.net>
9998 L:      netdev@vger.kernel.org
9999 S:      Supported
10000 F:      drivers/net/ethernet/tehuti/*
10001
10002 Telecom Clock Driver for MCPL0010
10003 M:      Mark Gross <mark.gross@intel.com>
10004 S:      Supported
10005 F:      drivers/char/tlclk.c
10006
10007 TENSILICA XTENSA PORT (xtensa)
10008 M:      Chris Zankel <chris@zankel.net>
10009 M:      Max Filippov <jcmvbkbc@gmail.com>
10010 L:      linux-xtensa@linux-xtensa.org
10011 S:      Maintained
10012 F:      arch/xtensa/
10013 F:      drivers/irqchip/irq-xtensa-*
10014
10015 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10016 M:      Hans Verkuil <hverkuil@xs4all.nl>
10017 L:      linux-media@vger.kernel.org
10018 T:      git git://linuxtv.org/media_tree.git
10019 W:      http://linuxtv.org
10020 S:      Maintained
10021 F:      drivers/media/radio/radio-raremono.c
10022
10023 THERMAL
10024 M:      Zhang Rui <rui.zhang@intel.com>
10025 M:      Eduardo Valentin <edubezval@gmail.com>
10026 L:      linux-pm@vger.kernel.org
10027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10029 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10030 S:      Supported
10031 F:      drivers/thermal/
10032 F:      include/linux/thermal.h
10033 F:      include/uapi/linux/thermal.h
10034 F:      include/linux/cpu_cooling.h
10035 F:      Documentation/devicetree/bindings/thermal/
10036
10037 THINGM BLINK(1) USB RGB LED DRIVER
10038 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10039 S:      Maintained
10040 F:      drivers/hid/hid-thingm.c
10041
10042 THINKPAD ACPI EXTRAS DRIVER
10043 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10044 L:      ibm-acpi-devel@lists.sourceforge.net
10045 L:      platform-driver-x86@vger.kernel.org
10046 W:      http://ibm-acpi.sourceforge.net
10047 W:      http://thinkwiki.org/wiki/Ibm-acpi
10048 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10049 S:      Maintained
10050 F:      drivers/platform/x86/thinkpad_acpi.c
10051
10052 TI BANDGAP AND THERMAL DRIVER
10053 M:      Eduardo Valentin <edubezval@gmail.com>
10054 L:      linux-pm@vger.kernel.org
10055 L:      linux-omap@vger.kernel.org
10056 S:      Maintained
10057 F:      drivers/thermal/ti-soc-thermal/
10058
10059 TI CDCE706 CLOCK DRIVER
10060 M:      Max Filippov <jcmvbkbc@gmail.com>
10061 S:      Maintained
10062 F:      drivers/clk/clk-cdce706.c
10063
10064 TI CLOCK DRIVER
10065 M:      Tero Kristo <t-kristo@ti.com>
10066 L:      linux-omap@vger.kernel.org
10067 S:      Maintained
10068 F:      drivers/clk/ti/
10069 F:      include/linux/clk/ti.h
10070
10071 TI FLASH MEDIA INTERFACE DRIVER
10072 M:      Alex Dubov <oakad@yahoo.com>
10073 S:      Maintained
10074 F:      drivers/misc/tifm*
10075 F:      drivers/mmc/host/tifm_sd.c
10076 F:      include/linux/tifm.h
10077
10078 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10079 M:      Santosh Shilimkar <ssantosh@kernel.org>
10080 L:      linux-kernel@vger.kernel.org
10081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10082 S:      Maintained
10083 F:      drivers/soc/ti/*
10084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10085
10086
10087 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10088 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10089 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10090 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10091 S:      Maintained
10092 F:      sound/soc/codecs/lm49453*
10093 F:      sound/soc/codecs/isabelle*
10094
10095 TI LP855x BACKLIGHT DRIVER
10096 M:      Milo Kim <milo.kim@ti.com>
10097 S:      Maintained
10098 F:      Documentation/backlight/lp855x-driver.txt
10099 F:      drivers/video/backlight/lp855x_bl.c
10100 F:      include/linux/platform_data/lp855x.h
10101
10102 TI LP8727 CHARGER DRIVER
10103 M:      Milo Kim <milo.kim@ti.com>
10104 S:      Maintained
10105 F:      drivers/power/lp8727_charger.c
10106 F:      include/linux/platform_data/lp8727.h
10107
10108 TI LP8788 MFD DRIVER
10109 M:      Milo Kim <milo.kim@ti.com>
10110 S:      Maintained
10111 F:      drivers/iio/adc/lp8788_adc.c
10112 F:      drivers/leds/leds-lp8788.c
10113 F:      drivers/mfd/lp8788*.c
10114 F:      drivers/power/lp8788-charger.c
10115 F:      drivers/regulator/lp8788-*.c
10116 F:      include/linux/mfd/lp8788*.h
10117
10118 TI NETCP ETHERNET DRIVER
10119 M:      Wingman Kwok <w-kwok2@ti.com>
10120 M:      Murali Karicheri <m-karicheri2@ti.com>
10121 L:      netdev@vger.kernel.org
10122 S:      Maintained
10123 F:      drivers/net/ethernet/ti/netcp*
10124
10125 TI TAS571X FAMILY ASoC CODEC DRIVER
10126 M:      Kevin Cernekee <cernekee@chromium.org>
10127 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10128 S:      Odd Fixes
10129 F:      sound/soc/codecs/tas571x*
10130
10131 TI TWL4030 SERIES SOC CODEC DRIVER
10132 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10133 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10134 S:      Maintained
10135 F:      sound/soc/codecs/twl4030*
10136
10137 TI WILINK WIRELESS DRIVERS
10138 L:      linux-wireless@vger.kernel.org
10139 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10140 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10142 S:      Orphan
10143 F:      drivers/net/wireless/ti/
10144 F:      include/linux/wl12xx.h
10145
10146 TIPC NETWORK LAYER
10147 M:      Jon Maloy <jon.maloy@ericsson.com>
10148 M:      Ying Xue <ying.xue@windriver.com>
10149 L:      netdev@vger.kernel.org (core kernel code)
10150 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10151 W:      http://tipc.sourceforge.net/
10152 S:      Maintained
10153 F:      include/uapi/linux/tipc*.h
10154 F:      net/tipc/
10155
10156 TILE ARCHITECTURE
10157 M:      Chris Metcalf <cmetcalf@ezchip.com>
10158 W:      http://www.ezchip.com/scm/
10159 S:      Supported
10160 F:      arch/tile/
10161 F:      drivers/char/tile-srom.c
10162 F:      drivers/edac/tile_edac.c
10163 F:      drivers/net/ethernet/tile/
10164 F:      drivers/rtc/rtc-tile.c
10165 F:      drivers/tty/hvc/hvc_tile.c
10166 F:      drivers/tty/serial/tilegx.c
10167 F:      drivers/usb/host/*-tilegx.c
10168 F:      include/linux/usb/tilegx.h
10169
10170 TLAN NETWORK DRIVER
10171 M:      Samuel Chessman <chessman@tux.org>
10172 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10173 W:      http://sourceforge.net/projects/tlan/
10174 S:      Maintained
10175 F:      Documentation/networking/tlan.txt
10176 F:      drivers/net/ethernet/ti/tlan.*
10177
10178 TOMOYO SECURITY MODULE
10179 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10180 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10181 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10182 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10183 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10184 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10185 W:      http://tomoyo.sourceforge.jp/
10186 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10187 S:      Maintained
10188 F:      security/tomoyo/
10189
10190 TOPSTAR LAPTOP EXTRAS DRIVER
10191 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10192 L:      platform-driver-x86@vger.kernel.org
10193 S:      Maintained
10194 F:      drivers/platform/x86/topstar-laptop.c
10195
10196 TOSHIBA ACPI EXTRAS DRIVER
10197 M:      Azael Avalos <coproscefalo@gmail.com>
10198 L:      platform-driver-x86@vger.kernel.org
10199 S:      Maintained
10200 F:      drivers/platform/x86/toshiba_acpi.c
10201
10202 TOSHIBA BLUETOOTH DRIVER
10203 M:      Azael Avalos <coproscefalo@gmail.com>
10204 L:      platform-driver-x86@vger.kernel.org
10205 S:      Maintained
10206 F:      drivers/platform/x86/toshiba_bluetooth.c
10207
10208 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10209 M:      Azael Avalos <coproscefalo@gmail.com>
10210 L:      platform-driver-x86@vger.kernel.org
10211 S:      Maintained
10212 F:      drivers/platform/x86/toshiba_haps.c
10213
10214 TOSHIBA SMM DRIVER
10215 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10216 L:      tlinux-users@tce.toshiba-dme.co.jp
10217 W:      http://www.buzzard.org.uk/toshiba/
10218 S:      Maintained
10219 F:      drivers/char/toshiba.c
10220 F:      include/linux/toshiba.h
10221 F:      include/uapi/linux/toshiba.h
10222
10223 TMIO MMC DRIVER
10224 M:      Ian Molton <ian@mnementh.co.uk>
10225 L:      linux-mmc@vger.kernel.org
10226 S:      Maintained
10227 F:      drivers/mmc/host/tmio_mmc*
10228 F:      drivers/mmc/host/sh_mobile_sdhi.c
10229 F:      include/linux/mmc/tmio.h
10230 F:      include/linux/mmc/sh_mobile_sdhi.h
10231
10232 TMP401 HARDWARE MONITOR DRIVER
10233 M:      Guenter Roeck <linux@roeck-us.net>
10234 L:      lm-sensors@lm-sensors.org
10235 S:      Maintained
10236 F:      Documentation/hwmon/tmp401
10237 F:      drivers/hwmon/tmp401.c
10238
10239 TMPFS (SHMEM FILESYSTEM)
10240 M:      Hugh Dickins <hughd@google.com>
10241 L:      linux-mm@kvack.org
10242 S:      Maintained
10243 F:      include/linux/shmem_fs.h
10244 F:      mm/shmem.c
10245
10246 TM6000 VIDEO4LINUX DRIVER
10247 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10248 L:      linux-media@vger.kernel.org
10249 W:      http://linuxtv.org
10250 T:      git git://linuxtv.org/media_tree.git
10251 S:      Odd fixes
10252 F:      drivers/media/usb/tm6000/
10253
10254 TW68 VIDEO4LINUX DRIVER
10255 M:      Hans Verkuil <hverkuil@xs4all.nl>
10256 L:      linux-media@vger.kernel.org
10257 T:      git git://linuxtv.org/media_tree.git
10258 W:      http://linuxtv.org
10259 S:      Odd Fixes
10260 F:      drivers/media/pci/tw68/
10261
10262 TPM DEVICE DRIVER
10263 M:      Peter Huewe <peterhuewe@gmx.de>
10264 M:      Marcel Selhorst <tpmdd@selhorst.net>
10265 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10266 W:      http://tpmdd.sourceforge.net
10267 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10268 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10269 T:      https://github.com/PeterHuewe/linux-tpmdd
10270 S:      Maintained
10271 F:      drivers/char/tpm/
10272
10273 TPM IBM_VTPM DEVICE DRIVER
10274 M:      Ashley Lai <ashleydlai@gmail.com>
10275 W:      http://tpmdd.sourceforge.net
10276 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10277 S:      Maintained
10278 F:      drivers/char/tpm/tpm_ibmvtpm*
10279
10280 TRACING
10281 M:      Steven Rostedt <rostedt@goodmis.org>
10282 M:      Ingo Molnar <mingo@redhat.com>
10283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10284 S:      Maintained
10285 F:      Documentation/trace/ftrace.txt
10286 F:      arch/*/*/*/ftrace.h
10287 F:      arch/*/kernel/ftrace.c
10288 F:      include/*/ftrace.h
10289 F:      include/linux/trace*.h
10290 F:      include/trace/
10291 F:      kernel/trace/
10292 F:      tools/testing/selftests/ftrace/
10293
10294 TRIVIAL PATCHES
10295 M:      Jiri Kosina <trivial@kernel.org>
10296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10297 S:      Maintained
10298 K:      ^Subject:.*(?i)trivial
10299
10300 TTY LAYER
10301 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10302 M:      Jiri Slaby <jslaby@suse.cz>
10303 S:      Supported
10304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10305 F:      drivers/tty/
10306 F:      drivers/tty/serial/serial_core.c
10307 F:      include/linux/serial_core.h
10308 F:      include/linux/serial.h
10309 F:      include/linux/tty.h
10310 F:      include/uapi/linux/serial_core.h
10311 F:      include/uapi/linux/serial.h
10312 F:      include/uapi/linux/tty.h
10313
10314 TUA9001 MEDIA DRIVER
10315 M:      Antti Palosaari <crope@iki.fi>
10316 L:      linux-media@vger.kernel.org
10317 W:      http://linuxtv.org/
10318 W:      http://palosaari.fi/linux/
10319 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10320 T:      git git://linuxtv.org/anttip/media_tree.git
10321 S:      Maintained
10322 F:      drivers/media/tuners/tua9001*
10323
10324 TULIP NETWORK DRIVERS
10325 M:      Grant Grundler <grundler@parisc-linux.org>
10326 L:      netdev@vger.kernel.org
10327 S:      Maintained
10328 F:      drivers/net/ethernet/dec/tulip/
10329
10330 TUN/TAP driver
10331 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10332 W:      http://vtun.sourceforge.net/tun
10333 S:      Maintained
10334 F:      Documentation/networking/tuntap.txt
10335 F:      arch/um/os-Linux/drivers/
10336
10337 TURBOCHANNEL SUBSYSTEM
10338 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10339 M:      Ralf Baechle <ralf@linux-mips.org>
10340 L:      linux-mips@linux-mips.org
10341 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10342 S:      Maintained
10343 F:      drivers/tc/
10344 F:      include/linux/tc.h
10345
10346 U14-34F SCSI DRIVER
10347 M:      Dario Ballabio <ballabio_dario@emc.com>
10348 L:      linux-scsi@vger.kernel.org
10349 S:      Maintained
10350 F:      drivers/scsi/u14-34f.c
10351
10352 UBI FILE SYSTEM (UBIFS)
10353 M:      Artem Bityutskiy <dedekind1@gmail.com>
10354 M:      Adrian Hunter <adrian.hunter@intel.com>
10355 L:      linux-mtd@lists.infradead.org
10356 T:      git git://git.infradead.org/ubifs-2.6.git
10357 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10358 S:      Maintained
10359 F:      Documentation/filesystems/ubifs.txt
10360 F:      fs/ubifs/
10361
10362 UCLINUX (AND M68KNOMMU)
10363 M:      Greg Ungerer <gerg@uclinux.org>
10364 W:      http://www.uclinux.org/
10365 L:      uclinux-dev@uclinux.org  (subscribers-only)
10366 S:      Maintained
10367 F:      arch/m68k/*/*_no.*
10368 F:      arch/m68k/include/asm/*_no.*
10369
10370 UDF FILESYSTEM
10371 M:      Jan Kara <jack@suse.cz>
10372 S:      Maintained
10373 F:      Documentation/filesystems/udf.txt
10374 F:      fs/udf/
10375
10376 UFS FILESYSTEM
10377 M:      Evgeniy Dushistov <dushistov@mail.ru>
10378 S:      Maintained
10379 F:      Documentation/filesystems/ufs.txt
10380 F:      fs/ufs/
10381
10382 UHID USERSPACE HID IO DRIVER:
10383 M:      David Herrmann <dh.herrmann@googlemail.com>
10384 L:      linux-input@vger.kernel.org
10385 S:      Maintained
10386 F:      drivers/hid/uhid.c
10387 F:      include/uapi/linux/uhid.h
10388
10389 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10390 L:      linux-usb@vger.kernel.org
10391 S:      Orphan
10392 F:      drivers/uwb/
10393 F:      include/linux/uwb.h
10394 F:      include/linux/uwb/
10395
10396 UNICORE32 ARCHITECTURE:
10397 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10398 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10399 S:      Maintained
10400 T:      git git://github.com/gxt/linux.git
10401 F:      arch/unicore32/
10402
10403 UNIFDEF
10404 M:      Tony Finch <dot@dotat.at>
10405 W:      http://dotat.at/prog/unifdef
10406 S:      Maintained
10407 F:      scripts/unifdef.c
10408
10409 UNIFORM CDROM DRIVER
10410 M:      Jens Axboe <axboe@kernel.dk>
10411 W:      http://www.kernel.dk
10412 S:      Maintained
10413 F:      Documentation/cdrom/
10414 F:      drivers/cdrom/cdrom.c
10415 F:      include/linux/cdrom.h
10416 F:      include/uapi/linux/cdrom.h
10417
10418 UNISYS S-PAR DRIVERS
10419 M:      Benjamin Romer <benjamin.romer@unisys.com>
10420 M:      David Kershner <david.kershner@unisys.com>
10421 L:      sparmaintainer@unisys.com (Unisys internal)
10422 S:      Supported
10423 F:      drivers/staging/unisys/
10424
10425 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10426 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10427 L:      linux-scsi@vger.kernel.org
10428 S:      Supported
10429 F:      Documentation/scsi/ufs.txt
10430 F:      drivers/scsi/ufs/
10431
10432 UNSORTED BLOCK IMAGES (UBI)
10433 M:      Artem Bityutskiy <dedekind1@gmail.com>
10434 M:      Richard Weinberger <richard@nod.at>
10435 W:      http://www.linux-mtd.infradead.org/
10436 L:      linux-mtd@lists.infradead.org
10437 T:      git git://git.infradead.org/ubifs-2.6.git
10438 S:      Supported
10439 F:      drivers/mtd/ubi/
10440 F:      include/linux/mtd/ubi.h
10441 F:      include/uapi/mtd/ubi-user.h
10442
10443 USB ACM DRIVER
10444 M:      Oliver Neukum <oliver@neukum.org>
10445 L:      linux-usb@vger.kernel.org
10446 S:      Maintained
10447 F:      Documentation/usb/acm.txt
10448 F:      drivers/usb/class/cdc-acm.*
10449
10450 USB AR5523 WIRELESS DRIVER
10451 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10452 L:      linux-wireless@vger.kernel.org
10453 S:      Maintained
10454 F:      drivers/net/wireless/ath/ar5523/
10455
10456 USB ATTACHED SCSI
10457 M:      Hans de Goede <hdegoede@redhat.com>
10458 M:      Gerd Hoffmann <kraxel@redhat.com>
10459 L:      linux-usb@vger.kernel.org
10460 L:      linux-scsi@vger.kernel.org
10461 S:      Maintained
10462 F:      drivers/usb/storage/uas.c
10463
10464 USB CDC ETHERNET DRIVER
10465 M:      Oliver Neukum <oliver@neukum.org>
10466 L:      linux-usb@vger.kernel.org
10467 S:      Maintained
10468 F:      drivers/net/usb/cdc_*.c
10469 F:      include/uapi/linux/usb/cdc.h
10470
10471 USB CHAOSKEY DRIVER
10472 M:      Keith Packard <keithp@keithp.com>
10473 L:      linux-usb@vger.kernel.org
10474 S:      Maintained
10475 F:      drivers/usb/misc/chaoskey.c
10476
10477 USB CYPRESS C67X00 DRIVER
10478 M:      Peter Korsgaard <jacmet@sunsite.dk>
10479 L:      linux-usb@vger.kernel.org
10480 S:      Maintained
10481 F:      drivers/usb/c67x00/
10482
10483 USB DAVICOM DM9601 DRIVER
10484 M:      Peter Korsgaard <jacmet@sunsite.dk>
10485 L:      netdev@vger.kernel.org
10486 W:      http://www.linux-usb.org/usbnet
10487 S:      Maintained
10488 F:      drivers/net/usb/dm9601.c
10489
10490 USB DIAMOND RIO500 DRIVER
10491 M:      Cesar Miquel <miquel@df.uba.ar>
10492 L:      rio500-users@lists.sourceforge.net
10493 W:      http://rio500.sourceforge.net
10494 S:      Maintained
10495 F:      drivers/usb/misc/rio500*
10496
10497 USB EHCI DRIVER
10498 M:      Alan Stern <stern@rowland.harvard.edu>
10499 L:      linux-usb@vger.kernel.org
10500 S:      Maintained
10501 F:      Documentation/usb/ehci.txt
10502 F:      drivers/usb/host/ehci*
10503
10504 USB GADGET/PERIPHERAL SUBSYSTEM
10505 M:      Felipe Balbi <balbi@ti.com>
10506 L:      linux-usb@vger.kernel.org
10507 W:      http://www.linux-usb.org/gadget
10508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10509 S:      Maintained
10510 F:      drivers/usb/gadget/
10511 F:      include/linux/usb/gadget*
10512
10513 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10514 M:      Jiri Kosina <jkosina@suse.cz>
10515 L:      linux-usb@vger.kernel.org
10516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10517 S:      Maintained
10518 F:      Documentation/hid/hiddev.txt
10519 F:      drivers/hid/usbhid/
10520
10521 USB ISP116X DRIVER
10522 M:      Olav Kongas <ok@artecdesign.ee>
10523 L:      linux-usb@vger.kernel.org
10524 S:      Maintained
10525 F:      drivers/usb/host/isp116x*
10526 F:      include/linux/usb/isp116x.h
10527
10528 USB MASS STORAGE DRIVER
10529 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10530 L:      linux-usb@vger.kernel.org
10531 L:      usb-storage@lists.one-eyed-alien.net
10532 S:      Maintained
10533 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10534 F:      drivers/usb/storage/
10535
10536 USB MIDI DRIVER
10537 M:      Clemens Ladisch <clemens@ladisch.de>
10538 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10539 T:      git git://git.alsa-project.org/alsa-kernel.git
10540 S:      Maintained
10541 F:      sound/usb/midi.*
10542
10543 USB NETWORKING DRIVERS
10544 L:      linux-usb@vger.kernel.org
10545 S:      Odd Fixes
10546 F:      drivers/net/usb/
10547
10548 USB OHCI DRIVER
10549 M:      Alan Stern <stern@rowland.harvard.edu>
10550 L:      linux-usb@vger.kernel.org
10551 S:      Maintained
10552 F:      Documentation/usb/ohci.txt
10553 F:      drivers/usb/host/ohci*
10554
10555 USB OTG FSM (Finite State Machine)
10556 M:      Peter Chen <Peter.Chen@freescale.com>
10557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10558 L:      linux-usb@vger.kernel.org
10559 S:      Maintained
10560 F:      drivers/usb/common/usb-otg-fsm.c
10561
10562 USB OVER IP DRIVER
10563 M:      Valentina Manea <valentina.manea.m@gmail.com>
10564 M:      Shuah Khan <shuah.kh@samsung.com>
10565 L:      linux-usb@vger.kernel.org
10566 S:      Maintained
10567 F:      drivers/usb/usbip/
10568 F:      tools/usb/usbip/
10569
10570 USB PEGASUS DRIVER
10571 M:      Petko Manolov <petkan@nucleusys.com>
10572 L:      linux-usb@vger.kernel.org
10573 L:      netdev@vger.kernel.org
10574 T:      git git://github.com/petkan/pegasus.git
10575 W:      https://github.com/petkan/pegasus
10576 S:      Maintained
10577 F:      drivers/net/usb/pegasus.*
10578
10579 USB PHY LAYER
10580 M:      Felipe Balbi <balbi@ti.com>
10581 L:      linux-usb@vger.kernel.org
10582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10583 S:      Maintained
10584 F:      drivers/usb/phy/
10585
10586 USB PRINTER DRIVER (usblp)
10587 M:      Pete Zaitcev <zaitcev@redhat.com>
10588 L:      linux-usb@vger.kernel.org
10589 S:      Supported
10590 F:      drivers/usb/class/usblp.c
10591
10592 USB RTL8150 DRIVER
10593 M:      Petko Manolov <petkan@nucleusys.com>
10594 L:      linux-usb@vger.kernel.org
10595 L:      netdev@vger.kernel.org
10596 T:      git git://github.com/petkan/rtl8150.git
10597 W:      https://github.com/petkan/rtl8150
10598 S:      Maintained
10599 F:      drivers/net/usb/rtl8150.c
10600
10601 USB SERIAL SUBSYSTEM
10602 M:      Johan Hovold <johan@kernel.org>
10603 L:      linux-usb@vger.kernel.org
10604 S:      Maintained
10605 F:      Documentation/usb/usb-serial.txt
10606 F:      drivers/usb/serial/
10607 F:      include/linux/usb/serial.h
10608
10609 USB SMSC75XX ETHERNET DRIVER
10610 M:      Steve Glendinning <steve.glendinning@shawell.net>
10611 L:      netdev@vger.kernel.org
10612 S:      Maintained
10613 F:      drivers/net/usb/smsc75xx.*
10614
10615 USB SMSC95XX ETHERNET DRIVER
10616 M:      Steve Glendinning <steve.glendinning@shawell.net>
10617 L:      netdev@vger.kernel.org
10618 S:      Maintained
10619 F:      drivers/net/usb/smsc95xx.*
10620
10621 USB SUBSYSTEM
10622 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10623 L:      linux-usb@vger.kernel.org
10624 W:      http://www.linux-usb.org
10625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10626 S:      Supported
10627 F:      Documentation/usb/
10628 F:      drivers/usb/
10629 F:      include/linux/usb.h
10630 F:      include/linux/usb/
10631
10632 USB UHCI DRIVER
10633 M:      Alan Stern <stern@rowland.harvard.edu>
10634 L:      linux-usb@vger.kernel.org
10635 S:      Maintained
10636 F:      drivers/usb/host/uhci*
10637
10638 USB "USBNET" DRIVER FRAMEWORK
10639 M:      Oliver Neukum <oneukum@suse.de>
10640 L:      netdev@vger.kernel.org
10641 W:      http://www.linux-usb.org/usbnet
10642 S:      Maintained
10643 F:      drivers/net/usb/usbnet.c
10644 F:      include/linux/usb/usbnet.h
10645
10646 USB VIDEO CLASS
10647 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10648 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10649 L:      linux-media@vger.kernel.org
10650 T:      git git://linuxtv.org/media_tree.git
10651 W:      http://www.ideasonboard.org/uvc/
10652 S:      Maintained
10653 F:      drivers/media/usb/uvc/
10654 F:      include/uapi/linux/uvcvideo.h
10655
10656 USB VISION DRIVER
10657 M:      Hans Verkuil <hverkuil@xs4all.nl>
10658 L:      linux-media@vger.kernel.org
10659 T:      git git://linuxtv.org/media_tree.git
10660 W:      http://linuxtv.org
10661 S:      Odd Fixes
10662 F:      drivers/media/usb/usbvision/
10663
10664 USB WEBCAM GADGET
10665 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10666 L:      linux-usb@vger.kernel.org
10667 S:      Maintained
10668 F:      drivers/usb/gadget/function/*uvc*
10669 F:      drivers/usb/gadget/legacy/webcam.c
10670
10671 USB WIRELESS RNDIS DRIVER (rndis_wlan)
10672 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
10673 L:      linux-wireless@vger.kernel.org
10674 S:      Maintained
10675 F:      drivers/net/wireless/rndis_wlan.c
10676
10677 USB XHCI DRIVER
10678 M:      Mathias Nyman <mathias.nyman@intel.com>
10679 L:      linux-usb@vger.kernel.org
10680 S:      Supported
10681 F:      drivers/usb/host/xhci*
10682 F:      drivers/usb/host/pci-quirks*
10683
10684 USB ZD1201 DRIVER
10685 L:      linux-wireless@vger.kernel.org
10686 W:      http://linux-lc100020.sourceforge.net
10687 S:      Orphan
10688 F:      drivers/net/wireless/zd1201.*
10689
10690 USB ZR364XX DRIVER
10691 M:      Antoine Jacquet <royale@zerezo.com>
10692 L:      linux-usb@vger.kernel.org
10693 L:      linux-media@vger.kernel.org
10694 T:      git git://linuxtv.org/media_tree.git
10695 W:      http://royale.zerezo.com/zr364xx/
10696 S:      Maintained
10697 F:      Documentation/video4linux/zr364xx.txt
10698 F:      drivers/media/usb/zr364xx/
10699
10700 USER-MODE LINUX (UML)
10701 M:      Jeff Dike <jdike@addtoit.com>
10702 M:      Richard Weinberger <richard@nod.at>
10703 L:      user-mode-linux-devel@lists.sourceforge.net
10704 L:      user-mode-linux-user@lists.sourceforge.net
10705 W:      http://user-mode-linux.sourceforge.net
10706 S:      Maintained
10707 F:      Documentation/virtual/uml/
10708 F:      arch/um/
10709 F:      arch/x86/um/
10710 F:      fs/hostfs/
10711 F:      fs/hppfs/
10712
10713 USERSPACE I/O (UIO)
10714 M:      "Hans J. Koch" <hjk@hansjkoch.de>
10715 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10716 S:      Maintained
10717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
10718 F:      Documentation/DocBook/uio-howto.tmpl
10719 F:      drivers/uio/
10720 F:      include/linux/uio*.h
10721
10722 UTIL-LINUX PACKAGE
10723 M:      Karel Zak <kzak@redhat.com>
10724 L:      util-linux@vger.kernel.org
10725 W:      http://en.wikipedia.org/wiki/Util-linux
10726 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
10727 S:      Maintained
10728
10729 UVESAFB DRIVER
10730 M:      Michal Januszewski <spock@gentoo.org>
10731 L:      linux-fbdev@vger.kernel.org
10732 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
10733 S:      Maintained
10734 F:      Documentation/fb/uvesafb.txt
10735 F:      drivers/video/fbdev/uvesafb.*
10736
10737 VFAT/FAT/MSDOS FILESYSTEM
10738 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
10739 S:      Maintained
10740 F:      Documentation/filesystems/vfat.txt
10741 F:      fs/fat/
10742
10743 VFIO DRIVER
10744 M:      Alex Williamson <alex.williamson@redhat.com>
10745 L:      kvm@vger.kernel.org
10746 S:      Maintained
10747 F:      Documentation/vfio.txt
10748 F:      drivers/vfio/
10749 F:      include/linux/vfio.h
10750 F:      include/uapi/linux/vfio.h
10751
10752 VIDEOBUF2 FRAMEWORK
10753 M:      Pawel Osciak <pawel@osciak.com>
10754 M:      Marek Szyprowski <m.szyprowski@samsung.com>
10755 M:      Kyungmin Park <kyungmin.park@samsung.com>
10756 L:      linux-media@vger.kernel.org
10757 S:      Maintained
10758 F:      drivers/media/v4l2-core/videobuf2-*
10759 F:      include/media/videobuf2-*
10760
10761 VIRTIO CONSOLE DRIVER
10762 M:      Amit Shah <amit.shah@redhat.com>
10763 L:      virtualization@lists.linux-foundation.org
10764 S:      Maintained
10765 F:      drivers/char/virtio_console.c
10766 F:      include/linux/virtio_console.h
10767 F:      include/uapi/linux/virtio_console.h
10768
10769 VIRTIO CORE, NET AND BLOCK DRIVERS
10770 M:      "Michael S. Tsirkin" <mst@redhat.com>
10771 L:      virtualization@lists.linux-foundation.org
10772 S:      Maintained
10773 F:      drivers/virtio/
10774 F:      tools/virtio/
10775 F:      drivers/net/virtio_net.c
10776 F:      drivers/block/virtio_blk.c
10777 F:      include/linux/virtio_*.h
10778 F:      include/uapi/linux/virtio_*.h
10779
10780 VIRTIO HOST (VHOST)
10781 M:      "Michael S. Tsirkin" <mst@redhat.com>
10782 L:      kvm@vger.kernel.org
10783 L:      virtualization@lists.linux-foundation.org
10784 L:      netdev@vger.kernel.org
10785 S:      Maintained
10786 F:      drivers/vhost/
10787 F:      include/uapi/linux/vhost.h
10788
10789 VIRTIO INPUT DRIVER
10790 M:      Gerd Hoffmann <kraxel@redhat.com>
10791 S:      Maintained
10792 F:      drivers/virtio/virtio_input.c
10793 F:      include/uapi/linux/virtio_input.h
10794
10795 VIA RHINE NETWORK DRIVER
10796 S:      Orphan
10797 F:      drivers/net/ethernet/via/via-rhine.c
10798
10799 VIA SD/MMC CARD CONTROLLER DRIVER
10800 M:      Bruce Chang <brucechang@via.com.tw>
10801 M:      Harald Welte <HaraldWelte@viatech.com>
10802 S:      Maintained
10803 F:      drivers/mmc/host/via-sdmmc.c
10804
10805 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
10806 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
10807 L:      linux-fbdev@vger.kernel.org
10808 S:      Maintained
10809 F:      include/linux/via-core.h
10810 F:      include/linux/via-gpio.h
10811 F:      include/linux/via_i2c.h
10812 F:      drivers/video/fbdev/via/
10813
10814 VIA VELOCITY NETWORK DRIVER
10815 M:      Francois Romieu <romieu@fr.zoreil.com>
10816 L:      netdev@vger.kernel.org
10817 S:      Maintained
10818 F:      drivers/net/ethernet/via/via-velocity.*
10819
10820 VIVID VIRTUAL VIDEO DRIVER
10821 M:      Hans Verkuil <hverkuil@xs4all.nl>
10822 L:      linux-media@vger.kernel.org
10823 T:      git git://linuxtv.org/media_tree.git
10824 W:      http://linuxtv.org
10825 S:      Maintained
10826 F:      drivers/media/platform/vivid/*
10827
10828 VLAN (802.1Q)
10829 M:      Patrick McHardy <kaber@trash.net>
10830 L:      netdev@vger.kernel.org
10831 S:      Maintained
10832 F:      drivers/net/macvlan.c
10833 F:      include/linux/if_*vlan.h
10834 F:      net/8021q/
10835
10836 VLYNQ BUS
10837 M:      Florian Fainelli <florian@openwrt.org>
10838 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
10839 S:      Maintained
10840 F:      drivers/vlynq/vlynq.c
10841 F:      include/linux/vlynq.h
10842
10843 VME SUBSYSTEM
10844 M:      Martyn Welch <martyn.welch@ge.com>
10845 M:      Manohar Vanga <manohar.vanga@gmail.com>
10846 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10847 L:      devel@driverdev.osuosl.org
10848 S:      Maintained
10849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10850 F:      Documentation/vme_api.txt
10851 F:      drivers/staging/vme/
10852 F:      drivers/vme/
10853 F:      include/linux/vme*
10854
10855 VMWARE HYPERVISOR INTERFACE
10856 M:      Alok Kataria <akataria@vmware.com>
10857 L:      virtualization@lists.linux-foundation.org
10858 S:      Supported
10859 F:      arch/x86/kernel/cpu/vmware.c
10860
10861 VMWARE BALLOON DRIVER
10862 M:      Xavier Deguillard <xdeguillard@vmware.com>
10863 M:      Philip Moltmann <moltmann@vmware.com>
10864 M:      "VMware, Inc." <pv-drivers@vmware.com>
10865 L:      linux-kernel@vger.kernel.org
10866 S:      Maintained
10867 F:      drivers/misc/vmw_balloon.c
10868
10869 VMWARE VMMOUSE SUBDRIVER
10870 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
10871 M:      "VMware, Inc." <pv-drivers@vmware.com>
10872 L:      linux-input@vger.kernel.org
10873 S:      Maintained
10874 F:      drivers/input/mouse/vmmouse.c
10875 F:      drivers/input/mouse/vmmouse.h
10876
10877 VMWARE VMXNET3 ETHERNET DRIVER
10878 M:      Shreyas Bhatewara <sbhatewara@vmware.com>
10879 M:      "VMware, Inc." <pv-drivers@vmware.com>
10880 L:      netdev@vger.kernel.org
10881 S:      Maintained
10882 F:      drivers/net/vmxnet3/
10883
10884 VMware PVSCSI driver
10885 M:      Arvind Kumar <arvindkumar@vmware.com>
10886 M:      VMware PV-Drivers <pv-drivers@vmware.com>
10887 L:      linux-scsi@vger.kernel.org
10888 S:      Maintained
10889 F:      drivers/scsi/vmw_pvscsi.c
10890 F:      drivers/scsi/vmw_pvscsi.h
10891
10892 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
10893 M:      Liam Girdwood <lgirdwood@gmail.com>
10894 M:      Mark Brown <broonie@kernel.org>
10895 L:      linux-kernel@vger.kernel.org
10896 W:      http://opensource.wolfsonmicro.com/node/15
10897 W:      http://www.slimlogic.co.uk/?p=48
10898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
10899 S:      Supported
10900 F:      drivers/regulator/
10901 F:      include/linux/regulator/
10902
10903 VT1211 HARDWARE MONITOR DRIVER
10904 M:      Juerg Haefliger <juergh@gmail.com>
10905 L:      lm-sensors@lm-sensors.org
10906 S:      Maintained
10907 F:      Documentation/hwmon/vt1211
10908 F:      drivers/hwmon/vt1211.c
10909
10910 VT8231 HARDWARE MONITOR DRIVER
10911 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
10912 L:      lm-sensors@lm-sensors.org
10913 S:      Maintained
10914 F:      drivers/hwmon/vt8231.c
10915
10916 VUB300 USB to SDIO/SD/MMC bridge chip
10917 M:      Tony Olech <tony.olech@elandigitalsystems.com>
10918 L:      linux-mmc@vger.kernel.org
10919 L:      linux-usb@vger.kernel.org
10920 S:      Supported
10921 F:      drivers/mmc/host/vub300.c
10922
10923 W1 DALLAS'S 1-WIRE BUS
10924 M:      Evgeniy Polyakov <zbr@ioremap.net>
10925 S:      Maintained
10926 F:      Documentation/w1/
10927 F:      drivers/w1/
10928
10929 W83791D HARDWARE MONITORING DRIVER
10930 M:      Marc Hulsman <m.hulsman@tudelft.nl>
10931 L:      lm-sensors@lm-sensors.org
10932 S:      Maintained
10933 F:      Documentation/hwmon/w83791d
10934 F:      drivers/hwmon/w83791d.c
10935
10936 W83793 HARDWARE MONITORING DRIVER
10937 M:      Rudolf Marek <r.marek@assembler.cz>
10938 L:      lm-sensors@lm-sensors.org
10939 S:      Maintained
10940 F:      Documentation/hwmon/w83793
10941 F:      drivers/hwmon/w83793.c
10942
10943 W83795 HARDWARE MONITORING DRIVER
10944 M:      Jean Delvare <jdelvare@suse.de>
10945 L:      lm-sensors@lm-sensors.org
10946 S:      Maintained
10947 F:      drivers/hwmon/w83795.c
10948
10949 W83L51xD SD/MMC CARD INTERFACE DRIVER
10950 M:      Pierre Ossman <pierre@ossman.eu>
10951 S:      Maintained
10952 F:      drivers/mmc/host/wbsd.*
10953
10954 WACOM PROTOCOL 4 SERIAL TABLETS
10955 M:      Julian Squires <julian@cipht.net>
10956 M:      Hans de Goede <hdegoede@redhat.com>
10957 L:      linux-input@vger.kernel.org
10958 S:      Maintained
10959 F:      drivers/input/tablet/wacom_serial4.c
10960
10961 WATCHDOG DEVICE DRIVERS
10962 M:      Wim Van Sebroeck <wim@iguana.be>
10963 L:      linux-watchdog@vger.kernel.org
10964 W:      http://www.linux-watchdog.org/
10965 T:      git git://www.linux-watchdog.org/linux-watchdog.git
10966 S:      Maintained
10967 F:      Documentation/watchdog/
10968 F:      drivers/watchdog/
10969 F:      include/linux/watchdog.h
10970 F:      include/uapi/linux/watchdog.h
10971
10972 WD7000 SCSI DRIVER
10973 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
10974 L:      linux-scsi@vger.kernel.org
10975 S:      Maintained
10976 F:      drivers/scsi/wd7000.c
10977
10978 WIIMOTE HID DRIVER
10979 M:      David Herrmann <dh.herrmann@googlemail.com>
10980 L:      linux-input@vger.kernel.org
10981 S:      Maintained
10982 F:      drivers/hid/hid-wiimote*
10983
10984 WINBOND CIR DRIVER
10985 M:      David Härdeman <david@hardeman.nu>
10986 S:      Maintained
10987 F:      drivers/media/rc/winbond-cir.c
10988
10989 WIMAX STACK
10990 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
10991 M:      linux-wimax@intel.com
10992 L:      wimax@linuxwimax.org (subscribers-only)
10993 S:      Supported
10994 W:      http://linuxwimax.org
10995 F:      Documentation/wimax/README.wimax
10996 F:      include/linux/wimax/debug.h
10997 F:      include/net/wimax.h
10998 F:      include/uapi/linux/wimax.h
10999 F:      net/wimax/
11000
11001 WISTRON LAPTOP BUTTON DRIVER
11002 M:      Miloslav Trmac <mitr@volny.cz>
11003 S:      Maintained
11004 F:      drivers/input/misc/wistron_btns.c
11005
11006 WL3501 WIRELESS PCMCIA CARD DRIVER
11007 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11008 L:      linux-wireless@vger.kernel.org
11009 W:      http://oops.ghostprotocols.net:81/blog
11010 S:      Maintained
11011 F:      drivers/net/wireless/wl3501*
11012
11013 WM97XX TOUCHSCREEN DRIVERS
11014 M:      Mark Brown <broonie@kernel.org>
11015 M:      Liam Girdwood <lrg@slimlogic.co.uk>
11016 L:      linux-input@vger.kernel.org
11017 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
11018 W:      http://opensource.wolfsonmicro.com/node/7
11019 S:      Supported
11020 F:      drivers/input/touchscreen/*wm97*
11021 F:      include/linux/wm97xx.h
11022
11023 WOLFSON MICROELECTRONICS DRIVERS
11024 L:      patches@opensource.wolfsonmicro.com
11025 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
11026 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
11027 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
11028 S:      Supported
11029 F:      Documentation/hwmon/wm83??
11030 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11031 F:      drivers/clk/clk-wm83*.c
11032 F:      drivers/extcon/extcon-arizona.c
11033 F:      drivers/leds/leds-wm83*.c
11034 F:      drivers/gpio/gpio-*wm*.c
11035 F:      drivers/gpio/gpio-arizona.c
11036 F:      drivers/hwmon/wm83??-hwmon.c
11037 F:      drivers/input/misc/wm831x-on.c
11038 F:      drivers/input/touchscreen/wm831x-ts.c
11039 F:      drivers/input/touchscreen/wm97*.c
11040 F:      drivers/mfd/arizona*
11041 F:      drivers/mfd/wm*.c
11042 F:      drivers/power/wm83*.c
11043 F:      drivers/rtc/rtc-wm83*.c
11044 F:      drivers/regulator/wm8*.c
11045 F:      drivers/video/backlight/wm83*_bl.c
11046 F:      drivers/watchdog/wm83*_wdt.c
11047 F:      include/linux/mfd/arizona/
11048 F:      include/linux/mfd/wm831x/
11049 F:      include/linux/mfd/wm8350/
11050 F:      include/linux/mfd/wm8400*
11051 F:      include/linux/wm97xx.h
11052 F:      include/sound/wm????.h
11053 F:      sound/soc/codecs/arizona.?
11054 F:      sound/soc/codecs/wm*
11055
11056 WORKQUEUE
11057 M:      Tejun Heo <tj@kernel.org>
11058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11059 S:      Maintained
11060 F:      include/linux/workqueue.h
11061 F:      kernel/workqueue.c
11062 F:      Documentation/workqueue.txt
11063
11064 X.25 NETWORK LAYER
11065 M:      Andrew Hendry <andrew.hendry@gmail.com>
11066 L:      linux-x25@vger.kernel.org
11067 S:      Odd Fixes
11068 F:      Documentation/networking/x25*
11069 F:      include/net/x25*
11070 F:      net/x25/
11071
11072 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11073 M:      Thomas Gleixner <tglx@linutronix.de>
11074 M:      Ingo Molnar <mingo@redhat.com>
11075 M:      "H. Peter Anvin" <hpa@zytor.com>
11076 M:      x86@kernel.org
11077 L:      linux-kernel@vger.kernel.org
11078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11079 S:      Maintained
11080 F:      Documentation/x86/
11081 F:      arch/x86/
11082
11083 X86 PLATFORM DRIVERS
11084 M:      Darren Hart <dvhart@infradead.org>
11085 L:      platform-driver-x86@vger.kernel.org
11086 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11087 S:      Maintained
11088 F:      drivers/platform/x86/
11089
11090 X86 MCE INFRASTRUCTURE
11091 M:      Tony Luck <tony.luck@intel.com>
11092 M:      Borislav Petkov <bp@alien8.de>
11093 L:      linux-edac@vger.kernel.org
11094 S:      Maintained
11095 F:      arch/x86/kernel/cpu/mcheck/*
11096
11097 X86 VDSO
11098 M:      Andy Lutomirski <luto@amacapital.net>
11099 L:      linux-kernel@vger.kernel.org
11100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11101 S:      Maintained
11102 F:      arch/x86/entry/vdso/
11103
11104 XC2028/3028 TUNER DRIVER
11105 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11106 L:      linux-media@vger.kernel.org
11107 W:      http://linuxtv.org
11108 T:      git git://linuxtv.org/media_tree.git
11109 S:      Maintained
11110 F:      drivers/media/tuners/tuner-xc2028.*
11111
11112 XEN HYPERVISOR INTERFACE
11113 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11114 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11115 M:      David Vrabel <david.vrabel@citrix.com>
11116 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11118 S:      Supported
11119 F:      arch/x86/xen/
11120 F:      drivers/*/xen-*front.c
11121 F:      drivers/xen/
11122 F:      arch/x86/include/asm/xen/
11123 F:      include/xen/
11124 F:      include/uapi/xen/
11125
11126 XEN HYPERVISOR ARM
11127 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11128 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11129 S:      Supported
11130 F:      arch/arm/xen/
11131 F:      arch/arm/include/asm/xen/
11132
11133 XEN HYPERVISOR ARM64
11134 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11135 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11136 S:      Supported
11137 F:      arch/arm64/xen/
11138 F:      arch/arm64/include/asm/xen/
11139
11140 XEN NETWORK BACKEND DRIVER
11141 M:      Ian Campbell <ian.campbell@citrix.com>
11142 M:      Wei Liu <wei.liu2@citrix.com>
11143 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11144 L:      netdev@vger.kernel.org
11145 S:      Supported
11146 F:      drivers/net/xen-netback/*
11147
11148 XEN PCI SUBSYSTEM
11149 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11150 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11151 S:      Supported
11152 F:      arch/x86/pci/*xen*
11153 F:      drivers/pci/*xen*
11154
11155 XEN BLOCK SUBSYSTEM
11156 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11157 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11158 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11159 S:      Supported
11160 F:      drivers/block/xen-blkback/*
11161 F:      drivers/block/xen*
11162
11163 XEN PVSCSI DRIVERS
11164 M:      Juergen Gross <jgross@suse.com>
11165 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11166 L:      linux-scsi@vger.kernel.org
11167 S:      Supported
11168 F:      drivers/scsi/xen-scsifront.c
11169 F:      drivers/xen/xen-scsiback.c
11170 F:      include/xen/interface/io/vscsiif.h
11171
11172 XEN SWIOTLB SUBSYSTEM
11173 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11174 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11175 S:      Supported
11176 F:      arch/x86/xen/*swiotlb*
11177 F:      drivers/xen/*swiotlb*
11178
11179 XFS FILESYSTEM
11180 P:      Silicon Graphics Inc
11181 M:      Dave Chinner <david@fromorbit.com>
11182 M:      xfs@oss.sgi.com
11183 L:      xfs@oss.sgi.com
11184 W:      http://oss.sgi.com/projects/xfs
11185 T:      git git://oss.sgi.com/xfs/xfs.git
11186 S:      Supported
11187 F:      Documentation/filesystems/xfs.txt
11188 F:      fs/xfs/
11189
11190 XILINX AXI ETHERNET DRIVER
11191 M:      Anirudha Sarangi <anirudh@xilinx.com>
11192 M:      John Linn <John.Linn@xilinx.com>
11193 S:      Maintained
11194 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11195
11196 XILINX UARTLITE SERIAL DRIVER
11197 M:      Peter Korsgaard <jacmet@sunsite.dk>
11198 L:      linux-serial@vger.kernel.org
11199 S:      Maintained
11200 F:      drivers/tty/serial/uartlite.c
11201
11202 XILINX VIDEO IP CORES
11203 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11204 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11205 L:      linux-media@vger.kernel.org
11206 T:      git git://linuxtv.org/media_tree.git
11207 S:      Supported
11208 F:      Documentation/devicetree/bindings/media/xilinx/
11209 F:      drivers/media/platform/xilinx/
11210 F:      include/uapi/linux/xilinx-v4l2-controls.h
11211
11212 XILLYBUS DRIVER
11213 M:      Eli Billauer <eli.billauer@gmail.com>
11214 L:      linux-kernel@vger.kernel.org
11215 S:      Supported
11216 F:      drivers/char/xillybus/
11217
11218 XTENSA XTFPGA PLATFORM SUPPORT
11219 M:      Max Filippov <jcmvbkbc@gmail.com>
11220 L:      linux-xtensa@linux-xtensa.org
11221 S:      Maintained
11222 F:      drivers/spi/spi-xtensa-xtfpga.c
11223 F:      sound/soc/xtensa/xtfpga-i2s.c
11224
11225 YAM DRIVER FOR AX.25
11226 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11227 L:      linux-hams@vger.kernel.org
11228 S:      Maintained
11229 F:      drivers/net/hamradio/yam*
11230 F:      include/linux/yam.h
11231
11232 YEALINK PHONE DRIVER
11233 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11234 L:      usbb2k-api-dev@nongnu.org
11235 S:      Maintained
11236 F:      Documentation/input/yealink.txt
11237 F:      drivers/input/misc/yealink.*
11238
11239 Z8530 DRIVER FOR AX.25
11240 M:      Joerg Reuter <jreuter@yaina.de>
11241 W:      http://yaina.de/jreuter/
11242 W:      http://www.qsl.net/dl1bke/
11243 L:      linux-hams@vger.kernel.org
11244 S:      Maintained
11245 F:      Documentation/networking/z8530drv.txt
11246 F:      drivers/net/hamradio/*scc.c
11247 F:      drivers/net/hamradio/z8530.h
11248
11249 ZBUD COMPRESSED PAGE ALLOCATOR
11250 M:      Seth Jennings <sjennings@variantweb.net>
11251 L:      linux-mm@kvack.org
11252 S:      Maintained
11253 F:      mm/zbud.c
11254 F:      include/linux/zbud.h
11255
11256 ZD1211RW WIRELESS DRIVER
11257 M:      Daniel Drake <dsd@gentoo.org>
11258 M:      Ulrich Kunitz <kune@deine-taler.de>
11259 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11260 L:      linux-wireless@vger.kernel.org
11261 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11262 S:      Maintained
11263 F:      drivers/net/wireless/zd1211rw/
11264
11265 ZR36067 VIDEO FOR LINUX DRIVER
11266 L:      mjpeg-users@lists.sourceforge.net
11267 L:      linux-media@vger.kernel.org
11268 W:      http://mjpeg.sourceforge.net/driver-zoran/
11269 T:      hg http://linuxtv.org/hg/v4l-dvb
11270 S:      Odd Fixes
11271 F:      drivers/media/pci/zoran/
11272
11273 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11274 M:      Minchan Kim <minchan@kernel.org>
11275 M:      Nitin Gupta <ngupta@vflare.org>
11276 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11277 L:      linux-kernel@vger.kernel.org
11278 S:      Maintained
11279 F:      drivers/block/zram/
11280 F:      Documentation/blockdev/zram.txt
11281
11282 ZS DECSTATION Z85C30 SERIAL DRIVER
11283 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11284 S:      Maintained
11285 F:      drivers/tty/serial/zs.*
11286
11287 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11288 M:      Minchan Kim <minchan@kernel.org>
11289 M:      Nitin Gupta <ngupta@vflare.org>
11290 L:      linux-mm@kvack.org
11291 S:      Maintained
11292 F:      mm/zsmalloc.c
11293 F:      include/linux/zsmalloc.h
11294 F:      Documentation/vm/zsmalloc.txt
11295
11296 ZSWAP COMPRESSED SWAP CACHING
11297 M:      Seth Jennings <sjennings@variantweb.net>
11298 L:      linux-mm@kvack.org
11299 S:      Maintained
11300 F:      mm/zswap.c
11301
11302 THE REST
11303 M:      Linus Torvalds <torvalds@linux-foundation.org>
11304 L:      linux-kernel@vger.kernel.org
11305 Q:      http://patchwork.kernel.org/project/LKML/list/
11306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11307 S:      Buried alive in reporters
11308 F:      *
11309 F:      */