]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge remote-tracking branch 'tegra/for-next'
[karo-tx-linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      http://linuxtv.org/
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 ACCES 104-IDIO-16 GPIO DRIVER
244 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
245 L:      linux-gpio@vger.kernel.org
246 S:      Maintained
247 F:      drivers/gpio/gpio-104-idio-16.c
248
249 ACENIC DRIVER
250 M:      Jes Sorensen <jes@trained-monkey.org>
251 L:      linux-acenic@sunsite.dk
252 S:      Maintained
253 F:      drivers/net/ethernet/alteon/acenic*
254
255 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
256 M:      Peter Feuerer <peter@piie.net>
257 L:      platform-driver-x86@vger.kernel.org
258 W:      http://piie.net/?section=acerhdf
259 S:      Maintained
260 F:      drivers/platform/x86/acerhdf.c
261
262 ACER WMI LAPTOP EXTRAS
263 M:      "Lee, Chun-Yi" <jlee@suse.com>
264 L:      platform-driver-x86@vger.kernel.org
265 S:      Maintained
266 F:      drivers/platform/x86/acer-wmi.c
267
268 ACPI
269 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
270 M:      Len Brown <lenb@kernel.org>
271 L:      linux-acpi@vger.kernel.org
272 W:      https://01.org/linux-acpi
273 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
275 S:      Supported
276 F:      drivers/acpi/
277 F:      drivers/pnp/pnpacpi/
278 F:      include/linux/acpi.h
279 F:      include/acpi/
280 F:      Documentation/acpi/
281 F:      Documentation/ABI/testing/sysfs-bus-acpi
282 F:      drivers/pci/*acpi*
283 F:      drivers/pci/*/*acpi*
284 F:      drivers/pci/*/*/*acpi*
285 F:      tools/power/acpi/
286
287 ACPI COMPONENT ARCHITECTURE (ACPICA)
288 M:      Robert Moore <robert.moore@intel.com>
289 M:      Lv Zheng <lv.zheng@intel.com>
290 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
291 L:      linux-acpi@vger.kernel.org
292 L:      devel@acpica.org
293 W:      https://acpica.org/
294 W:      https://github.com/acpica/acpica/
295 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
297 S:      Supported
298 F:      drivers/acpi/acpica/
299 F:      include/acpi/
300 F:      tools/power/acpi/
301
302 ACPI FAN DRIVER
303 M:      Zhang Rui <rui.zhang@intel.com>
304 L:      linux-acpi@vger.kernel.org
305 W:      https://01.org/linux-acpi
306 S:      Supported
307 F:      drivers/acpi/fan.c
308
309 ACPI THERMAL DRIVER
310 M:      Zhang Rui <rui.zhang@intel.com>
311 L:      linux-acpi@vger.kernel.org
312 W:      https://01.org/linux-acpi
313 S:      Supported
314 F:      drivers/acpi/*thermal*
315
316 ACPI VIDEO DRIVER
317 M:      Zhang Rui <rui.zhang@intel.com>
318 L:      linux-acpi@vger.kernel.org
319 W:      https://01.org/linux-acpi
320 S:      Supported
321 F:      drivers/acpi/video.c
322
323 ACPI WMI DRIVER
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Orphan
326 F:      drivers/platform/x86/wmi.c
327
328 AD1889 ALSA SOUND DRIVER
329 M:      Thibaut Varene <T-Bone@parisc-linux.org>
330 W:      http://wiki.parisc-linux.org/AD1889
331 L:      linux-parisc@vger.kernel.org
332 S:      Maintained
333 F:      sound/pci/ad1889.*
334
335 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
336 M:      Michael Hennerich <michael.hennerich@analog.com>
337 W:      http://wiki.analog.com/AD5254
338 W:      http://ez.analog.com/community/linux-device-drivers
339 S:      Supported
340 F:      drivers/misc/ad525x_dpot.c
341
342 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
343 M:      Michael Hennerich <michael.hennerich@analog.com>
344 W:      http://wiki.analog.com/AD5398
345 W:      http://ez.analog.com/community/linux-device-drivers
346 S:      Supported
347 F:      drivers/regulator/ad5398.c
348
349 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
350 M:      Michael Hennerich <michael.hennerich@analog.com>
351 W:      http://wiki.analog.com/AD7142
352 W:      http://ez.analog.com/community/linux-device-drivers
353 S:      Supported
354 F:      drivers/input/misc/ad714x.c
355
356 AD7877 TOUCHSCREEN DRIVER
357 M:      Michael Hennerich <michael.hennerich@analog.com>
358 W:      http://wiki.analog.com/AD7877
359 W:      http://ez.analog.com/community/linux-device-drivers
360 S:      Supported
361 F:      drivers/input/touchscreen/ad7877.c
362
363 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
364 M:      Michael Hennerich <michael.hennerich@analog.com>
365 W:      http://wiki.analog.com/AD7879
366 W:      http://ez.analog.com/community/linux-device-drivers
367 S:      Supported
368 F:      drivers/input/touchscreen/ad7879.c
369
370 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
371 M:      Jiri Kosina <jikos@kernel.org>
372 S:      Maintained
373
374 ADM1025 HARDWARE MONITOR DRIVER
375 M:      Jean Delvare <jdelvare@suse.com>
376 L:      lm-sensors@lm-sensors.org
377 S:      Maintained
378 F:      Documentation/hwmon/adm1025
379 F:      drivers/hwmon/adm1025.c
380
381 ADM1029 HARDWARE MONITOR DRIVER
382 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
383 L:      lm-sensors@lm-sensors.org
384 S:      Maintained
385 F:      drivers/hwmon/adm1029.c
386
387 ADM8211 WIRELESS DRIVER
388 L:      linux-wireless@vger.kernel.org
389 W:      http://wireless.kernel.org/
390 S:      Orphan
391 F:      drivers/net/wireless/adm8211.*
392
393 ADP1653 FLASH CONTROLLER DRIVER
394 M:      Sakari Ailus <sakari.ailus@iki.fi>
395 L:      linux-media@vger.kernel.org
396 S:      Maintained
397 F:      drivers/media/i2c/adp1653.c
398 F:      include/media/adp1653.h
399
400 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
401 M:      Michael Hennerich <michael.hennerich@analog.com>
402 W:      http://wiki.analog.com/ADP5520
403 W:      http://ez.analog.com/community/linux-device-drivers
404 S:      Supported
405 F:      drivers/mfd/adp5520.c
406 F:      drivers/video/backlight/adp5520_bl.c
407 F:      drivers/leds/leds-adp5520.c
408 F:      drivers/gpio/gpio-adp5520.c
409 F:      drivers/input/keyboard/adp5520-keys.c
410
411 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
412 M:      Michael Hennerich <michael.hennerich@analog.com>
413 W:      http://wiki.analog.com/ADP5588
414 W:      http://ez.analog.com/community/linux-device-drivers
415 S:      Supported
416 F:      drivers/input/keyboard/adp5588-keys.c
417 F:      drivers/gpio/gpio-adp5588.c
418
419 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
420 M:      Michael Hennerich <michael.hennerich@analog.com>
421 W:      http://wiki.analog.com/ADP8860
422 W:      http://ez.analog.com/community/linux-device-drivers
423 S:      Supported
424 F:      drivers/video/backlight/adp8860_bl.c
425
426 ADS1015 HARDWARE MONITOR DRIVER
427 M:      Dirk Eibach <eibach@gdsys.de>
428 L:      lm-sensors@lm-sensors.org
429 S:      Maintained
430 F:      Documentation/hwmon/ads1015
431 F:      drivers/hwmon/ads1015.c
432 F:      include/linux/i2c/ads1015.h
433
434 ADT746X FAN DRIVER
435 M:      Colin Leroy <colin@colino.net>
436 S:      Maintained
437 F:      drivers/macintosh/therm_adt746x.c
438
439 ADT7475 HARDWARE MONITOR DRIVER
440 M:      Jean Delvare <jdelvare@suse.com>
441 L:      lm-sensors@lm-sensors.org
442 S:      Maintained
443 F:      Documentation/hwmon/adt7475
444 F:      drivers/hwmon/adt7475.c
445
446 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
447 M:      Michael Hennerich <michael.hennerich@analog.com>
448 W:      http://wiki.analog.com/ADXL345
449 W:      http://ez.analog.com/community/linux-device-drivers
450 S:      Supported
451 F:      drivers/input/misc/adxl34x.c
452
453 ADVANSYS SCSI DRIVER
454 M:      Matthew Wilcox <matthew@wil.cx>
455 M:      Hannes Reinecke <hare@suse.com>
456 L:      linux-scsi@vger.kernel.org
457 S:      Maintained
458 F:      Documentation/scsi/advansys.txt
459 F:      drivers/scsi/advansys.c
460
461 AEDSP16 DRIVER
462 M:      Riccardo Facchetti <fizban@tin.it>
463 S:      Maintained
464 F:      sound/oss/aedsp16.c
465
466 AF9013 MEDIA DRIVER
467 M:      Antti Palosaari <crope@iki.fi>
468 L:      linux-media@vger.kernel.org
469 W:      http://linuxtv.org/
470 W:      http://palosaari.fi/linux/
471 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
472 T:      git git://linuxtv.org/anttip/media_tree.git
473 S:      Maintained
474 F:      drivers/media/dvb-frontends/af9013*
475
476 AF9033 MEDIA DRIVER
477 M:      Antti Palosaari <crope@iki.fi>
478 L:      linux-media@vger.kernel.org
479 W:      http://linuxtv.org/
480 W:      http://palosaari.fi/linux/
481 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
482 T:      git git://linuxtv.org/anttip/media_tree.git
483 S:      Maintained
484 F:      drivers/media/dvb-frontends/af9033*
485
486 AFFS FILE SYSTEM
487 L:      linux-fsdevel@vger.kernel.org
488 S:      Orphan
489 F:      Documentation/filesystems/affs.txt
490 F:      fs/affs/
491
492 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
493 M:      David Howells <dhowells@redhat.com>
494 L:      linux-afs@lists.infradead.org
495 S:      Supported
496 F:      fs/afs/
497 F:      include/net/af_rxrpc.h
498 F:      net/rxrpc/af_rxrpc.c
499
500 AGPGART DRIVER
501 M:      David Airlie <airlied@linux.ie>
502 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
503 S:      Maintained
504 F:      drivers/char/agp/
505 F:      include/linux/agp*
506 F:      include/uapi/linux/agp*
507
508 AHA152X SCSI DRIVER
509 M:      "Juergen E. Fischer" <fischer@norbit.de>
510 L:      linux-scsi@vger.kernel.org
511 S:      Maintained
512 F:      drivers/scsi/aha152x*
513 F:      drivers/scsi/pcmcia/aha152x*
514
515 AIC7XXX / AIC79XX SCSI DRIVER
516 M:      Hannes Reinecke <hare@suse.com>
517 L:      linux-scsi@vger.kernel.org
518 S:      Maintained
519 F:      drivers/scsi/aic7xxx/
520
521 AIMSLAB FM RADIO RECEIVER DRIVER
522 M:      Hans Verkuil <hverkuil@xs4all.nl>
523 L:      linux-media@vger.kernel.org
524 T:      git git://linuxtv.org/media_tree.git
525 W:      http://linuxtv.org
526 S:      Maintained
527 F:      drivers/media/radio/radio-aimslab*
528
529 AIO
530 M:      Benjamin LaHaise <bcrl@kvack.org>
531 L:      linux-aio@kvack.org
532 S:      Supported
533 F:      fs/aio.c
534 F:      include/linux/*aio*.h
535
536 AIRSPY MEDIA DRIVER
537 M:      Antti Palosaari <crope@iki.fi>
538 L:      linux-media@vger.kernel.org
539 W:      http://linuxtv.org/
540 W:      http://palosaari.fi/linux/
541 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
542 T:      git git://linuxtv.org/anttip/media_tree.git
543 S:      Maintained
544 F:      drivers/media/usb/airspy/
545
546 ALCATEL SPEEDTOUCH USB DRIVER
547 M:      Duncan Sands <duncan.sands@free.fr>
548 L:      linux-usb@vger.kernel.org
549 W:      http://www.linux-usb.org/SpeedTouch/
550 S:      Maintained
551 F:      drivers/usb/atm/speedtch.c
552 F:      drivers/usb/atm/usbatm.c
553
554 ALCHEMY AU1XX0 MMC DRIVER
555 M:      Manuel Lauss <manuel.lauss@gmail.com>
556 S:      Maintained
557 F:      drivers/mmc/host/au1xmmc.c
558
559 ALI1563 I2C DRIVER
560 M:      Rudolf Marek <r.marek@assembler.cz>
561 L:      linux-i2c@vger.kernel.org
562 S:      Maintained
563 F:      Documentation/i2c/busses/i2c-ali1563
564 F:      drivers/i2c/busses/i2c-ali1563.c
565
566 ALLWINNER SECURITY SYSTEM
567 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
568 L:      linux-crypto@vger.kernel.org
569 S:      Maintained
570 F:      drivers/crypto/sunxi-ss/
571
572 ALPHA PORT
573 M:      Richard Henderson <rth@twiddle.net>
574 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
575 M:      Matt Turner <mattst88@gmail.com>
576 S:      Odd Fixes
577 L:      linux-alpha@vger.kernel.org
578 F:      arch/alpha/
579
580 ALTERA MAILBOX DRIVER
581 M:      Ley Foon Tan <lftan@altera.com>
582 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
583 S:      Maintained
584 F:      drivers/mailbox/mailbox-altera.c
585
586 ALTERA PIO DRIVER
587 M:      Tien Hock Loh <thloh@altera.com>
588 L:      linux-gpio@vger.kernel.org
589 S:      Maintained
590 F:      drivers/gpio/gpio-altera.c
591
592 ALTERA TRIPLE SPEED ETHERNET DRIVER
593 M:      Vince Bridgers <vbridger@opensource.altera.com>
594 L:      netdev@vger.kernel.org
595 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
596 S:      Maintained
597 F:      drivers/net/ethernet/altera/
598
599 ALTERA UART/JTAG UART SERIAL DRIVERS
600 M:      Tobias Klauser <tklauser@distanz.ch>
601 L:      linux-serial@vger.kernel.org
602 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
603 S:      Maintained
604 F:      drivers/tty/serial/altera_uart.c
605 F:      drivers/tty/serial/altera_jtaguart.c
606 F:      include/linux/altera_uart.h
607 F:      include/linux/altera_jtaguart.h
608
609 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
610 M:      Tom Lendacky <thomas.lendacky@amd.com>
611 L:      linux-crypto@vger.kernel.org
612 S:      Supported
613 F:      drivers/crypto/ccp/
614 F:      include/linux/ccp.h
615
616 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
617 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
618 L:      lm-sensors@lm-sensors.org
619 S:      Maintained
620 F:      Documentation/hwmon/fam15h_power
621 F:      drivers/hwmon/fam15h_power.c
622
623 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
624 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
625 S:      Orphan
626 F:      drivers/usb/gadget/udc/amd5536udc.*
627
628 AMD GEODE PROCESSOR/CHIPSET SUPPORT
629 P:      Andres Salomon <dilinger@queued.net>
630 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
631 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
632 S:      Supported
633 F:      drivers/char/hw_random/geode-rng.c
634 F:      drivers/crypto/geode*
635 F:      drivers/video/fbdev/geode/
636 F:      arch/x86/include/asm/geode.h
637
638 AMD IOMMU (AMD-VI)
639 M:      Joerg Roedel <joro@8bytes.org>
640 L:      iommu@lists.linux-foundation.org
641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
642 S:      Maintained
643 F:      drivers/iommu/amd_iommu*.[ch]
644 F:      include/linux/amd-iommu.h
645
646 AMD KFD
647 M:      Oded Gabbay <oded.gabbay@gmail.com>
648 L:      dri-devel@lists.freedesktop.org
649 T:      git git://people.freedesktop.org/~gabbayo/linux.git
650 S:      Supported
651 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
652 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
653 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
654 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
655 F:      drivers/gpu/drm/amd/amdkfd/
656 F:      drivers/gpu/drm/amd/include/cik_structs.h
657 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
658 F:      drivers/gpu/drm/amd/include/vi_structs.h
659 F:      drivers/gpu/drm/radeon/radeon_kfd.c
660 F:      drivers/gpu/drm/radeon/radeon_kfd.h
661 F:      include/uapi/linux/kfd_ioctl.h
662
663 AMD XGBE DRIVER
664 M:      Tom Lendacky <thomas.lendacky@amd.com>
665 L:      netdev@vger.kernel.org
666 S:      Supported
667 F:      drivers/net/ethernet/amd/xgbe/
668
669 AMS (Apple Motion Sensor) DRIVER
670 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
671 S:      Supported
672 F:      drivers/macintosh/ams/
673
674 AMSO1100 RNIC DRIVER
675 M:      Tom Tucker <tom@opengridcomputing.com>
676 M:      Steve Wise <swise@opengridcomputing.com>
677 L:      linux-rdma@vger.kernel.org
678 S:      Maintained
679 F:      drivers/infiniband/hw/amso1100/
680
681 ANALOG DEVICES INC AD9389B DRIVER
682 M:      Hans Verkuil <hans.verkuil@cisco.com>
683 L:      linux-media@vger.kernel.org
684 S:      Maintained
685 F:      drivers/media/i2c/ad9389b*
686
687 ANALOG DEVICES INC ADV7180 DRIVER
688 M:      Lars-Peter Clausen <lars@metafoo.de>
689 L:      linux-media@vger.kernel.org
690 W:      http://ez.analog.com/community/linux-device-drivers
691 S:      Supported
692 F:      drivers/media/i2c/adv7180.c
693
694 ANALOG DEVICES INC ADV7511 DRIVER
695 M:      Hans Verkuil <hans.verkuil@cisco.com>
696 L:      linux-media@vger.kernel.org
697 S:      Maintained
698 F:      drivers/media/i2c/adv7511*
699
700 ANALOG DEVICES INC ADV7604 DRIVER
701 M:      Hans Verkuil <hans.verkuil@cisco.com>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 F:      drivers/media/i2c/adv7604*
705
706 ANALOG DEVICES INC ADV7842 DRIVER
707 M:      Hans Verkuil <hans.verkuil@cisco.com>
708 L:      linux-media@vger.kernel.org
709 S:      Maintained
710 F:      drivers/media/i2c/adv7842*
711
712 ANALOG DEVICES INC ASOC CODEC DRIVERS
713 M:      Lars-Peter Clausen <lars@metafoo.de>
714 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
715 W:      http://wiki.analog.com/
716 W:      http://ez.analog.com/community/linux-device-drivers
717 S:      Supported
718 F:      sound/soc/codecs/adau*
719 F:      sound/soc/codecs/adav*
720 F:      sound/soc/codecs/ad1*
721 F:      sound/soc/codecs/ad7*
722 F:      sound/soc/codecs/ssm*
723 F:      sound/soc/codecs/sigmadsp.*
724
725 ANALOG DEVICES INC ASOC DRIVERS
726 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
727 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
728 W:      http://blackfin.uclinux.org/
729 S:      Supported
730 F:      sound/soc/blackfin/*
731
732 ANALOG DEVICES INC IIO DRIVERS
733 M:      Lars-Peter Clausen <lars@metafoo.de>
734 M:      Michael Hennerich <Michael.Hennerich@analog.com>
735 W:      http://wiki.analog.com/
736 W:      http://ez.analog.com/community/linux-device-drivers
737 S:      Supported
738 F:      drivers/iio/*/ad*
739 X:      drivers/iio/*/adjd*
740 F:      drivers/staging/iio/*/ad*
741 F:      staging/iio/trigger/iio-trig-bfin-timer.c
742
743 ANALOG DEVICES INC DMA DRIVERS
744 M:      Lars-Peter Clausen <lars@metafoo.de>
745 W:      http://ez.analog.com/community/linux-device-drivers
746 S:      Supported
747 F:      drivers/dma/dma-axi-dmac.c
748
749 ANDROID DRIVERS
750 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
751 M:      Arve HjønnevĂ¥g <arve@android.com>
752 M:      Riley Andrews <riandrews@android.com>
753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
754 L:      devel@driverdev.osuosl.org
755 S:      Supported
756 F:      drivers/android/
757 F:      drivers/staging/android/
758
759 AOA (Apple Onboard Audio) ALSA DRIVER
760 M:      Johannes Berg <johannes@sipsolutions.net>
761 L:      linuxppc-dev@lists.ozlabs.org
762 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
763 S:      Maintained
764 F:      sound/aoa/
765
766 APM DRIVER
767 M:      Jiri Kosina <jikos@kernel.org>
768 S:      Odd fixes
769 F:      arch/x86/kernel/apm_32.c
770 F:      include/linux/apm_bios.h
771 F:      include/uapi/linux/apm_bios.h
772 F:      drivers/char/apm-emulation.c
773
774 APPLE BCM5974 MULTITOUCH DRIVER
775 M:      Henrik Rydberg <rydberg@bitmath.org>
776 L:      linux-input@vger.kernel.org
777 S:      Odd fixes
778 F:      drivers/input/mouse/bcm5974.c
779
780 APPLE SMC DRIVER
781 M:      Henrik Rydberg <rydberg@bitmath.org>
782 L:      lm-sensors@lm-sensors.org
783 S:      Odd fixes
784 F:      drivers/hwmon/applesmc.c
785
786 APPLETALK NETWORK LAYER
787 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
788 S:      Maintained
789 F:      drivers/net/appletalk/
790 F:      net/appletalk/
791
792 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
793 M:      Duc Dang <dhdang@apm.com>
794 S:      Supported
795 F:      arch/arm64/boot/dts/apm/
796
797 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
798 M:      Iyappan Subramanian <isubramanian@apm.com>
799 M:      Keyur Chudgar <kchudgar@apm.com>
800 S:      Supported
801 F:      drivers/net/ethernet/apm/xgene/
802 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
803
804 APTINA CAMERA SENSOR PLL
805 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
806 L:      linux-media@vger.kernel.org
807 S:      Maintained
808 F:      drivers/media/i2c/aptina-pll.*
809
810 ARC FRAMEBUFFER DRIVER
811 M:      Jaya Kumar <jayalk@intworks.biz>
812 S:      Maintained
813 F:      drivers/video/fbdev/arcfb.c
814 F:      drivers/video/fbdev/core/fb_defio.c
815
816 ARCNET NETWORK LAYER
817 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
818 L:      netdev@vger.kernel.org
819 S:      Maintained
820 F:      drivers/net/arcnet/
821 F:      include/uapi/linux/if_arcnet.h
822
823 ARM MFM AND FLOPPY DRIVERS
824 M:      Ian Molton <spyro@f2s.com>
825 S:      Maintained
826 F:      arch/arm/lib/floppydma.S
827 F:      arch/arm/include/asm/floppy.h
828
829 ARM PMU PROFILING AND DEBUGGING
830 M:      Will Deacon <will.deacon@arm.com>
831 S:      Maintained
832 F:      arch/arm/kernel/perf_*
833 F:      arch/arm/oprofile/common.c
834 F:      arch/arm/kernel/hw_breakpoint.c
835 F:      arch/arm/include/asm/hw_breakpoint.h
836 F:      arch/arm/include/asm/perf_event.h
837 F:      drivers/perf/arm_pmu.c
838 F:      include/linux/perf/arm_pmu.h
839
840 ARM PORT
841 M:      Russell King <linux@arm.linux.org.uk>
842 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
843 W:      http://www.arm.linux.org.uk/
844 S:      Maintained
845 F:      arch/arm/
846
847 ARM SUB-ARCHITECTURES
848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
849 S:      Maintained
850 F:      arch/arm/mach-*/
851 F:      arch/arm/plat-*/
852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
853
854 ARM PRIMECELL AACI PL041 DRIVER
855 M:      Russell King <linux@arm.linux.org.uk>
856 S:      Maintained
857 F:      sound/arm/aaci.*
858
859 ARM PRIMECELL CLCD PL110 DRIVER
860 M:      Russell King <linux@arm.linux.org.uk>
861 S:      Maintained
862 F:      drivers/video/fbdev/amba-clcd.*
863
864 ARM PRIMECELL KMI PL050 DRIVER
865 M:      Russell King <linux@arm.linux.org.uk>
866 S:      Maintained
867 F:      drivers/input/serio/ambakmi.*
868 F:      include/linux/amba/kmi.h
869
870 ARM PRIMECELL MMCI PL180/1 DRIVER
871 M:      Russell King <linux@arm.linux.org.uk>
872 S:      Maintained
873 F:      drivers/mmc/host/mmci.*
874 F:      include/linux/amba/mmci.h
875
876 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
877 M:      Russell King <linux@arm.linux.org.uk>
878 S:      Maintained
879 F:      drivers/tty/serial/amba-pl01*.c
880 F:      include/linux/amba/serial.h
881
882 ARM PRIMECELL BUS SUPPORT
883 M:      Russell King <linux@arm.linux.org.uk>
884 S:      Maintained
885 F:      drivers/amba/
886 F:      include/linux/amba/bus.h
887
888 ARM/ADS SPHERE MACHINE SUPPORT
889 M:      Lennert Buytenhek <kernel@wantstofly.org>
890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
891 S:      Maintained
892
893 ARM/AFEB9260 MACHINE SUPPORT
894 M:      Sergey Lapin <slapin@ossfans.org>
895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
896 S:      Maintained
897
898 ARM/AJECO 1ARM MACHINE SUPPORT
899 M:      Lennert Buytenhek <kernel@wantstofly.org>
900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
901 S:      Maintained
902
903 ARM/Allwinner sunXi SoC support
904 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
905 M:      Chen-Yu Tsai <wens@csie.org>
906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
907 S:      Maintained
908 N:      sun[x456789]i
909
910 ARM/Allwinner SoC Clock Support
911 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
912 S:      Maintained
913 F:      drivers/clk/sunxi/
914
915 ARM/Amlogic MesonX SoC support
916 M:      Carlo Caione <carlo@caione.org>
917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
918 S:      Maintained
919 F:      drivers/media/rc/meson-ir.c
920 N:      meson[x68]
921
922 ARM/Annapurna Labs ALPINE ARCHITECTURE
923 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
924 S:      Maintained
925 F:      arch/arm/mach-alpine/
926
927 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
928 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
929 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
930 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
932 W:      http://www.linux4sam.org
933 S:      Supported
934 F:      arch/arm/mach-at91/
935 F:      include/soc/at91/
936 F:      arch/arm/boot/dts/at91*.dts
937 F:      arch/arm/boot/dts/at91*.dtsi
938 F:      arch/arm/boot/dts/sama*.dts
939 F:      arch/arm/boot/dts/sama*.dtsi
940 F:      arch/arm/include/debug/at91.S
941
942 ARM/ATMEL AT91 Clock Support
943 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
944 S:      Maintained
945 F:      drivers/clk/at91
946
947 ARM/CALXEDA HIGHBANK ARCHITECTURE
948 M:      Rob Herring <robh@kernel.org>
949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
950 S:      Maintained
951 F:      arch/arm/mach-highbank/
952
953 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
954 M:      Krzysztof Halasa <khalasa@piap.pl>
955 S:      Maintained
956 F:      arch/arm/mach-cns3xxx/
957
958 ARM/CAVIUM THUNDER NETWORK DRIVER
959 M:      Sunil Goutham <sgoutham@cavium.com>
960 M:      Robert Richter <rric@kernel.org>
961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962 S:      Supported
963 F:      drivers/net/ethernet/cavium/thunder/
964
965 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
966 M:      Alexander Shiyan <shc_work@mail.ru>
967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968 S:      Odd Fixes
969 N:      clps711x
970
971 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
972 M:      Hartley Sweeten <hsweeten@visionengravers.com>
973 M:      Ryan Mallon <rmallon@gmail.com>
974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
975 S:      Maintained
976 F:      arch/arm/mach-ep93xx/
977 F:      arch/arm/mach-ep93xx/include/mach/
978
979 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
980 M:      Lennert Buytenhek <kernel@wantstofly.org>
981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
982 S:      Maintained
983
984 ARM/CLKDEV SUPPORT
985 M:      Russell King <linux@arm.linux.org.uk>
986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
987 S:      Maintained
988 F:      arch/arm/include/asm/clkdev.h
989 F:      drivers/clk/clkdev.c
990
991 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
992 M:      Mike Rapoport <mike@compulab.co.il>
993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
994 S:      Maintained
995
996 ARM/CONTEC MICRO9 MACHINE SUPPORT
997 M:      Hubert Feurstein <hubert.feurstein@contec.at>
998 S:      Maintained
999 F:      arch/arm/mach-ep93xx/micro9.c
1000
1001 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1002 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1004 S:      Maintained
1005 F:      drivers/hwtracing/coresight/*
1006 F:      Documentation/trace/coresight.txt
1007 F:      Documentation/devicetree/bindings/arm/coresight.txt
1008 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1009
1010 ARM/CORGI MACHINE SUPPORT
1011 M:      Richard Purdie <rpurdie@rpsys.net>
1012 S:      Maintained
1013
1014 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1015 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1017 T:      git git://github.com/ulli-kroll/linux.git
1018 S:      Maintained
1019 F:      arch/arm/mach-gemini/
1020 F:      drivers/rtc/rtc-gemini.c
1021
1022 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1023 M:      Barry Song <baohua@kernel.org>
1024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1026 S:      Maintained
1027 F:      arch/arm/mach-prima2/
1028 F:      drivers/clk/sirf/
1029 F:      drivers/clocksource/timer-prima2.c
1030 F:      drivers/clocksource/timer-atlas7.c
1031 N:      [^a-z]sirf
1032
1033 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1034 M:      Baruch Siach <baruch@tkos.co.il>
1035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1036 S:      Maintained
1037 F:      arch/arm/boot/dts/cx92755*
1038 N:      digicolor
1039
1040 ARM/EBSA110 MACHINE SUPPORT
1041 M:      Russell King <linux@arm.linux.org.uk>
1042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1043 W:      http://www.arm.linux.org.uk/
1044 S:      Maintained
1045 F:      arch/arm/mach-ebsa110/
1046 F:      drivers/net/ethernet/amd/am79c961a.*
1047
1048 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1049 M:      Uwe Kleine-König <kernel@pengutronix.de>
1050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1051 S:      Maintained
1052 N:      efm32
1053
1054 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1055 M:      Daniel Ribeiro <drwyrm@gmail.com>
1056 M:      Stefan Schmidt <stefan@openezx.org>
1057 M:      Harald Welte <laforge@openezx.org>
1058 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1059 W:      http://www.openezx.org/
1060 S:      Maintained
1061 T:      topgit git://git.openezx.org/openezx.git
1062 F:      arch/arm/mach-pxa/ezx.c
1063
1064 ARM/FARADAY FA526 PORT
1065 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 S:      Maintained
1068 T:      git git://git.berlios.de/gemini-board
1069 F:      arch/arm/mm/*-fa*
1070
1071 ARM/FOOTBRIDGE ARCHITECTURE
1072 M:      Russell King <linux@arm.linux.org.uk>
1073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1074 W:      http://www.arm.linux.org.uk/
1075 S:      Maintained
1076 F:      arch/arm/include/asm/hardware/dec21285.h
1077 F:      arch/arm/mach-footbridge/
1078
1079 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1080 M:      Shawn Guo <shawnguo@kernel.org>
1081 M:      Sascha Hauer <kernel@pengutronix.de>
1082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083 S:      Maintained
1084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1085 F:      arch/arm/mach-imx/
1086 F:      arch/arm/mach-mxs/
1087 F:      arch/arm/boot/dts/imx*
1088 F:      arch/arm/configs/imx*_defconfig
1089 F:      drivers/clk/imx/
1090 F:      include/soc/imx/
1091
1092 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1093 M:      Shawn Guo <shawnguo@kernel.org>
1094 M:      Sascha Hauer <kernel@pengutronix.de>
1095 R:      Stefan Agner <stefan@agner.ch>
1096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1097 S:      Maintained
1098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1099 F:      arch/arm/mach-imx/*vf610*
1100 F:      arch/arm/boot/dts/vf*
1101
1102 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1103 M:      Lennert Buytenhek <kernel@wantstofly.org>
1104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1105 S:      Maintained
1106
1107 ARM/GUMSTIX MACHINE SUPPORT
1108 M:      Steve Sakoman <sakoman@gmail.com>
1109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1110 S:      Maintained
1111
1112 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1113 M:      Philipp Zabel <philipp.zabel@gmail.com>
1114 M:      Paul Parsons <lost.distance@yahoo.com>
1115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1116 S:      Maintained
1117 F:      arch/arm/mach-pxa/hx4700.c
1118 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1119 F:      sound/soc/pxa/hx4700.c
1120
1121 ARM/HISILICON SOC SUPPORT
1122 M:      Wei Xu <xuwei5@hisilicon.com>
1123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1124 W:      http://www.hisilicon.com
1125 S:      Supported
1126 T:      git git://github.com/hisilicon/linux-hisi.git
1127 F:      arch/arm/mach-hisi/
1128
1129 ARM/HP JORNADA 7XX MACHINE SUPPORT
1130 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1131 W:      www.jlime.com
1132 S:      Maintained
1133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1134 F:      arch/arm/mach-sa1100/jornada720.c
1135 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1136
1137 ARM/IGEP MACHINE SUPPORT
1138 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1139 M:      Javier Martinez Canillas <javier@dowhile0.org>
1140 L:      linux-omap@vger.kernel.org
1141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1142 S:      Maintained
1143 F:      arch/arm/boot/dts/omap3-igep*
1144
1145 ARM/INCOME PXA270 SUPPORT
1146 M:      Marek Vasut <marek.vasut@gmail.com>
1147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1148 S:      Maintained
1149 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1150
1151 ARM/INTEL IOP32X ARM ARCHITECTURE
1152 M:      Lennert Buytenhek <kernel@wantstofly.org>
1153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1154 S:      Maintained
1155
1156 ARM/INTEL IOP33X ARM ARCHITECTURE
1157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1158 S:      Orphan
1159
1160 ARM/INTEL IOP13XX ARM ARCHITECTURE
1161 M:      Lennert Buytenhek <kernel@wantstofly.org>
1162 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1163 S:      Maintained
1164
1165 ARM/INTEL IQ81342EX MACHINE SUPPORT
1166 M:      Lennert Buytenhek <kernel@wantstofly.org>
1167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1168 S:      Maintained
1169
1170 ARM/INTEL IXDP2850 MACHINE SUPPORT
1171 M:      Lennert Buytenhek <kernel@wantstofly.org>
1172 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1173 S:      Maintained
1174
1175 ARM/INTEL IXP4XX ARM ARCHITECTURE
1176 M:      Imre Kaloz <kaloz@openwrt.org>
1177 M:      Krzysztof Halasa <khalasa@piap.pl>
1178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179 S:      Maintained
1180 F:      arch/arm/mach-ixp4xx/
1181
1182 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1183 M:      Jonathan Cameron <jic23@cam.ac.uk>
1184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185 S:      Maintained
1186 F:      arch/arm/mach-pxa/stargate2.c
1187 F:      drivers/pcmcia/pxa2xx_stargate2.c
1188
1189 ARM/INTEL XSC3 (MANZANO) ARM CORE
1190 M:      Lennert Buytenhek <kernel@wantstofly.org>
1191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1192 S:      Maintained
1193
1194 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1195 M:      Lennert Buytenhek <kernel@wantstofly.org>
1196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1197 S:      Maintained
1198
1199 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1200 M:      Santosh Shilimkar <ssantosh@kernel.org>
1201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202 S:      Maintained
1203 F:      arch/arm/mach-keystone/
1204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1205
1206 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1207 M:      Santosh Shilimkar <ssantosh@kernel.org>
1208 L:      linux-kernel@vger.kernel.org
1209 S:      Maintained
1210 F:      drivers/clk/keystone/
1211
1212 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1213 M:      Santosh Shilimkar <ssantosh@kernel.org>
1214 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1215 L:      linux-kernel@vger.kernel.org
1216 S:      Maintained
1217 F:      drivers/clocksource/timer-keystone.c
1218
1219 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1220 M:      Santosh Shilimkar <ssantosh@kernel.org>
1221 L:      linux-kernel@vger.kernel.org
1222 S:      Maintained
1223 F:      drivers/power/reset/keystone-reset.c
1224
1225 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1226 M:      Santosh Shilimkar <ssantosh@kernel.org>
1227 L:      linux-kernel@vger.kernel.org
1228 S:      Maintained
1229 F:      drivers/memory/*emif*
1230
1231 ARM/LOGICPD PXA270 MACHINE SUPPORT
1232 M:      Lennert Buytenhek <kernel@wantstofly.org>
1233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234 S:      Maintained
1235
1236 ARM/LPC18XX ARCHITECTURE
1237 M:      Joachim Eastwood <manabian@gmail.com>
1238 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239 S:      Maintained
1240 F:      arch/arm/boot/dts/lpc43*
1241 F:      drivers/clk/nxp/clk-lpc18xx*
1242 F:      drivers/clocksource/time-lpc32xx.c
1243 F:      drivers/i2c/busses/i2c-lpc2k.c
1244 F:      drivers/memory/pl172.c
1245 F:      drivers/mtd/spi-nor/nxp-spifi.c
1246 F:      drivers/rtc/rtc-lpc24xx.c
1247 N:      lpc18xx
1248
1249 ARM/MAGICIAN MACHINE SUPPORT
1250 M:      Philipp Zabel <philipp.zabel@gmail.com>
1251 S:      Maintained
1252
1253 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1254 M:      Jason Cooper <jason@lakedaemon.net>
1255 M:      Andrew Lunn <andrew@lunn.ch>
1256 M:      Gregory Clement <gregory.clement@free-electrons.com>
1257 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1258 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1259 S:      Maintained
1260 F:      arch/arm/mach-mvebu/
1261 F:      drivers/rtc/rtc-armada38x.c
1262 F:      arch/arm/boot/dts/armada*
1263 F:      arch/arm/boot/dts/kirkwood*
1264
1265
1266 ARM/Marvell Berlin SoC support
1267 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1268 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1269 S:      Maintained
1270 F:      arch/arm/mach-berlin/
1271 F:      arch/arm/boot/dts/berlin*
1272
1273
1274 ARM/Marvell Dove/MV78xx0/Orion SOC support
1275 M:      Jason Cooper <jason@lakedaemon.net>
1276 M:      Andrew Lunn <andrew@lunn.ch>
1277 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1278 M:      Gregory Clement <gregory.clement@free-electrons.com>
1279 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1280 S:      Maintained
1281 F:      arch/arm/mach-dove/
1282 F:      arch/arm/mach-mv78xx0/
1283 F:      arch/arm/mach-orion5x/
1284 F:      arch/arm/plat-orion/
1285 F:      arch/arm/boot/dts/dove*
1286 F:      arch/arm/boot/dts/orion5x*
1287
1288
1289 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1290 M:      Alexander Clouter <alex@digriz.org.uk>
1291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1292 W:      http://www.digriz.org.uk/ts78xx/kernel
1293 S:      Maintained
1294 F:      arch/arm/mach-orion5x/ts78xx-*
1295
1296 ARM/Mediatek RTC DRIVER
1297 M:      Eddie Huang <eddie.huang@mediatek.com>
1298 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1299 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1300 S:      Maintained
1301 F:      drivers/rtc/rtc-mt6397.c
1302
1303 ARM/Mediatek SoC support
1304 M:      Matthias Brugger <matthias.bgg@gmail.com>
1305 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1306 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1307 S:      Maintained
1308 F:      arch/arm/boot/dts/mt6*
1309 F:      arch/arm/boot/dts/mt8*
1310 F:      arch/arm/mach-mediatek/
1311 N:      mtk
1312 K:      mediatek
1313
1314 ARM/MICREL KS8695 ARCHITECTURE
1315 M:      Greg Ungerer <gerg@uclinux.org>
1316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1317 F:      arch/arm/mach-ks8695/
1318 S:      Odd Fixes
1319
1320 ARM/MIOA701 MACHINE SUPPORT
1321 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1322 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1323 F:      arch/arm/mach-pxa/mioa701.c
1324 S:      Maintained
1325
1326 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1327 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1328 S:      Maintained
1329
1330 ARM/NOMADIK ARCHITECTURE
1331 M:      Alessandro Rubini <rubini@unipv.it>
1332 M:      Linus Walleij <linus.walleij@linaro.org>
1333 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1334 S:      Maintained
1335 F:      arch/arm/mach-nomadik/
1336 F:      drivers/pinctrl/nomadik/
1337 F:      drivers/i2c/busses/i2c-nomadik.c
1338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1339
1340 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1341 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1342 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1343 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1344 S:      Supported
1345
1346 ARM/TOSA MACHINE SUPPORT
1347 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1348 M:      Dirk Opfer <dirk@opfer-online.de>
1349 S:      Maintained
1350
1351 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1352 M:      Marek Vasut <marek.vasut@gmail.com>
1353 L:      linux-arm-kernel@lists.infradead.org
1354 W:      http://hackndev.com
1355 S:      Maintained
1356 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1357 F:      arch/arm/mach-pxa/palmtx.c
1358 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1359 F:      arch/arm/mach-pxa/palmt5.c
1360 F:      arch/arm/mach-pxa/include/mach/palmld.h
1361 F:      arch/arm/mach-pxa/palmld.c
1362 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1363 F:      arch/arm/mach-pxa/palmte2.c
1364 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1365 F:      arch/arm/mach-pxa/palmtc.c
1366
1367 ARM/PALM TREO SUPPORT
1368 M:      Tomas Cech <sleep_walker@suse.com>
1369 L:      linux-arm-kernel@lists.infradead.org
1370 W:      http://hackndev.com
1371 S:      Maintained
1372 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1373 F:      arch/arm/mach-pxa/palmtreo.c
1374
1375 ARM/PALMZ72 SUPPORT
1376 M:      Sergey Lapin <slapin@ossfans.org>
1377 L:      linux-arm-kernel@lists.infradead.org
1378 W:      http://hackndev.com
1379 S:      Maintained
1380 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1381 F:      arch/arm/mach-pxa/palmz72.c
1382
1383 ARM/PLEB SUPPORT
1384 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1385 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1386 S:      Maintained
1387
1388 ARM/PT DIGITAL BOARD PORT
1389 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1391 W:      http://www.arm.linux.org.uk/
1392 S:      Maintained
1393
1394 ARM/QUALCOMM SUPPORT
1395 M:      Kumar Gala <galak@codeaurora.org>
1396 M:      Andy Gross <agross@codeaurora.org>
1397 M:      David Brown <davidb@codeaurora.org>
1398 L:      linux-arm-msm@vger.kernel.org
1399 L:      linux-soc@vger.kernel.org
1400 S:      Maintained
1401 F:      arch/arm/mach-qcom/
1402 F:      drivers/soc/qcom/
1403 F:      drivers/tty/serial/msm_serial.h
1404 F:      drivers/tty/serial/msm_serial.c
1405 F:      drivers/*/pm8???-*
1406 F:      drivers/mfd/ssbi.c
1407 F:      drivers/firmware/qcom_scm.c
1408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1409
1410 ARM/RADISYS ENP2611 MACHINE SUPPORT
1411 M:      Lennert Buytenhek <kernel@wantstofly.org>
1412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1413 S:      Maintained
1414
1415 ARM/RISCPC ARCHITECTURE
1416 M:      Russell King <linux@arm.linux.org.uk>
1417 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1418 W:      http://www.arm.linux.org.uk/
1419 S:      Maintained
1420 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1421 F:      arch/arm/include/asm/hardware/ioc.h
1422 F:      arch/arm/include/asm/hardware/iomd.h
1423 F:      arch/arm/include/asm/hardware/memc.h
1424 F:      arch/arm/mach-rpc/
1425 F:      drivers/net/ethernet/8390/etherh.c
1426 F:      drivers/net/ethernet/i825xx/ether1*
1427 F:      drivers/net/ethernet/seeq/ether3*
1428 F:      drivers/scsi/arm/
1429
1430 ARM/Rockchip SoC support
1431 M:      Heiko Stuebner <heiko@sntech.de>
1432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1433 L:      linux-rockchip@lists.infradead.org
1434 S:      Maintained
1435 F:      arch/arm/boot/dts/rk3*
1436 F:      arch/arm/mach-rockchip/
1437 F:      drivers/clk/rockchip/
1438 F:      drivers/i2c/busses/i2c-rk3x.c
1439 F:      drivers/*/*rockchip*
1440 F:      drivers/*/*/*rockchip*
1441 F:      sound/soc/rockchip/
1442 N:      rockchip
1443
1444 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1445 M:      Kukjin Kim <kgene@kernel.org>
1446 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1448 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1449 S:      Maintained
1450 F:      arch/arm/boot/dts/s3c*
1451 F:      arch/arm/boot/dts/exynos*
1452 F:      arch/arm64/boot/dts/exynos/
1453 F:      arch/arm/plat-samsung/
1454 F:      arch/arm/mach-s3c24*/
1455 F:      arch/arm/mach-s3c64xx/
1456 F:      arch/arm/mach-s5p*/
1457 F:      arch/arm/mach-exynos*/
1458 F:      drivers/*/*s3c2410*
1459 F:      drivers/*/*/*s3c2410*
1460 F:      drivers/spi/spi-s3c*
1461 F:      drivers/soc/samsung/*
1462 F:      sound/soc/samsung/*
1463 F:      Documentation/arm/Samsung/
1464 F:      Documentation/devicetree/bindings/arm/samsung/
1465 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1466 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1467 N:      exynos
1468
1469 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1470 M:      Kyungmin Park <kyungmin.park@samsung.com>
1471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1472 S:      Maintained
1473 F:      arch/arm/mach-s5pv210/
1474
1475 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1476 M:      Kyungmin Park <kyungmin.park@samsung.com>
1477 M:      Kamil Debski <k.debski@samsung.com>
1478 L:      linux-arm-kernel@lists.infradead.org
1479 L:      linux-media@vger.kernel.org
1480 S:      Maintained
1481 F:      drivers/media/platform/s5p-g2d/
1482
1483 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1484 M:      Kyungmin Park <kyungmin.park@samsung.com>
1485 M:      Kamil Debski <k.debski@samsung.com>
1486 M:      Jeongtae Park <jtp.park@samsung.com>
1487 L:      linux-arm-kernel@lists.infradead.org
1488 L:      linux-media@vger.kernel.org
1489 S:      Maintained
1490 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1491 F:      drivers/media/platform/s5p-mfc/
1492
1493 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1494 M:      Kyungmin Park <kyungmin.park@samsung.com>
1495 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1496 L:      linux-arm-kernel@lists.infradead.org
1497 L:      linux-media@vger.kernel.org
1498 S:      Maintained
1499 F:      drivers/media/platform/s5p-tv/
1500
1501 ARM/SHMOBILE ARM ARCHITECTURE
1502 M:      Simon Horman <horms@verge.net.au>
1503 M:      Magnus Damm <magnus.damm@gmail.com>
1504 L:      linux-sh@vger.kernel.org
1505 W:      http://oss.renesas.com
1506 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1508 S:      Supported
1509 F:      arch/arm/boot/dts/emev2*
1510 F:      arch/arm/boot/dts/r7s*
1511 F:      arch/arm/boot/dts/r8a*
1512 F:      arch/arm/boot/dts/sh*
1513 F:      arch/arm/configs/shmobile_defconfig
1514 F:      arch/arm/include/debug/renesas-scif.S
1515 F:      arch/arm/mach-shmobile/
1516 F:      drivers/sh/
1517
1518 ARM/SOCFPGA ARCHITECTURE
1519 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1520 S:      Maintained
1521 F:      arch/arm/mach-socfpga/
1522 F:      arch/arm/boot/dts/socfpga*
1523 F:      arch/arm/configs/socfpga_defconfig
1524 W:      http://www.rocketboards.org
1525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1526
1527 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1528 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1529 S:      Maintained
1530 F:      drivers/clk/socfpga/
1531
1532 ARM/SOCFPGA EDAC SUPPORT
1533 M:      Thor Thayer <tthayer@opensource.altera.com>
1534 S:      Maintained
1535 F:      drivers/edac/altera_edac.
1536
1537 ARM/STI ARCHITECTURE
1538 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1539 M:      Maxime Coquelin <maxime.coquelin@st.com>
1540 M:      Patrice Chotard <patrice.chotard@st.com>
1541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1542 L:      kernel@stlinux.com
1543 W:      http://www.stlinux.com
1544 S:      Maintained
1545 F:      arch/arm/mach-sti/
1546 F:      arch/arm/boot/dts/sti*
1547 F:      drivers/char/hw_random/st-rng.c
1548 F:      drivers/clocksource/arm_global_timer.c
1549 F:      drivers/clocksource/clksrc_st_lpc.c
1550 F:      drivers/i2c/busses/i2c-st.c
1551 F:      drivers/media/rc/st_rc.c
1552 F:      drivers/media/platform/sti/c8sectpfe/
1553 F:      drivers/mmc/host/sdhci-st.c
1554 F:      drivers/phy/phy-miphy28lp.c
1555 F:      drivers/phy/phy-miphy365x.c
1556 F:      drivers/phy/phy-stih407-usb.c
1557 F:      drivers/phy/phy-stih41x-usb.c
1558 F:      drivers/pinctrl/pinctrl-st.c
1559 F:      drivers/reset/sti/
1560 F:      drivers/rtc/rtc-st-lpc.c
1561 F:      drivers/tty/serial/st-asc.c
1562 F:      drivers/usb/dwc3/dwc3-st.c
1563 F:      drivers/usb/host/ehci-st.c
1564 F:      drivers/usb/host/ohci-st.c
1565 F:      drivers/watchdog/st_lpc_wdt.c
1566 F:      drivers/ata/ahci_st.c
1567
1568 ARM/STM32 ARCHITECTURE
1569 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1571 S:      Maintained
1572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1573 N:      stm32
1574 F:      drivers/clocksource/armv7m_systick.c
1575
1576 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1577 M:      Lennert Buytenhek <kernel@wantstofly.org>
1578 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1579 S:      Maintained
1580
1581 ARM/TETON BGA MACHINE SUPPORT
1582 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1583 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1584 S:      Maintained
1585
1586 ARM/THECUS N2100 MACHINE SUPPORT
1587 M:      Lennert Buytenhek <kernel@wantstofly.org>
1588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1589 S:      Maintained
1590
1591 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1592 M:      Wan ZongShun <mcuos.com@gmail.com>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 W:      http://www.mcuos.com
1595 S:      Maintained
1596 F:      arch/arm/mach-w90x900/
1597 F:      drivers/input/keyboard/w90p910_keypad.c
1598 F:      drivers/input/touchscreen/w90p910_ts.c
1599 F:      drivers/watchdog/nuc900_wdt.c
1600 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1601 F:      drivers/mtd/nand/nuc900_nand.c
1602 F:      drivers/rtc/rtc-nuc900.c
1603 F:      drivers/spi/spi-nuc900.c
1604 F:      drivers/usb/host/ehci-w90x900.c
1605 F:      drivers/video/fbdev/nuc900fb.c
1606
1607 ARM/U300 MACHINE SUPPORT
1608 M:      Linus Walleij <linus.walleij@linaro.org>
1609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1610 S:      Supported
1611 F:      arch/arm/mach-u300/
1612 F:      drivers/clocksource/timer-u300.c
1613 F:      drivers/i2c/busses/i2c-stu300.c
1614 F:      drivers/rtc/rtc-coh901331.c
1615 F:      drivers/watchdog/coh901327_wdt.c
1616 F:      drivers/dma/coh901318*
1617 F:      drivers/mfd/ab3100*
1618 F:      drivers/rtc/rtc-ab3100.c
1619 F:      drivers/rtc/rtc-coh901331.c
1620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1621
1622 ARM/UNIPHIER ARCHITECTURE
1623 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1625 S:      Maintained
1626 F:      arch/arm/boot/dts/uniphier*
1627 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1628 F:      arch/arm/mach-uniphier/
1629 F:      arch/arm/mm/cache-uniphier.c
1630 F:      drivers/pinctrl/uniphier/
1631 F:      drivers/tty/serial/8250/8250_uniphier.c
1632 N:      uniphier
1633
1634 ARM/Ux500 ARM ARCHITECTURE
1635 M:      Linus Walleij <linus.walleij@linaro.org>
1636 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1637 S:      Maintained
1638 F:      arch/arm/mach-ux500/
1639 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1640 F:      drivers/dma/ste_dma40*
1641 F:      drivers/hwspinlock/u8500_hsem.c
1642 F:      drivers/mfd/abx500*
1643 F:      drivers/mfd/ab8500*
1644 F:      drivers/mfd/dbx500*
1645 F:      drivers/mfd/db8500*
1646 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1647 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1648 F:      drivers/rtc/rtc-ab8500.c
1649 F:      drivers/rtc/rtc-pl031.c
1650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1651
1652 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1653 M:      Ulf Hansson <ulf.hansson@linaro.org>
1654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1655 T:      git git://git.linaro.org/people/ulfh/clk.git
1656 S:      Maintained
1657 F:      drivers/clk/ux500/
1658 F:      include/linux/platform_data/clk-ux500.h
1659
1660 ARM/VERSATILE EXPRESS PLATFORM
1661 M:      Liviu Dudau <liviu.dudau@arm.com>
1662 M:      Sudeep Holla <sudeep.holla@arm.com>
1663 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665 S:      Maintained
1666 F:      arch/arm/boot/dts/vexpress*
1667 F:      arch/arm64/boot/dts/arm/vexpress*
1668 F:      arch/arm/mach-vexpress/
1669 F:      */*/vexpress*
1670 F:      */*/*/vexpress*
1671 F:      drivers/clk/versatile/clk-vexpress-osc.c
1672 F:      drivers/clocksource/versatile.c
1673
1674 ARM/VFP SUPPORT
1675 M:      Russell King <linux@arm.linux.org.uk>
1676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1677 W:      http://www.arm.linux.org.uk/
1678 S:      Maintained
1679 F:      arch/arm/vfp/
1680
1681 ARM/VOIPAC PXA270 SUPPORT
1682 M:      Marek Vasut <marek.vasut@gmail.com>
1683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1684 S:      Maintained
1685 F:      arch/arm/mach-pxa/vpac270.c
1686 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1687
1688 ARM/VT8500 ARM ARCHITECTURE
1689 M:      Tony Prisk <linux@prisktech.co.nz>
1690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1691 S:      Maintained
1692 F:      arch/arm/mach-vt8500/
1693 F:      drivers/clocksource/vt8500_timer.c
1694 F:      drivers/i2c/busses/i2c-wmt.c
1695 F:      drivers/mmc/host/wmt-sdmmc.c
1696 F:      drivers/pwm/pwm-vt8500.c
1697 F:      drivers/rtc/rtc-vt8500.c
1698 F:      drivers/tty/serial/vt8500_serial.c
1699 F:      drivers/usb/host/ehci-platform.c
1700 F:      drivers/usb/host/uhci-platform.c
1701 F:      drivers/video/fbdev/vt8500lcdfb.*
1702 F:      drivers/video/fbdev/wm8505fb*
1703 F:      drivers/video/fbdev/wmt_ge_rops.*
1704
1705 ARM/ZIPIT Z2 SUPPORT
1706 M:      Marek Vasut <marek.vasut@gmail.com>
1707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1708 S:      Maintained
1709 F:      arch/arm/mach-pxa/z2.c
1710 F:      arch/arm/mach-pxa/include/mach/z2.h
1711
1712 ARM/ZTE ARCHITECTURE
1713 M:      Jun Nie <jun.nie@linaro.org>
1714 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1715 S:      Maintained
1716 F:      arch/arm/mach-zx/
1717 F:      drivers/clk/zte/
1718 F:      Documentation/devicetree/bindings/arm/zte.txt
1719 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1720
1721 ARM/ZYNQ ARCHITECTURE
1722 M:      Michal Simek <michal.simek@xilinx.com>
1723 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1725 W:      http://wiki.xilinx.com
1726 T:      git https://github.com/Xilinx/linux-xlnx.git
1727 S:      Supported
1728 F:      arch/arm/mach-zynq/
1729 F:      drivers/cpuidle/cpuidle-zynq.c
1730 F:      drivers/block/xsysace.c
1731 N:      zynq
1732 N:      xilinx
1733 F:      drivers/clocksource/cadence_ttc_timer.c
1734 F:      drivers/i2c/busses/i2c-cadence.c
1735 F:      drivers/mmc/host/sdhci-of-arasan.c
1736 F:      drivers/edac/synopsys_edac.c
1737
1738 ARM SMMU DRIVERS
1739 M:      Will Deacon <will.deacon@arm.com>
1740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1741 S:      Maintained
1742 F:      drivers/iommu/arm-smmu.c
1743 F:      drivers/iommu/arm-smmu-v3.c
1744 F:      drivers/iommu/io-pgtable-arm.c
1745
1746 ARM64 PORT (AARCH64 ARCHITECTURE)
1747 M:      Catalin Marinas <catalin.marinas@arm.com>
1748 M:      Will Deacon <will.deacon@arm.com>
1749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1750 S:      Maintained
1751 F:      arch/arm64/
1752 F:      Documentation/arm64/
1753
1754 AS3645A LED FLASH CONTROLLER DRIVER
1755 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1756 L:      linux-media@vger.kernel.org
1757 T:      git git://linuxtv.org/media_tree.git
1758 S:      Maintained
1759 F:      drivers/media/i2c/as3645a.c
1760 F:      include/media/as3645a.h
1761
1762 ASC7621 HARDWARE MONITOR DRIVER
1763 M:      George Joseph <george.joseph@fairview5.com>
1764 L:      lm-sensors@lm-sensors.org
1765 S:      Maintained
1766 F:      Documentation/hwmon/asc7621
1767 F:      drivers/hwmon/asc7621.c
1768
1769 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1770 M:      Corentin Chary <corentin.chary@gmail.com>
1771 L:      acpi4asus-user@lists.sourceforge.net
1772 L:      platform-driver-x86@vger.kernel.org
1773 W:      http://acpi4asus.sf.net
1774 S:      Maintained
1775 F:      drivers/platform/x86/asus*.c
1776 F:      drivers/platform/x86/eeepc*.c
1777
1778 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1779 R:      Dan Williams <dan.j.williams@intel.com>
1780 W:      http://sourceforge.net/projects/xscaleiop
1781 S:      Odd fixes
1782 F:      Documentation/crypto/async-tx-api.txt
1783 F:      crypto/async_tx/
1784 F:      drivers/dma/
1785 F:      include/linux/dmaengine.h
1786 F:      include/linux/async_tx.h
1787
1788 AT24 EEPROM DRIVER
1789 M:      Wolfram Sang <wsa@the-dreams.de>
1790 L:      linux-i2c@vger.kernel.org
1791 S:      Maintained
1792 F:      drivers/misc/eeprom/at24.c
1793 F:      include/linux/platform_data/at24.h
1794
1795 ATA OVER ETHERNET (AOE) DRIVER
1796 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1797 W:      http://www.openaoe.org/
1798 S:      Supported
1799 F:      Documentation/aoe/
1800 F:      drivers/block/aoe/
1801
1802 ATHEROS 71XX/9XXX GPIO DRIVER
1803 M:      Alban Bedel <albeu@free.fr>
1804 W:      https://github.com/AlbanBedel/linux
1805 T:      git git://github.com/AlbanBedel/linux
1806 S:      Maintained
1807 F:      drivers/gpio/gpio-ath79.c
1808 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1809
1810 ATHEROS ATH GENERIC UTILITIES
1811 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1812 L:      linux-wireless@vger.kernel.org
1813 S:      Supported
1814 F:      drivers/net/wireless/ath/*
1815
1816 ATHEROS ATH5K WIRELESS DRIVER
1817 M:      Jiri Slaby <jirislaby@gmail.com>
1818 M:      Nick Kossifidis <mickflemm@gmail.com>
1819 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1820 L:      linux-wireless@vger.kernel.org
1821 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1822 S:      Maintained
1823 F:      drivers/net/wireless/ath/ath5k/
1824
1825 ATHEROS ATH6KL WIRELESS DRIVER
1826 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1827 L:      linux-wireless@vger.kernel.org
1828 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1829 T:      git git://github.com/kvalo/ath.git
1830 S:      Supported
1831 F:      drivers/net/wireless/ath/ath6kl/
1832
1833 WILOCITY WIL6210 WIRELESS DRIVER
1834 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1835 L:      linux-wireless@vger.kernel.org
1836 L:      wil6210@qca.qualcomm.com
1837 S:      Supported
1838 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1839 F:      drivers/net/wireless/ath/wil6210/
1840 F:      include/uapi/linux/wil6210_uapi.h
1841
1842 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1843 M:      Christian Lamparter <chunkeey@googlemail.com>
1844 L:      linux-wireless@vger.kernel.org
1845 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1846 S:      Maintained
1847 F:      drivers/net/wireless/ath/carl9170/
1848
1849 ATK0110 HWMON DRIVER
1850 M:      Luca Tettamanti <kronos.it@gmail.com>
1851 L:      lm-sensors@lm-sensors.org
1852 S:      Maintained
1853 F:      drivers/hwmon/asus_atk0110.c
1854
1855 ATI_REMOTE2 DRIVER
1856 M:      Ville Syrjala <syrjala@sci.fi>
1857 S:      Maintained
1858 F:      drivers/input/misc/ati_remote2.c
1859
1860 ATLX ETHERNET DRIVERS
1861 M:      Jay Cliburn <jcliburn@gmail.com>
1862 M:      Chris Snook <chris.snook@gmail.com>
1863 L:      netdev@vger.kernel.org
1864 W:      http://sourceforge.net/projects/atl1
1865 W:      http://atl1.sourceforge.net
1866 S:      Maintained
1867 F:      drivers/net/ethernet/atheros/
1868
1869 ATM
1870 M:      Chas Williams <3chas3@gmail.com>
1871 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1872 L:      netdev@vger.kernel.org
1873 W:      http://linux-atm.sourceforge.net
1874 S:      Maintained
1875 F:      drivers/atm/
1876 F:      include/linux/atm*
1877 F:      include/uapi/linux/atm*
1878
1879 ATMEL AT91 / AT32 MCI DRIVER
1880 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1881 S:      Maintained
1882 F:      drivers/mmc/host/atmel-mci.c
1883 F:      drivers/mmc/host/atmel-mci-regs.h
1884
1885 ATMEL AT91 / AT32 SERIAL DRIVER
1886 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1887 S:      Supported
1888 F:      drivers/tty/serial/atmel_serial.c
1889
1890 ATMEL Audio ALSA driver
1891 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1892 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1893 S:      Supported
1894 F:      sound/soc/atmel
1895
1896 ATMEL DMA DRIVER
1897 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1899 S:      Supported
1900 F:      drivers/dma/at_hdmac.c
1901 F:      drivers/dma/at_hdmac_regs.h
1902 F:      include/linux/platform_data/dma-atmel.h
1903
1904 ATMEL XDMA DRIVER
1905 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1906 L:      linux-arm-kernel@lists.infradead.org
1907 L:      dmaengine@vger.kernel.org
1908 S:      Supported
1909 F:      drivers/dma/at_xdmac.c
1910
1911 ATMEL I2C DRIVER
1912 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1913 L:      linux-i2c@vger.kernel.org
1914 S:      Supported
1915 F:      drivers/i2c/busses/i2c-at91.c
1916
1917 ATMEL ISI DRIVER
1918 M:      Josh Wu <josh.wu@atmel.com>
1919 L:      linux-media@vger.kernel.org
1920 S:      Supported
1921 F:      drivers/media/platform/soc_camera/atmel-isi.c
1922 F:      include/media/atmel-isi.h
1923
1924 ATMEL LCDFB DRIVER
1925 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1926 L:      linux-fbdev@vger.kernel.org
1927 S:      Maintained
1928 F:      drivers/video/fbdev/atmel_lcdfb.c
1929 F:      include/video/atmel_lcdc.h
1930
1931 ATMEL MACB ETHERNET DRIVER
1932 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1933 S:      Supported
1934 F:      drivers/net/ethernet/cadence/
1935
1936 ATMEL NAND DRIVER
1937 M:      Josh Wu <josh.wu@atmel.com>
1938 L:      linux-mtd@lists.infradead.org
1939 S:      Supported
1940 F:      drivers/mtd/nand/atmel_nand*
1941
1942 ATMEL SDMMC DRIVER
1943 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1944 L:      linux-mmc@vger.kernel.org
1945 S:      Supported
1946 F:      drivers/mmc/host/sdhci-of-at91.c
1947
1948 ATMEL SPI DRIVER
1949 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1950 S:      Supported
1951 F:      drivers/spi/spi-atmel.*
1952
1953 ATMEL SSC DRIVER
1954 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1955 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1956 S:      Supported
1957 F:      drivers/misc/atmel-ssc.c
1958 F:      include/linux/atmel-ssc.h
1959
1960 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1961 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1963 S:      Supported
1964 F:      drivers/misc/atmel_tclib.c
1965 F:      drivers/clocksource/tcb_clksrc.c
1966
1967 ATMEL USBA UDC DRIVER
1968 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 S:      Supported
1971 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1972
1973 ATMEL WIRELESS DRIVER
1974 M:      Simon Kelley <simon@thekelleys.org.uk>
1975 L:      linux-wireless@vger.kernel.org
1976 W:      http://www.thekelleys.org.uk/atmel
1977 W:      http://atmelwlandriver.sourceforge.net/
1978 S:      Maintained
1979 F:      drivers/net/wireless/atmel*
1980
1981 ATMEL MAXTOUCH DRIVER
1982 M:      Nick Dyer <nick.dyer@itdev.co.uk>
1983 T:      git git://github.com/atmel-maxtouch/linux.git
1984 S:      Supported
1985 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1986 F:      drivers/input/touchscreen/atmel_mxt_ts.c
1987 F:      include/linux/platform_data/atmel_mxt_ts.h
1988
1989 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1990 M:      Bradley Grove <linuxdrivers@attotech.com>
1991 L:      linux-scsi@vger.kernel.org
1992 W:      http://www.attotech.com
1993 S:      Supported
1994 F:      drivers/scsi/esas2r
1995
1996 ATUSB IEEE 802.15.4 RADIO DRIVER
1997 M:      Stefan Schmidt <stefan@osg.samsung.com>
1998 L:      linux-wpan@vger.kernel.org
1999 S:      Maintained
2000 F:      drivers/net/ieee802154/atusb.c
2001 F:      drivers/net/ieee802154/atusb.h
2002 F:      drivers/net/ieee802154/at86rf230.h
2003
2004 AUDIT SUBSYSTEM
2005 M:      Paul Moore <paul@paul-moore.com>
2006 M:      Eric Paris <eparis@redhat.com>
2007 L:      linux-audit@redhat.com (moderated for non-subscribers)
2008 W:      http://people.redhat.com/sgrubb/audit/
2009 T:      git git://git.infradead.org/users/pcmoore/audit
2010 S:      Maintained
2011 F:      include/linux/audit.h
2012 F:      include/uapi/linux/audit.h
2013 F:      kernel/audit*
2014
2015 AUXILIARY DISPLAY DRIVERS
2016 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2017 W:      http://miguelojeda.es/auxdisplay.htm
2018 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2019 S:      Maintained
2020 F:      drivers/auxdisplay/
2021 F:      include/linux/cfag12864b.h
2022
2023 AVR32 ARCHITECTURE
2024 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2025 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2026 W:      http://www.atmel.com/products/AVR32/
2027 W:      http://mirror.egtvedt.no/avr32linux.org/
2028 W:      http://avrfreaks.net/
2029 S:      Maintained
2030 F:      arch/avr32/
2031
2032 AVR32/AT32AP MACHINE SUPPORT
2033 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2034 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2035 S:      Maintained
2036 F:      arch/avr32/mach-at32ap/
2037
2038 AX.25 NETWORK LAYER
2039 M:      Ralf Baechle <ralf@linux-mips.org>
2040 L:      linux-hams@vger.kernel.org
2041 W:      http://www.linux-ax25.org/
2042 S:      Maintained
2043 F:      include/uapi/linux/ax25.h
2044 F:      include/net/ax25.h
2045 F:      net/ax25/
2046
2047 AZ6007 DVB DRIVER
2048 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2049 L:      linux-media@vger.kernel.org
2050 W:      http://linuxtv.org
2051 T:      git git://linuxtv.org/media_tree.git
2052 S:      Maintained
2053 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2054
2055 AZTECH FM RADIO RECEIVER DRIVER
2056 M:      Hans Verkuil <hverkuil@xs4all.nl>
2057 L:      linux-media@vger.kernel.org
2058 T:      git git://linuxtv.org/media_tree.git
2059 W:      http://linuxtv.org
2060 S:      Maintained
2061 F:      drivers/media/radio/radio-aztech*
2062
2063 B43 WIRELESS DRIVER
2064 L:      linux-wireless@vger.kernel.org
2065 L:      b43-dev@lists.infradead.org
2066 W:      http://wireless.kernel.org/en/users/Drivers/b43
2067 S:      Odd Fixes
2068 F:      drivers/net/wireless/b43/
2069
2070 B43LEGACY WIRELESS DRIVER
2071 M:      Larry Finger <Larry.Finger@lwfinger.net>
2072 L:      linux-wireless@vger.kernel.org
2073 L:      b43-dev@lists.infradead.org
2074 W:      http://wireless.kernel.org/en/users/Drivers/b43
2075 S:      Maintained
2076 F:      drivers/net/wireless/b43legacy/
2077
2078 BACKLIGHT CLASS/SUBSYSTEM
2079 M:      Jingoo Han <jingoohan1@gmail.com>
2080 M:      Lee Jones <lee.jones@linaro.org>
2081 S:      Maintained
2082 F:      drivers/video/backlight/
2083 F:      include/linux/backlight.h
2084
2085 BATMAN ADVANCED
2086 M:      Marek Lindner <mareklindner@neomailbox.ch>
2087 M:      Simon Wunderlich <sw@simonwunderlich.de>
2088 M:      Antonio Quartulli <antonio@meshcoding.com>
2089 L:      b.a.t.m.a.n@lists.open-mesh.org
2090 W:      http://www.open-mesh.org/
2091 S:      Maintained
2092 F:      net/batman-adv/
2093
2094 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2095 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2096 L:      linux-hams@vger.kernel.org
2097 W:      http://www.baycom.org/~tom/ham/ham.html
2098 S:      Maintained
2099 F:      drivers/net/hamradio/baycom*
2100
2101 BCACHE (BLOCK LAYER CACHE)
2102 M:      Kent Overstreet <kent.overstreet@gmail.com>
2103 L:      linux-bcache@vger.kernel.org
2104 W:      http://bcache.evilpiepirate.org
2105 S:      Maintained
2106 F:      drivers/md/bcache/
2107
2108 BDISP ST MEDIA DRIVER
2109 M:      Fabien Dessenne <fabien.dessenne@st.com>
2110 L:      linux-media@vger.kernel.org
2111 T:      git git://linuxtv.org/media_tree.git
2112 W:      http://linuxtv.org
2113 S:      Supported
2114 F:      drivers/media/platform/sti/bdisp
2115
2116 BEFS FILE SYSTEM
2117 S:      Orphan
2118 F:      Documentation/filesystems/befs.txt
2119 F:      fs/befs/
2120
2121 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2122 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2123 L:      netdev@vger.kernel.org
2124 S:      Maintained
2125 F:      drivers/net/ethernet/ec_bhf.c
2126
2127 BFS FILE SYSTEM
2128 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2129 S:      Maintained
2130 F:      Documentation/filesystems/bfs.txt
2131 F:      fs/bfs/
2132 F:      include/uapi/linux/bfs_fs.h
2133
2134 BLACKFIN ARCHITECTURE
2135 M:      Steven Miao <realmz6@gmail.com>
2136 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2137 T:      git git://git.code.sf.net/p/adi-linux/code
2138 W:      http://blackfin.uclinux.org
2139 S:      Supported
2140 F:      arch/blackfin/
2141
2142 BLACKFIN EMAC DRIVER
2143 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2144 W:      http://blackfin.uclinux.org
2145 S:      Supported
2146 F:      drivers/net/ethernet/adi/
2147
2148 BLACKFIN RTC DRIVER
2149 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2150 W:      http://blackfin.uclinux.org
2151 S:      Supported
2152 F:      drivers/rtc/rtc-bfin.c
2153
2154 BLACKFIN SDH DRIVER
2155 M:      Sonic Zhang <sonic.zhang@analog.com>
2156 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2157 W:      http://blackfin.uclinux.org
2158 S:      Supported
2159 F:      drivers/mmc/host/bfin_sdh.c
2160
2161 BLACKFIN SERIAL DRIVER
2162 M:      Sonic Zhang <sonic.zhang@analog.com>
2163 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2164 W:      http://blackfin.uclinux.org
2165 S:      Supported
2166 F:      drivers/tty/serial/bfin_uart.c
2167
2168 BLACKFIN WATCHDOG DRIVER
2169 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2170 W:      http://blackfin.uclinux.org
2171 S:      Supported
2172 F:      drivers/watchdog/bfin_wdt.c
2173
2174 BLACKFIN I2C TWI DRIVER
2175 M:      Sonic Zhang <sonic.zhang@analog.com>
2176 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2177 W:      http://blackfin.uclinux.org/
2178 S:      Supported
2179 F:      drivers/i2c/busses/i2c-bfin-twi.c
2180
2181 BLACKFIN MEDIA DRIVER
2182 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2183 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2184 W:      http://blackfin.uclinux.org/
2185 S:      Supported
2186 F:      drivers/media/platform/blackfin/
2187 F:      drivers/media/i2c/adv7183*
2188 F:      drivers/media/i2c/vs6624*
2189
2190 BLINKM RGB LED DRIVER
2191 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2192 S:      Maintained
2193 F:      drivers/leds/leds-blinkm.c
2194
2195 BLOCK LAYER
2196 M:      Jens Axboe <axboe@kernel.dk>
2197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2198 S:      Maintained
2199 F:      block/
2200 F:      kernel/trace/blktrace.c
2201
2202 BLOCK2MTD DRIVER
2203 M:      Joern Engel <joern@lazybastard.org>
2204 L:      linux-mtd@lists.infradead.org
2205 S:      Maintained
2206 F:      drivers/mtd/devices/block2mtd.c
2207
2208 BLUETOOTH DRIVERS
2209 M:      Marcel Holtmann <marcel@holtmann.org>
2210 M:      Gustavo Padovan <gustavo@padovan.org>
2211 M:      Johan Hedberg <johan.hedberg@gmail.com>
2212 L:      linux-bluetooth@vger.kernel.org
2213 W:      http://www.bluez.org/
2214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2216 S:      Maintained
2217 F:      drivers/bluetooth/
2218
2219 BLUETOOTH SUBSYSTEM
2220 M:      Marcel Holtmann <marcel@holtmann.org>
2221 M:      Gustavo Padovan <gustavo@padovan.org>
2222 M:      Johan Hedberg <johan.hedberg@gmail.com>
2223 L:      linux-bluetooth@vger.kernel.org
2224 W:      http://www.bluez.org/
2225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2227 S:      Maintained
2228 F:      net/bluetooth/
2229 F:      include/net/bluetooth/
2230
2231 BONDING DRIVER
2232 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2233 M:      Veaceslav Falico <vfalico@gmail.com>
2234 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2235 L:      netdev@vger.kernel.org
2236 W:      http://sourceforge.net/projects/bonding/
2237 S:      Supported
2238 F:      drivers/net/bonding/
2239 F:      include/uapi/linux/if_bonding.h
2240
2241 BPF (Safe dynamic programs and tools)
2242 M:      Alexei Starovoitov <ast@kernel.org>
2243 L:      netdev@vger.kernel.org
2244 L:      linux-kernel@vger.kernel.org
2245 S:      Supported
2246 F:      kernel/bpf/
2247
2248 BROADCOM B44 10/100 ETHERNET DRIVER
2249 M:      Gary Zambrano <zambrano@broadcom.com>
2250 L:      netdev@vger.kernel.org
2251 S:      Supported
2252 F:      drivers/net/ethernet/broadcom/b44.*
2253
2254 BROADCOM GENET ETHERNET DRIVER
2255 M:      Florian Fainelli <f.fainelli@gmail.com>
2256 L:      netdev@vger.kernel.org
2257 S:      Supported
2258 F:      drivers/net/ethernet/broadcom/genet/
2259
2260 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2261 M:      Sony Chacko <sony.chacko@qlogic.com>
2262 M:      Dept-HSGLinuxNICDev@qlogic.com
2263 L:      netdev@vger.kernel.org
2264 S:      Supported
2265 F:      drivers/net/ethernet/broadcom/bnx2.*
2266 F:      drivers/net/ethernet/broadcom/bnx2_*
2267
2268 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2269 M:      Ariel Elior <ariel.elior@qlogic.com>
2270 L:      netdev@vger.kernel.org
2271 S:      Supported
2272 F:      drivers/net/ethernet/broadcom/bnx2x/
2273
2274 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2275 M:      Florian Fainelli <f.fainelli@gmail.com>
2276 M:      Ray Jui <rjui@broadcom.com>
2277 M:      Scott Branden <sbranden@broadcom.com>
2278 L:      bcm-kernel-feedback-list@broadcom.com
2279 T:      git git://github.com/broadcom/mach-bcm
2280 S:      Maintained
2281 F:      arch/arm/mach-bcm/
2282 F:      arch/arm/boot/dts/bcm113*
2283 F:      arch/arm/boot/dts/bcm216*
2284 F:      arch/arm/boot/dts/bcm281*
2285 F:      arch/arm/configs/bcm_defconfig
2286 F:      drivers/mmc/host/sdhci-bcm-kona.c
2287 F:      drivers/clocksource/bcm_kona_timer.c
2288
2289 BROADCOM BCM2835 ARM ARCHITECTURE
2290 M:      Stephen Warren <swarren@wwwdotorg.org>
2291 M:      Lee Jones <lee@kernel.org>
2292 M:      Eric Anholt <eric@anholt.net>
2293 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2294 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2296 S:      Maintained
2297 N:      bcm2835
2298
2299 BROADCOM BCM33XX MIPS ARCHITECTURE
2300 M:      Kevin Cernekee <cernekee@gmail.com>
2301 L:      linux-mips@linux-mips.org
2302 S:      Maintained
2303 F:      arch/mips/bcm3384/*
2304 F:      arch/mips/include/asm/mach-bcm3384/*
2305 F:      arch/mips/kernel/*bmips*
2306
2307 BROADCOM BCM47XX MIPS ARCHITECTURE
2308 M:      Hauke Mehrtens <hauke@hauke-m.de>
2309 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2310 L:      linux-mips@linux-mips.org
2311 S:      Maintained
2312 F:      arch/mips/bcm47xx/*
2313 F:      arch/mips/include/asm/mach-bcm47xx/*
2314
2315 BROADCOM BCM5301X ARM ARCHITECTURE
2316 M:      Hauke Mehrtens <hauke@hauke-m.de>
2317 L:      linux-arm-kernel@lists.infradead.org
2318 S:      Maintained
2319 F:      arch/arm/mach-bcm/bcm_5301x.c
2320 F:      arch/arm/boot/dts/bcm5301x.dtsi
2321 F:      arch/arm/boot/dts/bcm470*
2322
2323 BROADCOM BCM63XX ARM ARCHITECTURE
2324 M:      Florian Fainelli <f.fainelli@gmail.com>
2325 L:      linux-arm-kernel@lists.infradead.org
2326 T:      git git://github.com/broadcom/arm-bcm63xx.git
2327 S:      Maintained
2328 F:      arch/arm/mach-bcm/bcm63xx.c
2329 F:      arch/arm/include/debug/bcm63xx.S
2330
2331 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2332 M:      Kevin Cernekee <cernekee@gmail.com>
2333 L:      linux-usb@vger.kernel.org
2334 S:      Maintained
2335 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2336
2337 BROADCOM BCM7XXX ARM ARCHITECTURE
2338 M:      Brian Norris <computersforpeace@gmail.com>
2339 M:      Gregory Fong <gregory.0xf0@gmail.com>
2340 M:      Florian Fainelli <f.fainelli@gmail.com>
2341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2342 T:      git git://github.com/broadcom/stblinux.git
2343 S:      Maintained
2344 F:      arch/arm/mach-bcm/*brcmstb*
2345 F:      arch/arm/boot/dts/bcm7*.dts*
2346 F:      drivers/bus/brcmstb_gisb.c
2347 N:      brcmstb
2348
2349 BROADCOM BMIPS MIPS ARCHITECTURE
2350 M:      Kevin Cernekee <cernekee@gmail.com>
2351 M:      Florian Fainelli <f.fainelli@gmail.com>
2352 L:      linux-mips@linux-mips.org
2353 T:      git git://github.com/broadcom/stblinux.git
2354 S:      Maintained
2355 F:      arch/mips/bmips/*
2356 F:      arch/mips/include/asm/mach-bmips/*
2357 F:      arch/mips/kernel/*bmips*
2358 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2359 F:      drivers/irqchip/irq-bcm7*
2360 F:      drivers/irqchip/irq-brcmstb*
2361
2362 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2363 M:      Prashant Sreedharan <prashant@broadcom.com>
2364 M:      Michael Chan <mchan@broadcom.com>
2365 L:      netdev@vger.kernel.org
2366 S:      Supported
2367 F:      drivers/net/ethernet/broadcom/tg3.*
2368
2369 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2370 M:      Brett Rudley <brudley@broadcom.com>
2371 M:      Arend van Spriel <arend@broadcom.com>
2372 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2373 M:      Hante Meuleman <meuleman@broadcom.com>
2374 L:      linux-wireless@vger.kernel.org
2375 L:      brcm80211-dev-list@broadcom.com
2376 S:      Supported
2377 F:      drivers/net/wireless/brcm80211/
2378
2379 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2380 M:      QLogic-Storage-Upstream@qlogic.com
2381 L:      linux-scsi@vger.kernel.org
2382 S:      Supported
2383 F:      drivers/scsi/bnx2fc/
2384
2385 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2386 M:      QLogic-Storage-Upstream@qlogic.com
2387 L:      linux-scsi@vger.kernel.org
2388 S:      Supported
2389 F:      drivers/scsi/bnx2i/
2390
2391 BROADCOM IPROC ARM ARCHITECTURE
2392 M:      Ray Jui <rjui@broadcom.com>
2393 M:      Scott Branden <sbranden@broadcom.com>
2394 M:      Jon Mason <jonmason@broadcom.com>
2395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2396 L:      bcm-kernel-feedback-list@broadcom.com
2397 T:      git git://github.com/broadcom/cygnus-linux.git
2398 S:      Maintained
2399 N:      iproc
2400 N:      cygnus
2401 N:      nsp
2402 N:      bcm9113*
2403 N:      bcm9583*
2404 N:      bcm9585*
2405 N:      bcm9586*
2406 N:      bcm988312
2407 N:      bcm113*
2408 N:      bcm583*
2409 N:      bcm585*
2410 N:      bcm586*
2411 N:      bcm88312
2412
2413 BROADCOM BRCMSTB GPIO DRIVER
2414 M:      Gregory Fong <gregory.0xf0@gmail.com>
2415 L:      bcm-kernel-feedback-list@broadcom.com>
2416 S:      Supported
2417 F:      drivers/gpio/gpio-brcmstb.c
2418 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2419
2420 BROADCOM KONA GPIO DRIVER
2421 M:      Ray Jui <rjui@broadcom.com>
2422 L:      bcm-kernel-feedback-list@broadcom.com
2423 S:      Supported
2424 F:      drivers/gpio/gpio-bcm-kona.c
2425 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2426
2427 BROADCOM NVRAM DRIVER
2428 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2429 L:      linux-mips@linux-mips.org
2430 S:      Maintained
2431 F:      drivers/firmware/broadcom/*
2432
2433 BROADCOM STB NAND FLASH DRIVER
2434 M:      Brian Norris <computersforpeace@gmail.com>
2435 L:      linux-mtd@lists.infradead.org
2436 S:      Maintained
2437 F:      drivers/mtd/nand/brcmnand/
2438
2439 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2440 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2441 L:      linux-wireless@vger.kernel.org
2442 S:      Maintained
2443 F:      drivers/bcma/
2444 F:      include/linux/bcma/
2445
2446 BROADCOM SYSTEMPORT ETHERNET DRIVER
2447 M:      Florian Fainelli <f.fainelli@gmail.com>
2448 L:      netdev@vger.kernel.org
2449 S:      Supported
2450 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2451
2452 BROCADE BFA FC SCSI DRIVER
2453 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2454 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2455 L:      linux-scsi@vger.kernel.org
2456 S:      Supported
2457 F:      drivers/scsi/bfa/
2458
2459 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2460 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2461 L:      netdev@vger.kernel.org
2462 S:      Supported
2463 F:      drivers/net/ethernet/brocade/bna/
2464
2465 BSG (block layer generic sg v4 driver)
2466 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2467 L:      linux-scsi@vger.kernel.org
2468 S:      Supported
2469 F:      block/bsg.c
2470 F:      include/linux/bsg.h
2471 F:      include/uapi/linux/bsg.h
2472
2473 BT87X AUDIO DRIVER
2474 M:      Clemens Ladisch <clemens@ladisch.de>
2475 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2476 T:      git git://git.alsa-project.org/alsa-kernel.git
2477 S:      Maintained
2478 F:      Documentation/sound/alsa/Bt87x.txt
2479 F:      sound/pci/bt87x.c
2480
2481 BT8XXGPIO DRIVER
2482 M:      Michael Buesch <m@bues.ch>
2483 W:      http://bu3sch.de/btgpio.php
2484 S:      Maintained
2485 F:      drivers/gpio/gpio-bt8xx.c
2486
2487 BTRFS FILE SYSTEM
2488 M:      Chris Mason <clm@fb.com>
2489 M:      Josef Bacik <jbacik@fb.com>
2490 M:      David Sterba <dsterba@suse.com>
2491 L:      linux-btrfs@vger.kernel.org
2492 W:      http://btrfs.wiki.kernel.org/
2493 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2495 S:      Maintained
2496 F:      Documentation/filesystems/btrfs.txt
2497 F:      fs/btrfs/
2498
2499 BTTV VIDEO4LINUX DRIVER
2500 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2501 L:      linux-media@vger.kernel.org
2502 W:      http://linuxtv.org
2503 T:      git git://linuxtv.org/media_tree.git
2504 S:      Odd fixes
2505 F:      Documentation/video4linux/bttv/
2506 F:      drivers/media/pci/bt8xx/bttv*
2507
2508 BUSLOGIC SCSI DRIVER
2509 M:      Khalid Aziz <khalid@gonehiking.org>
2510 L:      linux-scsi@vger.kernel.org
2511 S:      Maintained
2512 F:      drivers/scsi/BusLogic.*
2513 F:      drivers/scsi/FlashPoint.*
2514
2515 C-MEDIA CMI8788 DRIVER
2516 M:      Clemens Ladisch <clemens@ladisch.de>
2517 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2518 T:      git git://git.alsa-project.org/alsa-kernel.git
2519 S:      Maintained
2520 F:      sound/pci/oxygen/
2521
2522 C6X ARCHITECTURE
2523 M:      Mark Salter <msalter@redhat.com>
2524 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2525 L:      linux-c6x-dev@linux-c6x.org
2526 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2527 S:      Maintained
2528 F:      arch/c6x/
2529
2530 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2531 M:      David Howells <dhowells@redhat.com>
2532 L:      linux-cachefs@redhat.com
2533 S:      Supported
2534 F:      Documentation/filesystems/caching/cachefiles.txt
2535 F:      fs/cachefiles/
2536
2537 CADET FM/AM RADIO RECEIVER DRIVER
2538 M:      Hans Verkuil <hverkuil@xs4all.nl>
2539 L:      linux-media@vger.kernel.org
2540 T:      git git://linuxtv.org/media_tree.git
2541 W:      http://linuxtv.org
2542 S:      Maintained
2543 F:      drivers/media/radio/radio-cadet*
2544
2545 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2546 M:      Jonathan Corbet <corbet@lwn.net>
2547 L:      linux-media@vger.kernel.org
2548 T:      git git://linuxtv.org/media_tree.git
2549 S:      Maintained
2550 F:      Documentation/video4linux/cafe_ccic
2551 F:      drivers/media/platform/marvell-ccic/
2552
2553 CAIF NETWORK LAYER
2554 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2555 L:      netdev@vger.kernel.org
2556 S:      Supported
2557 F:      Documentation/networking/caif/
2558 F:      drivers/net/caif/
2559 F:      include/uapi/linux/caif/
2560 F:      include/net/caif/
2561 F:      net/caif/
2562
2563 CALGARY x86-64 IOMMU
2564 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2565 M:      "Jon D. Mason" <jdmason@kudzu.us>
2566 L:      discuss@x86-64.org
2567 S:      Maintained
2568 F:      arch/x86/kernel/pci-calgary_64.c
2569 F:      arch/x86/kernel/tce_64.c
2570 F:      arch/x86/include/asm/calgary.h
2571 F:      arch/x86/include/asm/tce.h
2572
2573 CAN NETWORK LAYER
2574 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2575 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2576 L:      linux-can@vger.kernel.org
2577 W:      https://github.com/linux-can
2578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2580 S:      Maintained
2581 F:      Documentation/networking/can.txt
2582 F:      net/can/
2583 F:      include/linux/can/core.h
2584 F:      include/uapi/linux/can.h
2585 F:      include/uapi/linux/can/bcm.h
2586 F:      include/uapi/linux/can/raw.h
2587 F:      include/uapi/linux/can/gw.h
2588
2589 CAN NETWORK DRIVERS
2590 M:      Wolfgang Grandegger <wg@grandegger.com>
2591 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2592 L:      linux-can@vger.kernel.org
2593 W:      https://github.com/linux-can
2594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2596 S:      Maintained
2597 F:      drivers/net/can/
2598 F:      include/linux/can/dev.h
2599 F:      include/linux/can/platform/
2600 F:      include/uapi/linux/can/error.h
2601 F:      include/uapi/linux/can/netlink.h
2602
2603 CAPABILITIES
2604 M:      Serge Hallyn <serge.hallyn@canonical.com>
2605 L:      linux-security-module@vger.kernel.org
2606 S:      Supported
2607 F:      include/linux/capability.h
2608 F:      include/uapi/linux/capability.h
2609 F:      security/commoncap.c
2610 F:      kernel/capability.c
2611
2612 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2613 M:      Kevin Tsai <ktsai@capellamicro.com>
2614 S:      Maintained
2615 F:      drivers/iio/light/cm*
2616 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2617
2618 CAVIUM LIQUIDIO NETWORK DRIVER
2619 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2620 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2621 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2622 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2623 L:     netdev@vger.kernel.org
2624 W:     http://www.cavium.com
2625 S:     Supported
2626 F:     drivers/net/ethernet/cavium/liquidio/
2627
2628 CC2520 IEEE-802.15.4 RADIO DRIVER
2629 M:      Varka Bhadram <varkabhadram@gmail.com>
2630 L:      linux-wpan@vger.kernel.org
2631 S:      Maintained
2632 F:      drivers/net/ieee802154/cc2520.c
2633 F:      include/linux/spi/cc2520.h
2634 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2635
2636 CELL BROADBAND ENGINE ARCHITECTURE
2637 M:      Arnd Bergmann <arnd@arndb.de>
2638 L:      linuxppc-dev@lists.ozlabs.org
2639 W:      http://www.ibm.com/developerworks/power/cell/
2640 S:      Supported
2641 F:      arch/powerpc/include/asm/cell*.h
2642 F:      arch/powerpc/include/asm/spu*.h
2643 F:      arch/powerpc/include/uapi/asm/spu*.h
2644 F:      arch/powerpc/oprofile/*cell*
2645 F:      arch/powerpc/platforms/cell/
2646
2647 CEPH COMMON CODE (LIBCEPH)
2648 M:      Ilya Dryomov <idryomov@gmail.com>
2649 M:      "Yan, Zheng" <zyan@redhat.com>
2650 M:      Sage Weil <sage@redhat.com>
2651 L:      ceph-devel@vger.kernel.org
2652 W:      http://ceph.com/
2653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2654 T:      git git://github.com/ceph/ceph-client.git
2655 S:      Supported
2656 F:      net/ceph/
2657 F:      include/linux/ceph/
2658 F:      include/linux/crush/
2659
2660 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2661 M:      "Yan, Zheng" <zyan@redhat.com>
2662 M:      Sage Weil <sage@redhat.com>
2663 M:      Ilya Dryomov <idryomov@gmail.com>
2664 L:      ceph-devel@vger.kernel.org
2665 W:      http://ceph.com/
2666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2667 T:      git git://github.com/ceph/ceph-client.git
2668 S:      Supported
2669 F:      Documentation/filesystems/ceph.txt
2670 F:      fs/ceph/
2671
2672 CERTIFICATE HANDLING:
2673 M:      David Howells <dhowells@redhat.com>
2674 M:      David Woodhouse <dwmw2@infradead.org>
2675 L:      keyrings@linux-nfs.org
2676 S:      Maintained
2677 F:      Documentation/module-signing.txt
2678 F:      certs/
2679 F:      scripts/extract-cert.c
2680
2681 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2682 L:      linux-usb@vger.kernel.org
2683 S:      Orphan
2684 F:      Documentation/usb/WUSB-Design-overview.txt
2685 F:      Documentation/usb/wusb-cbaf
2686 F:      drivers/usb/host/hwa-hc.c
2687 F:      drivers/usb/host/whci/
2688 F:      drivers/usb/wusbcore/
2689 F:      include/linux/usb/wusb*
2690
2691 CFAG12864B LCD DRIVER
2692 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2693 W:      http://miguelojeda.es/auxdisplay.htm
2694 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2695 S:      Maintained
2696 F:      drivers/auxdisplay/cfag12864b.c
2697 F:      include/linux/cfag12864b.h
2698
2699 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2700 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2701 W:      http://miguelojeda.es/auxdisplay.htm
2702 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2703 S:      Maintained
2704 F:      drivers/auxdisplay/cfag12864bfb.c
2705 F:      include/linux/cfag12864b.h
2706
2707 CFG80211 and NL80211
2708 M:      Johannes Berg <johannes@sipsolutions.net>
2709 L:      linux-wireless@vger.kernel.org
2710 W:      http://wireless.kernel.org/
2711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2713 S:      Maintained
2714 F:      include/uapi/linux/nl80211.h
2715 F:      include/net/cfg80211.h
2716 F:      net/wireless/*
2717 X:      net/wireless/wext*
2718
2719 CHAR and MISC DRIVERS
2720 M:      Arnd Bergmann <arnd@arndb.de>
2721 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2723 S:      Supported
2724 F:      drivers/char/*
2725 F:      drivers/misc/*
2726 F:      include/linux/miscdevice.h
2727
2728 CHECKPATCH
2729 M:      Andy Whitcroft <apw@canonical.com>
2730 M:      Joe Perches <joe@perches.com>
2731 S:      Maintained
2732 F:      scripts/checkpatch.pl
2733
2734 CHINESE DOCUMENTATION
2735 M:      Harry Wei <harryxiyou@gmail.com>
2736 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2737 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2738 S:      Maintained
2739 F:      Documentation/zh_CN/
2740
2741 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2742 M:      Peter Chen <Peter.Chen@freescale.com>
2743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2744 L:      linux-usb@vger.kernel.org
2745 S:      Maintained
2746 F:      drivers/usb/chipidea/
2747
2748 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2749 M:      Hans de Goede <hdegoede@redhat.com>
2750 L:      linux-input@vger.kernel.org
2751 S:      Maintained
2752 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2753 F:      drivers/input/touchscreen/chipone_icn8318.c
2754
2755 CHROME HARDWARE PLATFORM SUPPORT
2756 M:      Olof Johansson <olof@lixom.net>
2757 S:      Maintained
2758 F:      drivers/platform/chrome/
2759
2760 CISCO VIC ETHERNET NIC DRIVER
2761 M:      Christian Benvenuti <benve@cisco.com>
2762 M:      Sujith Sankar <ssujith@cisco.com>
2763 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2764 M:      Neel Patel <neepatel@cisco.com>
2765 S:      Supported
2766 F:      drivers/net/ethernet/cisco/enic/
2767
2768 CISCO VIC LOW LATENCY NIC DRIVER
2769 M:      Upinder Malhi <umalhi@cisco.com>
2770 S:      Supported
2771 F:      drivers/infiniband/hw/usnic
2772
2773 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2774 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2775 L:      netdev@vger.kernel.org
2776 S:      Maintained
2777 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2778
2779 CIRRUS LOGIC AUDIO CODEC DRIVERS
2780 M:      Brian Austin <brian.austin@cirrus.com>
2781 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2782 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2783 S:      Maintained
2784 F:      sound/soc/codecs/cs*
2785
2786 CLEANCACHE API
2787 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2788 L:      linux-kernel@vger.kernel.org
2789 S:      Maintained
2790 F:      mm/cleancache.c
2791 F:      include/linux/cleancache.h
2792
2793 CLK API
2794 M:      Russell King <linux@arm.linux.org.uk>
2795 L:      linux-clk@vger.kernel.org
2796 S:      Maintained
2797 F:      include/linux/clk.h
2798
2799 CLOCKSOURCE, CLOCKEVENT DRIVERS
2800 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2801 M:      Thomas Gleixner <tglx@linutronix.de>
2802 L:      linux-kernel@vger.kernel.org
2803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2804 S:      Supported
2805 F:      drivers/clocksource
2806
2807 CISCO FCOE HBA DRIVER
2808 M:      Hiral Patel <hiralpat@cisco.com>
2809 M:      Suma Ramars <sramars@cisco.com>
2810 M:      Brian Uchino <buchino@cisco.com>
2811 L:      linux-scsi@vger.kernel.org
2812 S:      Supported
2813 F:      drivers/scsi/fnic/
2814
2815 CISCO SCSI HBA DRIVER
2816 M:      Narsimhulu Musini <nmusini@cisco.com>
2817 M:      Sesidhar Baddela <sebaddel@cisco.com>
2818 L:      linux-scsi@vger.kernel.org
2819 S:      Supported
2820 F:      drivers/scsi/snic/
2821
2822 CMPC ACPI DRIVER
2823 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2824 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2825 L:      platform-driver-x86@vger.kernel.org
2826 S:      Supported
2827 F:      drivers/platform/x86/classmate-laptop.c
2828
2829 COBALT MEDIA DRIVER
2830 M:      Hans Verkuil <hans.verkuil@cisco.com>
2831 L:      linux-media@vger.kernel.org
2832 T:      git git://linuxtv.org/media_tree.git
2833 W:      http://linuxtv.org
2834 S:      Supported
2835 F:      drivers/media/pci/cobalt/
2836
2837 COCCINELLE/Semantic Patches (SmPL)
2838 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2839 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2840 M:      Nicolas Palix <nicolas.palix@imag.fr>
2841 M:      Michal Marek <mmarek@suse.com>
2842 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2844 W:      http://coccinelle.lip6.fr/
2845 S:      Supported
2846 F:      Documentation/coccinelle.txt
2847 F:      scripts/coccinelle/
2848 F:      scripts/coccicheck
2849
2850 CODA FILE SYSTEM
2851 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2852 M:      coda@cs.cmu.edu
2853 L:      codalist@coda.cs.cmu.edu
2854 W:      http://www.coda.cs.cmu.edu/
2855 S:      Maintained
2856 F:      Documentation/filesystems/coda.txt
2857 F:      fs/coda/
2858 F:      include/linux/coda*.h
2859 F:      include/uapi/linux/coda*.h
2860
2861 CODA V4L2 MEM2MEM DRIVER
2862 M:      Philipp Zabel <p.zabel@pengutronix.de>
2863 L:      linux-media@vger.kernel.org
2864 S:      Maintained
2865 F:      Documentation/devicetree/bindings/media/coda.txt
2866 F:      drivers/media/platform/coda/
2867
2868 COMMON CLK FRAMEWORK
2869 M:      Michael Turquette <mturquette@baylibre.com>
2870 M:      Stephen Boyd <sboyd@codeaurora.org>
2871 L:      linux-clk@vger.kernel.org
2872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2873 S:      Maintained
2874 F:      drivers/clk/
2875 X:      drivers/clk/clkdev.c
2876 F:      include/linux/clk-pr*
2877 F:      include/linux/clk/
2878
2879 COMMON INTERNET FILE SYSTEM (CIFS)
2880 M:      Steve French <sfrench@samba.org>
2881 L:      linux-cifs@vger.kernel.org
2882 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2883 W:      http://linux-cifs.samba.org/
2884 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2885 S:      Supported
2886 F:      Documentation/filesystems/cifs/
2887 F:      fs/cifs/
2888
2889 COMPACTPCI HOTPLUG CORE
2890 M:      Scott Murray <scott@spiteful.org>
2891 L:      linux-pci@vger.kernel.org
2892 S:      Maintained
2893 F:      drivers/pci/hotplug/cpci_hotplug*
2894
2895 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2896 M:      Scott Murray <scott@spiteful.org>
2897 L:      linux-pci@vger.kernel.org
2898 S:      Maintained
2899 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2900
2901 COMPACTPCI HOTPLUG GENERIC DRIVER
2902 M:      Scott Murray <scott@spiteful.org>
2903 L:      linux-pci@vger.kernel.org
2904 S:      Maintained
2905 F:      drivers/pci/hotplug/cpcihp_generic.c
2906
2907 COMPAL LAPTOP SUPPORT
2908 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2909 L:      platform-driver-x86@vger.kernel.org
2910 S:      Maintained
2911 F:      drivers/platform/x86/compal-laptop.c
2912
2913 CONEXANT ACCESSRUNNER USB DRIVER
2914 M:      Simon Arlott <cxacru@fire.lp0.eu>
2915 L:      accessrunner-general@lists.sourceforge.net
2916 W:      http://accessrunner.sourceforge.net/
2917 S:      Maintained
2918 F:      drivers/usb/atm/cxacru.c
2919
2920 CONFIGFS
2921 M:      Joel Becker <jlbec@evilplan.org>
2922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2923 S:      Supported
2924 F:      fs/configfs/
2925 F:      include/linux/configfs.h
2926
2927 CONNECTOR
2928 M:      Evgeniy Polyakov <zbr@ioremap.net>
2929 L:      netdev@vger.kernel.org
2930 S:      Maintained
2931 F:      drivers/connector/
2932
2933 CONTROL GROUP (CGROUP)
2934 M:      Tejun Heo <tj@kernel.org>
2935 M:      Li Zefan <lizefan@huawei.com>
2936 M:      Johannes Weiner <hannes@cmpxchg.org>
2937 L:      cgroups@vger.kernel.org
2938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2939 S:      Maintained
2940 F:      Documentation/cgroups/
2941 F:      include/linux/cgroup*
2942 F:      kernel/cgroup*
2943
2944 CONTROL GROUP - CPUSET
2945 M:      Li Zefan <lizefan@huawei.com>
2946 L:      cgroups@vger.kernel.org
2947 W:      http://www.bullopensource.org/cpuset/
2948 W:      http://oss.sgi.com/projects/cpusets/
2949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2950 S:      Maintained
2951 F:      Documentation/cgroups/cpusets.txt
2952 F:      include/linux/cpuset.h
2953 F:      kernel/cpuset.c
2954
2955 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2956 M:      Johannes Weiner <hannes@cmpxchg.org>
2957 M:      Michal Hocko <mhocko@kernel.org>
2958 L:      cgroups@vger.kernel.org
2959 L:      linux-mm@kvack.org
2960 S:      Maintained
2961 F:      mm/memcontrol.c
2962 F:      mm/swap_cgroup.c
2963
2964 CORETEMP HARDWARE MONITORING DRIVER
2965 M:      Fenghua Yu <fenghua.yu@intel.com>
2966 L:      lm-sensors@lm-sensors.org
2967 S:      Maintained
2968 F:      Documentation/hwmon/coretemp
2969 F:      drivers/hwmon/coretemp.c
2970
2971 COSA/SRP SYNC SERIAL DRIVER
2972 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2973 W:      http://www.fi.muni.cz/~kas/cosa/
2974 S:      Maintained
2975 F:      drivers/net/wan/cosa*
2976
2977 CPMAC ETHERNET DRIVER
2978 M:      Florian Fainelli <florian@openwrt.org>
2979 L:      netdev@vger.kernel.org
2980 S:      Maintained
2981 F:      drivers/net/ethernet/ti/cpmac.c
2982
2983 CPU FREQUENCY DRIVERS
2984 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2985 M:      Viresh Kumar <viresh.kumar@linaro.org>
2986 L:      linux-pm@vger.kernel.org
2987 S:      Maintained
2988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2989 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2990 F:      drivers/cpufreq/
2991 F:      include/linux/cpufreq.h
2992
2993 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2994 M:      Viresh Kumar <viresh.kumar@linaro.org>
2995 M:      Sudeep Holla <sudeep.holla@arm.com>
2996 L:      linux-pm@vger.kernel.org
2997 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2998 S:      Maintained
2999 F:      drivers/cpufreq/arm_big_little.h
3000 F:      drivers/cpufreq/arm_big_little.c
3001 F:      drivers/cpufreq/arm_big_little_dt.c
3002
3003 CPUIDLE DRIVER - ARM BIG LITTLE
3004 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3005 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3006 L:      linux-pm@vger.kernel.org
3007 L:      linux-arm-kernel@lists.infradead.org
3008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3009 S:      Maintained
3010 F:      drivers/cpuidle/cpuidle-big_little.c
3011
3012 CPUIDLE DRIVER - ARM EXYNOS
3013 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3014 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3015 M:      Kukjin Kim <kgene@kernel.org>
3016 L:      linux-pm@vger.kernel.org
3017 L:      linux-samsung-soc@vger.kernel.org
3018 S:      Supported
3019 F:      drivers/cpuidle/cpuidle-exynos.c
3020 F:      arch/arm/mach-exynos/pm.c
3021
3022 CPUIDLE DRIVERS
3023 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3024 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3025 L:      linux-pm@vger.kernel.org
3026 S:      Maintained
3027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3028 F:      drivers/cpuidle/*
3029 F:      include/linux/cpuidle.h
3030
3031 CPUID/MSR DRIVER
3032 M:      "H. Peter Anvin" <hpa@zytor.com>
3033 S:      Maintained
3034 F:      arch/x86/kernel/cpuid.c
3035 F:      arch/x86/kernel/msr.c
3036
3037 CPU POWER MONITORING SUBSYSTEM
3038 M:      Thomas Renninger <trenn@suse.com>
3039 L:      linux-pm@vger.kernel.org
3040 S:      Maintained
3041 F:      tools/power/cpupower/
3042
3043 CRAMFS FILESYSTEM
3044 W:      http://sourceforge.net/projects/cramfs/
3045 S:      Orphan / Obsolete
3046 F:      Documentation/filesystems/cramfs.txt
3047 F:      fs/cramfs/
3048
3049 CRIS PORT
3050 M:      Mikael Starvik <starvik@axis.com>
3051 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3052 L:      linux-cris-kernel@axis.com
3053 W:      http://developer.axis.com
3054 S:      Maintained
3055 F:      arch/cris/
3056 F:      drivers/tty/serial/crisv10.*
3057
3058 CRYPTO API
3059 M:      Herbert Xu <herbert@gondor.apana.org.au>
3060 M:      "David S. Miller" <davem@davemloft.net>
3061 L:      linux-crypto@vger.kernel.org
3062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3063 S:      Maintained
3064 F:      Documentation/crypto/
3065 F:      Documentation/DocBook/crypto-API.tmpl
3066 F:      arch/*/crypto/
3067 F:      crypto/
3068 F:      drivers/crypto/
3069 F:      include/crypto/
3070
3071 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3072 M:      Neil Horman <nhorman@tuxdriver.com>
3073 L:      linux-crypto@vger.kernel.org
3074 S:      Maintained
3075 F:      crypto/ansi_cprng.c
3076 F:      crypto/rng.c
3077
3078 CS5535 Audio ALSA driver
3079 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3080 S:      Maintained
3081 F:      sound/pci/cs5535audio/
3082
3083 CW1200 WLAN driver
3084 M:      Solomon Peachy <pizza@shaftnet.org>
3085 S:      Maintained
3086 F:      drivers/net/wireless/cw1200/
3087
3088 CX18 VIDEO4LINUX DRIVER
3089 M:      Andy Walls <awalls@md.metrocast.net>
3090 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3091 L:      linux-media@vger.kernel.org
3092 T:      git git://linuxtv.org/media_tree.git
3093 W:      http://linuxtv.org
3094 W:      http://www.ivtvdriver.org/index.php/Cx18
3095 S:      Maintained
3096 F:      Documentation/video4linux/cx18.txt
3097 F:      drivers/media/pci/cx18/
3098 F:      include/uapi/linux/ivtv*
3099
3100 CX2341X MPEG ENCODER HELPER MODULE
3101 M:      Hans Verkuil <hverkuil@xs4all.nl>
3102 L:      linux-media@vger.kernel.org
3103 T:      git git://linuxtv.org/media_tree.git
3104 W:      http://linuxtv.org
3105 S:      Maintained
3106 F:      drivers/media/common/cx2341x*
3107 F:      include/media/cx2341x*
3108
3109 CX24120 MEDIA DRIVER
3110 M:      Jemma Denson <jdenson@gmail.com>
3111 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3112 L:      linux-media@vger.kernel.org
3113 W:      http://linuxtv.org/
3114 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3115 S:      Maintained
3116 F:      drivers/media/dvb-frontends/cx24120*
3117
3118 CX88 VIDEO4LINUX DRIVER
3119 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3120 L:      linux-media@vger.kernel.org
3121 W:      http://linuxtv.org
3122 T:      git git://linuxtv.org/media_tree.git
3123 S:      Odd fixes
3124 F:      Documentation/video4linux/cx88/
3125 F:      drivers/media/pci/cx88/
3126
3127 CXD2820R MEDIA DRIVER
3128 M:      Antti Palosaari <crope@iki.fi>
3129 L:      linux-media@vger.kernel.org
3130 W:      http://linuxtv.org/
3131 W:      http://palosaari.fi/linux/
3132 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3133 T:      git git://linuxtv.org/anttip/media_tree.git
3134 S:      Maintained
3135 F:      drivers/media/dvb-frontends/cxd2820r*
3136
3137 CXGB3 ETHERNET DRIVER (CXGB3)
3138 M:      Santosh Raspatur <santosh@chelsio.com>
3139 L:      netdev@vger.kernel.org
3140 W:      http://www.chelsio.com
3141 S:      Supported
3142 F:      drivers/net/ethernet/chelsio/cxgb3/
3143
3144 CXGB3 ISCSI DRIVER (CXGB3I)
3145 M:      Karen Xie <kxie@chelsio.com>
3146 L:      linux-scsi@vger.kernel.org
3147 W:      http://www.chelsio.com
3148 S:      Supported
3149 F:      drivers/scsi/cxgbi/cxgb3i
3150
3151 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3152 M:      Steve Wise <swise@chelsio.com>
3153 L:      linux-rdma@vger.kernel.org
3154 W:      http://www.openfabrics.org
3155 S:      Supported
3156 F:      drivers/infiniband/hw/cxgb3/
3157
3158 CXGB4 ETHERNET DRIVER (CXGB4)
3159 M:      Hariprasad S <hariprasad@chelsio.com>
3160 L:      netdev@vger.kernel.org
3161 W:      http://www.chelsio.com
3162 S:      Supported
3163 F:      drivers/net/ethernet/chelsio/cxgb4/
3164
3165 CXGB4 ISCSI DRIVER (CXGB4I)
3166 M:      Karen Xie <kxie@chelsio.com>
3167 L:      linux-scsi@vger.kernel.org
3168 W:      http://www.chelsio.com
3169 S:      Supported
3170 F:      drivers/scsi/cxgbi/cxgb4i
3171
3172 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3173 M:      Steve Wise <swise@chelsio.com>
3174 L:      linux-rdma@vger.kernel.org
3175 W:      http://www.openfabrics.org
3176 S:      Supported
3177 F:      drivers/infiniband/hw/cxgb4/
3178
3179 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3180 M:      Casey Leedom <leedom@chelsio.com>
3181 L:      netdev@vger.kernel.org
3182 W:      http://www.chelsio.com
3183 S:      Supported
3184 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3185
3186 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3187 M:      Ian Munsie <imunsie@au1.ibm.com>
3188 M:      Michael Neuling <mikey@neuling.org>
3189 L:      linuxppc-dev@lists.ozlabs.org
3190 S:      Supported
3191 F:      drivers/misc/cxl/
3192 F:      include/misc/cxl*
3193 F:      include/uapi/misc/cxl.h
3194 F:      Documentation/powerpc/cxl.txt
3195 F:      Documentation/powerpc/cxl.txt
3196 F:      Documentation/ABI/testing/sysfs-class-cxl
3197
3198 STMMAC ETHERNET DRIVER
3199 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3200 L:      netdev@vger.kernel.org
3201 W:      http://www.stlinux.com
3202 S:      Supported
3203 F:      drivers/net/ethernet/stmicro/stmmac/
3204
3205 CYBERPRO FB DRIVER
3206 M:      Russell King <linux@arm.linux.org.uk>
3207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3208 W:      http://www.arm.linux.org.uk/
3209 S:      Maintained
3210 F:      drivers/video/fbdev/cyber2000fb.*
3211
3212 CYCLADES ASYNC MUX DRIVER
3213 W:      http://www.cyclades.com/
3214 S:      Orphan
3215 F:      drivers/tty/cyclades.c
3216 F:      include/linux/cyclades.h
3217 F:      include/uapi/linux/cyclades.h
3218
3219 CYCLADES PC300 DRIVER
3220 W:      http://www.cyclades.com/
3221 S:      Orphan
3222 F:      drivers/net/wan/pc300*
3223
3224 CYPRESS_FIRMWARE MEDIA DRIVER
3225 M:      Antti Palosaari <crope@iki.fi>
3226 L:      linux-media@vger.kernel.org
3227 W:      http://linuxtv.org/
3228 W:      http://palosaari.fi/linux/
3229 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3230 T:      git git://linuxtv.org/anttip/media_tree.git
3231 S:      Maintained
3232 F:      drivers/media/common/cypress_firmware*
3233
3234 CYTTSP TOUCHSCREEN DRIVER
3235 M:      Ferruh Yigit <fery@cypress.com>
3236 L:      linux-input@vger.kernel.org
3237 S:      Supported
3238 F:      drivers/input/touchscreen/cyttsp*
3239 F:      include/linux/input/cyttsp.h
3240
3241 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3242 M:      Joshua Kinard <kumba@gentoo.org>
3243 S:      Maintained
3244 F:      drivers/rtc/rtc-ds1685.c
3245 F:      include/linux/rtc/ds1685.h
3246
3247 DAMA SLAVE for AX.25
3248 M:      Joerg Reuter <jreuter@yaina.de>
3249 W:      http://yaina.de/jreuter/
3250 W:      http://www.qsl.net/dl1bke/
3251 L:      linux-hams@vger.kernel.org
3252 S:      Maintained
3253 F:      net/ax25/af_ax25.c
3254 F:      net/ax25/ax25_dev.c
3255 F:      net/ax25/ax25_ds_*
3256 F:      net/ax25/ax25_in.c
3257 F:      net/ax25/ax25_out.c
3258 F:      net/ax25/ax25_timer.c
3259 F:      net/ax25/sysctl_net_ax25.c
3260
3261 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3262 L:      netdev@vger.kernel.org
3263 S:      Orphan
3264 F:      Documentation/networking/dmfe.txt
3265 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3266
3267 DC390/AM53C974 SCSI driver
3268 M:      Hannes Reinecke <hare@suse.com>
3269 L:      linux-scsi@vger.kernel.org
3270 S:      Maintained
3271 F:      drivers/scsi/am53c974.c
3272
3273 DC395x SCSI driver
3274 M:      Oliver Neukum <oliver@neukum.org>
3275 M:      Ali Akcaagac <aliakc@web.de>
3276 M:      Jamie Lenehan <lenehan@twibble.org>
3277 L:      dc395x@twibble.org
3278 W:      http://twibble.org/dist/dc395x/
3279 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3280 S:      Maintained
3281 F:      Documentation/scsi/dc395x.txt
3282 F:      drivers/scsi/dc395x.*
3283
3284 DCCP PROTOCOL
3285 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3286 L:      dccp@vger.kernel.org
3287 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3288 S:      Maintained
3289 F:      include/linux/dccp.h
3290 F:      include/uapi/linux/dccp.h
3291 F:      include/linux/tfrc.h
3292 F:      net/dccp/
3293
3294 DECnet NETWORK LAYER
3295 W:      http://linux-decnet.sourceforge.net
3296 L:      linux-decnet-user@lists.sourceforge.net
3297 S:      Orphan
3298 F:      Documentation/networking/decnet.txt
3299 F:      net/decnet/
3300
3301 DECSTATION PLATFORM SUPPORT
3302 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3303 L:      linux-mips@linux-mips.org
3304 W:      http://www.linux-mips.org/wiki/DECstation
3305 S:      Maintained
3306 F:      arch/mips/dec/
3307 F:      arch/mips/include/asm/dec/
3308 F:      arch/mips/include/asm/mach-dec/
3309
3310 DEFXX FDDI NETWORK DRIVER
3311 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3312 S:      Maintained
3313 F:      drivers/net/fddi/defxx.*
3314
3315 DELL LAPTOP DRIVER
3316 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3317 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3318 L:      platform-driver-x86@vger.kernel.org
3319 S:      Maintained
3320 F:      drivers/platform/x86/dell-laptop.c
3321
3322 DELL LAPTOP RBTN DRIVER
3323 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3324 S:      Maintained
3325 F:      drivers/platform/x86/dell-rbtn.*
3326
3327 DELL LAPTOP FREEFALL DRIVER
3328 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3329 S:      Maintained
3330 F:      drivers/platform/x86/dell-smo8800.c
3331
3332 DELL LAPTOP SMM DRIVER
3333 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3334 S:      Maintained
3335 F:      drivers/hwmon/dell-smm-hwmon.c
3336 F:      include/uapi/linux/i8k.h
3337
3338 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3339 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3340 S:      Maintained
3341 F:      Documentation/dcdbas.txt
3342 F:      drivers/firmware/dcdbas.*
3343
3344 DELL WMI EXTRAS DRIVER
3345 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3346 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3347 S:      Maintained
3348 F:      drivers/platform/x86/dell-wmi.c
3349
3350 DESIGNWARE USB2 DRD IP DRIVER
3351 M:      John Youn <johnyoun@synopsys.com>
3352 L:      linux-usb@vger.kernel.org
3353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3354 S:      Maintained
3355 F:      drivers/usb/dwc2/
3356
3357 DESIGNWARE USB3 DRD IP DRIVER
3358 M:      Felipe Balbi <balbi@ti.com>
3359 L:      linux-usb@vger.kernel.org
3360 L:      linux-omap@vger.kernel.org
3361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3362 S:      Maintained
3363 F:      drivers/usb/dwc3/
3364
3365 DEVICE COREDUMP (DEV_COREDUMP)
3366 M:      Johannes Berg <johannes@sipsolutions.net>
3367 L:      linux-kernel@vger.kernel.org
3368 S:      Maintained
3369 F:      drivers/base/devcoredump.c
3370 F:      include/linux/devcoredump.h
3371
3372 DEVICE FREQUENCY (DEVFREQ)
3373 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3374 M:      Kyungmin Park <kyungmin.park@samsung.com>
3375 L:      linux-pm@vger.kernel.org
3376 S:      Maintained
3377 F:      drivers/devfreq/
3378
3379 DEVICE NUMBER REGISTRY
3380 M:      Torben Mathiasen <device@lanana.org>
3381 W:      http://lanana.org/docs/device-list/index.html
3382 S:      Maintained
3383
3384 DEVICE-MAPPER  (LVM)
3385 M:      Alasdair Kergon <agk@redhat.com>
3386 M:      Mike Snitzer <snitzer@redhat.com>
3387 M:      dm-devel@redhat.com
3388 L:      dm-devel@redhat.com
3389 W:      http://sources.redhat.com/dm
3390 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3392 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3393 S:      Maintained
3394 F:      Documentation/device-mapper/
3395 F:      drivers/md/dm*
3396 F:      drivers/md/persistent-data/
3397 F:      include/linux/device-mapper.h
3398 F:      include/linux/dm-*.h
3399 F:      include/uapi/linux/dm-*.h
3400
3401 DIALOG SEMICONDUCTOR DRIVERS
3402 M:      Support Opensource <support.opensource@diasemi.com>
3403 W:      http://www.dialog-semiconductor.com/products
3404 S:      Supported
3405 F:      Documentation/hwmon/da90??
3406 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3407 F:      drivers/gpio/gpio-da90??.c
3408 F:      drivers/hwmon/da90??-hwmon.c
3409 F:      drivers/iio/adc/da91??-*.c
3410 F:      drivers/input/misc/da90??_onkey.c
3411 F:      drivers/input/touchscreen/da9052_tsi.c
3412 F:      drivers/leds/leds-da90??.c
3413 F:      drivers/mfd/da903x.c
3414 F:      drivers/mfd/da90??-*.c
3415 F:      drivers/mfd/da91??-*.c
3416 F:      drivers/power/da9052-battery.c
3417 F:      drivers/power/da91??-*.c
3418 F:      drivers/regulator/da903x.c
3419 F:      drivers/regulator/da9???-regulator.[ch]
3420 F:      drivers/rtc/rtc-da90??.c
3421 F:      drivers/video/backlight/da90??_bl.c
3422 F:      drivers/watchdog/da90??_wdt.c
3423 F:      include/linux/mfd/da903x.h
3424 F:      include/linux/mfd/da9052/
3425 F:      include/linux/mfd/da9055/
3426 F:      include/linux/mfd/da9063/
3427 F:      include/linux/mfd/da9150/
3428 F:      include/sound/da[79]*.h
3429 F:      sound/soc/codecs/da[79]*.[ch]
3430
3431 DIGI NEO AND CLASSIC PCI PRODUCTS
3432 M:      Lidza Louina <lidza.louina@gmail.com>
3433 M:      Mark Hounschell <markh@compro.net>
3434 L:      driverdev-devel@linuxdriverproject.org
3435 S:      Maintained
3436 F:      drivers/staging/dgnc/
3437
3438 DIGI EPCA PCI PRODUCTS
3439 M:      Lidza Louina <lidza.louina@gmail.com>
3440 M:      Daeseok Youn <daeseok.youn@gmail.com>
3441 L:      driverdev-devel@linuxdriverproject.org
3442 S:      Maintained
3443 F:      drivers/staging/dgap/
3444
3445 DIOLAN U2C-12 I2C DRIVER
3446 M:      Guenter Roeck <linux@roeck-us.net>
3447 L:      linux-i2c@vger.kernel.org
3448 S:      Maintained
3449 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3450
3451 DIRECT ACCESS (DAX)
3452 M:      Matthew Wilcox <willy@linux.intel.com>
3453 L:      linux-fsdevel@vger.kernel.org
3454 S:      Supported
3455 F:      fs/dax.c
3456
3457 DIRECTORY NOTIFICATION (DNOTIFY)
3458 M:      Eric Paris <eparis@parisplace.org>
3459 S:      Maintained
3460 F:      Documentation/filesystems/dnotify.txt
3461 F:      fs/notify/dnotify/
3462 F:      include/linux/dnotify.h
3463
3464 DISK GEOMETRY AND PARTITION HANDLING
3465 M:      Andries Brouwer <aeb@cwi.nl>
3466 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3467 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3468 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3469 S:      Maintained
3470
3471 DISKQUOTA
3472 M:      Jan Kara <jack@suse.com>
3473 S:      Maintained
3474 F:      Documentation/filesystems/quota.txt
3475 F:      fs/quota/
3476 F:      include/linux/quota*.h
3477 F:      include/uapi/linux/quota*.h
3478
3479 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3480 M:      Bernie Thompson <bernie@plugable.com>
3481 L:      linux-fbdev@vger.kernel.org
3482 S:      Maintained
3483 W:      http://plugable.com/category/projects/udlfb/
3484 F:      drivers/video/fbdev/udlfb.c
3485 F:      include/video/udlfb.h
3486 F:      Documentation/fb/udlfb.txt
3487
3488 DISTRIBUTED LOCK MANAGER (DLM)
3489 M:      Christine Caulfield <ccaulfie@redhat.com>
3490 M:      David Teigland <teigland@redhat.com>
3491 L:      cluster-devel@redhat.com
3492 W:      http://sources.redhat.com/cluster/
3493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3494 S:      Supported
3495 F:      fs/dlm/
3496
3497 DMA BUFFER SHARING FRAMEWORK
3498 M:      Sumit Semwal <sumit.semwal@linaro.org>
3499 S:      Maintained
3500 L:      linux-media@vger.kernel.org
3501 L:      dri-devel@lists.freedesktop.org
3502 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3503 F:      drivers/dma-buf/
3504 F:      include/linux/dma-buf*
3505 F:      include/linux/reservation.h
3506 F:      include/linux/*fence.h
3507 F:      Documentation/dma-buf-sharing.txt
3508 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3509
3510 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3511 M:      Vinod Koul <vinod.koul@intel.com>
3512 L:      dmaengine@vger.kernel.org
3513 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3514 S:      Maintained
3515 F:      drivers/dma/
3516 F:      include/linux/dmaengine.h
3517 F:      Documentation/dmaengine/
3518 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3519
3520 DME1737 HARDWARE MONITOR DRIVER
3521 M:      Juerg Haefliger <juergh@gmail.com>
3522 L:      lm-sensors@lm-sensors.org
3523 S:      Maintained
3524 F:      Documentation/hwmon/dme1737
3525 F:      drivers/hwmon/dme1737.c
3526
3527 DMI/SMBIOS SUPPORT
3528 M:      Jean Delvare <jdelvare@suse.com>
3529 S:      Maintained
3530 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3531 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3532 F:      drivers/firmware/dmi-id.c
3533 F:      drivers/firmware/dmi_scan.c
3534 F:      include/linux/dmi.h
3535
3536 DOCUMENTATION
3537 M:      Jonathan Corbet <corbet@lwn.net>
3538 L:      linux-doc@vger.kernel.org
3539 S:      Maintained
3540 F:      Documentation/
3541 X:      Documentation/ABI/
3542 X:      Documentation/devicetree/
3543 X:      Documentation/acpi
3544 X:      Documentation/power
3545 X:      Documentation/spi
3546 X:      Documentation/DocBook/media
3547 T:      git git://git.lwn.net/linux-2.6.git docs-next
3548
3549 DOUBLETALK DRIVER
3550 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3551 L:      blinux-list@redhat.com
3552 S:      Maintained
3553 F:      drivers/char/dtlk.c
3554 F:      include/linux/dtlk.h
3555
3556 DPT_I2O SCSI RAID DRIVER
3557 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3558 L:      linux-scsi@vger.kernel.org
3559 W:      http://www.adaptec.com/
3560 S:      Maintained
3561 F:      drivers/scsi/dpt*
3562 F:      drivers/scsi/dpt/
3563
3564 DRBD DRIVER
3565 P:      Philipp Reisner
3566 P:      Lars Ellenberg
3567 M:      drbd-dev@lists.linbit.com
3568 L:      drbd-user@lists.linbit.com
3569 W:      http://www.drbd.org
3570 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3571 T:      git git://git.drbd.org/drbd-8.3.git
3572 S:      Supported
3573 F:      drivers/block/drbd/
3574 F:      lib/lru_cache.c
3575 F:      Documentation/blockdev/drbd/
3576
3577 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3578 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3580 S:      Supported
3581 F:      Documentation/kobject.txt
3582 F:      drivers/base/
3583 F:      fs/debugfs/
3584 F:      fs/kernfs/
3585 F:      fs/sysfs/
3586 F:      include/linux/debugfs.h
3587 F:      include/linux/kobj*
3588 F:      lib/kobj*
3589
3590 DRM DRIVERS
3591 M:      David Airlie <airlied@linux.ie>
3592 L:      dri-devel@lists.freedesktop.org
3593 T:      git git://people.freedesktop.org/~airlied/linux
3594 S:      Maintained
3595 F:      drivers/gpu/drm/
3596 F:      drivers/gpu/vga/
3597 F:      include/drm/
3598 F:      include/uapi/drm/
3599
3600 RADEON DRM DRIVERS
3601 M:      Alex Deucher <alexander.deucher@amd.com>
3602 M:      Christian König <christian.koenig@amd.com>
3603 L:      dri-devel@lists.freedesktop.org
3604 T:      git git://people.freedesktop.org/~agd5f/linux
3605 S:      Supported
3606 F:      drivers/gpu/drm/radeon/
3607 F:      include/uapi/drm/radeon*
3608
3609 DRM PANEL DRIVERS
3610 M:      Thierry Reding <thierry.reding@gmail.com>
3611 L:      dri-devel@lists.freedesktop.org
3612 T:      git git://anongit.freedesktop.org/tegra/linux.git
3613 S:      Maintained
3614 F:      drivers/gpu/drm/drm_panel.c
3615 F:      drivers/gpu/drm/panel/
3616 F:      include/drm/drm_panel.h
3617 F:      Documentation/devicetree/bindings/panel/
3618
3619 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3620 M:      Daniel Vetter <daniel.vetter@intel.com>
3621 M:      Jani Nikula <jani.nikula@linux.intel.com>
3622 L:      intel-gfx@lists.freedesktop.org
3623 L:      dri-devel@lists.freedesktop.org
3624 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3625 T:      git git://anongit.freedesktop.org/drm-intel
3626 S:      Supported
3627 F:      drivers/gpu/drm/i915/
3628 F:      include/drm/i915*
3629 F:      include/uapi/drm/i915*
3630
3631 DRM DRIVERS FOR ATMEL HLCDC
3632 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3633 L:      dri-devel@lists.freedesktop.org
3634 S:      Supported
3635 F:      drivers/gpu/drm/atmel-hlcdc/
3636 F:      Documentation/devicetree/bindings/drm/atmel/
3637
3638 DRM DRIVERS FOR EXYNOS
3639 M:      Inki Dae <inki.dae@samsung.com>
3640 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3641 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3642 M:      Kyungmin Park <kyungmin.park@samsung.com>
3643 L:      dri-devel@lists.freedesktop.org
3644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3645 S:      Supported
3646 F:      drivers/gpu/drm/exynos/
3647 F:      include/drm/exynos*
3648 F:      include/uapi/drm/exynos*
3649
3650 DRM DRIVERS FOR FREESCALE DCU
3651 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3652 M:      Alison Wang <alison.wang@freescale.com>
3653 L:      dri-devel@lists.freedesktop.org
3654 S:      Supported
3655 F:      drivers/gpu/drm/fsl-dcu/
3656 F:      Documentation/devicetree/bindings/video/fsl,dcu.txt
3657 F:      Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3658
3659 DRM DRIVERS FOR FREESCALE IMX
3660 M:      Philipp Zabel <p.zabel@pengutronix.de>
3661 L:      dri-devel@lists.freedesktop.org
3662 S:      Maintained
3663 F:      drivers/gpu/drm/imx/
3664 F:      Documentation/devicetree/bindings/drm/imx/
3665
3666 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3667 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3668 L:      dri-devel@lists.freedesktop.org
3669 T:      git git://github.com/patjak/drm-gma500
3670 S:      Maintained
3671 F:      drivers/gpu/drm/gma500
3672 F:      include/drm/gma500*
3673
3674 DRM DRIVERS FOR NVIDIA TEGRA
3675 M:      Thierry Reding <thierry.reding@gmail.com>
3676 M:      Terje Bergström <tbergstrom@nvidia.com>
3677 L:      dri-devel@lists.freedesktop.org
3678 L:      linux-tegra@vger.kernel.org
3679 T:      git git://anongit.freedesktop.org/tegra/linux.git
3680 S:      Supported
3681 F:      drivers/gpu/drm/tegra/
3682 F:      drivers/gpu/host1x/
3683 F:      include/linux/host1x.h
3684 F:      include/uapi/drm/tegra_drm.h
3685 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3686
3687 DRM DRIVERS FOR RENESAS
3688 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3689 L:      dri-devel@lists.freedesktop.org
3690 L:      linux-sh@vger.kernel.org
3691 T:      git git://people.freedesktop.org/~airlied/linux
3692 S:      Supported
3693 F:      drivers/gpu/drm/rcar-du/
3694 F:      drivers/gpu/drm/shmobile/
3695 F:      include/linux/platform_data/shmob_drm.h
3696
3697 DRM DRIVERS FOR ROCKCHIP
3698 M:      Mark Yao <mark.yao@rock-chips.com>
3699 L:      dri-devel@lists.freedesktop.org
3700 S:      Maintained
3701 F:      drivers/gpu/drm/rockchip/
3702 F:      Documentation/devicetree/bindings/video/rockchip*
3703
3704 DRM DRIVERS FOR STI
3705 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3706 M:      Vincent Abriou <vincent.abriou@st.com>
3707 L:      dri-devel@lists.freedesktop.org
3708 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3709 S:      Maintained
3710 F:      drivers/gpu/drm/sti
3711 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3712
3713 DSBR100 USB FM RADIO DRIVER
3714 M:      Alexey Klimov <klimov.linux@gmail.com>
3715 L:      linux-media@vger.kernel.org
3716 T:      git git://linuxtv.org/media_tree.git
3717 S:      Maintained
3718 F:      drivers/media/radio/dsbr100.c
3719
3720 DSCC4 DRIVER
3721 M:      Francois Romieu <romieu@fr.zoreil.com>
3722 L:      netdev@vger.kernel.org
3723 S:      Maintained
3724 F:      drivers/net/wan/dscc4.c
3725
3726 DT3155 MEDIA DRIVER
3727 M:      Hans Verkuil <hverkuil@xs4all.nl>
3728 L:      linux-media@vger.kernel.org
3729 T:      git git://linuxtv.org/media_tree.git
3730 W:      http://linuxtv.org
3731 S:      Odd Fixes
3732 F:      drivers/media/pci/dt3155/
3733
3734 DVB_USB_AF9015 MEDIA DRIVER
3735 M:      Antti Palosaari <crope@iki.fi>
3736 L:      linux-media@vger.kernel.org
3737 W:      http://linuxtv.org/
3738 W:      http://palosaari.fi/linux/
3739 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3740 T:      git git://linuxtv.org/anttip/media_tree.git
3741 S:      Maintained
3742 F:      drivers/media/usb/dvb-usb-v2/af9015*
3743
3744 DVB_USB_AF9035 MEDIA DRIVER
3745 M:      Antti Palosaari <crope@iki.fi>
3746 L:      linux-media@vger.kernel.org
3747 W:      http://linuxtv.org/
3748 W:      http://palosaari.fi/linux/
3749 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3750 T:      git git://linuxtv.org/anttip/media_tree.git
3751 S:      Maintained
3752 F:      drivers/media/usb/dvb-usb-v2/af9035*
3753
3754 DVB_USB_ANYSEE MEDIA DRIVER
3755 M:      Antti Palosaari <crope@iki.fi>
3756 L:      linux-media@vger.kernel.org
3757 W:      http://linuxtv.org/
3758 W:      http://palosaari.fi/linux/
3759 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3760 T:      git git://linuxtv.org/anttip/media_tree.git
3761 S:      Maintained
3762 F:      drivers/media/usb/dvb-usb-v2/anysee*
3763
3764 DVB_USB_AU6610 MEDIA DRIVER
3765 M:      Antti Palosaari <crope@iki.fi>
3766 L:      linux-media@vger.kernel.org
3767 W:      http://linuxtv.org/
3768 W:      http://palosaari.fi/linux/
3769 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3770 T:      git git://linuxtv.org/anttip/media_tree.git
3771 S:      Maintained
3772 F:      drivers/media/usb/dvb-usb-v2/au6610*
3773
3774 DVB_USB_CE6230 MEDIA DRIVER
3775 M:      Antti Palosaari <crope@iki.fi>
3776 L:      linux-media@vger.kernel.org
3777 W:      http://linuxtv.org/
3778 W:      http://palosaari.fi/linux/
3779 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3780 T:      git git://linuxtv.org/anttip/media_tree.git
3781 S:      Maintained
3782 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3783
3784 DVB_USB_CXUSB MEDIA DRIVER
3785 M:      Michael Krufky <mkrufky@linuxtv.org>
3786 L:      linux-media@vger.kernel.org
3787 W:      http://linuxtv.org/
3788 W:      http://github.com/mkrufky
3789 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3790 T:      git git://linuxtv.org/media_tree.git
3791 S:      Maintained
3792 F:      drivers/media/usb/dvb-usb/cxusb*
3793
3794 DVB_USB_EC168 MEDIA DRIVER
3795 M:      Antti Palosaari <crope@iki.fi>
3796 L:      linux-media@vger.kernel.org
3797 W:      http://linuxtv.org/
3798 W:      http://palosaari.fi/linux/
3799 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3800 T:      git git://linuxtv.org/anttip/media_tree.git
3801 S:      Maintained
3802 F:      drivers/media/usb/dvb-usb-v2/ec168*
3803
3804 DVB_USB_GL861 MEDIA DRIVER
3805 M:      Antti Palosaari <crope@iki.fi>
3806 L:      linux-media@vger.kernel.org
3807 W:      http://linuxtv.org/
3808 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3809 T:      git git://linuxtv.org/anttip/media_tree.git
3810 S:      Maintained
3811 F:      drivers/media/usb/dvb-usb-v2/gl861*
3812
3813 DVB_USB_MXL111SF MEDIA DRIVER
3814 M:      Michael Krufky <mkrufky@linuxtv.org>
3815 L:      linux-media@vger.kernel.org
3816 W:      http://linuxtv.org/
3817 W:      http://github.com/mkrufky
3818 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3819 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3820 S:      Maintained
3821 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3822
3823 DVB_USB_RTL28XXU MEDIA DRIVER
3824 M:      Antti Palosaari <crope@iki.fi>
3825 L:      linux-media@vger.kernel.org
3826 W:      http://linuxtv.org/
3827 W:      http://palosaari.fi/linux/
3828 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3829 T:      git git://linuxtv.org/anttip/media_tree.git
3830 S:      Maintained
3831 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3832
3833 DVB_USB_V2 MEDIA DRIVER
3834 M:      Antti Palosaari <crope@iki.fi>
3835 L:      linux-media@vger.kernel.org
3836 W:      http://linuxtv.org/
3837 W:      http://palosaari.fi/linux/
3838 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3839 T:      git git://linuxtv.org/anttip/media_tree.git
3840 S:      Maintained
3841 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3842 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3843
3844 DYNAMIC DEBUG
3845 M:      Jason Baron <jbaron@akamai.com>
3846 S:      Maintained
3847 F:      lib/dynamic_debug.c
3848 F:      include/linux/dynamic_debug.h
3849
3850 DZ DECSTATION DZ11 SERIAL DRIVER
3851 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3852 S:      Maintained
3853 F:      drivers/tty/serial/dz.*
3854
3855 E3X0 POWER BUTTON DRIVER
3856 M:      Moritz Fischer <moritz.fischer@ettus.com>
3857 L:      usrp-users@lists.ettus.com
3858 W:      http://www.ettus.com
3859 S:      Supported
3860 F:      drivers/input/misc/e3x0-button.c
3861 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3862
3863 E4000 MEDIA DRIVER
3864 M:      Antti Palosaari <crope@iki.fi>
3865 L:      linux-media@vger.kernel.org
3866 W:      http://linuxtv.org/
3867 W:      http://palosaari.fi/linux/
3868 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3869 T:      git git://linuxtv.org/anttip/media_tree.git
3870 S:      Maintained
3871 F:      drivers/media/tuners/e4000*
3872
3873 EATA ISA/EISA/PCI SCSI DRIVER
3874 M:      Dario Ballabio <ballabio_dario@emc.com>
3875 L:      linux-scsi@vger.kernel.org
3876 S:      Maintained
3877 F:      drivers/scsi/eata.c
3878
3879 EC100 MEDIA DRIVER
3880 M:      Antti Palosaari <crope@iki.fi>
3881 L:      linux-media@vger.kernel.org
3882 W:      http://linuxtv.org/
3883 W:      http://palosaari.fi/linux/
3884 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3885 T:      git git://linuxtv.org/anttip/media_tree.git
3886 S:      Maintained
3887 F:      drivers/media/dvb-frontends/ec100*
3888
3889 ECRYPT FILE SYSTEM
3890 M:      Tyler Hicks <tyhicks@canonical.com>
3891 L:      ecryptfs@vger.kernel.org
3892 W:      http://ecryptfs.org
3893 W:      https://launchpad.net/ecryptfs
3894 S:      Supported
3895 F:      Documentation/filesystems/ecryptfs.txt
3896 F:      fs/ecryptfs/
3897
3898 EDAC-CORE
3899 M:      Doug Thompson <dougthompson@xmission.com>
3900 M:      Borislav Petkov <bp@alien8.de>
3901 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3902 L:      linux-edac@vger.kernel.org
3903 W:      bluesmoke.sourceforge.net
3904 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3905 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3906 S:      Supported
3907 F:      Documentation/edac.txt
3908 F:      drivers/edac/
3909 F:      include/linux/edac.h
3910
3911 EDAC-AMD64
3912 M:      Doug Thompson <dougthompson@xmission.com>
3913 M:      Borislav Petkov <bp@alien8.de>
3914 L:      linux-edac@vger.kernel.org
3915 W:      bluesmoke.sourceforge.net
3916 S:      Maintained
3917 F:      drivers/edac/amd64_edac*
3918
3919 EDAC-CALXEDA
3920 M:      Doug Thompson <dougthompson@xmission.com>
3921 M:      Robert Richter <rric@kernel.org>
3922 L:      linux-edac@vger.kernel.org
3923 W:      bluesmoke.sourceforge.net
3924 S:      Maintained
3925 F:      drivers/edac/highbank*
3926
3927 EDAC-CAVIUM
3928 M:      Ralf Baechle <ralf@linux-mips.org>
3929 M:      David Daney <david.daney@cavium.com>
3930 L:      linux-edac@vger.kernel.org
3931 L:      linux-mips@linux-mips.org
3932 W:      bluesmoke.sourceforge.net
3933 S:      Supported
3934 F:      drivers/edac/octeon_edac*
3935
3936 EDAC-E752X
3937 M:      Mark Gross <mark.gross@intel.com>
3938 M:      Doug Thompson <dougthompson@xmission.com>
3939 L:      linux-edac@vger.kernel.org
3940 W:      bluesmoke.sourceforge.net
3941 S:      Maintained
3942 F:      drivers/edac/e752x_edac.c
3943
3944 EDAC-E7XXX
3945 M:      Doug Thompson <dougthompson@xmission.com>
3946 L:      linux-edac@vger.kernel.org
3947 W:      bluesmoke.sourceforge.net
3948 S:      Maintained
3949 F:      drivers/edac/e7xxx_edac.c
3950
3951 EDAC-GHES
3952 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3953 L:      linux-edac@vger.kernel.org
3954 W:      bluesmoke.sourceforge.net
3955 S:      Maintained
3956 F:      drivers/edac/ghes_edac.c
3957
3958 EDAC-I82443BXGX
3959 M:      Tim Small <tim@buttersideup.com>
3960 L:      linux-edac@vger.kernel.org
3961 W:      bluesmoke.sourceforge.net
3962 S:      Maintained
3963 F:      drivers/edac/i82443bxgx_edac.c
3964
3965 EDAC-I3000
3966 M:      Jason Uhlenkott <juhlenko@akamai.com>
3967 L:      linux-edac@vger.kernel.org
3968 W:      bluesmoke.sourceforge.net
3969 S:      Maintained
3970 F:      drivers/edac/i3000_edac.c
3971
3972 EDAC-I5000
3973 M:      Doug Thompson <dougthompson@xmission.com>
3974 L:      linux-edac@vger.kernel.org
3975 W:      bluesmoke.sourceforge.net
3976 S:      Maintained
3977 F:      drivers/edac/i5000_edac.c
3978
3979 EDAC-I5400
3980 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3981 L:      linux-edac@vger.kernel.org
3982 W:      bluesmoke.sourceforge.net
3983 S:      Maintained
3984 F:      drivers/edac/i5400_edac.c
3985
3986 EDAC-I7300
3987 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3988 L:      linux-edac@vger.kernel.org
3989 W:      bluesmoke.sourceforge.net
3990 S:      Maintained
3991 F:      drivers/edac/i7300_edac.c
3992
3993 EDAC-I7CORE
3994 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3995 L:      linux-edac@vger.kernel.org
3996 W:      bluesmoke.sourceforge.net
3997 S:      Maintained
3998 F:      drivers/edac/i7core_edac.c
3999
4000 EDAC-I82975X
4001 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4002 M:      "Arvind R." <arvino55@gmail.com>
4003 L:      linux-edac@vger.kernel.org
4004 W:      bluesmoke.sourceforge.net
4005 S:      Maintained
4006 F:      drivers/edac/i82975x_edac.c
4007
4008 EDAC-IE31200
4009 M:      Jason Baron <jbaron@akamai.com>
4010 L:      linux-edac@vger.kernel.org
4011 W:      bluesmoke.sourceforge.net
4012 S:      Maintained
4013 F:      drivers/edac/ie31200_edac.c
4014
4015 EDAC-MPC85XX
4016 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4017 L:      linux-edac@vger.kernel.org
4018 W:      bluesmoke.sourceforge.net
4019 S:      Maintained
4020 F:      drivers/edac/mpc85xx_edac.[ch]
4021
4022 EDAC-PASEMI
4023 M:      Egor Martovetsky <egor@pasemi.com>
4024 L:      linux-edac@vger.kernel.org
4025 W:      bluesmoke.sourceforge.net
4026 S:      Maintained
4027 F:      drivers/edac/pasemi_edac.c
4028
4029 EDAC-R82600
4030 M:      Tim Small <tim@buttersideup.com>
4031 L:      linux-edac@vger.kernel.org
4032 W:      bluesmoke.sourceforge.net
4033 S:      Maintained
4034 F:      drivers/edac/r82600_edac.c
4035
4036 EDAC-SBRIDGE
4037 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4038 L:      linux-edac@vger.kernel.org
4039 W:      bluesmoke.sourceforge.net
4040 S:      Maintained
4041 F:      drivers/edac/sb_edac.c
4042
4043 EDAC-XGENE
4044 APPLIED MICRO (APM) X-GENE SOC EDAC
4045 M:     Loc Ho <lho@apm.com>
4046 S:     Supported
4047 F:     drivers/edac/xgene_edac.c
4048 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4049
4050 EDIROL UA-101/UA-1000 DRIVER
4051 M:      Clemens Ladisch <clemens@ladisch.de>
4052 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4053 T:      git git://git.alsa-project.org/alsa-kernel.git
4054 S:      Maintained
4055 F:      sound/usb/misc/ua101.c
4056
4057 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4058 M:      Matt Fleming <matt@codeblueprint.co.uk>
4059 L:      linux-efi@vger.kernel.org
4060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4061 S:      Maintained
4062 F:      Documentation/efi-stub.txt
4063 F:      arch/ia64/kernel/efi.c
4064 F:      arch/x86/boot/compressed/eboot.[ch]
4065 F:      arch/x86/include/asm/efi.h
4066 F:      arch/x86/platform/efi/*
4067 F:      drivers/firmware/efi/*
4068 F:      include/linux/efi*.h
4069
4070 EFI VARIABLE FILESYSTEM
4071 M:      Matthew Garrett <matthew.garrett@nebula.com>
4072 M:      Jeremy Kerr <jk@ozlabs.org>
4073 M:      Matt Fleming <matt@codeblueprint.co.uk>
4074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4075 L:      linux-efi@vger.kernel.org
4076 S:      Maintained
4077 F:      fs/efivarfs/
4078
4079 EFIFB FRAMEBUFFER DRIVER
4080 L:      linux-fbdev@vger.kernel.org
4081 M:      Peter Jones <pjones@redhat.com>
4082 S:      Maintained
4083 F:      drivers/video/fbdev/efifb.c
4084
4085 EFS FILESYSTEM
4086 W:      http://aeschi.ch.eu.org/efs/
4087 S:      Orphan
4088 F:      fs/efs/
4089
4090 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4091 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4092 M:      Christoph Raisch <raisch@de.ibm.com>
4093 L:      linux-rdma@vger.kernel.org
4094 S:      Supported
4095 F:      drivers/infiniband/hw/ehca/
4096
4097 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4098 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4099 L:      netdev@vger.kernel.org
4100 S:      Maintained
4101 F:      drivers/net/ethernet/ibm/ehea/
4102
4103 EM28XX VIDEO4LINUX DRIVER
4104 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4105 L:      linux-media@vger.kernel.org
4106 W:      http://linuxtv.org
4107 T:      git git://linuxtv.org/media_tree.git
4108 S:      Maintained
4109 F:      drivers/media/usb/em28xx/
4110
4111 EMBEDDED LINUX
4112 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4113 M:      Matt Mackall <mpm@selenic.com>
4114 M:      David Woodhouse <dwmw2@infradead.org>
4115 L:      linux-embedded@vger.kernel.org
4116 S:      Maintained
4117
4118 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4119 M:      James Smart <james.smart@avagotech.com>
4120 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4121 L:      linux-scsi@vger.kernel.org
4122 W:      http://www.avagotech.com
4123 S:      Supported
4124 F:      drivers/scsi/lpfc/
4125
4126 ENE CB710 FLASH CARD READER DRIVER
4127 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4128 S:      Maintained
4129 F:      drivers/misc/cb710/
4130 F:      drivers/mmc/host/cb710-mmc.*
4131 F:      include/linux/cb710.h
4132
4133 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4134 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4135 S:      Maintained
4136 F:      drivers/media/rc/ene_ir.*
4137
4138 ENHANCED ERROR HANDLING (EEH)
4139 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4140 L:      linuxppc-dev@lists.ozlabs.org
4141 S:      Supported
4142 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4143 F:      arch/powerpc/kernel/eeh*.c
4144
4145 EPSON S1D13XXX FRAMEBUFFER DRIVER
4146 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4147 S:      Maintained
4148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4149 F:      drivers/video/fbdev/s1d13xxxfb.c
4150 F:      include/video/s1d13xxxfb.h
4151
4152 ET131X NETWORK DRIVER
4153 M:      Mark Einon <mark.einon@gmail.com>
4154 S:      Odd Fixes
4155 F:      drivers/net/ethernet/agere/
4156
4157 ETHERNET BRIDGE
4158 M:      Stephen Hemminger <stephen@networkplumber.org>
4159 L:      bridge@lists.linux-foundation.org
4160 L:      netdev@vger.kernel.org
4161 W:      http://www.linuxfoundation.org/en/Net:Bridge
4162 S:      Maintained
4163 F:      include/linux/netfilter_bridge/
4164 F:      net/bridge/
4165
4166 ETHERNET PHY LIBRARY
4167 M:      Florian Fainelli <f.fainelli@gmail.com>
4168 L:      netdev@vger.kernel.org
4169 S:      Maintained
4170 F:      include/linux/phy.h
4171 F:      include/linux/phy_fixed.h
4172 F:      drivers/net/phy/
4173 F:      Documentation/networking/phy.txt
4174 F:      drivers/of/of_mdio.c
4175 F:      drivers/of/of_net.c
4176
4177 EXT2 FILE SYSTEM
4178 M:      Jan Kara <jack@suse.com>
4179 L:      linux-ext4@vger.kernel.org
4180 S:      Maintained
4181 F:      Documentation/filesystems/ext2.txt
4182 F:      fs/ext2/
4183 F:      include/linux/ext2*
4184
4185 EXT4 FILE SYSTEM
4186 M:      "Theodore Ts'o" <tytso@mit.edu>
4187 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4188 L:      linux-ext4@vger.kernel.org
4189 W:      http://ext4.wiki.kernel.org
4190 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4191 S:      Maintained
4192 F:      Documentation/filesystems/ext4.txt
4193 F:      fs/ext4/
4194
4195 Extended Verification Module (EVM)
4196 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4197 L:      linux-ima-devel@lists.sourceforge.net
4198 L:      linux-security-module@vger.kernel.org
4199 S:      Supported
4200 F:      security/integrity/evm/
4201
4202 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4203 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4204 M:      Chanwoo Choi <cw00.choi@samsung.com>
4205 L:      linux-kernel@vger.kernel.org
4206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4207 S:      Maintained
4208 F:      drivers/extcon/
4209 F:      Documentation/extcon/
4210
4211 EXYNOS DP DRIVER
4212 M:      Jingoo Han <jingoohan1@gmail.com>
4213 L:      dri-devel@lists.freedesktop.org
4214 S:      Maintained
4215 F:      drivers/gpu/drm/exynos/exynos_dp*
4216
4217 EXYNOS MIPI DISPLAY DRIVERS
4218 M:      Inki Dae <inki.dae@samsung.com>
4219 M:      Donghwa Lee <dh09.lee@samsung.com>
4220 M:      Kyungmin Park <kyungmin.park@samsung.com>
4221 L:      linux-fbdev@vger.kernel.org
4222 S:      Maintained
4223 F:      drivers/video/fbdev/exynos/exynos_mipi*
4224 F:      include/video/exynos_mipi*
4225
4226 F71805F HARDWARE MONITORING DRIVER
4227 M:      Jean Delvare <jdelvare@suse.com>
4228 L:      lm-sensors@lm-sensors.org
4229 S:      Maintained
4230 F:      Documentation/hwmon/f71805f
4231 F:      drivers/hwmon/f71805f.c
4232
4233 FC0011 TUNER DRIVER
4234 M:      Michael Buesch <m@bues.ch>
4235 L:      linux-media@vger.kernel.org
4236 S:      Maintained
4237 F:      drivers/media/tuners/fc0011.h
4238 F:      drivers/media/tuners/fc0011.c
4239
4240 FC2580 MEDIA DRIVER
4241 M:      Antti Palosaari <crope@iki.fi>
4242 L:      linux-media@vger.kernel.org
4243 W:      http://linuxtv.org/
4244 W:      http://palosaari.fi/linux/
4245 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4246 T:      git git://linuxtv.org/anttip/media_tree.git
4247 S:      Maintained
4248 F:      drivers/media/tuners/fc2580*
4249
4250 FANOTIFY
4251 M:      Eric Paris <eparis@redhat.com>
4252 S:      Maintained
4253 F:      fs/notify/fanotify/
4254 F:      include/linux/fanotify.h
4255 F:      include/uapi/linux/fanotify.h
4256
4257 FARSYNC SYNCHRONOUS DRIVER
4258 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4259 W:      http://www.farsite.co.uk/
4260 S:      Supported
4261 F:      drivers/net/wan/farsync.*
4262
4263 FAULT INJECTION SUPPORT
4264 M:      Akinobu Mita <akinobu.mita@gmail.com>
4265 S:      Supported
4266 F:      Documentation/fault-injection/
4267 F:      lib/fault-inject.c
4268
4269 FBTFT Framebuffer drivers
4270 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4271 M:      Noralf Trønnes <noralf@tronnes.org>
4272 S:      Maintained
4273 F:      drivers/staging/fbtft/
4274
4275 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4276 M:      Vasu Dev <vasu.dev@intel.com>
4277 L:      fcoe-devel@open-fcoe.org
4278 W:      www.Open-FCoE.org
4279 S:      Supported
4280 F:      drivers/scsi/libfc/
4281 F:      drivers/scsi/fcoe/
4282 F:      include/scsi/fc/
4283 F:      include/scsi/libfc.h
4284 F:      include/scsi/libfcoe.h
4285 F:      include/uapi/scsi/fc/
4286
4287 FILE LOCKING (flock() and fcntl()/lockf())
4288 M:      Jeff Layton <jlayton@poochiereds.net>
4289 M:      "J. Bruce Fields" <bfields@fieldses.org>
4290 L:      linux-fsdevel@vger.kernel.org
4291 S:      Maintained
4292 F:      include/linux/fcntl.h
4293 F:      include/linux/fs.h
4294 F:      include/uapi/linux/fcntl.h
4295 F:      include/uapi/linux/fs.h
4296 F:      fs/fcntl.c
4297 F:      fs/locks.c
4298
4299 FILESYSTEMS (VFS and infrastructure)
4300 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4301 L:      linux-fsdevel@vger.kernel.org
4302 S:      Maintained
4303 F:      fs/*
4304
4305 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4306 M:      Riku Voipio <riku.voipio@iki.fi>
4307 L:      lm-sensors@lm-sensors.org
4308 S:      Maintained
4309 F:      drivers/hwmon/f75375s.c
4310 F:      include/linux/f75375s.h
4311
4312 FIREWIRE AUDIO DRIVERS
4313 M:      Clemens Ladisch <clemens@ladisch.de>
4314 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4315 T:      git git://git.alsa-project.org/alsa-kernel.git
4316 S:      Maintained
4317 F:      sound/firewire/
4318
4319 FIREWIRE MEDIA DRIVERS (firedtv)
4320 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4321 L:      linux-media@vger.kernel.org
4322 L:      linux1394-devel@lists.sourceforge.net
4323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4324 S:      Maintained
4325 F:      drivers/media/firewire/
4326
4327 FIREWIRE SBP-2 TARGET
4328 M:      Chris Boot <bootc@bootc.net>
4329 L:      linux-scsi@vger.kernel.org
4330 L:      target-devel@vger.kernel.org
4331 L:      linux1394-devel@lists.sourceforge.net
4332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4333 S:      Maintained
4334 F:      drivers/target/sbp/
4335
4336 FIREWIRE SUBSYSTEM
4337 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4338 L:      linux1394-devel@lists.sourceforge.net
4339 W:      http://ieee1394.wiki.kernel.org/
4340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4341 S:      Maintained
4342 F:      drivers/firewire/
4343 F:      include/linux/firewire.h
4344 F:      include/uapi/linux/firewire*.h
4345 F:      tools/firewire/
4346
4347 FIRMWARE LOADER (request_firmware)
4348 M:      Ming Lei <ming.lei@canonical.com>
4349 L:      linux-kernel@vger.kernel.org
4350 S:      Maintained
4351 F:      Documentation/firmware_class/
4352 F:      drivers/base/firmware*.c
4353 F:      include/linux/firmware.h
4354
4355 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4356 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4357 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4358 S:      Maintained
4359 F:      drivers/block/rsxx/
4360
4361 FLOPPY DRIVER
4362 M:      Jiri Kosina <jikos@kernel.org>
4363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4364 S:      Odd fixes
4365 F:      drivers/block/floppy.c
4366
4367 FMC SUBSYSTEM
4368 M:      Alessandro Rubini <rubini@gnudd.com>
4369 W:      http://www.ohwr.org/projects/fmc-bus
4370 S:      Supported
4371 F:      drivers/fmc/
4372 F:      include/linux/fmc*.h
4373 F:      include/linux/ipmi-fru.h
4374 K:      fmc_d.*register
4375
4376 FPU EMULATOR
4377 M:      Bill Metzenthen <billm@melbpc.org.au>
4378 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4379 S:      Maintained
4380 F:      arch/x86/math-emu/
4381
4382 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4383 L:      netdev@vger.kernel.org
4384 S:      Orphan
4385 F:      drivers/net/wan/dlci.c
4386 F:      drivers/net/wan/sdla.c
4387
4388 FRAMEBUFFER LAYER
4389 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4390 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4391 L:      linux-fbdev@vger.kernel.org
4392 W:      http://linux-fbdev.sourceforge.net/
4393 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4395 S:      Maintained
4396 F:      Documentation/fb/
4397 F:      Documentation/devicetree/bindings/fb/
4398 F:      drivers/video/
4399 F:      include/video/
4400 F:      include/linux/fb.h
4401 F:      include/uapi/video/
4402 F:      include/uapi/linux/fb.h
4403
4404 FREESCALE DIU FRAMEBUFFER DRIVER
4405 M:      Timur Tabi <timur@tabi.org>
4406 L:      linux-fbdev@vger.kernel.org
4407 S:      Maintained
4408 F:      drivers/video/fbdev/fsl-diu-fb.*
4409
4410 FREESCALE DMA DRIVER
4411 M:      Li Yang <leoli@freescale.com>
4412 M:      Zhang Wei <zw@zh-kernel.org>
4413 L:      linuxppc-dev@lists.ozlabs.org
4414 S:      Maintained
4415 F:      drivers/dma/fsldma.*
4416
4417 FREESCALE I2C CPM DRIVER
4418 M:      Jochen Friedrich <jochen@scram.de>
4419 L:      linuxppc-dev@lists.ozlabs.org
4420 L:      linux-i2c@vger.kernel.org
4421 S:      Maintained
4422 F:      drivers/i2c/busses/i2c-cpm.c
4423
4424 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4425 M:      Sascha Hauer <kernel@pengutronix.de>
4426 L:      linux-fbdev@vger.kernel.org
4427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4428 S:      Maintained
4429 F:      include/linux/platform_data/video-imxfb.h
4430 F:      drivers/video/fbdev/imxfb.c
4431
4432 FREESCALE QUAD SPI DRIVER
4433 M:      Han Xu <han.xu@freescale.com>
4434 L:      linux-mtd@lists.infradead.org
4435 S:      Maintained
4436 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4437
4438 FREESCALE SOC FS_ENET DRIVER
4439 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4440 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4441 L:      linuxppc-dev@lists.ozlabs.org
4442 L:      netdev@vger.kernel.org
4443 S:      Maintained
4444 F:      drivers/net/ethernet/freescale/fs_enet/
4445 F:      include/linux/fs_enet_pd.h
4446
4447 FREESCALE QUICC ENGINE LIBRARY
4448 L:      linuxppc-dev@lists.ozlabs.org
4449 S:      Orphan
4450 F:      arch/powerpc/sysdev/qe_lib/
4451 F:      arch/powerpc/include/asm/*qe.h
4452
4453 FREESCALE USB PERIPHERAL DRIVERS
4454 M:      Li Yang <leoli@freescale.com>
4455 L:      linux-usb@vger.kernel.org
4456 L:      linuxppc-dev@lists.ozlabs.org
4457 S:      Maintained
4458 F:      drivers/usb/gadget/udc/fsl*
4459
4460 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4461 M:      Li Yang <leoli@freescale.com>
4462 L:      netdev@vger.kernel.org
4463 L:      linuxppc-dev@lists.ozlabs.org
4464 S:      Maintained
4465 F:      drivers/net/ethernet/freescale/ucc_geth*
4466
4467 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4468 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4469 L:      netdev@vger.kernel.org
4470 S:      Maintained
4471 F:      drivers/net/ethernet/freescale/gianfar*
4472 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4473 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4474
4475 FREESCALE QUICC ENGINE UCC UART DRIVER
4476 M:      Timur Tabi <timur@tabi.org>
4477 L:      linuxppc-dev@lists.ozlabs.org
4478 S:      Maintained
4479 F:      drivers/tty/serial/ucc_uart.c
4480
4481 FREESCALE SOC SOUND DRIVERS
4482 M:      Timur Tabi <timur@tabi.org>
4483 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4484 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4485 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4486 L:      linuxppc-dev@lists.ozlabs.org
4487 S:      Maintained
4488 F:      sound/soc/fsl/fsl*
4489 F:      sound/soc/fsl/imx*
4490 F:      sound/soc/fsl/mpc8610_hpcd.c
4491
4492 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4493 M:      "J. German Rivera" <German.Rivera@freescale.com>
4494 L:      linux-kernel@vger.kernel.org
4495 S:      Maintained
4496 F:      drivers/staging/fsl-mc/
4497
4498 FREEVXFS FILESYSTEM
4499 M:      Christoph Hellwig <hch@infradead.org>
4500 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4501 S:      Maintained
4502 F:      fs/freevxfs/
4503
4504 FREEZER
4505 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4506 M:      Pavel Machek <pavel@ucw.cz>
4507 L:      linux-pm@vger.kernel.org
4508 S:      Supported
4509 F:      Documentation/power/freezing-of-tasks.txt
4510 F:      include/linux/freezer.h
4511 F:      kernel/freezer.c
4512
4513 FRONTSWAP API
4514 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4515 L:      linux-kernel@vger.kernel.org
4516 S:      Maintained
4517 F:      mm/frontswap.c
4518 F:      include/linux/frontswap.h
4519
4520 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4521 M:      David Howells <dhowells@redhat.com>
4522 L:      linux-cachefs@redhat.com
4523 S:      Supported
4524 F:      Documentation/filesystems/caching/
4525 F:      fs/fscache/
4526 F:      include/linux/fscache*.h
4527
4528 F2FS FILE SYSTEM
4529 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4530 M:      Changman Lee <cm224.lee@samsung.com>
4531 R:      Chao Yu <chao2.yu@samsung.com>
4532 L:      linux-f2fs-devel@lists.sourceforge.net
4533 W:      http://en.wikipedia.org/wiki/F2FS
4534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4535 S:      Maintained
4536 F:      Documentation/filesystems/f2fs.txt
4537 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4538 F:      fs/f2fs/
4539 F:      include/linux/f2fs_fs.h
4540 F:      include/trace/events/f2fs.h
4541
4542 FUJITSU FR-V (FRV) PORT
4543 M:      David Howells <dhowells@redhat.com>
4544 S:      Maintained
4545 F:      arch/frv/
4546
4547 FUJITSU LAPTOP EXTRAS
4548 M:      Jonathan Woithe <jwoithe@just42.net>
4549 L:      platform-driver-x86@vger.kernel.org
4550 S:      Maintained
4551 F:      drivers/platform/x86/fujitsu-laptop.c
4552
4553 FUJITSU M-5MO LS CAMERA ISP DRIVER
4554 M:      Kyungmin Park <kyungmin.park@samsung.com>
4555 M:      Heungjun Kim <riverful.kim@samsung.com>
4556 L:      linux-media@vger.kernel.org
4557 S:      Maintained
4558 F:      drivers/media/i2c/m5mols/
4559 F:      include/media/m5mols.h
4560
4561 FUJITSU TABLET EXTRAS
4562 M:      Robert Gerlach <khnz@gmx.de>
4563 L:      platform-driver-x86@vger.kernel.org
4564 S:      Maintained
4565 F:      drivers/platform/x86/fujitsu-tablet.c
4566
4567 FUSE: FILESYSTEM IN USERSPACE
4568 M:      Miklos Szeredi <miklos@szeredi.hu>
4569 L:      fuse-devel@lists.sourceforge.net
4570 W:      http://fuse.sourceforge.net/
4571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4572 S:      Maintained
4573 F:      fs/fuse/
4574 F:      include/uapi/linux/fuse.h
4575 F:      Documentation/filesystems/fuse.txt
4576
4577 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4578 M:      Rik Faith <faith@cs.unc.edu>
4579 L:      linux-scsi@vger.kernel.org
4580 S:      Odd Fixes (e.g., new signatures)
4581 F:      drivers/scsi/fdomain.*
4582
4583 GCOV BASED KERNEL PROFILING
4584 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4585 S:      Maintained
4586 F:      kernel/gcov/
4587 F:      Documentation/gcov.txt
4588
4589 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4590 M:      Achim Leubner <achim_leubner@adaptec.com>
4591 L:      linux-scsi@vger.kernel.org
4592 W:      http://www.icp-vortex.com/
4593 S:      Supported
4594 F:      drivers/scsi/gdt*
4595
4596 GDB KERNEL DEBUGGING HELPER SCRIPTS
4597 M:      Jan Kiszka <jan.kiszka@siemens.com>
4598 S:      Supported
4599 F:      scripts/gdb/
4600
4601 GEMTEK FM RADIO RECEIVER DRIVER
4602 M:      Hans Verkuil <hverkuil@xs4all.nl>
4603 L:      linux-media@vger.kernel.org
4604 T:      git git://linuxtv.org/media_tree.git
4605 W:      http://linuxtv.org
4606 S:      Maintained
4607 F:      drivers/media/radio/radio-gemtek*
4608
4609 GENERIC GPIO I2C DRIVER
4610 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4611 S:      Supported
4612 F:      drivers/i2c/busses/i2c-gpio.c
4613 F:      include/linux/i2c-gpio.h
4614
4615 GENERIC GPIO I2C MULTIPLEXER DRIVER
4616 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4617 L:      linux-i2c@vger.kernel.org
4618 S:      Supported
4619 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4620 F:      include/linux/i2c-mux-gpio.h
4621 F:      Documentation/i2c/muxes/i2c-mux-gpio
4622
4623 GENERIC HDLC (WAN) DRIVERS
4624 M:      Krzysztof Halasa <khc@pm.waw.pl>
4625 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4626 S:      Maintained
4627 F:      drivers/net/wan/c101.c
4628 F:      drivers/net/wan/hd6457*
4629 F:      drivers/net/wan/hdlc*
4630 F:      drivers/net/wan/n2.c
4631 F:      drivers/net/wan/pc300too.c
4632 F:      drivers/net/wan/pci200syn.c
4633 F:      drivers/net/wan/wanxl*
4634
4635 GENERIC INCLUDE/ASM HEADER FILES
4636 M:      Arnd Bergmann <arnd@arndb.de>
4637 L:      linux-arch@vger.kernel.org
4638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4639 S:      Maintained
4640 F:      include/asm-generic/
4641 F:      include/uapi/asm-generic/
4642
4643 GENERIC PHY FRAMEWORK
4644 M:      Kishon Vijay Abraham I <kishon@ti.com>
4645 L:      linux-kernel@vger.kernel.org
4646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4647 S:      Supported
4648 F:      drivers/phy/
4649 F:      include/linux/phy/
4650
4651 GENERIC PM DOMAINS
4652 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4653 M:      Kevin Hilman <khilman@kernel.org>
4654 M:      Ulf Hansson <ulf.hansson@linaro.org>
4655 L:      linux-pm@vger.kernel.org
4656 S:      Supported
4657 F:      drivers/base/power/domain*.c
4658 F:      include/linux/pm_domain.h
4659
4660 GENERIC UIO DRIVER FOR PCI DEVICES
4661 M:      "Michael S. Tsirkin" <mst@redhat.com>
4662 L:      kvm@vger.kernel.org
4663 S:      Supported
4664 F:      drivers/uio/uio_pci_generic.c
4665
4666 GET_MAINTAINER SCRIPT
4667 M:      Joe Perches <joe@perches.com>
4668 S:      Maintained
4669 F:      scripts/get_maintainer.pl
4670
4671 GFS2 FILE SYSTEM
4672 M:      Steven Whitehouse <swhiteho@redhat.com>
4673 M:      Bob Peterson <rpeterso@redhat.com>
4674 L:      cluster-devel@redhat.com
4675 W:      http://sources.redhat.com/cluster/
4676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4677 S:      Supported
4678 F:      Documentation/filesystems/gfs2*.txt
4679 F:      fs/gfs2/
4680 F:      include/uapi/linux/gfs2_ondisk.h
4681
4682 GIGASET ISDN DRIVERS
4683 M:      Paul Bolle <pebolle@tiscali.nl>
4684 L:      gigaset307x-common@lists.sourceforge.net
4685 W:      http://gigaset307x.sourceforge.net/
4686 S:      Odd Fixes
4687 F:      Documentation/isdn/README.gigaset
4688 F:      drivers/isdn/gigaset/
4689 F:      include/uapi/linux/gigaset_dev.h
4690
4691 GO7007 MPEG CODEC
4692 M:      Hans Verkuil <hans.verkuil@cisco.com>
4693 L:      linux-media@vger.kernel.org
4694 S:      Maintained
4695 F:      drivers/media/usb/go7007/
4696
4697 GOODIX TOUCHSCREEN
4698 M:      Bastien Nocera <hadess@hadess.net>
4699 L:      linux-input@vger.kernel.org
4700 S:      Maintained
4701 F:      drivers/input/touchscreen/goodix.c
4702
4703 GPIO SUBSYSTEM
4704 M:      Linus Walleij <linus.walleij@linaro.org>
4705 M:      Alexandre Courbot <gnurou@gmail.com>
4706 L:      linux-gpio@vger.kernel.org
4707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4708 S:      Maintained
4709 F:      Documentation/gpio/
4710 F:      drivers/gpio/
4711 F:      include/linux/gpio/
4712 F:      include/linux/gpio.h
4713 F:      include/asm-generic/gpio.h
4714
4715 GRE DEMULTIPLEXER DRIVER
4716 M:      Dmitry Kozlov <xeb@mail.ru>
4717 L:      netdev@vger.kernel.org
4718 S:      Maintained
4719 F:      net/ipv4/gre_demux.c
4720 F:      net/ipv4/gre_offload.c
4721 F:      include/net/gre.h
4722
4723 GRETH 10/100/1G Ethernet MAC device driver
4724 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4725 L:      netdev@vger.kernel.org
4726 S:      Maintained
4727 F:      drivers/net/ethernet/aeroflex/
4728
4729 GSPCA FINEPIX SUBDRIVER
4730 M:      Frank Zago <frank@zago.net>
4731 L:      linux-media@vger.kernel.org
4732 T:      git git://linuxtv.org/media_tree.git
4733 S:      Maintained
4734 F:      drivers/media/usb/gspca/finepix.c
4735
4736 GSPCA GL860 SUBDRIVER
4737 M:      Olivier Lorin <o.lorin@laposte.net>
4738 L:      linux-media@vger.kernel.org
4739 T:      git git://linuxtv.org/media_tree.git
4740 S:      Maintained
4741 F:      drivers/media/usb/gspca/gl860/
4742
4743 GSPCA M5602 SUBDRIVER
4744 M:      Erik Andren <erik.andren@gmail.com>
4745 L:      linux-media@vger.kernel.org
4746 T:      git git://linuxtv.org/media_tree.git
4747 S:      Maintained
4748 F:      drivers/media/usb/gspca/m5602/
4749
4750 GSPCA PAC207 SONIXB SUBDRIVER
4751 M:      Hans de Goede <hdegoede@redhat.com>
4752 L:      linux-media@vger.kernel.org
4753 T:      git git://linuxtv.org/media_tree.git
4754 S:      Maintained
4755 F:      drivers/media/usb/gspca/pac207.c
4756
4757 GSPCA SN9C20X SUBDRIVER
4758 M:      Brian Johnson <brijohn@gmail.com>
4759 L:      linux-media@vger.kernel.org
4760 T:      git git://linuxtv.org/media_tree.git
4761 S:      Maintained
4762 F:      drivers/media/usb/gspca/sn9c20x.c
4763
4764 GSPCA T613 SUBDRIVER
4765 M:      Leandro Costantino <lcostantino@gmail.com>
4766 L:      linux-media@vger.kernel.org
4767 T:      git git://linuxtv.org/media_tree.git
4768 S:      Maintained
4769 F:      drivers/media/usb/gspca/t613.c
4770
4771 GSPCA USB WEBCAM DRIVER
4772 M:      Hans de Goede <hdegoede@redhat.com>
4773 L:      linux-media@vger.kernel.org
4774 T:      git git://linuxtv.org/media_tree.git
4775 S:      Maintained
4776 F:      drivers/media/usb/gspca/
4777
4778 GUID PARTITION TABLE (GPT)
4779 M:      Davidlohr Bueso <dave@stgolabs.net>
4780 L:      linux-efi@vger.kernel.org
4781 S:      Maintained
4782 F:      block/partitions/efi.*
4783
4784 STK1160 USB VIDEO CAPTURE DRIVER
4785 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4786 L:      linux-media@vger.kernel.org
4787 T:      git git://linuxtv.org/media_tree.git
4788 S:      Maintained
4789 F:      drivers/media/usb/stk1160/
4790
4791 H8/300 ARCHITECTURE
4792 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4793 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4794 W:      http://uclinux-h8.sourceforge.jp
4795 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4796 S:      Maintained
4797 F:      arch/h8300/
4798 F:      drivers/clocksource/h8300_*.c
4799 F:      drivers/clk/h8300/
4800 F:      drivers/irqchip/irq-renesas-h8*.c
4801
4802 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4803 M:      Frank Seidel <frank@f-seidel.de>
4804 L:      platform-driver-x86@vger.kernel.org
4805 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4806 S:      Maintained
4807 F:      drivers/platform/x86/hdaps.c
4808
4809 HDPVR USB VIDEO ENCODER DRIVER
4810 M:      Hans Verkuil <hverkuil@xs4all.nl>
4811 L:      linux-media@vger.kernel.org
4812 T:      git git://linuxtv.org/media_tree.git
4813 W:      http://linuxtv.org
4814 S:      Odd Fixes
4815 F:      drivers/media/usb/hdpvr/
4816
4817 HWPOISON MEMORY FAILURE HANDLING
4818 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4819 L:      linux-mm@kvack.org
4820 S:      Maintained
4821 F:      mm/memory-failure.c
4822 F:      mm/hwpoison-inject.c
4823
4824 HYPERVISOR VIRTUAL CONSOLE DRIVER
4825 L:      linuxppc-dev@lists.ozlabs.org
4826 S:      Odd Fixes
4827 F:      drivers/tty/hvc/
4828
4829 HACKRF MEDIA DRIVER
4830 M:      Antti Palosaari <crope@iki.fi>
4831 L:      linux-media@vger.kernel.org
4832 W:      http://linuxtv.org/
4833 W:      http://palosaari.fi/linux/
4834 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4835 T:      git git://linuxtv.org/anttip/media_tree.git
4836 S:      Maintained
4837 F:      drivers/media/usb/hackrf/
4838
4839 HARDWARE MONITORING
4840 M:      Jean Delvare <jdelvare@suse.com>
4841 M:      Guenter Roeck <linux@roeck-us.net>
4842 L:      lm-sensors@lm-sensors.org
4843 W:      http://www.lm-sensors.org/
4844 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4846 S:      Maintained
4847 F:      Documentation/hwmon/
4848 F:      drivers/hwmon/
4849 F:      include/linux/hwmon*.h
4850
4851 HARDWARE RANDOM NUMBER GENERATOR CORE
4852 M:      Matt Mackall <mpm@selenic.com>
4853 M:      Herbert Xu <herbert@gondor.apana.org.au>
4854 L:      linux-crypto@vger.kernel.org
4855 S:      Odd fixes
4856 F:      Documentation/hw_random.txt
4857 F:      drivers/char/hw_random/
4858 F:      include/linux/hw_random.h
4859
4860 HARDWARE SPINLOCK CORE
4861 M:      Ohad Ben-Cohen <ohad@wizery.com>
4862 S:      Maintained
4863 F:      Documentation/hwspinlock.txt
4864 F:      drivers/hwspinlock/hwspinlock_*
4865 F:      include/linux/hwspinlock.h
4866
4867 HARMONY SOUND DRIVER
4868 L:      linux-parisc@vger.kernel.org
4869 S:      Maintained
4870 F:      sound/parisc/harmony.*
4871
4872 HD29L2 MEDIA DRIVER
4873 M:      Antti Palosaari <crope@iki.fi>
4874 L:      linux-media@vger.kernel.org
4875 W:      http://linuxtv.org/
4876 W:      http://palosaari.fi/linux/
4877 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4878 T:      git git://linuxtv.org/anttip/media_tree.git
4879 S:      Maintained
4880 F:      drivers/media/dvb-frontends/hd29l2*
4881
4882 HEWLETT-PACKARD SMART2 RAID DRIVER
4883 L:      iss_storagedev@hp.com
4884 S:      Orphan
4885 F:      Documentation/blockdev/cpqarray.txt
4886 F:      drivers/block/cpqarray.*
4887
4888 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4889 M:      Don Brace <don.brace@pmcs.com>
4890 L:      iss_storagedev@hp.com
4891 L:      storagedev@pmcs.com
4892 L:      linux-scsi@vger.kernel.org
4893 S:      Supported
4894 F:      Documentation/scsi/hpsa.txt
4895 F:      drivers/scsi/hpsa*.[ch]
4896 F:      include/linux/cciss*.h
4897 F:      include/uapi/linux/cciss*.h
4898
4899 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4900 M:      Don Brace <don.brace@pmcs.com>
4901 L:      iss_storagedev@hp.com
4902 L:      storagedev@pmcs.com
4903 L:      linux-scsi@vger.kernel.org
4904 S:      Supported
4905 F:      Documentation/blockdev/cciss.txt
4906 F:      drivers/block/cciss*
4907 F:      include/linux/cciss_ioctl.h
4908 F:      include/uapi/linux/cciss_ioctl.h
4909
4910 HFS FILESYSTEM
4911 L:      linux-fsdevel@vger.kernel.org
4912 S:      Orphan
4913 F:      Documentation/filesystems/hfs.txt
4914 F:      fs/hfs/
4915
4916 HFSPLUS FILESYSTEM
4917 L:      linux-fsdevel@vger.kernel.org
4918 S:      Orphan
4919 F:      Documentation/filesystems/hfsplus.txt
4920 F:      fs/hfsplus/
4921
4922 HGA FRAMEBUFFER DRIVER
4923 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4924 L:      linux-nvidia@lists.surfsouth.com
4925 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4926 S:      Maintained
4927 F:      drivers/video/fbdev/hgafb.c
4928
4929 HIBERNATION (aka Software Suspend, aka swsusp)
4930 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4931 M:      Pavel Machek <pavel@ucw.cz>
4932 L:      linux-pm@vger.kernel.org
4933 S:      Supported
4934 F:      arch/x86/power/
4935 F:      drivers/base/power/
4936 F:      kernel/power/
4937 F:      include/linux/suspend.h
4938 F:      include/linux/freezer.h
4939 F:      include/linux/pm.h
4940 F:      arch/*/include/asm/suspend*.h
4941
4942 HID CORE LAYER
4943 M:      Jiri Kosina <jikos@kernel.org>
4944 L:      linux-input@vger.kernel.org
4945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4946 S:      Maintained
4947 F:      drivers/hid/
4948 F:      include/linux/hid*
4949 F:      include/uapi/linux/hid*
4950
4951 HID SENSOR HUB DRIVERS
4952 M:      Jiri Kosina <jikos@kernel.org>
4953 M:      Jonathan Cameron <jic23@kernel.org>
4954 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4955 L:      linux-input@vger.kernel.org
4956 L:      linux-iio@vger.kernel.org
4957 S:      Maintained
4958 F:      Documentation/hid/hid-sensor*
4959 F:      drivers/hid/hid-sensor-*
4960 F:      drivers/iio/*/hid-*
4961 F:      include/linux/hid-sensor-*
4962
4963 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4964 M:      Thomas Gleixner <tglx@linutronix.de>
4965 L:      linux-kernel@vger.kernel.org
4966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4967 S:      Maintained
4968 F:      Documentation/timers/
4969 F:      kernel/time/hrtimer.c
4970 F:      kernel/time/clockevents.c
4971 F:      kernel/time/tick*.*
4972 F:      kernel/time/timer_*.c
4973 F:      include/linux/clockchips.h
4974 F:      include/linux/hrtimer.h
4975
4976 HIGH-SPEED SCC DRIVER FOR AX.25
4977 L:      linux-hams@vger.kernel.org
4978 S:      Orphan
4979 F:      drivers/net/hamradio/dmascc.c
4980 F:      drivers/net/hamradio/scc.c
4981
4982 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4983 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4984 W:      http://www.highpoint-tech.com
4985 S:      Supported
4986 F:      Documentation/scsi/hptiop.txt
4987 F:      drivers/scsi/hptiop.c
4988
4989 HIPPI
4990 M:      Jes Sorensen <jes@trained-monkey.org>
4991 L:      linux-hippi@sunsite.dk
4992 S:      Maintained
4993 F:      include/linux/hippidevice.h
4994 F:      include/uapi/linux/if_hippi.h
4995 F:      net/802/hippi.c
4996 F:      drivers/net/hippi/
4997
4998 HOST AP DRIVER
4999 M:      Jouni Malinen <j@w1.fi>
5000 L:      hostap@shmoo.com (subscribers-only)
5001 L:      linux-wireless@vger.kernel.org
5002 W:      http://hostap.epitest.fi/
5003 S:      Maintained
5004 F:      drivers/net/wireless/hostap/
5005
5006 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5007 L:      platform-driver-x86@vger.kernel.org
5008 S:      Orphan
5009 F:      drivers/platform/x86/tc1100-wmi.c
5010
5011 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5012 M:      Jaroslav Kysela <perex@perex.cz>
5013 S:      Maintained
5014 F:      drivers/net/ethernet/hp/hp100.*
5015
5016 HPET:   High Precision Event Timers driver
5017 M:      Clemens Ladisch <clemens@ladisch.de>
5018 S:      Maintained
5019 F:      Documentation/timers/hpet.txt
5020 F:      drivers/char/hpet.c
5021 F:      include/linux/hpet.h
5022 F:      include/uapi/linux/hpet.h
5023
5024 HPET:   x86
5025 S:      Orphan
5026 F:      arch/x86/kernel/hpet.c
5027 F:      arch/x86/include/asm/hpet.h
5028
5029 HPFS FILESYSTEM
5030 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5031 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5032 S:      Maintained
5033 F:      fs/hpfs/
5034
5035 HSI SUBSYSTEM
5036 M:      Sebastian Reichel <sre@kernel.org>
5037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5038 S:      Maintained
5039 F:      Documentation/ABI/testing/sysfs-bus-hsi
5040 F:      Documentation/hsi.txt
5041 F:      drivers/hsi/
5042 F:      include/linux/hsi/
5043 F:      include/uapi/linux/hsi/
5044
5045 HSO 3G MODEM DRIVER
5046 M:      Jan Dumon <j.dumon@option.com>
5047 W:      http://www.pharscape.org
5048 S:      Maintained
5049 F:      drivers/net/usb/hso.c
5050
5051 HSR NETWORK PROTOCOL
5052 M:      Arvid Brodin <arvid.brodin@alten.se>
5053 L:      netdev@vger.kernel.org
5054 S:      Maintained
5055 F:      net/hsr/
5056
5057 HTCPEN TOUCHSCREEN DRIVER
5058 M:      Pau Oliva Fora <pof@eslack.org>
5059 L:      linux-input@vger.kernel.org
5060 S:      Maintained
5061 F:      drivers/input/touchscreen/htcpen.c
5062
5063 HUGETLB FILESYSTEM
5064 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5065 S:      Maintained
5066 F:      fs/hugetlbfs/
5067
5068 Hyper-V CORE AND DRIVERS
5069 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5070 M:      Haiyang Zhang <haiyangz@microsoft.com>
5071 L:      devel@linuxdriverproject.org
5072 S:      Maintained
5073 F:      arch/x86/include/asm/mshyperv.h
5074 F:      arch/x86/include/uapi/asm/hyperv.h
5075 F:      arch/x86/kernel/cpu/mshyperv.c
5076 F:      drivers/hid/hid-hyperv.c
5077 F:      drivers/hv/
5078 F:      drivers/input/serio/hyperv-keyboard.c
5079 F:      drivers/net/hyperv/
5080 F:      drivers/scsi/storvsc_drv.c
5081 F:      drivers/video/fbdev/hyperv_fb.c
5082 F:      include/linux/hyperv.h
5083 F:      tools/hv/
5084 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5085
5086 I2C OVER PARALLEL PORT
5087 M:      Jean Delvare <jdelvare@suse.com>
5088 L:      linux-i2c@vger.kernel.org
5089 S:      Maintained
5090 F:      Documentation/i2c/busses/i2c-parport
5091 F:      Documentation/i2c/busses/i2c-parport-light
5092 F:      drivers/i2c/busses/i2c-parport.c
5093 F:      drivers/i2c/busses/i2c-parport-light.c
5094
5095 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5096 M:      Jean Delvare <jdelvare@suse.com>
5097 L:      linux-i2c@vger.kernel.org
5098 S:      Maintained
5099 F:      Documentation/i2c/busses/i2c-ali1535
5100 F:      Documentation/i2c/busses/i2c-ali1563
5101 F:      Documentation/i2c/busses/i2c-ali15x3
5102 F:      Documentation/i2c/busses/i2c-amd756
5103 F:      Documentation/i2c/busses/i2c-amd8111
5104 F:      Documentation/i2c/busses/i2c-i801
5105 F:      Documentation/i2c/busses/i2c-nforce2
5106 F:      Documentation/i2c/busses/i2c-piix4
5107 F:      Documentation/i2c/busses/i2c-sis5595
5108 F:      Documentation/i2c/busses/i2c-sis630
5109 F:      Documentation/i2c/busses/i2c-sis96x
5110 F:      Documentation/i2c/busses/i2c-via
5111 F:      Documentation/i2c/busses/i2c-viapro
5112 F:      drivers/i2c/busses/i2c-ali1535.c
5113 F:      drivers/i2c/busses/i2c-ali1563.c
5114 F:      drivers/i2c/busses/i2c-ali15x3.c
5115 F:      drivers/i2c/busses/i2c-amd756.c
5116 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5117 F:      drivers/i2c/busses/i2c-amd8111.c
5118 F:      drivers/i2c/busses/i2c-i801.c
5119 F:      drivers/i2c/busses/i2c-isch.c
5120 F:      drivers/i2c/busses/i2c-nforce2.c
5121 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5122 F:      drivers/i2c/busses/i2c-piix4.c
5123 F:      drivers/i2c/busses/i2c-sis5595.c
5124 F:      drivers/i2c/busses/i2c-sis630.c
5125 F:      drivers/i2c/busses/i2c-sis96x.c
5126 F:      drivers/i2c/busses/i2c-via.c
5127 F:      drivers/i2c/busses/i2c-viapro.c
5128
5129 I2C/SMBUS ISMT DRIVER
5130 M:      Seth Heasley <seth.heasley@intel.com>
5131 M:      Neil Horman <nhorman@tuxdriver.com>
5132 L:      linux-i2c@vger.kernel.org
5133 F:      drivers/i2c/busses/i2c-ismt.c
5134 F:      Documentation/i2c/busses/i2c-ismt
5135
5136 I2C/SMBUS STUB DRIVER
5137 M:      Jean Delvare <jdelvare@suse.com>
5138 L:      linux-i2c@vger.kernel.org
5139 S:      Maintained
5140 F:      drivers/i2c/i2c-stub.c
5141
5142 I2C SUBSYSTEM
5143 M:      Wolfram Sang <wsa@the-dreams.de>
5144 L:      linux-i2c@vger.kernel.org
5145 W:      https://i2c.wiki.kernel.org/
5146 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5148 S:      Maintained
5149 F:      Documentation/devicetree/bindings/i2c/
5150 F:      Documentation/i2c/
5151 F:      drivers/i2c/
5152 F:      include/linux/i2c.h
5153 F:      include/linux/i2c-*.h
5154 F:      include/uapi/linux/i2c.h
5155 F:      include/uapi/linux/i2c-*.h
5156
5157 I2C ACPI SUPPORT
5158 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5159 L:      linux-i2c@vger.kernel.org
5160 L:      linux-acpi@vger.kernel.org
5161 S:      Maintained
5162
5163 I2C-TAOS-EVM DRIVER
5164 M:      Jean Delvare <jdelvare@suse.com>
5165 L:      linux-i2c@vger.kernel.org
5166 S:      Maintained
5167 F:      Documentation/i2c/busses/i2c-taos-evm
5168 F:      drivers/i2c/busses/i2c-taos-evm.c
5169
5170 I2C-TINY-USB DRIVER
5171 M:      Till Harbaum <till@harbaum.org>
5172 L:      linux-i2c@vger.kernel.org
5173 W:      http://www.harbaum.org/till/i2c_tiny_usb
5174 S:      Maintained
5175 F:      drivers/i2c/busses/i2c-tiny-usb.c
5176
5177 i386 BOOT CODE
5178 M:      "H. Peter Anvin" <hpa@zytor.com>
5179 S:      Maintained
5180 F:      arch/x86/boot/
5181
5182 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5183 M:      "H. Peter Anvin" <hpa@zytor.com>
5184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5185 S:      Maintained
5186
5187 IA64 (Itanium) PLATFORM
5188 M:      Tony Luck <tony.luck@intel.com>
5189 M:      Fenghua Yu <fenghua.yu@intel.com>
5190 L:      linux-ia64@vger.kernel.org
5191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5192 S:      Maintained
5193 F:      arch/ia64/
5194
5195 IBM Power VMX Cryptographic instructions
5196 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5197 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5198 L:      linux-crypto@vger.kernel.org
5199 S:      Supported
5200 F:      drivers/crypto/vmx/Makefile
5201 F:      drivers/crypto/vmx/Kconfig
5202 F:      drivers/crypto/vmx/vmx.c
5203 F:      drivers/crypto/vmx/aes*
5204 F:      drivers/crypto/vmx/ghash*
5205 F:      drivers/crypto/vmx/ppc-xlate.pl
5206
5207 IBM Power in-Nest Crypto Acceleration
5208 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5209 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5210 L:      linux-crypto@vger.kernel.org
5211 S:      Supported
5212 F:      drivers/crypto/nx/Makefile
5213 F:      drivers/crypto/nx/Kconfig
5214 F:      drivers/crypto/nx/nx-aes*
5215 F:      drivers/crypto/nx/nx-sha*
5216 F:      drivers/crypto/nx/nx.*
5217 F:      drivers/crypto/nx/nx_csbcpb.h
5218 F:      drivers/crypto/nx/nx_debugfs.h
5219
5220 IBM Power 842 compression accelerator
5221 M:      Dan Streetman <ddstreet@ieee.org>
5222 S:      Supported
5223 F:      drivers/crypto/nx/Makefile
5224 F:      drivers/crypto/nx/Kconfig
5225 F:      drivers/crypto/nx/nx-842*
5226 F:      include/linux/sw842.h
5227 F:      crypto/842.c
5228 F:      lib/842/
5229
5230 IBM Power Linux RAID adapter
5231 M:      Brian King <brking@us.ibm.com>
5232 S:      Supported
5233 F:      drivers/scsi/ipr.*
5234
5235 IBM Power Virtual Ethernet Device Driver
5236 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5237 L:      netdev@vger.kernel.org
5238 S:      Supported
5239 F:      drivers/net/ethernet/ibm/ibmveth.*
5240
5241 IBM Power Virtual SCSI Device Drivers
5242 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5243 L:      linux-scsi@vger.kernel.org
5244 S:      Supported
5245 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5246 F:      drivers/scsi/ibmvscsi/viosrp.h
5247
5248 IBM Power Virtual FC Device Drivers
5249 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5250 L:      linux-scsi@vger.kernel.org
5251 S:      Supported
5252 F:      drivers/scsi/ibmvscsi/ibmvfc*
5253
5254 IBM ServeRAID RAID DRIVER
5255 S:      Orphan
5256 F:      drivers/scsi/ips.*
5257
5258 ICH LPC AND GPIO DRIVER
5259 M:      Peter Tyser <ptyser@xes-inc.com>
5260 S:      Maintained
5261 F:      drivers/mfd/lpc_ich.c
5262 F:      drivers/gpio/gpio-ich.c
5263
5264 IDE SUBSYSTEM
5265 M:      "David S. Miller" <davem@davemloft.net>
5266 L:      linux-ide@vger.kernel.org
5267 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5269 S:      Maintained
5270 F:      Documentation/ide/
5271 F:      drivers/ide/
5272 F:      include/linux/ide.h
5273
5274 IDEAPAD LAPTOP EXTRAS DRIVER
5275 M:      Ike Panhc <ike.pan@canonical.com>
5276 L:      platform-driver-x86@vger.kernel.org
5277 W:      http://launchpad.net/ideapad-laptop
5278 S:      Maintained
5279 F:      drivers/platform/x86/ideapad-laptop.c
5280
5281 IDEAPAD LAPTOP SLIDEBAR DRIVER
5282 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5283 L:      linux-input@vger.kernel.org
5284 W:      https://github.com/o2genum/ideapad-slidebar
5285 S:      Maintained
5286 F:      drivers/input/misc/ideapad_slidebar.c
5287
5288 IDE/ATAPI DRIVERS
5289 M:      Borislav Petkov <bp@alien8.de>
5290 L:      linux-ide@vger.kernel.org
5291 S:      Maintained
5292 F:      Documentation/cdrom/ide-cd
5293 F:      drivers/ide/ide-cd*
5294
5295 IDLE-I7300
5296 M:      Andy Henroid <andrew.d.henroid@intel.com>
5297 L:      linux-pm@vger.kernel.org
5298 S:      Supported
5299 F:      drivers/idle/i7300_idle.c
5300
5301 IEEE 802.15.4 SUBSYSTEM
5302 M:      Alexander Aring <alex.aring@gmail.com>
5303 L:      linux-wpan@vger.kernel.org
5304 W:      https://github.com/linux-wpan
5305 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5306 S:      Maintained
5307 F:      net/ieee802154/
5308 F:      net/mac802154/
5309 F:      drivers/net/ieee802154/
5310 F:      include/linux/nl802154.h
5311 F:      include/linux/ieee802154.h
5312 F:      include/net/nl802154.h
5313 F:      include/net/mac802154.h
5314 F:      include/net/af_ieee802154.h
5315 F:      include/net/cfg802154.h
5316 F:      include/net/ieee802154_netdev.h
5317 F:      Documentation/networking/ieee802154.txt
5318
5319 IGORPLUG-USB IR RECEIVER
5320 M:      Sean Young <sean@mess.org>
5321 L:      linux-media@vger.kernel.org
5322 S:      Maintained
5323 F:      drivers/media/rc/igorplugusb.c
5324
5325 IGUANAWORKS USB IR TRANSCEIVER
5326 M:      Sean Young <sean@mess.org>
5327 L:      linux-media@vger.kernel.org
5328 S:      Maintained
5329 F:      drivers/media/rc/iguanair.c
5330
5331 IIO SUBSYSTEM AND DRIVERS
5332 M:      Jonathan Cameron <jic23@kernel.org>
5333 R:      Hartmut Knaack <knaack.h@gmx.de>
5334 R:      Lars-Peter Clausen <lars@metafoo.de>
5335 R:      Peter Meerwald <pmeerw@pmeerw.net>
5336 L:      linux-iio@vger.kernel.org
5337 S:      Maintained
5338 F:      drivers/iio/
5339 F:      drivers/staging/iio/
5340 F:      include/linux/iio/
5341 F:      tools/iio/
5342
5343 IKANOS/ADI EAGLE ADSL USB DRIVER
5344 M:      Matthieu Castet <castet.matthieu@free.fr>
5345 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5346 S:      Maintained
5347 F:      drivers/usb/atm/ueagle-atm.c
5348
5349 INA209 HARDWARE MONITOR DRIVER
5350 M:      Guenter Roeck <linux@roeck-us.net>
5351 L:      lm-sensors@lm-sensors.org
5352 S:      Maintained
5353 F:      Documentation/hwmon/ina209
5354 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5355 F:      drivers/hwmon/ina209.c
5356
5357 INA2XX HARDWARE MONITOR DRIVER
5358 M:      Guenter Roeck <linux@roeck-us.net>
5359 L:      lm-sensors@lm-sensors.org
5360 S:      Maintained
5361 F:      Documentation/hwmon/ina2xx
5362 F:      drivers/hwmon/ina2xx.c
5363 F:      include/linux/platform_data/ina2xx.h
5364
5365 INDUSTRY PACK SUBSYSTEM (IPACK)
5366 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5367 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5368 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5369 L:      industrypack-devel@lists.sourceforge.net
5370 W:      http://industrypack.sourceforge.net
5371 S:      Maintained
5372 F:      drivers/ipack/
5373
5374 INGENIC JZ4780 DMA Driver
5375 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5376 S:      Maintained
5377 F:      drivers/dma/dma-jz4780.c
5378
5379 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5380 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5381 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5382 L:      linux-ima-devel@lists.sourceforge.net
5383 L:      linux-ima-user@lists.sourceforge.net
5384 L:      linux-security-module@vger.kernel.org
5385 S:      Supported
5386 F:      security/integrity/ima/
5387
5388 IMGTEC IR DECODER DRIVER
5389 M:      James Hogan <james.hogan@imgtec.com>
5390 S:      Maintained
5391 F:      drivers/media/rc/img-ir/
5392
5393 IMS TWINTURBO FRAMEBUFFER DRIVER
5394 L:      linux-fbdev@vger.kernel.org
5395 S:      Orphan
5396 F:      drivers/video/fbdev/imsttfb.c
5397
5398 INFINIBAND SUBSYSTEM
5399 M:      Doug Ledford <dledford@redhat.com>
5400 M:      Sean Hefty <sean.hefty@intel.com>
5401 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5402 L:      linux-rdma@vger.kernel.org
5403 W:      http://www.openfabrics.org/
5404 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5406 S:      Supported
5407 F:      Documentation/infiniband/
5408 F:      drivers/infiniband/
5409 F:      drivers/staging/rdma/
5410 F:      include/uapi/linux/if_infiniband.h
5411 F:      include/uapi/rdma/
5412 F:      include/rdma/
5413
5414 INOTIFY
5415 M:      John McCutchan <john@johnmccutchan.com>
5416 M:      Robert Love <rlove@rlove.org>
5417 M:      Eric Paris <eparis@parisplace.org>
5418 S:      Maintained
5419 F:      Documentation/filesystems/inotify.txt
5420 F:      fs/notify/inotify/
5421 F:      include/linux/inotify.h
5422 F:      include/uapi/linux/inotify.h
5423
5424 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5425 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5426 L:      linux-input@vger.kernel.org
5427 Q:      http://patchwork.kernel.org/project/linux-input/list/
5428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5429 S:      Maintained
5430 F:      drivers/input/
5431 F:      include/linux/input.h
5432 F:      include/uapi/linux/input.h
5433 F:      include/linux/input/
5434
5435 INPUT MULTITOUCH (MT) PROTOCOL
5436 M:      Henrik Rydberg <rydberg@bitmath.org>
5437 L:      linux-input@vger.kernel.org
5438 S:      Odd fixes
5439 F:      Documentation/input/multi-touch-protocol.txt
5440 F:      drivers/input/input-mt.c
5441 K:      \b(ABS|SYN)_MT_
5442
5443 INTEL ASoC BDW/HSW DRIVERS
5444 M:      Jie Yang <yang.jie@linux.intel.com>
5445 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5446 S:      Supported
5447 F:      sound/soc/intel/common/sst-dsp*
5448 F:      sound/soc/intel/common/sst-firmware.c
5449 F:      sound/soc/intel/boards/broadwell.c
5450 F:      sound/soc/intel/haswell/
5451
5452 INTEL C600 SERIES SAS CONTROLLER DRIVER
5453 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5454 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5455 L:      linux-scsi@vger.kernel.org
5456 T:      git git://git.code.sf.net/p/intel-sas/isci
5457 S:      Supported
5458 F:      drivers/scsi/isci/
5459
5460 INTEL IDLE DRIVER
5461 M:      Len Brown <lenb@kernel.org>
5462 L:      linux-pm@vger.kernel.org
5463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5464 S:      Supported
5465 F:      drivers/idle/intel_idle.c
5466
5467 INTEL PSTATE DRIVER
5468 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5469 L:      linux-pm@vger.kernel.org
5470 S:      Supported
5471 F:      drivers/cpufreq/intel_pstate.c
5472
5473 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5474 M:      Maik Broemme <mbroemme@plusserver.de>
5475 L:      linux-fbdev@vger.kernel.org
5476 S:      Maintained
5477 F:      Documentation/fb/intelfb.txt
5478 F:      drivers/video/fbdev/intelfb/
5479
5480 INTEL 810/815 FRAMEBUFFER DRIVER
5481 M:      Antonino Daplas <adaplas@gmail.com>
5482 L:      linux-fbdev@vger.kernel.org
5483 S:      Maintained
5484 F:      drivers/video/fbdev/i810/
5485
5486 INTEL MENLOW THERMAL DRIVER
5487 M:      Sujith Thomas <sujith.thomas@intel.com>
5488 L:      platform-driver-x86@vger.kernel.org
5489 W:      https://01.org/linux-acpi
5490 S:      Supported
5491 F:      drivers/platform/x86/intel_menlow.c
5492
5493 INTEL I/OAT DMA DRIVER
5494 M:      Dave Jiang <dave.jiang@intel.com>
5495 R:      Dan Williams <dan.j.williams@intel.com>
5496 L:      dmaengine@vger.kernel.org
5497 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5498 S:      Supported
5499 F:      drivers/dma/ioat*
5500
5501 INTEL IOMMU (VT-d)
5502 M:      David Woodhouse <dwmw2@infradead.org>
5503 L:      iommu@lists.linux-foundation.org
5504 T:      git git://git.infradead.org/iommu-2.6.git
5505 S:      Supported
5506 F:      drivers/iommu/intel-iommu.c
5507 F:      include/linux/intel-iommu.h
5508
5509 INTEL IOP-ADMA DMA DRIVER
5510 R:      Dan Williams <dan.j.williams@intel.com>
5511 S:      Odd fixes
5512 F:      drivers/dma/iop-adma.c
5513
5514 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5515 M:      Krzysztof Halasa <khalasa@piap.pl>
5516 S:      Maintained
5517 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5518 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5519 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5520 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5521 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5522 F:      drivers/net/wan/ixp4xx_hss.c
5523
5524 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5525 M:      Deepak Saxena <dsaxena@plexity.net>
5526 S:      Maintained
5527 F:      drivers/char/hw_random/ixp4xx-rng.c
5528
5529 INTEL ETHERNET DRIVERS
5530 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5531 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5532 R:      Shannon Nelson <shannon.nelson@intel.com>
5533 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5534 R:      Don Skidmore <donald.c.skidmore@intel.com>
5535 R:      Matthew Vick <matthew.vick@intel.com>
5536 R:      John Ronciak <john.ronciak@intel.com>
5537 R:      Mitch Williams <mitch.a.williams@intel.com>
5538 L:      intel-wired-lan@lists.osuosl.org
5539 W:      http://www.intel.com/support/feedback.htm
5540 W:      http://e1000.sourceforge.net/
5541 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5544 S:      Supported
5545 F:      Documentation/networking/e100.txt
5546 F:      Documentation/networking/e1000.txt
5547 F:      Documentation/networking/e1000e.txt
5548 F:      Documentation/networking/igb.txt
5549 F:      Documentation/networking/igbvf.txt
5550 F:      Documentation/networking/ixgb.txt
5551 F:      Documentation/networking/ixgbe.txt
5552 F:      Documentation/networking/ixgbevf.txt
5553 F:      Documentation/networking/i40e.txt
5554 F:      Documentation/networking/i40evf.txt
5555 F:      drivers/net/ethernet/intel/
5556 F:      drivers/net/ethernet/intel/*/
5557
5558 INTEL-MID GPIO DRIVER
5559 M:      David Cohen <david.a.cohen@linux.intel.com>
5560 L:      linux-gpio@vger.kernel.org
5561 S:      Maintained
5562 F:      drivers/gpio/gpio-intel-mid.c
5563
5564 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5565 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5566 L:      linux-wireless@vger.kernel.org
5567 S:      Maintained
5568 F:      Documentation/networking/README.ipw2100
5569 F:      Documentation/networking/README.ipw2200
5570 F:      drivers/net/wireless/ipw2x00/
5571
5572 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5573 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5574 M:      Gang Wei <gang.wei@intel.com>
5575 M:      Shane Wang <shane.wang@intel.com>
5576 L:      tboot-devel@lists.sourceforge.net
5577 W:      http://tboot.sourceforge.net
5578 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5579 S:      Supported
5580 F:      Documentation/intel_txt.txt
5581 F:      include/linux/tboot.h
5582 F:      arch/x86/kernel/tboot.c
5583
5584 INTEL WIRELESS WIMAX CONNECTION 2400
5585 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5586 M:      linux-wimax@intel.com
5587 L:      wimax@linuxwimax.org (subscribers-only)
5588 S:      Supported
5589 W:      http://linuxwimax.org
5590 F:      Documentation/wimax/README.i2400m
5591 F:      drivers/net/wimax/i2400m/
5592 F:      include/uapi/linux/wimax/i2400m.h
5593
5594 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5595 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5596 L:      linux-wireless@vger.kernel.org
5597 S:      Supported
5598 F:      drivers/net/wireless/iwlegacy/
5599
5600 INTEL WIRELESS WIFI LINK (iwlwifi)
5601 M:      Johannes Berg <johannes.berg@intel.com>
5602 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5603 M:      Intel Linux Wireless <linuxwifi@intel.com>
5604 L:      linux-wireless@vger.kernel.org
5605 W:      http://intellinuxwireless.org
5606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5607 S:      Supported
5608 F:      drivers/net/wireless/iwlwifi/
5609
5610 INTEL MANAGEMENT ENGINE (mei)
5611 M:      Tomas Winkler <tomas.winkler@intel.com>
5612 L:      linux-kernel@vger.kernel.org
5613 S:      Supported
5614 F:      include/uapi/linux/mei.h
5615 F:      include/linux/mei_cl_bus.h
5616 F:      drivers/misc/mei/*
5617 F:      Documentation/misc-devices/mei/*
5618
5619 INTEL PMC IPC DRIVER
5620 M:      Zha Qipeng<qipeng.zha@intel.com>
5621 L:      platform-driver-x86@vger.kernel.org
5622 S:      Maintained
5623 F:      drivers/platform/x86/intel_pmc_ipc.c
5624 F:      arch/x86/include/asm/intel_pmc_ipc.h
5625
5626 IOC3 ETHERNET DRIVER
5627 M:      Ralf Baechle <ralf@linux-mips.org>
5628 L:      linux-mips@linux-mips.org
5629 S:      Maintained
5630 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5631
5632 IOC3 SERIAL DRIVER
5633 M:      Pat Gefre <pfg@sgi.com>
5634 L:      linux-serial@vger.kernel.org
5635 S:      Maintained
5636 F:      drivers/tty/serial/ioc3_serial.c
5637
5638 IOMMU DRIVERS
5639 M:      Joerg Roedel <joro@8bytes.org>
5640 L:      iommu@lists.linux-foundation.org
5641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5642 S:      Maintained
5643 F:      drivers/iommu/
5644
5645 IP MASQUERADING
5646 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5647 S:      Maintained
5648 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5649
5650 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5651 M:      Francois Romieu <romieu@fr.zoreil.com>
5652 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5653 L:      netdev@vger.kernel.org
5654 S:      Maintained
5655 F:      drivers/net/ethernet/icplus/ipg.*
5656
5657 IPATH DRIVER
5658 M:      Mike Marciniszyn <infinipath@intel.com>
5659 L:      linux-rdma@vger.kernel.org
5660 S:      Maintained
5661 F:      drivers/staging/rdma/ipath/
5662
5663 IPMI SUBSYSTEM
5664 M:      Corey Minyard <minyard@acm.org>
5665 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5666 W:      http://openipmi.sourceforge.net/
5667 S:      Supported
5668 F:      Documentation/IPMI.txt
5669 F:      drivers/char/ipmi/
5670 F:      include/linux/ipmi*
5671 F:      include/uapi/linux/ipmi*
5672
5673 QCOM AUDIO (ASoC) DRIVERS
5674 M:      Patrick Lai <plai@codeaurora.org>
5675 M:      Banajit Goswami <bgoswami@codeaurora.org>
5676 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5677 S:      Supported
5678 F:      sound/soc/qcom/
5679
5680 IPS SCSI RAID DRIVER
5681 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5682 L:      linux-scsi@vger.kernel.org
5683 W:      http://www.adaptec.com/
5684 S:      Maintained
5685 F:      drivers/scsi/ips*
5686
5687 IPVS
5688 M:      Wensong Zhang <wensong@linux-vs.org>
5689 M:      Simon Horman <horms@verge.net.au>
5690 M:      Julian Anastasov <ja@ssi.bg>
5691 L:      netdev@vger.kernel.org
5692 L:      lvs-devel@vger.kernel.org
5693 S:      Maintained
5694 F:      Documentation/networking/ipvs-sysctl.txt
5695 F:      include/net/ip_vs.h
5696 F:      include/uapi/linux/ip_vs.h
5697 F:      net/netfilter/ipvs/
5698
5699 IPWIRELESS DRIVER
5700 M:      Jiri Kosina <jikos@kernel.org>
5701 M:      David Sterba <dsterba@suse.com>
5702 S:      Odd Fixes
5703 F:      drivers/tty/ipwireless/
5704
5705 IPX NETWORK LAYER
5706 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5707 L:      netdev@vger.kernel.org
5708 S:      Maintained
5709 F:      include/net/ipx.h
5710 F:      include/uapi/linux/ipx.h
5711 F:      net/ipx/
5712
5713 IRDA SUBSYSTEM
5714 M:      Samuel Ortiz <samuel@sortiz.org>
5715 L:      irda-users@lists.sourceforge.net (subscribers-only)
5716 L:      netdev@vger.kernel.org
5717 W:      http://irda.sourceforge.net/
5718 S:      Maintained
5719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5720 F:      Documentation/networking/irda.txt
5721 F:      drivers/net/irda/
5722 F:      include/net/irda/
5723 F:      net/irda/
5724
5725 IRQ SUBSYSTEM
5726 M:      Thomas Gleixner <tglx@linutronix.de>
5727 L:      linux-kernel@vger.kernel.org
5728 S:      Maintained
5729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5730 F:      kernel/irq/
5731
5732 IRQCHIP DRIVERS
5733 M:      Thomas Gleixner <tglx@linutronix.de>
5734 M:      Jason Cooper <jason@lakedaemon.net>
5735 M:      Marc Zyngier <marc.zyngier@arm.com>
5736 L:      linux-kernel@vger.kernel.org
5737 S:      Maintained
5738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5739 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5740 F:      Documentation/devicetree/bindings/interrupt-controller/
5741 F:      drivers/irqchip/
5742
5743 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5744 M:      Jiang Liu <jiang.liu@linux.intel.com>
5745 M:      Marc Zyngier <marc.zyngier@arm.com>
5746 S:      Maintained
5747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5748 F:      Documentation/IRQ-domain.txt
5749 F:      include/linux/irqdomain.h
5750 F:      kernel/irq/irqdomain.c
5751 F:      kernel/irq/msi.c
5752
5753 ISAPNP
5754 M:      Jaroslav Kysela <perex@perex.cz>
5755 S:      Maintained
5756 F:      Documentation/isapnp.txt
5757 F:      drivers/pnp/isapnp/
5758 F:      include/linux/isapnp.h
5759
5760 ISA RADIO MODULE
5761 M:      Hans Verkuil <hverkuil@xs4all.nl>
5762 L:      linux-media@vger.kernel.org
5763 T:      git git://linuxtv.org/media_tree.git
5764 W:      http://linuxtv.org
5765 S:      Maintained
5766 F:      drivers/media/radio/radio-isa*
5767
5768 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5769 M:      Peter Jones <pjones@redhat.com>
5770 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5771 S:      Maintained
5772 F:      drivers/firmware/iscsi_ibft*
5773
5774 ISCSI
5775 M:      Mike Christie <michaelc@cs.wisc.edu>
5776 L:      open-iscsi@googlegroups.com
5777 W:      www.open-iscsi.org
5778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5779 S:      Maintained
5780 F:      drivers/scsi/*iscsi*
5781 F:      include/scsi/*iscsi*
5782
5783 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5784 M:      Or Gerlitz <ogerlitz@mellanox.com>
5785 M:      Sagi Grimberg <sagig@mellanox.com>
5786 M:      Roi Dayan <roid@mellanox.com>
5787 L:      linux-rdma@vger.kernel.org
5788 S:      Supported
5789 W:      http://www.openfabrics.org
5790 W:      www.open-iscsi.org
5791 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5792 F:      drivers/infiniband/ulp/iser/
5793
5794 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5795 M:      Sagi Grimberg <sagig@mellanox.com>
5796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5797 L:      linux-rdma@vger.kernel.org
5798 L:      target-devel@vger.kernel.org
5799 S:      Supported
5800 W:      http://www.linux-iscsi.org
5801 F:      drivers/infiniband/ulp/isert
5802
5803 ISDN SUBSYSTEM
5804 M:      Karsten Keil <isdn@linux-pingi.de>
5805 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5806 L:      netdev@vger.kernel.org
5807 W:      http://www.isdn4linux.de
5808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5809 S:      Maintained
5810 F:      Documentation/isdn/
5811 F:      drivers/isdn/
5812 F:      include/linux/isdn.h
5813 F:      include/linux/isdn/
5814 F:      include/uapi/linux/isdn.h
5815 F:      include/uapi/linux/isdn/
5816
5817 ISDN SUBSYSTEM (Eicon active card driver)
5818 M:      Armin Schindler <mac@melware.de>
5819 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5820 W:      http://www.melware.de
5821 S:      Maintained
5822 F:      drivers/isdn/hardware/eicon/
5823
5824 IT87 HARDWARE MONITORING DRIVER
5825 M:      Jean Delvare <jdelvare@suse.com>
5826 L:      lm-sensors@lm-sensors.org
5827 S:      Maintained
5828 F:      Documentation/hwmon/it87
5829 F:      drivers/hwmon/it87.c
5830
5831 IT913X MEDIA DRIVER
5832 M:      Antti Palosaari <crope@iki.fi>
5833 L:      linux-media@vger.kernel.org
5834 W:      http://linuxtv.org/
5835 W:      http://palosaari.fi/linux/
5836 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5837 T:      git git://linuxtv.org/anttip/media_tree.git
5838 S:      Maintained
5839 F:      drivers/media/tuners/it913x*
5840
5841 IVTV VIDEO4LINUX DRIVER
5842 M:      Andy Walls <awalls@md.metrocast.net>
5843 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5844 L:      linux-media@vger.kernel.org
5845 T:      git git://linuxtv.org/media_tree.git
5846 W:      http://www.ivtvdriver.org
5847 S:      Maintained
5848 F:      Documentation/video4linux/*.ivtv
5849 F:      drivers/media/pci/ivtv/
5850 F:      include/uapi/linux/ivtv*
5851
5852 IX2505V MEDIA DRIVER
5853 M:      Malcolm Priestley <tvboxspy@gmail.com>
5854 L:      linux-media@vger.kernel.org
5855 W:      http://linuxtv.org/
5856 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5857 S:      Maintained
5858 F:      drivers/media/dvb-frontends/ix2505v*
5859
5860 JC42.4 TEMPERATURE SENSOR DRIVER
5861 M:      Guenter Roeck <linux@roeck-us.net>
5862 L:      lm-sensors@lm-sensors.org
5863 S:      Maintained
5864 F:      drivers/hwmon/jc42.c
5865 F:      Documentation/hwmon/jc42
5866
5867 JFS FILESYSTEM
5868 M:      Dave Kleikamp <shaggy@kernel.org>
5869 L:      jfs-discussion@lists.sourceforge.net
5870 W:      http://jfs.sourceforge.net/
5871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5872 S:      Maintained
5873 F:      Documentation/filesystems/jfs.txt
5874 F:      fs/jfs/
5875
5876 JME NETWORK DRIVER
5877 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5878 L:      netdev@vger.kernel.org
5879 S:      Maintained
5880 F:      drivers/net/ethernet/jme.*
5881
5882 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5883 M:      David Woodhouse <dwmw2@infradead.org>
5884 L:      linux-mtd@lists.infradead.org
5885 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5886 S:      Maintained
5887 F:      fs/jffs2/
5888 F:      include/uapi/linux/jffs2.h
5889
5890 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5891 M:      "Theodore Ts'o" <tytso@mit.edu>
5892 M:      Jan Kara <jack@suse.com>
5893 L:      linux-ext4@vger.kernel.org
5894 S:      Maintained
5895 F:      fs/jbd2/
5896 F:      include/linux/jbd2.h
5897
5898 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5899 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5900 L:      linux-media@vger.kernel.org
5901 S:      Maintained
5902 F:      drivers/media/platform/rcar_jpu.c
5903
5904 JSM Neo PCI based serial card
5905 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5906 L:      linux-serial@vger.kernel.org
5907 S:      Maintained
5908 F:      drivers/tty/serial/jsm/
5909
5910 K10TEMP HARDWARE MONITORING DRIVER
5911 M:      Clemens Ladisch <clemens@ladisch.de>
5912 L:      lm-sensors@lm-sensors.org
5913 S:      Maintained
5914 F:      Documentation/hwmon/k10temp
5915 F:      drivers/hwmon/k10temp.c
5916
5917 K8TEMP HARDWARE MONITORING DRIVER
5918 M:      Rudolf Marek <r.marek@assembler.cz>
5919 L:      lm-sensors@lm-sensors.org
5920 S:      Maintained
5921 F:      Documentation/hwmon/k8temp
5922 F:      drivers/hwmon/k8temp.c
5923
5924 KCONFIG
5925 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5926 L:      linux-kbuild@vger.kernel.org
5927 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5928 S:      Maintained
5929 F:      Documentation/kbuild/kconfig-language.txt
5930 F:      scripts/kconfig/
5931
5932 KDUMP
5933 M:      Vivek Goyal <vgoyal@redhat.com>
5934 M:      Haren Myneni <hbabu@us.ibm.com>
5935 L:      kexec@lists.infradead.org
5936 W:      http://lse.sourceforge.net/kdump/
5937 S:      Maintained
5938 F:      Documentation/kdump/
5939
5940 KEENE FM RADIO TRANSMITTER DRIVER
5941 M:      Hans Verkuil <hverkuil@xs4all.nl>
5942 L:      linux-media@vger.kernel.org
5943 T:      git git://linuxtv.org/media_tree.git
5944 W:      http://linuxtv.org
5945 S:      Maintained
5946 F:      drivers/media/radio/radio-keene*
5947
5948 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5949 M:      Ian Kent <raven@themaw.net>
5950 L:      autofs@vger.kernel.org
5951 S:      Maintained
5952 F:      fs/autofs4/
5953
5954 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5955 M:      Michal Marek <mmarek@suse.com>
5956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5958 L:      linux-kbuild@vger.kernel.org
5959 S:      Maintained
5960 F:      Documentation/kbuild/
5961 F:      Makefile
5962 F:      scripts/Makefile.*
5963 F:      scripts/basic/
5964 F:      scripts/mk*
5965 F:      scripts/package/
5966
5967 KERNEL JANITORS
5968 L:      kernel-janitors@vger.kernel.org
5969 W:      http://kernelnewbies.org/KernelJanitors
5970 S:      Odd Fixes
5971
5972 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5973 M:      "J. Bruce Fields" <bfields@fieldses.org>
5974 M:      Jeff Layton <jlayton@poochiereds.net>
5975 L:      linux-nfs@vger.kernel.org
5976 W:      http://nfs.sourceforge.net/
5977 S:      Supported
5978 F:      fs/nfsd/
5979 F:      include/uapi/linux/nfsd/
5980 F:      fs/lockd/
5981 F:      fs/nfs_common/
5982 F:      net/sunrpc/
5983 F:      include/linux/lockd/
5984 F:      include/linux/sunrpc/
5985 F:      include/uapi/linux/sunrpc/
5986
5987 KERNEL SELFTEST FRAMEWORK
5988 M:      Shuah Khan <shuahkh@osg.samsung.com>
5989 L:      linux-api@vger.kernel.org
5990 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5991 S:      Maintained
5992 F:      tools/testing/selftests
5993
5994 KERNEL VIRTUAL MACHINE (KVM)
5995 M:      Gleb Natapov <gleb@kernel.org>
5996 M:      Paolo Bonzini <pbonzini@redhat.com>
5997 L:      kvm@vger.kernel.org
5998 W:      http://www.linux-kvm.org
5999 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6000 S:      Supported
6001 F:      Documentation/*/kvm*.txt
6002 F:      Documentation/virtual/kvm/
6003 F:      arch/*/kvm/
6004 F:      arch/x86/kernel/kvm.c
6005 F:      arch/x86/kernel/kvmclock.c
6006 F:      arch/*/include/asm/kvm*
6007 F:      include/linux/kvm*
6008 F:      include/uapi/linux/kvm*
6009 F:      virt/kvm/
6010
6011 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6012 M:      Joerg Roedel <joro@8bytes.org>
6013 L:      kvm@vger.kernel.org
6014 W:      http://www.linux-kvm.org/
6015 S:      Maintained
6016 F:      arch/x86/include/asm/svm.h
6017 F:      arch/x86/kvm/svm.c
6018
6019 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6020 M:      Alexander Graf <agraf@suse.com>
6021 L:      kvm-ppc@vger.kernel.org
6022 W:      http://www.linux-kvm.org/
6023 T:      git git://github.com/agraf/linux-2.6.git
6024 S:      Supported
6025 F:      arch/powerpc/include/asm/kvm*
6026 F:      arch/powerpc/kvm/
6027
6028 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6029 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6030 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6031 L:      linux-s390@vger.kernel.org
6032 W:      http://www.ibm.com/developerworks/linux/linux390/
6033 S:      Supported
6034 F:      Documentation/s390/kvm.txt
6035 F:      arch/s390/include/asm/kvm*
6036 F:      arch/s390/kvm/
6037
6038 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6039 M:      Christoffer Dall <christoffer.dall@linaro.org>
6040 M:      Marc Zyngier <marc.zyngier@arm.com>
6041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6042 L:      kvmarm@lists.cs.columbia.edu
6043 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6044 S:      Supported
6045 F:      arch/arm/include/uapi/asm/kvm*
6046 F:      arch/arm/include/asm/kvm*
6047 F:      arch/arm/kvm/
6048 F:      virt/kvm/arm/
6049 F:      include/kvm/arm_*
6050
6051 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6052 M:      Christoffer Dall <christoffer.dall@linaro.org>
6053 M:      Marc Zyngier <marc.zyngier@arm.com>
6054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6055 L:      kvmarm@lists.cs.columbia.edu
6056 S:      Maintained
6057 F:      arch/arm64/include/uapi/asm/kvm*
6058 F:      arch/arm64/include/asm/kvm*
6059 F:      arch/arm64/kvm/
6060
6061 KEXEC
6062 M:      Eric Biederman <ebiederm@xmission.com>
6063 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6064 L:      kexec@lists.infradead.org
6065 S:      Maintained
6066 F:      include/linux/kexec.h
6067 F:      include/uapi/linux/kexec.h
6068 F:      kernel/kexec.c
6069
6070 KEYS/KEYRINGS:
6071 M:      David Howells <dhowells@redhat.com>
6072 L:      keyrings@vger.kernel.org
6073 S:      Maintained
6074 F:      Documentation/security/keys.txt
6075 F:      include/linux/key.h
6076 F:      include/linux/key-type.h
6077 F:      include/keys/
6078 F:      security/keys/
6079
6080 KEYS-TRUSTED
6081 M:      David Safford <safford@us.ibm.com>
6082 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6083 L:      linux-security-module@vger.kernel.org
6084 L:      keyrings@vger.kernel.org
6085 S:      Supported
6086 F:      Documentation/security/keys-trusted-encrypted.txt
6087 F:      include/keys/trusted-type.h
6088 F:      security/keys/trusted.c
6089 F:      security/keys/trusted.h
6090
6091 KEYS-ENCRYPTED
6092 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6093 M:      David Safford <safford@us.ibm.com>
6094 L:      linux-security-module@vger.kernel.org
6095 L:      keyrings@vger.kernel.org
6096 S:      Supported
6097 F:      Documentation/security/keys-trusted-encrypted.txt
6098 F:      include/keys/encrypted-type.h
6099 F:      security/keys/encrypted-keys/
6100
6101 KGDB / KDB /debug_core
6102 M:      Jason Wessel <jason.wessel@windriver.com>
6103 W:      http://kgdb.wiki.kernel.org/
6104 L:      kgdb-bugreport@lists.sourceforge.net
6105 S:      Maintained
6106 F:      Documentation/DocBook/kgdb.tmpl
6107 F:      drivers/misc/kgdbts.c
6108 F:      drivers/tty/serial/kgdboc.c
6109 F:      include/linux/kdb.h
6110 F:      include/linux/kgdb.h
6111 F:      kernel/debug/
6112
6113 KMEMCHECK
6114 M:      Vegard Nossum <vegardno@ifi.uio.no>
6115 M:      Pekka Enberg <penberg@kernel.org>
6116 S:      Maintained
6117 F:      Documentation/kmemcheck.txt
6118 F:      arch/x86/include/asm/kmemcheck.h
6119 F:      arch/x86/mm/kmemcheck/
6120 F:      include/linux/kmemcheck.h
6121 F:      mm/kmemcheck.c
6122
6123 KMEMLEAK
6124 M:      Catalin Marinas <catalin.marinas@arm.com>
6125 S:      Maintained
6126 F:      Documentation/kmemleak.txt
6127 F:      include/linux/kmemleak.h
6128 F:      mm/kmemleak.c
6129 F:      mm/kmemleak-test.c
6130
6131 KPROBES
6132 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6133 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6134 M:      "David S. Miller" <davem@davemloft.net>
6135 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6136 S:      Maintained
6137 F:      Documentation/kprobes.txt
6138 F:      include/linux/kprobes.h
6139 F:      kernel/kprobes.c
6140
6141 KS0108 LCD CONTROLLER DRIVER
6142 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6143 W:      http://miguelojeda.es/auxdisplay.htm
6144 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6145 S:      Maintained
6146 F:      Documentation/auxdisplay/ks0108
6147 F:      drivers/auxdisplay/ks0108.c
6148 F:      include/linux/ks0108.h
6149
6150 L3MDEV
6151 M:      David Ahern <dsa@cumulusnetworks.com>
6152 L:      netdev@vger.kernel.org
6153 S:      Maintained
6154 F:      net/l3mdev
6155 F:      include/net/l3mdev.h
6156
6157 LAPB module
6158 L:      linux-x25@vger.kernel.org
6159 S:      Orphan
6160 F:      Documentation/networking/lapb-module.txt
6161 F:      include/*/lapb.h
6162 F:      net/lapb/
6163
6164 LASI 53c700 driver for PARISC
6165 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6166 L:      linux-scsi@vger.kernel.org
6167 S:      Maintained
6168 F:      Documentation/scsi/53c700.txt
6169 F:      drivers/scsi/53c700*
6170
6171 LED SUBSYSTEM
6172 M:      Richard Purdie <rpurdie@rpsys.net>
6173 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6174 L:      linux-leds@vger.kernel.org
6175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6176 S:      Maintained
6177 F:      drivers/leds/
6178 F:      include/linux/leds.h
6179
6180 LEGACY EEPROM DRIVER
6181 M:      Jean Delvare <jdelvare@suse.com>
6182 S:      Maintained
6183 F:      Documentation/misc-devices/eeprom
6184 F:      drivers/misc/eeprom/eeprom.c
6185
6186 LEGO USB Tower driver
6187 M:      Juergen Stuber <starblue@users.sourceforge.net>
6188 L:      legousb-devel@lists.sourceforge.net
6189 W:      http://legousb.sourceforge.net/
6190 S:      Maintained
6191 F:      drivers/usb/misc/legousbtower.c
6192
6193 LG2160 MEDIA DRIVER
6194 M:      Michael Krufky <mkrufky@linuxtv.org>
6195 L:      linux-media@vger.kernel.org
6196 W:      http://linuxtv.org/
6197 W:      http://github.com/mkrufky
6198 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6199 T:      git git://linuxtv.org/mkrufky/tuners.git
6200 S:      Maintained
6201 F:      drivers/media/dvb-frontends/lg2160.*
6202
6203 LGDT3305 MEDIA DRIVER
6204 M:      Michael Krufky <mkrufky@linuxtv.org>
6205 L:      linux-media@vger.kernel.org
6206 W:      http://linuxtv.org/
6207 W:      http://github.com/mkrufky
6208 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6209 T:      git git://linuxtv.org/mkrufky/tuners.git
6210 S:      Maintained
6211 F:      drivers/media/dvb-frontends/lgdt3305.*
6212
6213 LGUEST
6214 M:      Rusty Russell <rusty@rustcorp.com.au>
6215 L:      lguest@lists.ozlabs.org
6216 W:      http://lguest.ozlabs.org/
6217 S:      Odd Fixes
6218 F:      arch/x86/include/asm/lguest*.h
6219 F:      arch/x86/lguest/
6220 F:      drivers/lguest/
6221 F:      include/linux/lguest*.h
6222 F:      tools/lguest/
6223
6224 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6225 M:      Tejun Heo <tj@kernel.org>
6226 L:      linux-ide@vger.kernel.org
6227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6228 S:      Maintained
6229 F:      drivers/ata/
6230 F:      include/linux/ata.h
6231 F:      include/linux/libata.h
6232
6233 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6234 M:      Viresh Kumar <vireshk@kernel.org>
6235 L:      linux-ide@vger.kernel.org
6236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6237 S:      Maintained
6238 F:      include/linux/pata_arasan_cf_data.h
6239 F:      drivers/ata/pata_arasan_cf.c
6240
6241 LIBATA PATA DRIVERS
6242 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6243 M:      Tejun Heo <tj@kernel.org>
6244 L:      linux-ide@vger.kernel.org
6245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6246 S:      Maintained
6247 F:      drivers/ata/pata_*.c
6248 F:      drivers/ata/ata_generic.c
6249
6250 LIBATA SATA AHCI PLATFORM devices support
6251 M:      Hans de Goede <hdegoede@redhat.com>
6252 M:      Tejun Heo <tj@kernel.org>
6253 L:      linux-ide@vger.kernel.org
6254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6255 S:      Maintained
6256 F:      drivers/ata/ahci_platform.c
6257 F:      drivers/ata/libahci_platform.c
6258 F:      include/linux/ahci_platform.h
6259
6260 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6261 M:      Mikael Pettersson <mikpelinux@gmail.com>
6262 L:      linux-ide@vger.kernel.org
6263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6264 S:      Maintained
6265 F:      drivers/ata/sata_promise.*
6266
6267 LIBLOCKDEP
6268 M:      Sasha Levin <sasha.levin@oracle.com>
6269 S:      Maintained
6270 F:      tools/lib/lockdep/
6271
6272 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6273 M:      Dan Williams <dan.j.williams@intel.com>
6274 L:      linux-nvdimm@lists.01.org
6275 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6276 S:      Supported
6277 F:      drivers/nvdimm/*
6278 F:      include/linux/nd.h
6279 F:      include/linux/libnvdimm.h
6280 F:      include/uapi/linux/ndctl.h
6281
6282 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6283 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6284 L:      linux-nvdimm@lists.01.org
6285 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6286 S:      Supported
6287 F:      drivers/nvdimm/blk.c
6288 F:      drivers/nvdimm/region_devs.c
6289 F:      drivers/acpi/nfit*
6290
6291 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6292 M:      Vishal Verma <vishal.l.verma@intel.com>
6293 L:      linux-nvdimm@lists.01.org
6294 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6295 S:      Supported
6296 F:      drivers/nvdimm/btt*
6297
6298 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6299 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6300 L:      linux-nvdimm@lists.01.org
6301 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6302 S:      Supported
6303 F:      drivers/nvdimm/pmem.c
6304 F:      include/linux/pmem.h
6305 F:      arch/*/include/asm/pmem.h
6306
6307 LINUX FOR IBM pSERIES (RS/6000)
6308 M:      Paul Mackerras <paulus@au.ibm.com>
6309 W:      http://www.ibm.com/linux/ltc/projects/ppc
6310 S:      Supported
6311 F:      arch/powerpc/boot/rs6000.h
6312
6313 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6314 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6315 M:      Paul Mackerras <paulus@samba.org>
6316 M:      Michael Ellerman <mpe@ellerman.id.au>
6317 W:      http://www.penguinppc.org/
6318 L:      linuxppc-dev@lists.ozlabs.org
6319 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6321 S:      Supported
6322 F:      Documentation/powerpc/
6323 F:      arch/powerpc/
6324
6325 LINUX FOR POWER MACINTOSH
6326 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6327 W:      http://www.penguinppc.org/
6328 L:      linuxppc-dev@lists.ozlabs.org
6329 S:      Maintained
6330 F:      arch/powerpc/platforms/powermac/
6331 F:      drivers/macintosh/
6332
6333 LINUX FOR POWERPC EMBEDDED MPC5XXX
6334 M:      Anatolij Gustschin <agust@denx.de>
6335 L:      linuxppc-dev@lists.ozlabs.org
6336 T:      git git://git.denx.de/linux-denx-agust.git
6337 S:      Maintained
6338 F:      arch/powerpc/platforms/512x/
6339 F:      arch/powerpc/platforms/52xx/
6340
6341 LINUX FOR POWERPC EMBEDDED PPC4XX
6342 M:      Alistair Popple <alistair@popple.id.au>
6343 M:      Matt Porter <mporter@kernel.crashing.org>
6344 W:      http://www.penguinppc.org/
6345 L:      linuxppc-dev@lists.ozlabs.org
6346 S:      Maintained
6347 F:      arch/powerpc/platforms/40x/
6348 F:      arch/powerpc/platforms/44x/
6349
6350 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6351 L:      linuxppc-dev@lists.ozlabs.org
6352 S:      Orphan
6353 F:      arch/powerpc/*/*virtex*
6354 F:      arch/powerpc/*/*/*virtex*
6355
6356 LINUX FOR POWERPC EMBEDDED PPC8XX
6357 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6358 W:      http://www.penguinppc.org/
6359 L:      linuxppc-dev@lists.ozlabs.org
6360 S:      Maintained
6361 F:      arch/powerpc/platforms/8xx/
6362
6363 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6364 M:      Scott Wood <scottwood@freescale.com>
6365 M:      Kumar Gala <galak@kernel.crashing.org>
6366 W:      http://www.penguinppc.org/
6367 L:      linuxppc-dev@lists.ozlabs.org
6368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6369 S:      Maintained
6370 F:      arch/powerpc/platforms/83xx/
6371 F:      arch/powerpc/platforms/85xx/
6372
6373 LINUX FOR POWERPC PA SEMI PWRFICIENT
6374 M:      Olof Johansson <olof@lixom.net>
6375 L:      linuxppc-dev@lists.ozlabs.org
6376 S:      Maintained
6377 F:      arch/powerpc/platforms/pasemi/
6378 F:      drivers/*/*pasemi*
6379 F:      drivers/*/*/*pasemi*
6380
6381 LINUX SECURITY MODULE (LSM) FRAMEWORK
6382 M:      Chris Wright <chrisw@sous-sol.org>
6383 L:      linux-security-module@vger.kernel.org
6384 S:      Supported
6385
6386 LIS3LV02D ACCELEROMETER DRIVER
6387 M:      Eric Piel <eric.piel@tremplin-utc.net>
6388 S:      Maintained
6389 F:      Documentation/misc-devices/lis3lv02d
6390 F:      drivers/misc/lis3lv02d/
6391 F:      drivers/platform/x86/hp_accel.c
6392
6393 LIVE PATCHING
6394 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6395 M:      Seth Jennings <sjenning@redhat.com>
6396 M:      Jiri Kosina <jikos@kernel.org>
6397 M:      Vojtech Pavlik <vojtech@suse.com>
6398 S:      Maintained
6399 F:      kernel/livepatch/
6400 F:      include/linux/livepatch.h
6401 F:      arch/x86/include/asm/livepatch.h
6402 F:      arch/x86/kernel/livepatch.c
6403 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6404 F:      samples/livepatch/
6405 L:      live-patching@vger.kernel.org
6406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6407
6408 LLC (802.2)
6409 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6410 S:      Maintained
6411 F:      include/linux/llc.h
6412 F:      include/uapi/linux/llc.h
6413 F:      include/net/llc*
6414 F:      net/llc/
6415
6416 LM73 HARDWARE MONITOR DRIVER
6417 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6418 L:      lm-sensors@lm-sensors.org
6419 S:      Maintained
6420 F:      drivers/hwmon/lm73.c
6421
6422 LM78 HARDWARE MONITOR DRIVER
6423 M:      Jean Delvare <jdelvare@suse.com>
6424 L:      lm-sensors@lm-sensors.org
6425 S:      Maintained
6426 F:      Documentation/hwmon/lm78
6427 F:      drivers/hwmon/lm78.c
6428
6429 LM83 HARDWARE MONITOR DRIVER
6430 M:      Jean Delvare <jdelvare@suse.com>
6431 L:      lm-sensors@lm-sensors.org
6432 S:      Maintained
6433 F:      Documentation/hwmon/lm83
6434 F:      drivers/hwmon/lm83.c
6435
6436 LM90 HARDWARE MONITOR DRIVER
6437 M:      Jean Delvare <jdelvare@suse.com>
6438 L:      lm-sensors@lm-sensors.org
6439 S:      Maintained
6440 F:      Documentation/hwmon/lm90
6441 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6442 F:      drivers/hwmon/lm90.c
6443
6444 LM95234 HARDWARE MONITOR DRIVER
6445 M:      Guenter Roeck <linux@roeck-us.net>
6446 L:      lm-sensors@lm-sensors.org
6447 S:      Maintained
6448 F:      Documentation/hwmon/lm95234
6449 F:      drivers/hwmon/lm95234.c
6450
6451 LME2510 MEDIA DRIVER
6452 M:      Malcolm Priestley <tvboxspy@gmail.com>
6453 L:      linux-media@vger.kernel.org
6454 W:      http://linuxtv.org/
6455 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6456 S:      Maintained
6457 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6458
6459 LOCKDEP AND LOCKSTAT
6460 M:      Peter Zijlstra <peterz@infradead.org>
6461 M:      Ingo Molnar <mingo@redhat.com>
6462 L:      linux-kernel@vger.kernel.org
6463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6464 S:      Maintained
6465 F:      Documentation/locking/lockdep*.txt
6466 F:      Documentation/locking/lockstat.txt
6467 F:      include/linux/lockdep.h
6468 F:      kernel/locking/
6469
6470 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6471 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6472 L:      linux-ntfs-dev@lists.sourceforge.net
6473 W:      http://www.linux-ntfs.org/content/view/19/37/
6474 S:      Maintained
6475 F:      Documentation/ldm.txt
6476 F:      block/partitions/ldm.*
6477
6478 LogFS
6479 M:      Joern Engel <joern@logfs.org>
6480 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6481 L:      logfs@logfs.org
6482 W:      logfs.org
6483 S:      Maintained
6484 F:      fs/logfs/
6485
6486 LPC32XX MACHINE SUPPORT
6487 M:      Roland Stigge <stigge@antcom.de>
6488 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6489 S:      Maintained
6490 F:      arch/arm/mach-lpc32xx/
6491
6492 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6493 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6494 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6495 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6496 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6497 L:      MPT-FusionLinux.pdl@avagotech.com
6498 L:      linux-scsi@vger.kernel.org
6499 W:      http://www.lsilogic.com/support
6500 S:      Supported
6501 F:      drivers/message/fusion/
6502 F:      drivers/scsi/mpt2sas/
6503 F:      drivers/scsi/mpt3sas/
6504
6505 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6506 M:      Matthew Wilcox <matthew@wil.cx>
6507 L:      linux-scsi@vger.kernel.org
6508 S:      Maintained
6509 F:      drivers/scsi/sym53c8xx_2/
6510
6511 LTC4261 HARDWARE MONITOR DRIVER
6512 M:      Guenter Roeck <linux@roeck-us.net>
6513 L:      lm-sensors@lm-sensors.org
6514 S:      Maintained
6515 F:      Documentation/hwmon/ltc4261
6516 F:      drivers/hwmon/ltc4261.c
6517
6518 LTP (Linux Test Project)
6519 M:      Mike Frysinger <vapier@gentoo.org>
6520 M:      Cyril Hrubis <chrubis@suse.cz>
6521 M:      Wanlong Gao <wanlong.gao@gmail.com>
6522 M:      Jan Stancek <jstancek@redhat.com>
6523 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6524 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6525 L:      ltp@lists.linux.it (subscribers-only)
6526 W:      http://linux-test-project.github.io/
6527 T:      git git://github.com/linux-test-project/ltp.git
6528 S:      Maintained
6529
6530 M32R ARCHITECTURE
6531 W:      http://www.linux-m32r.org/
6532 S:      Orphan
6533 F:      arch/m32r/
6534
6535 M68K ARCHITECTURE
6536 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6537 L:      linux-m68k@lists.linux-m68k.org
6538 W:      http://www.linux-m68k.org/
6539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6540 S:      Maintained
6541 F:      arch/m68k/
6542 F:      drivers/zorro/
6543
6544 M68K ON APPLE MACINTOSH
6545 M:      Joshua Thompson <funaho@jurai.org>
6546 W:      http://www.mac.linux-m68k.org/
6547 L:      linux-m68k@lists.linux-m68k.org
6548 S:      Maintained
6549 F:      arch/m68k/mac/
6550
6551 M68K ON HP9000/300
6552 M:      Philip Blundell <philb@gnu.org>
6553 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6554 S:      Maintained
6555 F:      arch/m68k/hp300/
6556
6557 M88DS3103 MEDIA DRIVER
6558 M:      Antti Palosaari <crope@iki.fi>
6559 L:      linux-media@vger.kernel.org
6560 W:      http://linuxtv.org/
6561 W:      http://palosaari.fi/linux/
6562 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6563 T:      git git://linuxtv.org/anttip/media_tree.git
6564 S:      Maintained
6565 F:      drivers/media/dvb-frontends/m88ds3103*
6566
6567 M88RS2000 MEDIA DRIVER
6568 M:      Malcolm Priestley <tvboxspy@gmail.com>
6569 L:      linux-media@vger.kernel.org
6570 W:      http://linuxtv.org/
6571 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6572 S:      Maintained
6573 F:      drivers/media/dvb-frontends/m88rs2000*
6574
6575 MA901 MASTERKIT USB FM RADIO DRIVER
6576 M:      Alexey Klimov <klimov.linux@gmail.com>
6577 L:      linux-media@vger.kernel.org
6578 T:      git git://linuxtv.org/media_tree.git
6579 S:      Maintained
6580 F:      drivers/media/radio/radio-ma901.c
6581
6582 MAC80211
6583 M:      Johannes Berg <johannes@sipsolutions.net>
6584 L:      linux-wireless@vger.kernel.org
6585 W:      http://wireless.kernel.org/
6586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6588 S:      Maintained
6589 F:      Documentation/networking/mac80211-injection.txt
6590 F:      include/net/mac80211.h
6591 F:      net/mac80211/
6592
6593 MACVLAN DRIVER
6594 M:      Patrick McHardy <kaber@trash.net>
6595 L:      netdev@vger.kernel.org
6596 S:      Maintained
6597 F:      drivers/net/macvlan.c
6598 F:      include/linux/if_macvlan.h
6599
6600 MAILBOX API
6601 M:      Jassi Brar <jassisinghbrar@gmail.com>
6602 L:      linux-kernel@vger.kernel.org
6603 S:      Maintained
6604 F:      drivers/mailbox/
6605 F:      include/linux/mailbox_client.h
6606 F:      include/linux/mailbox_controller.h
6607
6608 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6609 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6610 W:      http://www.kernel.org/doc/man-pages
6611 L:      linux-man@vger.kernel.org
6612 S:      Maintained
6613
6614 MARVELL ARMADA DRM SUPPORT
6615 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6616 S:      Maintained
6617 F:      drivers/gpu/drm/armada/
6618
6619 MARVELL 88E6352 DSA support
6620 M:      Guenter Roeck <linux@roeck-us.net>
6621 S:      Maintained
6622 F:      drivers/net/dsa/mv88e6352.c
6623
6624 MARVELL CRYPTO DRIVER
6625 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6626 M:      Arnaud Ebalard <arno@natisbad.org>
6627 F:      drivers/crypto/marvell/
6628 S:      Maintained
6629 L:      linux-crypto@vger.kernel.org
6630
6631 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6632 M:      Mirko Lindner <mlindner@marvell.com>
6633 M:      Stephen Hemminger <stephen@networkplumber.org>
6634 L:      netdev@vger.kernel.org
6635 S:      Maintained
6636 F:      drivers/net/ethernet/marvell/sk*
6637
6638 MARVELL LIBERTAS WIRELESS DRIVER
6639 L:      libertas-dev@lists.infradead.org
6640 S:      Orphan
6641 F:      drivers/net/wireless/libertas/
6642
6643 MARVELL MV643XX ETHERNET DRIVER
6644 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6645 L:      netdev@vger.kernel.org
6646 S:      Maintained
6647 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6648 F:      include/linux/mv643xx.h
6649
6650 MARVELL MVNETA ETHERNET DRIVER
6651 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6652 L:      netdev@vger.kernel.org
6653 S:      Maintained
6654 F:      drivers/net/ethernet/marvell/mvneta.*
6655
6656 MARVELL MWIFIEX WIRELESS DRIVER
6657 M:      Amitkumar Karwar <akarwar@marvell.com>
6658 M:      Nishant Sarmukadam <nishants@marvell.com>
6659 L:      linux-wireless@vger.kernel.org
6660 S:      Maintained
6661 F:      drivers/net/wireless/mwifiex/
6662
6663 MARVELL MWL8K WIRELESS DRIVER
6664 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6665 L:      linux-wireless@vger.kernel.org
6666 S:      Odd Fixes
6667 F:      drivers/net/wireless/mwl8k.c
6668
6669 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6670 M:      Nicolas Pitre <nico@fluxnic.net>
6671 S:      Odd Fixes
6672 F:      drivers/mmc/host/mvsdio.*
6673
6674 MATROX FRAMEBUFFER DRIVER
6675 L:      linux-fbdev@vger.kernel.org
6676 S:      Orphan
6677 F:      drivers/video/fbdev/matrox/matroxfb_*
6678 F:      include/uapi/linux/matroxfb.h
6679
6680 MAX16065 HARDWARE MONITOR DRIVER
6681 M:      Guenter Roeck <linux@roeck-us.net>
6682 L:      lm-sensors@lm-sensors.org
6683 S:      Maintained
6684 F:      Documentation/hwmon/max16065
6685 F:      drivers/hwmon/max16065.c
6686
6687 MAX20751 HARDWARE MONITOR DRIVER
6688 M:      Guenter Roeck <linux@roeck-us.net>
6689 L:      lm-sensors@lm-sensors.org
6690 S:      Maintained
6691 F:      Documentation/hwmon/max20751
6692 F:      drivers/hwmon/max20751.c
6693
6694 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6695 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6696 L:      lm-sensors@lm-sensors.org
6697 S:      Maintained
6698 F:      Documentation/hwmon/max6650
6699 F:      drivers/hwmon/max6650.c
6700
6701 MAX6697 HARDWARE MONITOR DRIVER
6702 M:      Guenter Roeck <linux@roeck-us.net>
6703 L:      lm-sensors@lm-sensors.org
6704 S:      Maintained
6705 F:      Documentation/hwmon/max6697
6706 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6707 F:      drivers/hwmon/max6697.c
6708 F:      include/linux/platform_data/max6697.h
6709
6710 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6711 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6712 L:      linux-pm@vger.kernel.org
6713 S:      Supported
6714 F:      drivers/power/max14577_charger.c
6715 F:      drivers/power/max77693_charger.c
6716
6717 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6718 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6719 L:      linux-kernel@vger.kernel.org
6720 S:      Supported
6721 F:      drivers/*/*max77802.c
6722 F:      Documentation/devicetree/bindings/*/*max77802.txt
6723 F:      include/dt-bindings/*/*max77802.h
6724
6725 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6726 M:      Chanwoo Choi <cw00.choi@samsung.com>
6727 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6728 L:      linux-kernel@vger.kernel.org
6729 S:      Supported
6730 F:      drivers/*/max14577.c
6731 F:      drivers/*/max77686.c
6732 F:      drivers/*/max77693.c
6733 F:      drivers/extcon/extcon-max14577.c
6734 F:      drivers/extcon/extcon-max77693.c
6735 F:      drivers/rtc/rtc-max77686.c
6736 F:      drivers/clk/clk-max77686.c
6737 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6738 F:      Documentation/devicetree/bindings/*/max77686.txt
6739 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6740 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6741 F:      include/linux/mfd/max14577*.h
6742 F:      include/linux/mfd/max77686*.h
6743 F:      include/linux/mfd/max77693*.h
6744
6745 MAXIRADIO FM RADIO RECEIVER DRIVER
6746 M:      Hans Verkuil <hverkuil@xs4all.nl>
6747 L:      linux-media@vger.kernel.org
6748 T:      git git://linuxtv.org/media_tree.git
6749 W:      http://linuxtv.org
6750 S:      Maintained
6751 F:      drivers/media/radio/radio-maxiradio*
6752
6753 MEDIA DRIVERS FOR RENESAS - VSP1
6754 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6755 L:      linux-media@vger.kernel.org
6756 L:      linux-sh@vger.kernel.org
6757 T:      git git://linuxtv.org/media_tree.git
6758 S:      Supported
6759 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6760 F:      drivers/media/platform/vsp1/
6761
6762 MEDIA DRIVERS FOR ASCOT2E
6763 M:      Sergey Kozlov <serjk@netup.ru>
6764 L:      linux-media@vger.kernel.org
6765 W:      http://linuxtv.org
6766 W:      http://netup.tv/
6767 T:      git git://linuxtv.org/media_tree.git
6768 S:      Supported
6769 F:      drivers/media/dvb-frontends/ascot2e*
6770
6771 MEDIA DRIVERS FOR CXD2841ER
6772 M:      Sergey Kozlov <serjk@netup.ru>
6773 L:      linux-media@vger.kernel.org
6774 W:      http://linuxtv.org/
6775 W:      http://netup.tv/
6776 T:      git git://linuxtv.org/media_tree.git
6777 S:      Supported
6778 F:      drivers/media/dvb-frontends/cxd2841er*
6779
6780 MEDIA DRIVERS FOR HORUS3A
6781 M:      Sergey Kozlov <serjk@netup.ru>
6782 L:      linux-media@vger.kernel.org
6783 W:      http://linuxtv.org/
6784 W:      http://netup.tv/
6785 T:      git git://linuxtv.org/media_tree.git
6786 S:      Supported
6787 F:      drivers/media/dvb-frontends/horus3a*
6788
6789 MEDIA DRIVERS FOR LNBH25
6790 M:      Sergey Kozlov <serjk@netup.ru>
6791 L:      linux-media@vger.kernel.org
6792 W:      http://linuxtv.org/
6793 W:      http://netup.tv/
6794 T:      git git://linuxtv.org/media_tree.git
6795 S:      Supported
6796 F:      drivers/media/dvb-frontends/lnbh25*
6797
6798 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6799 M:      Sergey Kozlov <serjk@netup.ru>
6800 L:      linux-media@vger.kernel.org
6801 W:      http://linuxtv.org/
6802 W:      http://netup.tv/
6803 T:      git git://linuxtv.org/media_tree.git
6804 S:      Supported
6805 F:      drivers/media/pci/netup_unidvb/*
6806
6807 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6808 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6809 P:      LinuxTV.org Project
6810 L:      linux-media@vger.kernel.org
6811 W:      http://linuxtv.org
6812 Q:      http://patchwork.kernel.org/project/linux-media/list/
6813 T:      git git://linuxtv.org/media_tree.git
6814 S:      Maintained
6815 F:      Documentation/dvb/
6816 F:      Documentation/video4linux/
6817 F:      Documentation/DocBook/media/
6818 F:      drivers/media/
6819 F:      drivers/staging/media/
6820 F:      include/media/
6821 F:      include/uapi/linux/dvb/
6822 F:      include/uapi/linux/videodev2.h
6823 F:      include/uapi/linux/media.h
6824 F:      include/uapi/linux/v4l2-*
6825 F:      include/uapi/linux/meye.h
6826 F:      include/uapi/linux/ivtv*
6827 F:      include/uapi/linux/uvcvideo.h
6828
6829 MEDIATEK MT7601U WIRELESS LAN DRIVER
6830 M:      Jakub Kicinski <kubakici@wp.pl>
6831 L:      linux-wireless@vger.kernel.org
6832 S:      Maintained
6833 F:      drivers/net/wireless/mediatek/mt7601u/
6834
6835 MEGARAID SCSI/SAS DRIVERS
6836 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6837 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6838 M:      Uday Lingala <uday.lingala@avagotech.com>
6839 L:      megaraidlinux.pdl@avagotech.com
6840 L:      linux-scsi@vger.kernel.org
6841 W:      http://www.lsi.com
6842 S:      Maintained
6843 F:      Documentation/scsi/megaraid.txt
6844 F:      drivers/scsi/megaraid.*
6845 F:      drivers/scsi/megaraid/
6846
6847 MELLANOX ETHERNET DRIVER (mlx4_en)
6848 M:      Amir Vadai <amirv@mellanox.com>
6849 L:      netdev@vger.kernel.org
6850 S:      Supported
6851 W:      http://www.mellanox.com
6852 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6853 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6854
6855 MELLANOX ETHERNET SWITCH DRIVERS
6856 M:      Jiri Pirko <jiri@mellanox.com>
6857 M:      Ido Schimmel <idosch@mellanox.com>
6858 L:      netdev@vger.kernel.org
6859 S:      Supported
6860 W:      http://www.mellanox.com
6861 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6862 F:      drivers/net/ethernet/mellanox/mlxsw/
6863
6864 MEMBARRIER SUPPORT
6865 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6866 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6867 L:      linux-kernel@vger.kernel.org
6868 S:      Supported
6869 F:      kernel/membarrier.c
6870 F:      include/uapi/linux/membarrier.h
6871
6872 MEMORY MANAGEMENT
6873 L:      linux-mm@kvack.org
6874 W:      http://www.linux-mm.org
6875 S:      Maintained
6876 F:      include/linux/mm.h
6877 F:      include/linux/gfp.h
6878 F:      include/linux/mmzone.h
6879 F:      include/linux/memory_hotplug.h
6880 F:      include/linux/vmalloc.h
6881 F:      mm/
6882
6883 MEMORY TECHNOLOGY DEVICES (MTD)
6884 M:      David Woodhouse <dwmw2@infradead.org>
6885 M:      Brian Norris <computersforpeace@gmail.com>
6886 L:      linux-mtd@lists.infradead.org
6887 W:      http://www.linux-mtd.infradead.org/
6888 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6889 T:      git git://git.infradead.org/linux-mtd.git
6890 T:      git git://git.infradead.org/l2-mtd.git
6891 S:      Maintained
6892 F:      drivers/mtd/
6893 F:      include/linux/mtd/
6894 F:      include/uapi/mtd/
6895
6896 MEN A21 WATCHDOG DRIVER
6897 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6898 L:      linux-watchdog@vger.kernel.org
6899 S:      Maintained
6900 F:      drivers/watchdog/mena21_wdt.c
6901
6902 MEN CHAMELEON BUS (mcb)
6903 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6904 S:      Maintained
6905 F:      drivers/mcb/
6906 F:      include/linux/mcb.h
6907 F:      Documentation/men-chameleon-bus.txt
6908
6909 MEN F21BMC (Board Management Controller)
6910 M:      Andreas Werner <andreas.werner@men.de>
6911 S:      Supported
6912 F:      drivers/mfd/menf21bmc.c
6913 F:      drivers/watchdog/menf21bmc_wdt.c
6914 F:      drivers/leds/leds-menf21bmc.c
6915 F:      drivers/hwmon/menf21bmc_hwmon.c
6916 F:      Documentation/hwmon/menf21bmc
6917
6918 METAG ARCHITECTURE
6919 M:      James Hogan <james.hogan@imgtec.com>
6920 L:      linux-metag@vger.kernel.org
6921 S:      Supported
6922 F:      arch/metag/
6923 F:      Documentation/metag/
6924 F:      Documentation/devicetree/bindings/metag/
6925 F:      drivers/clocksource/metag_generic.c
6926 F:      drivers/irqchip/irq-metag.c
6927 F:      drivers/irqchip/irq-metag-ext.c
6928 F:      drivers/tty/metag_da.c
6929
6930 MICROBLAZE ARCHITECTURE
6931 M:      Michal Simek <monstr@monstr.eu>
6932 W:      http://www.monstr.eu/fdt/
6933 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6934 S:      Supported
6935 F:      arch/microblaze/
6936
6937 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6938 M:      Chen Yu <yu.c.chen@intel.com>
6939 L:      platform-driver-x86@vger.kernel.org
6940 S:      Supported
6941 F:      drivers/platform/x86/surfacepro3_button.c
6942
6943 MICROTEK X6 SCANNER
6944 M:      Oliver Neukum <oliver@neukum.org>
6945 S:      Maintained
6946 F:      drivers/usb/image/microtek.*
6947
6948 MIPS
6949 M:      Ralf Baechle <ralf@linux-mips.org>
6950 L:      linux-mips@linux-mips.org
6951 W:      http://www.linux-mips.org/
6952 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6953 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6954 S:      Supported
6955 F:      Documentation/mips/
6956 F:      arch/mips/
6957
6958 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6959 M:      Hans Verkuil <hverkuil@xs4all.nl>
6960 L:      linux-media@vger.kernel.org
6961 T:      git git://linuxtv.org/media_tree.git
6962 W:      http://linuxtv.org
6963 S:      Odd Fixes
6964 F:      drivers/media/radio/radio-miropcm20*
6965
6966 Mellanox MLX5 core VPI driver
6967 M:      Eli Cohen <eli@mellanox.com>
6968 L:      netdev@vger.kernel.org
6969 L:      linux-rdma@vger.kernel.org
6970 W:      http://www.mellanox.com
6971 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6972 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6973 T:      git git://openfabrics.org/~eli/connect-ib.git
6974 S:      Supported
6975 F:      drivers/net/ethernet/mellanox/mlx5/core/
6976 F:      include/linux/mlx5/
6977
6978 Mellanox MLX5 IB driver
6979 M:      Eli Cohen <eli@mellanox.com>
6980 L:      linux-rdma@vger.kernel.org
6981 W:      http://www.mellanox.com
6982 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6983 T:      git git://openfabrics.org/~eli/connect-ib.git
6984 S:      Supported
6985 F:      include/linux/mlx5/
6986 F:      drivers/infiniband/hw/mlx5/
6987
6988 MN88472 MEDIA DRIVER
6989 M:      Antti Palosaari <crope@iki.fi>
6990 L:      linux-media@vger.kernel.org
6991 W:      http://linuxtv.org/
6992 W:      http://palosaari.fi/linux/
6993 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6994 T:      git git://linuxtv.org/anttip/media_tree.git
6995 S:      Maintained
6996 F:      drivers/staging/media/mn88472/
6997 F:      drivers/media/dvb-frontends/mn88472.h
6998
6999 MN88473 MEDIA DRIVER
7000 M:      Antti Palosaari <crope@iki.fi>
7001 L:      linux-media@vger.kernel.org
7002 W:      http://linuxtv.org/
7003 W:      http://palosaari.fi/linux/
7004 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7005 T:      git git://linuxtv.org/anttip/media_tree.git
7006 S:      Maintained
7007 F:      drivers/staging/media/mn88473/
7008 F:      drivers/media/dvb-frontends/mn88473.h
7009
7010 MODULE SUPPORT
7011 M:      Rusty Russell <rusty@rustcorp.com.au>
7012 S:      Maintained
7013 F:      include/linux/module.h
7014 F:      kernel/module.c
7015
7016 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7017 W:      http://popies.net/meye/
7018 S:      Orphan
7019 F:      Documentation/video4linux/meye.txt
7020 F:      drivers/media/pci/meye/
7021 F:      include/uapi/linux/meye.h
7022
7023 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7024 M:      Jiri Slaby <jirislaby@gmail.com>
7025 S:      Maintained
7026 F:      Documentation/serial/moxa-smartio
7027 F:      drivers/tty/mxser.*
7028
7029 MR800 AVERMEDIA USB FM RADIO DRIVER
7030 M:      Alexey Klimov <klimov.linux@gmail.com>
7031 L:      linux-media@vger.kernel.org
7032 T:      git git://linuxtv.org/media_tree.git
7033 S:      Maintained
7034 F:      drivers/media/radio/radio-mr800.c
7035
7036 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7037 M:      Alan Ott <alan@signal11.us>
7038 L:      linux-wpan@vger.kernel.org
7039 S:      Maintained
7040 F:      drivers/net/ieee802154/mrf24j40.c
7041 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7042
7043 MSI LAPTOP SUPPORT
7044 M:      "Lee, Chun-Yi" <jlee@suse.com>
7045 L:      platform-driver-x86@vger.kernel.org
7046 S:      Maintained
7047 F:      drivers/platform/x86/msi-laptop.c
7048
7049 MSI WMI SUPPORT
7050 L:      platform-driver-x86@vger.kernel.org
7051 S:      Orphan
7052 F:      drivers/platform/x86/msi-wmi.c
7053
7054 MSI001 MEDIA DRIVER
7055 M:      Antti Palosaari <crope@iki.fi>
7056 L:      linux-media@vger.kernel.org
7057 W:      http://linuxtv.org/
7058 W:      http://palosaari.fi/linux/
7059 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7060 T:      git git://linuxtv.org/anttip/media_tree.git
7061 S:      Maintained
7062 F:      drivers/media/tuners/msi001*
7063
7064 MSI2500 MEDIA DRIVER
7065 M:      Antti Palosaari <crope@iki.fi>
7066 L:      linux-media@vger.kernel.org
7067 W:      http://linuxtv.org/
7068 W:      http://palosaari.fi/linux/
7069 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7070 T:      git git://linuxtv.org/anttip/media_tree.git
7071 S:      Maintained
7072 F:      drivers/media/usb/msi2500/
7073
7074 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7075 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7076 L:      linux-mtd@lists.infradead.org
7077 S:      Maintained
7078 F:      drivers/mtd/devices/docg3*
7079
7080 MT9M032 APTINA SENSOR DRIVER
7081 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7082 L:      linux-media@vger.kernel.org
7083 T:      git git://linuxtv.org/media_tree.git
7084 S:      Maintained
7085 F:      drivers/media/i2c/mt9m032.c
7086 F:      include/media/mt9m032.h
7087
7088 MT9P031 APTINA CAMERA SENSOR
7089 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7090 L:      linux-media@vger.kernel.org
7091 T:      git git://linuxtv.org/media_tree.git
7092 S:      Maintained
7093 F:      drivers/media/i2c/mt9p031.c
7094 F:      include/media/mt9p031.h
7095
7096 MT9T001 APTINA CAMERA SENSOR
7097 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7098 L:      linux-media@vger.kernel.org
7099 T:      git git://linuxtv.org/media_tree.git
7100 S:      Maintained
7101 F:      drivers/media/i2c/mt9t001.c
7102 F:      include/media/mt9t001.h
7103
7104 MT9V032 APTINA CAMERA SENSOR
7105 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7106 L:      linux-media@vger.kernel.org
7107 T:      git git://linuxtv.org/media_tree.git
7108 S:      Maintained
7109 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7110 F:      drivers/media/i2c/mt9v032.c
7111 F:      include/media/mt9v032.h
7112
7113 MULTIFUNCTION DEVICES (MFD)
7114 M:      Samuel Ortiz <sameo@linux.intel.com>
7115 M:      Lee Jones <lee.jones@linaro.org>
7116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7117 S:      Supported
7118 F:      drivers/mfd/
7119 F:      include/linux/mfd/
7120
7121 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7122 M:      Ulf Hansson <ulf.hansson@linaro.org>
7123 L:      linux-mmc@vger.kernel.org
7124 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7125 S:      Maintained
7126 F:      drivers/mmc/
7127 F:      include/linux/mmc/
7128 F:      include/uapi/linux/mmc/
7129
7130 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7131 S:      Orphan
7132 F:      drivers/mmc/host/mmc_spi.c
7133 F:      include/linux/spi/mmc_spi.h
7134
7135 MULTISOUND SOUND DRIVER
7136 M:      Andrew Veliath <andrewtv@usa.net>
7137 S:      Maintained
7138 F:      Documentation/sound/oss/MultiSound
7139 F:      sound/oss/msnd*
7140
7141 MULTITECH MULTIPORT CARD (ISICOM)
7142 S:      Orphan
7143 F:      drivers/tty/isicom.c
7144 F:      include/linux/isicom.h
7145
7146 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7147 M:      Felipe Balbi <balbi@ti.com>
7148 L:      linux-usb@vger.kernel.org
7149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7150 S:      Maintained
7151 F:      drivers/usb/musb/
7152
7153 MXL5007T MEDIA DRIVER
7154 M:      Michael Krufky <mkrufky@linuxtv.org>
7155 L:      linux-media@vger.kernel.org
7156 W:      http://linuxtv.org/
7157 W:      http://github.com/mkrufky
7158 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7159 T:      git git://linuxtv.org/mkrufky/tuners.git
7160 S:      Maintained
7161 F:      drivers/media/tuners/mxl5007t.*
7162
7163 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7164 M:      Hyong-Youb Kim <hykim@myri.com>
7165 L:      netdev@vger.kernel.org
7166 W:      https://www.myricom.com/support/downloads/myri10ge.html
7167 S:      Supported
7168 F:      drivers/net/ethernet/myricom/myri10ge/
7169
7170 NATSEMI ETHERNET DRIVER (DP8381x)
7171 S:      Orphan
7172 F:      drivers/net/ethernet/natsemi/natsemi.c
7173
7174 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7175 M:      Daniel Mack <zonque@gmail.com>
7176 S:      Maintained
7177 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7178 W:      http://www.native-instruments.com
7179 F:      sound/usb/caiaq/
7180
7181 NCP FILESYSTEM
7182 M:      Petr Vandrovec <petr@vandrovec.name>
7183 S:      Odd Fixes
7184 F:      fs/ncpfs/
7185
7186 NCR 5380 SCSI DRIVERS
7187 M:      Finn Thain <fthain@telegraphics.com.au>
7188 M:      Michael Schmitz <schmitzmic@gmail.com>
7189 L:      linux-scsi@vger.kernel.org
7190 S:      Maintained
7191 F:      Documentation/scsi/g_NCR5380.txt
7192 F:      drivers/scsi/NCR5380.*
7193 F:      drivers/scsi/arm/cumana_1.c
7194 F:      drivers/scsi/arm/oak.c
7195 F:      drivers/scsi/atari_NCR5380.c
7196 F:      drivers/scsi/atari_scsi.*
7197 F:      drivers/scsi/dmx3191d.c
7198 F:      drivers/scsi/dtc.*
7199 F:      drivers/scsi/g_NCR5380.*
7200 F:      drivers/scsi/g_NCR5380_mmio.c
7201 F:      drivers/scsi/mac_scsi.*
7202 F:      drivers/scsi/pas16.*
7203 F:      drivers/scsi/sun3_scsi.*
7204 F:      drivers/scsi/sun3_scsi_vme.c
7205 F:      drivers/scsi/t128.*
7206
7207 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7208 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7209 L:      linux-scsi@vger.kernel.org
7210 S:      Maintained
7211 F:      drivers/scsi/NCR_D700.*
7212
7213 NCT6775 HARDWARE MONITOR DRIVER
7214 M:      Guenter Roeck <linux@roeck-us.net>
7215 L:      lm-sensors@lm-sensors.org
7216 S:      Maintained
7217 F:      Documentation/hwmon/nct6775
7218 F:      drivers/hwmon/nct6775.c
7219
7220 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7221 M:      Faisal Latif <faisal.latif@intel.com>
7222 L:      linux-rdma@vger.kernel.org
7223 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7224 S:      Supported
7225 F:      drivers/infiniband/hw/nes/
7226
7227 NETEM NETWORK EMULATOR
7228 M:      Stephen Hemminger <stephen@networkplumber.org>
7229 L:      netem@lists.linux-foundation.org
7230 S:      Maintained
7231 F:      net/sched/sch_netem.c
7232
7233 NETERION 10GbE DRIVERS (s2io/vxge)
7234 M:      Jon Mason <jdmason@kudzu.us>
7235 L:      netdev@vger.kernel.org
7236 S:      Supported
7237 F:      Documentation/networking/s2io.txt
7238 F:      Documentation/networking/vxge.txt
7239 F:      drivers/net/ethernet/neterion/
7240
7241 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7242 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7243 M:      Patrick McHardy <kaber@trash.net>
7244 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7245 L:      netfilter-devel@vger.kernel.org
7246 L:      coreteam@netfilter.org
7247 W:      http://www.netfilter.org/
7248 W:      http://www.iptables.org/
7249 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7252 S:      Supported
7253 F:      include/linux/netfilter*
7254 F:      include/linux/netfilter/
7255 F:      include/net/netfilter/
7256 F:      include/uapi/linux/netfilter*
7257 F:      include/uapi/linux/netfilter/
7258 F:      net/*/netfilter.c
7259 F:      net/*/netfilter/
7260 F:      net/netfilter/
7261 F:      net/bridge/br_netfilter*.c
7262
7263 NETLABEL
7264 M:      Paul Moore <paul@paul-moore.com>
7265 W:      http://netlabel.sf.net
7266 L:      netdev@vger.kernel.org
7267 S:      Maintained
7268 F:      Documentation/netlabel/
7269 F:      include/net/netlabel.h
7270 F:      net/netlabel/
7271
7272 NETROM NETWORK LAYER
7273 M:      Ralf Baechle <ralf@linux-mips.org>
7274 L:      linux-hams@vger.kernel.org
7275 W:      http://www.linux-ax25.org/
7276 S:      Maintained
7277 F:      include/net/netrom.h
7278 F:      include/uapi/linux/netrom.h
7279 F:      net/netrom/
7280
7281 NETWORK BLOCK DEVICE (NBD)
7282 M:      Markus Pargmann <mpa@pengutronix.de>
7283 S:      Maintained
7284 L:      nbd-general@lists.sourceforge.net
7285 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7286 F:      Documentation/blockdev/nbd.txt
7287 F:      drivers/block/nbd.c
7288 F:      include/uapi/linux/nbd.h
7289
7290 NETWORK DROP MONITOR
7291 M:      Neil Horman <nhorman@tuxdriver.com>
7292 L:      netdev@vger.kernel.org
7293 S:      Maintained
7294 W:      https://fedorahosted.org/dropwatch/
7295 F:      net/core/drop_monitor.c
7296
7297 NETWORKING [GENERAL]
7298 M:      "David S. Miller" <davem@davemloft.net>
7299 L:      netdev@vger.kernel.org
7300 W:      http://www.linuxfoundation.org/en/Net
7301 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7304 S:      Maintained
7305 F:      net/
7306 F:      include/net/
7307 F:      include/linux/in.h
7308 F:      include/linux/net.h
7309 F:      include/linux/netdevice.h
7310 F:      include/uapi/linux/in.h
7311 F:      include/uapi/linux/net.h
7312 F:      include/uapi/linux/netdevice.h
7313 F:      include/uapi/linux/net_namespace.h
7314 F:      tools/net/
7315 F:      tools/testing/selftests/net/
7316 F:      lib/random32.c
7317 F:      lib/test_bpf.c
7318
7319 NETWORKING [IPv4/IPv6]
7320 M:      "David S. Miller" <davem@davemloft.net>
7321 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7322 M:      James Morris <jmorris@namei.org>
7323 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7324 M:      Patrick McHardy <kaber@trash.net>
7325 L:      netdev@vger.kernel.org
7326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7327 S:      Maintained
7328 F:      net/ipv4/
7329 F:      net/ipv6/
7330 F:      include/net/ip*
7331 F:      arch/x86/net/*
7332
7333 NETWORKING [IPSEC]
7334 M:      Steffen Klassert <steffen.klassert@secunet.com>
7335 M:      Herbert Xu <herbert@gondor.apana.org.au>
7336 M:      "David S. Miller" <davem@davemloft.net>
7337 L:      netdev@vger.kernel.org
7338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7340 S:      Maintained
7341 F:      net/core/flow.c
7342 F:      net/xfrm/
7343 F:      net/key/
7344 F:      net/ipv4/xfrm*
7345 F:      net/ipv4/esp4.c
7346 F:      net/ipv4/ah4.c
7347 F:      net/ipv4/ipcomp.c
7348 F:      net/ipv4/ip_vti.c
7349 F:      net/ipv6/xfrm*
7350 F:      net/ipv6/esp6.c
7351 F:      net/ipv6/ah6.c
7352 F:      net/ipv6/ipcomp6.c
7353 F:      net/ipv6/ip6_vti.c
7354 F:      include/uapi/linux/xfrm.h
7355 F:      include/net/xfrm.h
7356
7357 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7358 M:      Paul Moore <paul@paul-moore.com>
7359 L:      netdev@vger.kernel.org
7360 S:      Maintained
7361
7362 NETWORKING [WIRELESS]
7363 L:      linux-wireless@vger.kernel.org
7364 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7365
7366 NETWORKING DRIVERS
7367 L:      netdev@vger.kernel.org
7368 W:      http://www.linuxfoundation.org/en/Net
7369 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7372 S:      Odd Fixes
7373 F:      drivers/net/
7374 F:      include/linux/if_*
7375 F:      include/linux/netdevice.h
7376 F:      include/linux/etherdevice.h
7377 F:      include/linux/fcdevice.h
7378 F:      include/linux/fddidevice.h
7379 F:      include/linux/hippidevice.h
7380 F:      include/linux/inetdevice.h
7381 F:      include/uapi/linux/if_*
7382 F:      include/uapi/linux/netdevice.h
7383
7384 NETWORKING DRIVERS (WIRELESS)
7385 M:      Kalle Valo <kvalo@codeaurora.org>
7386 L:      linux-wireless@vger.kernel.org
7387 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7389 S:      Maintained
7390 F:      drivers/net/wireless/
7391
7392 NETXEN (1/10) GbE SUPPORT
7393 M:      Manish Chopra <manish.chopra@qlogic.com>
7394 M:      Sony Chacko <sony.chacko@qlogic.com>
7395 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7396 L:      netdev@vger.kernel.org
7397 W:      http://www.qlogic.com
7398 S:      Supported
7399 F:      drivers/net/ethernet/qlogic/netxen/
7400
7401 NFC SUBSYSTEM
7402 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7403 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7404 M:      Samuel Ortiz <sameo@linux.intel.com>
7405 L:      linux-wireless@vger.kernel.org
7406 L:      linux-nfc@lists.01.org (subscribers-only)
7407 S:      Supported
7408 F:      net/nfc/
7409 F:      include/net/nfc/
7410 F:      include/uapi/linux/nfc.h
7411 F:      drivers/nfc/
7412 F:      include/linux/platform_data/pn544.h
7413 F:      Documentation/devicetree/bindings/net/nfc/
7414
7415 NFS, SUNRPC, AND LOCKD CLIENTS
7416 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7417 M:      Anna Schumaker <anna.schumaker@netapp.com>
7418 L:      linux-nfs@vger.kernel.org
7419 W:      http://client.linux-nfs.org
7420 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7421 S:      Maintained
7422 F:      fs/lockd/
7423 F:      fs/nfs/
7424 F:      fs/nfs_common/
7425 F:      net/sunrpc/
7426 F:      include/linux/lockd/
7427 F:      include/linux/nfs*
7428 F:      include/linux/sunrpc/
7429 F:      include/uapi/linux/nfs*
7430 F:      include/uapi/linux/sunrpc/
7431
7432 NILFS2 FILESYSTEM
7433 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7434 L:      linux-nilfs@vger.kernel.org
7435 W:      http://nilfs.sourceforge.net/
7436 T:      git git://github.com/konis/nilfs2.git
7437 S:      Supported
7438 F:      Documentation/filesystems/nilfs2.txt
7439 F:      fs/nilfs2/
7440 F:      include/linux/nilfs2_fs.h
7441
7442 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7443 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7444 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7445 S:      Maintained
7446 F:      Documentation/scsi/NinjaSCSI.txt
7447 F:      drivers/scsi/pcmcia/nsp_*
7448
7449 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7450 M:      GOTO Masanori <gotom@debian.or.jp>
7451 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7452 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7453 S:      Maintained
7454 F:      Documentation/scsi/NinjaSCSI.txt
7455 F:      drivers/scsi/nsp32*
7456
7457 NIOS2 ARCHITECTURE
7458 M:      Ley Foon Tan <lftan@altera.com>
7459 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7461 S:      Maintained
7462 F:      arch/nios2/
7463
7464 NOKIA N900 POWER SUPPLY DRIVERS
7465 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7466 S:      Maintained
7467 F:      include/linux/power/bq2415x_charger.h
7468 F:      include/linux/power/bq27x00_battery.h
7469 F:      include/linux/power/isp1704_charger.h
7470 F:      drivers/power/bq2415x_charger.c
7471 F:      drivers/power/bq27x00_battery.c
7472 F:      drivers/power/isp1704_charger.c
7473 F:      drivers/power/rx51_battery.c
7474
7475 NTB DRIVER CORE
7476 M:      Jon Mason <jdmason@kudzu.us>
7477 M:      Dave Jiang <dave.jiang@intel.com>
7478 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7479 L:      linux-ntb@googlegroups.com
7480 S:      Supported
7481 W:      https://github.com/jonmason/ntb/wiki
7482 T:      git git://github.com/jonmason/ntb.git
7483 F:      drivers/ntb/
7484 F:      drivers/net/ntb_netdev.c
7485 F:      include/linux/ntb.h
7486 F:      include/linux/ntb_transport.h
7487
7488 NTB INTEL DRIVER
7489 M:      Jon Mason <jdmason@kudzu.us>
7490 M:      Dave Jiang <dave.jiang@intel.com>
7491 L:      linux-ntb@googlegroups.com
7492 S:      Supported
7493 W:      https://github.com/jonmason/ntb/wiki
7494 T:      git git://github.com/jonmason/ntb.git
7495 F:      drivers/ntb/hw/intel/
7496
7497 NTFS FILESYSTEM
7498 M:      Anton Altaparmakov <anton@tuxera.com>
7499 L:      linux-ntfs-dev@lists.sourceforge.net
7500 W:      http://www.tuxera.com/
7501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7502 S:      Supported
7503 F:      Documentation/filesystems/ntfs.txt
7504 F:      fs/ntfs/
7505
7506 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7507 M:      Antonino Daplas <adaplas@gmail.com>
7508 L:      linux-fbdev@vger.kernel.org
7509 S:      Maintained
7510 F:      drivers/video/fbdev/riva/
7511 F:      drivers/video/fbdev/nvidia/
7512
7513 NVM EXPRESS DRIVER
7514 M:      Matthew Wilcox <willy@linux.intel.com>
7515 L:      linux-nvme@lists.infradead.org
7516 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7517 S:      Supported
7518 F:      drivers/block/nvme*
7519 F:      include/linux/nvme.h
7520
7521 NVMEM FRAMEWORK
7522 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7523 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7524 S:      Maintained
7525 F:      drivers/nvmem/
7526 F:      Documentation/devicetree/bindings/nvmem/
7527 F:      include/linux/nvmem-consumer.h
7528 F:      include/linux/nvmem-provider.h
7529
7530 NXP-NCI NFC DRIVER
7531 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7532 R:      Charles Gorand <charles.gorand@effinnov.com>
7533 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7534 S:      Supported
7535 F:      drivers/nfc/nxp-nci
7536
7537 NXP TDA998X DRM DRIVER
7538 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7539 S:      Supported
7540 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7541 F:      include/drm/i2c/tda998x.h
7542
7543 NXP TFA9879 DRIVER
7544 M:      Peter Rosin <peda@axentia.se>
7545 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7546 S:      Maintained
7547 F:      sound/soc/codecs/tfa9879*
7548
7549 OMAP SUPPORT
7550 M:      Tony Lindgren <tony@atomide.com>
7551 L:      linux-omap@vger.kernel.org
7552 W:      http://www.muru.com/linux/omap/
7553 W:      http://linux.omap.com/
7554 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7556 S:      Maintained
7557 F:      arch/arm/*omap*/
7558 F:      arch/arm/configs/omap1_defconfig
7559 F:      arch/arm/configs/omap2plus_defconfig
7560 F:      drivers/i2c/busses/i2c-omap.c
7561 F:      drivers/irqchip/irq-omap-intc.c
7562 F:      drivers/mfd/*omap*.c
7563 F:      drivers/mfd/menelaus.c
7564 F:      drivers/mfd/palmas.c
7565 F:      drivers/mfd/tps65217.c
7566 F:      drivers/mfd/tps65218.c
7567 F:      drivers/mfd/tps65910.c
7568 F:      drivers/mfd/twl-core.[ch]
7569 F:      drivers/mfd/twl4030*.c
7570 F:      drivers/mfd/twl6030*.c
7571 F:      drivers/mfd/twl6040*.c
7572 F:      drivers/regulator/palmas-regulator*.c
7573 F:      drivers/regulator/pbias-regulator.c
7574 F:      drivers/regulator/tps65217-regulator.c
7575 F:      drivers/regulator/tps65218-regulator.c
7576 F:      drivers/regulator/tps65910-regulator.c
7577 F:      drivers/regulator/twl-regulator.c
7578 F:      include/linux/i2c-omap.h
7579
7580 OMAP DEVICE TREE SUPPORT
7581 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7582 M:      Tony Lindgren <tony@atomide.com>
7583 L:      linux-omap@vger.kernel.org
7584 L:      devicetree@vger.kernel.org
7585 S:      Maintained
7586 F:      arch/arm/boot/dts/*omap*
7587 F:      arch/arm/boot/dts/*am3*
7588 F:      arch/arm/boot/dts/*am4*
7589 F:      arch/arm/boot/dts/*am5*
7590 F:      arch/arm/boot/dts/*dra7*
7591
7592 OMAP CLOCK FRAMEWORK SUPPORT
7593 M:      Paul Walmsley <paul@pwsan.com>
7594 L:      linux-omap@vger.kernel.org
7595 S:      Maintained
7596 F:      arch/arm/*omap*/*clock*
7597
7598 OMAP POWER MANAGEMENT SUPPORT
7599 M:      Kevin Hilman <khilman@deeprootsystems.com>
7600 L:      linux-omap@vger.kernel.org
7601 S:      Maintained
7602 F:      arch/arm/*omap*/*pm*
7603 F:      drivers/cpufreq/omap-cpufreq.c
7604
7605 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7606 M:      Rajendra Nayak <rnayak@ti.com>
7607 M:      Paul Walmsley <paul@pwsan.com>
7608 L:      linux-omap@vger.kernel.org
7609 S:      Maintained
7610 F:      arch/arm/mach-omap2/prm*
7611
7612 OMAP AUDIO SUPPORT
7613 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7614 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7615 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7616 L:      linux-omap@vger.kernel.org
7617 S:      Maintained
7618 F:      sound/soc/omap/
7619
7620 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7621 M:      Roger Quadros <rogerq@ti.com>
7622 M:      Tony Lindgren <tony@atomide.com>
7623 L:      linux-omap@vger.kernel.org
7624 S:      Maintained
7625 F:      drivers/memory/omap-gpmc.c
7626 F:      arch/arm/mach-omap2/*gpmc*
7627
7628 OMAP FRAMEBUFFER SUPPORT
7629 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7630 L:      linux-fbdev@vger.kernel.org
7631 L:      linux-omap@vger.kernel.org
7632 S:      Maintained
7633 F:      drivers/video/fbdev/omap/
7634
7635 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7636 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7637 L:      linux-omap@vger.kernel.org
7638 L:      linux-fbdev@vger.kernel.org
7639 S:      Maintained
7640 F:      drivers/video/fbdev/omap2/
7641 F:      Documentation/arm/OMAP/DSS
7642
7643 OMAP HARDWARE SPINLOCK SUPPORT
7644 M:      Ohad Ben-Cohen <ohad@wizery.com>
7645 L:      linux-omap@vger.kernel.org
7646 S:      Maintained
7647 F:      drivers/hwspinlock/omap_hwspinlock.c
7648
7649 OMAP MMC SUPPORT
7650 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7651 L:      linux-omap@vger.kernel.org
7652 S:      Maintained
7653 F:      drivers/mmc/host/omap.c
7654
7655 OMAP HS MMC SUPPORT
7656 L:      linux-mmc@vger.kernel.org
7657 L:      linux-omap@vger.kernel.org
7658 S:      Orphan
7659 F:      drivers/mmc/host/omap_hsmmc.c
7660
7661 OMAP RANDOM NUMBER GENERATOR SUPPORT
7662 M:      Deepak Saxena <dsaxena@plexity.net>
7663 S:      Maintained
7664 F:      drivers/char/hw_random/omap-rng.c
7665
7666 OMAP HWMOD SUPPORT
7667 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7668 M:      Paul Walmsley <paul@pwsan.com>
7669 L:      linux-omap@vger.kernel.org
7670 S:      Maintained
7671 F:      arch/arm/mach-omap2/omap_hwmod.*
7672
7673 OMAP HWMOD DATA
7674 M:      Paul Walmsley <paul@pwsan.com>
7675 L:      linux-omap@vger.kernel.org
7676 S:      Maintained
7677 F:      arch/arm/mach-omap2/omap_hwmod*data*
7678
7679 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7680 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7681 L:      linux-omap@vger.kernel.org
7682 S:      Maintained
7683 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7684
7685 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7686 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7687 L:      linux-media@vger.kernel.org
7688 S:      Maintained
7689 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7690 F:      drivers/media/platform/omap3isp/
7691 F:      drivers/staging/media/omap4iss/
7692
7693 OMAP USB SUPPORT
7694 M:      Felipe Balbi <balbi@ti.com>
7695 L:      linux-usb@vger.kernel.org
7696 L:      linux-omap@vger.kernel.org
7697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7698 S:      Maintained
7699 F:      drivers/usb/*/*omap*
7700 F:      arch/arm/*omap*/usb*
7701
7702 OMAP GPIO DRIVER
7703 M:      Javier Martinez Canillas <javier@dowhile0.org>
7704 M:      Santosh Shilimkar <ssantosh@kernel.org>
7705 M:      Kevin Hilman <khilman@deeprootsystems.com>
7706 L:      linux-omap@vger.kernel.org
7707 S:      Maintained
7708 F:      drivers/gpio/gpio-omap.c
7709
7710 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7711 M:      Mark Jackson <mpfj@newflow.co.uk>
7712 L:      linux-omap@vger.kernel.org
7713 S:      Maintained
7714 F:      arch/arm/boot/dts/am335x-nano.dts
7715
7716 OMFS FILESYSTEM
7717 M:      Bob Copeland <me@bobcopeland.com>
7718 L:      linux-karma-devel@lists.sourceforge.net
7719 S:      Maintained
7720 F:      Documentation/filesystems/omfs.txt
7721 F:      fs/omfs/
7722
7723 OMNIKEY CARDMAN 4000 DRIVER
7724 M:      Harald Welte <laforge@gnumonks.org>
7725 S:      Maintained
7726 F:      drivers/char/pcmcia/cm4000_cs.c
7727 F:      include/linux/cm4000_cs.h
7728 F:      include/uapi/linux/cm4000_cs.h
7729
7730 OMNIKEY CARDMAN 4040 DRIVER
7731 M:      Harald Welte <laforge@gnumonks.org>
7732 S:      Maintained
7733 F:      drivers/char/pcmcia/cm4040_cs.*
7734
7735 OMNIVISION OV7670 SENSOR DRIVER
7736 M:      Jonathan Corbet <corbet@lwn.net>
7737 L:      linux-media@vger.kernel.org
7738 T:      git git://linuxtv.org/media_tree.git
7739 S:      Maintained
7740 F:      drivers/media/i2c/ov7670.c
7741
7742 ONENAND FLASH DRIVER
7743 M:      Kyungmin Park <kyungmin.park@samsung.com>
7744 L:      linux-mtd@lists.infradead.org
7745 S:      Maintained
7746 F:      drivers/mtd/onenand/
7747 F:      include/linux/mtd/onenand*.h
7748
7749 ONSTREAM SCSI TAPE DRIVER
7750 M:      Willem Riede <osst@riede.org>
7751 L:      osst-users@lists.sourceforge.net
7752 L:      linux-scsi@vger.kernel.org
7753 S:      Maintained
7754 F:      Documentation/scsi/osst.txt
7755 F:      drivers/scsi/osst.*
7756 F:      drivers/scsi/osst_*.h
7757 F:      drivers/scsi/st.h
7758
7759 OPENCORES I2C BUS DRIVER
7760 M:      Peter Korsgaard <jacmet@sunsite.dk>
7761 L:      linux-i2c@vger.kernel.org
7762 S:      Maintained
7763 F:      Documentation/i2c/busses/i2c-ocores
7764 F:      drivers/i2c/busses/i2c-ocores.c
7765
7766 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7767 M:      Rob Herring <robh+dt@kernel.org>
7768 M:      Frank Rowand <frowand.list@gmail.com>
7769 M:      Grant Likely <grant.likely@linaro.org>
7770 L:      devicetree@vger.kernel.org
7771 W:      http://www.devicetree.org/
7772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7773 S:      Maintained
7774 F:      drivers/of/
7775 F:      include/linux/of*.h
7776 F:      scripts/dtc/
7777
7778 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7779 M:      Rob Herring <robh+dt@kernel.org>
7780 M:      Pawel Moll <pawel.moll@arm.com>
7781 M:      Mark Rutland <mark.rutland@arm.com>
7782 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7783 M:      Kumar Gala <galak@codeaurora.org>
7784 L:      devicetree@vger.kernel.org
7785 S:      Maintained
7786 F:      Documentation/devicetree/
7787 F:      arch/*/boot/dts/
7788 F:      include/dt-bindings/
7789
7790 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7791 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7792 L:      devicetree@vger.kernel.org
7793 S:      Maintained
7794 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7795 F:      Documentation/devicetree/overlay-notes.txt
7796 F:      drivers/of/overlay.c
7797 F:      drivers/of/resolver.c
7798
7799 OPENRISC ARCHITECTURE
7800 M:      Jonas Bonn <jonas@southpole.se>
7801 W:      http://openrisc.net
7802 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7803 S:      Maintained
7804 T:      git git://openrisc.net/~jonas/linux
7805 F:      arch/openrisc/
7806
7807 OPENVSWITCH
7808 M:      Pravin Shelar <pshelar@nicira.com>
7809 L:      netdev@vger.kernel.org
7810 L:      dev@openvswitch.org
7811 W:      http://openvswitch.org
7812 S:      Maintained
7813 F:      net/openvswitch/
7814 F:      include/uapi/linux/openvswitch.h
7815
7816 OPL4 DRIVER
7817 M:      Clemens Ladisch <clemens@ladisch.de>
7818 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7819 T:      git git://git.alsa-project.org/alsa-kernel.git
7820 S:      Maintained
7821 F:      sound/drivers/opl4/
7822
7823 OPROFILE
7824 M:      Robert Richter <rric@kernel.org>
7825 L:      oprofile-list@lists.sf.net
7826 S:      Maintained
7827 F:      arch/*/include/asm/oprofile*.h
7828 F:      arch/*/oprofile/
7829 F:      drivers/oprofile/
7830 F:      include/linux/oprofile.h
7831
7832 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7833 M:      Mark Fasheh <mfasheh@suse.com>
7834 M:      Joel Becker <jlbec@evilplan.org>
7835 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7836 W:      http://ocfs2.wiki.kernel.org
7837 S:      Supported
7838 F:      Documentation/filesystems/ocfs2.txt
7839 F:      Documentation/filesystems/dlmfs.txt
7840 F:      fs/ocfs2/
7841
7842 ORINOCO DRIVER
7843 L:      linux-wireless@vger.kernel.org
7844 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7845 W:      http://www.nongnu.org/orinoco/
7846 S:      Orphan
7847 F:      drivers/net/wireless/orinoco/
7848
7849 OSD LIBRARY and FILESYSTEM
7850 M:      Boaz Harrosh <ooo@electrozaur.com>
7851 M:      Benny Halevy <bhalevy@primarydata.com>
7852 L:      osd-dev@open-osd.org
7853 W:      http://open-osd.org
7854 T:      git git://git.open-osd.org/open-osd.git
7855 S:      Maintained
7856 F:      drivers/scsi/osd/
7857 F:      include/scsi/osd_*
7858 F:      fs/exofs/
7859
7860 OVERLAY FILESYSTEM
7861 M:      Miklos Szeredi <miklos@szeredi.hu>
7862 L:      linux-unionfs@vger.kernel.org
7863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7864 S:      Supported
7865 F:      fs/overlayfs/
7866 F:      Documentation/filesystems/overlayfs.txt
7867
7868 P54 WIRELESS DRIVER
7869 M:      Christian Lamparter <chunkeey@googlemail.com>
7870 L:      linux-wireless@vger.kernel.org
7871 W:      http://wireless.kernel.org/en/users/Drivers/p54
7872 S:      Maintained
7873 F:      drivers/net/wireless/p54/
7874
7875 PA SEMI ETHERNET DRIVER
7876 M:      Olof Johansson <olof@lixom.net>
7877 L:      netdev@vger.kernel.org
7878 S:      Maintained
7879 F:      drivers/net/ethernet/pasemi/*
7880
7881 PA SEMI SMBUS DRIVER
7882 M:      Olof Johansson <olof@lixom.net>
7883 L:      linux-i2c@vger.kernel.org
7884 S:      Maintained
7885 F:      drivers/i2c/busses/i2c-pasemi.c
7886
7887 PADATA PARALLEL EXECUTION MECHANISM
7888 M:      Steffen Klassert <steffen.klassert@secunet.com>
7889 L:      linux-crypto@vger.kernel.org
7890 S:      Maintained
7891 F:      kernel/padata.c
7892 F:      include/linux/padata.h
7893 F:      Documentation/padata.txt
7894
7895 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7896 M:      Harald Welte <laforge@gnumonks.org>
7897 L:      platform-driver-x86@vger.kernel.org
7898 S:      Maintained
7899 F:      drivers/platform/x86/panasonic-laptop.c
7900
7901 PANASONIC MN10300/AM33/AM34 PORT
7902 M:      David Howells <dhowells@redhat.com>
7903 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7904 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7905 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7906 S:      Maintained
7907 F:      Documentation/mn10300/
7908 F:      arch/mn10300/
7909
7910 PARALLEL PORT SUBSYSTEM
7911 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7912 M:      Sudip Mukherjee <sudip@vectorindia.org>
7913 L:      linux-parport@lists.infradead.org (subscribers-only)
7914 S:      Maintained
7915 F:      drivers/parport/
7916 F:      include/linux/parport*.h
7917 F:      drivers/char/ppdev.c
7918 F:      include/uapi/linux/ppdev.h
7919 F:      Documentation/parport*.txt
7920
7921 PARAVIRT_OPS INTERFACE
7922 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7923 M:      Chris Wright <chrisw@sous-sol.org>
7924 M:      Alok Kataria <akataria@vmware.com>
7925 M:      Rusty Russell <rusty@rustcorp.com.au>
7926 L:      virtualization@lists.linux-foundation.org
7927 S:      Supported
7928 F:      Documentation/virtual/paravirt_ops.txt
7929 F:      arch/*/kernel/paravirt*
7930 F:      arch/*/include/asm/paravirt.h
7931
7932 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7933 M:      Tim Waugh <tim@cyberelk.net>
7934 L:      linux-parport@lists.infradead.org (subscribers-only)
7935 S:      Maintained
7936 F:      Documentation/blockdev/paride.txt
7937 F:      drivers/block/paride/
7938
7939 PARISC ARCHITECTURE
7940 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7941 M:      Helge Deller <deller@gmx.de>
7942 L:      linux-parisc@vger.kernel.org
7943 W:      http://www.parisc-linux.org/
7944 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7947 S:      Maintained
7948 F:      arch/parisc/
7949 F:      Documentation/parisc/
7950 F:      drivers/parisc/
7951 F:      drivers/char/agp/parisc-agp.c
7952 F:      drivers/input/serio/gscps2.c
7953 F:      drivers/parport/parport_gsc.*
7954 F:      drivers/tty/serial/8250/8250_gsc.c
7955 F:      drivers/video/fbdev/sti*
7956 F:      drivers/video/console/sti*
7957 F:      drivers/video/logo/logo_parisc*
7958
7959 PC87360 HARDWARE MONITORING DRIVER
7960 M:      Jim Cromie <jim.cromie@gmail.com>
7961 L:      lm-sensors@lm-sensors.org
7962 S:      Maintained
7963 F:      Documentation/hwmon/pc87360
7964 F:      drivers/hwmon/pc87360.c
7965
7966 PC8736x GPIO DRIVER
7967 M:      Jim Cromie <jim.cromie@gmail.com>
7968 S:      Maintained
7969 F:      drivers/char/pc8736x_gpio.c
7970
7971 PC87427 HARDWARE MONITORING DRIVER
7972 M:      Jean Delvare <jdelvare@suse.com>
7973 L:      lm-sensors@lm-sensors.org
7974 S:      Maintained
7975 F:      Documentation/hwmon/pc87427
7976 F:      drivers/hwmon/pc87427.c
7977
7978 PCA9532 LED DRIVER
7979 M:      Riku Voipio <riku.voipio@iki.fi>
7980 S:      Maintained
7981 F:      drivers/leds/leds-pca9532.c
7982 F:      include/linux/leds-pca9532.h
7983
7984 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7985 M:      Guenter Roeck <linux@roeck-us.net>
7986 L:      linux-i2c@vger.kernel.org
7987 S:      Maintained
7988 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7989
7990 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7991 M:      Khalid Aziz <khalid@gonehiking.org>
7992 S:      Maintained
7993 F:      drivers/firmware/pcdp.*
7994
7995 PCI ERROR RECOVERY
7996 M:      Linas Vepstas <linasvepstas@gmail.com>
7997 L:      linux-pci@vger.kernel.org
7998 S:      Supported
7999 F:      Documentation/PCI/pci-error-recovery.txt
8000
8001 PCI SUBSYSTEM
8002 M:      Bjorn Helgaas <bhelgaas@google.com>
8003 L:      linux-pci@vger.kernel.org
8004 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8006 S:      Supported
8007 F:      Documentation/PCI/
8008 F:      drivers/pci/
8009 F:      include/linux/pci*
8010 F:      arch/x86/pci/
8011 F:      arch/x86/kernel/quirks.c
8012
8013 PCI DRIVER FOR ARM VERSATILE PLATFORM
8014 M:      Rob Herring <robh@kernel.org>
8015 L:      linux-pci@vger.kernel.org
8016 L:      linux-arm-kernel@lists.infradead.org
8017 S:      Maintained
8018 F:      Documentation/devicetree/bindings/pci/versatile.txt
8019 F:      drivers/pci/host/pci-versatile.c
8020
8021 PCI DRIVER FOR APPLIEDMICRO XGENE
8022 M:      Tanmay Inamdar <tinamdar@apm.com>
8023 L:      linux-pci@vger.kernel.org
8024 L:      linux-arm-kernel@lists.infradead.org
8025 S:      Maintained
8026 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8027 F:      drivers/pci/host/pci-xgene.c
8028
8029 PCI DRIVER FOR FREESCALE LAYERSCAPE
8030 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8031 M:      Mingkai Hu <mingkai.hu@freescale.com>
8032 M:      Roy Zang <tie-fei.zang@freescale.com>
8033 L:      linuxppc-dev@lists.ozlabs.org
8034 L:      linux-pci@vger.kernel.org
8035 L:      linux-arm-kernel@lists.infradead.org
8036 S:      Maintained
8037 F:      drivers/pci/host/*layerscape*
8038
8039 PCI DRIVER FOR IMX6
8040 M:      Richard Zhu <Richard.Zhu@freescale.com>
8041 M:      Lucas Stach <l.stach@pengutronix.de>
8042 L:      linux-pci@vger.kernel.org
8043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8044 S:      Maintained
8045 F:      drivers/pci/host/*imx6*
8046
8047 PCI DRIVER FOR TI KEYSTONE
8048 M:      Murali Karicheri <m-karicheri2@ti.com>
8049 L:      linux-pci@vger.kernel.org
8050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8051 S:      Maintained
8052 F:      drivers/pci/host/*keystone*
8053
8054 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8055 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8056 M:      Jason Cooper <jason@lakedaemon.net>
8057 L:      linux-pci@vger.kernel.org
8058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8059 S:      Maintained
8060 F:      drivers/pci/host/*mvebu*
8061
8062 PCI DRIVER FOR NVIDIA TEGRA
8063 M:      Thierry Reding <thierry.reding@gmail.com>
8064 L:      linux-tegra@vger.kernel.org
8065 L:      linux-pci@vger.kernel.org
8066 S:      Supported
8067 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8068 F:      drivers/pci/host/pci-tegra.c
8069
8070 PCI DRIVER FOR TI DRA7XX
8071 M:      Kishon Vijay Abraham I <kishon@ti.com>
8072 L:      linux-omap@vger.kernel.org
8073 L:      linux-pci@vger.kernel.org
8074 S:      Supported
8075 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8076 F:      drivers/pci/host/pci-dra7xx.c
8077
8078 PCI DRIVER FOR RENESAS R-CAR
8079 M:      Simon Horman <horms@verge.net.au>
8080 L:      linux-pci@vger.kernel.org
8081 L:      linux-sh@vger.kernel.org
8082 S:      Maintained
8083 F:      drivers/pci/host/*rcar*
8084
8085 PCI DRIVER FOR SAMSUNG EXYNOS
8086 M:      Jingoo Han <jingoohan1@gmail.com>
8087 L:      linux-pci@vger.kernel.org
8088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8089 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8090 S:      Maintained
8091 F:      drivers/pci/host/pci-exynos.c
8092
8093 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8094 M:      Jingoo Han <jingoohan1@gmail.com>
8095 M:      Pratyush Anand <pratyush.anand@gmail.com>
8096 L:      linux-pci@vger.kernel.org
8097 S:      Maintained
8098 F:      drivers/pci/host/*designware*
8099
8100 PCI DRIVER FOR GENERIC OF HOSTS
8101 M:      Will Deacon <will.deacon@arm.com>
8102 L:      linux-pci@vger.kernel.org
8103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8104 S:      Maintained
8105 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8106 F:      drivers/pci/host/pci-host-generic.c
8107
8108 PCIE DRIVER FOR ST SPEAR13XX
8109 M:      Pratyush Anand <pratyush.anand@gmail.com>
8110 L:      linux-pci@vger.kernel.org
8111 S:      Maintained
8112 F:      drivers/pci/host/*spear*
8113
8114 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8115 M:      Duc Dang <dhdang@apm.com>
8116 L:      linux-pci@vger.kernel.org
8117 L:      linux-arm-kernel@lists.infradead.org
8118 S:      Maintained
8119 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8120 F:      drivers/pci/host/pci-xgene-msi.c
8121
8122 PCMCIA SUBSYSTEM
8123 P:      Linux PCMCIA Team
8124 L:      linux-pcmcia@lists.infradead.org
8125 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8127 S:      Maintained
8128 F:      Documentation/pcmcia/
8129 F:      drivers/pcmcia/
8130 F:      include/pcmcia/
8131
8132 PCNET32 NETWORK DRIVER
8133 M:      Don Fry <pcnet32@frontier.com>
8134 L:      netdev@vger.kernel.org
8135 S:      Maintained
8136 F:      drivers/net/ethernet/amd/pcnet32.c
8137
8138 PCRYPT PARALLEL CRYPTO ENGINE
8139 M:      Steffen Klassert <steffen.klassert@secunet.com>
8140 L:      linux-crypto@vger.kernel.org
8141 S:      Maintained
8142 F:      crypto/pcrypt.c
8143 F:      include/crypto/pcrypt.h
8144
8145 PER-CPU MEMORY ALLOCATOR
8146 M:      Tejun Heo <tj@kernel.org>
8147 M:      Christoph Lameter <cl@linux-foundation.org>
8148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8149 S:      Maintained
8150 F:      include/linux/percpu*.h
8151 F:      mm/percpu*.c
8152 F:      arch/*/include/asm/percpu.h
8153
8154 PER-TASK DELAY ACCOUNTING
8155 M:      Balbir Singh <bsingharora@gmail.com>
8156 S:      Maintained
8157 F:      include/linux/delayacct.h
8158 F:      kernel/delayacct.c
8159
8160 PERFORMANCE EVENTS SUBSYSTEM
8161 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8162 M:      Ingo Molnar <mingo@redhat.com>
8163 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8164 L:      linux-kernel@vger.kernel.org
8165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8166 S:      Supported
8167 F:      kernel/events/*
8168 F:      include/linux/perf_event.h
8169 F:      include/uapi/linux/perf_event.h
8170 F:      arch/*/kernel/perf_event*.c
8171 F:      arch/*/kernel/*/perf_event*.c
8172 F:      arch/*/kernel/*/*/perf_event*.c
8173 F:      arch/*/include/asm/perf_event.h
8174 F:      arch/*/kernel/perf_callchain.c
8175 F:      tools/perf/
8176
8177 PERSONALITY HANDLING
8178 M:      Christoph Hellwig <hch@infradead.org>
8179 L:      linux-abi-devel@lists.sourceforge.net
8180 S:      Maintained
8181 F:      include/linux/personality.h
8182 F:      include/uapi/linux/personality.h
8183
8184 PHONET PROTOCOL
8185 M:      Remi Denis-Courmont <courmisch@gmail.com>
8186 S:      Supported
8187 F:      Documentation/networking/phonet.txt
8188 F:      include/linux/phonet.h
8189 F:      include/net/phonet/
8190 F:      include/uapi/linux/phonet.h
8191 F:      net/phonet/
8192
8193 PHRAM MTD DRIVER
8194 M:      Joern Engel <joern@lazybastard.org>
8195 L:      linux-mtd@lists.infradead.org
8196 S:      Maintained
8197 F:      drivers/mtd/devices/phram.c
8198
8199 PICOLCD HID DRIVER
8200 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8201 L:      linux-input@vger.kernel.org
8202 S:      Maintained
8203 F:      drivers/hid/hid-picolcd*
8204
8205 PICOXCELL SUPPORT
8206 M:      Jamie Iles <jamie@jamieiles.com>
8207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8208 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8209 S:      Supported
8210 F:      arch/arm/boot/dts/picoxcell*
8211 F:      arch/arm/mach-picoxcell/
8212 F:      drivers/crypto/picoxcell*
8213
8214 PIN CONTROL SUBSYSTEM
8215 M:      Linus Walleij <linus.walleij@linaro.org>
8216 L:      linux-gpio@vger.kernel.org
8217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8218 S:      Maintained
8219 F:      drivers/pinctrl/
8220 F:      include/linux/pinctrl/
8221
8222 PIN CONTROLLER - ATMEL AT91
8223 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8224 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8225 S:      Maintained
8226 F:      drivers/pinctrl/pinctrl-at91.*
8227
8228 PIN CONTROLLER - ATMEL AT91 PIO4
8229 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8231 L:      linux-gpio@vger.kernel.org
8232 S:      Supported
8233 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8234
8235 PIN CONTROLLER - INTEL
8236 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8237 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8238 S:      Maintained
8239 F:      drivers/pinctrl/intel/
8240
8241 PIN CONTROLLER - RENESAS
8242 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8243 L:      linux-sh@vger.kernel.org
8244 S:      Maintained
8245 F:      drivers/pinctrl/sh-pfc/
8246
8247 PIN CONTROLLER - SAMSUNG
8248 M:      Tomasz Figa <tomasz.figa@gmail.com>
8249 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8250 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8251 S:      Maintained
8252 F:      drivers/pinctrl/samsung/
8253
8254 PIN CONTROLLER - ST SPEAR
8255 M:      Viresh Kumar <vireshk@kernel.org>
8256 L:      spear-devel@list.st.com
8257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8258 W:      http://www.st.com/spear
8259 S:      Maintained
8260 F:      drivers/pinctrl/spear/
8261
8262 PKTCDVD DRIVER
8263 M:      Jiri Kosina <jikos@kernel.org>
8264 S:      Maintained
8265 F:      drivers/block/pktcdvd.c
8266 F:      include/linux/pktcdvd.h
8267 F:      include/uapi/linux/pktcdvd.h
8268
8269 PKUNITY SOC DRIVERS
8270 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8271 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8272 S:      Maintained
8273 T:      git git://github.com/gxt/linux.git
8274 F:      drivers/input/serio/i8042-unicore32io.h
8275 F:      drivers/i2c/busses/i2c-puv3.c
8276 F:      drivers/video/fbdev/fb-puv3.c
8277 F:      drivers/rtc/rtc-puv3.c
8278
8279 PMBUS HARDWARE MONITORING DRIVERS
8280 M:      Guenter Roeck <linux@roeck-us.net>
8281 L:      lm-sensors@lm-sensors.org
8282 W:      http://www.lm-sensors.org/
8283 W:      http://www.roeck-us.net/linux/drivers/
8284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8285 S:      Maintained
8286 F:      Documentation/hwmon/pmbus
8287 F:      drivers/hwmon/pmbus/
8288 F:      include/linux/i2c/pmbus.h
8289
8290 PMC SIERRA MaxRAID DRIVER
8291 L:      linux-scsi@vger.kernel.org
8292 W:      http://www.pmc-sierra.com/
8293 S:      Orphan
8294 F:      drivers/scsi/pmcraid.*
8295
8296 PMC SIERRA PM8001 DRIVER
8297 M:      Jack Wang <jinpu.wang@profitbricks.com>
8298 M:      lindar_liu@usish.com
8299 L:      pmchba@pmcs.com
8300 L:      linux-scsi@vger.kernel.org
8301 S:      Supported
8302 F:      drivers/scsi/pm8001/
8303
8304 POSIX CLOCKS and TIMERS
8305 M:      Thomas Gleixner <tglx@linutronix.de>
8306 L:      linux-kernel@vger.kernel.org
8307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8308 S:      Maintained
8309 F:      fs/timerfd.c
8310 F:      include/linux/timer*
8311 F:      kernel/time/*timer*
8312
8313 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8314 M:      Sebastian Reichel <sre@kernel.org>
8315 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8316 M:      David Woodhouse <dwmw2@infradead.org>
8317 L:      linux-pm@vger.kernel.org
8318 T:      git git://git.infradead.org/battery-2.6.git
8319 S:      Maintained
8320 F:      include/linux/power_supply.h
8321 F:      drivers/power/
8322 X:      drivers/power/avs/
8323
8324 POWER STATE COORDINATION INTERFACE (PSCI)
8325 M:      Mark Rutland <mark.rutland@arm.com>
8326 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8327 L:      linux-arm-kernel@lists.infradead.org
8328 S:      Maintained
8329 F:      drivers/firmware/psci.c
8330 F:      include/linux/psci.h
8331 F:      include/uapi/linux/psci.h
8332
8333 PNP SUPPORT
8334 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8335 S:      Maintained
8336 F:      drivers/pnp/
8337
8338 PNXxxxx I2C DRIVER
8339 M:      Vitaly Wool <vitalywool@gmail.com>
8340 L:      linux-i2c@vger.kernel.org
8341 S:      Maintained
8342 F:      drivers/i2c/busses/i2c-pnx.c
8343
8344 PPP PROTOCOL DRIVERS AND COMPRESSORS
8345 M:      Paul Mackerras <paulus@samba.org>
8346 L:      linux-ppp@vger.kernel.org
8347 S:      Maintained
8348 F:      drivers/net/ppp/ppp_*
8349
8350 PPP OVER ATM (RFC 2364)
8351 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8352 S:      Maintained
8353 F:      net/atm/pppoatm.c
8354 F:      include/uapi/linux/atmppp.h
8355
8356 PPP OVER ETHERNET
8357 M:      Michal Ostrowski <mostrows@earthlink.net>
8358 S:      Maintained
8359 F:      drivers/net/ppp/pppoe.c
8360 F:      drivers/net/ppp/pppox.c
8361
8362 PPP OVER L2TP
8363 M:      James Chapman <jchapman@katalix.com>
8364 S:      Maintained
8365 F:      net/l2tp/l2tp_ppp.c
8366 F:      include/linux/if_pppol2tp.h
8367 F:      include/uapi/linux/if_pppol2tp.h
8368
8369 PPS SUPPORT
8370 M:      Rodolfo Giometti <giometti@enneenne.com>
8371 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8372 L:      linuxpps@ml.enneenne.com (subscribers-only)
8373 S:      Maintained
8374 F:      Documentation/pps/
8375 F:      drivers/pps/
8376 F:      include/linux/pps*.h
8377
8378 PPTP DRIVER
8379 M:      Dmitry Kozlov <xeb@mail.ru>
8380 L:      netdev@vger.kernel.org
8381 S:      Maintained
8382 F:      drivers/net/ppp/pptp.c
8383 W:      http://sourceforge.net/projects/accel-pptp
8384
8385 PREEMPTIBLE KERNEL
8386 M:      Robert Love <rml@tech9.net>
8387 L:      kpreempt-tech@lists.sourceforge.net
8388 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8389 S:      Supported
8390 F:      Documentation/preempt-locking.txt
8391 F:      include/linux/preempt.h
8392
8393 PRISM54 WIRELESS DRIVER
8394 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8395 L:      linux-wireless@vger.kernel.org
8396 W:      http://wireless.kernel.org/en/users/Drivers/p54
8397 S:      Obsolete
8398 F:      drivers/net/wireless/prism54/
8399
8400 PS3 NETWORK SUPPORT
8401 M:      Geoff Levand <geoff@infradead.org>
8402 L:      netdev@vger.kernel.org
8403 L:      linuxppc-dev@lists.ozlabs.org
8404 S:      Maintained
8405 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8406
8407 PS3 PLATFORM SUPPORT
8408 M:      Geoff Levand <geoff@infradead.org>
8409 L:      linuxppc-dev@lists.ozlabs.org
8410 S:      Maintained
8411 F:      arch/powerpc/boot/ps3*
8412 F:      arch/powerpc/include/asm/lv1call.h
8413 F:      arch/powerpc/include/asm/ps3*.h
8414 F:      arch/powerpc/platforms/ps3/
8415 F:      drivers/*/ps3*
8416 F:      drivers/ps3/
8417 F:      drivers/rtc/rtc-ps3.c
8418 F:      drivers/usb/host/*ps3.c
8419 F:      sound/ppc/snd_ps3*
8420
8421 PS3VRAM DRIVER
8422 M:      Jim Paris <jim@jtan.com>
8423 M:      Geoff Levand <geoff@infradead.org>
8424 L:      linuxppc-dev@lists.ozlabs.org
8425 S:      Maintained
8426 F:      drivers/block/ps3vram.c
8427
8428 PSTORE FILESYSTEM
8429 M:      Anton Vorontsov <anton@enomsg.org>
8430 M:      Colin Cross <ccross@android.com>
8431 M:      Kees Cook <keescook@chromium.org>
8432 M:      Tony Luck <tony.luck@intel.com>
8433 S:      Maintained
8434 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8435 F:      fs/pstore/
8436 F:      include/linux/pstore*
8437 F:      drivers/firmware/efi/efi-pstore.c
8438 F:      drivers/acpi/apei/erst.c
8439
8440 PTP HARDWARE CLOCK SUPPORT
8441 M:      Richard Cochran <richardcochran@gmail.com>
8442 L:      netdev@vger.kernel.org
8443 S:      Maintained
8444 W:      http://linuxptp.sourceforge.net/
8445 F:      Documentation/ABI/testing/sysfs-ptp
8446 F:      Documentation/ptp/*
8447 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8448 F:      drivers/net/phy/dp83640*
8449 F:      drivers/ptp/*
8450 F:      include/linux/ptp_cl*
8451
8452 PTRACE SUPPORT
8453 M:      Roland McGrath <roland@hack.frob.com>
8454 M:      Oleg Nesterov <oleg@redhat.com>
8455 S:      Maintained
8456 F:      include/asm-generic/syscall.h
8457 F:      include/linux/ptrace.h
8458 F:      include/linux/regset.h
8459 F:      include/linux/tracehook.h
8460 F:      include/uapi/linux/ptrace.h
8461 F:      kernel/ptrace.c
8462
8463 PVRUSB2 VIDEO4LINUX DRIVER
8464 M:      Mike Isely <isely@pobox.com>
8465 L:      pvrusb2@isely.net       (subscribers-only)
8466 L:      linux-media@vger.kernel.org
8467 W:      http://www.isely.net/pvrusb2/
8468 T:      git git://linuxtv.org/media_tree.git
8469 S:      Maintained
8470 F:      Documentation/video4linux/README.pvrusb2
8471 F:      drivers/media/usb/pvrusb2/
8472
8473 PWC WEBCAM DRIVER
8474 M:      Hans de Goede <hdegoede@redhat.com>
8475 L:      linux-media@vger.kernel.org
8476 T:      git git://linuxtv.org/media_tree.git
8477 S:      Maintained
8478 F:      drivers/media/usb/pwc/*
8479
8480 PWM FAN DRIVER
8481 M:      Kamil Debski <k.debski@samsung.com>
8482 L:      lm-sensors@lm-sensors.org
8483 S:      Supported
8484 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8485 F:      Documentation/hwmon/pwm-fan
8486 F:      drivers/hwmon/pwm-fan.c
8487
8488 PWM SUBSYSTEM
8489 M:      Thierry Reding <thierry.reding@gmail.com>
8490 L:      linux-pwm@vger.kernel.org
8491 S:      Maintained
8492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8493 F:      Documentation/pwm.txt
8494 F:      Documentation/devicetree/bindings/pwm/
8495 F:      include/linux/pwm.h
8496 F:      drivers/pwm/
8497 F:      drivers/video/backlight/pwm_bl.c
8498 F:      include/linux/pwm_backlight.h
8499
8500 PXA2xx/PXA3xx SUPPORT
8501 M:      Daniel Mack <daniel@zonque.org>
8502 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8503 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8505 T:      git git://github.com/hzhuang1/linux.git
8506 T:      git git://github.com/rjarzmik/linux.git
8507 S:      Maintained
8508 F:      arch/arm/mach-pxa/
8509 F:      drivers/dma/pxa*
8510 F:      drivers/pcmcia/pxa2xx*
8511 F:      drivers/spi/spi-pxa2xx*
8512 F:      drivers/usb/gadget/udc/pxa2*
8513 F:      include/sound/pxa2xx-lib.h
8514 F:      sound/arm/pxa*
8515 F:      sound/soc/pxa/
8516
8517 PXA3xx NAND FLASH DRIVER
8518 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8519 L:      linux-mtd@lists.infradead.org
8520 S:      Maintained
8521 F:      drivers/mtd/nand/pxa3xx_nand.c
8522
8523 MMP SUPPORT
8524 M:      Eric Miao <eric.y.miao@gmail.com>
8525 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8526 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8527 T:      git git://github.com/hzhuang1/linux.git
8528 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8529 S:      Maintained
8530 F:      arch/arm/mach-mmp/
8531
8532 PXA MMCI DRIVER
8533 S:      Orphan
8534
8535 PXA RTC DRIVER
8536 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8537 L:      rtc-linux@googlegroups.com
8538 S:      Maintained
8539
8540 QAT DRIVER
8541 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8542 L:      qat-linux@intel.com
8543 S:      Supported
8544 F:      drivers/crypto/qat/
8545
8546 QIB DRIVER
8547 M:      Mike Marciniszyn <infinipath@intel.com>
8548 L:      linux-rdma@vger.kernel.org
8549 S:      Supported
8550 F:      drivers/infiniband/hw/qib/
8551
8552 QLOGIC QLA1280 SCSI DRIVER
8553 M:      Michael Reed <mdr@sgi.com>
8554 L:      linux-scsi@vger.kernel.org
8555 S:      Maintained
8556 F:      drivers/scsi/qla1280.[ch]
8557
8558 QLOGIC QLA2XXX FC-SCSI DRIVER
8559 M:      qla2xxx-upstream@qlogic.com
8560 L:      linux-scsi@vger.kernel.org
8561 S:      Supported
8562 F:      Documentation/scsi/LICENSE.qla2xxx
8563 F:      drivers/scsi/qla2xxx/
8564
8565 QLOGIC QLA4XXX iSCSI DRIVER
8566 M:      QLogic-Storage-Upstream@qlogic.com
8567 L:      linux-scsi@vger.kernel.org
8568 S:      Supported
8569 F:      Documentation/scsi/LICENSE.qla4xxx
8570 F:      drivers/scsi/qla4xxx/
8571
8572 QLOGIC QLA3XXX NETWORK DRIVER
8573 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8574 M:      Ron Mercer <ron.mercer@qlogic.com>
8575 M:      linux-driver@qlogic.com
8576 L:      netdev@vger.kernel.org
8577 S:      Supported
8578 F:      Documentation/networking/LICENSE.qla3xxx
8579 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8580
8581 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8582 M:      Dept-GELinuxNICDev@qlogic.com
8583 L:      netdev@vger.kernel.org
8584 S:      Supported
8585 F:      drivers/net/ethernet/qlogic/qlcnic/
8586
8587 QLOGIC QLGE 10Gb ETHERNET DRIVER
8588 M:      Harish Patil <harish.patil@qlogic.com>
8589 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8590 M:      Dept-GELinuxNICDev@qlogic.com
8591 M:      linux-driver@qlogic.com
8592 L:      netdev@vger.kernel.org
8593 S:      Supported
8594 F:      drivers/net/ethernet/qlogic/qlge/
8595
8596 QLOGIC QL4xxx ETHERNET DRIVER
8597 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8598 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8599 M:      everest-linux-l2@qlogic.com
8600 L:      netdev@vger.kernel.org
8601 S:      Supported
8602 F:      drivers/net/ethernet/qlogic/qed/
8603 F:      include/linux/qed/
8604 F:      drivers/net/ethernet/qlogic/qede/
8605
8606 QNX4 FILESYSTEM
8607 M:      Anders Larsen <al@alarsen.net>
8608 W:      http://www.alarsen.net/linux/qnx4fs/
8609 S:      Maintained
8610 F:      fs/qnx4/
8611 F:      include/uapi/linux/qnx4_fs.h
8612 F:      include/uapi/linux/qnxtypes.h
8613
8614 QT1010 MEDIA DRIVER
8615 M:      Antti Palosaari <crope@iki.fi>
8616 L:      linux-media@vger.kernel.org
8617 W:      http://linuxtv.org/
8618 W:      http://palosaari.fi/linux/
8619 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8620 T:      git git://linuxtv.org/anttip/media_tree.git
8621 S:      Maintained
8622 F:      drivers/media/tuners/qt1010*
8623
8624 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8625 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8626 L:      linux-wireless@vger.kernel.org
8627 L:      ath9k-devel@lists.ath9k.org
8628 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8629 S:      Supported
8630 F:      drivers/net/wireless/ath/ath9k/
8631
8632 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8633 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8634 L:      ath10k@lists.infradead.org
8635 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8636 T:      git git://github.com/kvalo/ath.git
8637 S:      Supported
8638 F:      drivers/net/wireless/ath/ath10k/
8639
8640 QUALCOMM HEXAGON ARCHITECTURE
8641 M:      Richard Kuo <rkuo@codeaurora.org>
8642 L:      linux-hexagon@vger.kernel.org
8643 S:      Supported
8644 F:      arch/hexagon/
8645
8646 QUALCOMM WCN36XX WIRELESS DRIVER
8647 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8648 L:      wcn36xx@lists.infradead.org
8649 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8650 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8651 S:      Supported
8652 F:      drivers/net/wireless/ath/wcn36xx/
8653
8654 RADOS BLOCK DEVICE (RBD)
8655 M:      Ilya Dryomov <idryomov@gmail.com>
8656 M:      Sage Weil <sage@redhat.com>
8657 M:      Alex Elder <elder@kernel.org>
8658 L:      ceph-devel@vger.kernel.org
8659 W:      http://ceph.com/
8660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8661 T:      git git://github.com/ceph/ceph-client.git
8662 S:      Supported
8663 F:      Documentation/ABI/testing/sysfs-bus-rbd
8664 F:      drivers/block/rbd.c
8665 F:      drivers/block/rbd_types.h
8666
8667 RADEON FRAMEBUFFER DISPLAY DRIVER
8668 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8669 L:      linux-fbdev@vger.kernel.org
8670 S:      Maintained
8671 F:      drivers/video/fbdev/aty/radeon*
8672 F:      include/uapi/linux/radeonfb.h
8673
8674 RADIOSHARK RADIO DRIVER
8675 M:      Hans de Goede <hdegoede@redhat.com>
8676 L:      linux-media@vger.kernel.org
8677 T:      git git://linuxtv.org/media_tree.git
8678 S:      Maintained
8679 F:      drivers/media/radio/radio-shark.c
8680
8681 RADIOSHARK2 RADIO DRIVER
8682 M:      Hans de Goede <hdegoede@redhat.com>
8683 L:      linux-media@vger.kernel.org
8684 T:      git git://linuxtv.org/media_tree.git
8685 S:      Maintained
8686 F:      drivers/media/radio/radio-shark2.c
8687 F:      drivers/media/radio/radio-tea5777.c
8688
8689 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8690 M:      Paul Mackerras <paulus@samba.org>
8691 L:      linux-fbdev@vger.kernel.org
8692 S:      Maintained
8693 F:      drivers/video/fbdev/aty/aty128fb.c
8694
8695 RALINK RT2X00 WIRELESS LAN DRIVER
8696 P:      rt2x00 project
8697 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8698 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8699 L:      linux-wireless@vger.kernel.org
8700 S:      Maintained
8701 F:      drivers/net/wireless/rt2x00/
8702
8703 RAMDISK RAM BLOCK DEVICE DRIVER
8704 M:      Jens Axboe <axboe@kernel.dk>
8705 S:      Maintained
8706 F:      Documentation/blockdev/ramdisk.txt
8707 F:      drivers/block/brd.c
8708
8709 RANDOM NUMBER DRIVER
8710 M:      "Theodore Ts'o" <tytso@mit.edu>
8711 S:      Maintained
8712 F:      drivers/char/random.c
8713
8714 RAPIDIO SUBSYSTEM
8715 M:      Matt Porter <mporter@kernel.crashing.org>
8716 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8717 S:      Maintained
8718 F:      drivers/rapidio/
8719
8720 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8721 L:      linux-wireless@vger.kernel.org
8722 S:      Orphan
8723 F:      drivers/net/wireless/ray*
8724
8725 RCUTORTURE MODULE
8726 M:      Josh Triplett <josh@joshtriplett.org>
8727 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8728 L:      linux-kernel@vger.kernel.org
8729 S:      Supported
8730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8731 F:      Documentation/RCU/torture.txt
8732 F:      kernel/rcu/rcutorture.c
8733
8734 RCUTORTURE TEST FRAMEWORK
8735 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8736 M:      Josh Triplett <josh@joshtriplett.org>
8737 R:      Steven Rostedt <rostedt@goodmis.org>
8738 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8739 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8740 L:      linux-kernel@vger.kernel.org
8741 S:      Supported
8742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8743 F:      tools/testing/selftests/rcutorture
8744
8745 RDC R-321X SoC
8746 M:      Florian Fainelli <florian@openwrt.org>
8747 S:      Maintained
8748
8749 RDC R6040 FAST ETHERNET DRIVER
8750 M:      Florian Fainelli <florian@openwrt.org>
8751 L:      netdev@vger.kernel.org
8752 S:      Maintained
8753 F:      drivers/net/ethernet/rdc/r6040.c
8754
8755 RDS - RELIABLE DATAGRAM SOCKETS
8756 M:      Chien Yen <chien.yen@oracle.com>
8757 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8758 S:      Supported
8759 F:      net/rds/
8760
8761 READ-COPY UPDATE (RCU)
8762 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8763 M:      Josh Triplett <josh@joshtriplett.org>
8764 R:      Steven Rostedt <rostedt@goodmis.org>
8765 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8766 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8767 L:      linux-kernel@vger.kernel.org
8768 W:      http://www.rdrop.com/users/paulmck/RCU/
8769 S:      Supported
8770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8771 F:      Documentation/RCU/
8772 X:      Documentation/RCU/torture.txt
8773 F:      include/linux/rcu*
8774 X:      include/linux/srcu.h
8775 F:      kernel/rcu/
8776 X:      kernel/torture.c
8777
8778 REAL TIME CLOCK (RTC) SUBSYSTEM
8779 M:      Alessandro Zummo <a.zummo@towertech.it>
8780 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8781 L:      rtc-linux@googlegroups.com
8782 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8784 S:      Maintained
8785 F:      Documentation/rtc.txt
8786 F:      drivers/rtc/
8787 F:      include/linux/rtc.h
8788 F:      include/uapi/linux/rtc.h
8789
8790 REALTEK AUDIO CODECS
8791 M:      Bard Liao <bardliao@realtek.com>
8792 M:      Oder Chiou <oder_chiou@realtek.com>
8793 S:      Maintained
8794 F:      sound/soc/codecs/rt*
8795 F:      include/sound/rt*.h
8796
8797 REISERFS FILE SYSTEM
8798 L:      reiserfs-devel@vger.kernel.org
8799 S:      Supported
8800 F:      fs/reiserfs/
8801
8802 REGISTER MAP ABSTRACTION
8803 M:      Mark Brown <broonie@kernel.org>
8804 L:      linux-kernel@vger.kernel.org
8805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8806 S:      Supported
8807 F:      drivers/base/regmap/
8808 F:      include/linux/regmap.h
8809
8810 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8811 M:      Ohad Ben-Cohen <ohad@wizery.com>
8812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8813 S:      Maintained
8814 F:      drivers/remoteproc/
8815 F:      Documentation/remoteproc.txt
8816 F:      include/linux/remoteproc.h
8817
8818 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8819 M:      Ohad Ben-Cohen <ohad@wizery.com>
8820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8821 S:      Maintained
8822 F:      drivers/rpmsg/
8823 F:      Documentation/rpmsg.txt
8824 F:      include/linux/rpmsg.h
8825
8826 RESET CONTROLLER FRAMEWORK
8827 M:      Philipp Zabel <p.zabel@pengutronix.de>
8828 S:      Maintained
8829 F:      drivers/reset/
8830 F:      Documentation/devicetree/bindings/reset/
8831 F:      include/dt-bindings/reset/
8832 F:      include/linux/reset.h
8833 F:      include/linux/reset-controller.h
8834
8835 RFKILL
8836 M:      Johannes Berg <johannes@sipsolutions.net>
8837 L:      linux-wireless@vger.kernel.org
8838 W:      http://wireless.kernel.org/
8839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8841 S:      Maintained
8842 F:      Documentation/rfkill.txt
8843 F:      net/rfkill/
8844
8845 RHASHTABLE
8846 M:      Thomas Graf <tgraf@suug.ch>
8847 L:      netdev@vger.kernel.org
8848 S:      Maintained
8849 F:      lib/rhashtable.c
8850 F:      include/linux/rhashtable.h
8851
8852 RICOH SMARTMEDIA/XD DRIVER
8853 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8854 S:      Maintained
8855 F:      drivers/mtd/nand/r852.c
8856 F:      drivers/mtd/nand/r852.h
8857
8858 RICOH R5C592 MEMORYSTICK DRIVER
8859 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8860 S:      Maintained
8861 F:      drivers/memstick/host/r592.*
8862
8863 ROCCAT DRIVERS
8864 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8865 W:      http://sourceforge.net/projects/roccat/
8866 S:      Maintained
8867 F:      drivers/hid/hid-roccat*
8868 F:      include/linux/hid-roccat*
8869 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8870
8871 ROCKER DRIVER
8872 M:      Jiri Pirko <jiri@resnulli.us>
8873 M:      Scott Feldman <sfeldma@gmail.com>
8874 L:      netdev@vger.kernel.org
8875 S:      Supported
8876 F:      drivers/net/ethernet/rocker/
8877
8878 ROCKETPORT DRIVER
8879 P:      Comtrol Corp.
8880 W:      http://www.comtrol.com
8881 S:      Maintained
8882 F:      Documentation/serial/rocket.txt
8883 F:      drivers/tty/rocket*
8884
8885 ROCKETPORT EXPRESS/INFINITY DRIVER
8886 M:      Kevin Cernekee <cernekee@gmail.com>
8887 L:      linux-serial@vger.kernel.org
8888 S:      Odd Fixes
8889 F:      drivers/tty/serial/rp2.*
8890
8891 ROSE NETWORK LAYER
8892 M:      Ralf Baechle <ralf@linux-mips.org>
8893 L:      linux-hams@vger.kernel.org
8894 W:      http://www.linux-ax25.org/
8895 S:      Maintained
8896 F:      include/net/rose.h
8897 F:      include/uapi/linux/rose.h
8898 F:      net/rose/
8899
8900 RTL2830 MEDIA DRIVER
8901 M:      Antti Palosaari <crope@iki.fi>
8902 L:      linux-media@vger.kernel.org
8903 W:      http://linuxtv.org/
8904 W:      http://palosaari.fi/linux/
8905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8906 T:      git git://linuxtv.org/anttip/media_tree.git
8907 S:      Maintained
8908 F:      drivers/media/dvb-frontends/rtl2830*
8909
8910 RTL2832 MEDIA DRIVER
8911 M:      Antti Palosaari <crope@iki.fi>
8912 L:      linux-media@vger.kernel.org
8913 W:      http://linuxtv.org/
8914 W:      http://palosaari.fi/linux/
8915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8916 T:      git git://linuxtv.org/anttip/media_tree.git
8917 S:      Maintained
8918 F:      drivers/media/dvb-frontends/rtl2832*
8919
8920 RTL2832_SDR MEDIA DRIVER
8921 M:      Antti Palosaari <crope@iki.fi>
8922 L:      linux-media@vger.kernel.org
8923 W:      http://linuxtv.org/
8924 W:      http://palosaari.fi/linux/
8925 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8926 T:      git git://linuxtv.org/anttip/media_tree.git
8927 S:      Maintained
8928 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8929
8930 RTL8180 WIRELESS DRIVER
8931 L:      linux-wireless@vger.kernel.org
8932 W:      http://wireless.kernel.org/
8933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8934 S:      Orphan
8935 F:      drivers/net/wireless/rtl818x/rtl8180/
8936
8937 RTL8187 WIRELESS DRIVER
8938 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8939 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8940 M:      Larry Finger <Larry.Finger@lwfinger.net>
8941 L:      linux-wireless@vger.kernel.org
8942 W:      http://wireless.kernel.org/
8943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8944 S:      Maintained
8945 F:      drivers/net/wireless/rtl818x/rtl8187/
8946
8947 RTL8192CE WIRELESS DRIVER
8948 M:      Larry Finger <Larry.Finger@lwfinger.net>
8949 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8950 L:      linux-wireless@vger.kernel.org
8951 W:      http://wireless.kernel.org/
8952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8953 S:      Maintained
8954 F:      drivers/net/wireless/rtlwifi/
8955 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8956
8957 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
8958 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
8959 L:      linux-wireless@vger.kernel.org
8960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
8961 S:      Maintained
8962 F:      drivers/net/wireless/realtek/rtl8xxxu/
8963
8964 S3 SAVAGE FRAMEBUFFER DRIVER
8965 M:      Antonino Daplas <adaplas@gmail.com>
8966 L:      linux-fbdev@vger.kernel.org
8967 S:      Maintained
8968 F:      drivers/video/fbdev/savage/
8969
8970 S390
8971 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8972 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8973 L:      linux-s390@vger.kernel.org
8974 W:      http://www.ibm.com/developerworks/linux/linux390/
8975 S:      Supported
8976 F:      arch/s390/
8977 F:      drivers/s390/
8978 F:      Documentation/s390/
8979 F:      Documentation/DocBook/s390*
8980
8981 S390 COMMON I/O LAYER
8982 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8983 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8984 L:      linux-s390@vger.kernel.org
8985 W:      http://www.ibm.com/developerworks/linux/linux390/
8986 S:      Supported
8987 F:      drivers/s390/cio/
8988
8989 S390 DASD DRIVER
8990 M:      Stefan Weinhuber <wein@de.ibm.com>
8991 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8992 L:      linux-s390@vger.kernel.org
8993 W:      http://www.ibm.com/developerworks/linux/linux390/
8994 S:      Supported
8995 F:      drivers/s390/block/dasd*
8996 F:      block/partitions/ibm.c
8997
8998 S390 NETWORK DRIVERS
8999 M:      Ursula Braun <ursula.braun@de.ibm.com>
9000 L:      linux-s390@vger.kernel.org
9001 W:      http://www.ibm.com/developerworks/linux/linux390/
9002 S:      Supported
9003 F:      drivers/s390/net/
9004
9005 S390 PCI SUBSYSTEM
9006 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9007 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9008 L:      linux-s390@vger.kernel.org
9009 W:      http://www.ibm.com/developerworks/linux/linux390/
9010 S:      Supported
9011 F:      arch/s390/pci/
9012 F:      drivers/pci/hotplug/s390_pci_hpc.c
9013
9014 S390 ZCRYPT DRIVER
9015 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9016 L:      linux-s390@vger.kernel.org
9017 W:      http://www.ibm.com/developerworks/linux/linux390/
9018 S:      Supported
9019 F:      drivers/s390/crypto/
9020
9021 S390 ZFCP DRIVER
9022 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9023 L:      linux-s390@vger.kernel.org
9024 W:      http://www.ibm.com/developerworks/linux/linux390/
9025 S:      Supported
9026 F:      drivers/s390/scsi/zfcp_*
9027
9028 S390 IUCV NETWORK LAYER
9029 M:      Ursula Braun <ursula.braun@de.ibm.com>
9030 L:      linux-s390@vger.kernel.org
9031 W:      http://www.ibm.com/developerworks/linux/linux390/
9032 S:      Supported
9033 F:      drivers/s390/net/*iucv*
9034 F:      include/net/iucv/
9035 F:      net/iucv/
9036
9037 S3C24XX SD/MMC Driver
9038 M:      Ben Dooks <ben-linux@fluff.org>
9039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9040 S:      Supported
9041 F:      drivers/mmc/host/s3cmci.*
9042
9043 SAA6588 RDS RECEIVER DRIVER
9044 M:      Hans Verkuil <hverkuil@xs4all.nl>
9045 L:      linux-media@vger.kernel.org
9046 T:      git git://linuxtv.org/media_tree.git
9047 W:      http://linuxtv.org
9048 S:      Odd Fixes
9049 F:      drivers/media/i2c/saa6588*
9050
9051 SAA7134 VIDEO4LINUX DRIVER
9052 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9053 L:      linux-media@vger.kernel.org
9054 W:      http://linuxtv.org
9055 T:      git git://linuxtv.org/media_tree.git
9056 S:      Odd fixes
9057 F:      Documentation/video4linux/*.saa7134
9058 F:      drivers/media/pci/saa7134/
9059
9060 SAA7146 VIDEO4LINUX-2 DRIVER
9061 M:      Hans Verkuil <hverkuil@xs4all.nl>
9062 L:      linux-media@vger.kernel.org
9063 T:      git git://linuxtv.org/media_tree.git
9064 S:      Maintained
9065 F:      drivers/media/common/saa7146/
9066 F:      drivers/media/pci/saa7146/
9067 F:      include/media/saa7146*
9068
9069 SAMSUNG LAPTOP DRIVER
9070 M:      Corentin Chary <corentin.chary@gmail.com>
9071 L:      platform-driver-x86@vger.kernel.org
9072 S:      Maintained
9073 F:      drivers/platform/x86/samsung-laptop.c
9074
9075 SAMSUNG AUDIO (ASoC) DRIVERS
9076 M:      Sangbeom Kim <sbkim73@samsung.com>
9077 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9078 S:      Supported
9079 F:      sound/soc/samsung/
9080
9081 SAMSUNG FRAMEBUFFER DRIVER
9082 M:      Jingoo Han <jingoohan1@gmail.com>
9083 L:      linux-fbdev@vger.kernel.org
9084 S:      Maintained
9085 F:      drivers/video/fbdev/s3c-fb.c
9086
9087 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9088 M:      Sangbeom Kim <sbkim73@samsung.com>
9089 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9090 L:      linux-kernel@vger.kernel.org
9091 L:      linux-samsung-soc@vger.kernel.org
9092 S:      Supported
9093 F:      drivers/mfd/sec*.c
9094 F:      drivers/regulator/s2m*.c
9095 F:      drivers/regulator/s5m*.c
9096 F:      drivers/clk/clk-s2mps11.c
9097 F:      drivers/rtc/rtc-s5m.c
9098 F:      include/linux/mfd/samsung/
9099 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9100 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
9101
9102 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9103 M:      Kyungmin Park <kyungmin.park@samsung.com>
9104 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9105 L:      linux-media@vger.kernel.org
9106 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9107 S:      Supported
9108 F:      drivers/media/platform/exynos4-is/
9109
9110 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9111 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9112 L:      linux-media@vger.kernel.org
9113 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9114 S:      Maintained
9115 F:      drivers/media/platform/s3c-camif/
9116 F:      include/media/s3c_camif.h
9117
9118 SAMSUNG S5C73M3 CAMERA DRIVER
9119 M:      Kyungmin Park <kyungmin.park@samsung.com>
9120 M:      Andrzej Hajda <a.hajda@samsung.com>
9121 L:      linux-media@vger.kernel.org
9122 S:      Supported
9123 F:      drivers/media/i2c/s5c73m3/*
9124
9125 SAMSUNG S5K5BAF CAMERA DRIVER
9126 M:      Kyungmin Park <kyungmin.park@samsung.com>
9127 M:      Andrzej Hajda <a.hajda@samsung.com>
9128 L:      linux-media@vger.kernel.org
9129 S:      Supported
9130 F:      drivers/media/i2c/s5k5baf.c
9131
9132 SAMSUNG S3FWRN5 NFC DRIVER
9133 M:      Robert Baldyga <r.baldyga@samsung.com>
9134 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9135 S:      Supported
9136 F:      drivers/nfc/s3fwrn5
9137
9138 SAMSUNG SOC CLOCK DRIVERS
9139 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9140 M:      Tomasz Figa <tomasz.figa@gmail.com>
9141 S:      Supported
9142 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9143 F:      drivers/clk/samsung/
9144
9145 SAMSUNG SXGBE DRIVERS
9146 M:      Byungho An <bh74.an@samsung.com>
9147 M:      Girish K S <ks.giri@samsung.com>
9148 M:      Vipul Pandya <vipul.pandya@samsung.com>
9149 S:      Supported
9150 L:      netdev@vger.kernel.org
9151 F:      drivers/net/ethernet/samsung/sxgbe/
9152
9153 SAMSUNG THERMAL DRIVER
9154 M:      Lukasz Majewski <l.majewski@samsung.com>
9155 L:      linux-pm@vger.kernel.org
9156 L:      linux-samsung-soc@vger.kernel.org
9157 S:      Supported
9158 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9159 F:      drivers/thermal/samsung/
9160
9161 SAMSUNG USB2 PHY DRIVER
9162 M:      Kamil Debski <k.debski@samsung.com>
9163 L:      linux-kernel@vger.kernel.org
9164 S:      Supported
9165 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9166 F:      Documentation/phy/samsung-usb2.txt
9167 F:      drivers/phy/phy-exynos4210-usb2.c
9168 F:      drivers/phy/phy-exynos4x12-usb2.c
9169 F:      drivers/phy/phy-exynos5250-usb2.c
9170 F:      drivers/phy/phy-s5pv210-usb2.c
9171 F:      drivers/phy/phy-samsung-usb2.c
9172 F:      drivers/phy/phy-samsung-usb2.h
9173
9174 SERIAL DRIVERS
9175 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9176 L:      linux-serial@vger.kernel.org
9177 S:      Maintained
9178 F:      drivers/tty/serial/
9179
9180 SYNOPSYS DESIGNWARE DMAC DRIVER
9181 M:      Viresh Kumar <vireshk@kernel.org>
9182 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9183 S:      Maintained
9184 F:      include/linux/dma/dw.h
9185 F:      include/linux/platform_data/dma-dw.h
9186 F:      drivers/dma/dw/
9187
9188 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9189 M: Lars Persson <lars.persson@axis.com>
9190 L: netdev@vger.kernel.org
9191 S: Supported
9192 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9193 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9194
9195 SYNOPSYS DESIGNWARE I2C DRIVER
9196 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9197 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9198 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9199 L:      linux-i2c@vger.kernel.org
9200 S:      Maintained
9201 F:      drivers/i2c/busses/i2c-designware-*
9202 F:      include/linux/platform_data/i2c-designware.h
9203
9204 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9205 M:      Seungwon Jeon <tgih.jun@samsung.com>
9206 M:      Jaehoon Chung <jh80.chung@samsung.com>
9207 L:      linux-mmc@vger.kernel.org
9208 S:      Maintained
9209 F:      include/linux/mmc/dw_mmc.h
9210 F:      drivers/mmc/host/dw_mmc*
9211
9212 THUNDERBOLT DRIVER
9213 M:      Andreas Noever <andreas.noever@gmail.com>
9214 S:      Maintained
9215 F:      drivers/thunderbolt/
9216
9217 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9218 M:      John Stultz <john.stultz@linaro.org>
9219 M:      Thomas Gleixner <tglx@linutronix.de>
9220 L:      linux-kernel@vger.kernel.org
9221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9222 S:      Supported
9223 F:      include/linux/clocksource.h
9224 F:      include/linux/time.h
9225 F:      include/linux/timex.h
9226 F:      include/uapi/linux/time.h
9227 F:      include/uapi/linux/timex.h
9228 F:      kernel/time/clocksource.c
9229 F:      kernel/time/time*.c
9230 F:      kernel/time/ntp.c
9231 F:      tools/testing/selftests/timers/
9232
9233 SC1200 WDT DRIVER
9234 M:      Zwane Mwaikambo <zwanem@gmail.com>
9235 S:      Maintained
9236 F:      drivers/watchdog/sc1200wdt.c
9237
9238 SCHEDULER
9239 M:      Ingo Molnar <mingo@redhat.com>
9240 M:      Peter Zijlstra <peterz@infradead.org>
9241 L:      linux-kernel@vger.kernel.org
9242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9243 S:      Maintained
9244 F:      kernel/sched/
9245 F:      include/linux/sched.h
9246 F:      include/uapi/linux/sched.h
9247 F:      include/linux/wait.h
9248
9249 SCORE ARCHITECTURE
9250 M:      Chen Liqin <liqin.linux@gmail.com>
9251 M:      Lennox Wu <lennox.wu@gmail.com>
9252 W:      http://www.sunplus.com
9253 S:      Supported
9254 F:      arch/score/
9255
9256 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9257 M:      Sudeep Holla <sudeep.holla@arm.com>
9258 L:      linux-arm-kernel@lists.infradead.org
9259 S:      Maintained
9260 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9261 F:      drivers/clk/clk-scpi.c
9262 F:      drivers/cpufreq/scpi-cpufreq.c
9263 F:      drivers/firmware/arm_scpi.c
9264 F:      include/linux/scpi_protocol.h
9265
9266 SCSI CDROM DRIVER
9267 M:      Jens Axboe <axboe@kernel.dk>
9268 L:      linux-scsi@vger.kernel.org
9269 W:      http://www.kernel.dk
9270 S:      Maintained
9271 F:      drivers/scsi/sr*
9272
9273 SCSI RDMA PROTOCOL (SRP) INITIATOR
9274 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9275 L:      linux-rdma@vger.kernel.org
9276 S:      Supported
9277 W:      http://www.openfabrics.org
9278 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9280 F:      drivers/infiniband/ulp/srp/
9281 F:      include/scsi/srp.h
9282
9283 SCSI SG DRIVER
9284 M:      Doug Gilbert <dgilbert@interlog.com>
9285 L:      linux-scsi@vger.kernel.org
9286 W:      http://sg.danny.cz/sg
9287 S:      Maintained
9288 F:      Documentation/scsi/scsi-generic.txt
9289 F:      drivers/scsi/sg.c
9290 F:      include/scsi/sg.h
9291
9292 SCSI SUBSYSTEM
9293 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9294 L:      linux-scsi@vger.kernel.org
9295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9296 S:      Maintained
9297 F:      drivers/scsi/
9298 F:      include/scsi/
9299
9300 SCSI TAPE DRIVER
9301 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9302 L:      linux-scsi@vger.kernel.org
9303 S:      Maintained
9304 F:      Documentation/scsi/st.txt
9305 F:      drivers/scsi/st.*
9306 F:      drivers/scsi/st_*.h
9307
9308 SCTP PROTOCOL
9309 M:      Vlad Yasevich <vyasevich@gmail.com>
9310 M:      Neil Horman <nhorman@tuxdriver.com>
9311 L:      linux-sctp@vger.kernel.org
9312 W:      http://lksctp.sourceforge.net
9313 S:      Maintained
9314 F:      Documentation/networking/sctp.txt
9315 F:      include/linux/sctp.h
9316 F:      include/uapi/linux/sctp.h
9317 F:      include/net/sctp/
9318 F:      net/sctp/
9319
9320 SCx200 CPU SUPPORT
9321 M:      Jim Cromie <jim.cromie@gmail.com>
9322 S:      Odd Fixes
9323 F:      Documentation/i2c/busses/scx200_acb
9324 F:      arch/x86/platform/scx200/
9325 F:      drivers/watchdog/scx200_wdt.c
9326 F:      drivers/i2c/busses/scx200*
9327 F:      drivers/mtd/maps/scx200_docflash.c
9328 F:      include/linux/scx200.h
9329
9330 SCx200 GPIO DRIVER
9331 M:      Jim Cromie <jim.cromie@gmail.com>
9332 S:      Maintained
9333 F:      drivers/char/scx200_gpio.c
9334 F:      include/linux/scx200_gpio.h
9335
9336 SCx200 HRT CLOCKSOURCE DRIVER
9337 M:      Jim Cromie <jim.cromie@gmail.com>
9338 S:      Maintained
9339 F:      drivers/clocksource/scx200_hrt.c
9340
9341 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9342 M:      Sascha Sommer <saschasommer@freenet.de>
9343 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9344 S:      Maintained
9345 F:      drivers/mmc/host/sdricoh_cs.c
9346
9347 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9348 L:      linux-mmc@vger.kernel.org
9349 S:      Orphan
9350 F:      drivers/mmc/host/sdhci.*
9351 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9352
9353 SECURE COMPUTING
9354 M:      Kees Cook <keescook@chromium.org>
9355 R:      Andy Lutomirski <luto@amacapital.net>
9356 R:      Will Drewry <wad@chromium.org>
9357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9358 S:      Supported
9359 F:      kernel/seccomp.c
9360 F:      include/uapi/linux/seccomp.h
9361 F:      include/linux/seccomp.h
9362 F:      tools/testing/selftests/seccomp/*
9363 K:      \bsecure_computing
9364 K:      \bTIF_SECCOMP\b
9365
9366 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9367 M:      Ben Dooks <ben-linux@fluff.org>
9368 M:      Jaehoon Chung <jh80.chung@samsung.com>
9369 L:      linux-mmc@vger.kernel.org
9370 S:      Maintained
9371 F:      drivers/mmc/host/sdhci-s3c*
9372
9373 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9374 M:      Viresh Kumar <vireshk@kernel.org>
9375 L:      spear-devel@list.st.com
9376 L:      linux-mmc@vger.kernel.org
9377 S:      Maintained
9378 F:      drivers/mmc/host/sdhci-spear.c
9379
9380 SECURITY SUBSYSTEM
9381 M:      James Morris <james.l.morris@oracle.com>
9382 M:      "Serge E. Hallyn" <serge@hallyn.com>
9383 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9385 W:      http://kernsec.org/
9386 S:      Supported
9387 F:      security/
9388
9389 SECURITY CONTACT
9390 M:      Security Officers <security@kernel.org>
9391 S:      Supported
9392
9393 SELINUX SECURITY MODULE
9394 M:      Paul Moore <paul@paul-moore.com>
9395 M:      Stephen Smalley <sds@tycho.nsa.gov>
9396 M:      Eric Paris <eparis@parisplace.org>
9397 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9398 W:      http://selinuxproject.org
9399 T:      git git://git.infradead.org/users/pcmoore/selinux
9400 S:      Supported
9401 F:      include/linux/selinux*
9402 F:      security/selinux/
9403 F:      scripts/selinux/
9404
9405 APPARMOR SECURITY MODULE
9406 M:      John Johansen <john.johansen@canonical.com>
9407 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9408 W:      apparmor.wiki.kernel.org
9409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9410 S:      Supported
9411 F:      security/apparmor/
9412
9413 YAMA SECURITY MODULE
9414 M:      Kees Cook <keescook@chromium.org>
9415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9416 S:      Supported
9417 F:      security/yama/
9418
9419 SENSABLE PHANTOM
9420 M:      Jiri Slaby <jirislaby@gmail.com>
9421 S:      Maintained
9422 F:      drivers/misc/phantom.c
9423 F:      include/uapi/linux/phantom.h
9424
9425 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9426 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9427 M:      Minh Tran <minh.tran@avagotech.com>
9428 M:      John Soni Jose <sony.john-n@avagotech.com>
9429 L:      linux-scsi@vger.kernel.org
9430 W:      http://www.avagotech.com
9431 S:      Supported
9432 F:      drivers/scsi/be2iscsi/
9433
9434 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9435 M:      Sathya Perla <sathya.perla@avagotech.com>
9436 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9437 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9438 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9439 L:      netdev@vger.kernel.org
9440 W:      http://www.emulex.com
9441 S:      Supported
9442 F:      drivers/net/ethernet/emulex/benet/
9443
9444 EMULEX ONECONNECT ROCE DRIVER
9445 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9446 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9447 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9448 L:      linux-rdma@vger.kernel.org
9449 W:      http://www.emulex.com
9450 S:      Supported
9451 F:      drivers/infiniband/hw/ocrdma/
9452
9453 SFC NETWORK DRIVER
9454 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9455 M:      Shradha Shah <sshah@solarflare.com>
9456 L:      netdev@vger.kernel.org
9457 S:      Supported
9458 F:      drivers/net/ethernet/sfc/
9459
9460 SGI GRU DRIVER
9461 M:      Dimitri Sivanich <sivanich@sgi.com>
9462 S:      Maintained
9463 F:      drivers/misc/sgi-gru/
9464
9465 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9466 M:      Pat Gefre <pfg@sgi.com>
9467 L:      linux-ia64@vger.kernel.org
9468 S:      Supported
9469 F:      Documentation/ia64/serial.txt
9470 F:      drivers/tty/serial/ioc?_serial.c
9471 F:      include/linux/ioc?.h
9472
9473 SGI XP/XPC/XPNET DRIVER
9474 M:      Cliff Whickman <cpw@sgi.com>
9475 M:      Robin Holt <robinmholt@gmail.com>
9476 S:      Maintained
9477 F:      drivers/misc/sgi-xp/
9478
9479 SI2157 MEDIA DRIVER
9480 M:      Antti Palosaari <crope@iki.fi>
9481 L:      linux-media@vger.kernel.org
9482 W:      http://linuxtv.org/
9483 W:      http://palosaari.fi/linux/
9484 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9485 T:      git git://linuxtv.org/anttip/media_tree.git
9486 S:      Maintained
9487 F:      drivers/media/tuners/si2157*
9488
9489 SI2168 MEDIA DRIVER
9490 M:      Antti Palosaari <crope@iki.fi>
9491 L:      linux-media@vger.kernel.org
9492 W:      http://linuxtv.org/
9493 W:      http://palosaari.fi/linux/
9494 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9495 T:      git git://linuxtv.org/anttip/media_tree.git
9496 S:      Maintained
9497 F:      drivers/media/dvb-frontends/si2168*
9498
9499 SI470X FM RADIO RECEIVER I2C DRIVER
9500 M:      Hans Verkuil <hverkuil@xs4all.nl>
9501 L:      linux-media@vger.kernel.org
9502 T:      git git://linuxtv.org/media_tree.git
9503 W:      http://linuxtv.org
9504 S:      Odd Fixes
9505 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9506
9507 SI470X FM RADIO RECEIVER USB DRIVER
9508 M:      Hans Verkuil <hverkuil@xs4all.nl>
9509 L:      linux-media@vger.kernel.org
9510 T:      git git://linuxtv.org/media_tree.git
9511 W:      http://linuxtv.org
9512 S:      Maintained
9513 F:      drivers/media/radio/si470x/radio-si470x-common.c
9514 F:      drivers/media/radio/si470x/radio-si470x.h
9515 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9516
9517 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9518 M:      Eduardo Valentin <edubezval@gmail.com>
9519 L:      linux-media@vger.kernel.org
9520 T:      git git://linuxtv.org/media_tree.git
9521 W:      http://linuxtv.org
9522 S:      Odd Fixes
9523 F:      drivers/media/radio/si4713/si4713.?
9524
9525 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9526 M:      Eduardo Valentin <edubezval@gmail.com>
9527 L:      linux-media@vger.kernel.org
9528 T:      git git://linuxtv.org/media_tree.git
9529 W:      http://linuxtv.org
9530 S:      Odd Fixes
9531 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9532
9533 SI4713 FM RADIO TRANSMITTER USB DRIVER
9534 M:      Hans Verkuil <hverkuil@xs4all.nl>
9535 L:      linux-media@vger.kernel.org
9536 T:      git git://linuxtv.org/media_tree.git
9537 W:      http://linuxtv.org
9538 S:      Maintained
9539 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9540
9541 SIANO DVB DRIVER
9542 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9543 L:      linux-media@vger.kernel.org
9544 W:      http://linuxtv.org
9545 T:      git git://linuxtv.org/media_tree.git
9546 S:      Odd fixes
9547 F:      drivers/media/common/siano/
9548 F:      drivers/media/usb/siano/
9549 F:      drivers/media/usb/siano/
9550 F:      drivers/media/mmc/siano/
9551
9552 SIMPLEFB FB DRIVER
9553 M:      Hans de Goede <hdegoede@redhat.com>
9554 L:      linux-fbdev@vger.kernel.org
9555 S:      Maintained
9556 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9557 F:      drivers/video/fbdev/simplefb.c
9558 F:      include/linux/platform_data/simplefb.h
9559
9560 SH_VEU V4L2 MEM2MEM DRIVER
9561 L:      linux-media@vger.kernel.org
9562 S:      Orphan
9563 F:      drivers/media/platform/sh_veu.c
9564
9565 SH_VOU V4L2 OUTPUT DRIVER
9566 L:      linux-media@vger.kernel.org
9567 S:      Orphan
9568 F:      drivers/media/platform/sh_vou.c
9569 F:      include/media/sh_vou.h
9570
9571 SIMPLE FIRMWARE INTERFACE (SFI)
9572 M:      Len Brown <lenb@kernel.org>
9573 L:      sfi-devel@simplefirmware.org
9574 W:      http://simplefirmware.org/
9575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9576 S:      Supported
9577 F:      arch/x86/platform/sfi/
9578 F:      drivers/sfi/
9579 F:      include/linux/sfi*.h
9580
9581 SIMTEC EB110ATX (Chalice CATS)
9582 P:      Ben Dooks
9583 P:      Vincent Sanders <vince@simtec.co.uk>
9584 M:      Simtec Linux Team <linux@simtec.co.uk>
9585 W:      http://www.simtec.co.uk/products/EB110ATX/
9586 S:      Supported
9587
9588 SIMTEC EB2410ITX (BAST)
9589 P:      Ben Dooks
9590 P:      Vincent Sanders <vince@simtec.co.uk>
9591 M:      Simtec Linux Team <linux@simtec.co.uk>
9592 W:      http://www.simtec.co.uk/products/EB2410ITX/
9593 S:      Supported
9594 F:      arch/arm/mach-s3c24xx/mach-bast.c
9595 F:      arch/arm/mach-s3c24xx/bast-ide.c
9596 F:      arch/arm/mach-s3c24xx/bast-irq.c
9597
9598 TI DAVINCI MACHINE SUPPORT
9599 M:      Sekhar Nori <nsekhar@ti.com>
9600 M:      Kevin Hilman <khilman@deeprootsystems.com>
9601 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9602 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9603 S:      Supported
9604 F:      arch/arm/mach-davinci/
9605 F:      drivers/i2c/busses/i2c-davinci.c
9606
9607 TI DAVINCI SERIES MEDIA DRIVER
9608 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9609 L:      linux-media@vger.kernel.org
9610 W:      http://linuxtv.org/
9611 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9612 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9613 S:      Maintained
9614 F:      drivers/media/platform/davinci/
9615 F:      include/media/davinci/
9616
9617 TI AM437X VPFE DRIVER
9618 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9619 L:      linux-media@vger.kernel.org
9620 W:      http://linuxtv.org/
9621 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9622 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9623 S:      Maintained
9624 F:      drivers/media/platform/am437x/
9625
9626 OV2659 OMNIVISION SENSOR DRIVER
9627 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9628 L:      linux-media@vger.kernel.org
9629 W:      http://linuxtv.org/
9630 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9631 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9632 S:      Maintained
9633 F:      drivers/media/i2c/ov2659.c
9634 F:      include/media/ov2659.h
9635
9636 SILICON MOTION SM712 FRAME BUFFER DRIVER
9637 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9638 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9639 M:      Sudip Mukherjee <sudip@vectorindia.org>
9640 L:      linux-fbdev@vger.kernel.org
9641 S:      Maintained
9642 F:      drivers/video/fbdev/sm712*
9643 F:      Documentation/fb/sm712fb.txt
9644
9645 SIS 190 ETHERNET DRIVER
9646 M:      Francois Romieu <romieu@fr.zoreil.com>
9647 L:      netdev@vger.kernel.org
9648 S:      Maintained
9649 F:      drivers/net/ethernet/sis/sis190.c
9650
9651 SIS 900/7016 FAST ETHERNET DRIVER
9652 M:      Daniele Venzano <venza@brownhat.org>
9653 W:      http://www.brownhat.org/sis900.html
9654 L:      netdev@vger.kernel.org
9655 S:      Maintained
9656 F:      drivers/net/ethernet/sis/sis900.*
9657
9658 SIS FRAMEBUFFER DRIVER
9659 M:      Thomas Winischhofer <thomas@winischhofer.net>
9660 W:      http://www.winischhofer.net/linuxsisvga.shtml
9661 S:      Maintained
9662 F:      Documentation/fb/sisfb.txt
9663 F:      drivers/video/fbdev/sis/
9664 F:      include/video/sisfb.h
9665
9666 SIS USB2VGA DRIVER
9667 M:      Thomas Winischhofer <thomas@winischhofer.net>
9668 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9669 S:      Maintained
9670 F:      drivers/usb/misc/sisusbvga/
9671
9672 SLAB ALLOCATOR
9673 M:      Christoph Lameter <cl@linux.com>
9674 M:      Pekka Enberg <penberg@kernel.org>
9675 M:      David Rientjes <rientjes@google.com>
9676 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9677 M:      Andrew Morton <akpm@linux-foundation.org>
9678 L:      linux-mm@kvack.org
9679 S:      Maintained
9680 F:      include/linux/sl?b*.h
9681 F:      mm/sl?b*
9682
9683 SLEEPABLE READ-COPY UPDATE (SRCU)
9684 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9685 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9686 M:      Josh Triplett <josh@joshtriplett.org>
9687 R:      Steven Rostedt <rostedt@goodmis.org>
9688 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9689 L:      linux-kernel@vger.kernel.org
9690 W:      http://www.rdrop.com/users/paulmck/RCU/
9691 S:      Supported
9692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9693 F:      include/linux/srcu.h
9694 F:      kernel/rcu/srcu.c
9695
9696 SMACK SECURITY MODULE
9697 M:      Casey Schaufler <casey@schaufler-ca.com>
9698 L:      linux-security-module@vger.kernel.org
9699 W:      http://schaufler-ca.com
9700 T:      git git://git.gitorious.org/smack-next/kernel.git
9701 S:      Maintained
9702 F:      Documentation/security/Smack.txt
9703 F:      security/smack/
9704
9705 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9706 M:      Kevin Hilman <khilman@kernel.org>
9707 M:      Nishanth Menon <nm@ti.com>
9708 S:      Maintained
9709 F:      drivers/power/avs/
9710 F:      include/linux/power/smartreflex.h
9711 L:      linux-pm@vger.kernel.org
9712
9713 SMC91x ETHERNET DRIVER
9714 M:      Nicolas Pitre <nico@fluxnic.net>
9715 S:      Odd Fixes
9716 F:      drivers/net/ethernet/smsc/smc91x.*
9717
9718 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9719 M:      Sakari Ailus <sakari.ailus@iki.fi>
9720 L:      linux-media@vger.kernel.org
9721 S:      Maintained
9722 F:      drivers/media/i2c/smiapp/
9723 F:      include/media/smiapp.h
9724 F:      drivers/media/i2c/smiapp-pll.c
9725 F:      drivers/media/i2c/smiapp-pll.h
9726 F:      include/uapi/linux/smiapp.h
9727 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9728
9729 SMM665 HARDWARE MONITOR DRIVER
9730 M:      Guenter Roeck <linux@roeck-us.net>
9731 L:      lm-sensors@lm-sensors.org
9732 S:      Maintained
9733 F:      Documentation/hwmon/smm665
9734 F:      drivers/hwmon/smm665.c
9735
9736 SMSC EMC2103 HARDWARE MONITOR DRIVER
9737 M:      Steve Glendinning <steve.glendinning@shawell.net>
9738 L:      lm-sensors@lm-sensors.org
9739 S:      Maintained
9740 F:      Documentation/hwmon/emc2103
9741 F:      drivers/hwmon/emc2103.c
9742
9743 SMSC SCH5627 HARDWARE MONITOR DRIVER
9744 M:      Hans de Goede <hdegoede@redhat.com>
9745 L:      lm-sensors@lm-sensors.org
9746 S:      Supported
9747 F:      Documentation/hwmon/sch5627
9748 F:      drivers/hwmon/sch5627.c
9749
9750 SMSC47B397 HARDWARE MONITOR DRIVER
9751 M:      Jean Delvare <jdelvare@suse.com>
9752 L:      lm-sensors@lm-sensors.org
9753 S:      Maintained
9754 F:      Documentation/hwmon/smsc47b397
9755 F:      drivers/hwmon/smsc47b397.c
9756
9757 SMSC911x ETHERNET DRIVER
9758 M:      Steve Glendinning <steve.glendinning@shawell.net>
9759 L:      netdev@vger.kernel.org
9760 S:      Maintained
9761 F:      include/linux/smsc911x.h
9762 F:      drivers/net/ethernet/smsc/smsc911x.*
9763
9764 SMSC9420 PCI ETHERNET DRIVER
9765 M:      Steve Glendinning <steve.glendinning@shawell.net>
9766 L:      netdev@vger.kernel.org
9767 S:      Maintained
9768 F:      drivers/net/ethernet/smsc/smsc9420.*
9769
9770 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9771 M:      Steve Glendinning <steve.glendinning@shawell.net>
9772 L:      linux-fbdev@vger.kernel.org
9773 S:      Maintained
9774 F:      drivers/video/fbdev/smscufx.c
9775
9776 SOC-CAMERA V4L2 SUBSYSTEM
9777 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9778 L:      linux-media@vger.kernel.org
9779 T:      git git://linuxtv.org/media_tree.git
9780 S:      Maintained
9781 F:      include/media/soc*
9782 F:      drivers/media/i2c/soc_camera/
9783 F:      drivers/media/platform/soc_camera/
9784
9785 SOEKRIS NET48XX LED SUPPORT
9786 M:      Chris Boot <bootc@bootc.net>
9787 S:      Maintained
9788 F:      drivers/leds/leds-net48xx.c
9789
9790 SOFTLOGIC 6x10 MPEG CODEC
9791 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9792 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9793 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9794 M:      Ismael Luceno <ismael@iodev.co.uk>
9795 L:      linux-media@vger.kernel.org
9796 S:      Supported
9797 F:      drivers/media/pci/solo6x10/
9798
9799 SOFTWARE RAID (Multiple Disks) SUPPORT
9800 M:      Neil Brown <neilb@suse.com>
9801 L:      linux-raid@vger.kernel.org
9802 S:      Supported
9803 F:      drivers/md/
9804 F:      include/linux/raid/
9805 F:      include/uapi/linux/raid/
9806
9807 SONIC NETWORK DRIVER
9808 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9809 L:      netdev@vger.kernel.org
9810 S:      Maintained
9811 F:      drivers/net/ethernet/natsemi/sonic.*
9812
9813 SONICS SILICON BACKPLANE DRIVER (SSB)
9814 M:      Michael Buesch <m@bues.ch>
9815 L:      netdev@vger.kernel.org
9816 S:      Maintained
9817 F:      drivers/ssb/
9818 F:      include/linux/ssb/
9819
9820 SONY VAIO CONTROL DEVICE DRIVER
9821 M:      Mattia Dongili <malattia@linux.it>
9822 L:      platform-driver-x86@vger.kernel.org
9823 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9824 S:      Maintained
9825 F:      Documentation/laptops/sony-laptop.txt
9826 F:      drivers/char/sonypi.c
9827 F:      drivers/platform/x86/sony-laptop.c
9828 F:      include/linux/sony-laptop.h
9829
9830 SONY MEMORYSTICK CARD SUPPORT
9831 M:      Alex Dubov <oakad@yahoo.com>
9832 W:      http://tifmxx.berlios.de/
9833 S:      Maintained
9834 F:      drivers/memstick/host/tifm_ms.c
9835
9836 SONY MEMORYSTICK STANDARD SUPPORT
9837 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9838 S:      Maintained
9839 F:      drivers/memstick/core/ms_block.*
9840
9841 SOUND
9842 M:      Jaroslav Kysela <perex@perex.cz>
9843 M:      Takashi Iwai <tiwai@suse.com>
9844 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9845 W:      http://www.alsa-project.org/
9846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9847 T:      git git://git.alsa-project.org/alsa-kernel.git
9848 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9849 S:      Maintained
9850 F:      Documentation/sound/
9851 F:      include/sound/
9852 F:      include/uapi/sound/
9853 F:      sound/
9854
9855 SOUND - COMPRESSED AUDIO
9856 M:      Vinod Koul <vinod.koul@intel.com>
9857 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9859 S:      Supported
9860 F:      Documentation/sound/alsa/compress_offload.txt
9861 F:      include/sound/compress_driver.h
9862 F:      include/uapi/sound/compress_*
9863 F:      sound/core/compress_offload.c
9864 F:      sound/soc/soc-compress.c
9865
9866 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9867 M:      Liam Girdwood <lgirdwood@gmail.com>
9868 M:      Mark Brown <broonie@kernel.org>
9869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9870 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9871 W:      http://alsa-project.org/main/index.php/ASoC
9872 S:      Supported
9873 F:      Documentation/sound/alsa/soc/
9874 F:      sound/soc/
9875 F:      include/sound/soc*
9876
9877 SOUND - DMAENGINE HELPERS
9878 M:      Lars-Peter Clausen <lars@metafoo.de>
9879 S:      Supported
9880 F:      include/sound/dmaengine_pcm.h
9881 F:      sound/core/pcm_dmaengine.c
9882 F:      sound/soc/soc-generic-dmaengine-pcm.c
9883
9884 SP2 MEDIA DRIVER
9885 M:      Olli Salonen <olli.salonen@iki.fi>
9886 L:      linux-media@vger.kernel.org
9887 W:      http://linuxtv.org/
9888 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9889 S:      Maintained
9890 F:      drivers/media/dvb-frontends/sp2*
9891
9892 SPARC + UltraSPARC (sparc/sparc64)
9893 M:      "David S. Miller" <davem@davemloft.net>
9894 L:      sparclinux@vger.kernel.org
9895 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9898 S:      Maintained
9899 F:      arch/sparc/
9900 F:      drivers/sbus/
9901
9902 SPARC SERIAL DRIVERS
9903 M:      "David S. Miller" <davem@davemloft.net>
9904 L:      sparclinux@vger.kernel.org
9905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9907 S:      Maintained
9908 F:      include/linux/sunserialcore.h
9909 F:      drivers/tty/serial/suncore.c
9910 F:      drivers/tty/serial/sunhv.c
9911 F:      drivers/tty/serial/sunsab.c
9912 F:      drivers/tty/serial/sunsab.h
9913 F:      drivers/tty/serial/sunsu.c
9914 F:      drivers/tty/serial/sunzilog.c
9915 F:      drivers/tty/serial/sunzilog.h
9916
9917 SPARSE CHECKER
9918 M:      "Christopher Li" <sparse@chrisli.org>
9919 L:      linux-sparse@vger.kernel.org
9920 W:      https://sparse.wiki.kernel.org/
9921 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9922 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9923 S:      Maintained
9924 F:      include/linux/compiler.h
9925
9926 SPEAR PLATFORM SUPPORT
9927 M:      Viresh Kumar <vireshk@kernel.org>
9928 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9929 L:      spear-devel@list.st.com
9930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9931 W:      http://www.st.com/spear
9932 S:      Maintained
9933 F:      arch/arm/mach-spear/
9934
9935 SPEAR CLOCK FRAMEWORK SUPPORT
9936 M:      Viresh Kumar <vireshk@kernel.org>
9937 L:      spear-devel@list.st.com
9938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9939 W:      http://www.st.com/spear
9940 S:      Maintained
9941 F:      drivers/clk/spear/
9942
9943 SPI SUBSYSTEM
9944 M:      Mark Brown <broonie@kernel.org>
9945 L:      linux-spi@vger.kernel.org
9946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9947 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9948 S:      Maintained
9949 F:      Documentation/spi/
9950 F:      drivers/spi/
9951 F:      include/linux/spi/
9952 F:      include/uapi/linux/spi/
9953
9954 SPIDERNET NETWORK DRIVER for CELL
9955 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9956 L:      netdev@vger.kernel.org
9957 S:      Supported
9958 F:      Documentation/networking/spider_net.txt
9959 F:      drivers/net/ethernet/toshiba/spider_net*
9960
9961 SPU FILE SYSTEM
9962 M:      Jeremy Kerr <jk@ozlabs.org>
9963 L:      linuxppc-dev@lists.ozlabs.org
9964 W:      http://www.ibm.com/developerworks/power/cell/
9965 S:      Supported
9966 F:      Documentation/filesystems/spufs.txt
9967 F:      arch/powerpc/platforms/cell/spufs/
9968
9969 SQUASHFS FILE SYSTEM
9970 M:      Phillip Lougher <phillip@squashfs.org.uk>
9971 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9972 W:      http://squashfs.org.uk
9973 S:      Maintained
9974 F:      Documentation/filesystems/squashfs.txt
9975 F:      fs/squashfs/
9976
9977 SRM (Alpha) environment access
9978 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9979 S:      Maintained
9980 F:      arch/alpha/kernel/srm_env.c
9981
9982 STABLE BRANCH
9983 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9984 L:      stable@vger.kernel.org
9985 S:      Supported
9986 F:      Documentation/stable_kernel_rules.txt
9987
9988 STAGING SUBSYSTEM
9989 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9991 L:      devel@driverdev.osuosl.org
9992 S:      Supported
9993 F:      drivers/staging/
9994
9995 STAGING - COMEDI
9996 M:      Ian Abbott <abbotti@mev.co.uk>
9997 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9998 S:      Odd Fixes
9999 F:      drivers/staging/comedi/
10000
10001 STAGING - FLARION FT1000 DRIVERS
10002 M:      Marek Belisko <marek.belisko@gmail.com>
10003 S:      Odd Fixes
10004 F:      drivers/staging/ft1000/
10005
10006 STAGING - INDUSTRIAL IO
10007 M:      Jonathan Cameron <jic23@kernel.org>
10008 L:      linux-iio@vger.kernel.org
10009 S:      Odd Fixes
10010 F:      drivers/staging/iio/
10011
10012 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10013 M:      Jarod Wilson <jarod@wilsonet.com>
10014 W:      http://www.lirc.org/
10015 S:      Odd Fixes
10016 F:      drivers/staging/media/lirc/
10017
10018 STAGING - LUSTRE PARALLEL FILESYSTEM
10019 M:      Oleg Drokin <oleg.drokin@intel.com>
10020 M:      Andreas Dilger <andreas.dilger@intel.com>
10021 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10022 W:      http://wiki.lustre.org/
10023 S:      Maintained
10024 F:      drivers/staging/lustre
10025
10026 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10027 M:      Marc Dietrich <marvin24@gmx.de>
10028 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10029 L:      linux-tegra@vger.kernel.org
10030 S:      Maintained
10031 F:      drivers/staging/nvec/
10032
10033 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10034 M:      Jens Frederich <jfrederich@gmail.com>
10035 M:      Daniel Drake <dsd@laptop.org>
10036 M:      Jon Nettleton <jon.nettleton@gmail.com>
10037 W:      http://wiki.laptop.org/go/DCON
10038 S:      Maintained
10039 F:      drivers/staging/olpc_dcon/
10040
10041 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10042 M:      Willy Tarreau <willy@meta-x.org>
10043 S:      Odd Fixes
10044 F:      drivers/staging/panel/
10045
10046 STAGING - REALTEK RTL8712U DRIVERS
10047 M:      Larry Finger <Larry.Finger@lwfinger.net>
10048 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10049 S:      Odd Fixes
10050 F:      drivers/staging/rtl8712/
10051
10052 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10053 M:      Larry Finger <Larry.Finger@lwfinger.net>
10054 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10055 L:      linux-wireless@vger.kernel.org
10056 S:      Maintained
10057 F:      drivers/staging/rtl8723au/
10058
10059 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10060 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10061 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10062 M:      Sudip Mukherjee <sudip@vectorindia.org>
10063 L:      linux-fbdev@vger.kernel.org
10064 S:      Maintained
10065 F:      drivers/staging/sm750fb/
10066
10067 STAGING - SLICOSS
10068 M:      Lior Dotan <liodot@gmail.com>
10069 M:      Christopher Harrer <charrer@alacritech.com>
10070 S:      Odd Fixes
10071 F:      drivers/staging/slicoss/
10072
10073 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10074 M:      William Hubbs <w.d.hubbs@gmail.com>
10075 M:      Chris Brannon <chris@the-brannons.com>
10076 M:      Kirk Reiser <kirk@reisers.ca>
10077 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10078 L:      speakup@linux-speakup.org
10079 W:      http://www.linux-speakup.org/
10080 S:      Odd Fixes
10081 F:      drivers/staging/speakup/
10082
10083 STAGING - VIA VT665X DRIVERS
10084 M:      Forest Bond <forest@alittletooquiet.net>
10085 S:      Odd Fixes
10086 F:      drivers/staging/vt665?/
10087
10088 STAGING - WILC1000 WIFI DRIVER
10089 M:      Johnny Kim <johnny.kim@atmel.com>
10090 M:      Rachel Kim <rachel.kim@atmel.com>
10091 M:      Dean Lee <dean.lee@atmel.com>
10092 M:      Chris Park <chris.park@atmel.com>
10093 L:      linux-wireless@vger.kernel.org
10094 S:      Supported
10095 F:      drivers/staging/wilc1000/
10096
10097 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10098 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10099 S:      Odd Fixes
10100 F:      drivers/staging/xgifb/
10101
10102 HFI1 DRIVER
10103 M:      Mike Marciniszyn <infinipath@intel.com>
10104 L:      linux-rdma@vger.kernel.org
10105 S:      Supported
10106 F:      drivers/staging/rdma/hfi1
10107
10108 STARFIRE/DURALAN NETWORK DRIVER
10109 M:      Ion Badulescu <ionut@badula.org>
10110 S:      Odd Fixes
10111 F:      drivers/net/ethernet/adaptec/starfire*
10112
10113 SUN3/3X
10114 M:      Sam Creasey <sammy@sammy.net>
10115 W:      http://sammy.net/sun3/
10116 S:      Maintained
10117 F:      arch/m68k/kernel/*sun3*
10118 F:      arch/m68k/sun3*/
10119 F:      arch/m68k/include/asm/sun3*
10120 F:      drivers/net/ethernet/i825xx/sun3*
10121
10122 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10123 M:      Hans de Goede <hdegoede@redhat.com>
10124 L:      linux-input@vger.kernel.org
10125 S:      Maintained
10126 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10127 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10128
10129 SUNDANCE NETWORK DRIVER
10130 M:      Denis Kirjanov <kda@linux-powerpc.org>
10131 L:      netdev@vger.kernel.org
10132 S:      Maintained
10133 F:      drivers/net/ethernet/dlink/sundance.c
10134
10135 SUPERH
10136 L:      linux-sh@vger.kernel.org
10137 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10138 S:      Orphan
10139 F:      Documentation/sh/
10140 F:      arch/sh/
10141 F:      drivers/sh/
10142
10143 SUSPEND TO RAM
10144 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10145 M:      Len Brown <len.brown@intel.com>
10146 M:      Pavel Machek <pavel@ucw.cz>
10147 L:      linux-pm@vger.kernel.org
10148 S:      Supported
10149 F:      Documentation/power/
10150 F:      arch/x86/kernel/acpi/
10151 F:      drivers/base/power/
10152 F:      kernel/power/
10153 F:      include/linux/suspend.h
10154 F:      include/linux/freezer.h
10155 F:      include/linux/pm.h
10156
10157 SVGA HANDLING
10158 M:      Martin Mares <mj@ucw.cz>
10159 L:      linux-video@atrey.karlin.mff.cuni.cz
10160 S:      Maintained
10161 F:      Documentation/svga.txt
10162 F:      arch/x86/boot/video*
10163
10164 SWIOTLB SUBSYSTEM
10165 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10166 L:      linux-kernel@vger.kernel.org
10167 S:      Supported
10168 F:      lib/swiotlb.c
10169 F:      arch/*/kernel/pci-swiotlb.c
10170 F:      include/linux/swiotlb.h
10171
10172 SWITCHDEV
10173 M:      Jiri Pirko <jiri@resnulli.us>
10174 L:      netdev@vger.kernel.org
10175 S:      Supported
10176 F:      net/switchdev/
10177 F:      include/net/switchdev.h
10178
10179 SYNOPSYS ARC ARCHITECTURE
10180 M:      Vineet Gupta <vgupta@synopsys.com>
10181 L:      linux-snps-arc@lists.infraded.org
10182 S:      Supported
10183 F:      arch/arc/
10184 F:      Documentation/devicetree/bindings/arc/*
10185 F:      drivers/tty/serial/arc_uart.c
10186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10187
10188 SYNOPSYS ARC SDP platform support
10189 M:      Alexey Brodkin <abrodkin@synopsys.com>
10190 S:      Supported
10191 F:      arch/arc/plat-axs10x
10192 F:      arch/arc/boot/dts/ax*
10193 F:      Documentation/devicetree/bindings/arc/axs10*
10194
10195 SYSTEM CONFIGURATION (SYSCON)
10196 M:      Lee Jones <lee.jones@linaro.org>
10197 M:      Arnd Bergmann <arnd@arndb.de>
10198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10199 S:      Supported
10200 F:      drivers/mfd/syscon.c
10201
10202 SYSV FILESYSTEM
10203 M:      Christoph Hellwig <hch@infradead.org>
10204 S:      Maintained
10205 F:      Documentation/filesystems/sysv-fs.txt
10206 F:      fs/sysv/
10207 F:      include/linux/sysv_fs.h
10208
10209 TARGET SUBSYSTEM
10210 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10211 L:      linux-scsi@vger.kernel.org
10212 L:      target-devel@vger.kernel.org
10213 W:      http://www.linux-iscsi.org
10214 W:      http://groups.google.com/group/linux-iscsi-target-dev
10215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10216 S:      Supported
10217 F:      drivers/target/
10218 F:      include/target/
10219 F:      Documentation/target/
10220
10221 TASKSTATS STATISTICS INTERFACE
10222 M:      Balbir Singh <bsingharora@gmail.com>
10223 S:      Maintained
10224 F:      Documentation/accounting/taskstats*
10225 F:      include/linux/taskstats*
10226 F:      kernel/taskstats.c
10227
10228 TC CLASSIFIER
10229 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10230 L:      netdev@vger.kernel.org
10231 S:      Maintained
10232 F:      include/net/pkt_cls.h
10233 F:      include/uapi/linux/pkt_cls.h
10234 F:      net/sched/
10235
10236 TCP LOW PRIORITY MODULE
10237 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10238 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10239 W:      http://tcp-lp-mod.sourceforge.net/
10240 S:      Maintained
10241 F:      net/ipv4/tcp_lp.c
10242
10243 TDA10071 MEDIA DRIVER
10244 M:      Antti Palosaari <crope@iki.fi>
10245 L:      linux-media@vger.kernel.org
10246 W:      http://linuxtv.org/
10247 W:      http://palosaari.fi/linux/
10248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10249 T:      git git://linuxtv.org/anttip/media_tree.git
10250 S:      Maintained
10251 F:      drivers/media/dvb-frontends/tda10071*
10252
10253 TDA18212 MEDIA DRIVER
10254 M:      Antti Palosaari <crope@iki.fi>
10255 L:      linux-media@vger.kernel.org
10256 W:      http://linuxtv.org/
10257 W:      http://palosaari.fi/linux/
10258 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10259 T:      git git://linuxtv.org/anttip/media_tree.git
10260 S:      Maintained
10261 F:      drivers/media/tuners/tda18212*
10262
10263 TDA18218 MEDIA DRIVER
10264 M:      Antti Palosaari <crope@iki.fi>
10265 L:      linux-media@vger.kernel.org
10266 W:      http://linuxtv.org/
10267 W:      http://palosaari.fi/linux/
10268 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10269 T:      git git://linuxtv.org/anttip/media_tree.git
10270 S:      Maintained
10271 F:      drivers/media/tuners/tda18218*
10272
10273 TDA18271 MEDIA DRIVER
10274 M:      Michael Krufky <mkrufky@linuxtv.org>
10275 L:      linux-media@vger.kernel.org
10276 W:      http://linuxtv.org/
10277 W:      http://github.com/mkrufky
10278 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10279 T:      git git://linuxtv.org/mkrufky/tuners.git
10280 S:      Maintained
10281 F:      drivers/media/tuners/tda18271*
10282
10283 TDA827x MEDIA DRIVER
10284 M:      Michael Krufky <mkrufky@linuxtv.org>
10285 L:      linux-media@vger.kernel.org
10286 W:      http://linuxtv.org/
10287 W:      http://github.com/mkrufky
10288 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10289 T:      git git://linuxtv.org/mkrufky/tuners.git
10290 S:      Maintained
10291 F:      drivers/media/tuners/tda8290.*
10292
10293 TDA8290 MEDIA DRIVER
10294 M:      Michael Krufky <mkrufky@linuxtv.org>
10295 L:      linux-media@vger.kernel.org
10296 W:      http://linuxtv.org/
10297 W:      http://github.com/mkrufky
10298 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10299 T:      git git://linuxtv.org/mkrufky/tuners.git
10300 S:      Maintained
10301 F:      drivers/media/tuners/tda8290.*
10302
10303 TDA9840 MEDIA DRIVER
10304 M:      Hans Verkuil <hverkuil@xs4all.nl>
10305 L:      linux-media@vger.kernel.org
10306 T:      git git://linuxtv.org/media_tree.git
10307 W:      http://linuxtv.org
10308 S:      Maintained
10309 F:      drivers/media/i2c/tda9840*
10310
10311 TEA5761 TUNER DRIVER
10312 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10313 L:      linux-media@vger.kernel.org
10314 W:      http://linuxtv.org
10315 T:      git git://linuxtv.org/media_tree.git
10316 S:      Odd fixes
10317 F:      drivers/media/tuners/tea5761.*
10318
10319 TEA5767 TUNER DRIVER
10320 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10321 L:      linux-media@vger.kernel.org
10322 W:      http://linuxtv.org
10323 T:      git git://linuxtv.org/media_tree.git
10324 S:      Maintained
10325 F:      drivers/media/tuners/tea5767.*
10326
10327 TEA6415C MEDIA DRIVER
10328 M:      Hans Verkuil <hverkuil@xs4all.nl>
10329 L:      linux-media@vger.kernel.org
10330 T:      git git://linuxtv.org/media_tree.git
10331 W:      http://linuxtv.org
10332 S:      Maintained
10333 F:      drivers/media/i2c/tea6415c*
10334
10335 TEA6420 MEDIA DRIVER
10336 M:      Hans Verkuil <hverkuil@xs4all.nl>
10337 L:      linux-media@vger.kernel.org
10338 T:      git git://linuxtv.org/media_tree.git
10339 W:      http://linuxtv.org
10340 S:      Maintained
10341 F:      drivers/media/i2c/tea6420*
10342
10343 TEAM DRIVER
10344 M:      Jiri Pirko <jiri@resnulli.us>
10345 L:      netdev@vger.kernel.org
10346 S:      Supported
10347 F:      drivers/net/team/
10348 F:      include/linux/if_team.h
10349 F:      include/uapi/linux/if_team.h
10350
10351 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10352 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10353 S:      Maintained
10354 F:      arch/x86/platform/ts5500/
10355
10356 TECHNOTREND USB IR RECEIVER
10357 M:      Sean Young <sean@mess.org>
10358 L:      linux-media@vger.kernel.org
10359 S:      Maintained
10360 F:      drivers/media/rc/ttusbir.c
10361
10362 TEGRA ARCHITECTURE SUPPORT
10363 M:      Stephen Warren <swarren@wwwdotorg.org>
10364 M:      Thierry Reding <thierry.reding@gmail.com>
10365 M:      Alexandre Courbot <gnurou@gmail.com>
10366 L:      linux-tegra@vger.kernel.org
10367 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10369 S:      Supported
10370 N:      [^a-z]tegra
10371
10372 TEGRA CLOCK DRIVER
10373 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10374 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10375 S:      Supported
10376 F:      drivers/clk/tegra/
10377
10378 TEGRA DMA DRIVER
10379 M:      Laxman Dewangan <ldewangan@nvidia.com>
10380 S:      Supported
10381 F:      drivers/dma/tegra20-apb-dma.c
10382
10383 TEGRA I2C DRIVER
10384 M:      Laxman Dewangan <ldewangan@nvidia.com>
10385 S:      Supported
10386 F:      drivers/i2c/busses/i2c-tegra.c
10387
10388 TEGRA IOMMU DRIVERS
10389 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10390 S:      Supported
10391 F:      drivers/iommu/tegra*
10392
10393 TEGRA KBC DRIVER
10394 M:      Rakesh Iyer <riyer@nvidia.com>
10395 M:      Laxman Dewangan <ldewangan@nvidia.com>
10396 S:      Supported
10397 F:      drivers/input/keyboard/tegra-kbc.c
10398
10399 TEGRA PWM DRIVER
10400 M:      Thierry Reding <thierry.reding@gmail.com>
10401 S:      Supported
10402 F:      drivers/pwm/pwm-tegra.c
10403
10404 TEGRA SERIAL DRIVER
10405 M:      Laxman Dewangan <ldewangan@nvidia.com>
10406 S:      Supported
10407 F:      drivers/tty/serial/serial-tegra.c
10408
10409 TEGRA SPI DRIVER
10410 M:      Laxman Dewangan <ldewangan@nvidia.com>
10411 S:      Supported
10412 F:      drivers/spi/spi-tegra*
10413
10414 TEHUTI ETHERNET DRIVER
10415 M:      Andy Gospodarek <andy@greyhouse.net>
10416 L:      netdev@vger.kernel.org
10417 S:      Supported
10418 F:      drivers/net/ethernet/tehuti/*
10419
10420 Telecom Clock Driver for MCPL0010
10421 M:      Mark Gross <mark.gross@intel.com>
10422 S:      Supported
10423 F:      drivers/char/tlclk.c
10424
10425 TENSILICA XTENSA PORT (xtensa)
10426 M:      Chris Zankel <chris@zankel.net>
10427 M:      Max Filippov <jcmvbkbc@gmail.com>
10428 L:      linux-xtensa@linux-xtensa.org
10429 S:      Maintained
10430 F:      arch/xtensa/
10431 F:      drivers/irqchip/irq-xtensa-*
10432
10433 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10434 M:      Hans Verkuil <hverkuil@xs4all.nl>
10435 L:      linux-media@vger.kernel.org
10436 T:      git git://linuxtv.org/media_tree.git
10437 W:      http://linuxtv.org
10438 S:      Maintained
10439 F:      drivers/media/radio/radio-raremono.c
10440
10441 THERMAL
10442 M:      Zhang Rui <rui.zhang@intel.com>
10443 M:      Eduardo Valentin <edubezval@gmail.com>
10444 L:      linux-pm@vger.kernel.org
10445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10447 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10448 S:      Supported
10449 F:      drivers/thermal/
10450 F:      include/linux/thermal.h
10451 F:      include/uapi/linux/thermal.h
10452 F:      include/linux/cpu_cooling.h
10453 F:      Documentation/devicetree/bindings/thermal/
10454
10455 THERMAL/CPU_COOLING
10456 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10457 M:      Viresh Kumar <viresh.kumar@linaro.org>
10458 M:      Javi Merino <javi.merino@arm.com>
10459 L:      linux-pm@vger.kernel.org
10460 S:      Supported
10461 F:      Documentation/thermal/cpu-cooling-api.txt
10462 F:      drivers/thermal/cpu_cooling.c
10463 F:      include/linux/cpu_cooling.h
10464
10465 THINGM BLINK(1) USB RGB LED DRIVER
10466 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10467 S:      Maintained
10468 F:      drivers/hid/hid-thingm.c
10469
10470 THINKPAD ACPI EXTRAS DRIVER
10471 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10472 L:      ibm-acpi-devel@lists.sourceforge.net
10473 L:      platform-driver-x86@vger.kernel.org
10474 W:      http://ibm-acpi.sourceforge.net
10475 W:      http://thinkwiki.org/wiki/Ibm-acpi
10476 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10477 S:      Maintained
10478 F:      drivers/platform/x86/thinkpad_acpi.c
10479
10480 TI BANDGAP AND THERMAL DRIVER
10481 M:      Eduardo Valentin <edubezval@gmail.com>
10482 L:      linux-pm@vger.kernel.org
10483 L:      linux-omap@vger.kernel.org
10484 S:      Maintained
10485 F:      drivers/thermal/ti-soc-thermal/
10486
10487 TI CDCE706 CLOCK DRIVER
10488 M:      Max Filippov <jcmvbkbc@gmail.com>
10489 S:      Maintained
10490 F:      drivers/clk/clk-cdce706.c
10491
10492 TI CLOCK DRIVER
10493 M:      Tero Kristo <t-kristo@ti.com>
10494 L:      linux-omap@vger.kernel.org
10495 S:      Maintained
10496 F:      drivers/clk/ti/
10497 F:      include/linux/clk/ti.h
10498
10499 TI FLASH MEDIA INTERFACE DRIVER
10500 M:      Alex Dubov <oakad@yahoo.com>
10501 S:      Maintained
10502 F:      drivers/misc/tifm*
10503 F:      drivers/mmc/host/tifm_sd.c
10504 F:      include/linux/tifm.h
10505
10506 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10507 M:      Santosh Shilimkar <ssantosh@kernel.org>
10508 L:      linux-kernel@vger.kernel.org
10509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10510 S:      Maintained
10511 F:      drivers/soc/ti/*
10512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10513
10514
10515 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10516 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10517 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10518 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10519 S:      Maintained
10520 F:      sound/soc/codecs/lm49453*
10521 F:      sound/soc/codecs/isabelle*
10522
10523 TI LP855x BACKLIGHT DRIVER
10524 M:      Milo Kim <milo.kim@ti.com>
10525 S:      Maintained
10526 F:      Documentation/backlight/lp855x-driver.txt
10527 F:      drivers/video/backlight/lp855x_bl.c
10528 F:      include/linux/platform_data/lp855x.h
10529
10530 TI LP8727 CHARGER DRIVER
10531 M:      Milo Kim <milo.kim@ti.com>
10532 S:      Maintained
10533 F:      drivers/power/lp8727_charger.c
10534 F:      include/linux/platform_data/lp8727.h
10535
10536 TI LP8788 MFD DRIVER
10537 M:      Milo Kim <milo.kim@ti.com>
10538 S:      Maintained
10539 F:      drivers/iio/adc/lp8788_adc.c
10540 F:      drivers/leds/leds-lp8788.c
10541 F:      drivers/mfd/lp8788*.c
10542 F:      drivers/power/lp8788-charger.c
10543 F:      drivers/regulator/lp8788-*.c
10544 F:      include/linux/mfd/lp8788*.h
10545
10546 TI NETCP ETHERNET DRIVER
10547 M:      Wingman Kwok <w-kwok2@ti.com>
10548 M:      Murali Karicheri <m-karicheri2@ti.com>
10549 L:      netdev@vger.kernel.org
10550 S:      Maintained
10551 F:      drivers/net/ethernet/ti/netcp*
10552
10553 TI TAS571X FAMILY ASoC CODEC DRIVER
10554 M:      Kevin Cernekee <cernekee@chromium.org>
10555 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10556 S:      Odd Fixes
10557 F:      sound/soc/codecs/tas571x*
10558
10559 TI TWL4030 SERIES SOC CODEC DRIVER
10560 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10561 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10562 S:      Maintained
10563 F:      sound/soc/codecs/twl4030*
10564
10565 TI WILINK WIRELESS DRIVERS
10566 L:      linux-wireless@vger.kernel.org
10567 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10568 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10570 S:      Orphan
10571 F:      drivers/net/wireless/ti/
10572 F:      include/linux/wl12xx.h
10573
10574 TIPC NETWORK LAYER
10575 M:      Jon Maloy <jon.maloy@ericsson.com>
10576 M:      Ying Xue <ying.xue@windriver.com>
10577 L:      netdev@vger.kernel.org (core kernel code)
10578 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10579 W:      http://tipc.sourceforge.net/
10580 S:      Maintained
10581 F:      include/uapi/linux/tipc*.h
10582 F:      net/tipc/
10583
10584 TILE ARCHITECTURE
10585 M:      Chris Metcalf <cmetcalf@ezchip.com>
10586 W:      http://www.ezchip.com/scm/
10587 S:      Supported
10588 F:      arch/tile/
10589 F:      drivers/char/tile-srom.c
10590 F:      drivers/edac/tile_edac.c
10591 F:      drivers/net/ethernet/tile/
10592 F:      drivers/rtc/rtc-tile.c
10593 F:      drivers/tty/hvc/hvc_tile.c
10594 F:      drivers/tty/serial/tilegx.c
10595 F:      drivers/usb/host/*-tilegx.c
10596 F:      include/linux/usb/tilegx.h
10597
10598 TLAN NETWORK DRIVER
10599 M:      Samuel Chessman <chessman@tux.org>
10600 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10601 W:      http://sourceforge.net/projects/tlan/
10602 S:      Maintained
10603 F:      Documentation/networking/tlan.txt
10604 F:      drivers/net/ethernet/ti/tlan.*
10605
10606 TOMOYO SECURITY MODULE
10607 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10608 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10609 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10610 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10611 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10612 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10613 W:      http://tomoyo.sourceforge.jp/
10614 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10615 S:      Maintained
10616 F:      security/tomoyo/
10617
10618 TOPSTAR LAPTOP EXTRAS DRIVER
10619 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10620 L:      platform-driver-x86@vger.kernel.org
10621 S:      Maintained
10622 F:      drivers/platform/x86/topstar-laptop.c
10623
10624 TOSHIBA ACPI EXTRAS DRIVER
10625 M:      Azael Avalos <coproscefalo@gmail.com>
10626 L:      platform-driver-x86@vger.kernel.org
10627 S:      Maintained
10628 F:      drivers/platform/x86/toshiba_acpi.c
10629
10630 TOSHIBA BLUETOOTH DRIVER
10631 M:      Azael Avalos <coproscefalo@gmail.com>
10632 L:      platform-driver-x86@vger.kernel.org
10633 S:      Maintained
10634 F:      drivers/platform/x86/toshiba_bluetooth.c
10635
10636 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10637 M:      Azael Avalos <coproscefalo@gmail.com>
10638 L:      platform-driver-x86@vger.kernel.org
10639 S:      Maintained
10640 F:      drivers/platform/x86/toshiba_haps.c
10641
10642 TOSHIBA SMM DRIVER
10643 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10644 W:      http://www.buzzard.org.uk/toshiba/
10645 S:      Maintained
10646 F:      drivers/char/toshiba.c
10647 F:      include/linux/toshiba.h
10648 F:      include/uapi/linux/toshiba.h
10649
10650 TOSHIBA TC358743 DRIVER
10651 M:      Mats Randgaard <matrandg@cisco.com>
10652 L:      linux-media@vger.kernel.org
10653 S:      Maintained
10654 F:      drivers/media/i2c/tc358743*
10655 F:      include/media/tc358743.h
10656
10657 TMIO MMC DRIVER
10658 M:      Ian Molton <ian@mnementh.co.uk>
10659 L:      linux-mmc@vger.kernel.org
10660 S:      Maintained
10661 F:      drivers/mmc/host/tmio_mmc*
10662 F:      drivers/mmc/host/sh_mobile_sdhi.c
10663 F:      include/linux/mmc/tmio.h
10664 F:      include/linux/mmc/sh_mobile_sdhi.h
10665
10666 TMP401 HARDWARE MONITOR DRIVER
10667 M:      Guenter Roeck <linux@roeck-us.net>
10668 L:      lm-sensors@lm-sensors.org
10669 S:      Maintained
10670 F:      Documentation/hwmon/tmp401
10671 F:      drivers/hwmon/tmp401.c
10672
10673 TMPFS (SHMEM FILESYSTEM)
10674 M:      Hugh Dickins <hughd@google.com>
10675 L:      linux-mm@kvack.org
10676 S:      Maintained
10677 F:      include/linux/shmem_fs.h
10678 F:      mm/shmem.c
10679
10680 TM6000 VIDEO4LINUX DRIVER
10681 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10682 L:      linux-media@vger.kernel.org
10683 W:      http://linuxtv.org
10684 T:      git git://linuxtv.org/media_tree.git
10685 S:      Odd fixes
10686 F:      drivers/media/usb/tm6000/
10687
10688 TW68 VIDEO4LINUX DRIVER
10689 M:      Hans Verkuil <hverkuil@xs4all.nl>
10690 L:      linux-media@vger.kernel.org
10691 T:      git git://linuxtv.org/media_tree.git
10692 W:      http://linuxtv.org
10693 S:      Odd Fixes
10694 F:      drivers/media/pci/tw68/
10695
10696 TPM DEVICE DRIVER
10697 M:      Peter Huewe <peterhuewe@gmx.de>
10698 M:      Marcel Selhorst <tpmdd@selhorst.net>
10699 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10700 W:      http://tpmdd.sourceforge.net
10701 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10702 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10703 T:      https://github.com/PeterHuewe/linux-tpmdd
10704 S:      Maintained
10705 F:      drivers/char/tpm/
10706
10707 TPM IBM_VTPM DEVICE DRIVER
10708 M:      Ashley Lai <ashleydlai@gmail.com>
10709 W:      http://tpmdd.sourceforge.net
10710 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10711 S:      Maintained
10712 F:      drivers/char/tpm/tpm_ibmvtpm*
10713
10714 TRACING
10715 M:      Steven Rostedt <rostedt@goodmis.org>
10716 M:      Ingo Molnar <mingo@redhat.com>
10717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10718 S:      Maintained
10719 F:      Documentation/trace/ftrace.txt
10720 F:      arch/*/*/*/ftrace.h
10721 F:      arch/*/kernel/ftrace.c
10722 F:      include/*/ftrace.h
10723 F:      include/linux/trace*.h
10724 F:      include/trace/
10725 F:      kernel/trace/
10726 F:      tools/testing/selftests/ftrace/
10727
10728 TRIVIAL PATCHES
10729 M:      Jiri Kosina <trivial@kernel.org>
10730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10731 S:      Maintained
10732 K:      ^Subject:.*(?i)trivial
10733
10734 TTY LAYER
10735 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10736 M:      Jiri Slaby <jslaby@suse.com>
10737 S:      Supported
10738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10739 F:      Documentation/serial/
10740 F:      drivers/tty/
10741 F:      drivers/tty/serial/serial_core.c
10742 F:      include/linux/serial_core.h
10743 F:      include/linux/serial.h
10744 F:      include/linux/tty.h
10745 F:      include/uapi/linux/serial_core.h
10746 F:      include/uapi/linux/serial.h
10747 F:      include/uapi/linux/tty.h
10748
10749 TUA9001 MEDIA DRIVER
10750 M:      Antti Palosaari <crope@iki.fi>
10751 L:      linux-media@vger.kernel.org
10752 W:      http://linuxtv.org/
10753 W:      http://palosaari.fi/linux/
10754 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10755 T:      git git://linuxtv.org/anttip/media_tree.git
10756 S:      Maintained
10757 F:      drivers/media/tuners/tua9001*
10758
10759 TULIP NETWORK DRIVERS
10760 M:      Grant Grundler <grundler@parisc-linux.org>
10761 L:      netdev@vger.kernel.org
10762 S:      Maintained
10763 F:      drivers/net/ethernet/dec/tulip/
10764
10765 TUN/TAP driver
10766 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10767 W:      http://vtun.sourceforge.net/tun
10768 S:      Maintained
10769 F:      Documentation/networking/tuntap.txt
10770 F:      arch/um/os-Linux/drivers/
10771
10772 TURBOCHANNEL SUBSYSTEM
10773 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10774 M:      Ralf Baechle <ralf@linux-mips.org>
10775 L:      linux-mips@linux-mips.org
10776 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10777 S:      Maintained
10778 F:      drivers/tc/
10779 F:      include/linux/tc.h
10780
10781 U14-34F SCSI DRIVER
10782 M:      Dario Ballabio <ballabio_dario@emc.com>
10783 L:      linux-scsi@vger.kernel.org
10784 S:      Maintained
10785 F:      drivers/scsi/u14-34f.c
10786
10787 UBI FILE SYSTEM (UBIFS)
10788 M:      Artem Bityutskiy <dedekind1@gmail.com>
10789 M:      Adrian Hunter <adrian.hunter@intel.com>
10790 L:      linux-mtd@lists.infradead.org
10791 T:      git git://git.infradead.org/ubifs-2.6.git
10792 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10793 S:      Maintained
10794 F:      Documentation/filesystems/ubifs.txt
10795 F:      fs/ubifs/
10796
10797 UCLINUX (M68KNOMMU AND COLDFIRE)
10798 M:      Greg Ungerer <gerg@uclinux.org>
10799 W:      http://www.uclinux.org/
10800 L:      linux-m68k@lists.linux-m68k.org
10801 L:      uclinux-dev@uclinux.org  (subscribers-only)
10802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10803 S:      Maintained
10804 F:      arch/m68k/coldfire/
10805 F:      arch/m68k/68*/
10806 F:      arch/m68k/*/*_no.*
10807 F:      arch/m68k/include/asm/*_no.*
10808
10809 UDF FILESYSTEM
10810 M:      Jan Kara <jack@suse.com>
10811 S:      Maintained
10812 F:      Documentation/filesystems/udf.txt
10813 F:      fs/udf/
10814
10815 UFS FILESYSTEM
10816 M:      Evgeniy Dushistov <dushistov@mail.ru>
10817 S:      Maintained
10818 F:      Documentation/filesystems/ufs.txt
10819 F:      fs/ufs/
10820
10821 UHID USERSPACE HID IO DRIVER:
10822 M:      David Herrmann <dh.herrmann@googlemail.com>
10823 L:      linux-input@vger.kernel.org
10824 S:      Maintained
10825 F:      drivers/hid/uhid.c
10826 F:      include/uapi/linux/uhid.h
10827
10828 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10829 L:      linux-usb@vger.kernel.org
10830 S:      Orphan
10831 F:      drivers/uwb/
10832 F:      include/linux/uwb.h
10833 F:      include/linux/uwb/
10834
10835 UNICORE32 ARCHITECTURE:
10836 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10837 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10838 S:      Maintained
10839 T:      git git://github.com/gxt/linux.git
10840 F:      arch/unicore32/
10841
10842 UNIFDEF
10843 M:      Tony Finch <dot@dotat.at>
10844 W:      http://dotat.at/prog/unifdef
10845 S:      Maintained
10846 F:      scripts/unifdef.c
10847
10848 UNIFORM CDROM DRIVER
10849 M:      Jens Axboe <axboe@kernel.dk>
10850 W:      http://www.kernel.dk
10851 S:      Maintained
10852 F:      Documentation/cdrom/
10853 F:      drivers/cdrom/cdrom.c
10854 F:      include/linux/cdrom.h
10855 F:      include/uapi/linux/cdrom.h
10856
10857 UNISYS S-PAR DRIVERS
10858 M:      Benjamin Romer <benjamin.romer@unisys.com>
10859 M:      David Kershner <david.kershner@unisys.com>
10860 L:      sparmaintainer@unisys.com (Unisys internal)
10861 S:      Supported
10862 F:      drivers/staging/unisys/
10863
10864 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10865 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10866 L:      linux-scsi@vger.kernel.org
10867 S:      Supported
10868 F:      Documentation/scsi/ufs.txt
10869 F:      drivers/scsi/ufs/
10870
10871 UNSORTED BLOCK IMAGES (UBI)
10872 M:      Artem Bityutskiy <dedekind1@gmail.com>
10873 M:      Richard Weinberger <richard@nod.at>
10874 W:      http://www.linux-mtd.infradead.org/
10875 L:      linux-mtd@lists.infradead.org
10876 T:      git git://git.infradead.org/ubifs-2.6.git
10877 S:      Supported
10878 F:      drivers/mtd/ubi/
10879 F:      include/linux/mtd/ubi.h
10880 F:      include/uapi/mtd/ubi-user.h
10881
10882 USB ACM DRIVER
10883 M:      Oliver Neukum <oliver@neukum.org>
10884 L:      linux-usb@vger.kernel.org
10885 S:      Maintained
10886 F:      Documentation/usb/acm.txt
10887 F:      drivers/usb/class/cdc-acm.*
10888
10889 USB AR5523 WIRELESS DRIVER
10890 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10891 L:      linux-wireless@vger.kernel.org
10892 S:      Maintained
10893 F:      drivers/net/wireless/ath/ar5523/
10894
10895 USB ATTACHED SCSI
10896 M:      Hans de Goede <hdegoede@redhat.com>
10897 M:      Gerd Hoffmann <kraxel@redhat.com>
10898 L:      linux-usb@vger.kernel.org
10899 L:      linux-scsi@vger.kernel.org
10900 S:      Maintained
10901 F:      drivers/usb/storage/uas.c
10902
10903 USB CDC ETHERNET DRIVER
10904 M:      Oliver Neukum <oliver@neukum.org>
10905 L:      linux-usb@vger.kernel.org
10906 S:      Maintained
10907 F:      drivers/net/usb/cdc_*.c
10908 F:      include/uapi/linux/usb/cdc.h
10909
10910 USB CHAOSKEY DRIVER
10911 M:      Keith Packard <keithp@keithp.com>
10912 L:      linux-usb@vger.kernel.org
10913 S:      Maintained
10914 F:      drivers/usb/misc/chaoskey.c
10915
10916 USB CYPRESS C67X00 DRIVER
10917 M:      Peter Korsgaard <jacmet@sunsite.dk>
10918 L:      linux-usb@vger.kernel.org
10919 S:      Maintained
10920 F:      drivers/usb/c67x00/
10921
10922 USB DAVICOM DM9601 DRIVER
10923 M:      Peter Korsgaard <jacmet@sunsite.dk>
10924 L:      netdev@vger.kernel.org
10925 W:      http://www.linux-usb.org/usbnet
10926 S:      Maintained
10927 F:      drivers/net/usb/dm9601.c
10928
10929 USB DIAMOND RIO500 DRIVER
10930 M:      Cesar Miquel <miquel@df.uba.ar>
10931 L:      rio500-users@lists.sourceforge.net
10932 W:      http://rio500.sourceforge.net
10933 S:      Maintained
10934 F:      drivers/usb/misc/rio500*
10935
10936 USB EHCI DRIVER
10937 M:      Alan Stern <stern@rowland.harvard.edu>
10938 L:      linux-usb@vger.kernel.org
10939 S:      Maintained
10940 F:      Documentation/usb/ehci.txt
10941 F:      drivers/usb/host/ehci*
10942
10943 USB GADGET/PERIPHERAL SUBSYSTEM
10944 M:      Felipe Balbi <balbi@ti.com>
10945 L:      linux-usb@vger.kernel.org
10946 W:      http://www.linux-usb.org/gadget
10947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10948 S:      Maintained
10949 F:      drivers/usb/gadget/
10950 F:      include/linux/usb/gadget*
10951
10952 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10953 M:      Jiri Kosina <jikos@kernel.org>
10954 L:      linux-usb@vger.kernel.org
10955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10956 S:      Maintained
10957 F:      Documentation/hid/hiddev.txt
10958 F:      drivers/hid/usbhid/
10959
10960 USB ISP116X DRIVER
10961 M:      Olav Kongas <ok@artecdesign.ee>
10962 L:      linux-usb@vger.kernel.org
10963 S:      Maintained
10964 F:      drivers/usb/host/isp116x*
10965 F:      include/linux/usb/isp116x.h
10966
10967 USB MASS STORAGE DRIVER
10968 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10969 L:      linux-usb@vger.kernel.org
10970 L:      usb-storage@lists.one-eyed-alien.net
10971 S:      Maintained
10972 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10973 F:      drivers/usb/storage/
10974
10975 USB MIDI DRIVER
10976 M:      Clemens Ladisch <clemens@ladisch.de>
10977 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10978 T:      git git://git.alsa-project.org/alsa-kernel.git
10979 S:      Maintained
10980 F:      sound/usb/midi.*
10981
10982 USB NETWORKING DRIVERS
10983 L:      linux-usb@vger.kernel.org
10984 S:      Odd Fixes
10985 F:      drivers/net/usb/
10986
10987 USB OHCI DRIVER
10988 M:      Alan Stern <stern@rowland.harvard.edu>
10989 L:      linux-usb@vger.kernel.org
10990 S:      Maintained
10991 F:      Documentation/usb/ohci.txt
10992 F:      drivers/usb/host/ohci*
10993
10994 USB OTG FSM (Finite State Machine)
10995 M:      Peter Chen <Peter.Chen@freescale.com>
10996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10997 L:      linux-usb@vger.kernel.org
10998 S:      Maintained
10999 F:      drivers/usb/common/usb-otg-fsm.c
11000
11001 USB OVER IP DRIVER
11002 M:      Valentina Manea <valentina.manea.m@gmail.com>
11003 M:      Shuah Khan <shuah.kh@samsung.com>
11004 L:      linux-usb@vger.kernel.org
11005 S:      Maintained
11006 F:      drivers/usb/usbip/
11007 F:      tools/usb/usbip/
11008
11009 USB PEGASUS DRIVER
11010 M:      Petko Manolov <petkan@nucleusys.com>
11011 L:      linux-usb@vger.kernel.org
11012 L:      netdev@vger.kernel.org
11013 T:      git git://github.com/petkan/pegasus.git
11014 W:      https://github.com/petkan/pegasus
11015 S:      Maintained
11016 F:      drivers/net/usb/pegasus.*
11017
11018 USB PHY LAYER
11019 M:      Felipe Balbi <balbi@ti.com>
11020 L:      linux-usb@vger.kernel.org
11021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11022 S:      Maintained
11023 F:      drivers/usb/phy/
11024
11025 USB PRINTER DRIVER (usblp)
11026 M:      Pete Zaitcev <zaitcev@redhat.com>
11027 L:      linux-usb@vger.kernel.org
11028 S:      Supported
11029 F:      drivers/usb/class/usblp.c
11030
11031 USB RTL8150 DRIVER
11032 M:      Petko Manolov <petkan@nucleusys.com>
11033 L:      linux-usb@vger.kernel.org
11034 L:      netdev@vger.kernel.org
11035 T:      git git://github.com/petkan/rtl8150.git
11036 W:      https://github.com/petkan/rtl8150
11037 S:      Maintained
11038 F:      drivers/net/usb/rtl8150.c
11039
11040 USB SERIAL SUBSYSTEM
11041 M:      Johan Hovold <johan@kernel.org>
11042 L:      linux-usb@vger.kernel.org
11043 S:      Maintained
11044 F:      Documentation/usb/usb-serial.txt
11045 F:      drivers/usb/serial/
11046 F:      include/linux/usb/serial.h
11047
11048 USB SMSC75XX ETHERNET DRIVER
11049 M:      Steve Glendinning <steve.glendinning@shawell.net>
11050 L:      netdev@vger.kernel.org
11051 S:      Maintained
11052 F:      drivers/net/usb/smsc75xx.*
11053
11054 USB SMSC95XX ETHERNET DRIVER
11055 M:      Steve Glendinning <steve.glendinning@shawell.net>
11056 L:      netdev@vger.kernel.org
11057 S:      Maintained
11058 F:      drivers/net/usb/smsc95xx.*
11059
11060 USB SUBSYSTEM
11061 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11062 L:      linux-usb@vger.kernel.org
11063 W:      http://www.linux-usb.org
11064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11065 S:      Supported
11066 F:      Documentation/usb/
11067 F:      drivers/usb/
11068 F:      include/linux/usb.h
11069 F:      include/linux/usb/
11070
11071 USB UHCI DRIVER
11072 M:      Alan Stern <stern@rowland.harvard.edu>
11073 L:      linux-usb@vger.kernel.org
11074 S:      Maintained
11075 F:      drivers/usb/host/uhci*
11076
11077 USB "USBNET" DRIVER FRAMEWORK
11078 M:      Oliver Neukum <oneukum@suse.com>
11079 L:      netdev@vger.kernel.org
11080 W:      http://www.linux-usb.org/usbnet
11081 S:      Maintained
11082 F:      drivers/net/usb/usbnet.c
11083 F:      include/linux/usb/usbnet.h
11084
11085 USB VIDEO CLASS
11086 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11087 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11088 L:      linux-media@vger.kernel.org
11089 T:      git git://linuxtv.org/media_tree.git
11090 W:      http://www.ideasonboard.org/uvc/
11091 S:      Maintained
11092 F:      drivers/media/usb/uvc/
11093 F:      include/uapi/linux/uvcvideo.h
11094
11095 USB VISION DRIVER
11096 M:      Hans Verkuil <hverkuil@xs4all.nl>
11097 L:      linux-media@vger.kernel.org
11098 T:      git git://linuxtv.org/media_tree.git
11099 W:      http://linuxtv.org
11100 S:      Odd Fixes
11101 F:      drivers/media/usb/usbvision/
11102
11103 USB WEBCAM GADGET
11104 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11105 L:      linux-usb@vger.kernel.org
11106 S:      Maintained
11107 F:      drivers/usb/gadget/function/*uvc*
11108 F:      drivers/usb/gadget/legacy/webcam.c
11109
11110 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11111 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11112 L:      linux-wireless@vger.kernel.org
11113 S:      Maintained
11114 F:      drivers/net/wireless/rndis_wlan.c
11115
11116 USB XHCI DRIVER
11117 M:      Mathias Nyman <mathias.nyman@intel.com>
11118 L:      linux-usb@vger.kernel.org
11119 S:      Supported
11120 F:      drivers/usb/host/xhci*
11121 F:      drivers/usb/host/pci-quirks*
11122
11123 USB ZD1201 DRIVER
11124 L:      linux-wireless@vger.kernel.org
11125 W:      http://linux-lc100020.sourceforge.net
11126 S:      Orphan
11127 F:      drivers/net/wireless/zd1201.*
11128
11129 USB ZR364XX DRIVER
11130 M:      Antoine Jacquet <royale@zerezo.com>
11131 L:      linux-usb@vger.kernel.org
11132 L:      linux-media@vger.kernel.org
11133 T:      git git://linuxtv.org/media_tree.git
11134 W:      http://royale.zerezo.com/zr364xx/
11135 S:      Maintained
11136 F:      Documentation/video4linux/zr364xx.txt
11137 F:      drivers/media/usb/zr364xx/
11138
11139 ULPI BUS
11140 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11141 L:      linux-usb@vger.kernel.org
11142 S:      Maintained
11143 F:      drivers/usb/common/ulpi.c
11144 F:      include/linux/ulpi/
11145
11146 USER-MODE LINUX (UML)
11147 M:      Jeff Dike <jdike@addtoit.com>
11148 M:      Richard Weinberger <richard@nod.at>
11149 L:      user-mode-linux-devel@lists.sourceforge.net
11150 L:      user-mode-linux-user@lists.sourceforge.net
11151 W:      http://user-mode-linux.sourceforge.net
11152 S:      Maintained
11153 F:      Documentation/virtual/uml/
11154 F:      arch/um/
11155 F:      arch/x86/um/
11156 F:      fs/hostfs/
11157 F:      fs/hppfs/
11158
11159 USERSPACE I/O (UIO)
11160 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11161 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11162 S:      Maintained
11163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11164 F:      Documentation/DocBook/uio-howto.tmpl
11165 F:      drivers/uio/
11166 F:      include/linux/uio*.h
11167
11168 UTIL-LINUX PACKAGE
11169 M:      Karel Zak <kzak@redhat.com>
11170 L:      util-linux@vger.kernel.org
11171 W:      http://en.wikipedia.org/wiki/Util-linux
11172 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11173 S:      Maintained
11174
11175 UVESAFB DRIVER
11176 M:      Michal Januszewski <spock@gentoo.org>
11177 L:      linux-fbdev@vger.kernel.org
11178 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11179 S:      Maintained
11180 F:      Documentation/fb/uvesafb.txt
11181 F:      drivers/video/fbdev/uvesafb.*
11182
11183 VFAT/FAT/MSDOS FILESYSTEM
11184 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11185 S:      Maintained
11186 F:      Documentation/filesystems/vfat.txt
11187 F:      fs/fat/
11188
11189 VFIO DRIVER
11190 M:      Alex Williamson <alex.williamson@redhat.com>
11191 L:      kvm@vger.kernel.org
11192 S:      Maintained
11193 F:      Documentation/vfio.txt
11194 F:      drivers/vfio/
11195 F:      include/linux/vfio.h
11196 F:      include/uapi/linux/vfio.h
11197
11198 VFIO PLATFORM DRIVER
11199 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11200 L:      kvm@vger.kernel.org
11201 S:      Maintained
11202 F:      drivers/vfio/platform/
11203
11204 VIDEOBUF2 FRAMEWORK
11205 M:      Pawel Osciak <pawel@osciak.com>
11206 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11207 M:      Kyungmin Park <kyungmin.park@samsung.com>
11208 L:      linux-media@vger.kernel.org
11209 S:      Maintained
11210 F:      drivers/media/v4l2-core/videobuf2-*
11211 F:      include/media/videobuf2-*
11212
11213 VIRTUAL SERIO DEVICE DRIVER
11214 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11215 S:      Maintained
11216 F:      drivers/input/serio/userio.c
11217 F:      include/uapi/linux/userio.h
11218
11219 VIRTIO CONSOLE DRIVER
11220 M:      Amit Shah <amit.shah@redhat.com>
11221 L:      virtualization@lists.linux-foundation.org
11222 S:      Maintained
11223 F:      drivers/char/virtio_console.c
11224 F:      include/linux/virtio_console.h
11225 F:      include/uapi/linux/virtio_console.h
11226
11227 VIRTIO CORE, NET AND BLOCK DRIVERS
11228 M:      "Michael S. Tsirkin" <mst@redhat.com>
11229 L:      virtualization@lists.linux-foundation.org
11230 S:      Maintained
11231 F:      drivers/virtio/
11232 F:      tools/virtio/
11233 F:      drivers/net/virtio_net.c
11234 F:      drivers/block/virtio_blk.c
11235 F:      include/linux/virtio_*.h
11236 F:      include/uapi/linux/virtio_*.h
11237
11238 VIRTIO DRIVERS FOR S390
11239 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11240 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11241 L:      linux-s390@vger.kernel.org
11242 L:      virtualization@lists.linux-foundation.org
11243 L:      kvm@vger.kernel.org
11244 S:      Supported
11245 F:      drivers/s390/virtio/
11246
11247 VIRTIO GPU DRIVER
11248 M:      David Airlie <airlied@linux.ie>
11249 M:      Gerd Hoffmann <kraxel@redhat.com>
11250 L:      dri-devel@lists.freedesktop.org
11251 L:      virtualization@lists.linux-foundation.org
11252 S:      Maintained
11253 F:      drivers/gpu/drm/virtio/
11254 F:      include/uapi/linux/virtio_gpu.h
11255
11256 VIRTIO HOST (VHOST)
11257 M:      "Michael S. Tsirkin" <mst@redhat.com>
11258 L:      kvm@vger.kernel.org
11259 L:      virtualization@lists.linux-foundation.org
11260 L:      netdev@vger.kernel.org
11261 S:      Maintained
11262 F:      drivers/vhost/
11263 F:      include/uapi/linux/vhost.h
11264
11265 VIRTIO INPUT DRIVER
11266 M:      Gerd Hoffmann <kraxel@redhat.com>
11267 S:      Maintained
11268 F:      drivers/virtio/virtio_input.c
11269 F:      include/uapi/linux/virtio_input.h
11270
11271 VIA RHINE NETWORK DRIVER
11272 S:      Orphan
11273 F:      drivers/net/ethernet/via/via-rhine.c
11274
11275 VIA SD/MMC CARD CONTROLLER DRIVER
11276 M:      Bruce Chang <brucechang@via.com.tw>
11277 M:      Harald Welte <HaraldWelte@viatech.com>
11278 S:      Maintained
11279 F:      drivers/mmc/host/via-sdmmc.c
11280
11281 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11282 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11283 L:      linux-fbdev@vger.kernel.org
11284 S:      Maintained
11285 F:      include/linux/via-core.h
11286 F:      include/linux/via-gpio.h
11287 F:      include/linux/via_i2c.h
11288 F:      drivers/video/fbdev/via/
11289
11290 VIA VELOCITY NETWORK DRIVER
11291 M:      Francois Romieu <romieu@fr.zoreil.com>
11292 L:      netdev@vger.kernel.org
11293 S:      Maintained
11294 F:      drivers/net/ethernet/via/via-velocity.*
11295
11296 VIVID VIRTUAL VIDEO DRIVER
11297 M:      Hans Verkuil <hverkuil@xs4all.nl>
11298 L:      linux-media@vger.kernel.org
11299 T:      git git://linuxtv.org/media_tree.git
11300 W:      http://linuxtv.org
11301 S:      Maintained
11302 F:      drivers/media/platform/vivid/*
11303
11304 VLAN (802.1Q)
11305 M:      Patrick McHardy <kaber@trash.net>
11306 L:      netdev@vger.kernel.org
11307 S:      Maintained
11308 F:      drivers/net/macvlan.c
11309 F:      include/linux/if_*vlan.h
11310 F:      net/8021q/
11311
11312 VLYNQ BUS
11313 M:      Florian Fainelli <florian@openwrt.org>
11314 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11315 S:      Maintained
11316 F:      drivers/vlynq/vlynq.c
11317 F:      include/linux/vlynq.h
11318
11319 VME SUBSYSTEM
11320 M:      Martyn Welch <martyn@welchs.me.uk>
11321 M:      Manohar Vanga <manohar.vanga@gmail.com>
11322 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11323 L:      devel@driverdev.osuosl.org
11324 S:      Maintained
11325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11326 F:      Documentation/vme_api.txt
11327 F:      drivers/staging/vme/
11328 F:      drivers/vme/
11329 F:      include/linux/vme*
11330
11331 VMWARE HYPERVISOR INTERFACE
11332 M:      Alok Kataria <akataria@vmware.com>
11333 L:      virtualization@lists.linux-foundation.org
11334 S:      Supported
11335 F:      arch/x86/kernel/cpu/vmware.c
11336
11337 VMWARE BALLOON DRIVER
11338 M:      Xavier Deguillard <xdeguillard@vmware.com>
11339 M:      Philip Moltmann <moltmann@vmware.com>
11340 M:      "VMware, Inc." <pv-drivers@vmware.com>
11341 L:      linux-kernel@vger.kernel.org
11342 S:      Maintained
11343 F:      drivers/misc/vmw_balloon.c
11344
11345 VMWARE VMMOUSE SUBDRIVER
11346 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11347 M:      "VMware, Inc." <pv-drivers@vmware.com>
11348 L:      linux-input@vger.kernel.org
11349 S:      Maintained
11350 F:      drivers/input/mouse/vmmouse.c
11351 F:      drivers/input/mouse/vmmouse.h
11352
11353 VMWARE VMXNET3 ETHERNET DRIVER
11354 M:      Shrikrishna Khare <skhare@vmware.com>
11355 M:      "VMware, Inc." <pv-drivers@vmware.com>
11356 L:      netdev@vger.kernel.org
11357 S:      Maintained
11358 F:      drivers/net/vmxnet3/
11359
11360 VMware PVSCSI driver
11361 M:      Arvind Kumar <arvindkumar@vmware.com>
11362 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11363 L:      linux-scsi@vger.kernel.org
11364 S:      Maintained
11365 F:      drivers/scsi/vmw_pvscsi.c
11366 F:      drivers/scsi/vmw_pvscsi.h
11367
11368 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11369 M:      Liam Girdwood <lgirdwood@gmail.com>
11370 M:      Mark Brown <broonie@kernel.org>
11371 L:      linux-kernel@vger.kernel.org
11372 W:      http://www.slimlogic.co.uk/?p=48
11373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11374 S:      Supported
11375 F:      drivers/regulator/
11376 F:      include/linux/regulator/
11377
11378 VRF
11379 M:      David Ahern <dsa@cumulusnetworks.com>
11380 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11381 L:      netdev@vger.kernel.org
11382 S:      Maintained
11383 F:      drivers/net/vrf.c
11384 F:      Documentation/networking/vrf.txt
11385
11386 VT1211 HARDWARE MONITOR DRIVER
11387 M:      Juerg Haefliger <juergh@gmail.com>
11388 L:      lm-sensors@lm-sensors.org
11389 S:      Maintained
11390 F:      Documentation/hwmon/vt1211
11391 F:      drivers/hwmon/vt1211.c
11392
11393 VT8231 HARDWARE MONITOR DRIVER
11394 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11395 L:      lm-sensors@lm-sensors.org
11396 S:      Maintained
11397 F:      drivers/hwmon/vt8231.c
11398
11399 VUB300 USB to SDIO/SD/MMC bridge chip
11400 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11401 L:      linux-mmc@vger.kernel.org
11402 L:      linux-usb@vger.kernel.org
11403 S:      Supported
11404 F:      drivers/mmc/host/vub300.c
11405
11406 W1 DALLAS'S 1-WIRE BUS
11407 M:      Evgeniy Polyakov <zbr@ioremap.net>
11408 S:      Maintained
11409 F:      Documentation/w1/
11410 F:      drivers/w1/
11411
11412 W83791D HARDWARE MONITORING DRIVER
11413 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11414 L:      lm-sensors@lm-sensors.org
11415 S:      Maintained
11416 F:      Documentation/hwmon/w83791d
11417 F:      drivers/hwmon/w83791d.c
11418
11419 W83793 HARDWARE MONITORING DRIVER
11420 M:      Rudolf Marek <r.marek@assembler.cz>
11421 L:      lm-sensors@lm-sensors.org
11422 S:      Maintained
11423 F:      Documentation/hwmon/w83793
11424 F:      drivers/hwmon/w83793.c
11425
11426 W83795 HARDWARE MONITORING DRIVER
11427 M:      Jean Delvare <jdelvare@suse.com>
11428 L:      lm-sensors@lm-sensors.org
11429 S:      Maintained
11430 F:      drivers/hwmon/w83795.c
11431
11432 W83L51xD SD/MMC CARD INTERFACE DRIVER
11433 M:      Pierre Ossman <pierre@ossman.eu>
11434 S:      Maintained
11435 F:      drivers/mmc/host/wbsd.*
11436
11437 WACOM PROTOCOL 4 SERIAL TABLETS
11438 M:      Julian Squires <julian@cipht.net>
11439 M:      Hans de Goede <hdegoede@redhat.com>
11440 L:      linux-input@vger.kernel.org
11441 S:      Maintained
11442 F:      drivers/input/tablet/wacom_serial4.c
11443
11444 WATCHDOG DEVICE DRIVERS
11445 M:      Wim Van Sebroeck <wim@iguana.be>
11446 L:      linux-watchdog@vger.kernel.org
11447 W:      http://www.linux-watchdog.org/
11448 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11449 S:      Maintained
11450 F:      Documentation/watchdog/
11451 F:      drivers/watchdog/
11452 F:      include/linux/watchdog.h
11453 F:      include/uapi/linux/watchdog.h
11454
11455 WD7000 SCSI DRIVER
11456 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11457 L:      linux-scsi@vger.kernel.org
11458 S:      Maintained
11459 F:      drivers/scsi/wd7000.c
11460
11461 WIIMOTE HID DRIVER
11462 M:      David Herrmann <dh.herrmann@googlemail.com>
11463 L:      linux-input@vger.kernel.org
11464 S:      Maintained
11465 F:      drivers/hid/hid-wiimote*
11466
11467 WINBOND CIR DRIVER
11468 M:      David Härdeman <david@hardeman.nu>
11469 S:      Maintained
11470 F:      drivers/media/rc/winbond-cir.c
11471
11472 WIMAX STACK
11473 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11474 M:      linux-wimax@intel.com
11475 L:      wimax@linuxwimax.org (subscribers-only)
11476 S:      Supported
11477 W:      http://linuxwimax.org
11478 F:      Documentation/wimax/README.wimax
11479 F:      include/linux/wimax/debug.h
11480 F:      include/net/wimax.h
11481 F:      include/uapi/linux/wimax.h
11482 F:      net/wimax/
11483
11484 WISTRON LAPTOP BUTTON DRIVER
11485 M:      Miloslav Trmac <mitr@volny.cz>
11486 S:      Maintained
11487 F:      drivers/input/misc/wistron_btns.c
11488
11489 WL3501 WIRELESS PCMCIA CARD DRIVER
11490 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11491 L:      linux-wireless@vger.kernel.org
11492 W:      http://oops.ghostprotocols.net:81/blog
11493 S:      Maintained
11494 F:      drivers/net/wireless/wl3501*
11495
11496 WOLFSON MICROELECTRONICS DRIVERS
11497 L:      patches@opensource.wolfsonmicro.com
11498 T:      git https://github.com/CirrusLogic/linux-drivers.git
11499 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11500 S:      Supported
11501 F:      Documentation/hwmon/wm83??
11502 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11503 F:      drivers/clk/clk-wm83*.c
11504 F:      drivers/extcon/extcon-arizona.c
11505 F:      drivers/leds/leds-wm83*.c
11506 F:      drivers/gpio/gpio-*wm*.c
11507 F:      drivers/gpio/gpio-arizona.c
11508 F:      drivers/hwmon/wm83??-hwmon.c
11509 F:      drivers/input/misc/wm831x-on.c
11510 F:      drivers/input/touchscreen/wm831x-ts.c
11511 F:      drivers/input/touchscreen/wm97*.c
11512 F:      drivers/mfd/arizona*
11513 F:      drivers/mfd/wm*.c
11514 F:      drivers/power/wm83*.c
11515 F:      drivers/rtc/rtc-wm83*.c
11516 F:      drivers/regulator/wm8*.c
11517 F:      drivers/video/backlight/wm83*_bl.c
11518 F:      drivers/watchdog/wm83*_wdt.c
11519 F:      include/linux/mfd/arizona/
11520 F:      include/linux/mfd/wm831x/
11521 F:      include/linux/mfd/wm8350/
11522 F:      include/linux/mfd/wm8400*
11523 F:      include/linux/wm97xx.h
11524 F:      include/sound/wm????.h
11525 F:      sound/soc/codecs/arizona.?
11526 F:      sound/soc/codecs/wm*
11527
11528 WORKQUEUE
11529 M:      Tejun Heo <tj@kernel.org>
11530 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11532 S:      Maintained
11533 F:      include/linux/workqueue.h
11534 F:      kernel/workqueue.c
11535 F:      Documentation/workqueue.txt
11536
11537 X.25 NETWORK LAYER
11538 M:      Andrew Hendry <andrew.hendry@gmail.com>
11539 L:      linux-x25@vger.kernel.org
11540 S:      Odd Fixes
11541 F:      Documentation/networking/x25*
11542 F:      include/net/x25*
11543 F:      net/x25/
11544
11545 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11546 M:      Thomas Gleixner <tglx@linutronix.de>
11547 M:      Ingo Molnar <mingo@redhat.com>
11548 M:      "H. Peter Anvin" <hpa@zytor.com>
11549 M:      x86@kernel.org
11550 L:      linux-kernel@vger.kernel.org
11551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11552 S:      Maintained
11553 F:      Documentation/x86/
11554 F:      arch/x86/
11555
11556 X86 PLATFORM DRIVERS
11557 M:      Darren Hart <dvhart@infradead.org>
11558 L:      platform-driver-x86@vger.kernel.org
11559 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11560 S:      Maintained
11561 F:      drivers/platform/x86/
11562
11563 X86 MCE INFRASTRUCTURE
11564 M:      Tony Luck <tony.luck@intel.com>
11565 M:      Borislav Petkov <bp@alien8.de>
11566 L:      linux-edac@vger.kernel.org
11567 S:      Maintained
11568 F:      arch/x86/kernel/cpu/mcheck/*
11569
11570 X86 MICROCODE UPDATE SUPPORT
11571 M:      Borislav Petkov <bp@alien8.de>
11572 S:      Maintained
11573 F:      arch/x86/kernel/cpu/microcode/*
11574
11575 X86 VDSO
11576 M:      Andy Lutomirski <luto@amacapital.net>
11577 L:      linux-kernel@vger.kernel.org
11578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11579 S:      Maintained
11580 F:      arch/x86/entry/vdso/
11581
11582 XC2028/3028 TUNER DRIVER
11583 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11584 L:      linux-media@vger.kernel.org
11585 W:      http://linuxtv.org
11586 T:      git git://linuxtv.org/media_tree.git
11587 S:      Maintained
11588 F:      drivers/media/tuners/tuner-xc2028.*
11589
11590 XEN HYPERVISOR INTERFACE
11591 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11592 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11593 M:      David Vrabel <david.vrabel@citrix.com>
11594 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11596 S:      Supported
11597 F:      arch/x86/xen/
11598 F:      drivers/*/xen-*front.c
11599 F:      drivers/xen/
11600 F:      arch/x86/include/asm/xen/
11601 F:      include/xen/
11602 F:      include/uapi/xen/
11603
11604 XEN HYPERVISOR ARM
11605 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11606 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11607 S:      Supported
11608 F:      arch/arm/xen/
11609 F:      arch/arm/include/asm/xen/
11610
11611 XEN HYPERVISOR ARM64
11612 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11613 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11614 S:      Supported
11615 F:      arch/arm64/xen/
11616 F:      arch/arm64/include/asm/xen/
11617
11618 XEN NETWORK BACKEND DRIVER
11619 M:      Ian Campbell <ian.campbell@citrix.com>
11620 M:      Wei Liu <wei.liu2@citrix.com>
11621 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11622 L:      netdev@vger.kernel.org
11623 S:      Supported
11624 F:      drivers/net/xen-netback/*
11625
11626 XEN PCI SUBSYSTEM
11627 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11628 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11629 S:      Supported
11630 F:      arch/x86/pci/*xen*
11631 F:      drivers/pci/*xen*
11632
11633 XEN BLOCK SUBSYSTEM
11634 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11635 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11636 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11637 S:      Supported
11638 F:      drivers/block/xen-blkback/*
11639 F:      drivers/block/xen*
11640
11641 XEN PVSCSI DRIVERS
11642 M:      Juergen Gross <jgross@suse.com>
11643 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11644 L:      linux-scsi@vger.kernel.org
11645 S:      Supported
11646 F:      drivers/scsi/xen-scsifront.c
11647 F:      drivers/xen/xen-scsiback.c
11648 F:      include/xen/interface/io/vscsiif.h
11649
11650 XEN SWIOTLB SUBSYSTEM
11651 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11652 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11653 S:      Supported
11654 F:      arch/x86/xen/*swiotlb*
11655 F:      drivers/xen/*swiotlb*
11656
11657 XFS FILESYSTEM
11658 P:      Silicon Graphics Inc
11659 M:      Dave Chinner <david@fromorbit.com>
11660 M:      xfs@oss.sgi.com
11661 L:      xfs@oss.sgi.com
11662 W:      http://oss.sgi.com/projects/xfs
11663 T:      git git://oss.sgi.com/xfs/xfs.git
11664 S:      Supported
11665 F:      Documentation/filesystems/xfs.txt
11666 F:      fs/xfs/
11667
11668 XILINX AXI ETHERNET DRIVER
11669 M:      Anirudha Sarangi <anirudh@xilinx.com>
11670 M:      John Linn <John.Linn@xilinx.com>
11671 S:      Maintained
11672 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11673
11674 XILINX UARTLITE SERIAL DRIVER
11675 M:      Peter Korsgaard <jacmet@sunsite.dk>
11676 L:      linux-serial@vger.kernel.org
11677 S:      Maintained
11678 F:      drivers/tty/serial/uartlite.c
11679
11680 XILINX VIDEO IP CORES
11681 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11682 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11683 L:      linux-media@vger.kernel.org
11684 T:      git git://linuxtv.org/media_tree.git
11685 S:      Supported
11686 F:      Documentation/devicetree/bindings/media/xilinx/
11687 F:      drivers/media/platform/xilinx/
11688 F:      include/uapi/linux/xilinx-v4l2-controls.h
11689
11690 XILLYBUS DRIVER
11691 M:      Eli Billauer <eli.billauer@gmail.com>
11692 L:      linux-kernel@vger.kernel.org
11693 S:      Supported
11694 F:      drivers/char/xillybus/
11695
11696 XTENSA XTFPGA PLATFORM SUPPORT
11697 M:      Max Filippov <jcmvbkbc@gmail.com>
11698 L:      linux-xtensa@linux-xtensa.org
11699 S:      Maintained
11700 F:      drivers/spi/spi-xtensa-xtfpga.c
11701 F:      sound/soc/xtensa/xtfpga-i2s.c
11702
11703 YAM DRIVER FOR AX.25
11704 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11705 L:      linux-hams@vger.kernel.org
11706 S:      Maintained
11707 F:      drivers/net/hamradio/yam*
11708 F:      include/linux/yam.h
11709
11710 YEALINK PHONE DRIVER
11711 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11712 L:      usbb2k-api-dev@nongnu.org
11713 S:      Maintained
11714 F:      Documentation/input/yealink.txt
11715 F:      drivers/input/misc/yealink.*
11716
11717 Z8530 DRIVER FOR AX.25
11718 M:      Joerg Reuter <jreuter@yaina.de>
11719 W:      http://yaina.de/jreuter/
11720 W:      http://www.qsl.net/dl1bke/
11721 L:      linux-hams@vger.kernel.org
11722 S:      Maintained
11723 F:      Documentation/networking/z8530drv.txt
11724 F:      drivers/net/hamradio/*scc.c
11725 F:      drivers/net/hamradio/z8530.h
11726
11727 ZBUD COMPRESSED PAGE ALLOCATOR
11728 M:      Seth Jennings <sjennings@variantweb.net>
11729 L:      linux-mm@kvack.org
11730 S:      Maintained
11731 F:      mm/zbud.c
11732 F:      include/linux/zbud.h
11733
11734 ZD1211RW WIRELESS DRIVER
11735 M:      Daniel Drake <dsd@gentoo.org>
11736 M:      Ulrich Kunitz <kune@deine-taler.de>
11737 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11738 L:      linux-wireless@vger.kernel.org
11739 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11740 S:      Maintained
11741 F:      drivers/net/wireless/zd1211rw/
11742
11743 ZPOOL COMPRESSED PAGE STORAGE API
11744 M:      Dan Streetman <ddstreet@ieee.org>
11745 L:      linux-mm@kvack.org
11746 S:      Maintained
11747 F:      mm/zpool.c
11748 F:      include/linux/zpool.h
11749
11750 ZR36067 VIDEO FOR LINUX DRIVER
11751 L:      mjpeg-users@lists.sourceforge.net
11752 L:      linux-media@vger.kernel.org
11753 W:      http://mjpeg.sourceforge.net/driver-zoran/
11754 T:      hg http://linuxtv.org/hg/v4l-dvb
11755 S:      Odd Fixes
11756 F:      drivers/media/pci/zoran/
11757
11758 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11759 M:      Minchan Kim <minchan@kernel.org>
11760 M:      Nitin Gupta <ngupta@vflare.org>
11761 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11762 L:      linux-kernel@vger.kernel.org
11763 S:      Maintained
11764 F:      drivers/block/zram/
11765 F:      Documentation/blockdev/zram.txt
11766
11767 ZS DECSTATION Z85C30 SERIAL DRIVER
11768 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11769 S:      Maintained
11770 F:      drivers/tty/serial/zs.*
11771
11772 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11773 M:      Minchan Kim <minchan@kernel.org>
11774 M:      Nitin Gupta <ngupta@vflare.org>
11775 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11776 L:      linux-mm@kvack.org
11777 S:      Maintained
11778 F:      mm/zsmalloc.c
11779 F:      include/linux/zsmalloc.h
11780 F:      Documentation/vm/zsmalloc.txt
11781
11782 ZSWAP COMPRESSED SWAP CACHING
11783 M:      Seth Jennings <sjennings@variantweb.net>
11784 L:      linux-mm@kvack.org
11785 S:      Maintained
11786 F:      mm/zswap.c
11787
11788 THE REST
11789 M:      Linus Torvalds <torvalds@linux-foundation.org>
11790 L:      linux-kernel@vger.kernel.org
11791 Q:      http://patchwork.kernel.org/project/LKML/list/
11792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11793 S:      Buried alive in reporters
11794 F:      *
11795 F:      */