[media] vivid: add xfer_func support
[linux-2.6-block.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 OSDL certificate of contribution and should include a
55         Signed-off-by: line.  The current version of this "Developer's
56         Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161
162 6PACK NETWORK DRIVER FOR AX.25
163 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
164 L:      linux-hams@vger.kernel.org
165 S:      Maintained
166 F:      drivers/net/hamradio/6pack.c
167
168 8169 10/100/1000 GIGABIT ETHERNET DRIVER
169 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
170 L:      netdev@vger.kernel.org
171 S:      Maintained
172 F:      drivers/net/ethernet/realtek/r8169.c
173
174 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
175 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
176 L:      linux-serial@vger.kernel.org
177 W:      http://serial.sourceforge.net
178 S:      Maintained
179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
180 F:      drivers/tty/serial/8250*
181 F:      include/linux/serial_8250.h
182
183 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
184 L:      netdev@vger.kernel.org
185 S:      Orphan / Obsolete
186 F:      drivers/net/ethernet/8390/
187
188 9P FILE SYSTEM
189 M:      Eric Van Hensbergen <ericvh@gmail.com>
190 M:      Ron Minnich <rminnich@sandia.gov>
191 M:      Latchesar Ionkov <lucho@ionkov.net>
192 L:      v9fs-developer@lists.sourceforge.net
193 W:      http://swik.net/v9fs
194 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
196 S:      Maintained
197 F:      Documentation/filesystems/9p.txt
198 F:      fs/9p/
199 F:      net/9p/
200 F:      include/net/9p/
201 F:      include/uapi/linux/virtio_9p.h
202 F:      include/trace/events/9p.h
203
204
205 A8293 MEDIA DRIVER
206 M:      Antti Palosaari <crope@iki.fi>
207 L:      linux-media@vger.kernel.org
208 W:      http://linuxtv.org/
209 W:      http://palosaari.fi/linux/
210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
211 T:      git git://linuxtv.org/anttip/media_tree.git
212 S:      Maintained
213 F:      drivers/media/dvb-frontends/a8293*
214
215 AACRAID SCSI RAID DRIVER
216 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
217 L:      linux-scsi@vger.kernel.org
218 W:      http://www.adaptec.com/
219 S:      Supported
220 F:      Documentation/scsi/aacraid.txt
221 F:      drivers/scsi/aacraid/
222
223 ABI/API
224 L:      linux-api@vger.kernel.org
225 F:      Documentation/ABI/
226 F:      include/linux/syscalls.h
227 F:      include/uapi/
228 F:      kernel/sys_ni.c
229
230 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
231 M:      Hans de Goede <hdegoede@redhat.com>
232 L:      lm-sensors@lm-sensors.org
233 S:      Maintained
234 F:      drivers/hwmon/abituguru.c
235
236 ABIT UGURU 3 HARDWARE MONITOR DRIVER
237 M:      Alistair John Strachan <alistair@devzero.co.uk>
238 L:      lm-sensors@lm-sensors.org
239 S:      Maintained
240 F:      drivers/hwmon/abituguru3.c
241
242 ACENIC DRIVER
243 M:      Jes Sorensen <jes@trained-monkey.org>
244 L:      linux-acenic@sunsite.dk
245 S:      Maintained
246 F:      drivers/net/ethernet/alteon/acenic*
247
248 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
249 M:      Peter Feuerer <peter@piie.net>
250 L:      platform-driver-x86@vger.kernel.org
251 W:      http://piie.net/?section=acerhdf
252 S:      Maintained
253 F:      drivers/platform/x86/acerhdf.c
254
255 ACER WMI LAPTOP EXTRAS
256 M:      "Lee, Chun-Yi" <jlee@suse.com>
257 L:      platform-driver-x86@vger.kernel.org
258 S:      Maintained
259 F:      drivers/platform/x86/acer-wmi.c
260
261 ACPI
262 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
263 M:      Len Brown <lenb@kernel.org>
264 L:      linux-acpi@vger.kernel.org
265 W:      https://01.org/linux-acpi
266 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
268 S:      Supported
269 F:      drivers/acpi/
270 F:      drivers/pnp/pnpacpi/
271 F:      include/linux/acpi.h
272 F:      include/acpi/
273 F:      Documentation/acpi/
274 F:      Documentation/ABI/testing/sysfs-bus-acpi
275 F:      drivers/pci/*acpi*
276 F:      drivers/pci/*/*acpi*
277 F:      drivers/pci/*/*/*acpi*
278 F:      tools/power/acpi/
279
280 ACPI COMPONENT ARCHITECTURE (ACPICA)
281 M:      Robert Moore <robert.moore@intel.com>
282 M:      Lv Zheng <lv.zheng@intel.com>
283 M:      Rafael J. Wysocki <rafael.j.wysocki@intel.com>
284 L:      linux-acpi@vger.kernel.org
285 L:      devel@acpica.org
286 W:      https://acpica.org/
287 W:      https://github.com/acpica/acpica/
288 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
290 S:      Supported
291 F:      drivers/acpi/acpica/
292 F:      include/acpi/
293 F:      tools/power/acpi/
294
295 ACPI FAN DRIVER
296 M:      Zhang Rui <rui.zhang@intel.com>
297 L:      linux-acpi@vger.kernel.org
298 W:      https://01.org/linux-acpi
299 S:      Supported
300 F:      drivers/acpi/fan.c
301
302 ACPI THERMAL DRIVER
303 M:      Zhang Rui <rui.zhang@intel.com>
304 L:      linux-acpi@vger.kernel.org
305 W:      https://01.org/linux-acpi
306 S:      Supported
307 F:      drivers/acpi/*thermal*
308
309 ACPI VIDEO DRIVER
310 M:      Zhang Rui <rui.zhang@intel.com>
311 L:      linux-acpi@vger.kernel.org
312 W:      https://01.org/linux-acpi
313 S:      Supported
314 F:      drivers/acpi/video.c
315
316 ACPI WMI DRIVER
317 L:      platform-driver-x86@vger.kernel.org
318 S:      Orphan
319 F:      drivers/platform/x86/wmi.c
320
321 AD1889 ALSA SOUND DRIVER
322 M:      Thibaut Varene <T-Bone@parisc-linux.org>
323 W:      http://wiki.parisc-linux.org/AD1889
324 L:      linux-parisc@vger.kernel.org
325 S:      Maintained
326 F:      sound/pci/ad1889.*
327
328 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
329 M:      Michael Hennerich <michael.hennerich@analog.com>
330 W:      http://wiki.analog.com/AD5254
331 W:      http://ez.analog.com/community/linux-device-drivers
332 S:      Supported
333 F:      drivers/misc/ad525x_dpot.c
334
335 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
336 M:      Michael Hennerich <michael.hennerich@analog.com>
337 W:      http://wiki.analog.com/AD5398
338 W:      http://ez.analog.com/community/linux-device-drivers
339 S:      Supported
340 F:      drivers/regulator/ad5398.c
341
342 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
343 M:      Michael Hennerich <michael.hennerich@analog.com>
344 W:      http://wiki.analog.com/AD7142
345 W:      http://ez.analog.com/community/linux-device-drivers
346 S:      Supported
347 F:      drivers/input/misc/ad714x.c
348
349 AD7877 TOUCHSCREEN DRIVER
350 M:      Michael Hennerich <michael.hennerich@analog.com>
351 W:      http://wiki.analog.com/AD7877
352 W:      http://ez.analog.com/community/linux-device-drivers
353 S:      Supported
354 F:      drivers/input/touchscreen/ad7877.c
355
356 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
357 M:      Michael Hennerich <michael.hennerich@analog.com>
358 W:      http://wiki.analog.com/AD7879
359 W:      http://ez.analog.com/community/linux-device-drivers
360 S:      Supported
361 F:      drivers/input/touchscreen/ad7879.c
362
363 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
364 M:      Jiri Kosina <jkosina@suse.cz>
365 S:      Maintained
366
367 ADM1025 HARDWARE MONITOR DRIVER
368 M:      Jean Delvare <jdelvare@suse.de>
369 L:      lm-sensors@lm-sensors.org
370 S:      Maintained
371 F:      Documentation/hwmon/adm1025
372 F:      drivers/hwmon/adm1025.c
373
374 ADM1029 HARDWARE MONITOR DRIVER
375 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
376 L:      lm-sensors@lm-sensors.org
377 S:      Maintained
378 F:      drivers/hwmon/adm1029.c
379
380 ADM8211 WIRELESS DRIVER
381 L:      linux-wireless@vger.kernel.org
382 W:      http://wireless.kernel.org/
383 S:      Orphan
384 F:      drivers/net/wireless/adm8211.*
385
386 ADP1653 FLASH CONTROLLER DRIVER
387 M:      Sakari Ailus <sakari.ailus@iki.fi>
388 L:      linux-media@vger.kernel.org
389 S:      Maintained
390 F:      drivers/media/i2c/adp1653.c
391 F:      include/media/adp1653.h
392
393 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
394 M:      Michael Hennerich <michael.hennerich@analog.com>
395 W:      http://wiki.analog.com/ADP5520
396 W:      http://ez.analog.com/community/linux-device-drivers
397 S:      Supported
398 F:      drivers/mfd/adp5520.c
399 F:      drivers/video/backlight/adp5520_bl.c
400 F:      drivers/leds/leds-adp5520.c
401 F:      drivers/gpio/gpio-adp5520.c
402 F:      drivers/input/keyboard/adp5520-keys.c
403
404 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
405 M:      Michael Hennerich <michael.hennerich@analog.com>
406 W:      http://wiki.analog.com/ADP5588
407 W:      http://ez.analog.com/community/linux-device-drivers
408 S:      Supported
409 F:      drivers/input/keyboard/adp5588-keys.c
410 F:      drivers/gpio/gpio-adp5588.c
411
412 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
413 M:      Michael Hennerich <michael.hennerich@analog.com>
414 W:      http://wiki.analog.com/ADP8860
415 W:      http://ez.analog.com/community/linux-device-drivers
416 S:      Supported
417 F:      drivers/video/backlight/adp8860_bl.c
418
419 ADS1015 HARDWARE MONITOR DRIVER
420 M:      Dirk Eibach <eibach@gdsys.de>
421 L:      lm-sensors@lm-sensors.org
422 S:      Maintained
423 F:      Documentation/hwmon/ads1015
424 F:      drivers/hwmon/ads1015.c
425 F:      include/linux/i2c/ads1015.h
426
427 ADT746X FAN DRIVER
428 M:      Colin Leroy <colin@colino.net>
429 S:      Maintained
430 F:      drivers/macintosh/therm_adt746x.c
431
432 ADT7475 HARDWARE MONITOR DRIVER
433 M:      Jean Delvare <jdelvare@suse.de>
434 L:      lm-sensors@lm-sensors.org
435 S:      Maintained
436 F:      Documentation/hwmon/adt7475
437 F:      drivers/hwmon/adt7475.c
438
439 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
440 M:      Michael Hennerich <michael.hennerich@analog.com>
441 W:      http://wiki.analog.com/ADXL345
442 W:      http://ez.analog.com/community/linux-device-drivers
443 S:      Supported
444 F:      drivers/input/misc/adxl34x.c
445
446 ADVANSYS SCSI DRIVER
447 M:      Matthew Wilcox <matthew@wil.cx>
448 L:      linux-scsi@vger.kernel.org
449 S:      Maintained
450 F:      Documentation/scsi/advansys.txt
451 F:      drivers/scsi/advansys.c
452
453 AEDSP16 DRIVER
454 M:      Riccardo Facchetti <fizban@tin.it>
455 S:      Maintained
456 F:      sound/oss/aedsp16.c
457
458 AF9013 MEDIA DRIVER
459 M:      Antti Palosaari <crope@iki.fi>
460 L:      linux-media@vger.kernel.org
461 W:      http://linuxtv.org/
462 W:      http://palosaari.fi/linux/
463 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
464 T:      git git://linuxtv.org/anttip/media_tree.git
465 S:      Maintained
466 F:      drivers/media/dvb-frontends/af9013*
467
468 AF9033 MEDIA DRIVER
469 M:      Antti Palosaari <crope@iki.fi>
470 L:      linux-media@vger.kernel.org
471 W:      http://linuxtv.org/
472 W:      http://palosaari.fi/linux/
473 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
474 T:      git git://linuxtv.org/anttip/media_tree.git
475 S:      Maintained
476 F:      drivers/media/dvb-frontends/af9033*
477
478 AFFS FILE SYSTEM
479 L:      linux-fsdevel@vger.kernel.org
480 S:      Orphan
481 F:      Documentation/filesystems/affs.txt
482 F:      fs/affs/
483
484 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
485 M:      David Howells <dhowells@redhat.com>
486 L:      linux-afs@lists.infradead.org
487 S:      Supported
488 F:      fs/afs/
489 F:      include/net/af_rxrpc.h
490 F:      net/rxrpc/af_rxrpc.c
491
492 AGPGART DRIVER
493 M:      David Airlie <airlied@linux.ie>
494 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
495 S:      Maintained
496 F:      drivers/char/agp/
497 F:      include/linux/agp*
498 F:      include/uapi/linux/agp*
499
500 AHA152X SCSI DRIVER
501 M:      "Juergen E. Fischer" <fischer@norbit.de>
502 L:      linux-scsi@vger.kernel.org
503 S:      Maintained
504 F:      drivers/scsi/aha152x*
505 F:      drivers/scsi/pcmcia/aha152x*
506
507 AIC7XXX / AIC79XX SCSI DRIVER
508 M:      Hannes Reinecke <hare@suse.de>
509 L:      linux-scsi@vger.kernel.org
510 S:      Maintained
511 F:      drivers/scsi/aic7xxx/
512
513 AIMSLAB FM RADIO RECEIVER DRIVER
514 M:      Hans Verkuil <hverkuil@xs4all.nl>
515 L:      linux-media@vger.kernel.org
516 T:      git git://linuxtv.org/media_tree.git
517 W:      http://linuxtv.org
518 S:      Maintained
519 F:      drivers/media/radio/radio-aimslab*
520
521 AIO
522 M:      Benjamin LaHaise <bcrl@kvack.org>
523 L:      linux-aio@kvack.org
524 S:      Supported
525 F:      fs/aio.c
526 F:      include/linux/*aio*.h
527
528 AIRSPY MEDIA DRIVER
529 M:      Antti Palosaari <crope@iki.fi>
530 L:      linux-media@vger.kernel.org
531 W:      http://linuxtv.org/
532 W:      http://palosaari.fi/linux/
533 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
534 T:      git git://linuxtv.org/anttip/media_tree.git
535 S:      Maintained
536 F:      drivers/media/usb/airspy/
537
538 ALCATEL SPEEDTOUCH USB DRIVER
539 M:      Duncan Sands <duncan.sands@free.fr>
540 L:      linux-usb@vger.kernel.org
541 W:      http://www.linux-usb.org/SpeedTouch/
542 S:      Maintained
543 F:      drivers/usb/atm/speedtch.c
544 F:      drivers/usb/atm/usbatm.c
545
546 ALCHEMY AU1XX0 MMC DRIVER
547 M:      Manuel Lauss <manuel.lauss@gmail.com>
548 S:      Maintained
549 F:      drivers/mmc/host/au1xmmc.c
550
551 ALI1563 I2C DRIVER
552 M:      Rudolf Marek <r.marek@assembler.cz>
553 L:      linux-i2c@vger.kernel.org
554 S:      Maintained
555 F:      Documentation/i2c/busses/i2c-ali1563
556 F:      drivers/i2c/busses/i2c-ali1563.c
557
558 ALPHA PORT
559 M:      Richard Henderson <rth@twiddle.net>
560 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
561 M:      Matt Turner <mattst88@gmail.com>
562 S:      Odd Fixes
563 L:      linux-alpha@vger.kernel.org
564 F:      arch/alpha/
565
566 ALTERA MAILBOX DRIVER
567 M:      Ley Foon Tan <lftan@altera.com>
568 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
569 S:      Maintained
570 F:      drivers/mailbox/mailbox-altera.c
571
572 ALTERA PIO DRIVER
573 M:      Tien Hock Loh <thloh@altera.com>
574 L:      linux-gpio@vger.kernel.org
575 S:      Maintained
576 F:      drivers/gpio/gpio-altera.c
577
578 ALTERA TRIPLE SPEED ETHERNET DRIVER
579 M:      Vince Bridgers <vbridger@opensource.altera.com>
580 L:      netdev@vger.kernel.org
581 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
582 S:      Maintained
583 F:      drivers/net/ethernet/altera/
584
585 ALTERA UART/JTAG UART SERIAL DRIVERS
586 M:      Tobias Klauser <tklauser@distanz.ch>
587 L:      linux-serial@vger.kernel.org
588 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
589 S:      Maintained
590 F:      drivers/tty/serial/altera_uart.c
591 F:      drivers/tty/serial/altera_jtaguart.c
592 F:      include/linux/altera_uart.h
593 F:      include/linux/altera_jtaguart.h
594
595 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
596 M:      Tom Lendacky <thomas.lendacky@amd.com>
597 L:      linux-crypto@vger.kernel.org
598 S:      Supported
599 F:      drivers/crypto/ccp/
600 F:      include/linux/ccp.h
601
602 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
603 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
604 L:      lm-sensors@lm-sensors.org
605 S:      Maintained
606 F:      Documentation/hwmon/fam15h_power
607 F:      drivers/hwmon/fam15h_power.c
608
609 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
610 M:      Thomas Dahlmann <dahlmann.thomas@arcor.de>
611 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
612 S:      Supported
613 F:      drivers/usb/gadget/udc/amd5536udc.*
614
615 AMD GEODE PROCESSOR/CHIPSET SUPPORT
616 P:      Andres Salomon <dilinger@queued.net>
617 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
618 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
619 S:      Supported
620 F:      drivers/char/hw_random/geode-rng.c
621 F:      drivers/crypto/geode*
622 F:      drivers/video/fbdev/geode/
623 F:      arch/x86/include/asm/geode.h
624
625 AMD IOMMU (AMD-VI)
626 M:      Joerg Roedel <joro@8bytes.org>
627 L:      iommu@lists.linux-foundation.org
628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
629 S:      Maintained
630 F:      drivers/iommu/amd_iommu*.[ch]
631 F:      include/linux/amd-iommu.h
632
633 AMD KFD
634 M:      Oded Gabbay <oded.gabbay@amd.com>
635 L:      dri-devel@lists.freedesktop.org
636 T:      git git://people.freedesktop.org/~gabbayo/linux.git
637 S:      Supported
638 F:      drivers/gpu/drm/amd/amdkfd/
639 F:      drivers/gpu/drm/amd/include/cik_structs.h
640 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
641 F:      drivers/gpu/drm/radeon/radeon_kfd.c
642 F:      drivers/gpu/drm/radeon/radeon_kfd.h
643 F:      include/uapi/linux/kfd_ioctl.h
644
645 AMD MICROCODE UPDATE SUPPORT
646 M:      Borislav Petkov <bp@alien8.de>
647 S:      Maintained
648 F:      arch/x86/kernel/cpu/microcode/amd*
649
650 AMD XGBE DRIVER
651 M:      Tom Lendacky <thomas.lendacky@amd.com>
652 L:      netdev@vger.kernel.org
653 S:      Supported
654 F:      drivers/net/ethernet/amd/xgbe/
655 F:      drivers/net/phy/amd-xgbe-phy.c
656
657 AMS (Apple Motion Sensor) DRIVER
658 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
659 S:      Supported
660 F:      drivers/macintosh/ams/
661
662 AMSO1100 RNIC DRIVER
663 M:      Tom Tucker <tom@opengridcomputing.com>
664 M:      Steve Wise <swise@opengridcomputing.com>
665 L:      linux-rdma@vger.kernel.org
666 S:      Maintained
667 F:      drivers/infiniband/hw/amso1100/
668
669 ANALOG DEVICES INC AD9389B DRIVER
670 M:      Hans Verkuil <hans.verkuil@cisco.com>
671 L:      linux-media@vger.kernel.org
672 S:      Maintained
673 F:      drivers/media/i2c/ad9389b*
674
675 ANALOG DEVICES INC ADV7180 DRIVER
676 M:      Lars-Peter Clausen <lars@metafoo.de>
677 L:      linux-media@vger.kernel.org
678 W:      http://ez.analog.com/community/linux-device-drivers
679 S:      Supported
680 F:      drivers/media/i2c/adv7180.c
681
682 ANALOG DEVICES INC ADV7511 DRIVER
683 M:      Hans Verkuil <hans.verkuil@cisco.com>
684 L:      linux-media@vger.kernel.org
685 S:      Maintained
686 F:      drivers/media/i2c/adv7511*
687
688 ANALOG DEVICES INC ADV7604 DRIVER
689 M:      Hans Verkuil <hans.verkuil@cisco.com>
690 L:      linux-media@vger.kernel.org
691 S:      Maintained
692 F:      drivers/media/i2c/adv7604*
693
694 ANALOG DEVICES INC ADV7842 DRIVER
695 M:      Hans Verkuil <hans.verkuil@cisco.com>
696 L:      linux-media@vger.kernel.org
697 S:      Maintained
698 F:      drivers/media/i2c/adv7842*
699
700 ANALOG DEVICES INC ASOC CODEC DRIVERS
701 M:      Lars-Peter Clausen <lars@metafoo.de>
702 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
703 W:      http://wiki.analog.com/
704 W:      http://ez.analog.com/community/linux-device-drivers
705 S:      Supported
706 F:      sound/soc/codecs/adau*
707 F:      sound/soc/codecs/adav*
708 F:      sound/soc/codecs/ad1*
709 F:      sound/soc/codecs/ad7*
710 F:      sound/soc/codecs/ssm*
711 F:      sound/soc/codecs/sigmadsp.*
712
713 ANALOG DEVICES INC ASOC DRIVERS
714 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
715 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
716 W:      http://blackfin.uclinux.org/
717 S:      Supported
718 F:      sound/soc/blackfin/*
719
720 ANALOG DEVICES INC IIO DRIVERS
721 M:      Lars-Peter Clausen <lars@metafoo.de>
722 M:      Michael Hennerich <Michael.Hennerich@analog.com>
723 W:      http://wiki.analog.com/
724 W:      http://ez.analog.com/community/linux-device-drivers
725 S:      Supported
726 F:      drivers/iio/*/ad*
727 X:      drivers/iio/*/adjd*
728 F:      drivers/staging/iio/*/ad*
729 F:      staging/iio/trigger/iio-trig-bfin-timer.c
730
731 ANDROID DRIVERS
732 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
733 M:      Arve HjønnevĂ¥g <arve@android.com>
734 M:      Riley Andrews <riandrews@android.com>
735 T:      git git://git.kernel.org/pub/scm/linux/kernel/gregkh/staging.git
736 L:      devel@driverdev.osuosl.org
737 S:      Supported
738 F:      drivers/android/
739 F:      drivers/staging/android/
740
741 AOA (Apple Onboard Audio) ALSA DRIVER
742 M:      Johannes Berg <johannes@sipsolutions.net>
743 L:      linuxppc-dev@lists.ozlabs.org
744 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
745 S:      Maintained
746 F:      sound/aoa/
747
748 APM DRIVER
749 M:      Jiri Kosina <jkosina@suse.cz>
750 S:      Odd fixes
751 F:      arch/x86/kernel/apm_32.c
752 F:      include/linux/apm_bios.h
753 F:      include/uapi/linux/apm_bios.h
754 F:      drivers/char/apm-emulation.c
755
756 APPLE BCM5974 MULTITOUCH DRIVER
757 M:      Henrik Rydberg <rydberg@bitmath.org>
758 L:      linux-input@vger.kernel.org
759 S:      Odd fixes
760 F:      drivers/input/mouse/bcm5974.c
761
762 APPLE SMC DRIVER
763 M:      Henrik Rydberg <rydberg@bitmath.org>
764 L:      lm-sensors@lm-sensors.org
765 S:      Odd fixes
766 F:      drivers/hwmon/applesmc.c
767
768 APPLETALK NETWORK LAYER
769 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
770 S:      Maintained
771 F:      drivers/net/appletalk/
772 F:      net/appletalk/
773
774 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
775 M:      Iyappan Subramanian <isubramanian@apm.com>
776 M:      Keyur Chudgar <kchudgar@apm.com>
777 S:      Supported
778 F:      drivers/net/ethernet/apm/xgene/
779 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
780
781 APTINA CAMERA SENSOR PLL
782 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
783 L:      linux-media@vger.kernel.org
784 S:      Maintained
785 F:      drivers/media/i2c/aptina-pll.*
786
787 ARC FRAMEBUFFER DRIVER
788 M:      Jaya Kumar <jayalk@intworks.biz>
789 S:      Maintained
790 F:      drivers/video/fbdev/arcfb.c
791 F:      drivers/video/fbdev/core/fb_defio.c
792
793 ARM MFM AND FLOPPY DRIVERS
794 M:      Ian Molton <spyro@f2s.com>
795 S:      Maintained
796 F:      arch/arm/lib/floppydma.S
797 F:      arch/arm/include/asm/floppy.h
798
799 ARM PMU PROFILING AND DEBUGGING
800 M:      Will Deacon <will.deacon@arm.com>
801 S:      Maintained
802 F:      arch/arm/kernel/perf_event*
803 F:      arch/arm/oprofile/common.c
804 F:      arch/arm/include/asm/pmu.h
805 F:      arch/arm/kernel/hw_breakpoint.c
806 F:      arch/arm/include/asm/hw_breakpoint.h
807
808 ARM PORT
809 M:      Russell King <linux@arm.linux.org.uk>
810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
811 W:      http://www.arm.linux.org.uk/
812 S:      Maintained
813 F:      arch/arm/
814
815 ARM SUB-ARCHITECTURES
816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
817 S:      Maintained
818 F:      arch/arm/mach-*/
819 F:      arch/arm/plat-*/
820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
821
822 ARM PRIMECELL AACI PL041 DRIVER
823 M:      Russell King <linux@arm.linux.org.uk>
824 S:      Maintained
825 F:      sound/arm/aaci.*
826
827 ARM PRIMECELL CLCD PL110 DRIVER
828 M:      Russell King <linux@arm.linux.org.uk>
829 S:      Maintained
830 F:      drivers/video/fbdev/amba-clcd.*
831
832 ARM PRIMECELL KMI PL050 DRIVER
833 M:      Russell King <linux@arm.linux.org.uk>
834 S:      Maintained
835 F:      drivers/input/serio/ambakmi.*
836 F:      include/linux/amba/kmi.h
837
838 ARM PRIMECELL MMCI PL180/1 DRIVER
839 M:      Russell King <linux@arm.linux.org.uk>
840 S:      Maintained
841 F:      drivers/mmc/host/mmci.*
842 F:      include/linux/amba/mmci.h
843
844 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
845 M:      Russell King <linux@arm.linux.org.uk>
846 S:      Maintained
847 F:      drivers/tty/serial/amba-pl01*.c
848 F:      include/linux/amba/serial.h
849
850 ARM PRIMECELL BUS SUPPORT
851 M:      Russell King <linux@arm.linux.org.uk>
852 S:      Maintained
853 F:      drivers/amba/
854 F:      include/linux/amba/bus.h
855
856 ARM/ADS SPHERE MACHINE SUPPORT
857 M:      Lennert Buytenhek <kernel@wantstofly.org>
858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
859 S:      Maintained
860
861 ARM/AFEB9260 MACHINE SUPPORT
862 M:      Sergey Lapin <slapin@ossfans.org>
863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
864 S:      Maintained
865
866 ARM/AJECO 1ARM MACHINE SUPPORT
867 M:      Lennert Buytenhek <kernel@wantstofly.org>
868 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
869 S:      Maintained
870
871 ARM/Allwinner A1X SoC support
872 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
874 S:      Maintained
875 N:      sun[x4567]i
876
877 ARM/Allwinner SoC Clock Support
878 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
879 S:      Maintained
880 F:      drivers/clk/sunxi/
881
882 ARM/Amlogic MesonX SoC support
883 M:      Carlo Caione <carlo@caione.org>
884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
885 S:      Maintained
886 F:      drivers/media/rc/meson-ir.c
887 N:      meson[x68]
888
889 ARM/Annapurna Labs ALPINE ARCHITECTURE
890 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
891 S:      Maintained
892 F:      arch/arm/mach-alpine/
893
894 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
895 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
896 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
897 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
899 W:      http://www.linux4sam.org
900 S:      Supported
901 F:      arch/arm/mach-at91/
902 F:      include/soc/at91/
903 F:      arch/arm/boot/dts/at91*.dts
904 F:      arch/arm/boot/dts/at91*.dtsi
905 F:      arch/arm/boot/dts/sama*.dts
906 F:      arch/arm/boot/dts/sama*.dtsi
907 F:      arch/arm/include/debug/at91.S
908
909 ARM/ATMEL AT91 Clock Support
910 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
911 S:      Maintained
912 F:      drivers/clk/at91
913
914 ARM/CALXEDA HIGHBANK ARCHITECTURE
915 M:      Rob Herring <robh@kernel.org>
916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917 S:      Maintained
918 F:      arch/arm/mach-highbank/
919
920 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
921 M:      Krzysztof Halasa <khalasa@piap.pl>
922 S:      Maintained
923 F:      arch/arm/mach-cns3xxx/
924
925 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
926 M:      Alexander Shiyan <shc_work@mail.ru>
927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
928 S:      Odd Fixes
929 N:      clps711x
930
931 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
932 M:      Hartley Sweeten <hsweeten@visionengravers.com>
933 M:      Ryan Mallon <rmallon@gmail.com>
934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
935 S:      Maintained
936 F:      arch/arm/mach-ep93xx/
937 F:      arch/arm/mach-ep93xx/include/mach/
938
939 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
940 M:      Lennert Buytenhek <kernel@wantstofly.org>
941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
942 S:      Maintained
943
944 ARM/CLKDEV SUPPORT
945 M:      Russell King <linux@arm.linux.org.uk>
946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
947 S:      Maintained
948 F:      arch/arm/include/asm/clkdev.h
949 F:      drivers/clk/clkdev.c
950
951 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
952 M:      Mike Rapoport <mike@compulab.co.il>
953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
954 S:      Maintained
955
956 ARM/CONTEC MICRO9 MACHINE SUPPORT
957 M:      Hubert Feurstein <hubert.feurstein@contec.at>
958 S:      Maintained
959 F:      arch/arm/mach-ep93xx/micro9.c
960
961 ARM/CORESIGHT FRAMEWORK AND DRIVERS
962 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
963 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
964 S:      Maintained
965 F:      drivers/hwtracing/coresight/*
966 F:      Documentation/trace/coresight.txt
967 F:      Documentation/devicetree/bindings/arm/coresight.txt
968 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
969
970 ARM/CORGI MACHINE SUPPORT
971 M:      Richard Purdie <rpurdie@rpsys.net>
972 S:      Maintained
973
974 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
975 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
977 T:      git git://git.berlios.de/gemini-board
978 S:      Maintained
979 F:      arch/arm/mach-gemini/
980
981 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
982 M:      Barry Song <baohua@kernel.org>
983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
985 S:      Maintained
986 F:      arch/arm/mach-prima2/
987 F:      drivers/clk/sirf/
988 F:      drivers/clocksource/timer-prima2.c
989 F:      drivers/clocksource/timer-atlas7.c
990 N:      [^a-z]sirf
991
992 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
993 M:      Baruch Siach <baruch@tkos.co.il>
994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
995 S:      Maintained
996 N:      digicolor
997
998 ARM/EBSA110 MACHINE SUPPORT
999 M:      Russell King <linux@arm.linux.org.uk>
1000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1001 W:      http://www.arm.linux.org.uk/
1002 S:      Maintained
1003 F:      arch/arm/mach-ebsa110/
1004 F:      drivers/net/ethernet/amd/am79c961a.*
1005
1006 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1007 M:      Uwe Kleine-König <kernel@pengutronix.de>
1008 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1009 S:      Maintained
1010 N:      efm32
1011
1012 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1013 M:      Daniel Ribeiro <drwyrm@gmail.com>
1014 M:      Stefan Schmidt <stefan@openezx.org>
1015 M:      Harald Welte <laforge@openezx.org>
1016 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1017 W:      http://www.openezx.org/
1018 S:      Maintained
1019 T:      topgit git://git.openezx.org/openezx.git
1020 F:      arch/arm/mach-pxa/ezx.c
1021
1022 ARM/FARADAY FA526 PORT
1023 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1025 S:      Maintained
1026 T:      git git://git.berlios.de/gemini-board
1027 F:      arch/arm/mm/*-fa*
1028
1029 ARM/FOOTBRIDGE ARCHITECTURE
1030 M:      Russell King <linux@arm.linux.org.uk>
1031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1032 W:      http://www.arm.linux.org.uk/
1033 S:      Maintained
1034 F:      arch/arm/include/asm/hardware/dec21285.h
1035 F:      arch/arm/mach-footbridge/
1036
1037 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1038 M:      Shawn Guo <shawn.guo@linaro.org>
1039 M:      Sascha Hauer <kernel@pengutronix.de>
1040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1041 S:      Maintained
1042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1043 F:      arch/arm/mach-imx/
1044 F:      arch/arm/mach-mxs/
1045 F:      arch/arm/boot/dts/imx*
1046 F:      arch/arm/configs/imx*_defconfig
1047
1048 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1049 M:      Shawn Guo <shawn.guo@linaro.org>
1050 M:      Sascha Hauer <kernel@pengutronix.de>
1051 R:      Stefan Agner <stefan@agner.ch>
1052 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1053 S:      Maintained
1054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1055 F:      arch/arm/mach-imx/*vf610*
1056 F:      arch/arm/boot/dts/vf*
1057
1058 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1059 M:      Lennert Buytenhek <kernel@wantstofly.org>
1060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1061 S:      Maintained
1062
1063 ARM/GUMSTIX MACHINE SUPPORT
1064 M:      Steve Sakoman <sakoman@gmail.com>
1065 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1066 S:      Maintained
1067
1068 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1069 M:      Philipp Zabel <philipp.zabel@gmail.com>
1070 M:      Paul Parsons <lost.distance@yahoo.com>
1071 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1072 S:      Maintained
1073 F:      arch/arm/mach-pxa/hx4700.c
1074 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1075 F:      sound/soc/pxa/hx4700.c
1076
1077 ARM/HISILICON SOC SUPPORT
1078 M:      Wei Xu <xuwei5@hisilicon.com>
1079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1080 W:      http://www.hisilicon.com
1081 S:      Supported
1082 T:      git git://github.com/hisilicon/linux-hisi.git
1083 F:      arch/arm/mach-hisi/
1084
1085 ARM/HP JORNADA 7XX MACHINE SUPPORT
1086 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1087 W:      www.jlime.com
1088 S:      Maintained
1089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1090 F:      arch/arm/mach-sa1100/jornada720.c
1091 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1092
1093 ARM/IGEP MACHINE SUPPORT
1094 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1095 M:      Javier Martinez Canillas <javier@dowhile0.org>
1096 L:      linux-omap@vger.kernel.org
1097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1098 S:      Maintained
1099 F:      arch/arm/boot/dts/omap3-igep*
1100
1101 ARM/INCOME PXA270 SUPPORT
1102 M:      Marek Vasut <marek.vasut@gmail.com>
1103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1104 S:      Maintained
1105 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1106
1107 ARM/INTEL IOP32X ARM ARCHITECTURE
1108 M:      Lennert Buytenhek <kernel@wantstofly.org>
1109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1110 S:      Maintained
1111
1112 ARM/INTEL IOP33X ARM ARCHITECTURE
1113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1114 S:      Orphan
1115
1116 ARM/INTEL IOP13XX ARM ARCHITECTURE
1117 M:      Lennert Buytenhek <kernel@wantstofly.org>
1118 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1119 S:      Maintained
1120
1121 ARM/INTEL IQ81342EX MACHINE SUPPORT
1122 M:      Lennert Buytenhek <kernel@wantstofly.org>
1123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1124 S:      Maintained
1125
1126 ARM/INTEL IXDP2850 MACHINE SUPPORT
1127 M:      Lennert Buytenhek <kernel@wantstofly.org>
1128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1129 S:      Maintained
1130
1131 ARM/INTEL IXP4XX ARM ARCHITECTURE
1132 M:      Imre Kaloz <kaloz@openwrt.org>
1133 M:      Krzysztof Halasa <khalasa@piap.pl>
1134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135 S:      Maintained
1136 F:      arch/arm/mach-ixp4xx/
1137
1138 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1139 M:      Jonathan Cameron <jic23@cam.ac.uk>
1140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1141 S:      Maintained
1142 F:      arch/arm/mach-pxa/stargate2.c
1143 F:      drivers/pcmcia/pxa2xx_stargate2.c
1144
1145 ARM/INTEL XSC3 (MANZANO) ARM CORE
1146 M:      Lennert Buytenhek <kernel@wantstofly.org>
1147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1148 S:      Maintained
1149
1150 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1151 M:      Lennert Buytenhek <kernel@wantstofly.org>
1152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1153 S:      Maintained
1154
1155 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1156 M:      Santosh Shilimkar <ssantosh@kernel.org>
1157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1158 S:      Maintained
1159 F:      arch/arm/mach-keystone/
1160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1161
1162 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1163 M:      Santosh Shilimkar <ssantosh@kernel.org>
1164 L:      linux-kernel@vger.kernel.org
1165 S:      Maintained
1166 F:      drivers/clk/keystone/
1167
1168 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1169 M:      Santosh Shilimkar <ssantosh@kernel.org>
1170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1171 L:      linux-kernel@vger.kernel.org
1172 S:      Maintained
1173 F:      drivers/clocksource/timer-keystone.c
1174
1175 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1176 M:      Santosh Shilimkar <ssantosh@kernel.org>
1177 L:      linux-kernel@vger.kernel.org
1178 S:      Maintained
1179 F:      drivers/power/reset/keystone-reset.c
1180
1181 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1182 M:      Santosh Shilimkar <ssantosh@kernel.org>
1183 L:      linux-kernel@vger.kernel.org
1184 S:      Maintained
1185 F:      drivers/memory/*emif*
1186
1187 ARM/LOGICPD PXA270 MACHINE SUPPORT
1188 M:      Lennert Buytenhek <kernel@wantstofly.org>
1189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1190 S:      Maintained
1191
1192 ARM/MAGICIAN MACHINE SUPPORT
1193 M:      Philipp Zabel <philipp.zabel@gmail.com>
1194 S:      Maintained
1195
1196 ARM/Marvell Armada 370 and Armada XP SOC support
1197 M:      Jason Cooper <jason@lakedaemon.net>
1198 M:      Andrew Lunn <andrew@lunn.ch>
1199 M:      Gregory Clement <gregory.clement@free-electrons.com>
1200 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202 S:      Maintained
1203 F:      arch/arm/mach-mvebu/
1204 F:      drivers/rtc/rtc-armada38x.c
1205
1206 ARM/Marvell Berlin SoC support
1207 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1209 S:      Maintained
1210 F:      arch/arm/mach-berlin/
1211
1212 ARM/Marvell Dove/MV78xx0/Orion SOC support
1213 M:      Jason Cooper <jason@lakedaemon.net>
1214 M:      Andrew Lunn <andrew@lunn.ch>
1215 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1216 M:      Gregory Clement <gregory.clement@free-electrons.com>
1217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218 S:      Maintained
1219 F:      arch/arm/mach-dove/
1220 F:      arch/arm/mach-mv78xx0/
1221 F:      arch/arm/mach-orion5x/
1222 F:      arch/arm/plat-orion/
1223
1224 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1225 M:      Alexander Clouter <alex@digriz.org.uk>
1226 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1227 W:      http://www.digriz.org.uk/ts78xx/kernel
1228 S:      Maintained
1229 F:      arch/arm/mach-orion5x/ts78xx-*
1230
1231 ARM/Mediatek SoC support
1232 M:      Matthias Brugger <matthias.bgg@gmail.com>
1233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1235 S:      Maintained
1236 F:      arch/arm/boot/dts/mt6*
1237 F:      arch/arm/boot/dts/mt8*
1238 F:      arch/arm/mach-mediatek/
1239 N:      mtk
1240 K:      mediatek
1241
1242 ARM/MICREL KS8695 ARCHITECTURE
1243 M:      Greg Ungerer <gerg@uclinux.org>
1244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1245 F:      arch/arm/mach-ks8695/
1246 S:      Odd Fixes
1247
1248 ARM/MIOA701 MACHINE SUPPORT
1249 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251 F:      arch/arm/mach-pxa/mioa701.c
1252 S:      Maintained
1253
1254 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1255 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1256 S:      Maintained
1257
1258 ARM/NOMADIK ARCHITECTURE
1259 M:      Alessandro Rubini <rubini@unipv.it>
1260 M:      Linus Walleij <linus.walleij@linaro.org>
1261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1262 S:      Maintained
1263 F:      arch/arm/mach-nomadik/
1264 F:      drivers/pinctrl/nomadik/
1265 F:      drivers/i2c/busses/i2c-nomadik.c
1266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1267
1268 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1269 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1270 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1271 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1272 S:      Supported
1273
1274 ARM/TOSA MACHINE SUPPORT
1275 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1276 M:      Dirk Opfer <dirk@opfer-online.de>
1277 S:      Maintained
1278
1279 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1280 M:      Marek Vasut <marek.vasut@gmail.com>
1281 L:      linux-arm-kernel@lists.infradead.org
1282 W:      http://hackndev.com
1283 S:      Maintained
1284 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1285 F:      arch/arm/mach-pxa/palmtx.c
1286 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1287 F:      arch/arm/mach-pxa/palmt5.c
1288 F:      arch/arm/mach-pxa/include/mach/palmld.h
1289 F:      arch/arm/mach-pxa/palmld.c
1290 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1291 F:      arch/arm/mach-pxa/palmte2.c
1292 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1293 F:      arch/arm/mach-pxa/palmtc.c
1294
1295 ARM/PALM TREO SUPPORT
1296 M:      Tomas Cech <sleep_walker@suse.cz>
1297 L:      linux-arm-kernel@lists.infradead.org
1298 W:      http://hackndev.com
1299 S:      Maintained
1300 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1301 F:      arch/arm/mach-pxa/palmtreo.c
1302
1303 ARM/PALMZ72 SUPPORT
1304 M:      Sergey Lapin <slapin@ossfans.org>
1305 L:      linux-arm-kernel@lists.infradead.org
1306 W:      http://hackndev.com
1307 S:      Maintained
1308 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1309 F:      arch/arm/mach-pxa/palmz72.c
1310
1311 ARM/PLEB SUPPORT
1312 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1313 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1314 S:      Maintained
1315
1316 ARM/PT DIGITAL BOARD PORT
1317 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1319 W:      http://www.arm.linux.org.uk/
1320 S:      Maintained
1321
1322 ARM/QUALCOMM SUPPORT
1323 M:      Kumar Gala <galak@codeaurora.org>
1324 M:      Andy Gross <agross@codeaurora.org>
1325 M:      David Brown <davidb@codeaurora.org>
1326 L:      linux-arm-msm@vger.kernel.org
1327 L:      linux-soc@vger.kernel.org
1328 S:      Maintained
1329 F:      arch/arm/mach-qcom/
1330 F:      drivers/soc/qcom/
1331 F:      drivers/tty/serial/msm_serial.h
1332 F:      drivers/tty/serial/msm_serial.c
1333 F:      drivers/*/pm8???-*
1334 F:      drivers/mfd/ssbi.c
1335 F:      drivers/firmware/qcom_scm.c
1336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1337
1338 ARM/RADISYS ENP2611 MACHINE SUPPORT
1339 M:      Lennert Buytenhek <kernel@wantstofly.org>
1340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1341 S:      Maintained
1342
1343 ARM/RISCPC ARCHITECTURE
1344 M:      Russell King <linux@arm.linux.org.uk>
1345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1346 W:      http://www.arm.linux.org.uk/
1347 S:      Maintained
1348 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1349 F:      arch/arm/include/asm/hardware/ioc.h
1350 F:      arch/arm/include/asm/hardware/iomd.h
1351 F:      arch/arm/include/asm/hardware/memc.h
1352 F:      arch/arm/mach-rpc/
1353 F:      drivers/net/ethernet/8390/etherh.c
1354 F:      drivers/net/ethernet/i825xx/ether1*
1355 F:      drivers/net/ethernet/seeq/ether3*
1356 F:      drivers/scsi/arm/
1357
1358 ARM/Rockchip SoC support
1359 M:      Heiko Stuebner <heiko@sntech.de>
1360 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1361 L:      linux-rockchip@lists.infradead.org
1362 S:      Maintained
1363 F:      arch/arm/boot/dts/rk3*
1364 F:      arch/arm/mach-rockchip/
1365 F:      drivers/clk/rockchip/
1366 F:      drivers/i2c/busses/i2c-rk3x.c
1367 F:      drivers/*/*rockchip*
1368 F:      drivers/*/*/*rockchip*
1369 F:      sound/soc/rockchip/
1370 N:      rockchip
1371
1372 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1373 M:      Kukjin Kim <kgene@kernel.org>
1374 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1375 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1376 S:      Maintained
1377 F:      arch/arm/boot/dts/s3c*
1378 F:      arch/arm/boot/dts/exynos*
1379 F:      arch/arm/plat-samsung/
1380 F:      arch/arm/mach-s3c24*/
1381 F:      arch/arm/mach-s3c64xx/
1382 F:      arch/arm/mach-s5p*/
1383 F:      arch/arm/mach-exynos*/
1384 F:      drivers/*/*s3c2410*
1385 F:      drivers/*/*/*s3c2410*
1386 F:      drivers/spi/spi-s3c*
1387 F:      sound/soc/samsung/*
1388 N:      exynos
1389
1390 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1391 M:      Kyungmin Park <kyungmin.park@samsung.com>
1392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393 S:      Maintained
1394 F:      arch/arm/mach-s5pv210/
1395
1396 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1397 M:      Kyungmin Park <kyungmin.park@samsung.com>
1398 M:      Kamil Debski <k.debski@samsung.com>
1399 L:      linux-arm-kernel@lists.infradead.org
1400 L:      linux-media@vger.kernel.org
1401 S:      Maintained
1402 F:      drivers/media/platform/s5p-g2d/
1403
1404 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1405 M:      Kyungmin Park <kyungmin.park@samsung.com>
1406 M:      Kamil Debski <k.debski@samsung.com>
1407 M:      Jeongtae Park <jtp.park@samsung.com>
1408 L:      linux-arm-kernel@lists.infradead.org
1409 L:      linux-media@vger.kernel.org
1410 S:      Maintained
1411 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1412 F:      drivers/media/platform/s5p-mfc/
1413
1414 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1415 M:      Kyungmin Park <kyungmin.park@samsung.com>
1416 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1417 L:      linux-arm-kernel@lists.infradead.org
1418 L:      linux-media@vger.kernel.org
1419 S:      Maintained
1420 F:      drivers/media/platform/s5p-tv/
1421
1422 ARM/SHMOBILE ARM ARCHITECTURE
1423 M:      Simon Horman <horms@verge.net.au>
1424 M:      Magnus Damm <magnus.damm@gmail.com>
1425 L:      linux-sh@vger.kernel.org
1426 W:      http://oss.renesas.com
1427 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1429 S:      Supported
1430 F:      arch/arm/boot/dts/emev2*
1431 F:      arch/arm/boot/dts/r7s*
1432 F:      arch/arm/boot/dts/r8a*
1433 F:      arch/arm/boot/dts/sh*
1434 F:      arch/arm/configs/armadillo800eva_defconfig
1435 F:      arch/arm/configs/bockw_defconfig
1436 F:      arch/arm/configs/kzm9g_defconfig
1437 F:      arch/arm/configs/marzen_defconfig
1438 F:      arch/arm/configs/shmobile_defconfig
1439 F:      arch/arm/include/debug/renesas-scif.S
1440 F:      arch/arm/mach-shmobile/
1441 F:      drivers/sh/
1442
1443 ARM/SOCFPGA ARCHITECTURE
1444 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1445 S:      Maintained
1446 F:      arch/arm/mach-socfpga/
1447 F:      arch/arm/boot/dts/socfpga*
1448 F:      arch/arm/configs/socfpga_defconfig
1449 W:      http://www.rocketboards.org
1450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1451
1452 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1453 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1454 S:      Maintained
1455 F:      drivers/clk/socfpga/
1456
1457 ARM/SOCFPGA EDAC SUPPORT
1458 M:      Thor Thayer <tthayer@opensource.altera.com>
1459 S:      Maintained
1460 F:      drivers/edac/altera_edac.
1461
1462 ARM/STI ARCHITECTURE
1463 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1464 M:      Maxime Coquelin <maxime.coquelin@st.com>
1465 M:      Patrice Chotard <patrice.chotard@st.com>
1466 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1467 L:      kernel@stlinux.com
1468 W:      http://www.stlinux.com
1469 S:      Maintained
1470 F:      arch/arm/mach-sti/
1471 F:      arch/arm/boot/dts/sti*
1472 F:      drivers/clocksource/arm_global_timer.c
1473 F:      drivers/i2c/busses/i2c-st.c
1474 F:      drivers/media/rc/st_rc.c
1475 F:      drivers/mmc/host/sdhci-st.c
1476 F:      drivers/phy/phy-miphy28lp.c
1477 F:      drivers/phy/phy-miphy365x.c
1478 F:      drivers/phy/phy-stih407-usb.c
1479 F:      drivers/phy/phy-stih41x-usb.c
1480 F:      drivers/pinctrl/pinctrl-st.c
1481 F:      drivers/reset/sti/
1482 F:      drivers/tty/serial/st-asc.c
1483 F:      drivers/usb/dwc3/dwc3-st.c
1484 F:      drivers/usb/host/ehci-st.c
1485 F:      drivers/usb/host/ohci-st.c
1486 F:      drivers/ata/ahci_st.c
1487
1488 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1489 M:      Lennert Buytenhek <kernel@wantstofly.org>
1490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1491 S:      Maintained
1492
1493 ARM/TETON BGA MACHINE SUPPORT
1494 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1496 S:      Maintained
1497
1498 ARM/THECUS N2100 MACHINE SUPPORT
1499 M:      Lennert Buytenhek <kernel@wantstofly.org>
1500 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1501 S:      Maintained
1502
1503 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1504 M:      Wan ZongShun <mcuos.com@gmail.com>
1505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1506 W:      http://www.mcuos.com
1507 S:      Maintained
1508 F:      arch/arm/mach-w90x900/
1509 F:      drivers/input/keyboard/w90p910_keypad.c
1510 F:      drivers/input/touchscreen/w90p910_ts.c
1511 F:      drivers/watchdog/nuc900_wdt.c
1512 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1513 F:      drivers/mtd/nand/nuc900_nand.c
1514 F:      drivers/rtc/rtc-nuc900.c
1515 F:      drivers/spi/spi-nuc900.c
1516 F:      drivers/usb/host/ehci-w90x900.c
1517 F:      drivers/video/fbdev/nuc900fb.c
1518
1519 ARM/U300 MACHINE SUPPORT
1520 M:      Linus Walleij <linus.walleij@linaro.org>
1521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1522 S:      Supported
1523 F:      arch/arm/mach-u300/
1524 F:      drivers/clocksource/timer-u300.c
1525 F:      drivers/i2c/busses/i2c-stu300.c
1526 F:      drivers/rtc/rtc-coh901331.c
1527 F:      drivers/watchdog/coh901327_wdt.c
1528 F:      drivers/dma/coh901318*
1529 F:      drivers/mfd/ab3100*
1530 F:      drivers/rtc/rtc-ab3100.c
1531 F:      drivers/rtc/rtc-coh901331.c
1532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1533
1534 ARM/Ux500 ARM ARCHITECTURE
1535 M:      Linus Walleij <linus.walleij@linaro.org>
1536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1537 S:      Maintained
1538 F:      arch/arm/mach-ux500/
1539 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1540 F:      drivers/dma/ste_dma40*
1541 F:      drivers/hwspinlock/u8500_hsem.c
1542 F:      drivers/mfd/abx500*
1543 F:      drivers/mfd/ab8500*
1544 F:      drivers/mfd/dbx500*
1545 F:      drivers/mfd/db8500*
1546 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1547 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1548 F:      drivers/rtc/rtc-ab8500.c
1549 F:      drivers/rtc/rtc-pl031.c
1550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1551
1552 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1553 M:      Ulf Hansson <ulf.hansson@linaro.org>
1554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1555 T:      git git://git.linaro.org/people/ulfh/clk.git
1556 S:      Maintained
1557 F:      drivers/clk/ux500/
1558 F:      include/linux/platform_data/clk-ux500.h
1559
1560 ARM/VERSATILE EXPRESS PLATFORM
1561 M:      Liviu Dudau <liviu.dudau@arm.com>
1562 M:      Sudeep Holla <sudeep.holla@arm.com>
1563 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1565 S:      Maintained
1566 F:      arch/arm/boot/dts/vexpress*
1567 F:      arch/arm/mach-vexpress/
1568 F:      */*/vexpress*
1569 F:      */*/*/vexpress*
1570 F:      drivers/clk/versatile/clk-vexpress-osc.c
1571 F:      drivers/clocksource/versatile.c
1572
1573 ARM/VFP SUPPORT
1574 M:      Russell King <linux@arm.linux.org.uk>
1575 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1576 W:      http://www.arm.linux.org.uk/
1577 S:      Maintained
1578 F:      arch/arm/vfp/
1579
1580 ARM/VOIPAC PXA270 SUPPORT
1581 M:      Marek Vasut <marek.vasut@gmail.com>
1582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1583 S:      Maintained
1584 F:      arch/arm/mach-pxa/vpac270.c
1585 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1586
1587 ARM/VT8500 ARM ARCHITECTURE
1588 M:      Tony Prisk <linux@prisktech.co.nz>
1589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1590 S:      Maintained
1591 F:      arch/arm/mach-vt8500/
1592 F:      drivers/clocksource/vt8500_timer.c
1593 F:      drivers/i2c/busses/i2c-wmt.c
1594 F:      drivers/mmc/host/wmt-sdmmc.c
1595 F:      drivers/pwm/pwm-vt8500.c
1596 F:      drivers/rtc/rtc-vt8500.c
1597 F:      drivers/tty/serial/vt8500_serial.c
1598 F:      drivers/usb/host/ehci-platform.c
1599 F:      drivers/usb/host/uhci-platform.c
1600 F:      drivers/video/fbdev/vt8500lcdfb.*
1601 F:      drivers/video/fbdev/wm8505fb*
1602 F:      drivers/video/fbdev/wmt_ge_rops.*
1603
1604 ARM/ZIPIT Z2 SUPPORT
1605 M:      Marek Vasut <marek.vasut@gmail.com>
1606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1607 S:      Maintained
1608 F:      arch/arm/mach-pxa/z2.c
1609 F:      arch/arm/mach-pxa/include/mach/z2.h
1610
1611 ARM/ZYNQ ARCHITECTURE
1612 M:      Michal Simek <michal.simek@xilinx.com>
1613 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1615 W:      http://wiki.xilinx.com
1616 T:      git git://git.xilinx.com/linux-xlnx.git
1617 S:      Supported
1618 F:      arch/arm/mach-zynq/
1619 F:      drivers/cpuidle/cpuidle-zynq.c
1620 F:      drivers/block/xsysace.c
1621 N:      zynq
1622 N:      xilinx
1623 F:      drivers/clocksource/cadence_ttc_timer.c
1624 F:      drivers/i2c/busses/i2c-cadence.c
1625 F:      drivers/mmc/host/sdhci-of-arasan.c
1626 F:      drivers/edac/synopsys_edac.c
1627
1628 ARM SMMU DRIVER
1629 M:      Will Deacon <will.deacon@arm.com>
1630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1631 S:      Maintained
1632 F:      drivers/iommu/arm-smmu.c
1633 F:      drivers/iommu/io-pgtable-arm.c
1634
1635 ARM64 PORT (AARCH64 ARCHITECTURE)
1636 M:      Catalin Marinas <catalin.marinas@arm.com>
1637 M:      Will Deacon <will.deacon@arm.com>
1638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639 S:      Maintained
1640 F:      arch/arm64/
1641 F:      Documentation/arm64/
1642
1643 AS3645A LED FLASH CONTROLLER DRIVER
1644 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1645 L:      linux-media@vger.kernel.org
1646 T:      git git://linuxtv.org/media_tree.git
1647 S:      Maintained
1648 F:      drivers/media/i2c/as3645a.c
1649 F:      include/media/as3645a.h
1650
1651 ASC7621 HARDWARE MONITOR DRIVER
1652 M:      George Joseph <george.joseph@fairview5.com>
1653 L:      lm-sensors@lm-sensors.org
1654 S:      Maintained
1655 F:      Documentation/hwmon/asc7621
1656 F:      drivers/hwmon/asc7621.c
1657
1658 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1659 M:      Corentin Chary <corentin.chary@gmail.com>
1660 L:      acpi4asus-user@lists.sourceforge.net
1661 L:      platform-driver-x86@vger.kernel.org
1662 W:      http://acpi4asus.sf.net
1663 S:      Maintained
1664 F:      drivers/platform/x86/asus*.c
1665 F:      drivers/platform/x86/eeepc*.c
1666
1667 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1668 R:      Dan Williams <dan.j.williams@intel.com>
1669 W:      http://sourceforge.net/projects/xscaleiop
1670 S:      Odd fixes
1671 F:      Documentation/crypto/async-tx-api.txt
1672 F:      crypto/async_tx/
1673 F:      drivers/dma/
1674 F:      include/linux/dmaengine.h
1675 F:      include/linux/async_tx.h
1676
1677 AT24 EEPROM DRIVER
1678 M:      Wolfram Sang <wsa@the-dreams.de>
1679 L:      linux-i2c@vger.kernel.org
1680 S:      Maintained
1681 F:      drivers/misc/eeprom/at24.c
1682 F:      include/linux/platform_data/at24.h
1683
1684 ATA OVER ETHERNET (AOE) DRIVER
1685 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1686 W:      http://www.openaoe.org/
1687 S:      Supported
1688 F:      Documentation/aoe/
1689 F:      drivers/block/aoe/
1690
1691 ATHEROS ATH GENERIC UTILITIES
1692 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1693 L:      linux-wireless@vger.kernel.org
1694 S:      Supported
1695 F:      drivers/net/wireless/ath/*
1696
1697 ATHEROS ATH5K WIRELESS DRIVER
1698 M:      Jiri Slaby <jirislaby@gmail.com>
1699 M:      Nick Kossifidis <mickflemm@gmail.com>
1700 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1701 L:      linux-wireless@vger.kernel.org
1702 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1703 S:      Maintained
1704 F:      drivers/net/wireless/ath/ath5k/
1705
1706 ATHEROS ATH6KL WIRELESS DRIVER
1707 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1708 L:      linux-wireless@vger.kernel.org
1709 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1710 T:      git git://github.com/kvalo/ath.git
1711 S:      Supported
1712 F:      drivers/net/wireless/ath/ath6kl/
1713
1714 WILOCITY WIL6210 WIRELESS DRIVER
1715 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1716 L:      linux-wireless@vger.kernel.org
1717 L:      wil6210@qca.qualcomm.com
1718 S:      Supported
1719 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1720 F:      drivers/net/wireless/ath/wil6210/
1721 F:      include/uapi/linux/wil6210_uapi.h
1722
1723 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1724 M:      Christian Lamparter <chunkeey@googlemail.com>
1725 L:      linux-wireless@vger.kernel.org
1726 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1727 S:      Maintained
1728 F:      drivers/net/wireless/ath/carl9170/
1729
1730 ATK0110 HWMON DRIVER
1731 M:      Luca Tettamanti <kronos.it@gmail.com>
1732 L:      lm-sensors@lm-sensors.org
1733 S:      Maintained
1734 F:      drivers/hwmon/asus_atk0110.c
1735
1736 ATI_REMOTE2 DRIVER
1737 M:      Ville Syrjala <syrjala@sci.fi>
1738 S:      Maintained
1739 F:      drivers/input/misc/ati_remote2.c
1740
1741 ATLX ETHERNET DRIVERS
1742 M:      Jay Cliburn <jcliburn@gmail.com>
1743 M:      Chris Snook <chris.snook@gmail.com>
1744 L:      netdev@vger.kernel.org
1745 W:      http://sourceforge.net/projects/atl1
1746 W:      http://atl1.sourceforge.net
1747 S:      Maintained
1748 F:      drivers/net/ethernet/atheros/
1749
1750 ATM
1751 M:      Chas Williams <3chas3@gmail.com>
1752 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1753 L:      netdev@vger.kernel.org
1754 W:      http://linux-atm.sourceforge.net
1755 S:      Maintained
1756 F:      drivers/atm/
1757 F:      include/linux/atm*
1758 F:      include/uapi/linux/atm*
1759
1760 ATMEL AT91 / AT32 MCI DRIVER
1761 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1762 S:      Maintained
1763 F:      drivers/mmc/host/atmel-mci.c
1764 F:      drivers/mmc/host/atmel-mci-regs.h
1765
1766 ATMEL AT91 / AT32 SERIAL DRIVER
1767 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1768 S:      Supported
1769 F:      drivers/tty/serial/atmel_serial.c
1770
1771 ATMEL Audio ALSA driver
1772 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1773 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1774 S:      Supported
1775 F:      sound/soc/atmel
1776
1777 ATMEL DMA DRIVER
1778 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1780 S:      Supported
1781 F:      drivers/dma/at_hdmac.c
1782 F:      drivers/dma/at_hdmac_regs.h
1783 F:      include/linux/platform_data/dma-atmel.h
1784
1785 ATMEL XDMA DRIVER
1786 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1787 L:      linux-arm-kernel@lists.infradead.org
1788 L:      dmaengine@vger.kernel.org
1789 S:      Supported
1790 F:      drivers/dma/at_xdmac.c
1791
1792 ATMEL I2C DRIVER
1793 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1794 L:      linux-i2c@vger.kernel.org
1795 S:      Supported
1796 F:      drivers/i2c/busses/i2c-at91.c
1797
1798 ATMEL ISI DRIVER
1799 M:      Josh Wu <josh.wu@atmel.com>
1800 L:      linux-media@vger.kernel.org
1801 S:      Supported
1802 F:      drivers/media/platform/soc_camera/atmel-isi.c
1803 F:      include/media/atmel-isi.h
1804
1805 ATMEL LCDFB DRIVER
1806 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1807 L:      linux-fbdev@vger.kernel.org
1808 S:      Maintained
1809 F:      drivers/video/fbdev/atmel_lcdfb.c
1810 F:      include/video/atmel_lcdc.h
1811
1812 ATMEL MACB ETHERNET DRIVER
1813 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1814 S:      Supported
1815 F:      drivers/net/ethernet/cadence/
1816
1817 ATMEL NAND DRIVER
1818 M:      Josh Wu <josh.wu@atmel.com>
1819 L:      linux-mtd@lists.infradead.org
1820 S:      Supported
1821 F:      drivers/mtd/nand/atmel_nand*
1822
1823 ATMEL SPI DRIVER
1824 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1825 S:      Supported
1826 F:      drivers/spi/spi-atmel.*
1827
1828 ATMEL SSC DRIVER
1829 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1831 S:      Supported
1832 F:      drivers/misc/atmel-ssc.c
1833 F:      include/linux/atmel-ssc.h
1834
1835 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1836 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 S:      Supported
1839 F:      drivers/misc/atmel_tclib.c
1840 F:      drivers/clocksource/tcb_clksrc.c
1841
1842 ATMEL USBA UDC DRIVER
1843 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S:      Supported
1846 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1847
1848 ATMEL WIRELESS DRIVER
1849 M:      Simon Kelley <simon@thekelleys.org.uk>
1850 L:      linux-wireless@vger.kernel.org
1851 W:      http://www.thekelleys.org.uk/atmel
1852 W:      http://atmelwlandriver.sourceforge.net/
1853 S:      Maintained
1854 F:      drivers/net/wireless/atmel*
1855
1856 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1857 M:      Bradley Grove <linuxdrivers@attotech.com>
1858 L:      linux-scsi@vger.kernel.org
1859 W:      http://www.attotech.com
1860 S:      Supported
1861 F:      drivers/scsi/esas2r
1862
1863 AUDIT SUBSYSTEM
1864 M:      Paul Moore <paul@paul-moore.com>
1865 M:      Eric Paris <eparis@redhat.com>
1866 L:      linux-audit@redhat.com (moderated for non-subscribers)
1867 W:      http://people.redhat.com/sgrubb/audit/
1868 T:      git git://git.infradead.org/users/pcmoore/audit
1869 S:      Maintained
1870 F:      include/linux/audit.h
1871 F:      include/uapi/linux/audit.h
1872 F:      kernel/audit*
1873
1874 AUXILIARY DISPLAY DRIVERS
1875 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1876 W:      http://miguelojeda.es/auxdisplay.htm
1877 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1878 S:      Maintained
1879 F:      drivers/auxdisplay/
1880 F:      include/linux/cfag12864b.h
1881
1882 AVR32 ARCHITECTURE
1883 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1884 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1885 W:      http://www.atmel.com/products/AVR32/
1886 W:      http://mirror.egtvedt.no/avr32linux.org/
1887 W:      http://avrfreaks.net/
1888 S:      Maintained
1889 F:      arch/avr32/
1890
1891 AVR32/AT32AP MACHINE SUPPORT
1892 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1893 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1894 S:      Maintained
1895 F:      arch/avr32/mach-at32ap/
1896
1897 AX.25 NETWORK LAYER
1898 M:      Ralf Baechle <ralf@linux-mips.org>
1899 L:      linux-hams@vger.kernel.org
1900 W:      http://www.linux-ax25.org/
1901 S:      Maintained
1902 F:      include/uapi/linux/ax25.h
1903 F:      include/net/ax25.h
1904 F:      net/ax25/
1905
1906 AZ6007 DVB DRIVER
1907 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
1908 L:      linux-media@vger.kernel.org
1909 W:      http://linuxtv.org
1910 T:      git git://linuxtv.org/media_tree.git
1911 S:      Maintained
1912 F:      drivers/media/usb/dvb-usb-v2/az6007.c
1913
1914 AZTECH FM RADIO RECEIVER DRIVER
1915 M:      Hans Verkuil <hverkuil@xs4all.nl>
1916 L:      linux-media@vger.kernel.org
1917 T:      git git://linuxtv.org/media_tree.git
1918 W:      http://linuxtv.org
1919 S:      Maintained
1920 F:      drivers/media/radio/radio-aztech*
1921
1922 B43 WIRELESS DRIVER
1923 L:      linux-wireless@vger.kernel.org
1924 L:      b43-dev@lists.infradead.org
1925 W:      http://wireless.kernel.org/en/users/Drivers/b43
1926 S:      Odd Fixes
1927 F:      drivers/net/wireless/b43/
1928
1929 B43LEGACY WIRELESS DRIVER
1930 M:      Larry Finger <Larry.Finger@lwfinger.net>
1931 L:      linux-wireless@vger.kernel.org
1932 L:      b43-dev@lists.infradead.org
1933 W:      http://wireless.kernel.org/en/users/Drivers/b43
1934 S:      Maintained
1935 F:      drivers/net/wireless/b43legacy/
1936
1937 BACKLIGHT CLASS/SUBSYSTEM
1938 M:      Jingoo Han <jg1.han@samsung.com>
1939 M:      Lee Jones <lee.jones@linaro.org>
1940 S:      Maintained
1941 F:      drivers/video/backlight/
1942 F:      include/linux/backlight.h
1943
1944 BATMAN ADVANCED
1945 M:      Marek Lindner <mareklindner@neomailbox.ch>
1946 M:      Simon Wunderlich <sw@simonwunderlich.de>
1947 M:      Antonio Quartulli <antonio@meshcoding.com>
1948 L:      b.a.t.m.a.n@lists.open-mesh.org
1949 W:      http://www.open-mesh.org/
1950 S:      Maintained
1951 F:      net/batman-adv/
1952
1953 BAYCOM/HDLCDRV DRIVERS FOR AX.25
1954 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
1955 L:      linux-hams@vger.kernel.org
1956 W:      http://www.baycom.org/~tom/ham/ham.html
1957 S:      Maintained
1958 F:      drivers/net/hamradio/baycom*
1959
1960 BCACHE (BLOCK LAYER CACHE)
1961 M:      Kent Overstreet <kmo@daterainc.com>
1962 L:      linux-bcache@vger.kernel.org
1963 W:      http://bcache.evilpiepirate.org
1964 S:      Maintained:
1965 F:      drivers/md/bcache/
1966
1967 BEFS FILE SYSTEM
1968 S:      Orphan
1969 F:      Documentation/filesystems/befs.txt
1970 F:      fs/befs/
1971
1972 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
1973 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
1974 L:      netdev@vger.kernel.org
1975 S:      Maintained
1976 F:      drivers/net/ethernet/ec_bhf.c
1977
1978 BFS FILE SYSTEM
1979 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
1980 S:      Maintained
1981 F:      Documentation/filesystems/bfs.txt
1982 F:      fs/bfs/
1983 F:      include/uapi/linux/bfs_fs.h
1984
1985 BLACKFIN ARCHITECTURE
1986 M:      Steven Miao <realmz6@gmail.com>
1987 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1988 T:      git git://git.code.sf.net/p/adi-linux/code
1989 W:      http://blackfin.uclinux.org
1990 S:      Supported
1991 F:      arch/blackfin/
1992
1993 BLACKFIN EMAC DRIVER
1994 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1995 W:      http://blackfin.uclinux.org
1996 S:      Supported
1997 F:      drivers/net/ethernet/adi/
1998
1999 BLACKFIN RTC DRIVER
2000 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2001 W:      http://blackfin.uclinux.org
2002 S:      Supported
2003 F:      drivers/rtc/rtc-bfin.c
2004
2005 BLACKFIN SDH DRIVER
2006 M:      Sonic Zhang <sonic.zhang@analog.com>
2007 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2008 W:      http://blackfin.uclinux.org
2009 S:      Supported
2010 F:      drivers/mmc/host/bfin_sdh.c
2011
2012 BLACKFIN SERIAL DRIVER
2013 M:      Sonic Zhang <sonic.zhang@analog.com>
2014 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2015 W:      http://blackfin.uclinux.org
2016 S:      Supported
2017 F:      drivers/tty/serial/bfin_uart.c
2018
2019 BLACKFIN WATCHDOG DRIVER
2020 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2021 W:      http://blackfin.uclinux.org
2022 S:      Supported
2023 F:      drivers/watchdog/bfin_wdt.c
2024
2025 BLACKFIN I2C TWI DRIVER
2026 M:      Sonic Zhang <sonic.zhang@analog.com>
2027 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2028 W:      http://blackfin.uclinux.org/
2029 S:      Supported
2030 F:      drivers/i2c/busses/i2c-bfin-twi.c
2031
2032 BLACKFIN MEDIA DRIVER
2033 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2034 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2035 W:      http://blackfin.uclinux.org/
2036 S:      Supported
2037 F:      drivers/media/platform/blackfin/
2038 F:      drivers/media/i2c/adv7183*
2039 F:      drivers/media/i2c/vs6624*
2040
2041 BLINKM RGB LED DRIVER
2042 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2043 S:      Maintained
2044 F:      drivers/leds/leds-blinkm.c
2045
2046 BLOCK LAYER
2047 M:      Jens Axboe <axboe@kernel.dk>
2048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2049 S:      Maintained
2050 F:      block/
2051
2052 BLOCK2MTD DRIVER
2053 M:      Joern Engel <joern@lazybastard.org>
2054 L:      linux-mtd@lists.infradead.org
2055 S:      Maintained
2056 F:      drivers/mtd/devices/block2mtd.c
2057
2058 BLUETOOTH DRIVERS
2059 M:      Marcel Holtmann <marcel@holtmann.org>
2060 M:      Gustavo Padovan <gustavo@padovan.org>
2061 M:      Johan Hedberg <johan.hedberg@gmail.com>
2062 L:      linux-bluetooth@vger.kernel.org
2063 W:      http://www.bluez.org/
2064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2066 S:      Maintained
2067 F:      drivers/bluetooth/
2068
2069 BLUETOOTH SUBSYSTEM
2070 M:      Marcel Holtmann <marcel@holtmann.org>
2071 M:      Gustavo Padovan <gustavo@padovan.org>
2072 M:      Johan Hedberg <johan.hedberg@gmail.com>
2073 L:      linux-bluetooth@vger.kernel.org
2074 W:      http://www.bluez.org/
2075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2077 S:      Maintained
2078 F:      net/bluetooth/
2079 F:      include/net/bluetooth/
2080
2081 BONDING DRIVER
2082 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2083 M:      Veaceslav Falico <vfalico@gmail.com>
2084 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2085 L:      netdev@vger.kernel.org
2086 W:      http://sourceforge.net/projects/bonding/
2087 S:      Supported
2088 F:      drivers/net/bonding/
2089 F:      include/uapi/linux/if_bonding.h
2090
2091 BPF (Safe dynamic programs and tools)
2092 M:      Alexei Starovoitov <ast@kernel.org>
2093 L:      netdev@vger.kernel.org
2094 L:      linux-kernel@vger.kernel.org
2095 S:      Supported
2096 F:      kernel/bpf/
2097
2098 BROADCOM B44 10/100 ETHERNET DRIVER
2099 M:      Gary Zambrano <zambrano@broadcom.com>
2100 L:      netdev@vger.kernel.org
2101 S:      Supported
2102 F:      drivers/net/ethernet/broadcom/b44.*
2103
2104 BROADCOM GENET ETHERNET DRIVER
2105 M:      Florian Fainelli <f.fainelli@gmail.com>
2106 L:      netdev@vger.kernel.org
2107 S:      Supported
2108 F:      drivers/net/ethernet/broadcom/genet/
2109
2110 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2111 M:      Sony Chacko <sony.chacko@qlogic.com>
2112 M:      Dept-HSGLinuxNICDev@qlogic.com
2113 L:      netdev@vger.kernel.org
2114 S:      Supported
2115 F:      drivers/net/ethernet/broadcom/bnx2.*
2116 F:      drivers/net/ethernet/broadcom/bnx2_*
2117
2118 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2119 M:      Ariel Elior <ariel.elior@qlogic.com>
2120 L:      netdev@vger.kernel.org
2121 S:      Supported
2122 F:      drivers/net/ethernet/broadcom/bnx2x/
2123
2124 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2125 M:      Florian Fainelli <f.fainelli@gmail.com>
2126 M:      Ray Jui <rjui@broadcom.com>
2127 M:      Scott Branden <sbranden@broadcom.com>
2128 L:      bcm-kernel-feedback-list@broadcom.com
2129 T:      git git://github.com/broadcom/mach-bcm
2130 S:      Maintained
2131 F:      arch/arm/mach-bcm/
2132 F:      arch/arm/boot/dts/bcm113*
2133 F:      arch/arm/boot/dts/bcm216*
2134 F:      arch/arm/boot/dts/bcm281*
2135 F:      arch/arm/configs/bcm_defconfig
2136 F:      drivers/mmc/host/sdhci-bcm-kona.c
2137 F:      drivers/clocksource/bcm_kona_timer.c
2138
2139 BROADCOM BCM2835 ARM ARCHITECTURE
2140 M:      Stephen Warren <swarren@wwwdotorg.org>
2141 M:      Lee Jones <lee@kernel.org>
2142 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2144 S:      Maintained
2145 N:      bcm2835
2146
2147 BROADCOM BCM33XX MIPS ARCHITECTURE
2148 M:      Kevin Cernekee <cernekee@gmail.com>
2149 L:      linux-mips@linux-mips.org
2150 S:      Maintained
2151 F:      arch/mips/bcm3384/*
2152 F:      arch/mips/include/asm/mach-bcm3384/*
2153 F:      arch/mips/kernel/*bmips*
2154
2155 BROADCOM BCM5301X ARM ARCHITECTURE
2156 M:      Hauke Mehrtens <hauke@hauke-m.de>
2157 L:      linux-arm-kernel@lists.infradead.org
2158 S:      Maintained
2159 F:      arch/arm/mach-bcm/bcm_5301x.c
2160 F:      arch/arm/boot/dts/bcm5301x.dtsi
2161 F:      arch/arm/boot/dts/bcm470*
2162
2163 BROADCOM BCM63XX ARM ARCHITECTURE
2164 M:      Florian Fainelli <f.fainelli@gmail.com>
2165 L:      linux-arm-kernel@lists.infradead.org
2166 T:      git git://github.com/broadcom/arm-bcm63xx.git
2167 S:      Maintained
2168 F:      arch/arm/mach-bcm/bcm63xx.c
2169 F:      arch/arm/include/debug/bcm63xx.S
2170
2171 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2172 M:      Kevin Cernekee <cernekee@gmail.com>
2173 L:      linux-usb@vger.kernel.org
2174 S:      Maintained
2175 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2176
2177 BROADCOM BCM7XXX ARM ARCHITECTURE
2178 M:      Brian Norris <computersforpeace@gmail.com>
2179 M:      Gregory Fong <gregory.0xf0@gmail.com>
2180 M:      Florian Fainelli <f.fainelli@gmail.com>
2181 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2182 T:      git git://github.com/broadcom/stblinux.git
2183 S:      Maintained
2184 F:      arch/arm/mach-bcm/*brcmstb*
2185 F:      arch/arm/boot/dts/bcm7*.dts*
2186 F:      drivers/bus/brcmstb_gisb.c
2187
2188 BROADCOM BMIPS MIPS ARCHITECTURE
2189 M:      Kevin Cernekee <cernekee@gmail.com>
2190 M:      Florian Fainelli <f.fainelli@gmail.com>
2191 L:      linux-mips@linux-mips.org
2192 T:      git git://github.com/broadcom/stblinux.git
2193 S:      Maintained
2194 F:      arch/mips/bmips/*
2195 F:      arch/mips/include/asm/mach-bmips/*
2196 F:      arch/mips/kernel/*bmips*
2197 F:      arch/mips/boot/dts/bcm*.dts*
2198 F:      drivers/irqchip/irq-bcm7*
2199 F:      drivers/irqchip/irq-brcmstb*
2200
2201 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2202 M:      Prashant Sreedharan <prashant@broadcom.com>
2203 M:      Michael Chan <mchan@broadcom.com>
2204 L:      netdev@vger.kernel.org
2205 S:      Supported
2206 F:      drivers/net/ethernet/broadcom/tg3.*
2207
2208 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2209 M:      Brett Rudley <brudley@broadcom.com>
2210 M:      Arend van Spriel <arend@broadcom.com>
2211 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2212 M:      Hante Meuleman <meuleman@broadcom.com>
2213 L:      linux-wireless@vger.kernel.org
2214 L:      brcm80211-dev-list@broadcom.com
2215 S:      Supported
2216 F:      drivers/net/wireless/brcm80211/
2217
2218 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2219 M:      QLogic-Storage-Upstream@qlogic.com
2220 L:      linux-scsi@vger.kernel.org
2221 S:      Supported
2222 F:      drivers/scsi/bnx2fc/
2223
2224 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2225 M:      QLogic-Storage-Upstream@qlogic.com
2226 L:      linux-scsi@vger.kernel.org
2227 S:      Supported
2228 F:      drivers/scsi/bnx2i/
2229
2230 BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2231 M:      Ray Jui <rjui@broadcom.com>
2232 M:      Scott Branden <sbranden@broadcom.com>
2233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2234 L:      bcm-kernel-feedback-list@broadcom.com
2235 T:      git git://github.com/broadcom/cygnus-linux.git
2236 S:      Maintained
2237 N:      iproc
2238 N:      cygnus
2239 N:      bcm9113*
2240 N:      bcm9583*
2241 N:      bcm583*
2242 N:      bcm113*
2243
2244 BROADCOM KONA GPIO DRIVER
2245 M:      Ray Jui <rjui@broadcom.com>
2246 L:      bcm-kernel-feedback-list@broadcom.com
2247 S:      Supported
2248 F:      drivers/gpio/gpio-bcm-kona.c
2249 F:      Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt
2250
2251 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2252 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2253 L:      linux-wireless@vger.kernel.org
2254 S:      Maintained
2255 F:      drivers/bcma/
2256 F:      include/linux/bcma/
2257
2258 BROADCOM SYSTEMPORT ETHERNET DRIVER
2259 M:      Florian Fainelli <f.fainelli@gmail.com>
2260 L:      netdev@vger.kernel.org
2261 S:      Supported
2262 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2263
2264 BROCADE BFA FC SCSI DRIVER
2265 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2266 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2267 L:      linux-scsi@vger.kernel.org
2268 S:      Supported
2269 F:      drivers/scsi/bfa/
2270
2271 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2272 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2273 L:      netdev@vger.kernel.org
2274 S:      Supported
2275 F:      drivers/net/ethernet/brocade/bna/
2276
2277 BSG (block layer generic sg v4 driver)
2278 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2279 L:      linux-scsi@vger.kernel.org
2280 S:      Supported
2281 F:      block/bsg.c
2282 F:      include/linux/bsg.h
2283 F:      include/uapi/linux/bsg.h
2284
2285 BT87X AUDIO DRIVER
2286 M:      Clemens Ladisch <clemens@ladisch.de>
2287 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2288 T:      git git://git.alsa-project.org/alsa-kernel.git
2289 S:      Maintained
2290 F:      Documentation/sound/alsa/Bt87x.txt
2291 F:      sound/pci/bt87x.c
2292
2293 BT8XXGPIO DRIVER
2294 M:      Michael Buesch <m@bues.ch>
2295 W:      http://bu3sch.de/btgpio.php
2296 S:      Maintained
2297 F:      drivers/gpio/gpio-bt8xx.c
2298
2299 BTRFS FILE SYSTEM
2300 M:      Chris Mason <clm@fb.com>
2301 M:      Josef Bacik <jbacik@fb.com>
2302 M:      David Sterba <dsterba@suse.cz>
2303 L:      linux-btrfs@vger.kernel.org
2304 W:      http://btrfs.wiki.kernel.org/
2305 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2307 S:      Maintained
2308 F:      Documentation/filesystems/btrfs.txt
2309 F:      fs/btrfs/
2310
2311 BTTV VIDEO4LINUX DRIVER
2312 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2313 L:      linux-media@vger.kernel.org
2314 W:      http://linuxtv.org
2315 T:      git git://linuxtv.org/media_tree.git
2316 S:      Odd fixes
2317 F:      Documentation/video4linux/bttv/
2318 F:      drivers/media/pci/bt8xx/bttv*
2319
2320 BUSLOGIC SCSI DRIVER
2321 M:      Khalid Aziz <khalid@gonehiking.org>
2322 L:      linux-scsi@vger.kernel.org
2323 S:      Maintained
2324 F:      drivers/scsi/BusLogic.*
2325 F:      drivers/scsi/FlashPoint.*
2326
2327 C-MEDIA CMI8788 DRIVER
2328 M:      Clemens Ladisch <clemens@ladisch.de>
2329 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2330 T:      git git://git.alsa-project.org/alsa-kernel.git
2331 S:      Maintained
2332 F:      sound/pci/oxygen/
2333
2334 C6X ARCHITECTURE
2335 M:      Mark Salter <msalter@redhat.com>
2336 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2337 L:      linux-c6x-dev@linux-c6x.org
2338 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2339 S:      Maintained
2340 F:      arch/c6x/
2341
2342 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2343 M:      David Howells <dhowells@redhat.com>
2344 L:      linux-cachefs@redhat.com
2345 S:      Supported
2346 F:      Documentation/filesystems/caching/cachefiles.txt
2347 F:      fs/cachefiles/
2348
2349 CADET FM/AM RADIO RECEIVER DRIVER
2350 M:      Hans Verkuil <hverkuil@xs4all.nl>
2351 L:      linux-media@vger.kernel.org
2352 T:      git git://linuxtv.org/media_tree.git
2353 W:      http://linuxtv.org
2354 S:      Maintained
2355 F:      drivers/media/radio/radio-cadet*
2356
2357 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2358 M:      Jonathan Corbet <corbet@lwn.net>
2359 L:      linux-media@vger.kernel.org
2360 T:      git git://linuxtv.org/media_tree.git
2361 S:      Maintained
2362 F:      Documentation/video4linux/cafe_ccic
2363 F:      drivers/media/platform/marvell-ccic/
2364
2365 CAIF NETWORK LAYER
2366 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2367 L:      netdev@vger.kernel.org
2368 S:      Supported
2369 F:      Documentation/networking/caif/
2370 F:      drivers/net/caif/
2371 F:      include/uapi/linux/caif/
2372 F:      include/net/caif/
2373 F:      net/caif/
2374
2375 CALGARY x86-64 IOMMU
2376 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2377 M:      "Jon D. Mason" <jdmason@kudzu.us>
2378 L:      discuss@x86-64.org
2379 S:      Maintained
2380 F:      arch/x86/kernel/pci-calgary_64.c
2381 F:      arch/x86/kernel/tce_64.c
2382 F:      arch/x86/include/asm/calgary.h
2383 F:      arch/x86/include/asm/tce.h
2384
2385 CAN NETWORK LAYER
2386 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2387 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2388 L:      linux-can@vger.kernel.org
2389 W:      https://github.com/linux-can
2390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2392 S:      Maintained
2393 F:      Documentation/networking/can.txt
2394 F:      net/can/
2395 F:      include/linux/can/core.h
2396 F:      include/uapi/linux/can.h
2397 F:      include/uapi/linux/can/bcm.h
2398 F:      include/uapi/linux/can/raw.h
2399 F:      include/uapi/linux/can/gw.h
2400
2401 CAN NETWORK DRIVERS
2402 M:      Wolfgang Grandegger <wg@grandegger.com>
2403 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2404 L:      linux-can@vger.kernel.org
2405 W:      https://github.com/linux-can
2406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2408 S:      Maintained
2409 F:      drivers/net/can/
2410 F:      include/linux/can/dev.h
2411 F:      include/linux/can/platform/
2412 F:      include/uapi/linux/can/error.h
2413 F:      include/uapi/linux/can/netlink.h
2414
2415 CAPABILITIES
2416 M:      Serge Hallyn <serge.hallyn@canonical.com>
2417 L:      linux-security-module@vger.kernel.org
2418 S:      Supported
2419 F:      include/linux/capability.h
2420 F:      include/uapi/linux/capability.h
2421 F:      security/capability.c
2422 F:      security/commoncap.c
2423 F:      kernel/capability.c
2424
2425 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2426 M:      Kevin Tsai <ktsai@capellamicro.com>
2427 S:      Maintained
2428 F:      drivers/iio/light/cm*
2429 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2430
2431 CC2520 IEEE-802.15.4 RADIO DRIVER
2432 M:      Varka Bhadram <varkabhadram@gmail.com>
2433 L:      linux-wpan@vger.kernel.org
2434 S:      Maintained
2435 F:      drivers/net/ieee802154/cc2520.c
2436 F:      include/linux/spi/cc2520.h
2437 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2438
2439 CELL BROADBAND ENGINE ARCHITECTURE
2440 M:      Arnd Bergmann <arnd@arndb.de>
2441 L:      linuxppc-dev@lists.ozlabs.org
2442 L:      cbe-oss-dev@lists.ozlabs.org
2443 W:      http://www.ibm.com/developerworks/power/cell/
2444 S:      Supported
2445 F:      arch/powerpc/include/asm/cell*.h
2446 F:      arch/powerpc/include/asm/spu*.h
2447 F:      arch/powerpc/include/uapi/asm/spu*.h
2448 F:      arch/powerpc/oprofile/*cell*
2449 F:      arch/powerpc/platforms/cell/
2450
2451 CEPH DISTRIBUTED FILE SYSTEM CLIENT
2452 M:      Yan, Zheng <zyan@redhat.com>
2453 M:      Sage Weil <sage@redhat.com>
2454 L:      ceph-devel@vger.kernel.org
2455 W:      http://ceph.com/
2456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2457 S:      Supported
2458 F:      Documentation/filesystems/ceph.txt
2459 F:      fs/ceph/
2460 F:      net/ceph/
2461 F:      include/linux/ceph/
2462 F:      include/linux/crush/
2463
2464 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2465 L:      linux-usb@vger.kernel.org
2466 S:      Orphan
2467 F:      Documentation/usb/WUSB-Design-overview.txt
2468 F:      Documentation/usb/wusb-cbaf
2469 F:      drivers/usb/host/hwa-hc.c
2470 F:      drivers/usb/host/whci/
2471 F:      drivers/usb/wusbcore/
2472 F:      include/linux/usb/wusb*
2473
2474 CFAG12864B LCD DRIVER
2475 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2476 W:      http://miguelojeda.es/auxdisplay.htm
2477 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2478 S:      Maintained
2479 F:      drivers/auxdisplay/cfag12864b.c
2480 F:      include/linux/cfag12864b.h
2481
2482 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2483 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2484 W:      http://miguelojeda.es/auxdisplay.htm
2485 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2486 S:      Maintained
2487 F:      drivers/auxdisplay/cfag12864bfb.c
2488 F:      include/linux/cfag12864b.h
2489
2490 CFG80211 and NL80211
2491 M:      Johannes Berg <johannes@sipsolutions.net>
2492 L:      linux-wireless@vger.kernel.org
2493 W:      http://wireless.kernel.org/
2494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2496 S:      Maintained
2497 F:      include/uapi/linux/nl80211.h
2498 F:      include/net/cfg80211.h
2499 F:      net/wireless/*
2500 X:      net/wireless/wext*
2501
2502 CHAR and MISC DRIVERS
2503 M:      Arnd Bergmann <arnd@arndb.de>
2504 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2506 S:      Supported
2507 F:      drivers/char/*
2508 F:      drivers/misc/*
2509 F:      include/linux/miscdevice.h
2510
2511 CHECKPATCH
2512 M:      Andy Whitcroft <apw@canonical.com>
2513 M:      Joe Perches <joe@perches.com>
2514 S:      Maintained
2515 F:      scripts/checkpatch.pl
2516
2517 CHINESE DOCUMENTATION
2518 M:      Harry Wei <harryxiyou@gmail.com>
2519 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2520 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2521 S:      Maintained
2522 F:      Documentation/zh_CN/
2523
2524 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2525 M:      Peter Chen <Peter.Chen@freescale.com>
2526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2527 L:      linux-usb@vger.kernel.org
2528 S:      Maintained
2529 F:      drivers/usb/chipidea/
2530
2531 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2532 M:      Hans de Goede <hdegoede@redhat.com>
2533 L:      linux-input@vger.kernel.org
2534 S:      Maintained
2535 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2536 F:      drivers/input/touchscreen/chipone_icn8318.c
2537
2538 CHROME HARDWARE PLATFORM SUPPORT
2539 M:      Olof Johansson <olof@lixom.net>
2540 S:      Maintained
2541 F:      drivers/platform/chrome/
2542
2543 CISCO VIC ETHERNET NIC DRIVER
2544 M:      Christian Benvenuti <benve@cisco.com>
2545 M:      Sujith Sankar <ssujith@cisco.com>
2546 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2547 M:      Neel Patel <neepatel@cisco.com>
2548 S:      Supported
2549 F:      drivers/net/ethernet/cisco/enic/
2550
2551 CISCO VIC LOW LATENCY NIC DRIVER
2552 M:      Upinder Malhi <umalhi@cisco.com>
2553 S:      Supported
2554 F:      drivers/infiniband/hw/usnic
2555
2556 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2557 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2558 L:      netdev@vger.kernel.org
2559 S:      Maintained
2560 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2561
2562 CIRRUS LOGIC AUDIO CODEC DRIVERS
2563 M:      Brian Austin <brian.austin@cirrus.com>
2564 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2565 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2566 S:      Maintained
2567 F:      sound/soc/codecs/cs*
2568
2569 CLEANCACHE API
2570 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2571 L:      linux-kernel@vger.kernel.org
2572 S:      Maintained
2573 F:      mm/cleancache.c
2574 F:      include/linux/cleancache.h
2575
2576 CLK API
2577 M:      Russell King <linux@arm.linux.org.uk>
2578 L:      linux-clk@vger.kernel.org
2579 S:      Maintained
2580 F:      include/linux/clk.h
2581
2582 CLOCKSOURCE, CLOCKEVENT DRIVERS
2583 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2584 M:      Thomas Gleixner <tglx@linutronix.de>
2585 L:      linux-kernel@vger.kernel.org
2586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2587 S:      Supported
2588 F:      drivers/clocksource
2589
2590 CISCO FCOE HBA DRIVER
2591 M:      Hiral Patel <hiralpat@cisco.com>
2592 M:      Suma Ramars <sramars@cisco.com>
2593 M:      Brian Uchino <buchino@cisco.com>
2594 L:      linux-scsi@vger.kernel.org
2595 S:      Supported
2596 F:      drivers/scsi/fnic/
2597
2598 CMPC ACPI DRIVER
2599 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2600 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2601 L:      platform-driver-x86@vger.kernel.org
2602 S:      Supported
2603 F:      drivers/platform/x86/classmate-laptop.c
2604
2605 COBALT MEDIA DRIVER
2606 M:      Hans Verkuil <hans.verkuil@cisco.com>
2607 L:      linux-media@vger.kernel.org
2608 T:      git git://linuxtv.org/media_tree.git
2609 W:      http://linuxtv.org
2610 S:      Supported
2611 F:      drivers/media/pci/cobalt/
2612
2613 COCCINELLE/Semantic Patches (SmPL)
2614 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2615 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2616 M:      Nicolas Palix <nicolas.palix@imag.fr>
2617 M:      Michal Marek <mmarek@suse.cz>
2618 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2620 W:      http://coccinelle.lip6.fr/
2621 S:      Supported
2622 F:      Documentation/coccinelle.txt
2623 F:      scripts/coccinelle/
2624 F:      scripts/coccicheck
2625
2626 CODA FILE SYSTEM
2627 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2628 M:      coda@cs.cmu.edu
2629 L:      codalist@coda.cs.cmu.edu
2630 W:      http://www.coda.cs.cmu.edu/
2631 S:      Maintained
2632 F:      Documentation/filesystems/coda.txt
2633 F:      fs/coda/
2634 F:      include/linux/coda*.h
2635 F:      include/uapi/linux/coda*.h
2636
2637 CODA V4L2 MEM2MEM DRIVER
2638 M:      Philipp Zabel <p.zabel@pengutronix.de>
2639 L:      linux-media@vger.kernel.org
2640 S:      Maintained
2641 F:      Documentation/devicetree/bindings/media/coda.txt
2642 F:      drivers/media/platform/coda/
2643
2644 COMMON CLK FRAMEWORK
2645 M:      Mike Turquette <mturquette@linaro.org>
2646 M:      Stephen Boyd <sboyd@codeaurora.org>
2647 L:      linux-clk@vger.kernel.org
2648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2649 S:      Maintained
2650 F:      drivers/clk/
2651 X:      drivers/clk/clkdev.c
2652 F:      include/linux/clk-pr*
2653 F:      include/linux/clk/
2654
2655 COMMON INTERNET FILE SYSTEM (CIFS)
2656 M:      Steve French <sfrench@samba.org>
2657 L:      linux-cifs@vger.kernel.org
2658 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2659 W:      http://linux-cifs.samba.org/
2660 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2661 S:      Supported
2662 F:      Documentation/filesystems/cifs/
2663 F:      fs/cifs/
2664
2665 COMPACTPCI HOTPLUG CORE
2666 M:      Scott Murray <scott@spiteful.org>
2667 L:      linux-pci@vger.kernel.org
2668 S:      Maintained
2669 F:      drivers/pci/hotplug/cpci_hotplug*
2670
2671 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2672 M:      Scott Murray <scott@spiteful.org>
2673 L:      linux-pci@vger.kernel.org
2674 S:      Maintained
2675 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2676
2677 COMPACTPCI HOTPLUG GENERIC DRIVER
2678 M:      Scott Murray <scott@spiteful.org>
2679 L:      linux-pci@vger.kernel.org
2680 S:      Maintained
2681 F:      drivers/pci/hotplug/cpcihp_generic.c
2682
2683 COMPAL LAPTOP SUPPORT
2684 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2685 L:      platform-driver-x86@vger.kernel.org
2686 S:      Maintained
2687 F:      drivers/platform/x86/compal-laptop.c
2688
2689 CONEXANT ACCESSRUNNER USB DRIVER
2690 M:      Simon Arlott <cxacru@fire.lp0.eu>
2691 L:      accessrunner-general@lists.sourceforge.net
2692 W:      http://accessrunner.sourceforge.net/
2693 S:      Maintained
2694 F:      drivers/usb/atm/cxacru.c
2695
2696 CONFIGFS
2697 M:      Joel Becker <jlbec@evilplan.org>
2698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2699 S:      Supported
2700 F:      fs/configfs/
2701 F:      include/linux/configfs.h
2702
2703 CONNECTOR
2704 M:      Evgeniy Polyakov <zbr@ioremap.net>
2705 L:      netdev@vger.kernel.org
2706 S:      Maintained
2707 F:      drivers/connector/
2708
2709 CONTROL GROUP (CGROUP)
2710 M:      Tejun Heo <tj@kernel.org>
2711 M:      Li Zefan <lizefan@huawei.com>
2712 L:      cgroups@vger.kernel.org
2713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2714 S:      Maintained
2715 F:      Documentation/cgroups/
2716 F:      include/linux/cgroup*
2717 F:      kernel/cgroup*
2718
2719 CONTROL GROUP - CPUSET
2720 M:      Li Zefan <lizefan@huawei.com>
2721 L:      cgroups@vger.kernel.org
2722 W:      http://www.bullopensource.org/cpuset/
2723 W:      http://oss.sgi.com/projects/cpusets/
2724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2725 S:      Maintained
2726 F:      Documentation/cgroups/cpusets.txt
2727 F:      include/linux/cpuset.h
2728 F:      kernel/cpuset.c
2729
2730 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2731 M:      Johannes Weiner <hannes@cmpxchg.org>
2732 M:      Michal Hocko <mhocko@suse.cz>
2733 L:      cgroups@vger.kernel.org
2734 L:      linux-mm@kvack.org
2735 S:      Maintained
2736 F:      mm/memcontrol.c
2737 F:      mm/swap_cgroup.c
2738
2739 CORETEMP HARDWARE MONITORING DRIVER
2740 M:      Fenghua Yu <fenghua.yu@intel.com>
2741 L:      lm-sensors@lm-sensors.org
2742 S:      Maintained
2743 F:      Documentation/hwmon/coretemp
2744 F:      drivers/hwmon/coretemp.c
2745
2746 COSA/SRP SYNC SERIAL DRIVER
2747 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2748 W:      http://www.fi.muni.cz/~kas/cosa/
2749 S:      Maintained
2750 F:      drivers/net/wan/cosa*
2751
2752 CPMAC ETHERNET DRIVER
2753 M:      Florian Fainelli <florian@openwrt.org>
2754 L:      netdev@vger.kernel.org
2755 S:      Maintained
2756 F:      drivers/net/ethernet/ti/cpmac.c
2757
2758 CPU FREQUENCY DRIVERS
2759 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
2760 M:      Viresh Kumar <viresh.kumar@linaro.org>
2761 L:      linux-pm@vger.kernel.org
2762 S:      Maintained
2763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2764 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2765 F:      drivers/cpufreq/
2766 F:      include/linux/cpufreq.h
2767
2768 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2769 M:      Viresh Kumar <viresh.kumar@linaro.org>
2770 M:      Sudeep Holla <sudeep.holla@arm.com>
2771 L:      linux-pm@vger.kernel.org
2772 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2773 S:      Maintained
2774 F:      drivers/cpufreq/arm_big_little.h
2775 F:      drivers/cpufreq/arm_big_little.c
2776 F:      drivers/cpufreq/arm_big_little_dt.c
2777
2778 CPUIDLE DRIVER - ARM BIG LITTLE
2779 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2780 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2781 L:      linux-pm@vger.kernel.org
2782 L:      linux-arm-kernel@lists.infradead.org
2783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2784 S:      Maintained
2785 F:      drivers/cpuidle/cpuidle-big_little.c
2786
2787 CPUIDLE DRIVER - ARM EXYNOS
2788 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2789 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2790 M:      Kukjin Kim <kgene@kernel.org>
2791 L:      linux-pm@vger.kernel.org
2792 L:      linux-samsung-soc@vger.kernel.org
2793 S:      Supported
2794 F:      drivers/cpuidle/cpuidle-exynos.c
2795 F:      arch/arm/mach-exynos/pm.c
2796
2797 CPUIDLE DRIVERS
2798 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
2799 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2800 L:      linux-pm@vger.kernel.org
2801 S:      Maintained
2802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2803 F:      drivers/cpuidle/*
2804 F:      include/linux/cpuidle.h
2805
2806 CPUID/MSR DRIVER
2807 M:      "H. Peter Anvin" <hpa@zytor.com>
2808 S:      Maintained
2809 F:      arch/x86/kernel/cpuid.c
2810 F:      arch/x86/kernel/msr.c
2811
2812 CPU POWER MONITORING SUBSYSTEM
2813 M:      Thomas Renninger <trenn@suse.de>
2814 L:      linux-pm@vger.kernel.org
2815 S:      Maintained
2816 F:      tools/power/cpupower/
2817
2818 CRAMFS FILESYSTEM
2819 W:      http://sourceforge.net/projects/cramfs/
2820 S:      Orphan / Obsolete
2821 F:      Documentation/filesystems/cramfs.txt
2822 F:      fs/cramfs/
2823
2824 CRIS PORT
2825 M:      Mikael Starvik <starvik@axis.com>
2826 M:      Jesper Nilsson <jesper.nilsson@axis.com>
2827 L:      linux-cris-kernel@axis.com
2828 W:      http://developer.axis.com
2829 S:      Maintained
2830 F:      arch/cris/
2831 F:      drivers/tty/serial/crisv10.*
2832
2833 CRYPTO API
2834 M:      Herbert Xu <herbert@gondor.apana.org.au>
2835 M:      "David S. Miller" <davem@davemloft.net>
2836 L:      linux-crypto@vger.kernel.org
2837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2838 S:      Maintained
2839 F:      Documentation/crypto/
2840 F:      Documentation/DocBook/crypto-API.tmpl
2841 F:      arch/*/crypto/
2842 F:      crypto/
2843 F:      drivers/crypto/
2844 F:      include/crypto/
2845
2846 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2847 M:      Neil Horman <nhorman@tuxdriver.com>
2848 L:      linux-crypto@vger.kernel.org
2849 S:      Maintained
2850 F:      crypto/ansi_cprng.c
2851 F:      crypto/rng.c
2852
2853 CS5535 Audio ALSA driver
2854 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
2855 S:      Maintained
2856 F:      sound/pci/cs5535audio/
2857
2858 CW1200 WLAN driver
2859 M:      Solomon Peachy <pizza@shaftnet.org>
2860 S:      Maintained
2861 F:      drivers/net/wireless/cw1200/
2862
2863 CX18 VIDEO4LINUX DRIVER
2864 M:      Andy Walls <awalls@md.metrocast.net>
2865 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
2866 L:      linux-media@vger.kernel.org
2867 T:      git git://linuxtv.org/media_tree.git
2868 W:      http://linuxtv.org
2869 W:      http://www.ivtvdriver.org/index.php/Cx18
2870 S:      Maintained
2871 F:      Documentation/video4linux/cx18.txt
2872 F:      drivers/media/pci/cx18/
2873 F:      include/uapi/linux/ivtv*
2874
2875 CX2341X MPEG ENCODER HELPER MODULE
2876 M:      Hans Verkuil <hverkuil@xs4all.nl>
2877 L:      linux-media@vger.kernel.org
2878 T:      git git://linuxtv.org/media_tree.git
2879 W:      http://linuxtv.org
2880 S:      Maintained
2881 F:      drivers/media/common/cx2341x*
2882 F:      include/media/cx2341x*
2883
2884 CX24120 MEDIA DRIVER
2885 M:      Jemma Denson <jdenson@gmail.com>
2886 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
2887 L:      linux-media@vger.kernel.org
2888 W:      http://linuxtv.org/
2889 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
2890 S:      Maintained
2891 F:      drivers/media/dvb-frontends/cx24120*
2892
2893 CX88 VIDEO4LINUX DRIVER
2894 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2895 L:      linux-media@vger.kernel.org
2896 W:      http://linuxtv.org
2897 T:      git git://linuxtv.org/media_tree.git
2898 S:      Odd fixes
2899 F:      Documentation/video4linux/cx88/
2900 F:      drivers/media/pci/cx88/
2901
2902 CXD2820R MEDIA DRIVER
2903 M:      Antti Palosaari <crope@iki.fi>
2904 L:      linux-media@vger.kernel.org
2905 W:      http://linuxtv.org/
2906 W:      http://palosaari.fi/linux/
2907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
2908 T:      git git://linuxtv.org/anttip/media_tree.git
2909 S:      Maintained
2910 F:      drivers/media/dvb-frontends/cxd2820r*
2911
2912 CXGB3 ETHERNET DRIVER (CXGB3)
2913 M:      Santosh Raspatur <santosh@chelsio.com>
2914 L:      netdev@vger.kernel.org
2915 W:      http://www.chelsio.com
2916 S:      Supported
2917 F:      drivers/net/ethernet/chelsio/cxgb3/
2918
2919 CXGB3 ISCSI DRIVER (CXGB3I)
2920 M:      Karen Xie <kxie@chelsio.com>
2921 L:      linux-scsi@vger.kernel.org
2922 W:      http://www.chelsio.com
2923 S:      Supported
2924 F:      drivers/scsi/cxgbi/cxgb3i
2925
2926 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
2927 M:      Steve Wise <swise@chelsio.com>
2928 L:      linux-rdma@vger.kernel.org
2929 W:      http://www.openfabrics.org
2930 S:      Supported
2931 F:      drivers/infiniband/hw/cxgb3/
2932
2933 CXGB4 ETHERNET DRIVER (CXGB4)
2934 M:      Hariprasad S <hariprasad@chelsio.com>
2935 L:      netdev@vger.kernel.org
2936 W:      http://www.chelsio.com
2937 S:      Supported
2938 F:      drivers/net/ethernet/chelsio/cxgb4/
2939
2940 CXGB4 ISCSI DRIVER (CXGB4I)
2941 M:      Karen Xie <kxie@chelsio.com>
2942 L:      linux-scsi@vger.kernel.org
2943 W:      http://www.chelsio.com
2944 S:      Supported
2945 F:      drivers/scsi/cxgbi/cxgb4i
2946
2947 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2948 M:      Steve Wise <swise@chelsio.com>
2949 L:      linux-rdma@vger.kernel.org
2950 W:      http://www.openfabrics.org
2951 S:      Supported
2952 F:      drivers/infiniband/hw/cxgb4/
2953
2954 CXGB4VF ETHERNET DRIVER (CXGB4VF)
2955 M:      Casey Leedom <leedom@chelsio.com>
2956 L:      netdev@vger.kernel.org
2957 W:      http://www.chelsio.com
2958 S:      Supported
2959 F:      drivers/net/ethernet/chelsio/cxgb4vf/
2960
2961 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
2962 M:      Ian Munsie <imunsie@au1.ibm.com>
2963 M:      Michael Neuling <mikey@neuling.org>
2964 L:      linuxppc-dev@lists.ozlabs.org
2965 S:      Supported
2966 F:      drivers/misc/cxl/
2967 F:      include/misc/cxl.h
2968 F:      include/uapi/misc/cxl.h
2969 F:      Documentation/powerpc/cxl.txt
2970 F:      Documentation/powerpc/cxl.txt
2971 F:      Documentation/ABI/testing/sysfs-class-cxl
2972
2973 STMMAC ETHERNET DRIVER
2974 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
2975 L:      netdev@vger.kernel.org
2976 W:      http://www.stlinux.com
2977 S:      Supported
2978 F:      drivers/net/ethernet/stmicro/stmmac/
2979
2980 CYBERPRO FB DRIVER
2981 M:      Russell King <linux@arm.linux.org.uk>
2982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2983 W:      http://www.arm.linux.org.uk/
2984 S:      Maintained
2985 F:      drivers/video/fbdev/cyber2000fb.*
2986
2987 CYCLADES ASYNC MUX DRIVER
2988 W:      http://www.cyclades.com/
2989 S:      Orphan
2990 F:      drivers/tty/cyclades.c
2991 F:      include/linux/cyclades.h
2992 F:      include/uapi/linux/cyclades.h
2993
2994 CYCLADES PC300 DRIVER
2995 W:      http://www.cyclades.com/
2996 S:      Orphan
2997 F:      drivers/net/wan/pc300*
2998
2999 CYPRESS_FIRMWARE MEDIA DRIVER
3000 M:      Antti Palosaari <crope@iki.fi>
3001 L:      linux-media@vger.kernel.org
3002 W:      http://linuxtv.org/
3003 W:      http://palosaari.fi/linux/
3004 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3005 T:      git git://linuxtv.org/anttip/media_tree.git
3006 S:      Maintained
3007 F:      drivers/media/common/cypress_firmware*
3008
3009 CYTTSP TOUCHSCREEN DRIVER
3010 M:      Ferruh Yigit <fery@cypress.com>
3011 L:      linux-input@vger.kernel.org
3012 S:      Supported
3013 F:      drivers/input/touchscreen/cyttsp*
3014 F:      include/linux/input/cyttsp.h
3015
3016 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3017 M:      Joshua Kinard <kumba@gentoo.org>
3018 S:      Maintained
3019 F:      drivers/rtc/rtc-ds1685.c
3020 F:      include/linux/rtc/ds1685.h
3021
3022 DAMA SLAVE for AX.25
3023 M:      Joerg Reuter <jreuter@yaina.de>
3024 W:      http://yaina.de/jreuter/
3025 W:      http://www.qsl.net/dl1bke/
3026 L:      linux-hams@vger.kernel.org
3027 S:      Maintained
3028 F:      net/ax25/af_ax25.c
3029 F:      net/ax25/ax25_dev.c
3030 F:      net/ax25/ax25_ds_*
3031 F:      net/ax25/ax25_in.c
3032 F:      net/ax25/ax25_out.c
3033 F:      net/ax25/ax25_timer.c
3034 F:      net/ax25/sysctl_net_ax25.c
3035
3036 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3037 L:      netdev@vger.kernel.org
3038 S:      Orphan
3039 F:      Documentation/networking/dmfe.txt
3040 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3041
3042 DC390/AM53C974 SCSI driver
3043 M:      Hannes Reinecke <hare@suse.de>
3044 L:      linux-scsi@vger.kernel.org
3045 S:      Maintained
3046 F:      drivers/scsi/am53c974.c
3047
3048 DC395x SCSI driver
3049 M:      Oliver Neukum <oliver@neukum.org>
3050 M:      Ali Akcaagac <aliakc@web.de>
3051 M:      Jamie Lenehan <lenehan@twibble.org>
3052 L:      dc395x@twibble.org
3053 W:      http://twibble.org/dist/dc395x/
3054 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3055 S:      Maintained
3056 F:      Documentation/scsi/dc395x.txt
3057 F:      drivers/scsi/dc395x.*
3058
3059 DCCP PROTOCOL
3060 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3061 L:      dccp@vger.kernel.org
3062 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3063 S:      Maintained
3064 F:      include/linux/dccp.h
3065 F:      include/uapi/linux/dccp.h
3066 F:      include/linux/tfrc.h
3067 F:      net/dccp/
3068
3069 DECnet NETWORK LAYER
3070 W:      http://linux-decnet.sourceforge.net
3071 L:      linux-decnet-user@lists.sourceforge.net
3072 S:      Orphan
3073 F:      Documentation/networking/decnet.txt
3074 F:      net/decnet/
3075
3076 DECSTATION PLATFORM SUPPORT
3077 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3078 L:      linux-mips@linux-mips.org
3079 W:      http://www.linux-mips.org/wiki/DECstation
3080 S:      Maintained
3081 F:      arch/mips/dec/
3082 F:      arch/mips/include/asm/dec/
3083 F:      arch/mips/include/asm/mach-dec/
3084
3085 DEFXX FDDI NETWORK DRIVER
3086 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3087 S:      Maintained
3088 F:      drivers/net/fddi/defxx.*
3089
3090 DELL LAPTOP DRIVER
3091 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3092 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3093 L:      platform-driver-x86@vger.kernel.org
3094 S:      Maintained
3095 F:      drivers/platform/x86/dell-laptop.c
3096
3097 DELL LAPTOP FREEFALL DRIVER
3098 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3099 S:      Maintained
3100 F:      drivers/platform/x86/dell-smo8800.c
3101
3102 DELL LAPTOP SMM DRIVER
3103 M:      Guenter Roeck <linux@roeck-us.net>
3104 S:      Maintained
3105 F:      drivers/char/i8k.c
3106 F:      include/uapi/linux/i8k.h
3107
3108 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3109 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3110 S:      Maintained
3111 F:      Documentation/dcdbas.txt
3112 F:      drivers/firmware/dcdbas.*
3113
3114 DELL WMI EXTRAS DRIVER
3115 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3116 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3117 S:      Maintained
3118 F:      drivers/platform/x86/dell-wmi.c
3119
3120 DESIGNWARE USB2 DRD IP DRIVER
3121 M:      John Youn <johnyoun@synopsys.com>
3122 L:      linux-usb@vger.kernel.org
3123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3124 S:      Maintained
3125 F:      drivers/usb/dwc2/
3126
3127 DESIGNWARE USB3 DRD IP DRIVER
3128 M:      Felipe Balbi <balbi@ti.com>
3129 L:      linux-usb@vger.kernel.org
3130 L:      linux-omap@vger.kernel.org
3131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3132 S:      Maintained
3133 F:      drivers/usb/dwc3/
3134
3135 DEVICE COREDUMP (DEV_COREDUMP)
3136 M:      Johannes Berg <johannes@sipsolutions.net>
3137 L:      linux-kernel@vger.kernel.org
3138 S:      Maintained
3139 F:      drivers/base/devcoredump.c
3140 F:      include/linux/devcoredump.h
3141
3142 DEVICE FREQUENCY (DEVFREQ)
3143 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3144 M:      Kyungmin Park <kyungmin.park@samsung.com>
3145 L:      linux-pm@vger.kernel.org
3146 S:      Maintained
3147 F:      drivers/devfreq/
3148
3149 DEVICE NUMBER REGISTRY
3150 M:      Torben Mathiasen <device@lanana.org>
3151 W:      http://lanana.org/docs/device-list/index.html
3152 S:      Maintained
3153
3154 DEVICE-MAPPER  (LVM)
3155 M:      Alasdair Kergon <agk@redhat.com>
3156 M:      Mike Snitzer <snitzer@redhat.com>
3157 M:      dm-devel@redhat.com
3158 L:      dm-devel@redhat.com
3159 W:      http://sources.redhat.com/dm
3160 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3162 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3163 S:      Maintained
3164 F:      Documentation/device-mapper/
3165 F:      drivers/md/dm*
3166 F:      drivers/md/persistent-data/
3167 F:      include/linux/device-mapper.h
3168 F:      include/linux/dm-*.h
3169 F:      include/uapi/linux/dm-*.h
3170
3171 DIALOG SEMICONDUCTOR DRIVERS
3172 M:      Support Opensource <support.opensource@diasemi.com>
3173 W:      http://www.dialog-semiconductor.com/products
3174 S:      Supported
3175 F:      Documentation/hwmon/da90??
3176 F:      drivers/gpio/gpio-da90??.c
3177 F:      drivers/hwmon/da90??-hwmon.c
3178 F:      drivers/iio/adc/da91??-*.c
3179 F:      drivers/input/misc/da90??_onkey.c
3180 F:      drivers/input/touchscreen/da9052_tsi.c
3181 F:      drivers/leds/leds-da90??.c
3182 F:      drivers/mfd/da903x.c
3183 F:      drivers/mfd/da90??-*.c
3184 F:      drivers/mfd/da91??-*.c
3185 F:      drivers/power/da9052-battery.c
3186 F:      drivers/power/da91??-*.c
3187 F:      drivers/regulator/da903x.c
3188 F:      drivers/regulator/da9???-regulator.[ch]
3189 F:      drivers/rtc/rtc-da90??.c
3190 F:      drivers/video/backlight/da90??_bl.c
3191 F:      drivers/watchdog/da90??_wdt.c
3192 F:      include/linux/mfd/da903x.h
3193 F:      include/linux/mfd/da9052/
3194 F:      include/linux/mfd/da9055/
3195 F:      include/linux/mfd/da9063/
3196 F:      include/linux/mfd/da9150/
3197 F:      include/sound/da[79]*.h
3198 F:      sound/soc/codecs/da[79]*.[ch]
3199
3200 DIGI NEO AND CLASSIC PCI PRODUCTS
3201 M:      Lidza Louina <lidza.louina@gmail.com>
3202 M:      Mark Hounschell <markh@compro.net>
3203 L:      driverdev-devel@linuxdriverproject.org
3204 S:      Maintained
3205 F:      drivers/staging/dgnc/
3206
3207 DIGI EPCA PCI PRODUCTS
3208 M:      Lidza Louina <lidza.louina@gmail.com>
3209 M:      Mark Hounschell <markh@compro.net>
3210 M:      Daeseok Youn <daeseok.youn@gmail.com>
3211 L:      driverdev-devel@linuxdriverproject.org
3212 S:      Maintained
3213 F:      drivers/staging/dgap/
3214
3215 DIOLAN U2C-12 I2C DRIVER
3216 M:      Guenter Roeck <linux@roeck-us.net>
3217 L:      linux-i2c@vger.kernel.org
3218 S:      Maintained
3219 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3220
3221 DIRECT ACCESS (DAX)
3222 M:      Matthew Wilcox <willy@linux.intel.com>
3223 L:      linux-fsdevel@vger.kernel.org
3224 S:      Supported
3225 F:      fs/dax.c
3226
3227 DIRECTORY NOTIFICATION (DNOTIFY)
3228 M:      Eric Paris <eparis@parisplace.org>
3229 S:      Maintained
3230 F:      Documentation/filesystems/dnotify.txt
3231 F:      fs/notify/dnotify/
3232 F:      include/linux/dnotify.h
3233
3234 DISK GEOMETRY AND PARTITION HANDLING
3235 M:      Andries Brouwer <aeb@cwi.nl>
3236 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3237 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3238 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3239 S:      Maintained
3240
3241 DISKQUOTA
3242 M:      Jan Kara <jack@suse.cz>
3243 S:      Maintained
3244 F:      Documentation/filesystems/quota.txt
3245 F:      fs/quota/
3246 F:      include/linux/quota*.h
3247 F:      include/uapi/linux/quota*.h
3248
3249 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3250 M:      Bernie Thompson <bernie@plugable.com>
3251 L:      linux-fbdev@vger.kernel.org
3252 S:      Maintained
3253 W:      http://plugable.com/category/projects/udlfb/
3254 F:      drivers/video/fbdev/udlfb.c
3255 F:      include/video/udlfb.h
3256 F:      Documentation/fb/udlfb.txt
3257
3258 DISTRIBUTED LOCK MANAGER (DLM)
3259 M:      Christine Caulfield <ccaulfie@redhat.com>
3260 M:      David Teigland <teigland@redhat.com>
3261 L:      cluster-devel@redhat.com
3262 W:      http://sources.redhat.com/cluster/
3263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3264 S:      Supported
3265 F:      fs/dlm/
3266
3267 DMA BUFFER SHARING FRAMEWORK
3268 M:      Sumit Semwal <sumit.semwal@linaro.org>
3269 S:      Maintained
3270 L:      linux-media@vger.kernel.org
3271 L:      dri-devel@lists.freedesktop.org
3272 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3273 F:      drivers/dma-buf/
3274 F:      include/linux/dma-buf*
3275 F:      include/linux/reservation.h
3276 F:      include/linux/*fence.h
3277 F:      Documentation/dma-buf-sharing.txt
3278 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3279
3280 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3281 M:      Vinod Koul <vinod.koul@intel.com>
3282 L:      dmaengine@vger.kernel.org
3283 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3284 S:      Maintained
3285 F:      drivers/dma/
3286 F:      include/linux/dmaengine.h
3287 F:      Documentation/dmaengine/
3288 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3289
3290 DME1737 HARDWARE MONITOR DRIVER
3291 M:      Juerg Haefliger <juergh@gmail.com>
3292 L:      lm-sensors@lm-sensors.org
3293 S:      Maintained
3294 F:      Documentation/hwmon/dme1737
3295 F:      drivers/hwmon/dme1737.c
3296
3297 DMI/SMBIOS SUPPORT
3298 M:      Jean Delvare <jdelvare@suse.de>
3299 S:      Maintained
3300 F:      drivers/firmware/dmi-id.c
3301 F:      drivers/firmware/dmi_scan.c
3302 F:      include/linux/dmi.h
3303
3304 DOCUMENTATION
3305 M:      Jonathan Corbet <corbet@lwn.net>
3306 L:      linux-doc@vger.kernel.org
3307 S:      Maintained
3308 F:      Documentation/
3309 X:      Documentation/ABI/
3310 X:      Documentation/devicetree/
3311 X:      Documentation/acpi
3312 X:      Documentation/power
3313 X:      Documentation/spi
3314 T:      git git://git.lwn.net/linux-2.6.git docs-next
3315
3316 DOUBLETALK DRIVER
3317 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3318 L:      blinux-list@redhat.com
3319 S:      Maintained
3320 F:      drivers/char/dtlk.c
3321 F:      include/linux/dtlk.h
3322
3323 DPT_I2O SCSI RAID DRIVER
3324 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3325 L:      linux-scsi@vger.kernel.org
3326 W:      http://www.adaptec.com/
3327 S:      Maintained
3328 F:      drivers/scsi/dpt*
3329 F:      drivers/scsi/dpt/
3330
3331 DRBD DRIVER
3332 P:      Philipp Reisner
3333 P:      Lars Ellenberg
3334 M:      drbd-dev@lists.linbit.com
3335 L:      drbd-user@lists.linbit.com
3336 W:      http://www.drbd.org
3337 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3338 T:      git git://git.drbd.org/drbd-8.3.git
3339 S:      Supported
3340 F:      drivers/block/drbd/
3341 F:      lib/lru_cache.c
3342 F:      Documentation/blockdev/drbd/
3343
3344 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
3345 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3347 S:      Supported
3348 F:      Documentation/kobject.txt
3349 F:      drivers/base/
3350 F:      fs/sysfs/
3351 F:      fs/debugfs/
3352 F:      include/linux/kobj*
3353 F:      include/linux/debugfs.h
3354 F:      lib/kobj*
3355
3356 DRM DRIVERS
3357 M:      David Airlie <airlied@linux.ie>
3358 L:      dri-devel@lists.freedesktop.org
3359 T:      git git://people.freedesktop.org/~airlied/linux
3360 S:      Maintained
3361 F:      drivers/gpu/drm/
3362 F:      drivers/gpu/vga/
3363 F:      include/drm/
3364 F:      include/uapi/drm/
3365
3366 RADEON DRM DRIVERS
3367 M:      Alex Deucher <alexander.deucher@amd.com>
3368 M:      Christian König <christian.koenig@amd.com>
3369 L:      dri-devel@lists.freedesktop.org
3370 T:      git git://people.freedesktop.org/~agd5f/linux
3371 S:      Supported
3372 F:      drivers/gpu/drm/radeon/
3373 F:      include/uapi/drm/radeon*
3374
3375 DRM PANEL DRIVERS
3376 M:      Thierry Reding <thierry.reding@gmail.com>
3377 L:      dri-devel@lists.freedesktop.org
3378 T:      git git://anongit.freedesktop.org/tegra/linux.git
3379 S:      Maintained
3380 F:      drivers/gpu/drm/drm_panel.c
3381 F:      drivers/gpu/drm/panel/
3382 F:      include/drm/drm_panel.h
3383 F:      Documentation/devicetree/bindings/panel/
3384
3385 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3386 M:      Daniel Vetter <daniel.vetter@intel.com>
3387 M:      Jani Nikula <jani.nikula@linux.intel.com>
3388 L:      intel-gfx@lists.freedesktop.org
3389 L:      dri-devel@lists.freedesktop.org
3390 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3391 T:      git git://anongit.freedesktop.org/drm-intel
3392 S:      Supported
3393 F:      drivers/gpu/drm/i915/
3394 F:      include/drm/i915*
3395 F:      include/uapi/drm/i915*
3396
3397 DRM DRIVERS FOR EXYNOS
3398 M:      Inki Dae <inki.dae@samsung.com>
3399 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3400 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3401 M:      Kyungmin Park <kyungmin.park@samsung.com>
3402 L:      dri-devel@lists.freedesktop.org
3403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3404 S:      Supported
3405 F:      drivers/gpu/drm/exynos/
3406 F:      include/drm/exynos*
3407 F:      include/uapi/drm/exynos*
3408
3409 DRM DRIVERS FOR FREESCALE IMX
3410 M:      Philipp Zabel <p.zabel@pengutronix.de>
3411 L:      dri-devel@lists.freedesktop.org
3412 S:      Maintained
3413 F:      drivers/gpu/drm/imx/
3414 F:      Documentation/devicetree/bindings/drm/imx/
3415
3416 DRM DRIVERS FOR NVIDIA TEGRA
3417 M:      Thierry Reding <thierry.reding@gmail.com>
3418 M:      Terje Bergström <tbergstrom@nvidia.com>
3419 L:      dri-devel@lists.freedesktop.org
3420 L:      linux-tegra@vger.kernel.org
3421 T:      git git://anongit.freedesktop.org/tegra/linux.git
3422 S:      Supported
3423 F:      drivers/gpu/drm/tegra/
3424 F:      drivers/gpu/host1x/
3425 F:      include/linux/host1x.h
3426 F:      include/uapi/drm/tegra_drm.h
3427 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3428
3429 DRM DRIVERS FOR RENESAS
3430 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3431 L:      dri-devel@lists.freedesktop.org
3432 L:      linux-sh@vger.kernel.org
3433 T:      git git://people.freedesktop.org/~airlied/linux
3434 S:      Supported
3435 F:      drivers/gpu/drm/rcar-du/
3436 F:      drivers/gpu/drm/shmobile/
3437 F:      include/linux/platform_data/shmob_drm.h
3438
3439 DRM DRIVERS FOR ROCKCHIP
3440 M:      Mark Yao <mark.yao@rock-chips.com>
3441 L:      dri-devel@lists.freedesktop.org
3442 S:      Maintained
3443 F:      drivers/gpu/drm/rockchip/
3444 F:      Documentation/devicetree/bindings/video/rockchip*
3445
3446 DSBR100 USB FM RADIO DRIVER
3447 M:      Alexey Klimov <klimov.linux@gmail.com>
3448 L:      linux-media@vger.kernel.org
3449 T:      git git://linuxtv.org/media_tree.git
3450 S:      Maintained
3451 F:      drivers/media/radio/dsbr100.c
3452
3453 DSCC4 DRIVER
3454 M:      Francois Romieu <romieu@fr.zoreil.com>
3455 L:      netdev@vger.kernel.org
3456 S:      Maintained
3457 F:      drivers/net/wan/dscc4.c
3458
3459 DT3155 MEDIA DRIVER
3460 M:      Hans Verkuil <hverkuil@xs4all.nl>
3461 L:      linux-media@vger.kernel.org
3462 T:      git git://linuxtv.org/media_tree.git
3463 W:      http://linuxtv.org
3464 S:      Odd Fixes
3465 F:      drivers/media/pci/dt3155/
3466
3467 DVB_USB_AF9015 MEDIA DRIVER
3468 M:      Antti Palosaari <crope@iki.fi>
3469 L:      linux-media@vger.kernel.org
3470 W:      http://linuxtv.org/
3471 W:      http://palosaari.fi/linux/
3472 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3473 T:      git git://linuxtv.org/anttip/media_tree.git
3474 S:      Maintained
3475 F:      drivers/media/usb/dvb-usb-v2/af9015*
3476
3477 DVB_USB_AF9035 MEDIA DRIVER
3478 M:      Antti Palosaari <crope@iki.fi>
3479 L:      linux-media@vger.kernel.org
3480 W:      http://linuxtv.org/
3481 W:      http://palosaari.fi/linux/
3482 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3483 T:      git git://linuxtv.org/anttip/media_tree.git
3484 S:      Maintained
3485 F:      drivers/media/usb/dvb-usb-v2/af9035*
3486
3487 DVB_USB_ANYSEE MEDIA DRIVER
3488 M:      Antti Palosaari <crope@iki.fi>
3489 L:      linux-media@vger.kernel.org
3490 W:      http://linuxtv.org/
3491 W:      http://palosaari.fi/linux/
3492 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3493 T:      git git://linuxtv.org/anttip/media_tree.git
3494 S:      Maintained
3495 F:      drivers/media/usb/dvb-usb-v2/anysee*
3496
3497 DVB_USB_AU6610 MEDIA DRIVER
3498 M:      Antti Palosaari <crope@iki.fi>
3499 L:      linux-media@vger.kernel.org
3500 W:      http://linuxtv.org/
3501 W:      http://palosaari.fi/linux/
3502 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3503 T:      git git://linuxtv.org/anttip/media_tree.git
3504 S:      Maintained
3505 F:      drivers/media/usb/dvb-usb-v2/au6610*
3506
3507 DVB_USB_CE6230 MEDIA DRIVER
3508 M:      Antti Palosaari <crope@iki.fi>
3509 L:      linux-media@vger.kernel.org
3510 W:      http://linuxtv.org/
3511 W:      http://palosaari.fi/linux/
3512 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3513 T:      git git://linuxtv.org/anttip/media_tree.git
3514 S:      Maintained
3515 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3516
3517 DVB_USB_CXUSB MEDIA DRIVER
3518 M:      Michael Krufky <mkrufky@linuxtv.org>
3519 L:      linux-media@vger.kernel.org
3520 W:      http://linuxtv.org/
3521 W:      http://github.com/mkrufky
3522 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3523 T:      git git://linuxtv.org/media_tree.git
3524 S:      Maintained
3525 F:      drivers/media/usb/dvb-usb/cxusb*
3526
3527 DVB_USB_EC168 MEDIA DRIVER
3528 M:      Antti Palosaari <crope@iki.fi>
3529 L:      linux-media@vger.kernel.org
3530 W:      http://linuxtv.org/
3531 W:      http://palosaari.fi/linux/
3532 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3533 T:      git git://linuxtv.org/anttip/media_tree.git
3534 S:      Maintained
3535 F:      drivers/media/usb/dvb-usb-v2/ec168*
3536
3537 DVB_USB_GL861 MEDIA DRIVER
3538 M:      Antti Palosaari <crope@iki.fi>
3539 L:      linux-media@vger.kernel.org
3540 W:      http://linuxtv.org/
3541 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3542 T:      git git://linuxtv.org/anttip/media_tree.git
3543 S:      Maintained
3544 F:      drivers/media/usb/dvb-usb-v2/gl861*
3545
3546 DVB_USB_MXL111SF MEDIA DRIVER
3547 M:      Michael Krufky <mkrufky@linuxtv.org>
3548 L:      linux-media@vger.kernel.org
3549 W:      http://linuxtv.org/
3550 W:      http://github.com/mkrufky
3551 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3552 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3553 S:      Maintained
3554 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3555
3556 DVB_USB_RTL28XXU MEDIA DRIVER
3557 M:      Antti Palosaari <crope@iki.fi>
3558 L:      linux-media@vger.kernel.org
3559 W:      http://linuxtv.org/
3560 W:      http://palosaari.fi/linux/
3561 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3562 T:      git git://linuxtv.org/anttip/media_tree.git
3563 S:      Maintained
3564 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3565
3566 DVB_USB_V2 MEDIA DRIVER
3567 M:      Antti Palosaari <crope@iki.fi>
3568 L:      linux-media@vger.kernel.org
3569 W:      http://linuxtv.org/
3570 W:      http://palosaari.fi/linux/
3571 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3572 T:      git git://linuxtv.org/anttip/media_tree.git
3573 S:      Maintained
3574 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3575 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3576
3577 DYNAMIC DEBUG
3578 M:      Jason Baron <jbaron@akamai.com>
3579 S:      Maintained
3580 F:      lib/dynamic_debug.c
3581 F:      include/linux/dynamic_debug.h
3582
3583 DZ DECSTATION DZ11 SERIAL DRIVER
3584 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3585 S:      Maintained
3586 F:      drivers/tty/serial/dz.*
3587
3588 E3X0 POWER BUTTON DRIVER
3589 M:      Moritz Fischer <moritz.fischer@ettus.com>
3590 L:      usrp-users@lists.ettus.com
3591 W:      http://www.ettus.com
3592 S:      Supported
3593 F:      drivers/input/misc/e3x0-button.c
3594 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3595
3596 E4000 MEDIA DRIVER
3597 M:      Antti Palosaari <crope@iki.fi>
3598 L:      linux-media@vger.kernel.org
3599 W:      http://linuxtv.org/
3600 W:      http://palosaari.fi/linux/
3601 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3602 T:      git git://linuxtv.org/anttip/media_tree.git
3603 S:      Maintained
3604 F:      drivers/media/tuners/e4000*
3605
3606 EATA ISA/EISA/PCI SCSI DRIVER
3607 M:      Dario Ballabio <ballabio_dario@emc.com>
3608 L:      linux-scsi@vger.kernel.org
3609 S:      Maintained
3610 F:      drivers/scsi/eata.c
3611
3612 EC100 MEDIA DRIVER
3613 M:      Antti Palosaari <crope@iki.fi>
3614 L:      linux-media@vger.kernel.org
3615 W:      http://linuxtv.org/
3616 W:      http://palosaari.fi/linux/
3617 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3618 T:      git git://linuxtv.org/anttip/media_tree.git
3619 S:      Maintained
3620 F:      drivers/media/dvb-frontends/ec100*
3621
3622 ECRYPT FILE SYSTEM
3623 M:      Tyler Hicks <tyhicks@canonical.com>
3624 L:      ecryptfs@vger.kernel.org
3625 W:      http://ecryptfs.org
3626 W:      https://launchpad.net/ecryptfs
3627 S:      Supported
3628 F:      Documentation/filesystems/ecryptfs.txt
3629 F:      fs/ecryptfs/
3630
3631 EDAC-CORE
3632 M:      Doug Thompson <dougthompson@xmission.com>
3633 M:      Borislav Petkov <bp@alien8.de>
3634 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3635 L:      linux-edac@vger.kernel.org
3636 W:      bluesmoke.sourceforge.net
3637 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3638 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3639 S:      Supported
3640 F:      Documentation/edac.txt
3641 F:      drivers/edac/
3642 F:      include/linux/edac.h
3643
3644 EDAC-AMD64
3645 M:      Doug Thompson <dougthompson@xmission.com>
3646 M:      Borislav Petkov <bp@alien8.de>
3647 L:      linux-edac@vger.kernel.org
3648 W:      bluesmoke.sourceforge.net
3649 S:      Maintained
3650 F:      drivers/edac/amd64_edac*
3651
3652 EDAC-CALXEDA
3653 M:      Doug Thompson <dougthompson@xmission.com>
3654 M:      Robert Richter <rric@kernel.org>
3655 L:      linux-edac@vger.kernel.org
3656 W:      bluesmoke.sourceforge.net
3657 S:      Maintained
3658 F:      drivers/edac/highbank*
3659
3660 EDAC-CAVIUM
3661 M:      Ralf Baechle <ralf@linux-mips.org>
3662 M:      David Daney <david.daney@cavium.com>
3663 L:      linux-edac@vger.kernel.org
3664 L:      linux-mips@linux-mips.org
3665 W:      bluesmoke.sourceforge.net
3666 S:      Supported
3667 F:      drivers/edac/octeon_edac*
3668
3669 EDAC-E752X
3670 M:      Mark Gross <mark.gross@intel.com>
3671 M:      Doug Thompson <dougthompson@xmission.com>
3672 L:      linux-edac@vger.kernel.org
3673 W:      bluesmoke.sourceforge.net
3674 S:      Maintained
3675 F:      drivers/edac/e752x_edac.c
3676
3677 EDAC-E7XXX
3678 M:      Doug Thompson <dougthompson@xmission.com>
3679 L:      linux-edac@vger.kernel.org
3680 W:      bluesmoke.sourceforge.net
3681 S:      Maintained
3682 F:      drivers/edac/e7xxx_edac.c
3683
3684 EDAC-GHES
3685 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3686 L:      linux-edac@vger.kernel.org
3687 W:      bluesmoke.sourceforge.net
3688 S:      Maintained
3689 F:      drivers/edac/ghes_edac.c
3690
3691 EDAC-I82443BXGX
3692 M:      Tim Small <tim@buttersideup.com>
3693 L:      linux-edac@vger.kernel.org
3694 W:      bluesmoke.sourceforge.net
3695 S:      Maintained
3696 F:      drivers/edac/i82443bxgx_edac.c
3697
3698 EDAC-I3000
3699 M:      Jason Uhlenkott <juhlenko@akamai.com>
3700 L:      linux-edac@vger.kernel.org
3701 W:      bluesmoke.sourceforge.net
3702 S:      Maintained
3703 F:      drivers/edac/i3000_edac.c
3704
3705 EDAC-I5000
3706 M:      Doug Thompson <dougthompson@xmission.com>
3707 L:      linux-edac@vger.kernel.org
3708 W:      bluesmoke.sourceforge.net
3709 S:      Maintained
3710 F:      drivers/edac/i5000_edac.c
3711
3712 EDAC-I5400
3713 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3714 L:      linux-edac@vger.kernel.org
3715 W:      bluesmoke.sourceforge.net
3716 S:      Maintained
3717 F:      drivers/edac/i5400_edac.c
3718
3719 EDAC-I7300
3720 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3721 L:      linux-edac@vger.kernel.org
3722 W:      bluesmoke.sourceforge.net
3723 S:      Maintained
3724 F:      drivers/edac/i7300_edac.c
3725
3726 EDAC-I7CORE
3727 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3728 L:      linux-edac@vger.kernel.org
3729 W:      bluesmoke.sourceforge.net
3730 S:      Maintained
3731 F:      drivers/edac/i7core_edac.c
3732
3733 EDAC-I82975X
3734 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3735 M:      "Arvind R." <arvino55@gmail.com>
3736 L:      linux-edac@vger.kernel.org
3737 W:      bluesmoke.sourceforge.net
3738 S:      Maintained
3739 F:      drivers/edac/i82975x_edac.c
3740
3741 EDAC-IE31200
3742 M:      Jason Baron <jbaron@akamai.com>
3743 L:      linux-edac@vger.kernel.org
3744 W:      bluesmoke.sourceforge.net
3745 S:      Maintained
3746 F:      drivers/edac/ie31200_edac.c
3747
3748 EDAC-MPC85XX
3749 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
3750 L:      linux-edac@vger.kernel.org
3751 W:      bluesmoke.sourceforge.net
3752 S:      Maintained
3753 F:      drivers/edac/mpc85xx_edac.[ch]
3754
3755 EDAC-PASEMI
3756 M:      Egor Martovetsky <egor@pasemi.com>
3757 L:      linux-edac@vger.kernel.org
3758 W:      bluesmoke.sourceforge.net
3759 S:      Maintained
3760 F:      drivers/edac/pasemi_edac.c
3761
3762 EDAC-R82600
3763 M:      Tim Small <tim@buttersideup.com>
3764 L:      linux-edac@vger.kernel.org
3765 W:      bluesmoke.sourceforge.net
3766 S:      Maintained
3767 F:      drivers/edac/r82600_edac.c
3768
3769 EDAC-SBRIDGE
3770 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3771 L:      linux-edac@vger.kernel.org
3772 W:      bluesmoke.sourceforge.net
3773 S:      Maintained
3774 F:      drivers/edac/sb_edac.c
3775
3776 EDIROL UA-101/UA-1000 DRIVER
3777 M:      Clemens Ladisch <clemens@ladisch.de>
3778 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3779 T:      git git://git.alsa-project.org/alsa-kernel.git
3780 S:      Maintained
3781 F:      sound/usb/misc/ua101.c
3782
3783 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3784 M:      Matt Fleming <matt.fleming@intel.com>
3785 L:      linux-efi@vger.kernel.org
3786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3787 S:      Maintained
3788 F:      Documentation/efi-stub.txt
3789 F:      arch/ia64/kernel/efi.c
3790 F:      arch/x86/boot/compressed/eboot.[ch]
3791 F:      arch/x86/include/asm/efi.h
3792 F:      arch/x86/platform/efi/*
3793 F:      drivers/firmware/efi/*
3794 F:      include/linux/efi*.h
3795
3796 EFI VARIABLE FILESYSTEM
3797 M:      Matthew Garrett <matthew.garrett@nebula.com>
3798 M:      Jeremy Kerr <jk@ozlabs.org>
3799 M:      Matt Fleming <matt.fleming@intel.com>
3800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3801 L:      linux-efi@vger.kernel.org
3802 S:      Maintained
3803 F:      fs/efivarfs/
3804
3805 EFIFB FRAMEBUFFER DRIVER
3806 L:      linux-fbdev@vger.kernel.org
3807 M:      Peter Jones <pjones@redhat.com>
3808 S:      Maintained
3809 F:      drivers/video/fbdev/efifb.c
3810
3811 EFS FILESYSTEM
3812 W:      http://aeschi.ch.eu.org/efs/
3813 S:      Orphan
3814 F:      fs/efs/
3815
3816 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3817 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3818 M:      Christoph Raisch <raisch@de.ibm.com>
3819 L:      linux-rdma@vger.kernel.org
3820 S:      Supported
3821 F:      drivers/infiniband/hw/ehca/
3822
3823 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3824 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3825 L:      netdev@vger.kernel.org
3826 S:      Maintained
3827 F:      drivers/net/ethernet/ibm/ehea/
3828
3829 EM28XX VIDEO4LINUX DRIVER
3830 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3831 L:      linux-media@vger.kernel.org
3832 W:      http://linuxtv.org
3833 T:      git git://linuxtv.org/media_tree.git
3834 S:      Maintained
3835 F:      drivers/media/usb/em28xx/
3836
3837 EMBEDDED LINUX
3838 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
3839 M:      Matt Mackall <mpm@selenic.com>
3840 M:      David Woodhouse <dwmw2@infradead.org>
3841 L:      linux-embedded@vger.kernel.org
3842 S:      Maintained
3843
3844 EMULEX LPFC FC SCSI DRIVER
3845 M:      James Smart <james.smart@emulex.com>
3846 L:      linux-scsi@vger.kernel.org
3847 W:      http://sourceforge.net/projects/lpfcxxxx
3848 S:      Supported
3849 F:      drivers/scsi/lpfc/
3850
3851 ENE CB710 FLASH CARD READER DRIVER
3852 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
3853 S:      Maintained
3854 F:      drivers/misc/cb710/
3855 F:      drivers/mmc/host/cb710-mmc.*
3856 F:      include/linux/cb710.h
3857
3858 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3859 M:      Maxim Levitsky <maximlevitsky@gmail.com>
3860 S:      Maintained
3861 F:      drivers/media/rc/ene_ir.*
3862
3863 ENHANCED ERROR HANDLING (EEH)
3864 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
3865 L:      linuxppc-dev@lists.ozlabs.org
3866 S:      Supported
3867 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
3868 F:      arch/powerpc/kernel/eeh*.c
3869
3870 EPSON S1D13XXX FRAMEBUFFER DRIVER
3871 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
3872 S:      Maintained
3873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
3874 F:      drivers/video/fbdev/s1d13xxxfb.c
3875 F:      include/video/s1d13xxxfb.h
3876
3877 ET131X NETWORK DRIVER
3878 M:      Mark Einon <mark.einon@gmail.com>
3879 S:      Odd Fixes
3880 F:      drivers/net/ethernet/agere/
3881
3882 ETHERNET BRIDGE
3883 M:      Stephen Hemminger <stephen@networkplumber.org>
3884 L:      bridge@lists.linux-foundation.org
3885 L:      netdev@vger.kernel.org
3886 W:      http://www.linuxfoundation.org/en/Net:Bridge
3887 S:      Maintained
3888 F:      include/linux/netfilter_bridge/
3889 F:      net/bridge/
3890
3891 ETHERNET PHY LIBRARY
3892 M:      Florian Fainelli <f.fainelli@gmail.com>
3893 L:      netdev@vger.kernel.org
3894 S:      Maintained
3895 F:      include/linux/phy.h
3896 F:      include/linux/phy_fixed.h
3897 F:      drivers/net/phy/
3898 F:      Documentation/networking/phy.txt
3899 F:      drivers/of/of_mdio.c
3900 F:      drivers/of/of_net.c
3901
3902 EXT2 FILE SYSTEM
3903 M:      Jan Kara <jack@suse.cz>
3904 L:      linux-ext4@vger.kernel.org
3905 S:      Maintained
3906 F:      Documentation/filesystems/ext2.txt
3907 F:      fs/ext2/
3908 F:      include/linux/ext2*
3909
3910 EXT3 FILE SYSTEM
3911 M:      Jan Kara <jack@suse.cz>
3912 M:      Andrew Morton <akpm@linux-foundation.org>
3913 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3914 L:      linux-ext4@vger.kernel.org
3915 S:      Maintained
3916 F:      Documentation/filesystems/ext3.txt
3917 F:      fs/ext3/
3918
3919 EXT4 FILE SYSTEM
3920 M:      "Theodore Ts'o" <tytso@mit.edu>
3921 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3922 L:      linux-ext4@vger.kernel.org
3923 W:      http://ext4.wiki.kernel.org
3924 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
3925 S:      Maintained
3926 F:      Documentation/filesystems/ext4.txt
3927 F:      fs/ext4/
3928
3929 Extended Verification Module (EVM)
3930 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
3931 L:      linux-ima-devel@lists.sourceforge.net
3932 L:      linux-security-module@vger.kernel.org
3933 S:      Supported
3934 F:      security/integrity/evm/
3935
3936 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3937 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3938 M:      Chanwoo Choi <cw00.choi@samsung.com>
3939 L:      linux-kernel@vger.kernel.org
3940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
3941 S:      Maintained
3942 F:      drivers/extcon/
3943 F:      Documentation/extcon/
3944
3945 EXYNOS DP DRIVER
3946 M:      Jingoo Han <jg1.han@samsung.com>
3947 L:      dri-devel@lists.freedesktop.org
3948 S:      Maintained
3949 F:      drivers/gpu/drm/exynos/exynos_dp*
3950
3951 EXYNOS MIPI DISPLAY DRIVERS
3952 M:      Inki Dae <inki.dae@samsung.com>
3953 M:      Donghwa Lee <dh09.lee@samsung.com>
3954 M:      Kyungmin Park <kyungmin.park@samsung.com>
3955 L:      linux-fbdev@vger.kernel.org
3956 S:      Maintained
3957 F:      drivers/video/fbdev/exynos/exynos_mipi*
3958 F:      include/video/exynos_mipi*
3959
3960 F71805F HARDWARE MONITORING DRIVER
3961 M:      Jean Delvare <jdelvare@suse.de>
3962 L:      lm-sensors@lm-sensors.org
3963 S:      Maintained
3964 F:      Documentation/hwmon/f71805f
3965 F:      drivers/hwmon/f71805f.c
3966
3967 FC0011 TUNER DRIVER
3968 M:      Michael Buesch <m@bues.ch>
3969 L:      linux-media@vger.kernel.org
3970 S:      Maintained
3971 F:      drivers/media/tuners/fc0011.h
3972 F:      drivers/media/tuners/fc0011.c
3973
3974 FC2580 MEDIA DRIVER
3975 M:      Antti Palosaari <crope@iki.fi>
3976 L:      linux-media@vger.kernel.org
3977 W:      http://linuxtv.org/
3978 W:      http://palosaari.fi/linux/
3979 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3980 T:      git git://linuxtv.org/anttip/media_tree.git
3981 S:      Maintained
3982 F:      drivers/media/tuners/fc2580*
3983
3984 FANOTIFY
3985 M:      Eric Paris <eparis@redhat.com>
3986 S:      Maintained
3987 F:      fs/notify/fanotify/
3988 F:      include/linux/fanotify.h
3989 F:      include/uapi/linux/fanotify.h
3990
3991 FARSYNC SYNCHRONOUS DRIVER
3992 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
3993 W:      http://www.farsite.co.uk/
3994 S:      Supported
3995 F:      drivers/net/wan/farsync.*
3996
3997 FAULT INJECTION SUPPORT
3998 M:      Akinobu Mita <akinobu.mita@gmail.com>
3999 S:      Supported
4000 F:      Documentation/fault-injection/
4001 F:      lib/fault-inject.c
4002
4003 FBTFT Framebuffer drivers
4004 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4005 M:      Noralf Trønnes <noralf@tronnes.org>
4006 S:      Maintained
4007 F:      drivers/staging/fbtft/
4008
4009 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4010 M:      Vasu Dev <vasu.dev@intel.com>
4011 L:      fcoe-devel@open-fcoe.org
4012 W:      www.Open-FCoE.org
4013 S:      Supported
4014 F:      drivers/scsi/libfc/
4015 F:      drivers/scsi/fcoe/
4016 F:      include/scsi/fc/
4017 F:      include/scsi/libfc.h
4018 F:      include/scsi/libfcoe.h
4019 F:      include/uapi/scsi/fc/
4020
4021 FILE LOCKING (flock() and fcntl()/lockf())
4022 M:      Jeff Layton <jlayton@poochiereds.net>
4023 M:      J. Bruce Fields <bfields@fieldses.org>
4024 L:      linux-fsdevel@vger.kernel.org
4025 S:      Maintained
4026 F:      include/linux/fcntl.h
4027 F:      include/linux/fs.h
4028 F:      include/uapi/linux/fcntl.h
4029 F:      include/uapi/linux/fs.h
4030 F:      fs/fcntl.c
4031 F:      fs/locks.c
4032
4033 FILESYSTEMS (VFS and infrastructure)
4034 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4035 L:      linux-fsdevel@vger.kernel.org
4036 S:      Maintained
4037 F:      fs/*
4038
4039 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4040 M:      Riku Voipio <riku.voipio@iki.fi>
4041 L:      lm-sensors@lm-sensors.org
4042 S:      Maintained
4043 F:      drivers/hwmon/f75375s.c
4044 F:      include/linux/f75375s.h
4045
4046 FIREWIRE AUDIO DRIVERS
4047 M:      Clemens Ladisch <clemens@ladisch.de>
4048 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4049 T:      git git://git.alsa-project.org/alsa-kernel.git
4050 S:      Maintained
4051 F:      sound/firewire/
4052
4053 FIREWIRE MEDIA DRIVERS (firedtv)
4054 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4055 L:      linux-media@vger.kernel.org
4056 L:      linux1394-devel@lists.sourceforge.net
4057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4058 S:      Maintained
4059 F:      drivers/media/firewire/
4060
4061 FIREWIRE SBP-2 TARGET
4062 M:      Chris Boot <bootc@bootc.net>
4063 L:      linux-scsi@vger.kernel.org
4064 L:      target-devel@vger.kernel.org
4065 L:      linux1394-devel@lists.sourceforge.net
4066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4067 S:      Maintained
4068 F:      drivers/target/sbp/
4069
4070 FIREWIRE SUBSYSTEM
4071 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4072 L:      linux1394-devel@lists.sourceforge.net
4073 W:      http://ieee1394.wiki.kernel.org/
4074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4075 S:      Maintained
4076 F:      drivers/firewire/
4077 F:      include/linux/firewire.h
4078 F:      include/uapi/linux/firewire*.h
4079 F:      tools/firewire/
4080
4081 FIRMWARE LOADER (request_firmware)
4082 M:      Ming Lei <ming.lei@canonical.com>
4083 L:      linux-kernel@vger.kernel.org
4084 S:      Maintained
4085 F:      Documentation/firmware_class/
4086 F:      drivers/base/firmware*.c
4087 F:      include/linux/firmware.h
4088
4089 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4090 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4091 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4092 S:      Maintained
4093 F:      drivers/block/rsxx/
4094
4095 FLOPPY DRIVER
4096 M:      Jiri Kosina <jkosina@suse.cz>
4097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4098 S:      Odd fixes
4099 F:      drivers/block/floppy.c
4100
4101 FMC SUBSYSTEM
4102 M:      Alessandro Rubini <rubini@gnudd.com>
4103 W:      http://www.ohwr.org/projects/fmc-bus
4104 S:      Supported
4105 F:      drivers/fmc/
4106 F:      include/linux/fmc*.h
4107 F:      include/linux/ipmi-fru.h
4108 K:      fmc_d.*register
4109
4110 FPU EMULATOR
4111 M:      Bill Metzenthen <billm@melbpc.org.au>
4112 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4113 S:      Maintained
4114 F:      arch/x86/math-emu/
4115
4116 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4117 L:      netdev@vger.kernel.org
4118 S:      Orphan
4119 F:      drivers/net/wan/dlci.c
4120 F:      drivers/net/wan/sdla.c
4121
4122 FRAMEBUFFER LAYER
4123 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4124 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4125 L:      linux-fbdev@vger.kernel.org
4126 W:      http://linux-fbdev.sourceforge.net/
4127 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4129 S:      Maintained
4130 F:      Documentation/fb/
4131 F:      Documentation/devicetree/bindings/fb/
4132 F:      drivers/video/
4133 F:      include/video/
4134 F:      include/linux/fb.h
4135 F:      include/uapi/video/
4136 F:      include/uapi/linux/fb.h
4137
4138 FREESCALE DIU FRAMEBUFFER DRIVER
4139 M:      Timur Tabi <timur@tabi.org>
4140 L:      linux-fbdev@vger.kernel.org
4141 S:      Maintained
4142 F:      drivers/video/fbdev/fsl-diu-fb.*
4143
4144 FREESCALE DMA DRIVER
4145 M:      Li Yang <leoli@freescale.com>
4146 M:      Zhang Wei <zw@zh-kernel.org>
4147 L:      linuxppc-dev@lists.ozlabs.org
4148 S:      Maintained
4149 F:      drivers/dma/fsldma.*
4150
4151 FREESCALE I2C CPM DRIVER
4152 M:      Jochen Friedrich <jochen@scram.de>
4153 L:      linuxppc-dev@lists.ozlabs.org
4154 L:      linux-i2c@vger.kernel.org
4155 S:      Maintained
4156 F:      drivers/i2c/busses/i2c-cpm.c
4157
4158 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4159 M:      Sascha Hauer <kernel@pengutronix.de>
4160 L:      linux-fbdev@vger.kernel.org
4161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4162 S:      Maintained
4163 F:      include/linux/platform_data/video-imxfb.h
4164 F:      drivers/video/fbdev/imxfb.c
4165
4166 FREESCALE QUAD SPI DRIVER
4167 M:      Han Xu <han.xu@freescale.com>
4168 L:      linux-mtd@lists.infradead.org
4169 S:      Maintained
4170 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4171
4172 FREESCALE SOC FS_ENET DRIVER
4173 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4174 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4175 L:      linuxppc-dev@lists.ozlabs.org
4176 L:      netdev@vger.kernel.org
4177 S:      Maintained
4178 F:      drivers/net/ethernet/freescale/fs_enet/
4179 F:      include/linux/fs_enet_pd.h
4180
4181 FREESCALE QUICC ENGINE LIBRARY
4182 L:      linuxppc-dev@lists.ozlabs.org
4183 S:      Orphan
4184 F:      arch/powerpc/sysdev/qe_lib/
4185 F:      arch/powerpc/include/asm/*qe.h
4186
4187 FREESCALE USB PERIPHERAL DRIVERS
4188 M:      Li Yang <leoli@freescale.com>
4189 L:      linux-usb@vger.kernel.org
4190 L:      linuxppc-dev@lists.ozlabs.org
4191 S:      Maintained
4192 F:      drivers/usb/gadget/udc/fsl*
4193
4194 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4195 M:      Li Yang <leoli@freescale.com>
4196 L:      netdev@vger.kernel.org
4197 L:      linuxppc-dev@lists.ozlabs.org
4198 S:      Maintained
4199 F:      drivers/net/ethernet/freescale/ucc_geth*
4200
4201 FREESCALE QUICC ENGINE UCC UART DRIVER
4202 M:      Timur Tabi <timur@tabi.org>
4203 L:      linuxppc-dev@lists.ozlabs.org
4204 S:      Maintained
4205 F:      drivers/tty/serial/ucc_uart.c
4206
4207 FREESCALE SOC SOUND DRIVERS
4208 M:      Timur Tabi <timur@tabi.org>
4209 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4210 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4211 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4212 L:      linuxppc-dev@lists.ozlabs.org
4213 S:      Maintained
4214 F:      sound/soc/fsl/fsl*
4215 F:      sound/soc/fsl/imx*
4216 F:      sound/soc/fsl/mpc8610_hpcd.c
4217
4218 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4219 M:      J. German Rivera <German.Rivera@freescale.com>
4220 L:      linux-kernel@vger.kernel.org
4221 S:      Maintained
4222 F:      drivers/staging/fsl-mc/
4223
4224 FREEVXFS FILESYSTEM
4225 M:      Christoph Hellwig <hch@infradead.org>
4226 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4227 S:      Maintained
4228 F:      fs/freevxfs/
4229
4230 FREEZER
4231 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4232 M:      Pavel Machek <pavel@ucw.cz>
4233 L:      linux-pm@vger.kernel.org
4234 S:      Supported
4235 F:      Documentation/power/freezing-of-tasks.txt
4236 F:      include/linux/freezer.h
4237 F:      kernel/freezer.c
4238
4239 FRONTSWAP API
4240 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4241 L:      linux-kernel@vger.kernel.org
4242 S:      Maintained
4243 F:      mm/frontswap.c
4244 F:      include/linux/frontswap.h
4245
4246 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4247 M:      David Howells <dhowells@redhat.com>
4248 L:      linux-cachefs@redhat.com
4249 S:      Supported
4250 F:      Documentation/filesystems/caching/
4251 F:      fs/fscache/
4252 F:      include/linux/fscache*.h
4253
4254 F2FS FILE SYSTEM
4255 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4256 M:      Changman Lee <cm224.lee@samsung.com>
4257 L:      linux-f2fs-devel@lists.sourceforge.net
4258 W:      http://en.wikipedia.org/wiki/F2FS
4259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4260 S:      Maintained
4261 F:      Documentation/filesystems/f2fs.txt
4262 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4263 F:      fs/f2fs/
4264 F:      include/linux/f2fs_fs.h
4265
4266 FUJITSU FR-V (FRV) PORT
4267 M:      David Howells <dhowells@redhat.com>
4268 S:      Maintained
4269 F:      arch/frv/
4270
4271 FUJITSU LAPTOP EXTRAS
4272 M:      Jonathan Woithe <jwoithe@just42.net>
4273 L:      platform-driver-x86@vger.kernel.org
4274 S:      Maintained
4275 F:      drivers/platform/x86/fujitsu-laptop.c
4276
4277 FUJITSU M-5MO LS CAMERA ISP DRIVER
4278 M:      Kyungmin Park <kyungmin.park@samsung.com>
4279 M:      Heungjun Kim <riverful.kim@samsung.com>
4280 L:      linux-media@vger.kernel.org
4281 S:      Maintained
4282 F:      drivers/media/i2c/m5mols/
4283 F:      include/media/m5mols.h
4284
4285 FUJITSU TABLET EXTRAS
4286 M:      Robert Gerlach <khnz@gmx.de>
4287 L:      platform-driver-x86@vger.kernel.org
4288 S:      Maintained
4289 F:      drivers/platform/x86/fujitsu-tablet.c
4290
4291 FUSE: FILESYSTEM IN USERSPACE
4292 M:      Miklos Szeredi <miklos@szeredi.hu>
4293 L:      fuse-devel@lists.sourceforge.net
4294 W:      http://fuse.sourceforge.net/
4295 S:      Maintained
4296 F:      fs/fuse/
4297 F:      include/uapi/linux/fuse.h
4298
4299 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4300 M:      Rik Faith <faith@cs.unc.edu>
4301 L:      linux-scsi@vger.kernel.org
4302 S:      Odd Fixes (e.g., new signatures)
4303 F:      drivers/scsi/fdomain.*
4304
4305 GCOV BASED KERNEL PROFILING
4306 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4307 S:      Maintained
4308 F:      kernel/gcov/
4309 F:      Documentation/gcov.txt
4310
4311 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4312 M:      Achim Leubner <achim_leubner@adaptec.com>
4313 L:      linux-scsi@vger.kernel.org
4314 W:      http://www.icp-vortex.com/
4315 S:      Supported
4316 F:      drivers/scsi/gdt*
4317
4318 GDB KERNEL DEBUGGING HELPER SCRIPTS
4319 M:      Jan Kiszka <jan.kiszka@siemens.com>
4320 S:      Supported
4321 F:      scripts/gdb/
4322
4323 GEMTEK FM RADIO RECEIVER DRIVER
4324 M:      Hans Verkuil <hverkuil@xs4all.nl>
4325 L:      linux-media@vger.kernel.org
4326 T:      git git://linuxtv.org/media_tree.git
4327 W:      http://linuxtv.org
4328 S:      Maintained
4329 F:      drivers/media/radio/radio-gemtek*
4330
4331 GENERIC GPIO I2C DRIVER
4332 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4333 S:      Supported
4334 F:      drivers/i2c/busses/i2c-gpio.c
4335 F:      include/linux/i2c-gpio.h
4336
4337 GENERIC GPIO I2C MULTIPLEXER DRIVER
4338 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4339 L:      linux-i2c@vger.kernel.org
4340 S:      Supported
4341 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4342 F:      include/linux/i2c-mux-gpio.h
4343 F:      Documentation/i2c/muxes/i2c-mux-gpio
4344
4345 GENERIC HDLC (WAN) DRIVERS
4346 M:      Krzysztof Halasa <khc@pm.waw.pl>
4347 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4348 S:      Maintained
4349 F:      drivers/net/wan/c101.c
4350 F:      drivers/net/wan/hd6457*
4351 F:      drivers/net/wan/hdlc*
4352 F:      drivers/net/wan/n2.c
4353 F:      drivers/net/wan/pc300too.c
4354 F:      drivers/net/wan/pci200syn.c
4355 F:      drivers/net/wan/wanxl*
4356
4357 GENERIC INCLUDE/ASM HEADER FILES
4358 M:      Arnd Bergmann <arnd@arndb.de>
4359 L:      linux-arch@vger.kernel.org
4360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4361 S:      Maintained
4362 F:      include/asm-generic/
4363 F:      include/uapi/asm-generic/
4364
4365 GENERIC PHY FRAMEWORK
4366 M:      Kishon Vijay Abraham I <kishon@ti.com>
4367 L:      linux-kernel@vger.kernel.org
4368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4369 S:      Supported
4370 F:      drivers/phy/
4371 F:      include/linux/phy/
4372
4373 GENERIC PM DOMAINS
4374 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4375 M:      Kevin Hilman <khilman@kernel.org>
4376 M:      Ulf Hansson <ulf.hansson@linaro.org>
4377 L:      linux-pm@vger.kernel.org
4378 S:      Supported
4379 F:      drivers/base/power/domain*.c
4380 F:      include/linux/pm_domain.h
4381
4382 GENERIC UIO DRIVER FOR PCI DEVICES
4383 M:      "Michael S. Tsirkin" <mst@redhat.com>
4384 L:      kvm@vger.kernel.org
4385 S:      Supported
4386 F:      drivers/uio/uio_pci_generic.c
4387
4388 GET_MAINTAINER SCRIPT
4389 M:      Joe Perches <joe@perches.com>
4390 S:      Maintained
4391 F:      scripts/get_maintainer.pl
4392
4393 GFS2 FILE SYSTEM
4394 M:      Steven Whitehouse <swhiteho@redhat.com>
4395 M:      Bob Peterson <rpeterso@redhat.com>
4396 L:      cluster-devel@redhat.com
4397 W:      http://sources.redhat.com/cluster/
4398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4399 S:      Supported
4400 F:      Documentation/filesystems/gfs2*.txt
4401 F:      fs/gfs2/
4402 F:      include/uapi/linux/gfs2_ondisk.h
4403
4404 GIGASET ISDN DRIVERS
4405 M:      Hansjoerg Lipp <hjlipp@web.de>
4406 M:      Tilman Schmidt <tilman@imap.cc>
4407 L:      gigaset307x-common@lists.sourceforge.net
4408 W:      http://gigaset307x.sourceforge.net/
4409 S:      Maintained
4410 F:      Documentation/isdn/README.gigaset
4411 F:      drivers/isdn/gigaset/
4412 F:      include/uapi/linux/gigaset_dev.h
4413
4414 GO7007 MPEG CODEC
4415 M:      Hans Verkuil <hans.verkuil@cisco.com>
4416 L:      linux-media@vger.kernel.org
4417 S:      Maintained
4418 F:      drivers/media/usb/go7007/
4419
4420 GOODIX TOUCHSCREEN
4421 M:      Bastien Nocera <hadess@hadess.net>
4422 L:      linux-input@vger.kernel.org
4423 S:      Maintained
4424 F:      drivers/input/touchscreen/goodix.c
4425
4426 GPIO SUBSYSTEM
4427 M:      Linus Walleij <linus.walleij@linaro.org>
4428 M:      Alexandre Courbot <gnurou@gmail.com>
4429 L:      linux-gpio@vger.kernel.org
4430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4431 S:      Maintained
4432 F:      Documentation/gpio/
4433 F:      drivers/gpio/
4434 F:      include/linux/gpio/
4435 F:      include/linux/gpio.h
4436 F:      include/asm-generic/gpio.h
4437
4438 GRE DEMULTIPLEXER DRIVER
4439 M:      Dmitry Kozlov <xeb@mail.ru>
4440 L:      netdev@vger.kernel.org
4441 S:      Maintained
4442 F:      net/ipv4/gre_demux.c
4443 F:      net/ipv4/gre_offload.c
4444 F:      include/net/gre.h
4445
4446 GRETH 10/100/1G Ethernet MAC device driver
4447 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4448 L:      netdev@vger.kernel.org
4449 S:      Maintained
4450 F:      drivers/net/ethernet/aeroflex/
4451
4452 GSPCA FINEPIX SUBDRIVER
4453 M:      Frank Zago <frank@zago.net>
4454 L:      linux-media@vger.kernel.org
4455 T:      git git://linuxtv.org/media_tree.git
4456 S:      Maintained
4457 F:      drivers/media/usb/gspca/finepix.c
4458
4459 GSPCA GL860 SUBDRIVER
4460 M:      Olivier Lorin <o.lorin@laposte.net>
4461 L:      linux-media@vger.kernel.org
4462 T:      git git://linuxtv.org/media_tree.git
4463 S:      Maintained
4464 F:      drivers/media/usb/gspca/gl860/
4465
4466 GSPCA M5602 SUBDRIVER
4467 M:      Erik Andren <erik.andren@gmail.com>
4468 L:      linux-media@vger.kernel.org
4469 T:      git git://linuxtv.org/media_tree.git
4470 S:      Maintained
4471 F:      drivers/media/usb/gspca/m5602/
4472
4473 GSPCA PAC207 SONIXB SUBDRIVER
4474 M:      Hans de Goede <hdegoede@redhat.com>
4475 L:      linux-media@vger.kernel.org
4476 T:      git git://linuxtv.org/media_tree.git
4477 S:      Maintained
4478 F:      drivers/media/usb/gspca/pac207.c
4479
4480 GSPCA SN9C20X SUBDRIVER
4481 M:      Brian Johnson <brijohn@gmail.com>
4482 L:      linux-media@vger.kernel.org
4483 T:      git git://linuxtv.org/media_tree.git
4484 S:      Maintained
4485 F:      drivers/media/usb/gspca/sn9c20x.c
4486
4487 GSPCA T613 SUBDRIVER
4488 M:      Leandro Costantino <lcostantino@gmail.com>
4489 L:      linux-media@vger.kernel.org
4490 T:      git git://linuxtv.org/media_tree.git
4491 S:      Maintained
4492 F:      drivers/media/usb/gspca/t613.c
4493
4494 GSPCA USB WEBCAM DRIVER
4495 M:      Hans de Goede <hdegoede@redhat.com>
4496 L:      linux-media@vger.kernel.org
4497 T:      git git://linuxtv.org/media_tree.git
4498 S:      Maintained
4499 F:      drivers/media/usb/gspca/
4500
4501 GUID PARTITION TABLE (GPT)
4502 M:      Davidlohr Bueso <davidlohr@hp.com>
4503 L:      linux-efi@vger.kernel.org
4504 S:      Maintained
4505 F:      block/partitions/efi.*
4506
4507 STK1160 USB VIDEO CAPTURE DRIVER
4508 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4509 L:      linux-media@vger.kernel.org
4510 T:      git git://linuxtv.org/media_tree.git
4511 S:      Maintained
4512 F:      drivers/media/usb/stk1160/
4513
4514 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4515 M:      Frank Seidel <frank@f-seidel.de>
4516 L:      platform-driver-x86@vger.kernel.org
4517 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4518 S:      Maintained
4519 F:      drivers/platform/x86/hdaps.c
4520
4521 HDPVR USB VIDEO ENCODER DRIVER
4522 M:      Hans Verkuil <hverkuil@xs4all.nl>
4523 L:      linux-media@vger.kernel.org
4524 T:      git git://linuxtv.org/media_tree.git
4525 W:      http://linuxtv.org
4526 S:      Odd Fixes
4527 F:      drivers/media/usb/hdpvr/
4528
4529 HWPOISON MEMORY FAILURE HANDLING
4530 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4531 L:      linux-mm@kvack.org
4532 S:      Maintained
4533 F:      mm/memory-failure.c
4534 F:      mm/hwpoison-inject.c
4535
4536 HYPERVISOR VIRTUAL CONSOLE DRIVER
4537 L:      linuxppc-dev@lists.ozlabs.org
4538 S:      Odd Fixes
4539 F:      drivers/tty/hvc/
4540
4541 HACKRF MEDIA DRIVER
4542 M:      Antti Palosaari <crope@iki.fi>
4543 L:      linux-media@vger.kernel.org
4544 W:      http://linuxtv.org/
4545 W:      http://palosaari.fi/linux/
4546 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4547 T:      git git://linuxtv.org/anttip/media_tree.git
4548 S:      Maintained
4549 F:      drivers/media/usb/hackrf/
4550
4551 HARDWARE MONITORING
4552 M:      Jean Delvare <jdelvare@suse.de>
4553 M:      Guenter Roeck <linux@roeck-us.net>
4554 L:      lm-sensors@lm-sensors.org
4555 W:      http://www.lm-sensors.org/
4556 T:      quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
4557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4558 S:      Maintained
4559 F:      Documentation/hwmon/
4560 F:      drivers/hwmon/
4561 F:      include/linux/hwmon*.h
4562
4563 HARDWARE RANDOM NUMBER GENERATOR CORE
4564 M:      Matt Mackall <mpm@selenic.com>
4565 M:      Herbert Xu <herbert@gondor.apana.org.au>
4566 L:      linux-crypto@vger.kernel.org
4567 S:      Odd fixes
4568 F:      Documentation/hw_random.txt
4569 F:      drivers/char/hw_random/
4570 F:      include/linux/hw_random.h
4571
4572 HARDWARE SPINLOCK CORE
4573 M:      Ohad Ben-Cohen <ohad@wizery.com>
4574 S:      Maintained
4575 F:      Documentation/hwspinlock.txt
4576 F:      drivers/hwspinlock/hwspinlock_*
4577 F:      include/linux/hwspinlock.h
4578
4579 HARMONY SOUND DRIVER
4580 L:      linux-parisc@vger.kernel.org
4581 S:      Maintained
4582 F:      sound/parisc/harmony.*
4583
4584 HD29L2 MEDIA DRIVER
4585 M:      Antti Palosaari <crope@iki.fi>
4586 L:      linux-media@vger.kernel.org
4587 W:      http://linuxtv.org/
4588 W:      http://palosaari.fi/linux/
4589 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4590 T:      git git://linuxtv.org/anttip/media_tree.git
4591 S:      Maintained
4592 F:      drivers/media/dvb-frontends/hd29l2*
4593
4594 HEWLETT-PACKARD SMART2 RAID DRIVER
4595 L:      iss_storagedev@hp.com
4596 S:      Orphan
4597 F:      Documentation/blockdev/cpqarray.txt
4598 F:      drivers/block/cpqarray.*
4599
4600 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4601 M:      Don Brace <don.brace@pmcs.com>
4602 L:      iss_storagedev@hp.com
4603 L:      storagedev@pmcs.com
4604 L:      linux-scsi@vger.kernel.org
4605 S:      Supported
4606 F:      Documentation/scsi/hpsa.txt
4607 F:      drivers/scsi/hpsa*.[ch]
4608 F:      include/linux/cciss*.h
4609 F:      include/uapi/linux/cciss*.h
4610
4611 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4612 M:      Don Brace <don.brace@pmcs.com>
4613 L:      iss_storagedev@hp.com
4614 L:      storagedev@pmcs.com
4615 L:      linux-scsi@vger.kernel.org
4616 S:      Supported
4617 F:      Documentation/blockdev/cciss.txt
4618 F:      drivers/block/cciss*
4619 F:      include/linux/cciss_ioctl.h
4620 F:      include/uapi/linux/cciss_ioctl.h
4621
4622 HFS FILESYSTEM
4623 L:      linux-fsdevel@vger.kernel.org
4624 S:      Orphan
4625 F:      Documentation/filesystems/hfs.txt
4626 F:      fs/hfs/
4627
4628 HFSPLUS FILESYSTEM
4629 L:      linux-fsdevel@vger.kernel.org
4630 S:      Orphan
4631 F:      Documentation/filesystems/hfsplus.txt
4632 F:      fs/hfsplus/
4633
4634 HGA FRAMEBUFFER DRIVER
4635 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4636 L:      linux-nvidia@lists.surfsouth.com
4637 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4638 S:      Maintained
4639 F:      drivers/video/fbdev/hgafb.c
4640
4641 HIBERNATION (aka Software Suspend, aka swsusp)
4642 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4643 M:      Pavel Machek <pavel@ucw.cz>
4644 L:      linux-pm@vger.kernel.org
4645 S:      Supported
4646 F:      arch/x86/power/
4647 F:      drivers/base/power/
4648 F:      kernel/power/
4649 F:      include/linux/suspend.h
4650 F:      include/linux/freezer.h
4651 F:      include/linux/pm.h
4652 F:      arch/*/include/asm/suspend*.h
4653
4654 HID CORE LAYER
4655 M:      Jiri Kosina <jkosina@suse.cz>
4656 L:      linux-input@vger.kernel.org
4657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4658 S:      Maintained
4659 F:      drivers/hid/
4660 F:      include/linux/hid*
4661 F:      include/uapi/linux/hid*
4662
4663 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4664 M:      Thomas Gleixner <tglx@linutronix.de>
4665 L:      linux-kernel@vger.kernel.org
4666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4667 S:      Maintained
4668 F:      Documentation/timers/
4669 F:      kernel/time/hrtimer.c
4670 F:      kernel/time/clockevents.c
4671 F:      kernel/time/tick*.*
4672 F:      kernel/time/timer_*.c
4673 F:      include/linux/clockchips.h
4674 F:      include/linux/hrtimer.h
4675
4676 HIGH-SPEED SCC DRIVER FOR AX.25
4677 L:      linux-hams@vger.kernel.org
4678 S:      Orphan
4679 F:      drivers/net/hamradio/dmascc.c
4680 F:      drivers/net/hamradio/scc.c
4681
4682 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4683 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4684 W:      http://www.highpoint-tech.com
4685 S:      Supported
4686 F:      Documentation/scsi/hptiop.txt
4687 F:      drivers/scsi/hptiop.c
4688
4689 HIPPI
4690 M:      Jes Sorensen <jes@trained-monkey.org>
4691 L:      linux-hippi@sunsite.dk
4692 S:      Maintained
4693 F:      include/linux/hippidevice.h
4694 F:      include/uapi/linux/if_hippi.h
4695 F:      net/802/hippi.c
4696 F:      drivers/net/hippi/
4697
4698 HOST AP DRIVER
4699 M:      Jouni Malinen <j@w1.fi>
4700 L:      hostap@shmoo.com (subscribers-only)
4701 L:      linux-wireless@vger.kernel.org
4702 W:      http://hostap.epitest.fi/
4703 S:      Maintained
4704 F:      drivers/net/wireless/hostap/
4705
4706 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4707 L:      platform-driver-x86@vger.kernel.org
4708 S:      Orphan
4709 F:      drivers/platform/x86/tc1100-wmi.c
4710
4711 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4712 M:      Jaroslav Kysela <perex@perex.cz>
4713 S:      Maintained
4714 F:      drivers/net/ethernet/hp/hp100.*
4715
4716 HPET:   High Precision Event Timers driver
4717 M:      Clemens Ladisch <clemens@ladisch.de>
4718 S:      Maintained
4719 F:      Documentation/timers/hpet.txt
4720 F:      drivers/char/hpet.c
4721 F:      include/linux/hpet.h
4722 F:      include/uapi/linux/hpet.h
4723
4724 HPET:   x86
4725 S:      Orphan
4726 F:      arch/x86/kernel/hpet.c
4727 F:      arch/x86/include/asm/hpet.h
4728
4729 HPFS FILESYSTEM
4730 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4731 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4732 S:      Maintained
4733 F:      fs/hpfs/
4734
4735 HSI SUBSYSTEM
4736 M:      Sebastian Reichel <sre@kernel.org>
4737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4738 S:      Maintained
4739 F:      Documentation/ABI/testing/sysfs-bus-hsi
4740 F:      Documentation/hsi.txt
4741 F:      drivers/hsi/
4742 F:      include/linux/hsi/
4743 F:      include/uapi/linux/hsi/
4744
4745 HSO 3G MODEM DRIVER
4746 M:      Jan Dumon <j.dumon@option.com>
4747 W:      http://www.pharscape.org
4748 S:      Maintained
4749 F:      drivers/net/usb/hso.c
4750
4751 HSR NETWORK PROTOCOL
4752 M:      Arvid Brodin <arvid.brodin@alten.se>
4753 L:      netdev@vger.kernel.org
4754 S:      Maintained
4755 F:      net/hsr/
4756
4757 HTCPEN TOUCHSCREEN DRIVER
4758 M:      Pau Oliva Fora <pof@eslack.org>
4759 L:      linux-input@vger.kernel.org
4760 S:      Maintained
4761 F:      drivers/input/touchscreen/htcpen.c
4762
4763 HUGETLB FILESYSTEM
4764 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
4765 S:      Maintained
4766 F:      fs/hugetlbfs/
4767
4768 Hyper-V CORE AND DRIVERS
4769 M:      K. Y. Srinivasan <kys@microsoft.com>
4770 M:      Haiyang Zhang <haiyangz@microsoft.com>
4771 L:      devel@linuxdriverproject.org
4772 S:      Maintained
4773 F:      arch/x86/include/asm/mshyperv.h
4774 F:      arch/x86/include/uapi/asm/hyperv.h
4775 F:      arch/x86/kernel/cpu/mshyperv.c
4776 F:      drivers/hid/hid-hyperv.c
4777 F:      drivers/hv/
4778 F:      drivers/input/serio/hyperv-keyboard.c
4779 F:      drivers/net/hyperv/
4780 F:      drivers/scsi/storvsc_drv.c
4781 F:      drivers/video/fbdev/hyperv_fb.c
4782 F:      include/linux/hyperv.h
4783 F:      tools/hv/
4784
4785 I2C OVER PARALLEL PORT
4786 M:      Jean Delvare <jdelvare@suse.de>
4787 L:      linux-i2c@vger.kernel.org
4788 S:      Maintained
4789 F:      Documentation/i2c/busses/i2c-parport
4790 F:      Documentation/i2c/busses/i2c-parport-light
4791 F:      drivers/i2c/busses/i2c-parport.c
4792 F:      drivers/i2c/busses/i2c-parport-light.c
4793
4794 I2C/SMBUS CONTROLLER DRIVERS FOR PC
4795 M:      Jean Delvare <jdelvare@suse.de>
4796 L:      linux-i2c@vger.kernel.org
4797 S:      Maintained
4798 F:      Documentation/i2c/busses/i2c-ali1535
4799 F:      Documentation/i2c/busses/i2c-ali1563
4800 F:      Documentation/i2c/busses/i2c-ali15x3
4801 F:      Documentation/i2c/busses/i2c-amd756
4802 F:      Documentation/i2c/busses/i2c-amd8111
4803 F:      Documentation/i2c/busses/i2c-i801
4804 F:      Documentation/i2c/busses/i2c-nforce2
4805 F:      Documentation/i2c/busses/i2c-piix4
4806 F:      Documentation/i2c/busses/i2c-sis5595
4807 F:      Documentation/i2c/busses/i2c-sis630
4808 F:      Documentation/i2c/busses/i2c-sis96x
4809 F:      Documentation/i2c/busses/i2c-via
4810 F:      Documentation/i2c/busses/i2c-viapro
4811 F:      drivers/i2c/busses/i2c-ali1535.c
4812 F:      drivers/i2c/busses/i2c-ali1563.c
4813 F:      drivers/i2c/busses/i2c-ali15x3.c
4814 F:      drivers/i2c/busses/i2c-amd756.c
4815 F:      drivers/i2c/busses/i2c-amd756-s4882.c
4816 F:      drivers/i2c/busses/i2c-amd8111.c
4817 F:      drivers/i2c/busses/i2c-i801.c
4818 F:      drivers/i2c/busses/i2c-isch.c
4819 F:      drivers/i2c/busses/i2c-nforce2.c
4820 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
4821 F:      drivers/i2c/busses/i2c-piix4.c
4822 F:      drivers/i2c/busses/i2c-sis5595.c
4823 F:      drivers/i2c/busses/i2c-sis630.c
4824 F:      drivers/i2c/busses/i2c-sis96x.c
4825 F:      drivers/i2c/busses/i2c-via.c
4826 F:      drivers/i2c/busses/i2c-viapro.c
4827
4828 I2C/SMBUS ISMT DRIVER
4829 M:      Seth Heasley <seth.heasley@intel.com>
4830 M:      Neil Horman <nhorman@tuxdriver.com>
4831 L:      linux-i2c@vger.kernel.org
4832 F:      drivers/i2c/busses/i2c-ismt.c
4833 F:      Documentation/i2c/busses/i2c-ismt
4834
4835 I2C/SMBUS STUB DRIVER
4836 M:      Jean Delvare <jdelvare@suse.de>
4837 L:      linux-i2c@vger.kernel.org
4838 S:      Maintained
4839 F:      drivers/i2c/i2c-stub.c
4840
4841 I2C SUBSYSTEM
4842 M:      Wolfram Sang <wsa@the-dreams.de>
4843 L:      linux-i2c@vger.kernel.org
4844 W:      https://i2c.wiki.kernel.org/
4845 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
4846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
4847 S:      Maintained
4848 F:      Documentation/devicetree/bindings/i2c/
4849 F:      Documentation/i2c/
4850 F:      drivers/i2c/
4851 F:      include/linux/i2c.h
4852 F:      include/linux/i2c-*.h
4853 F:      include/uapi/linux/i2c.h
4854 F:      include/uapi/linux/i2c-*.h
4855
4856 I2C ACPI SUPPORT
4857 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
4858 L:      linux-i2c@vger.kernel.org
4859 L:      linux-acpi@vger.kernel.org
4860 S:      Maintained
4861
4862 I2C-TAOS-EVM DRIVER
4863 M:      Jean Delvare <jdelvare@suse.de>
4864 L:      linux-i2c@vger.kernel.org
4865 S:      Maintained
4866 F:      Documentation/i2c/busses/i2c-taos-evm
4867 F:      drivers/i2c/busses/i2c-taos-evm.c
4868
4869 I2C-TINY-USB DRIVER
4870 M:      Till Harbaum <till@harbaum.org>
4871 L:      linux-i2c@vger.kernel.org
4872 W:      http://www.harbaum.org/till/i2c_tiny_usb
4873 S:      Maintained
4874 F:      drivers/i2c/busses/i2c-tiny-usb.c
4875
4876 i386 BOOT CODE
4877 M:      "H. Peter Anvin" <hpa@zytor.com>
4878 S:      Maintained
4879 F:      arch/x86/boot/
4880
4881 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
4882 M:      "H. Peter Anvin" <hpa@zytor.com>
4883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
4884 S:      Maintained
4885
4886 IA64 (Itanium) PLATFORM
4887 M:      Tony Luck <tony.luck@intel.com>
4888 M:      Fenghua Yu <fenghua.yu@intel.com>
4889 L:      linux-ia64@vger.kernel.org
4890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
4891 S:      Maintained
4892 F:      arch/ia64/
4893
4894 IBM Power in-Nest Crypto Acceleration
4895 M:      Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
4896 M:      Fionnuala Gunter <fin@linux.vnet.ibm.com>
4897 L:      linux-crypto@vger.kernel.org
4898 S:      Supported
4899 F:      drivers/crypto/nx/
4900
4901 IBM Power 842 compression accelerator
4902 M:      Dan Streetman <ddstreet@us.ibm.com>
4903 S:      Supported
4904 F:      drivers/crypto/nx/nx-842.c
4905 F:      include/linux/nx842.h
4906
4907 IBM Power Linux RAID adapter
4908 M:      Brian King <brking@us.ibm.com>
4909 S:      Supported
4910 F:      drivers/scsi/ipr.*
4911
4912 IBM Power Virtual Ethernet Device Driver
4913 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
4914 L:      netdev@vger.kernel.org
4915 S:      Supported
4916 F:      drivers/net/ethernet/ibm/ibmveth.*
4917
4918 IBM Power Virtual SCSI Device Drivers
4919 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
4920 L:      linux-scsi@vger.kernel.org
4921 S:      Supported
4922 F:      drivers/scsi/ibmvscsi/ibmvscsi*
4923 F:      drivers/scsi/ibmvscsi/viosrp.h
4924
4925 IBM Power Virtual FC Device Drivers
4926 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
4927 L:      linux-scsi@vger.kernel.org
4928 S:      Supported
4929 F:      drivers/scsi/ibmvscsi/ibmvfc*
4930
4931 IBM ServeRAID RAID DRIVER
4932 S:      Orphan
4933 F:      drivers/scsi/ips.*
4934
4935 ICH LPC AND GPIO DRIVER
4936 M:      Peter Tyser <ptyser@xes-inc.com>
4937 S:      Maintained
4938 F:      drivers/mfd/lpc_ich.c
4939 F:      drivers/gpio/gpio-ich.c
4940
4941 IDE SUBSYSTEM
4942 M:      "David S. Miller" <davem@davemloft.net>
4943 L:      linux-ide@vger.kernel.org
4944 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
4945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
4946 S:      Maintained
4947 F:      Documentation/ide/
4948 F:      drivers/ide/
4949 F:      include/linux/ide.h
4950
4951 IDEAPAD LAPTOP EXTRAS DRIVER
4952 M:      Ike Panhc <ike.pan@canonical.com>
4953 L:      platform-driver-x86@vger.kernel.org
4954 W:      http://launchpad.net/ideapad-laptop
4955 S:      Maintained
4956 F:      drivers/platform/x86/ideapad-laptop.c
4957
4958 IDEAPAD LAPTOP SLIDEBAR DRIVER
4959 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
4960 L:      linux-input@vger.kernel.org
4961 W:      https://github.com/o2genum/ideapad-slidebar
4962 S:      Maintained
4963 F:      drivers/input/misc/ideapad_slidebar.c
4964
4965 IDE/ATAPI DRIVERS
4966 M:      Borislav Petkov <bp@alien8.de>
4967 L:      linux-ide@vger.kernel.org
4968 S:      Maintained
4969 F:      Documentation/cdrom/ide-cd
4970 F:      drivers/ide/ide-cd*
4971
4972 IDLE-I7300
4973 M:      Andy Henroid <andrew.d.henroid@intel.com>
4974 L:      linux-pm@vger.kernel.org
4975 S:      Supported
4976 F:      drivers/idle/i7300_idle.c
4977
4978 IEEE 802.15.4 SUBSYSTEM
4979 M:      Alexander Aring <alex.aring@gmail.com>
4980 L:      linux-wpan@vger.kernel.org
4981 W:      https://github.com/linux-wpan
4982 T:      git git://github.com/linux-wpan/linux-wpan-next.git
4983 S:      Maintained
4984 F:      net/ieee802154/
4985 F:      net/mac802154/
4986 F:      drivers/net/ieee802154/
4987 F:      include/linux/nl802154.h
4988 F:      include/linux/ieee802154.h
4989 F:      include/net/nl802154.h
4990 F:      include/net/mac802154.h
4991 F:      include/net/af_ieee802154.h
4992 F:      include/net/cfg802154.h
4993 F:      include/net/ieee802154_netdev.h
4994 F:      Documentation/networking/ieee802154.txt
4995
4996 IGORPLUG-USB IR RECEIVER
4997 M:      Sean Young <sean@mess.org>
4998 L:      linux-media@vger.kernel.org
4999 S:      Maintained
5000 F:      drivers/media/rc/igorplugusb.c
5001
5002 IGUANAWORKS USB IR TRANSCEIVER
5003 M:      Sean Young <sean@mess.org>
5004 L:      linux-media@vger.kernel.org
5005 S:      Maintained
5006 F:      drivers/media/rc/iguanair.c
5007
5008 IIO SUBSYSTEM AND DRIVERS
5009 M:      Jonathan Cameron <jic23@kernel.org>
5010 R:      Hartmut Knaack <knaack.h@gmx.de>
5011 R:      Lars-Peter Clausen <lars@metafoo.de>
5012 R:      Peter Meerwald <pmeerw@pmeerw.net>
5013 L:      linux-iio@vger.kernel.org
5014 S:      Maintained
5015 F:      drivers/iio/
5016 F:      drivers/staging/iio/
5017 F:      include/linux/iio/
5018 F:      tools/iio/
5019
5020 IKANOS/ADI EAGLE ADSL USB DRIVER
5021 M:      Matthieu Castet <castet.matthieu@free.fr>
5022 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5023 S:      Maintained
5024 F:      drivers/usb/atm/ueagle-atm.c
5025
5026 INA209 HARDWARE MONITOR DRIVER
5027 M:      Guenter Roeck <linux@roeck-us.net>
5028 L:      lm-sensors@lm-sensors.org
5029 S:      Maintained
5030 F:      Documentation/hwmon/ina209
5031 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5032 F:      drivers/hwmon/ina209.c
5033
5034 INA2XX HARDWARE MONITOR DRIVER
5035 M:      Guenter Roeck <linux@roeck-us.net>
5036 L:      lm-sensors@lm-sensors.org
5037 S:      Maintained
5038 F:      Documentation/hwmon/ina2xx
5039 F:      drivers/hwmon/ina2xx.c
5040 F:      include/linux/platform_data/ina2xx.h
5041
5042 INDUSTRY PACK SUBSYSTEM (IPACK)
5043 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5044 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5045 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5046 L:      industrypack-devel@lists.sourceforge.net
5047 W:      http://industrypack.sourceforge.net
5048 S:      Maintained
5049 F:      drivers/ipack/
5050
5051 INGENIC JZ4780 DMA Driver
5052 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5053 S:      Maintained
5054 F:      drivers/dma/dma-jz4780.c
5055
5056 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5057 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5058 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5059 L:      linux-ima-devel@lists.sourceforge.net
5060 L:      linux-ima-user@lists.sourceforge.net
5061 L:      linux-security-module@vger.kernel.org
5062 S:      Supported
5063 F:      security/integrity/ima/
5064
5065 IMGTEC IR DECODER DRIVER
5066 M:      James Hogan <james.hogan@imgtec.com>
5067 S:      Maintained
5068 F:      drivers/media/rc/img-ir/
5069
5070 IMS TWINTURBO FRAMEBUFFER DRIVER
5071 L:      linux-fbdev@vger.kernel.org
5072 S:      Orphan
5073 F:      drivers/video/fbdev/imsttfb.c
5074
5075 INFINIBAND SUBSYSTEM
5076 M:      Doug Ledford <dledford@redhat.com>
5077 M:      Sean Hefty <sean.hefty@intel.com>
5078 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5079 L:      linux-rdma@vger.kernel.org
5080 W:      http://www.openfabrics.org/
5081 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5082 T:      git git://github.com/dledford/linux.git
5083 S:      Supported
5084 F:      Documentation/infiniband/
5085 F:      drivers/infiniband/
5086 F:      include/uapi/linux/if_infiniband.h
5087 F:      include/uapi/rdma/
5088 F:      include/rdma/
5089
5090 INOTIFY
5091 M:      John McCutchan <john@johnmccutchan.com>
5092 M:      Robert Love <rlove@rlove.org>
5093 M:      Eric Paris <eparis@parisplace.org>
5094 S:      Maintained
5095 F:      Documentation/filesystems/inotify.txt
5096 F:      fs/notify/inotify/
5097 F:      include/linux/inotify.h
5098 F:      include/uapi/linux/inotify.h
5099
5100 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5101 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5102 L:      linux-input@vger.kernel.org
5103 Q:      http://patchwork.kernel.org/project/linux-input/list/
5104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5105 S:      Maintained
5106 F:      drivers/input/
5107 F:      include/linux/input.h
5108 F:      include/uapi/linux/input.h
5109 F:      include/linux/input/
5110
5111 INPUT MULTITOUCH (MT) PROTOCOL
5112 M:      Henrik Rydberg <rydberg@bitmath.org>
5113 L:      linux-input@vger.kernel.org
5114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
5115 S:      Odd fixes
5116 F:      Documentation/input/multi-touch-protocol.txt
5117 F:      drivers/input/input-mt.c
5118 K:      \b(ABS|SYN)_MT_
5119
5120 INTEL ASoC BDW/HSW DRIVERS
5121 M:      Jie Yang <yang.jie@linux.intel.com>
5122 L:      alsa-devel@alsa-project.org
5123 S:      Supported
5124 F:      sound/soc/intel/sst-haswell*
5125 F:      sound/soc/intel/sst-dsp*
5126 F:      sound/soc/intel/sst-firmware.c
5127 F:      sound/soc/intel/broadwell.c
5128 F:      sound/soc/intel/haswell.c
5129
5130 INTEL C600 SERIES SAS CONTROLLER DRIVER
5131 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5132 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5133 L:      linux-scsi@vger.kernel.org
5134 T:      git git://git.code.sf.net/p/intel-sas/isci
5135 S:      Supported
5136 F:      drivers/scsi/isci/
5137
5138 INTEL IDLE DRIVER
5139 M:      Len Brown <lenb@kernel.org>
5140 L:      linux-pm@vger.kernel.org
5141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5142 S:      Supported
5143 F:      drivers/idle/intel_idle.c
5144
5145 INTEL PSTATE DRIVER
5146 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5147 L:      linux-pm@vger.kernel.org
5148 S:      Supported
5149 F:      drivers/cpufreq/intel_pstate.c
5150
5151 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5152 M:      Maik Broemme <mbroemme@plusserver.de>
5153 L:      linux-fbdev@vger.kernel.org
5154 S:      Maintained
5155 F:      Documentation/fb/intelfb.txt
5156 F:      drivers/video/fbdev/intelfb/
5157
5158 INTEL 810/815 FRAMEBUFFER DRIVER
5159 M:      Antonino Daplas <adaplas@gmail.com>
5160 L:      linux-fbdev@vger.kernel.org
5161 S:      Maintained
5162 F:      drivers/video/fbdev/i810/
5163
5164 INTEL MENLOW THERMAL DRIVER
5165 M:      Sujith Thomas <sujith.thomas@intel.com>
5166 L:      platform-driver-x86@vger.kernel.org
5167 W:      https://01.org/linux-acpi
5168 S:      Supported
5169 F:      drivers/platform/x86/intel_menlow.c
5170
5171 INTEL IA32 MICROCODE UPDATE SUPPORT
5172 M:      Borislav Petkov <bp@alien8.de>
5173 S:      Maintained
5174 F:      arch/x86/kernel/cpu/microcode/core*
5175 F:      arch/x86/kernel/cpu/microcode/intel*
5176
5177 INTEL I/OAT DMA DRIVER
5178 M:      Dave Jiang <dave.jiang@intel.com>
5179 R:      Dan Williams <dan.j.williams@intel.com>
5180 L:      dmaengine@vger.kernel.org
5181 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5182 S:      Supported
5183 F:      drivers/dma/ioat*
5184
5185 INTEL IOMMU (VT-d)
5186 M:      David Woodhouse <dwmw2@infradead.org>
5187 L:      iommu@lists.linux-foundation.org
5188 T:      git git://git.infradead.org/iommu-2.6.git
5189 S:      Supported
5190 F:      drivers/iommu/intel-iommu.c
5191 F:      include/linux/intel-iommu.h
5192
5193 INTEL IOP-ADMA DMA DRIVER
5194 R:      Dan Williams <dan.j.williams@intel.com>
5195 S:      Odd fixes
5196 F:      drivers/dma/iop-adma.c
5197
5198 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5199 M:      Krzysztof Halasa <khalasa@piap.pl>
5200 S:      Maintained
5201 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5202 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5203 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5204 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5205 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5206 F:      drivers/net/wan/ixp4xx_hss.c
5207
5208 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5209 M:      Deepak Saxena <dsaxena@plexity.net>
5210 S:      Maintained
5211 F:      drivers/char/hw_random/ixp4xx-rng.c
5212
5213 INTEL ETHERNET DRIVERS
5214 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5215 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5216 R:      Shannon Nelson <shannon.nelson@intel.com>
5217 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5218 R:      Don Skidmore <donald.c.skidmore@intel.com>
5219 R:      Matthew Vick <matthew.vick@intel.com>
5220 R:      John Ronciak <john.ronciak@intel.com>
5221 R:      Mitch Williams <mitch.a.williams@intel.com>
5222 L:      intel-wired-lan@lists.osuosl.org
5223 W:      http://www.intel.com/support/feedback.htm
5224 W:      http://e1000.sourceforge.net/
5225 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5228 S:      Supported
5229 F:      Documentation/networking/e100.txt
5230 F:      Documentation/networking/e1000.txt
5231 F:      Documentation/networking/e1000e.txt
5232 F:      Documentation/networking/igb.txt
5233 F:      Documentation/networking/igbvf.txt
5234 F:      Documentation/networking/ixgb.txt
5235 F:      Documentation/networking/ixgbe.txt
5236 F:      Documentation/networking/ixgbevf.txt
5237 F:      Documentation/networking/i40e.txt
5238 F:      Documentation/networking/i40evf.txt
5239 F:      drivers/net/ethernet/intel/
5240 F:      drivers/net/ethernet/intel/*/
5241
5242 INTEL-MID GPIO DRIVER
5243 M:      David Cohen <david.a.cohen@linux.intel.com>
5244 L:      linux-gpio@vger.kernel.org
5245 S:      Maintained
5246 F:      drivers/gpio/gpio-intel-mid.c
5247
5248 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5249 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5250 L:      linux-wireless@vger.kernel.org
5251 S:      Maintained
5252 F:      Documentation/networking/README.ipw2100
5253 F:      Documentation/networking/README.ipw2200
5254 F:      drivers/net/wireless/ipw2x00/
5255
5256 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5257 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5258 M:      Gang Wei <gang.wei@intel.com>
5259 M:      Shane Wang <shane.wang@intel.com>
5260 L:      tboot-devel@lists.sourceforge.net
5261 W:      http://tboot.sourceforge.net
5262 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5263 S:      Supported
5264 F:      Documentation/intel_txt.txt
5265 F:      include/linux/tboot.h
5266 F:      arch/x86/kernel/tboot.c
5267
5268 INTEL WIRELESS WIMAX CONNECTION 2400
5269 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5270 M:      linux-wimax@intel.com
5271 L:      wimax@linuxwimax.org (subscribers-only)
5272 S:      Supported
5273 W:      http://linuxwimax.org
5274 F:      Documentation/wimax/README.i2400m
5275 F:      drivers/net/wimax/i2400m/
5276 F:      include/uapi/linux/wimax/i2400m.h
5277
5278 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5279 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5280 L:      linux-wireless@vger.kernel.org
5281 S:      Supported
5282 F:      drivers/net/wireless/iwlegacy/
5283
5284 INTEL WIRELESS WIFI LINK (iwlwifi)
5285 M:      Johannes Berg <johannes.berg@intel.com>
5286 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5287 M:      Intel Linux Wireless <ilw@linux.intel.com>
5288 L:      linux-wireless@vger.kernel.org
5289 W:      http://intellinuxwireless.org
5290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5291 S:      Supported
5292 F:      drivers/net/wireless/iwlwifi/
5293
5294 INTEL MANAGEMENT ENGINE (mei)
5295 M:      Tomas Winkler <tomas.winkler@intel.com>
5296 L:      linux-kernel@vger.kernel.org
5297 S:      Supported
5298 F:      include/uapi/linux/mei.h
5299 F:      drivers/misc/mei/*
5300 F:      Documentation/misc-devices/mei/*
5301
5302 IOC3 ETHERNET DRIVER
5303 M:      Ralf Baechle <ralf@linux-mips.org>
5304 L:      linux-mips@linux-mips.org
5305 S:      Maintained
5306 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5307
5308 IOC3 SERIAL DRIVER
5309 M:      Pat Gefre <pfg@sgi.com>
5310 L:      linux-serial@vger.kernel.org
5311 S:      Maintained
5312 F:      drivers/tty/serial/ioc3_serial.c
5313
5314 IOMMU DRIVERS
5315 M:      Joerg Roedel <joro@8bytes.org>
5316 L:      iommu@lists.linux-foundation.org
5317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5318 S:      Maintained
5319 F:      drivers/iommu/
5320
5321 IP MASQUERADING
5322 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5323 S:      Maintained
5324 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5325
5326 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5327 M:      Francois Romieu <romieu@fr.zoreil.com>
5328 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5329 L:      netdev@vger.kernel.org
5330 S:      Maintained
5331 F:      drivers/net/ethernet/icplus/ipg.*
5332
5333 IPATH DRIVER
5334 M:      Mike Marciniszyn <infinipath@intel.com>
5335 L:      linux-rdma@vger.kernel.org
5336 S:      Maintained
5337 F:      drivers/infiniband/hw/ipath/
5338
5339 IPMI SUBSYSTEM
5340 M:      Corey Minyard <minyard@acm.org>
5341 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5342 W:      http://openipmi.sourceforge.net/
5343 S:      Supported
5344 F:      Documentation/IPMI.txt
5345 F:      drivers/char/ipmi/
5346 F:      include/linux/ipmi*
5347 F:      include/uapi/linux/ipmi*
5348
5349 QCOM AUDIO (ASoC) DRIVERS
5350 M:      Patrick Lai <plai@codeaurora.org>
5351 M:      Banajit Goswami <bgoswami@codeaurora.org>
5352 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5353 S:      Supported
5354 F:      sound/soc/qcom/
5355
5356 IPS SCSI RAID DRIVER
5357 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5358 L:      linux-scsi@vger.kernel.org
5359 W:      http://www.adaptec.com/
5360 S:      Maintained
5361 F:      drivers/scsi/ips*
5362
5363 IPVS
5364 M:      Wensong Zhang <wensong@linux-vs.org>
5365 M:      Simon Horman <horms@verge.net.au>
5366 M:      Julian Anastasov <ja@ssi.bg>
5367 L:      netdev@vger.kernel.org
5368 L:      lvs-devel@vger.kernel.org
5369 S:      Maintained
5370 F:      Documentation/networking/ipvs-sysctl.txt
5371 F:      include/net/ip_vs.h
5372 F:      include/uapi/linux/ip_vs.h
5373 F:      net/netfilter/ipvs/
5374
5375 IPWIRELESS DRIVER
5376 M:      Jiri Kosina <jkosina@suse.cz>
5377 M:      David Sterba <dsterba@suse.cz>
5378 S:      Odd Fixes
5379 F:      drivers/tty/ipwireless/
5380
5381 IPX NETWORK LAYER
5382 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5383 L:      netdev@vger.kernel.org
5384 S:      Maintained
5385 F:      include/net/ipx.h
5386 F:      include/uapi/linux/ipx.h
5387 F:      net/ipx/
5388
5389 IRDA SUBSYSTEM
5390 M:      Samuel Ortiz <samuel@sortiz.org>
5391 L:      irda-users@lists.sourceforge.net (subscribers-only)
5392 L:      netdev@vger.kernel.org
5393 W:      http://irda.sourceforge.net/
5394 S:      Maintained
5395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5396 F:      Documentation/networking/irda.txt
5397 F:      drivers/net/irda/
5398 F:      include/net/irda/
5399 F:      net/irda/
5400
5401 IRQ SUBSYSTEM
5402 M:      Thomas Gleixner <tglx@linutronix.de>
5403 L:      linux-kernel@vger.kernel.org
5404 S:      Maintained
5405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5406 F:      kernel/irq/
5407
5408 IRQCHIP DRIVERS
5409 M:      Thomas Gleixner <tglx@linutronix.de>
5410 M:      Jason Cooper <jason@lakedaemon.net>
5411 L:      linux-kernel@vger.kernel.org
5412 S:      Maintained
5413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5414 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5415 F:      Documentation/devicetree/bindings/interrupt-controller/
5416 F:      drivers/irqchip/
5417
5418 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5419 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5420 S:      Maintained
5421 F:      Documentation/IRQ-domain.txt
5422 F:      include/linux/irqdomain.h
5423 F:      kernel/irq/irqdomain.c
5424
5425 ISAPNP
5426 M:      Jaroslav Kysela <perex@perex.cz>
5427 S:      Maintained
5428 F:      Documentation/isapnp.txt
5429 F:      drivers/pnp/isapnp/
5430 F:      include/linux/isapnp.h
5431
5432 ISA RADIO MODULE
5433 M:      Hans Verkuil <hverkuil@xs4all.nl>
5434 L:      linux-media@vger.kernel.org
5435 T:      git git://linuxtv.org/media_tree.git
5436 W:      http://linuxtv.org
5437 S:      Maintained
5438 F:      drivers/media/radio/radio-isa*
5439
5440 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5441 M:      Peter Jones <pjones@redhat.com>
5442 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5443 S:      Maintained
5444 F:      drivers/firmware/iscsi_ibft*
5445
5446 ISCSI
5447 M:      Mike Christie <michaelc@cs.wisc.edu>
5448 L:      open-iscsi@googlegroups.com
5449 W:      www.open-iscsi.org
5450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5451 S:      Maintained
5452 F:      drivers/scsi/*iscsi*
5453 F:      include/scsi/*iscsi*
5454
5455 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5456 M:      Or Gerlitz <ogerlitz@mellanox.com>
5457 M:      Sagi Grimberg <sagig@mellanox.com>
5458 M:      Roi Dayan <roid@mellanox.com>
5459 L:      linux-rdma@vger.kernel.org
5460 S:      Supported
5461 W:      http://www.openfabrics.org
5462 W:      www.open-iscsi.org
5463 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5464 F:      drivers/infiniband/ulp/iser/
5465
5466 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5467 M:      Sagi Grimberg <sagig@mellanox.com>
5468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5469 L:      linux-rdma@vger.kernel.org
5470 L:      target-devel@vger.kernel.org
5471 S:      Supported
5472 W:      http://www.linux-iscsi.org
5473 F:      drivers/infiniband/ulp/isert
5474
5475 ISDN SUBSYSTEM
5476 M:      Karsten Keil <isdn@linux-pingi.de>
5477 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5478 L:      netdev@vger.kernel.org
5479 W:      http://www.isdn4linux.de
5480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5481 S:      Maintained
5482 F:      Documentation/isdn/
5483 F:      drivers/isdn/
5484 F:      include/linux/isdn.h
5485 F:      include/linux/isdn/
5486 F:      include/uapi/linux/isdn.h
5487 F:      include/uapi/linux/isdn/
5488
5489 ISDN SUBSYSTEM (Eicon active card driver)
5490 M:      Armin Schindler <mac@melware.de>
5491 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5492 W:      http://www.melware.de
5493 S:      Maintained
5494 F:      drivers/isdn/hardware/eicon/
5495
5496 IT87 HARDWARE MONITORING DRIVER
5497 M:      Jean Delvare <jdelvare@suse.de>
5498 L:      lm-sensors@lm-sensors.org
5499 S:      Maintained
5500 F:      Documentation/hwmon/it87
5501 F:      drivers/hwmon/it87.c
5502
5503 IT913X MEDIA DRIVER
5504 M:      Antti Palosaari <crope@iki.fi>
5505 L:      linux-media@vger.kernel.org
5506 W:      http://linuxtv.org/
5507 W:      http://palosaari.fi/linux/
5508 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5509 T:      git git://linuxtv.org/anttip/media_tree.git
5510 S:      Maintained
5511 F:      drivers/media/tuners/it913x*
5512
5513 IVTV VIDEO4LINUX DRIVER
5514 M:      Andy Walls <awalls@md.metrocast.net>
5515 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5516 L:      linux-media@vger.kernel.org
5517 T:      git git://linuxtv.org/media_tree.git
5518 W:      http://www.ivtvdriver.org
5519 S:      Maintained
5520 F:      Documentation/video4linux/*.ivtv
5521 F:      drivers/media/pci/ivtv/
5522 F:      include/uapi/linux/ivtv*
5523
5524 IX2505V MEDIA DRIVER
5525 M:      Malcolm Priestley <tvboxspy@gmail.com>
5526 L:      linux-media@vger.kernel.org
5527 W:      http://linuxtv.org/
5528 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5529 S:      Maintained
5530 F:      drivers/media/dvb-frontends/ix2505v*
5531
5532 JC42.4 TEMPERATURE SENSOR DRIVER
5533 M:      Guenter Roeck <linux@roeck-us.net>
5534 L:      lm-sensors@lm-sensors.org
5535 S:      Maintained
5536 F:      drivers/hwmon/jc42.c
5537 F:      Documentation/hwmon/jc42
5538
5539 JFS FILESYSTEM
5540 M:      Dave Kleikamp <shaggy@kernel.org>
5541 L:      jfs-discussion@lists.sourceforge.net
5542 W:      http://jfs.sourceforge.net/
5543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5544 S:      Maintained
5545 F:      Documentation/filesystems/jfs.txt
5546 F:      fs/jfs/
5547
5548 JME NETWORK DRIVER
5549 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5550 L:      netdev@vger.kernel.org
5551 S:      Maintained
5552 F:      drivers/net/ethernet/jme.*
5553
5554 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5555 M:      David Woodhouse <dwmw2@infradead.org>
5556 L:      linux-mtd@lists.infradead.org
5557 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5558 S:      Maintained
5559 F:      fs/jffs2/
5560 F:      include/uapi/linux/jffs2.h
5561
5562 JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
5563 M:      Andrew Morton <akpm@linux-foundation.org>
5564 M:      Jan Kara <jack@suse.cz>
5565 L:      linux-ext4@vger.kernel.org
5566 S:      Maintained
5567 F:      fs/jbd/
5568 F:      include/linux/jbd.h
5569
5570 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5571 M:      "Theodore Ts'o" <tytso@mit.edu>
5572 L:      linux-ext4@vger.kernel.org
5573 S:      Maintained
5574 F:      fs/jbd2/
5575 F:      include/linux/jbd2.h
5576
5577 JSM Neo PCI based serial card
5578 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5579 L:      linux-serial@vger.kernel.org
5580 S:      Maintained
5581 F:      drivers/tty/serial/jsm/
5582
5583 K10TEMP HARDWARE MONITORING DRIVER
5584 M:      Clemens Ladisch <clemens@ladisch.de>
5585 L:      lm-sensors@lm-sensors.org
5586 S:      Maintained
5587 F:      Documentation/hwmon/k10temp
5588 F:      drivers/hwmon/k10temp.c
5589
5590 K8TEMP HARDWARE MONITORING DRIVER
5591 M:      Rudolf Marek <r.marek@assembler.cz>
5592 L:      lm-sensors@lm-sensors.org
5593 S:      Maintained
5594 F:      Documentation/hwmon/k8temp
5595 F:      drivers/hwmon/k8temp.c
5596
5597 KCONFIG
5598 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5599 L:      linux-kbuild@vger.kernel.org
5600 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5601 S:      Maintained
5602 F:      Documentation/kbuild/kconfig-language.txt
5603 F:      scripts/kconfig/
5604
5605 KDUMP
5606 M:      Vivek Goyal <vgoyal@redhat.com>
5607 M:      Haren Myneni <hbabu@us.ibm.com>
5608 L:      kexec@lists.infradead.org
5609 W:      http://lse.sourceforge.net/kdump/
5610 S:      Maintained
5611 F:      Documentation/kdump/
5612
5613 KEENE FM RADIO TRANSMITTER DRIVER
5614 M:      Hans Verkuil <hverkuil@xs4all.nl>
5615 L:      linux-media@vger.kernel.org
5616 T:      git git://linuxtv.org/media_tree.git
5617 W:      http://linuxtv.org
5618 S:      Maintained
5619 F:      drivers/media/radio/radio-keene*
5620
5621 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5622 M:      Ian Kent <raven@themaw.net>
5623 L:      autofs@vger.kernel.org
5624 S:      Maintained
5625 F:      fs/autofs4/
5626
5627 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5628 M:      Michal Marek <mmarek@suse.cz>
5629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5631 L:      linux-kbuild@vger.kernel.org
5632 S:      Maintained
5633 F:      Documentation/kbuild/
5634 F:      Makefile
5635 F:      scripts/Makefile.*
5636 F:      scripts/basic/
5637 F:      scripts/mk*
5638 F:      scripts/package/
5639
5640 KERNEL JANITORS
5641 L:      kernel-janitors@vger.kernel.org
5642 W:      http://kernelnewbies.org/KernelJanitors
5643 S:      Odd Fixes
5644
5645 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5646 M:      "J. Bruce Fields" <bfields@fieldses.org>
5647 L:      linux-nfs@vger.kernel.org
5648 W:      http://nfs.sourceforge.net/
5649 S:      Supported
5650 F:      fs/nfsd/
5651 F:      include/uapi/linux/nfsd/
5652 F:      fs/lockd/
5653 F:      fs/nfs_common/
5654 F:      net/sunrpc/
5655 F:      include/linux/lockd/
5656 F:      include/linux/sunrpc/
5657 F:      include/uapi/linux/sunrpc/
5658
5659 KERNEL SELFTEST FRAMEWORK
5660 M:      Shuah Khan <shuahkh@osg.samsung.com>
5661 L:      linux-api@vger.kernel.org
5662 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5663 S:      Maintained
5664 F:      tools/testing/selftests
5665
5666 KERNEL VIRTUAL MACHINE (KVM)
5667 M:      Gleb Natapov <gleb@kernel.org>
5668 M:      Paolo Bonzini <pbonzini@redhat.com>
5669 L:      kvm@vger.kernel.org
5670 W:      http://www.linux-kvm.org
5671 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5672 S:      Supported
5673 F:      Documentation/*/kvm*.txt
5674 F:      Documentation/virtual/kvm/
5675 F:      arch/*/kvm/
5676 F:      arch/x86/kernel/kvm.c
5677 F:      arch/x86/kernel/kvmclock.c
5678 F:      arch/*/include/asm/kvm*
5679 F:      include/linux/kvm*
5680 F:      include/uapi/linux/kvm*
5681 F:      virt/kvm/
5682
5683 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5684 M:      Joerg Roedel <joro@8bytes.org>
5685 L:      kvm@vger.kernel.org
5686 W:      http://kvm.qumranet.com
5687 S:      Maintained
5688 F:      arch/x86/include/asm/svm.h
5689 F:      arch/x86/kvm/svm.c
5690
5691 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5692 M:      Alexander Graf <agraf@suse.de>
5693 L:      kvm-ppc@vger.kernel.org
5694 W:      http://kvm.qumranet.com
5695 T:      git git://github.com/agraf/linux-2.6.git
5696 S:      Supported
5697 F:      arch/powerpc/include/asm/kvm*
5698 F:      arch/powerpc/kvm/
5699
5700 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5701 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5702 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5703 M:      linux390@de.ibm.com
5704 L:      linux-s390@vger.kernel.org
5705 W:      http://www.ibm.com/developerworks/linux/linux390/
5706 S:      Supported
5707 F:      Documentation/s390/kvm.txt
5708 F:      arch/s390/include/asm/kvm*
5709 F:      arch/s390/kvm/
5710 F:      drivers/s390/kvm/
5711
5712 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5713 M:      Christoffer Dall <christoffer.dall@linaro.org>
5714 M:      Marc Zyngier <marc.zyngier@arm.com>
5715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5716 L:      kvmarm@lists.cs.columbia.edu
5717 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5718 S:      Supported
5719 F:      arch/arm/include/uapi/asm/kvm*
5720 F:      arch/arm/include/asm/kvm*
5721 F:      arch/arm/kvm/
5722 F:      virt/kvm/arm/
5723 F:      include/kvm/arm_*
5724
5725 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5726 M:      Christoffer Dall <christoffer.dall@linaro.org>
5727 M:      Marc Zyngier <marc.zyngier@arm.com>
5728 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5729 L:      kvmarm@lists.cs.columbia.edu
5730 S:      Maintained
5731 F:      arch/arm64/include/uapi/asm/kvm*
5732 F:      arch/arm64/include/asm/kvm*
5733 F:      arch/arm64/kvm/
5734
5735 KEXEC
5736 M:      Eric Biederman <ebiederm@xmission.com>
5737 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
5738 L:      kexec@lists.infradead.org
5739 S:      Maintained
5740 F:      include/linux/kexec.h
5741 F:      include/uapi/linux/kexec.h
5742 F:      kernel/kexec.c
5743
5744 KEYS/KEYRINGS:
5745 M:      David Howells <dhowells@redhat.com>
5746 L:      keyrings@linux-nfs.org
5747 S:      Maintained
5748 F:      Documentation/security/keys.txt
5749 F:      include/linux/key.h
5750 F:      include/linux/key-type.h
5751 F:      include/keys/
5752 F:      security/keys/
5753
5754 KEYS-TRUSTED
5755 M:      David Safford <safford@us.ibm.com>
5756 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5757 L:      linux-security-module@vger.kernel.org
5758 L:      keyrings@linux-nfs.org
5759 S:      Supported
5760 F:      Documentation/security/keys-trusted-encrypted.txt
5761 F:      include/keys/trusted-type.h
5762 F:      security/keys/trusted.c
5763 F:      security/keys/trusted.h
5764
5765 KEYS-ENCRYPTED
5766 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5767 M:      David Safford <safford@us.ibm.com>
5768 L:      linux-security-module@vger.kernel.org
5769 L:      keyrings@linux-nfs.org
5770 S:      Supported
5771 F:      Documentation/security/keys-trusted-encrypted.txt
5772 F:      include/keys/encrypted-type.h
5773 F:      security/keys/encrypted-keys/
5774
5775 KGDB / KDB /debug_core
5776 M:      Jason Wessel <jason.wessel@windriver.com>
5777 W:      http://kgdb.wiki.kernel.org/
5778 L:      kgdb-bugreport@lists.sourceforge.net
5779 S:      Maintained
5780 F:      Documentation/DocBook/kgdb.tmpl
5781 F:      drivers/misc/kgdbts.c
5782 F:      drivers/tty/serial/kgdboc.c
5783 F:      include/linux/kdb.h
5784 F:      include/linux/kgdb.h
5785 F:      kernel/debug/
5786
5787 KMEMCHECK
5788 M:      Vegard Nossum <vegardno@ifi.uio.no>
5789 M:      Pekka Enberg <penberg@kernel.org>
5790 S:      Maintained
5791 F:      Documentation/kmemcheck.txt
5792 F:      arch/x86/include/asm/kmemcheck.h
5793 F:      arch/x86/mm/kmemcheck/
5794 F:      include/linux/kmemcheck.h
5795 F:      mm/kmemcheck.c
5796
5797 KMEMLEAK
5798 M:      Catalin Marinas <catalin.marinas@arm.com>
5799 S:      Maintained
5800 F:      Documentation/kmemleak.txt
5801 F:      include/linux/kmemleak.h
5802 F:      mm/kmemleak.c
5803 F:      mm/kmemleak-test.c
5804
5805 KPROBES
5806 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
5807 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
5808 M:      "David S. Miller" <davem@davemloft.net>
5809 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
5810 S:      Maintained
5811 F:      Documentation/kprobes.txt
5812 F:      include/linux/kprobes.h
5813 F:      kernel/kprobes.c
5814
5815 KS0108 LCD CONTROLLER DRIVER
5816 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
5817 W:      http://miguelojeda.es/auxdisplay.htm
5818 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
5819 S:      Maintained
5820 F:      Documentation/auxdisplay/ks0108
5821 F:      drivers/auxdisplay/ks0108.c
5822 F:      include/linux/ks0108.h
5823
5824 LAPB module
5825 L:      linux-x25@vger.kernel.org
5826 S:      Orphan
5827 F:      Documentation/networking/lapb-module.txt
5828 F:      include/*/lapb.h
5829 F:      net/lapb/
5830
5831 LASI 53c700 driver for PARISC
5832 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
5833 L:      linux-scsi@vger.kernel.org
5834 S:      Maintained
5835 F:      Documentation/scsi/53c700.txt
5836 F:      drivers/scsi/53c700*
5837
5838 LED SUBSYSTEM
5839 M:      Bryan Wu <cooloney@gmail.com>
5840 M:      Richard Purdie <rpurdie@rpsys.net>
5841 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
5842 L:      linux-leds@vger.kernel.org
5843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
5844 S:      Maintained
5845 F:      drivers/leds/
5846 F:      include/linux/leds.h
5847
5848 LEGACY EEPROM DRIVER
5849 M:      Jean Delvare <jdelvare@suse.de>
5850 S:      Maintained
5851 F:      Documentation/misc-devices/eeprom
5852 F:      drivers/misc/eeprom/eeprom.c
5853
5854 LEGO USB Tower driver
5855 M:      Juergen Stuber <starblue@users.sourceforge.net>
5856 L:      legousb-devel@lists.sourceforge.net
5857 W:      http://legousb.sourceforge.net/
5858 S:      Maintained
5859 F:      drivers/usb/misc/legousbtower.c
5860
5861 LG2160 MEDIA DRIVER
5862 M:      Michael Krufky <mkrufky@linuxtv.org>
5863 L:      linux-media@vger.kernel.org
5864 W:      http://linuxtv.org/
5865 W:      http://github.com/mkrufky
5866 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5867 T:      git git://linuxtv.org/mkrufky/tuners.git
5868 S:      Maintained
5869 F:      drivers/media/dvb-frontends/lg2160.*
5870
5871 LGDT3305 MEDIA DRIVER
5872 M:      Michael Krufky <mkrufky@linuxtv.org>
5873 L:      linux-media@vger.kernel.org
5874 W:      http://linuxtv.org/
5875 W:      http://github.com/mkrufky
5876 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5877 T:      git git://linuxtv.org/mkrufky/tuners.git
5878 S:      Maintained
5879 F:      drivers/media/dvb-frontends/lgdt3305.*
5880
5881 LGUEST
5882 M:      Rusty Russell <rusty@rustcorp.com.au>
5883 L:      lguest@lists.ozlabs.org
5884 W:      http://lguest.ozlabs.org/
5885 S:      Odd Fixes
5886 F:      arch/x86/include/asm/lguest*.h
5887 F:      arch/x86/lguest/
5888 F:      drivers/lguest/
5889 F:      include/linux/lguest*.h
5890 F:      tools/lguest/
5891
5892 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
5893 M:      Tejun Heo <tj@kernel.org>
5894 L:      linux-ide@vger.kernel.org
5895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5896 S:      Maintained
5897 F:      drivers/ata/
5898 F:      include/linux/ata.h
5899 F:      include/linux/libata.h
5900
5901 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
5902 M:      Viresh Kumar <viresh.linux@gmail.com>
5903 L:      linux-ide@vger.kernel.org
5904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5905 S:      Maintained
5906 F:      include/linux/pata_arasan_cf_data.h
5907 F:      drivers/ata/pata_arasan_cf.c
5908
5909 LIBATA PATA DRIVERS
5910 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5911 M:      Tejun Heo <tj@kernel.org>
5912 L:      linux-ide@vger.kernel.org
5913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5914 S:      Maintained
5915 F:      drivers/ata/pata_*.c
5916 F:      drivers/ata/ata_generic.c
5917
5918 LIBATA SATA AHCI PLATFORM devices support
5919 M:      Hans de Goede <hdegoede@redhat.com>
5920 M:      Tejun Heo <tj@kernel.org>
5921 L:      linux-ide@vger.kernel.org
5922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5923 S:      Maintained
5924 F:      drivers/ata/ahci_platform.c
5925 F:      drivers/ata/libahci_platform.c
5926 F:      include/linux/ahci_platform.h
5927
5928 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
5929 M:      Mikael Pettersson <mikpelinux@gmail.com>
5930 L:      linux-ide@vger.kernel.org
5931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5932 S:      Maintained
5933 F:      drivers/ata/sata_promise.*
5934
5935 LIBLOCKDEP
5936 M:      Sasha Levin <sasha.levin@oracle.com>
5937 S:      Maintained
5938 F:      tools/lib/lockdep/
5939
5940 LINUX FOR IBM pSERIES (RS/6000)
5941 M:      Paul Mackerras <paulus@au.ibm.com>
5942 W:      http://www.ibm.com/linux/ltc/projects/ppc
5943 S:      Supported
5944 F:      arch/powerpc/boot/rs6000.h
5945
5946 LINUX FOR POWERPC (32-BIT AND 64-BIT)
5947 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5948 M:      Paul Mackerras <paulus@samba.org>
5949 M:      Michael Ellerman <mpe@ellerman.id.au>
5950 W:      http://www.penguinppc.org/
5951 L:      linuxppc-dev@lists.ozlabs.org
5952 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
5953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
5954 S:      Supported
5955 F:      Documentation/powerpc/
5956 F:      arch/powerpc/
5957
5958 LINUX FOR POWER MACINTOSH
5959 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5960 W:      http://www.penguinppc.org/
5961 L:      linuxppc-dev@lists.ozlabs.org
5962 S:      Maintained
5963 F:      arch/powerpc/platforms/powermac/
5964 F:      drivers/macintosh/
5965
5966 LINUX FOR POWERPC EMBEDDED MPC5XXX
5967 M:      Anatolij Gustschin <agust@denx.de>
5968 L:      linuxppc-dev@lists.ozlabs.org
5969 T:      git git://git.denx.de/linux-denx-agust.git
5970 S:      Maintained
5971 F:      arch/powerpc/platforms/512x/
5972 F:      arch/powerpc/platforms/52xx/
5973
5974 LINUX FOR POWERPC EMBEDDED PPC4XX
5975 M:      Alistair Popple <alistair@popple.id.au>
5976 M:      Matt Porter <mporter@kernel.crashing.org>
5977 W:      http://www.penguinppc.org/
5978 L:      linuxppc-dev@lists.ozlabs.org
5979 S:      Maintained
5980 F:      arch/powerpc/platforms/40x/
5981 F:      arch/powerpc/platforms/44x/
5982
5983 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
5984 L:      linuxppc-dev@lists.ozlabs.org
5985 S:      Orphan
5986 F:      arch/powerpc/*/*virtex*
5987 F:      arch/powerpc/*/*/*virtex*
5988
5989 LINUX FOR POWERPC EMBEDDED PPC8XX
5990 M:      Vitaly Bordug <vitb@kernel.crashing.org>
5991 W:      http://www.penguinppc.org/
5992 L:      linuxppc-dev@lists.ozlabs.org
5993 S:      Maintained
5994 F:      arch/powerpc/platforms/8xx/
5995
5996 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
5997 M:      Scott Wood <scottwood@freescale.com>
5998 M:      Kumar Gala <galak@kernel.crashing.org>
5999 W:      http://www.penguinppc.org/
6000 L:      linuxppc-dev@lists.ozlabs.org
6001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6002 S:      Maintained
6003 F:      arch/powerpc/platforms/83xx/
6004 F:      arch/powerpc/platforms/85xx/
6005
6006 LINUX FOR POWERPC PA SEMI PWRFICIENT
6007 M:      Olof Johansson <olof@lixom.net>
6008 L:      linuxppc-dev@lists.ozlabs.org
6009 S:      Maintained
6010 F:      arch/powerpc/platforms/pasemi/
6011 F:      drivers/*/*pasemi*
6012 F:      drivers/*/*/*pasemi*
6013
6014 LINUX SECURITY MODULE (LSM) FRAMEWORK
6015 M:      Chris Wright <chrisw@sous-sol.org>
6016 L:      linux-security-module@vger.kernel.org
6017 S:      Supported
6018
6019 LIS3LV02D ACCELEROMETER DRIVER
6020 M:      Eric Piel <eric.piel@tremplin-utc.net>
6021 S:      Maintained
6022 F:      Documentation/misc-devices/lis3lv02d
6023 F:      drivers/misc/lis3lv02d/
6024 F:      drivers/platform/x86/hp_accel.c
6025
6026 LIVE PATCHING
6027 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6028 M:      Seth Jennings <sjenning@redhat.com>
6029 M:      Jiri Kosina <jkosina@suse.cz>
6030 M:      Vojtech Pavlik <vojtech@suse.cz>
6031 S:      Maintained
6032 F:      kernel/livepatch/
6033 F:      include/linux/livepatch.h
6034 F:      arch/x86/include/asm/livepatch.h
6035 F:      arch/x86/kernel/livepatch.c
6036 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6037 F:      samples/livepatch/
6038 L:      live-patching@vger.kernel.org
6039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6040
6041 LLC (802.2)
6042 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6043 S:      Maintained
6044 F:      include/linux/llc.h
6045 F:      include/uapi/linux/llc.h
6046 F:      include/net/llc*
6047 F:      net/llc/
6048
6049 LM73 HARDWARE MONITOR DRIVER
6050 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6051 L:      lm-sensors@lm-sensors.org
6052 S:      Maintained
6053 F:      drivers/hwmon/lm73.c
6054
6055 LM78 HARDWARE MONITOR DRIVER
6056 M:      Jean Delvare <jdelvare@suse.de>
6057 L:      lm-sensors@lm-sensors.org
6058 S:      Maintained
6059 F:      Documentation/hwmon/lm78
6060 F:      drivers/hwmon/lm78.c
6061
6062 LM83 HARDWARE MONITOR DRIVER
6063 M:      Jean Delvare <jdelvare@suse.de>
6064 L:      lm-sensors@lm-sensors.org
6065 S:      Maintained
6066 F:      Documentation/hwmon/lm83
6067 F:      drivers/hwmon/lm83.c
6068
6069 LM90 HARDWARE MONITOR DRIVER
6070 M:      Jean Delvare <jdelvare@suse.de>
6071 L:      lm-sensors@lm-sensors.org
6072 S:      Maintained
6073 F:      Documentation/hwmon/lm90
6074 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6075 F:      drivers/hwmon/lm90.c
6076
6077 LM95234 HARDWARE MONITOR DRIVER
6078 M:      Guenter Roeck <linux@roeck-us.net>
6079 L:      lm-sensors@lm-sensors.org
6080 S:      Maintained
6081 F:      Documentation/hwmon/lm95234
6082 F:      drivers/hwmon/lm95234.c
6083
6084 LME2510 MEDIA DRIVER
6085 M:      Malcolm Priestley <tvboxspy@gmail.com>
6086 L:      linux-media@vger.kernel.org
6087 W:      http://linuxtv.org/
6088 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6089 S:      Maintained
6090 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6091
6092 LOCKDEP AND LOCKSTAT
6093 M:      Peter Zijlstra <peterz@infradead.org>
6094 M:      Ingo Molnar <mingo@redhat.com>
6095 L:      linux-kernel@vger.kernel.org
6096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6097 S:      Maintained
6098 F:      Documentation/locking/lockdep*.txt
6099 F:      Documentation/locking/lockstat.txt
6100 F:      include/linux/lockdep.h
6101 F:      kernel/locking/
6102
6103 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6104 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6105 L:      linux-ntfs-dev@lists.sourceforge.net
6106 W:      http://www.linux-ntfs.org/content/view/19/37/
6107 S:      Maintained
6108 F:      Documentation/ldm.txt
6109 F:      block/partitions/ldm.*
6110
6111 LogFS
6112 M:      Joern Engel <joern@logfs.org>
6113 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6114 L:      logfs@logfs.org
6115 W:      logfs.org
6116 S:      Maintained
6117 F:      fs/logfs/
6118
6119 LPC32XX MACHINE SUPPORT
6120 M:      Roland Stigge <stigge@antcom.de>
6121 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6122 S:      Maintained
6123 F:      arch/arm/mach-lpc32xx/
6124
6125 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6126 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6127 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6128 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6129 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6130 L:      MPT-FusionLinux.pdl@avagotech.com
6131 L:      linux-scsi@vger.kernel.org
6132 W:      http://www.lsilogic.com/support
6133 S:      Supported
6134 F:      drivers/message/fusion/
6135 F:      drivers/scsi/mpt2sas/
6136 F:      drivers/scsi/mpt3sas/
6137
6138 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6139 M:      Matthew Wilcox <matthew@wil.cx>
6140 L:      linux-scsi@vger.kernel.org
6141 S:      Maintained
6142 F:      drivers/scsi/sym53c8xx_2/
6143
6144 LTC4261 HARDWARE MONITOR DRIVER
6145 M:      Guenter Roeck <linux@roeck-us.net>
6146 L:      lm-sensors@lm-sensors.org
6147 S:      Maintained
6148 F:      Documentation/hwmon/ltc4261
6149 F:      drivers/hwmon/ltc4261.c
6150
6151 LTP (Linux Test Project)
6152 M:      Mike Frysinger <vapier@gentoo.org>
6153 M:      Cyril Hrubis <chrubis@suse.cz>
6154 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
6155 M:      Jan Stancek <jstancek@redhat.com>
6156 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6157 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6158 L:      ltp-list@lists.sourceforge.net (subscribers-only)
6159 W:      http://linux-test-project.github.io/
6160 T:      git git://github.com/linux-test-project/ltp.git
6161 S:      Maintained
6162
6163 M32R ARCHITECTURE
6164 W:      http://www.linux-m32r.org/
6165 S:      Orphan
6166 F:      arch/m32r/
6167
6168 M68K ARCHITECTURE
6169 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6170 L:      linux-m68k@lists.linux-m68k.org
6171 W:      http://www.linux-m68k.org/
6172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6173 S:      Maintained
6174 F:      arch/m68k/
6175 F:      drivers/zorro/
6176
6177 M68K ON APPLE MACINTOSH
6178 M:      Joshua Thompson <funaho@jurai.org>
6179 W:      http://www.mac.linux-m68k.org/
6180 L:      linux-m68k@lists.linux-m68k.org
6181 S:      Maintained
6182 F:      arch/m68k/mac/
6183
6184 M68K ON HP9000/300
6185 M:      Philip Blundell <philb@gnu.org>
6186 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6187 S:      Maintained
6188 F:      arch/m68k/hp300/
6189
6190 M88DS3103 MEDIA DRIVER
6191 M:      Antti Palosaari <crope@iki.fi>
6192 L:      linux-media@vger.kernel.org
6193 W:      http://linuxtv.org/
6194 W:      http://palosaari.fi/linux/
6195 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6196 T:      git git://linuxtv.org/anttip/media_tree.git
6197 S:      Maintained
6198 F:      drivers/media/dvb-frontends/m88ds3103*
6199
6200 M88RS2000 MEDIA DRIVER
6201 M:      Malcolm Priestley <tvboxspy@gmail.com>
6202 L:      linux-media@vger.kernel.org
6203 W:      http://linuxtv.org/
6204 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6205 S:      Maintained
6206 F:      drivers/media/dvb-frontends/m88rs2000*
6207
6208 MA901 MASTERKIT USB FM RADIO DRIVER
6209 M:      Alexey Klimov <klimov.linux@gmail.com>
6210 L:      linux-media@vger.kernel.org
6211 T:      git git://linuxtv.org/media_tree.git
6212 S:      Maintained
6213 F:      drivers/media/radio/radio-ma901.c
6214
6215 MAC80211
6216 M:      Johannes Berg <johannes@sipsolutions.net>
6217 L:      linux-wireless@vger.kernel.org
6218 W:      http://wireless.kernel.org/
6219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6221 S:      Maintained
6222 F:      Documentation/networking/mac80211-injection.txt
6223 F:      include/net/mac80211.h
6224 F:      net/mac80211/
6225
6226 MACVLAN DRIVER
6227 M:      Patrick McHardy <kaber@trash.net>
6228 L:      netdev@vger.kernel.org
6229 S:      Maintained
6230 F:      drivers/net/macvlan.c
6231 F:      include/linux/if_macvlan.h
6232
6233 MAILBOX API
6234 M:      Jassi Brar <jassisinghbrar@gmail.com>
6235 L:      linux-kernel@vger.kernel.org
6236 S:      Maintained
6237 F:      drivers/mailbox/
6238 F:      include/linux/mailbox_client.h
6239 F:      include/linux/mailbox_controller.h
6240
6241 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6242 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6243 W:      http://www.kernel.org/doc/man-pages
6244 L:      linux-man@vger.kernel.org
6245 S:      Maintained
6246
6247 MARVELL ARMADA DRM SUPPORT
6248 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6249 S:      Maintained
6250 F:      drivers/gpu/drm/armada/
6251
6252 MARVELL 88E6352 DSA support
6253 M:      Guenter Roeck <linux@roeck-us.net>
6254 S:      Maintained
6255 F:      drivers/net/dsa/mv88e6352.c
6256
6257 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6258 M:      Mirko Lindner <mlindner@marvell.com>
6259 M:      Stephen Hemminger <stephen@networkplumber.org>
6260 L:      netdev@vger.kernel.org
6261 S:      Maintained
6262 F:      drivers/net/ethernet/marvell/sk*
6263
6264 MARVELL LIBERTAS WIRELESS DRIVER
6265 L:      libertas-dev@lists.infradead.org
6266 S:      Orphan
6267 F:      drivers/net/wireless/libertas/
6268
6269 MARVELL MV643XX ETHERNET DRIVER
6270 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6271 L:      netdev@vger.kernel.org
6272 S:      Maintained
6273 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6274 F:      include/linux/mv643xx.h
6275
6276 MARVELL MVNETA ETHERNET DRIVER
6277 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6278 L:      netdev@vger.kernel.org
6279 S:      Maintained
6280 F:      drivers/net/ethernet/marvell/mvneta.*
6281
6282 MARVELL MWIFIEX WIRELESS DRIVER
6283 M:      Amitkumar Karwar <akarwar@marvell.com>
6284 M:      Avinash Patil <patila@marvell.com>
6285 L:      linux-wireless@vger.kernel.org
6286 S:      Maintained
6287 F:      drivers/net/wireless/mwifiex/
6288
6289 MARVELL MWL8K WIRELESS DRIVER
6290 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6291 L:      linux-wireless@vger.kernel.org
6292 S:      Odd Fixes
6293 F:      drivers/net/wireless/mwl8k.c
6294
6295 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6296 M:      Nicolas Pitre <nico@fluxnic.net>
6297 S:      Odd Fixes
6298 F:      drivers/mmc/host/mvsdio.*
6299
6300 MATROX FRAMEBUFFER DRIVER
6301 L:      linux-fbdev@vger.kernel.org
6302 S:      Orphan
6303 F:      drivers/video/fbdev/matrox/matroxfb_*
6304 F:      include/uapi/linux/matroxfb.h
6305
6306 MAX16065 HARDWARE MONITOR DRIVER
6307 M:      Guenter Roeck <linux@roeck-us.net>
6308 L:      lm-sensors@lm-sensors.org
6309 S:      Maintained
6310 F:      Documentation/hwmon/max16065
6311 F:      drivers/hwmon/max16065.c
6312
6313 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6314 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6315 L:      lm-sensors@lm-sensors.org
6316 S:      Maintained
6317 F:      Documentation/hwmon/max6650
6318 F:      drivers/hwmon/max6650.c
6319
6320 MAX6697 HARDWARE MONITOR DRIVER
6321 M:      Guenter Roeck <linux@roeck-us.net>
6322 L:      lm-sensors@lm-sensors.org
6323 S:      Maintained
6324 F:      Documentation/hwmon/max6697
6325 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6326 F:      drivers/hwmon/max6697.c
6327 F:      include/linux/platform_data/max6697.h
6328
6329 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6330 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6331 L:      linux-pm@vger.kernel.org
6332 S:      Supported
6333 F:      drivers/power/max14577_charger.c
6334 F:      drivers/power/max77693_charger.c
6335
6336 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6337 M:      Chanwoo Choi <cw00.choi@samsung.com>
6338 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6339 L:      linux-kernel@vger.kernel.org
6340 S:      Supported
6341 F:      drivers/*/max14577.c
6342 F:      drivers/*/max77686.c
6343 F:      drivers/*/max77693.c
6344 F:      drivers/extcon/extcon-max14577.c
6345 F:      drivers/extcon/extcon-max77693.c
6346 F:      drivers/rtc/rtc-max77686.c
6347 F:      drivers/clk/clk-max77686.c
6348 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6349 F:      Documentation/devicetree/bindings/mfd/max77686.txt
6350 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6351 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6352 F:      include/linux/mfd/max14577*.h
6353 F:      include/linux/mfd/max77686*.h
6354 F:      include/linux/mfd/max77693*.h
6355
6356 MAXIRADIO FM RADIO RECEIVER DRIVER
6357 M:      Hans Verkuil <hverkuil@xs4all.nl>
6358 L:      linux-media@vger.kernel.org
6359 T:      git git://linuxtv.org/media_tree.git
6360 W:      http://linuxtv.org
6361 S:      Maintained
6362 F:      drivers/media/radio/radio-maxiradio*
6363
6364 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6365 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6366 P:      LinuxTV.org Project
6367 L:      linux-media@vger.kernel.org
6368 W:      http://linuxtv.org
6369 Q:      http://patchwork.kernel.org/project/linux-media/list/
6370 T:      git git://linuxtv.org/media_tree.git
6371 S:      Maintained
6372 F:      Documentation/dvb/
6373 F:      Documentation/video4linux/
6374 F:      Documentation/DocBook/media/
6375 F:      drivers/media/
6376 F:      drivers/staging/media/
6377 F:      include/media/
6378 F:      include/uapi/linux/dvb/
6379 F:      include/uapi/linux/videodev2.h
6380 F:      include/uapi/linux/media.h
6381 F:      include/uapi/linux/v4l2-*
6382 F:      include/uapi/linux/meye.h
6383 F:      include/uapi/linux/ivtv*
6384 F:      include/uapi/linux/uvcvideo.h
6385
6386 MEGARAID SCSI/SAS DRIVERS
6387 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6388 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6389 M:      Uday Lingala <uday.lingala@avagotech.com>
6390 L:      megaraidlinux.pdl@avagotech.com
6391 L:      linux-scsi@vger.kernel.org
6392 W:      http://www.lsi.com
6393 S:      Maintained
6394 F:      Documentation/scsi/megaraid.txt
6395 F:      drivers/scsi/megaraid.*
6396 F:      drivers/scsi/megaraid/
6397
6398 MELLANOX ETHERNET DRIVER (mlx4_en)
6399 M:      Amir Vadai <amirv@mellanox.com>
6400 M:      Ido Shamay <idos@mellanox.com>
6401 L:      netdev@vger.kernel.org
6402 S:      Supported
6403 W:      http://www.mellanox.com
6404 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6405 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6406
6407 MEMORY MANAGEMENT
6408 L:      linux-mm@kvack.org
6409 W:      http://www.linux-mm.org
6410 S:      Maintained
6411 F:      include/linux/mm.h
6412 F:      include/linux/gfp.h
6413 F:      include/linux/mmzone.h
6414 F:      include/linux/memory_hotplug.h
6415 F:      include/linux/vmalloc.h
6416 F:      mm/
6417
6418 MEMORY TECHNOLOGY DEVICES (MTD)
6419 M:      David Woodhouse <dwmw2@infradead.org>
6420 M:      Brian Norris <computersforpeace@gmail.com>
6421 L:      linux-mtd@lists.infradead.org
6422 W:      http://www.linux-mtd.infradead.org/
6423 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6424 T:      git git://git.infradead.org/linux-mtd.git
6425 T:      git git://git.infradead.org/l2-mtd.git
6426 S:      Maintained
6427 F:      drivers/mtd/
6428 F:      include/linux/mtd/
6429 F:      include/uapi/mtd/
6430
6431 MEN A21 WATCHDOG DRIVER
6432 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
6433 L:      linux-watchdog@vger.kernel.org
6434 S:      Supported
6435 F:      drivers/watchdog/mena21_wdt.c
6436
6437 MEN CHAMELEON BUS (mcb)
6438 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
6439 S:      Supported
6440 F:      drivers/mcb/
6441 F:      include/linux/mcb.h
6442
6443 MEN F21BMC (Board Management Controller)
6444 M:      Andreas Werner <andreas.werner@men.de>
6445 S:      Supported
6446 F:      drivers/mfd/menf21bmc.c
6447 F:      drivers/watchdog/menf21bmc_wdt.c
6448 F:      drivers/leds/leds-menf21bmc.c
6449 F:      drivers/hwmon/menf21bmc_hwmon.c
6450 F:      Documentation/hwmon/menf21bmc
6451
6452 METAG ARCHITECTURE
6453 M:      James Hogan <james.hogan@imgtec.com>
6454 L:      linux-metag@vger.kernel.org
6455 S:      Supported
6456 F:      arch/metag/
6457 F:      Documentation/metag/
6458 F:      Documentation/devicetree/bindings/metag/
6459 F:      drivers/clocksource/metag_generic.c
6460 F:      drivers/irqchip/irq-metag.c
6461 F:      drivers/irqchip/irq-metag-ext.c
6462 F:      drivers/tty/metag_da.c
6463
6464 MICROBLAZE ARCHITECTURE
6465 M:      Michal Simek <monstr@monstr.eu>
6466 W:      http://www.monstr.eu/fdt/
6467 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6468 S:      Supported
6469 F:      arch/microblaze/
6470
6471 MICROTEK X6 SCANNER
6472 M:      Oliver Neukum <oliver@neukum.org>
6473 S:      Maintained
6474 F:      drivers/usb/image/microtek.*
6475
6476 MIPS
6477 M:      Ralf Baechle <ralf@linux-mips.org>
6478 L:      linux-mips@linux-mips.org
6479 W:      http://www.linux-mips.org/
6480 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6481 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6482 S:      Supported
6483 F:      Documentation/mips/
6484 F:      arch/mips/
6485
6486 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6487 M:      Hans Verkuil <hverkuil@xs4all.nl>
6488 L:      linux-media@vger.kernel.org
6489 T:      git git://linuxtv.org/media_tree.git
6490 W:      http://linuxtv.org
6491 S:      Odd Fixes
6492 F:      drivers/media/radio/radio-miropcm20*
6493
6494 Mellanox MLX5 core VPI driver
6495 M:      Eli Cohen <eli@mellanox.com>
6496 L:      netdev@vger.kernel.org
6497 L:      linux-rdma@vger.kernel.org
6498 W:      http://www.mellanox.com
6499 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6500 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6501 T:      git git://openfabrics.org/~eli/connect-ib.git
6502 S:      Supported
6503 F:      drivers/net/ethernet/mellanox/mlx5/core/
6504 F:      include/linux/mlx5/
6505
6506 Mellanox MLX5 IB driver
6507 M:      Eli Cohen <eli@mellanox.com>
6508 L:      linux-rdma@vger.kernel.org
6509 W:      http://www.mellanox.com
6510 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6511 T:      git git://openfabrics.org/~eli/connect-ib.git
6512 S:      Supported
6513 F:      include/linux/mlx5/
6514 F:      drivers/infiniband/hw/mlx5/
6515
6516 MN88472 MEDIA DRIVER
6517 M:      Antti Palosaari <crope@iki.fi>
6518 L:      linux-media@vger.kernel.org
6519 W:      http://linuxtv.org/
6520 W:      http://palosaari.fi/linux/
6521 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6522 T:      git git://linuxtv.org/anttip/media_tree.git
6523 S:      Maintained
6524 F:      drivers/staging/media/mn88472/
6525 F:      drivers/media/dvb-frontends/mn88472.h
6526
6527 MN88473 MEDIA DRIVER
6528 M:      Antti Palosaari <crope@iki.fi>
6529 L:      linux-media@vger.kernel.org
6530 W:      http://linuxtv.org/
6531 W:      http://palosaari.fi/linux/
6532 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6533 T:      git git://linuxtv.org/anttip/media_tree.git
6534 S:      Maintained
6535 F:      drivers/staging/media/mn88473/
6536 F:      drivers/media/dvb-frontends/mn88473.h
6537
6538 MODULE SUPPORT
6539 M:      Rusty Russell <rusty@rustcorp.com.au>
6540 S:      Maintained
6541 F:      include/linux/module.h
6542 F:      kernel/module.c
6543
6544 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6545 W:      http://popies.net/meye/
6546 S:      Orphan
6547 F:      Documentation/video4linux/meye.txt
6548 F:      drivers/media/pci/meye/
6549 F:      include/uapi/linux/meye.h
6550
6551 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6552 M:      Jiri Slaby <jirislaby@gmail.com>
6553 S:      Maintained
6554 F:      Documentation/serial/moxa-smartio
6555 F:      drivers/tty/mxser.*
6556
6557 MR800 AVERMEDIA USB FM RADIO DRIVER
6558 M:      Alexey Klimov <klimov.linux@gmail.com>
6559 L:      linux-media@vger.kernel.org
6560 T:      git git://linuxtv.org/media_tree.git
6561 S:      Maintained
6562 F:      drivers/media/radio/radio-mr800.c
6563
6564 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6565 M:      Alan Ott <alan@signal11.us>
6566 L:      linux-wpan@vger.kernel.org
6567 S:      Maintained
6568 F:      drivers/net/ieee802154/mrf24j40.c
6569
6570 MSI LAPTOP SUPPORT
6571 M:      "Lee, Chun-Yi" <jlee@suse.com>
6572 L:      platform-driver-x86@vger.kernel.org
6573 S:      Maintained
6574 F:      drivers/platform/x86/msi-laptop.c
6575
6576 MSI WMI SUPPORT
6577 M:      Anisse Astier <anisse@astier.eu>
6578 L:      platform-driver-x86@vger.kernel.org
6579 S:      Supported
6580 F:      drivers/platform/x86/msi-wmi.c
6581
6582 MSI001 MEDIA DRIVER
6583 M:      Antti Palosaari <crope@iki.fi>
6584 L:      linux-media@vger.kernel.org
6585 W:      http://linuxtv.org/
6586 W:      http://palosaari.fi/linux/
6587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6588 T:      git git://linuxtv.org/anttip/media_tree.git
6589 S:      Maintained
6590 F:      drivers/media/tuners/msi001*
6591
6592 MSI2500 MEDIA DRIVER
6593 M:      Antti Palosaari <crope@iki.fi>
6594 L:      linux-media@vger.kernel.org
6595 W:      http://linuxtv.org/
6596 W:      http://palosaari.fi/linux/
6597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6598 T:      git git://linuxtv.org/anttip/media_tree.git
6599 S:      Maintained
6600 F:      drivers/media/usb/msi2500/
6601
6602 MT9M032 APTINA SENSOR DRIVER
6603 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6604 L:      linux-media@vger.kernel.org
6605 T:      git git://linuxtv.org/media_tree.git
6606 S:      Maintained
6607 F:      drivers/media/i2c/mt9m032.c
6608 F:      include/media/mt9m032.h
6609
6610 MT9P031 APTINA CAMERA SENSOR
6611 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6612 L:      linux-media@vger.kernel.org
6613 T:      git git://linuxtv.org/media_tree.git
6614 S:      Maintained
6615 F:      drivers/media/i2c/mt9p031.c
6616 F:      include/media/mt9p031.h
6617
6618 MT9T001 APTINA CAMERA SENSOR
6619 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6620 L:      linux-media@vger.kernel.org
6621 T:      git git://linuxtv.org/media_tree.git
6622 S:      Maintained
6623 F:      drivers/media/i2c/mt9t001.c
6624 F:      include/media/mt9t001.h
6625
6626 MT9V032 APTINA CAMERA SENSOR
6627 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6628 L:      linux-media@vger.kernel.org
6629 T:      git git://linuxtv.org/media_tree.git
6630 S:      Maintained
6631 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
6632 F:      drivers/media/i2c/mt9v032.c
6633 F:      include/media/mt9v032.h
6634
6635 MULTIFUNCTION DEVICES (MFD)
6636 M:      Samuel Ortiz <sameo@linux.intel.com>
6637 M:      Lee Jones <lee.jones@linaro.org>
6638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
6639 S:      Supported
6640 F:      drivers/mfd/
6641 F:      include/linux/mfd/
6642
6643 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
6644 M:      Ulf Hansson <ulf.hansson@linaro.org>
6645 L:      linux-mmc@vger.kernel.org
6646 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
6647 S:      Maintained
6648 F:      drivers/mmc/
6649 F:      include/linux/mmc/
6650 F:      include/uapi/linux/mmc/
6651
6652 MULTIMEDIA CARD (MMC) ETC. OVER SPI
6653 S:      Orphan
6654 F:      drivers/mmc/host/mmc_spi.c
6655 F:      include/linux/spi/mmc_spi.h
6656
6657 MULTISOUND SOUND DRIVER
6658 M:      Andrew Veliath <andrewtv@usa.net>
6659 S:      Maintained
6660 F:      Documentation/sound/oss/MultiSound
6661 F:      sound/oss/msnd*
6662
6663 MULTITECH MULTIPORT CARD (ISICOM)
6664 S:      Orphan
6665 F:      drivers/tty/isicom.c
6666 F:      include/linux/isicom.h
6667
6668 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
6669 M:      Felipe Balbi <balbi@ti.com>
6670 L:      linux-usb@vger.kernel.org
6671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6672 S:      Maintained
6673 F:      drivers/usb/musb/
6674
6675 MXL5007T MEDIA DRIVER
6676 M:      Michael Krufky <mkrufky@linuxtv.org>
6677 L:      linux-media@vger.kernel.org
6678 W:      http://linuxtv.org/
6679 W:      http://github.com/mkrufky
6680 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6681 T:      git git://linuxtv.org/mkrufky/tuners.git
6682 S:      Maintained
6683 F:      drivers/media/tuners/mxl5007t.*
6684
6685 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
6686 M:      Hyong-Youb Kim <hykim@myri.com>
6687 L:      netdev@vger.kernel.org
6688 W:      https://www.myricom.com/support/downloads/myri10ge.html
6689 S:      Supported
6690 F:      drivers/net/ethernet/myricom/myri10ge/
6691
6692 NATSEMI ETHERNET DRIVER (DP8381x)
6693 S:      Orphan
6694 F:      drivers/net/ethernet/natsemi/natsemi.c
6695
6696 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
6697 M:      Daniel Mack <zonque@gmail.com>
6698 S:      Maintained
6699 L:      alsa-devel@alsa-project.org
6700 W:      http://www.native-instruments.com
6701 F:      sound/usb/caiaq/
6702
6703 NCP FILESYSTEM
6704 M:      Petr Vandrovec <petr@vandrovec.name>
6705 S:      Odd Fixes
6706 F:      fs/ncpfs/
6707
6708 NCR 5380 SCSI DRIVERS
6709 M:      Finn Thain <fthain@telegraphics.com.au>
6710 M:      Michael Schmitz <schmitzmic@gmail.com>
6711 L:      linux-scsi@vger.kernel.org
6712 S:      Maintained
6713 F:      Documentation/scsi/g_NCR5380.txt
6714 F:      drivers/scsi/NCR5380.*
6715 F:      drivers/scsi/arm/cumana_1.c
6716 F:      drivers/scsi/arm/oak.c
6717 F:      drivers/scsi/atari_NCR5380.c
6718 F:      drivers/scsi/atari_scsi.*
6719 F:      drivers/scsi/dmx3191d.c
6720 F:      drivers/scsi/dtc.*
6721 F:      drivers/scsi/g_NCR5380.*
6722 F:      drivers/scsi/g_NCR5380_mmio.c
6723 F:      drivers/scsi/mac_scsi.*
6724 F:      drivers/scsi/pas16.*
6725 F:      drivers/scsi/sun3_scsi.*
6726 F:      drivers/scsi/sun3_scsi_vme.c
6727 F:      drivers/scsi/t128.*
6728
6729 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
6730 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6731 L:      linux-scsi@vger.kernel.org
6732 S:      Maintained
6733 F:      drivers/scsi/NCR_D700.*
6734
6735 NCT6775 HARDWARE MONITOR DRIVER
6736 M:      Guenter Roeck <linux@roeck-us.net>
6737 L:      lm-sensors@lm-sensors.org
6738 S:      Maintained
6739 F:      Documentation/hwmon/nct6775
6740 F:      drivers/hwmon/nct6775.c
6741
6742 NETEFFECT IWARP RNIC DRIVER (IW_NES)
6743 M:      Faisal Latif <faisal.latif@intel.com>
6744 L:      linux-rdma@vger.kernel.org
6745 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
6746 S:      Supported
6747 F:      drivers/infiniband/hw/nes/
6748
6749 NETEM NETWORK EMULATOR
6750 M:      Stephen Hemminger <stephen@networkplumber.org>
6751 L:      netem@lists.linux-foundation.org
6752 S:      Maintained
6753 F:      net/sched/sch_netem.c
6754
6755 NETERION 10GbE DRIVERS (s2io/vxge)
6756 M:      Jon Mason <jdmason@kudzu.us>
6757 L:      netdev@vger.kernel.org
6758 S:      Supported
6759 F:      Documentation/networking/s2io.txt
6760 F:      Documentation/networking/vxge.txt
6761 F:      drivers/net/ethernet/neterion/
6762
6763 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
6764 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6765 M:      Patrick McHardy <kaber@trash.net>
6766 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
6767 L:      netfilter-devel@vger.kernel.org
6768 L:      coreteam@netfilter.org
6769 W:      http://www.netfilter.org/
6770 W:      http://www.iptables.org/
6771 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
6772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
6773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
6774 S:      Supported
6775 F:      include/linux/netfilter*
6776 F:      include/linux/netfilter/
6777 F:      include/net/netfilter/
6778 F:      include/uapi/linux/netfilter*
6779 F:      include/uapi/linux/netfilter/
6780 F:      net/*/netfilter.c
6781 F:      net/*/netfilter/
6782 F:      net/netfilter/
6783
6784 NETLABEL
6785 M:      Paul Moore <paul@paul-moore.com>
6786 W:      http://netlabel.sf.net
6787 L:      netdev@vger.kernel.org
6788 S:      Maintained
6789 F:      Documentation/netlabel/
6790 F:      include/net/netlabel.h
6791 F:      net/netlabel/
6792
6793 NETROM NETWORK LAYER
6794 M:      Ralf Baechle <ralf@linux-mips.org>
6795 L:      linux-hams@vger.kernel.org
6796 W:      http://www.linux-ax25.org/
6797 S:      Maintained
6798 F:      include/net/netrom.h
6799 F:      include/uapi/linux/netrom.h
6800 F:      net/netrom/
6801
6802 NETWORK BLOCK DEVICE (NBD)
6803 M:      Markus Pargmann <mpa@pengutronix.de>
6804 S:      Maintained
6805 L:      nbd-general@lists.sourceforge.net
6806 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
6807 F:      Documentation/blockdev/nbd.txt
6808 F:      drivers/block/nbd.c
6809 F:      include/linux/nbd.h
6810 F:      include/uapi/linux/nbd.h
6811
6812 NETWORK DROP MONITOR
6813 M:      Neil Horman <nhorman@tuxdriver.com>
6814 L:      netdev@vger.kernel.org
6815 S:      Maintained
6816 W:      https://fedorahosted.org/dropwatch/
6817 F:      net/core/drop_monitor.c
6818
6819 NETWORKING [GENERAL]
6820 M:      "David S. Miller" <davem@davemloft.net>
6821 L:      netdev@vger.kernel.org
6822 W:      http://www.linuxfoundation.org/en/Net
6823 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6826 S:      Maintained
6827 F:      net/
6828 F:      include/net/
6829 F:      include/linux/in.h
6830 F:      include/linux/net.h
6831 F:      include/linux/netdevice.h
6832 F:      include/uapi/linux/in.h
6833 F:      include/uapi/linux/net.h
6834 F:      include/uapi/linux/netdevice.h
6835 F:      include/uapi/linux/net_namespace.h
6836 F:      tools/net/
6837 F:      tools/testing/selftests/net/
6838 F:      lib/random32.c
6839 F:      lib/test_bpf.c
6840
6841 NETWORKING [IPv4/IPv6]
6842 M:      "David S. Miller" <davem@davemloft.net>
6843 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
6844 M:      James Morris <jmorris@namei.org>
6845 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
6846 M:      Patrick McHardy <kaber@trash.net>
6847 L:      netdev@vger.kernel.org
6848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6849 S:      Maintained
6850 F:      net/ipv4/
6851 F:      net/ipv6/
6852 F:      include/net/ip*
6853 F:      arch/x86/net/*
6854
6855 NETWORKING [IPSEC]
6856 M:      Steffen Klassert <steffen.klassert@secunet.com>
6857 M:      Herbert Xu <herbert@gondor.apana.org.au>
6858 M:      "David S. Miller" <davem@davemloft.net>
6859 L:      netdev@vger.kernel.org
6860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
6861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
6862 S:      Maintained
6863 F:      net/core/flow.c
6864 F:      net/xfrm/
6865 F:      net/key/
6866 F:      net/ipv4/xfrm*
6867 F:      net/ipv4/esp4.c
6868 F:      net/ipv4/ah4.c
6869 F:      net/ipv4/ipcomp.c
6870 F:      net/ipv4/ip_vti.c
6871 F:      net/ipv6/xfrm*
6872 F:      net/ipv6/esp6.c
6873 F:      net/ipv6/ah6.c
6874 F:      net/ipv6/ipcomp6.c
6875 F:      net/ipv6/ip6_vti.c
6876 F:      include/uapi/linux/xfrm.h
6877 F:      include/net/xfrm.h
6878
6879 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
6880 M:      Paul Moore <paul@paul-moore.com>
6881 L:      netdev@vger.kernel.org
6882 S:      Maintained
6883
6884 NETWORKING [WIRELESS]
6885 L:      linux-wireless@vger.kernel.org
6886 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
6887
6888 NETWORKING DRIVERS
6889 L:      netdev@vger.kernel.org
6890 W:      http://www.linuxfoundation.org/en/Net
6891 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6894 S:      Odd Fixes
6895 F:      drivers/net/
6896 F:      include/linux/if_*
6897 F:      include/linux/netdevice.h
6898 F:      include/linux/arcdevice.h
6899 F:      include/linux/etherdevice.h
6900 F:      include/linux/fcdevice.h
6901 F:      include/linux/fddidevice.h
6902 F:      include/linux/hippidevice.h
6903 F:      include/linux/inetdevice.h
6904 F:      include/uapi/linux/if_*
6905 F:      include/uapi/linux/netdevice.h
6906
6907 NETWORKING DRIVERS (WIRELESS)
6908 M:      Kalle Valo <kvalo@codeaurora.org>
6909 L:      linux-wireless@vger.kernel.org
6910 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
6911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
6912 S:      Maintained
6913 F:      drivers/net/wireless/
6914
6915 NETXEN (1/10) GbE SUPPORT
6916 M:      Manish Chopra <manish.chopra@qlogic.com>
6917 M:      Sony Chacko <sony.chacko@qlogic.com>
6918 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
6919 L:      netdev@vger.kernel.org
6920 W:      http://www.qlogic.com
6921 S:      Supported
6922 F:      drivers/net/ethernet/qlogic/netxen/
6923
6924 NFC SUBSYSTEM
6925 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6926 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
6927 M:      Samuel Ortiz <sameo@linux.intel.com>
6928 L:      linux-wireless@vger.kernel.org
6929 L:      linux-nfc@lists.01.org (subscribers-only)
6930 S:      Supported
6931 F:      net/nfc/
6932 F:      include/net/nfc/
6933 F:      include/uapi/linux/nfc.h
6934 F:      drivers/nfc/
6935 F:      include/linux/platform_data/pn544.h
6936 F:      Documentation/devicetree/bindings/net/nfc/
6937
6938 NFS, SUNRPC, AND LOCKD CLIENTS
6939 M:      Trond Myklebust <trond.myklebust@primarydata.com>
6940 M:      Anna Schumaker <anna.schumaker@netapp.com>
6941 L:      linux-nfs@vger.kernel.org
6942 W:      http://client.linux-nfs.org
6943 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
6944 S:      Maintained
6945 F:      fs/lockd/
6946 F:      fs/nfs/
6947 F:      fs/nfs_common/
6948 F:      net/sunrpc/
6949 F:      include/linux/lockd/
6950 F:      include/linux/nfs*
6951 F:      include/linux/sunrpc/
6952 F:      include/uapi/linux/nfs*
6953 F:      include/uapi/linux/sunrpc/
6954
6955 NILFS2 FILESYSTEM
6956 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
6957 L:      linux-nilfs@vger.kernel.org
6958 W:      http://nilfs.sourceforge.net/
6959 T:      git git://github.com/konis/nilfs2.git
6960 S:      Supported
6961 F:      Documentation/filesystems/nilfs2.txt
6962 F:      fs/nilfs2/
6963 F:      include/linux/nilfs2_fs.h
6964
6965 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
6966 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6967 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6968 S:      Maintained
6969 F:      Documentation/scsi/NinjaSCSI.txt
6970 F:      drivers/scsi/pcmcia/nsp_*
6971
6972 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
6973 M:      GOTO Masanori <gotom@debian.or.jp>
6974 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6975 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6976 S:      Maintained
6977 F:      Documentation/scsi/NinjaSCSI.txt
6978 F:      drivers/scsi/nsp32*
6979
6980 NIOS2 ARCHITECTURE
6981 M:      Ley Foon Tan <lftan@altera.com>
6982 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
6983 T:      git git://git.rocketboards.org/linux-socfpga-next.git
6984 S:      Maintained
6985 F:      arch/nios2/
6986
6987 NTB DRIVER
6988 M:      Jon Mason <jdmason@kudzu.us>
6989 M:      Dave Jiang <dave.jiang@intel.com>
6990 S:      Supported
6991 W:      https://github.com/jonmason/ntb/wiki
6992 T:      git git://github.com/jonmason/ntb.git
6993 F:      drivers/ntb/
6994 F:      drivers/net/ntb_netdev.c
6995 F:      include/linux/ntb.h
6996
6997 NTFS FILESYSTEM
6998 M:      Anton Altaparmakov <anton@tuxera.com>
6999 L:      linux-ntfs-dev@lists.sourceforge.net
7000 W:      http://www.tuxera.com/
7001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7002 S:      Supported
7003 F:      Documentation/filesystems/ntfs.txt
7004 F:      fs/ntfs/
7005
7006 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7007 M:      Antonino Daplas <adaplas@gmail.com>
7008 L:      linux-fbdev@vger.kernel.org
7009 S:      Maintained
7010 F:      drivers/video/fbdev/riva/
7011 F:      drivers/video/fbdev/nvidia/
7012
7013 NVM EXPRESS DRIVER
7014 M:      Matthew Wilcox <willy@linux.intel.com>
7015 L:      linux-nvme@lists.infradead.org
7016 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7017 S:      Supported
7018 F:      drivers/block/nvme*
7019 F:      include/linux/nvme.h
7020
7021 NXP-NCI NFC DRIVER
7022 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7023 R:      Charles Gorand <charles.gorand@effinnov.com>
7024 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7025 S:      Supported
7026 F:      drivers/nfc/nxp-nci
7027
7028 NXP TDA998X DRM DRIVER
7029 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7030 S:      Supported
7031 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7032 F:      include/drm/i2c/tda998x.h
7033
7034 NXP TFA9879 DRIVER
7035 M:      Peter Rosin <peda@axentia.se>
7036 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7037 S:      Maintained
7038 F:      sound/soc/codecs/tfa9879*
7039
7040 OMAP SUPPORT
7041 M:      Tony Lindgren <tony@atomide.com>
7042 L:      linux-omap@vger.kernel.org
7043 W:      http://www.muru.com/linux/omap/
7044 W:      http://linux.omap.com/
7045 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7047 S:      Maintained
7048 F:      arch/arm/*omap*/
7049 F:      arch/arm/configs/omap1_defconfig
7050 F:      arch/arm/configs/omap2plus_defconfig
7051 F:      drivers/i2c/busses/i2c-omap.c
7052 F:      drivers/irqchip/irq-omap-intc.c
7053 F:      drivers/mfd/*omap*.c
7054 F:      drivers/mfd/menelaus.c
7055 F:      drivers/mfd/palmas.c
7056 F:      drivers/mfd/tps65217.c
7057 F:      drivers/mfd/tps65218.c
7058 F:      drivers/mfd/tps65910.c
7059 F:      drivers/mfd/twl-core.[ch]
7060 F:      drivers/mfd/twl4030*.c
7061 F:      drivers/mfd/twl6030*.c
7062 F:      drivers/mfd/twl6040*.c
7063 F:      drivers/regulator/palmas-regulator*.c
7064 F:      drivers/regulator/pbias-regulator.c
7065 F:      drivers/regulator/tps65217-regulator.c
7066 F:      drivers/regulator/tps65218-regulator.c
7067 F:      drivers/regulator/tps65910-regulator.c
7068 F:      drivers/regulator/twl-regulator.c
7069 F:      include/linux/i2c-omap.h
7070
7071 OMAP DEVICE TREE SUPPORT
7072 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7073 M:      Tony Lindgren <tony@atomide.com>
7074 L:      linux-omap@vger.kernel.org
7075 L:      devicetree@vger.kernel.org
7076 S:      Maintained
7077 F:      arch/arm/boot/dts/*omap*
7078 F:      arch/arm/boot/dts/*am3*
7079 F:      arch/arm/boot/dts/*am4*
7080 F:      arch/arm/boot/dts/*am5*
7081 F:      arch/arm/boot/dts/*dra7*
7082
7083 OMAP CLOCK FRAMEWORK SUPPORT
7084 M:      Paul Walmsley <paul@pwsan.com>
7085 L:      linux-omap@vger.kernel.org
7086 S:      Maintained
7087 F:      arch/arm/*omap*/*clock*
7088
7089 OMAP POWER MANAGEMENT SUPPORT
7090 M:      Kevin Hilman <khilman@deeprootsystems.com>
7091 L:      linux-omap@vger.kernel.org
7092 S:      Maintained
7093 F:      arch/arm/*omap*/*pm*
7094 F:      drivers/cpufreq/omap-cpufreq.c
7095
7096 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7097 M:      Rajendra Nayak <rnayak@ti.com>
7098 M:      Paul Walmsley <paul@pwsan.com>
7099 L:      linux-omap@vger.kernel.org
7100 S:      Maintained
7101 F:      arch/arm/mach-omap2/prm*
7102
7103 OMAP AUDIO SUPPORT
7104 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7105 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7106 L:      alsa-devel@alsa-project.org (subscribers-only)
7107 L:      linux-omap@vger.kernel.org
7108 S:      Maintained
7109 F:      sound/soc/omap/
7110
7111 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7112 M:      Roger Quadros <rogerq@ti.com>
7113 M:      Tony Lindgren <tony@atomide.com>
7114 L:      linux-omap@vger.kernel.org
7115 S:      Maintained
7116 F:      drivers/memory/omap-gpmc.c
7117 F:      arch/arm/mach-omap2/*gpmc*
7118
7119 OMAP FRAMEBUFFER SUPPORT
7120 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7121 L:      linux-fbdev@vger.kernel.org
7122 L:      linux-omap@vger.kernel.org
7123 S:      Maintained
7124 F:      drivers/video/fbdev/omap/
7125
7126 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7127 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7128 L:      linux-omap@vger.kernel.org
7129 L:      linux-fbdev@vger.kernel.org
7130 S:      Maintained
7131 F:      drivers/video/fbdev/omap2/
7132 F:      Documentation/arm/OMAP/DSS
7133
7134 OMAP HARDWARE SPINLOCK SUPPORT
7135 M:      Ohad Ben-Cohen <ohad@wizery.com>
7136 L:      linux-omap@vger.kernel.org
7137 S:      Maintained
7138 F:      drivers/hwspinlock/omap_hwspinlock.c
7139 F:      arch/arm/mach-omap2/hwspinlock.c
7140
7141 OMAP MMC SUPPORT
7142 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7143 L:      linux-omap@vger.kernel.org
7144 S:      Maintained
7145 F:      drivers/mmc/host/omap.c
7146
7147 OMAP HS MMC SUPPORT
7148 L:      linux-mmc@vger.kernel.org
7149 L:      linux-omap@vger.kernel.org
7150 S:      Orphan
7151 F:      drivers/mmc/host/omap_hsmmc.c
7152
7153 OMAP RANDOM NUMBER GENERATOR SUPPORT
7154 M:      Deepak Saxena <dsaxena@plexity.net>
7155 S:      Maintained
7156 F:      drivers/char/hw_random/omap-rng.c
7157
7158 OMAP HWMOD SUPPORT
7159 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7160 M:      Paul Walmsley <paul@pwsan.com>
7161 L:      linux-omap@vger.kernel.org
7162 S:      Maintained
7163 F:      arch/arm/mach-omap2/omap_hwmod.*
7164
7165 OMAP HWMOD DATA
7166 M:      Paul Walmsley <paul@pwsan.com>
7167 L:      linux-omap@vger.kernel.org
7168 S:      Maintained
7169 F:      arch/arm/mach-omap2/omap_hwmod*data*
7170
7171 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7172 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7173 L:      linux-omap@vger.kernel.org
7174 S:      Maintained
7175 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7176
7177 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7178 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7179 L:      linux-media@vger.kernel.org
7180 S:      Maintained
7181 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7182 F:      drivers/media/platform/omap3isp/
7183 F:      drivers/staging/media/omap4iss/
7184
7185 OMAP USB SUPPORT
7186 M:      Felipe Balbi <balbi@ti.com>
7187 L:      linux-usb@vger.kernel.org
7188 L:      linux-omap@vger.kernel.org
7189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7190 S:      Maintained
7191 F:      drivers/usb/*/*omap*
7192 F:      arch/arm/*omap*/usb*
7193
7194 OMAP GPIO DRIVER
7195 M:      Javier Martinez Canillas <javier@dowhile0.org>
7196 M:      Santosh Shilimkar <ssantosh@kernel.org>
7197 M:      Kevin Hilman <khilman@deeprootsystems.com>
7198 L:      linux-omap@vger.kernel.org
7199 S:      Maintained
7200 F:      drivers/gpio/gpio-omap.c
7201
7202 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7203 M:      Mark Jackson <mpfj@newflow.co.uk>
7204 L:      linux-omap@vger.kernel.org
7205 S:      Maintained
7206 F:      arch/arm/boot/dts/am335x-nano.dts
7207
7208 OMFS FILESYSTEM
7209 M:      Bob Copeland <me@bobcopeland.com>
7210 L:      linux-karma-devel@lists.sourceforge.net
7211 S:      Maintained
7212 F:      Documentation/filesystems/omfs.txt
7213 F:      fs/omfs/
7214
7215 OMNIKEY CARDMAN 4000 DRIVER
7216 M:      Harald Welte <laforge@gnumonks.org>
7217 S:      Maintained
7218 F:      drivers/char/pcmcia/cm4000_cs.c
7219 F:      include/linux/cm4000_cs.h
7220 F:      include/uapi/linux/cm4000_cs.h
7221
7222 OMNIKEY CARDMAN 4040 DRIVER
7223 M:      Harald Welte <laforge@gnumonks.org>
7224 S:      Maintained
7225 F:      drivers/char/pcmcia/cm4040_cs.*
7226
7227 OMNIVISION OV7670 SENSOR DRIVER
7228 M:      Jonathan Corbet <corbet@lwn.net>
7229 L:      linux-media@vger.kernel.org
7230 T:      git git://linuxtv.org/media_tree.git
7231 S:      Maintained
7232 F:      drivers/media/i2c/ov7670.c
7233
7234 ONENAND FLASH DRIVER
7235 M:      Kyungmin Park <kyungmin.park@samsung.com>
7236 L:      linux-mtd@lists.infradead.org
7237 S:      Maintained
7238 F:      drivers/mtd/onenand/
7239 F:      include/linux/mtd/onenand*.h
7240
7241 ONSTREAM SCSI TAPE DRIVER
7242 M:      Willem Riede <osst@riede.org>
7243 L:      osst-users@lists.sourceforge.net
7244 L:      linux-scsi@vger.kernel.org
7245 S:      Maintained
7246 F:      Documentation/scsi/osst.txt
7247 F:      drivers/scsi/osst.*
7248 F:      drivers/scsi/osst_*.h
7249 F:      drivers/scsi/st.h
7250
7251 OPENCORES I2C BUS DRIVER
7252 M:      Peter Korsgaard <jacmet@sunsite.dk>
7253 L:      linux-i2c@vger.kernel.org
7254 S:      Maintained
7255 F:      Documentation/i2c/busses/i2c-ocores
7256 F:      drivers/i2c/busses/i2c-ocores.c
7257
7258 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7259 M:      Grant Likely <grant.likely@linaro.org>
7260 M:      Rob Herring <robh+dt@kernel.org>
7261 L:      devicetree@vger.kernel.org
7262 W:      http://www.devicetree.org/
7263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7264 S:      Maintained
7265 F:      drivers/of/
7266 F:      include/linux/of*.h
7267 F:      scripts/dtc/
7268
7269 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7270 M:      Rob Herring <robh+dt@kernel.org>
7271 M:      Pawel Moll <pawel.moll@arm.com>
7272 M:      Mark Rutland <mark.rutland@arm.com>
7273 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7274 M:      Kumar Gala <galak@codeaurora.org>
7275 L:      devicetree@vger.kernel.org
7276 S:      Maintained
7277 F:      Documentation/devicetree/
7278 F:      arch/*/boot/dts/
7279 F:      include/dt-bindings/
7280
7281 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7282 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7283 L:      devicetree@vger.kernel.org
7284 S:      Maintained
7285 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7286 F:      Documentation/devicetree/overlay-notes.txt
7287 F:      drivers/of/overlay.c
7288 F:      drivers/of/resolver.c
7289
7290 OPENRISC ARCHITECTURE
7291 M:      Jonas Bonn <jonas@southpole.se>
7292 W:      http://openrisc.net
7293 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7294 S:      Maintained
7295 T:      git git://openrisc.net/~jonas/linux
7296 F:      arch/openrisc/
7297
7298 OPENVSWITCH
7299 M:      Pravin Shelar <pshelar@nicira.com>
7300 L:      netdev@vger.kernel.org
7301 L:      dev@openvswitch.org
7302 W:      http://openvswitch.org
7303 S:      Maintained
7304 F:      net/openvswitch/
7305 F:      include/uapi/linux/openvswitch.h
7306
7307 OPL4 DRIVER
7308 M:      Clemens Ladisch <clemens@ladisch.de>
7309 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7310 T:      git git://git.alsa-project.org/alsa-kernel.git
7311 S:      Maintained
7312 F:      sound/drivers/opl4/
7313
7314 OPROFILE
7315 M:      Robert Richter <rric@kernel.org>
7316 L:      oprofile-list@lists.sf.net
7317 S:      Maintained
7318 F:      arch/*/include/asm/oprofile*.h
7319 F:      arch/*/oprofile/
7320 F:      drivers/oprofile/
7321 F:      include/linux/oprofile.h
7322
7323 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7324 M:      Mark Fasheh <mfasheh@suse.com>
7325 M:      Joel Becker <jlbec@evilplan.org>
7326 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7327 W:      http://ocfs2.wiki.kernel.org
7328 S:      Supported
7329 F:      Documentation/filesystems/ocfs2.txt
7330 F:      Documentation/filesystems/dlmfs.txt
7331 F:      fs/ocfs2/
7332
7333 ORINOCO DRIVER
7334 L:      linux-wireless@vger.kernel.org
7335 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7336 W:      http://www.nongnu.org/orinoco/
7337 S:      Orphan
7338 F:      drivers/net/wireless/orinoco/
7339
7340 OSD LIBRARY and FILESYSTEM
7341 M:      Boaz Harrosh <ooo@electrozaur.com>
7342 M:      Benny Halevy <bhalevy@primarydata.com>
7343 L:      osd-dev@open-osd.org
7344 W:      http://open-osd.org
7345 T:      git git://git.open-osd.org/open-osd.git
7346 S:      Maintained
7347 F:      drivers/scsi/osd/
7348 F:      include/scsi/osd_*
7349 F:      fs/exofs/
7350
7351 OVERLAY FILESYSTEM
7352 M:      Miklos Szeredi <miklos@szeredi.hu>
7353 L:      linux-unionfs@vger.kernel.org
7354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7355 S:      Supported
7356 F:      fs/overlayfs/
7357 F:      Documentation/filesystems/overlayfs.txt
7358
7359 P54 WIRELESS DRIVER
7360 M:      Christian Lamparter <chunkeey@googlemail.com>
7361 L:      linux-wireless@vger.kernel.org
7362 W:      http://wireless.kernel.org/en/users/Drivers/p54
7363 S:      Maintained
7364 F:      drivers/net/wireless/p54/
7365
7366 PA SEMI ETHERNET DRIVER
7367 M:      Olof Johansson <olof@lixom.net>
7368 L:      netdev@vger.kernel.org
7369 S:      Maintained
7370 F:      drivers/net/ethernet/pasemi/*
7371
7372 PA SEMI SMBUS DRIVER
7373 M:      Olof Johansson <olof@lixom.net>
7374 L:      linux-i2c@vger.kernel.org
7375 S:      Maintained
7376 F:      drivers/i2c/busses/i2c-pasemi.c
7377
7378 PADATA PARALLEL EXECUTION MECHANISM
7379 M:      Steffen Klassert <steffen.klassert@secunet.com>
7380 L:      linux-crypto@vger.kernel.org
7381 S:      Maintained
7382 F:      kernel/padata.c
7383 F:      include/linux/padata.h
7384 F:      Documentation/padata.txt
7385
7386 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7387 M:      Harald Welte <laforge@gnumonks.org>
7388 L:      platform-driver-x86@vger.kernel.org
7389 S:      Maintained
7390 F:      drivers/platform/x86/panasonic-laptop.c
7391
7392 PANASONIC MN10300/AM33/AM34 PORT
7393 M:      David Howells <dhowells@redhat.com>
7394 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7395 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7396 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7397 S:      Maintained
7398 F:      Documentation/mn10300/
7399 F:      arch/mn10300/
7400
7401 PARALLEL PORT SUPPORT
7402 L:      linux-parport@lists.infradead.org (subscribers-only)
7403 S:      Orphan
7404 F:      drivers/parport/
7405 F:      include/linux/parport*.h
7406 F:      drivers/char/ppdev.c
7407 F:      include/uapi/linux/ppdev.h
7408
7409 PARAVIRT_OPS INTERFACE
7410 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7411 M:      Chris Wright <chrisw@sous-sol.org>
7412 M:      Alok Kataria <akataria@vmware.com>
7413 M:      Rusty Russell <rusty@rustcorp.com.au>
7414 L:      virtualization@lists.linux-foundation.org
7415 S:      Supported
7416 F:      Documentation/virtual/paravirt_ops.txt
7417 F:      arch/*/kernel/paravirt*
7418 F:      arch/*/include/asm/paravirt.h
7419
7420 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7421 M:      Tim Waugh <tim@cyberelk.net>
7422 L:      linux-parport@lists.infradead.org (subscribers-only)
7423 W:      http://www.torque.net/linux-pp.html
7424 S:      Maintained
7425 F:      Documentation/blockdev/paride.txt
7426 F:      drivers/block/paride/
7427
7428 PARISC ARCHITECTURE
7429 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7430 M:      Helge Deller <deller@gmx.de>
7431 L:      linux-parisc@vger.kernel.org
7432 W:      http://www.parisc-linux.org/
7433 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7436 S:      Maintained
7437 F:      arch/parisc/
7438 F:      Documentation/parisc/
7439 F:      drivers/parisc/
7440 F:      drivers/char/agp/parisc-agp.c
7441 F:      drivers/input/serio/gscps2.c
7442 F:      drivers/parport/parport_gsc.*
7443 F:      drivers/tty/serial/8250/8250_gsc.c
7444 F:      drivers/video/fbdev/sti*
7445 F:      drivers/video/console/sti*
7446 F:      drivers/video/logo/logo_parisc*
7447
7448 PC87360 HARDWARE MONITORING DRIVER
7449 M:      Jim Cromie <jim.cromie@gmail.com>
7450 L:      lm-sensors@lm-sensors.org
7451 S:      Maintained
7452 F:      Documentation/hwmon/pc87360
7453 F:      drivers/hwmon/pc87360.c
7454
7455 PC8736x GPIO DRIVER
7456 M:      Jim Cromie <jim.cromie@gmail.com>
7457 S:      Maintained
7458 F:      drivers/char/pc8736x_gpio.c
7459
7460 PC87427 HARDWARE MONITORING DRIVER
7461 M:      Jean Delvare <jdelvare@suse.de>
7462 L:      lm-sensors@lm-sensors.org
7463 S:      Maintained
7464 F:      Documentation/hwmon/pc87427
7465 F:      drivers/hwmon/pc87427.c
7466
7467 PCA9532 LED DRIVER
7468 M:      Riku Voipio <riku.voipio@iki.fi>
7469 S:      Maintained
7470 F:      drivers/leds/leds-pca9532.c
7471 F:      include/linux/leds-pca9532.h
7472
7473 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7474 M:      Guenter Roeck <linux@roeck-us.net>
7475 L:      linux-i2c@vger.kernel.org
7476 S:      Maintained
7477 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7478
7479 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7480 M:      Khalid Aziz <khalid@gonehiking.org>
7481 S:      Maintained
7482 F:      drivers/firmware/pcdp.*
7483
7484 PCI ERROR RECOVERY
7485 M:      Linas Vepstas <linasvepstas@gmail.com>
7486 L:      linux-pci@vger.kernel.org
7487 S:      Supported
7488 F:      Documentation/PCI/pci-error-recovery.txt
7489
7490 PCI SUBSYSTEM
7491 M:      Bjorn Helgaas <bhelgaas@google.com>
7492 L:      linux-pci@vger.kernel.org
7493 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7495 S:      Supported
7496 F:      Documentation/PCI/
7497 F:      drivers/pci/
7498 F:      include/linux/pci*
7499 F:      arch/x86/pci/
7500 F:      arch/x86/kernel/quirks.c
7501
7502 PCI DRIVER FOR ARM VERSATILE PLATFORM
7503 M:      Rob Herring <robh@kernel.org>
7504 L:      linux-pci@vger.kernel.org
7505 L:      linux-arm-kernel@lists.infradead.org
7506 S:      Maintained
7507 F:      Documentation/devicetree/bindings/pci/versatile.txt
7508 F:      drivers/pci/host/pci-versatile.c
7509
7510 PCI DRIVER FOR APPLIEDMICRO XGENE
7511 M:      Tanmay Inamdar <tinamdar@apm.com>
7512 L:      linux-pci@vger.kernel.org
7513 L:      linux-arm-kernel@lists.infradead.org
7514 S:      Maintained
7515 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7516 F:      drivers/pci/host/pci-xgene.c
7517
7518 PCI DRIVER FOR FREESCALE LAYERSCAPE
7519 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7520 M:      Mingkai Hu <mingkai.hu@freescale.com>
7521 M:      Roy Zang <tie-fei.zang@freescale.com>
7522 L:      linuxppc-dev@lists.ozlabs.org
7523 L:      linux-pci@vger.kernel.org
7524 L:      linux-arm-kernel@lists.infradead.org
7525 S:      Maintained
7526 F:      drivers/pci/host/*layerscape*
7527
7528 PCI DRIVER FOR IMX6
7529 M:      Richard Zhu <Richard.Zhu@freescale.com>
7530 M:      Lucas Stach <l.stach@pengutronix.de>
7531 L:      linux-pci@vger.kernel.org
7532 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7533 S:      Maintained
7534 F:      drivers/pci/host/*imx6*
7535
7536 PCI DRIVER FOR TI KEYSTONE
7537 M:      Murali Karicheri <m-karicheri2@ti.com>
7538 L:      linux-pci@vger.kernel.org
7539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7540 S:      Maintained
7541 F:      drivers/pci/host/*keystone*
7542
7543 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7544 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7545 M:      Jason Cooper <jason@lakedaemon.net>
7546 L:      linux-pci@vger.kernel.org
7547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7548 S:      Maintained
7549 F:      drivers/pci/host/*mvebu*
7550
7551 PCI DRIVER FOR NVIDIA TEGRA
7552 M:      Thierry Reding <thierry.reding@gmail.com>
7553 L:      linux-tegra@vger.kernel.org
7554 L:      linux-pci@vger.kernel.org
7555 S:      Supported
7556 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
7557 F:      drivers/pci/host/pci-tegra.c
7558
7559 PCI DRIVER FOR TI DRA7XX
7560 M:      Kishon Vijay Abraham I <kishon@ti.com>
7561 L:      linux-omap@vger.kernel.org
7562 L:      linux-pci@vger.kernel.org
7563 S:      Supported
7564 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
7565 F:      drivers/pci/host/pci-dra7xx.c
7566
7567 PCI DRIVER FOR RENESAS R-CAR
7568 M:      Simon Horman <horms@verge.net.au>
7569 L:      linux-pci@vger.kernel.org
7570 L:      linux-sh@vger.kernel.org
7571 S:      Maintained
7572 F:      drivers/pci/host/*rcar*
7573
7574 PCI DRIVER FOR SAMSUNG EXYNOS
7575 M:      Jingoo Han <jg1.han@samsung.com>
7576 L:      linux-pci@vger.kernel.org
7577 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7578 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7579 S:      Maintained
7580 F:      drivers/pci/host/pci-exynos.c
7581
7582 PCI DRIVER FOR SYNOPSIS DESIGNWARE
7583 M:      Jingoo Han <jg1.han@samsung.com>
7584 L:      linux-pci@vger.kernel.org
7585 S:      Maintained
7586 F:      drivers/pci/host/*designware*
7587
7588 PCI DRIVER FOR GENERIC OF HOSTS
7589 M:      Will Deacon <will.deacon@arm.com>
7590 L:      linux-pci@vger.kernel.org
7591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7592 S:      Maintained
7593 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
7594 F:      drivers/pci/host/pci-host-generic.c
7595
7596 PCIE DRIVER FOR ST SPEAR13XX
7597 L:      linux-pci@vger.kernel.org
7598 S:      Orphan
7599 F:      drivers/pci/host/*spear*
7600
7601 PCMCIA SUBSYSTEM
7602 P:      Linux PCMCIA Team
7603 L:      linux-pcmcia@lists.infradead.org
7604 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
7605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
7606 S:      Maintained
7607 F:      Documentation/pcmcia/
7608 F:      drivers/pcmcia/
7609 F:      include/pcmcia/
7610
7611 PCNET32 NETWORK DRIVER
7612 M:      Don Fry <pcnet32@frontier.com>
7613 L:      netdev@vger.kernel.org
7614 S:      Maintained
7615 F:      drivers/net/ethernet/amd/pcnet32.c
7616
7617 PCRYPT PARALLEL CRYPTO ENGINE
7618 M:      Steffen Klassert <steffen.klassert@secunet.com>
7619 L:      linux-crypto@vger.kernel.org
7620 S:      Maintained
7621 F:      crypto/pcrypt.c
7622 F:      include/crypto/pcrypt.h
7623
7624 PER-CPU MEMORY ALLOCATOR
7625 M:      Tejun Heo <tj@kernel.org>
7626 M:      Christoph Lameter <cl@linux-foundation.org>
7627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
7628 S:      Maintained
7629 F:      include/linux/percpu*.h
7630 F:      mm/percpu*.c
7631 F:      arch/*/include/asm/percpu.h
7632
7633 PER-TASK DELAY ACCOUNTING
7634 M:      Balbir Singh <bsingharora@gmail.com>
7635 S:      Maintained
7636 F:      include/linux/delayacct.h
7637 F:      kernel/delayacct.c
7638
7639 PERFORMANCE EVENTS SUBSYSTEM
7640 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
7641 M:      Paul Mackerras <paulus@samba.org>
7642 M:      Ingo Molnar <mingo@redhat.com>
7643 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
7644 L:      linux-kernel@vger.kernel.org
7645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
7646 S:      Supported
7647 F:      kernel/events/*
7648 F:      include/linux/perf_event.h
7649 F:      include/uapi/linux/perf_event.h
7650 F:      arch/*/kernel/perf_event*.c
7651 F:      arch/*/kernel/*/perf_event*.c
7652 F:      arch/*/kernel/*/*/perf_event*.c
7653 F:      arch/*/include/asm/perf_event.h
7654 F:      arch/*/kernel/perf_callchain.c
7655 F:      tools/perf/
7656
7657 PERSONALITY HANDLING
7658 M:      Christoph Hellwig <hch@infradead.org>
7659 L:      linux-abi-devel@lists.sourceforge.net
7660 S:      Maintained
7661 F:      include/linux/personality.h
7662 F:      include/uapi/linux/personality.h
7663
7664 PHONET PROTOCOL
7665 M:      Remi Denis-Courmont <courmisch@gmail.com>
7666 S:      Supported
7667 F:      Documentation/networking/phonet.txt
7668 F:      include/linux/phonet.h
7669 F:      include/net/phonet/
7670 F:      include/uapi/linux/phonet.h
7671 F:      net/phonet/
7672
7673 PHRAM MTD DRIVER
7674 M:      Joern Engel <joern@lazybastard.org>
7675 L:      linux-mtd@lists.infradead.org
7676 S:      Maintained
7677 F:      drivers/mtd/devices/phram.c
7678
7679 PICOLCD HID DRIVER
7680 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
7681 L:      linux-input@vger.kernel.org
7682 S:      Maintained
7683 F:      drivers/hid/hid-picolcd*
7684
7685 PICOXCELL SUPPORT
7686 M:      Jamie Iles <jamie@jamieiles.com>
7687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7688 T:      git git://github.com/jamieiles/linux-2.6-ji.git
7689 S:      Supported
7690 F:      arch/arm/boot/dts/picoxcell*
7691 F:      arch/arm/mach-picoxcell/
7692 F:      drivers/crypto/picoxcell*
7693
7694 PIN CONTROL SUBSYSTEM
7695 M:      Linus Walleij <linus.walleij@linaro.org>
7696 L:      linux-gpio@vger.kernel.org
7697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
7698 S:      Maintained
7699 F:      drivers/pinctrl/
7700 F:      include/linux/pinctrl/
7701
7702 PIN CONTROLLER - ATMEL AT91
7703 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
7704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7705 S:      Maintained
7706 F:      drivers/pinctrl/pinctrl-at91.*
7707
7708 PIN CONTROLLER - INTEL
7709 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7710 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
7711 S:      Maintained
7712 F:      drivers/pinctrl/intel/
7713
7714 PIN CONTROLLER - RENESAS
7715 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7716 L:      linux-sh@vger.kernel.org
7717 S:      Maintained
7718 F:      drivers/pinctrl/sh-pfc/
7719
7720 PIN CONTROLLER - SAMSUNG
7721 M:      Tomasz Figa <tomasz.figa@gmail.com>
7722 M:      Thomas Abraham <thomas.abraham@linaro.org>
7723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7724 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7725 S:      Maintained
7726 F:      drivers/pinctrl/samsung/
7727
7728 PIN CONTROLLER - ST SPEAR
7729 M:      Viresh Kumar <viresh.linux@gmail.com>
7730 L:      spear-devel@list.st.com
7731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7732 W:      http://www.st.com/spear
7733 S:      Maintained
7734 F:      drivers/pinctrl/spear/
7735
7736 PKTCDVD DRIVER
7737 M:      Jiri Kosina <jkosina@suse.cz>
7738 S:      Maintained
7739 F:      drivers/block/pktcdvd.c
7740 F:      include/linux/pktcdvd.h
7741 F:      include/uapi/linux/pktcdvd.h
7742
7743 PKUNITY SOC DRIVERS
7744 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
7745 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
7746 S:      Maintained
7747 T:      git git://github.com/gxt/linux.git
7748 F:      drivers/input/serio/i8042-unicore32io.h
7749 F:      drivers/i2c/busses/i2c-puv3.c
7750 F:      drivers/video/fbdev/fb-puv3.c
7751 F:      drivers/rtc/rtc-puv3.c
7752
7753 PMBUS HARDWARE MONITORING DRIVERS
7754 M:      Guenter Roeck <linux@roeck-us.net>
7755 L:      lm-sensors@lm-sensors.org
7756 W:      http://www.lm-sensors.org/
7757 W:      http://www.roeck-us.net/linux/drivers/
7758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7759 S:      Maintained
7760 F:      Documentation/hwmon/pmbus
7761 F:      drivers/hwmon/pmbus/
7762 F:      include/linux/i2c/pmbus.h
7763
7764 PMC SIERRA MaxRAID DRIVER
7765 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
7766 L:      linux-scsi@vger.kernel.org
7767 W:      http://www.pmc-sierra.com/
7768 S:      Supported
7769 F:      drivers/scsi/pmcraid.*
7770
7771 PMC SIERRA PM8001 DRIVER
7772 M:      xjtuwjp@gmail.com
7773 M:      lindar_liu@usish.com
7774 L:      pmchba@pmcs.com
7775 L:      linux-scsi@vger.kernel.org
7776 S:      Supported
7777 F:      drivers/scsi/pm8001/
7778
7779 POSIX CLOCKS and TIMERS
7780 M:      Thomas Gleixner <tglx@linutronix.de>
7781 L:      linux-kernel@vger.kernel.org
7782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7783 S:      Maintained
7784 F:      fs/timerfd.c
7785 F:      include/linux/timer*
7786 F:      kernel/time/*timer*
7787
7788 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
7789 M:      Sebastian Reichel <sre@kernel.org>
7790 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
7791 M:      David Woodhouse <dwmw2@infradead.org>
7792 L:      linux-pm@vger.kernel.org
7793 T:      git git://git.infradead.org/battery-2.6.git
7794 S:      Maintained
7795 F:      include/linux/power_supply.h
7796 F:      drivers/power/
7797
7798 PNP SUPPORT
7799 M:      Rafael J. Wysocki <rafael.j.wysocki@intel.com>
7800 S:      Maintained
7801 F:      drivers/pnp/
7802
7803 PNXxxxx I2C DRIVER
7804 M:      Vitaly Wool <vitalywool@gmail.com>
7805 L:      linux-i2c@vger.kernel.org
7806 S:      Maintained
7807 F:      drivers/i2c/busses/i2c-pnx.c
7808
7809 PPP PROTOCOL DRIVERS AND COMPRESSORS
7810 M:      Paul Mackerras <paulus@samba.org>
7811 L:      linux-ppp@vger.kernel.org
7812 S:      Maintained
7813 F:      drivers/net/ppp/ppp_*
7814
7815 PPP OVER ATM (RFC 2364)
7816 M:      Mitchell Blank Jr <mitch@sfgoth.com>
7817 S:      Maintained
7818 F:      net/atm/pppoatm.c
7819 F:      include/uapi/linux/atmppp.h
7820
7821 PPP OVER ETHERNET
7822 M:      Michal Ostrowski <mostrows@earthlink.net>
7823 S:      Maintained
7824 F:      drivers/net/ppp/pppoe.c
7825 F:      drivers/net/ppp/pppox.c
7826
7827 PPP OVER L2TP
7828 M:      James Chapman <jchapman@katalix.com>
7829 S:      Maintained
7830 F:      net/l2tp/l2tp_ppp.c
7831 F:      include/linux/if_pppol2tp.h
7832 F:      include/uapi/linux/if_pppol2tp.h
7833
7834 PPS SUPPORT
7835 M:      Rodolfo Giometti <giometti@enneenne.com>
7836 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
7837 L:      linuxpps@ml.enneenne.com (subscribers-only)
7838 S:      Maintained
7839 F:      Documentation/pps/
7840 F:      drivers/pps/
7841 F:      include/linux/pps*.h
7842
7843 PPTP DRIVER
7844 M:      Dmitry Kozlov <xeb@mail.ru>
7845 L:      netdev@vger.kernel.org
7846 S:      Maintained
7847 F:      drivers/net/ppp/pptp.c
7848 W:      http://sourceforge.net/projects/accel-pptp
7849
7850 PREEMPTIBLE KERNEL
7851 M:      Robert Love <rml@tech9.net>
7852 L:      kpreempt-tech@lists.sourceforge.net
7853 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
7854 S:      Supported
7855 F:      Documentation/preempt-locking.txt
7856 F:      include/linux/preempt.h
7857
7858 PRISM54 WIRELESS DRIVER
7859 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
7860 L:      linux-wireless@vger.kernel.org
7861 W:      http://wireless.kernel.org/en/users/Drivers/p54
7862 S:      Obsolete
7863 F:      drivers/net/wireless/prism54/
7864
7865 PS3 NETWORK SUPPORT
7866 M:      Geoff Levand <geoff@infradead.org>
7867 L:      netdev@vger.kernel.org
7868 L:      cbe-oss-dev@lists.ozlabs.org
7869 S:      Maintained
7870 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
7871
7872 PS3 PLATFORM SUPPORT
7873 M:      Geoff Levand <geoff@infradead.org>
7874 L:      linuxppc-dev@lists.ozlabs.org
7875 L:      cbe-oss-dev@lists.ozlabs.org
7876 S:      Maintained
7877 F:      arch/powerpc/boot/ps3*
7878 F:      arch/powerpc/include/asm/lv1call.h
7879 F:      arch/powerpc/include/asm/ps3*.h
7880 F:      arch/powerpc/platforms/ps3/
7881 F:      drivers/*/ps3*
7882 F:      drivers/ps3/
7883 F:      drivers/rtc/rtc-ps3.c
7884 F:      drivers/usb/host/*ps3.c
7885 F:      sound/ppc/snd_ps3*
7886
7887 PS3VRAM DRIVER
7888 M:      Jim Paris <jim@jtan.com>
7889 L:      cbe-oss-dev@lists.ozlabs.org
7890 S:      Maintained
7891 F:      drivers/block/ps3vram.c
7892
7893 PSTORE FILESYSTEM
7894 M:      Anton Vorontsov <anton@enomsg.org>
7895 M:      Colin Cross <ccross@android.com>
7896 M:      Kees Cook <keescook@chromium.org>
7897 M:      Tony Luck <tony.luck@intel.com>
7898 S:      Maintained
7899 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
7900 F:      fs/pstore/
7901 F:      include/linux/pstore*
7902 F:      drivers/firmware/efi/efi-pstore.c
7903 F:      drivers/acpi/apei/erst.c
7904
7905 PTP HARDWARE CLOCK SUPPORT
7906 M:      Richard Cochran <richardcochran@gmail.com>
7907 L:      netdev@vger.kernel.org
7908 S:      Maintained
7909 W:      http://linuxptp.sourceforge.net/
7910 F:      Documentation/ABI/testing/sysfs-ptp
7911 F:      Documentation/ptp/*
7912 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
7913 F:      drivers/net/phy/dp83640*
7914 F:      drivers/ptp/*
7915 F:      include/linux/ptp_cl*
7916
7917 PTRACE SUPPORT
7918 M:      Roland McGrath <roland@hack.frob.com>
7919 M:      Oleg Nesterov <oleg@redhat.com>
7920 S:      Maintained
7921 F:      include/asm-generic/syscall.h
7922 F:      include/linux/ptrace.h
7923 F:      include/linux/regset.h
7924 F:      include/linux/tracehook.h
7925 F:      include/uapi/linux/ptrace.h
7926 F:      kernel/ptrace.c
7927
7928 PVRUSB2 VIDEO4LINUX DRIVER
7929 M:      Mike Isely <isely@pobox.com>
7930 L:      pvrusb2@isely.net       (subscribers-only)
7931 L:      linux-media@vger.kernel.org
7932 W:      http://www.isely.net/pvrusb2/
7933 T:      git git://linuxtv.org/media_tree.git
7934 S:      Maintained
7935 F:      Documentation/video4linux/README.pvrusb2
7936 F:      drivers/media/usb/pvrusb2/
7937
7938 PWC WEBCAM DRIVER
7939 M:      Hans de Goede <hdegoede@redhat.com>
7940 L:      linux-media@vger.kernel.org
7941 T:      git git://linuxtv.org/media_tree.git
7942 S:      Maintained
7943 F:      drivers/media/usb/pwc/*
7944
7945 PWM FAN DRIVER
7946 M:      Kamil Debski <k.debski@samsung.com>
7947 L:      lm-sensors@lm-sensors.org
7948 S:      Supported
7949 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
7950 F:      Documentation/hwmon/pwm-fan
7951 F:      drivers/hwmon/pwm-fan.c
7952
7953 PWM SUBSYSTEM
7954 M:      Thierry Reding <thierry.reding@gmail.com>
7955 L:      linux-pwm@vger.kernel.org
7956 S:      Maintained
7957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
7958 F:      Documentation/pwm.txt
7959 F:      Documentation/devicetree/bindings/pwm/
7960 F:      include/linux/pwm.h
7961 F:      drivers/pwm/
7962 F:      drivers/video/backlight/pwm_bl.c
7963 F:      include/linux/pwm_backlight.h
7964
7965 PXA2xx/PXA3xx SUPPORT
7966 M:      Daniel Mack <daniel@zonque.org>
7967 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7968 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7970 T:      git git://github.com/hzhuang1/linux.git
7971 T:      git git://github.com/rjarzmik/linux.git
7972 S:      Maintained
7973 F:      arch/arm/mach-pxa/
7974 F:      drivers/pcmcia/pxa2xx*
7975 F:      drivers/spi/spi-pxa2xx*
7976 F:      drivers/usb/gadget/udc/pxa2*
7977 F:      include/sound/pxa2xx-lib.h
7978 F:      sound/arm/pxa*
7979 F:      sound/soc/pxa/
7980
7981 PXA3xx NAND FLASH DRIVER
7982 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
7983 L:      linux-mtd@lists.infradead.org
7984 S:      Maintained
7985 F:      drivers/mtd/nand/pxa3xx_nand.c
7986
7987 MMP SUPPORT
7988 M:      Eric Miao <eric.y.miao@gmail.com>
7989 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7991 T:      git git://github.com/hzhuang1/linux.git
7992 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
7993 S:      Maintained
7994 F:      arch/arm/mach-mmp/
7995
7996 PXA MMCI DRIVER
7997 S:      Orphan
7998
7999 PXA RTC DRIVER
8000 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8001 L:      rtc-linux@googlegroups.com
8002 S:      Maintained
8003
8004 QAT DRIVER
8005 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8006 L:      qat-linux@intel.com
8007 S:      Supported
8008 F:      drivers/crypto/qat/
8009
8010 QIB DRIVER
8011 M:      Mike Marciniszyn <infinipath@intel.com>
8012 L:      linux-rdma@vger.kernel.org
8013 S:      Supported
8014 F:      drivers/infiniband/hw/qib/
8015
8016 QLOGIC QLA1280 SCSI DRIVER
8017 M:      Michael Reed <mdr@sgi.com>
8018 L:      linux-scsi@vger.kernel.org
8019 S:      Maintained
8020 F:      drivers/scsi/qla1280.[ch]
8021
8022 QLOGIC QLA2XXX FC-SCSI DRIVER
8023 M:      qla2xxx-upstream@qlogic.com
8024 L:      linux-scsi@vger.kernel.org
8025 S:      Supported
8026 F:      Documentation/scsi/LICENSE.qla2xxx
8027 F:      drivers/scsi/qla2xxx/
8028
8029 QLOGIC QLA4XXX iSCSI DRIVER
8030 M:      QLogic-Storage-Upstream@qlogic.com
8031 L:      linux-scsi@vger.kernel.org
8032 S:      Supported
8033 F:      Documentation/scsi/LICENSE.qla4xxx
8034 F:      drivers/scsi/qla4xxx/
8035
8036 QLOGIC QLA3XXX NETWORK DRIVER
8037 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8038 M:      Ron Mercer <ron.mercer@qlogic.com>
8039 M:      linux-driver@qlogic.com
8040 L:      netdev@vger.kernel.org
8041 S:      Supported
8042 F:      Documentation/networking/LICENSE.qla3xxx
8043 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8044
8045 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8046 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
8047 M:      Dept-GELinuxNICDev@qlogic.com
8048 L:      netdev@vger.kernel.org
8049 S:      Supported
8050 F:      drivers/net/ethernet/qlogic/qlcnic/
8051
8052 QLOGIC QLGE 10Gb ETHERNET DRIVER
8053 M:      Harish Patil <harish.patil@qlogic.com>
8054 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8055 M:      Dept-GELinuxNICDev@qlogic.com
8056 M:      linux-driver@qlogic.com
8057 L:      netdev@vger.kernel.org
8058 S:      Supported
8059 F:      drivers/net/ethernet/qlogic/qlge/
8060
8061 QNX4 FILESYSTEM
8062 M:      Anders Larsen <al@alarsen.net>
8063 W:      http://www.alarsen.net/linux/qnx4fs/
8064 S:      Maintained
8065 F:      fs/qnx4/
8066 F:      include/uapi/linux/qnx4_fs.h
8067 F:      include/uapi/linux/qnxtypes.h
8068
8069 QT1010 MEDIA DRIVER
8070 M:      Antti Palosaari <crope@iki.fi>
8071 L:      linux-media@vger.kernel.org
8072 W:      http://linuxtv.org/
8073 W:      http://palosaari.fi/linux/
8074 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8075 T:      git git://linuxtv.org/anttip/media_tree.git
8076 S:      Maintained
8077 F:      drivers/media/tuners/qt1010*
8078
8079 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8080 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8081 L:      linux-wireless@vger.kernel.org
8082 L:      ath9k-devel@lists.ath9k.org
8083 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8084 S:      Supported
8085 F:      drivers/net/wireless/ath/ath9k/
8086
8087 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8088 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8089 L:      ath10k@lists.infradead.org
8090 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8091 T:      git git://github.com/kvalo/ath.git
8092 S:      Supported
8093 F:      drivers/net/wireless/ath/ath10k/
8094
8095 QUALCOMM HEXAGON ARCHITECTURE
8096 M:      Richard Kuo <rkuo@codeaurora.org>
8097 L:      linux-hexagon@vger.kernel.org
8098 S:      Supported
8099 F:      arch/hexagon/
8100
8101 QUALCOMM WCN36XX WIRELESS DRIVER
8102 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8103 L:      wcn36xx@lists.infradead.org
8104 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8105 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8106 S:      Supported
8107 F:      drivers/net/wireless/ath/wcn36xx/
8108
8109 RADOS BLOCK DEVICE (RBD)
8110 M:      Ilya Dryomov <idryomov@gmail.com>
8111 M:      Sage Weil <sage@redhat.com>
8112 M:      Alex Elder <elder@kernel.org>
8113 M:      ceph-devel@vger.kernel.org
8114 W:      http://ceph.com/
8115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8116 S:      Supported
8117 F:      drivers/block/rbd.c
8118 F:      drivers/block/rbd_types.h
8119
8120 RADEON FRAMEBUFFER DISPLAY DRIVER
8121 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8122 L:      linux-fbdev@vger.kernel.org
8123 S:      Maintained
8124 F:      drivers/video/fbdev/aty/radeon*
8125 F:      include/uapi/linux/radeonfb.h
8126
8127 RADIOSHARK RADIO DRIVER
8128 M:      Hans de Goede <hdegoede@redhat.com>
8129 L:      linux-media@vger.kernel.org
8130 T:      git git://linuxtv.org/media_tree.git
8131 S:      Maintained
8132 F:      drivers/media/radio/radio-shark.c
8133
8134 RADIOSHARK2 RADIO DRIVER
8135 M:      Hans de Goede <hdegoede@redhat.com>
8136 L:      linux-media@vger.kernel.org
8137 T:      git git://linuxtv.org/media_tree.git
8138 S:      Maintained
8139 F:      drivers/media/radio/radio-shark2.c
8140 F:      drivers/media/radio/radio-tea5777.c
8141
8142 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8143 M:      Paul Mackerras <paulus@samba.org>
8144 L:      linux-fbdev@vger.kernel.org
8145 S:      Maintained
8146 F:      drivers/video/fbdev/aty/aty128fb.c
8147
8148 RALINK RT2X00 WIRELESS LAN DRIVER
8149 P:      rt2x00 project
8150 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8151 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8152 L:      linux-wireless@vger.kernel.org
8153 L:      users@rt2x00.serialmonkey.com (moderated for non-subscribers)
8154 W:      http://rt2x00.serialmonkey.com/
8155 S:      Maintained
8156 F:      drivers/net/wireless/rt2x00/
8157
8158 RAMDISK RAM BLOCK DEVICE DRIVER
8159 M:      Jens Axboe <axboe@kernel.dk>
8160 S:      Maintained
8161 F:      Documentation/blockdev/ramdisk.txt
8162 F:      drivers/block/brd.c
8163
8164 PERSISTENT MEMORY DRIVER
8165 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
8166 L:      linux-nvdimm@lists.01.org
8167 S:      Supported
8168 F:      drivers/block/pmem.c
8169
8170 RANDOM NUMBER DRIVER
8171 M:      "Theodore Ts'o" <tytso@mit.edu>
8172 S:      Maintained
8173 F:      drivers/char/random.c
8174
8175 RAPIDIO SUBSYSTEM
8176 M:      Matt Porter <mporter@kernel.crashing.org>
8177 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8178 S:      Maintained
8179 F:      drivers/rapidio/
8180
8181 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8182 L:      linux-wireless@vger.kernel.org
8183 S:      Orphan
8184 F:      drivers/net/wireless/ray*
8185
8186 RCUTORTURE MODULE
8187 M:      Josh Triplett <josh@joshtriplett.org>
8188 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8189 L:      linux-kernel@vger.kernel.org
8190 S:      Supported
8191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8192 F:      Documentation/RCU/torture.txt
8193 F:      kernel/rcu/rcutorture.c
8194
8195 RCUTORTURE TEST FRAMEWORK
8196 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8197 M:      Josh Triplett <josh@joshtriplett.org>
8198 R:      Steven Rostedt <rostedt@goodmis.org>
8199 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8200 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
8201 L:      linux-kernel@vger.kernel.org
8202 S:      Supported
8203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8204 F:      tools/testing/selftests/rcutorture
8205
8206 RDC R-321X SoC
8207 M:      Florian Fainelli <florian@openwrt.org>
8208 S:      Maintained
8209
8210 RDC R6040 FAST ETHERNET DRIVER
8211 M:      Florian Fainelli <florian@openwrt.org>
8212 L:      netdev@vger.kernel.org
8213 S:      Maintained
8214 F:      drivers/net/ethernet/rdc/r6040.c
8215
8216 RDS - RELIABLE DATAGRAM SOCKETS
8217 M:      Chien Yen <chien.yen@oracle.com>
8218 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8219 S:      Supported
8220 F:      net/rds/
8221
8222 READ-COPY UPDATE (RCU)
8223 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8224 M:      Josh Triplett <josh@joshtriplett.org>
8225 R:      Steven Rostedt <rostedt@goodmis.org>
8226 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8227 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
8228 L:      linux-kernel@vger.kernel.org
8229 W:      http://www.rdrop.com/users/paulmck/RCU/
8230 S:      Supported
8231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8232 F:      Documentation/RCU/
8233 X:      Documentation/RCU/torture.txt
8234 F:      include/linux/rcu*
8235 X:      include/linux/srcu.h
8236 F:      kernel/rcu/
8237 X:      kernel/torture.c
8238
8239 REAL TIME CLOCK (RTC) SUBSYSTEM
8240 M:      Alessandro Zummo <a.zummo@towertech.it>
8241 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8242 L:      rtc-linux@googlegroups.com
8243 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8244 S:      Maintained
8245 F:      Documentation/rtc.txt
8246 F:      drivers/rtc/
8247 F:      include/linux/rtc.h
8248 F:      include/uapi/linux/rtc.h
8249
8250 REALTEK AUDIO CODECS
8251 M:      Bard Liao <bardliao@realtek.com>
8252 M:      Oder Chiou <oder_chiou@realtek.com>
8253 S:      Maintained
8254 F:      sound/soc/codecs/rt*
8255 F:      include/sound/rt*.h
8256
8257 REISERFS FILE SYSTEM
8258 L:      reiserfs-devel@vger.kernel.org
8259 S:      Supported
8260 F:      fs/reiserfs/
8261
8262 REGISTER MAP ABSTRACTION
8263 M:      Mark Brown <broonie@kernel.org>
8264 L:      linux-kernel@vger.kernel.org
8265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8266 S:      Supported
8267 F:      drivers/base/regmap/
8268 F:      include/linux/regmap.h
8269
8270 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8271 M:      Ohad Ben-Cohen <ohad@wizery.com>
8272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8273 S:      Maintained
8274 F:      drivers/remoteproc/
8275 F:      Documentation/remoteproc.txt
8276 F:      include/linux/remoteproc.h
8277
8278 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8279 M:      Ohad Ben-Cohen <ohad@wizery.com>
8280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8281 S:      Maintained
8282 F:      drivers/rpmsg/
8283 F:      Documentation/rpmsg.txt
8284 F:      include/linux/rpmsg.h
8285
8286 RESET CONTROLLER FRAMEWORK
8287 M:      Philipp Zabel <p.zabel@pengutronix.de>
8288 S:      Maintained
8289 F:      drivers/reset/
8290 F:      Documentation/devicetree/bindings/reset/
8291 F:      include/linux/reset.h
8292 F:      include/linux/reset-controller.h
8293
8294 RFKILL
8295 M:      Johannes Berg <johannes@sipsolutions.net>
8296 L:      linux-wireless@vger.kernel.org
8297 W:      http://wireless.kernel.org/
8298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8300 S:      Maintained
8301 F:      Documentation/rfkill.txt
8302 F:      net/rfkill/
8303
8304 RHASHTABLE
8305 M:      Thomas Graf <tgraf@suug.ch>
8306 L:      netdev@vger.kernel.org
8307 S:      Maintained
8308 F:      lib/rhashtable.c
8309 F:      include/linux/rhashtable.h
8310
8311 RICOH SMARTMEDIA/XD DRIVER
8312 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8313 S:      Maintained
8314 F:      drivers/mtd/nand/r852.c
8315 F:      drivers/mtd/nand/r852.h
8316
8317 RICOH R5C592 MEMORYSTICK DRIVER
8318 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8319 S:      Maintained
8320 F:      drivers/memstick/host/r592.*
8321
8322 ROCCAT DRIVERS
8323 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8324 W:      http://sourceforge.net/projects/roccat/
8325 S:      Maintained
8326 F:      drivers/hid/hid-roccat*
8327 F:      include/linux/hid-roccat*
8328 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8329
8330 ROCKER DRIVER
8331 M:      Jiri Pirko <jiri@resnulli.us>
8332 M:      Scott Feldman <sfeldma@gmail.com>
8333 L:      netdev@vger.kernel.org
8334 S:      Supported
8335 F:      drivers/net/ethernet/rocker/
8336
8337 ROCKETPORT DRIVER
8338 P:      Comtrol Corp.
8339 W:      http://www.comtrol.com
8340 S:      Maintained
8341 F:      Documentation/serial/rocket.txt
8342 F:      drivers/tty/rocket*
8343
8344 ROCKETPORT EXPRESS/INFINITY DRIVER
8345 M:      Kevin Cernekee <cernekee@gmail.com>
8346 L:      linux-serial@vger.kernel.org
8347 S:      Odd Fixes
8348 F:      drivers/tty/serial/rp2.*
8349
8350 ROSE NETWORK LAYER
8351 M:      Ralf Baechle <ralf@linux-mips.org>
8352 L:      linux-hams@vger.kernel.org
8353 W:      http://www.linux-ax25.org/
8354 S:      Maintained
8355 F:      include/net/rose.h
8356 F:      include/uapi/linux/rose.h
8357 F:      net/rose/
8358
8359 RTL2830 MEDIA DRIVER
8360 M:      Antti Palosaari <crope@iki.fi>
8361 L:      linux-media@vger.kernel.org
8362 W:      http://linuxtv.org/
8363 W:      http://palosaari.fi/linux/
8364 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8365 T:      git git://linuxtv.org/anttip/media_tree.git
8366 S:      Maintained
8367 F:      drivers/media/dvb-frontends/rtl2830*
8368
8369 RTL2832 MEDIA DRIVER
8370 M:      Antti Palosaari <crope@iki.fi>
8371 L:      linux-media@vger.kernel.org
8372 W:      http://linuxtv.org/
8373 W:      http://palosaari.fi/linux/
8374 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8375 T:      git git://linuxtv.org/anttip/media_tree.git
8376 S:      Maintained
8377 F:      drivers/media/dvb-frontends/rtl2832*
8378
8379 RTL2832_SDR MEDIA DRIVER
8380 M:      Antti Palosaari <crope@iki.fi>
8381 L:      linux-media@vger.kernel.org
8382 W:      http://linuxtv.org/
8383 W:      http://palosaari.fi/linux/
8384 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8385 T:      git git://linuxtv.org/anttip/media_tree.git
8386 S:      Maintained
8387 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8388
8389 RTL8180 WIRELESS DRIVER
8390 L:      linux-wireless@vger.kernel.org
8391 W:      http://wireless.kernel.org/
8392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8393 S:      Orphan
8394 F:      drivers/net/wireless/rtl818x/rtl8180/
8395
8396 RTL8187 WIRELESS DRIVER
8397 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8398 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8399 M:      Larry Finger <Larry.Finger@lwfinger.net>
8400 L:      linux-wireless@vger.kernel.org
8401 W:      http://wireless.kernel.org/
8402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8403 S:      Maintained
8404 F:      drivers/net/wireless/rtl818x/rtl8187/
8405
8406 RTL8192CE WIRELESS DRIVER
8407 M:      Larry Finger <Larry.Finger@lwfinger.net>
8408 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8409 L:      linux-wireless@vger.kernel.org
8410 W:      http://wireless.kernel.org/
8411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8412 S:      Maintained
8413 F:      drivers/net/wireless/rtlwifi/
8414 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8415
8416 S3 SAVAGE FRAMEBUFFER DRIVER
8417 M:      Antonino Daplas <adaplas@gmail.com>
8418 L:      linux-fbdev@vger.kernel.org
8419 S:      Maintained
8420 F:      drivers/video/fbdev/savage/
8421
8422 S390
8423 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8424 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8425 M:      linux390@de.ibm.com
8426 L:      linux-s390@vger.kernel.org
8427 W:      http://www.ibm.com/developerworks/linux/linux390/
8428 S:      Supported
8429 F:      arch/s390/
8430 F:      drivers/s390/
8431 F:      Documentation/s390/
8432 F:      Documentation/DocBook/s390*
8433
8434 S390 COMMON I/O LAYER
8435 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8436 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8437 L:      linux-s390@vger.kernel.org
8438 W:      http://www.ibm.com/developerworks/linux/linux390/
8439 S:      Supported
8440 F:      drivers/s390/cio/
8441
8442 S390 DASD DRIVER
8443 M:      Stefan Weinhuber <wein@de.ibm.com>
8444 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8445 L:      linux-s390@vger.kernel.org
8446 W:      http://www.ibm.com/developerworks/linux/linux390/
8447 S:      Supported
8448 F:      drivers/s390/block/dasd*
8449 F:      block/partitions/ibm.c
8450
8451 S390 NETWORK DRIVERS
8452 M:      Ursula Braun <ursula.braun@de.ibm.com>
8453 M:      linux390@de.ibm.com
8454 L:      linux-s390@vger.kernel.org
8455 W:      http://www.ibm.com/developerworks/linux/linux390/
8456 S:      Supported
8457 F:      drivers/s390/net/
8458
8459 S390 PCI SUBSYSTEM
8460 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8461 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8462 L:      linux-s390@vger.kernel.org
8463 W:      http://www.ibm.com/developerworks/linux/linux390/
8464 S:      Supported
8465 F:      arch/s390/pci/
8466 F:      drivers/pci/hotplug/s390_pci_hpc.c
8467
8468 S390 ZCRYPT DRIVER
8469 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8470 M:      linux390@de.ibm.com
8471 L:      linux-s390@vger.kernel.org
8472 W:      http://www.ibm.com/developerworks/linux/linux390/
8473 S:      Supported
8474 F:      drivers/s390/crypto/
8475
8476 S390 ZFCP DRIVER
8477 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8478 M:      linux390@de.ibm.com
8479 L:      linux-s390@vger.kernel.org
8480 W:      http://www.ibm.com/developerworks/linux/linux390/
8481 S:      Supported
8482 F:      drivers/s390/scsi/zfcp_*
8483
8484 S390 IUCV NETWORK LAYER
8485 M:      Ursula Braun <ursula.braun@de.ibm.com>
8486 M:      linux390@de.ibm.com
8487 L:      linux-s390@vger.kernel.org
8488 W:      http://www.ibm.com/developerworks/linux/linux390/
8489 S:      Supported
8490 F:      drivers/s390/net/*iucv*
8491 F:      include/net/iucv/
8492 F:      net/iucv/
8493
8494 S3C24XX SD/MMC Driver
8495 M:      Ben Dooks <ben-linux@fluff.org>
8496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8497 S:      Supported
8498 F:      drivers/mmc/host/s3cmci.*
8499
8500 SAA6588 RDS RECEIVER DRIVER
8501 M:      Hans Verkuil <hverkuil@xs4all.nl>
8502 L:      linux-media@vger.kernel.org
8503 T:      git git://linuxtv.org/media_tree.git
8504 W:      http://linuxtv.org
8505 S:      Odd Fixes
8506 F:      drivers/media/i2c/saa6588*
8507
8508 SAA7134 VIDEO4LINUX DRIVER
8509 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8510 L:      linux-media@vger.kernel.org
8511 W:      http://linuxtv.org
8512 T:      git git://linuxtv.org/media_tree.git
8513 S:      Odd fixes
8514 F:      Documentation/video4linux/*.saa7134
8515 F:      drivers/media/pci/saa7134/
8516
8517 SAA7146 VIDEO4LINUX-2 DRIVER
8518 M:      Hans Verkuil <hverkuil@xs4all.nl>
8519 L:      linux-media@vger.kernel.org
8520 T:      git git://linuxtv.org/media_tree.git
8521 S:      Maintained
8522 F:      drivers/media/common/saa7146/
8523 F:      drivers/media/pci/saa7146/
8524 F:      include/media/saa7146*
8525
8526 SAMSUNG LAPTOP DRIVER
8527 M:      Corentin Chary <corentin.chary@gmail.com>
8528 L:      platform-driver-x86@vger.kernel.org
8529 S:      Maintained
8530 F:      drivers/platform/x86/samsung-laptop.c
8531
8532 SAMSUNG AUDIO (ASoC) DRIVERS
8533 M:      Sangbeom Kim <sbkim73@samsung.com>
8534 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8535 S:      Supported
8536 F:      sound/soc/samsung/
8537
8538 SAMSUNG FRAMEBUFFER DRIVER
8539 M:      Jingoo Han <jg1.han@samsung.com>
8540 L:      linux-fbdev@vger.kernel.org
8541 S:      Maintained
8542 F:      drivers/video/fbdev/s3c-fb.c
8543
8544 SAMSUNG MULTIFUNCTION DEVICE DRIVERS
8545 M:      Sangbeom Kim <sbkim73@samsung.com>
8546 L:      linux-kernel@vger.kernel.org
8547 S:      Supported
8548 F:      drivers/mfd/sec*.c
8549 F:      drivers/regulator/s2m*.c
8550 F:      drivers/regulator/s5m*.c
8551 F:      include/linux/mfd/samsung/
8552
8553 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
8554 M:      Kyungmin Park <kyungmin.park@samsung.com>
8555 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8556 L:      linux-media@vger.kernel.org
8557 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
8558 S:      Supported
8559 F:      drivers/media/platform/exynos4-is/
8560
8561 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
8562 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
8563 L:      linux-media@vger.kernel.org
8564 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8565 S:      Maintained
8566 F:      drivers/media/platform/s3c-camif/
8567 F:      include/media/s3c_camif.h
8568
8569 SAMSUNG S5C73M3 CAMERA DRIVER
8570 M:      Kyungmin Park <kyungmin.park@samsung.com>
8571 M:      Andrzej Hajda <a.hajda@samsung.com>
8572 L:      linux-media@vger.kernel.org
8573 S:      Supported
8574 F:      drivers/media/i2c/s5c73m3/*
8575
8576 SAMSUNG S5K5BAF CAMERA DRIVER
8577 M:      Kyungmin Park <kyungmin.park@samsung.com>
8578 M:      Andrzej Hajda <a.hajda@samsung.com>
8579 L:      linux-media@vger.kernel.org
8580 S:      Supported
8581 F:      drivers/media/i2c/s5k5baf.c
8582
8583 SAMSUNG SOC CLOCK DRIVERS
8584 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8585 M:      Tomasz Figa <tomasz.figa@gmail.com>
8586 S:      Supported
8587 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8588 F:      drivers/clk/samsung/
8589
8590 SAMSUNG SXGBE DRIVERS
8591 M:      Byungho An <bh74.an@samsung.com>
8592 M:      Girish K S <ks.giri@samsung.com>
8593 M:      Vipul Pandya <vipul.pandya@samsung.com>
8594 S:      Supported
8595 L:      netdev@vger.kernel.org
8596 F:      drivers/net/ethernet/samsung/sxgbe/
8597
8598 SAMSUNG THERMAL DRIVER
8599 M:      Lukasz Majewski <l.majewski@samsung.com>
8600 L:      linux-pm@vger.kernel.org
8601 L:      linux-samsung-soc@vger.kernel.org
8602 S:      Supported
8603 T:      https://github.com/lmajewski/linux-samsung-thermal.git
8604 F:      drivers/thermal/samsung/
8605
8606 SAMSUNG USB2 PHY DRIVER
8607 M:      Kamil Debski <k.debski@samsung.com>
8608 L:      linux-kernel@vger.kernel.org
8609 S:      Supported
8610 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
8611 F:      Documentation/phy/samsung-usb2.txt
8612 F:      drivers/phy/phy-exynos4210-usb2.c
8613 F:      drivers/phy/phy-exynos4x12-usb2.c
8614 F:      drivers/phy/phy-exynos5250-usb2.c
8615 F:      drivers/phy/phy-s5pv210-usb2.c
8616 F:      drivers/phy/phy-samsung-usb2.c
8617 F:      drivers/phy/phy-samsung-usb2.h
8618
8619 SERIAL DRIVERS
8620 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8621 L:      linux-serial@vger.kernel.org
8622 S:      Maintained
8623 F:      drivers/tty/serial/
8624
8625 SYNOPSYS DESIGNWARE DMAC DRIVER
8626 M:      Viresh Kumar <viresh.linux@gmail.com>
8627 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8628 S:      Maintained
8629 F:      include/linux/dma/dw.h
8630 F:      include/linux/platform_data/dma-dw.h
8631 F:      drivers/dma/dw/
8632
8633 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
8634 M:      Seungwon Jeon <tgih.jun@samsung.com>
8635 M:      Jaehoon Chung <jh80.chung@samsung.com>
8636 L:      linux-mmc@vger.kernel.org
8637 S:      Maintained
8638 F:      include/linux/mmc/dw_mmc.h
8639 F:      drivers/mmc/host/dw_mmc*
8640
8641 THUNDERBOLT DRIVER
8642 M:      Andreas Noever <andreas.noever@gmail.com>
8643 S:      Maintained
8644 F:      drivers/thunderbolt/
8645
8646 TIMEKEEPING, CLOCKSOURCE CORE, NTP
8647 M:      John Stultz <john.stultz@linaro.org>
8648 M:      Thomas Gleixner <tglx@linutronix.de>
8649 L:      linux-kernel@vger.kernel.org
8650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8651 S:      Supported
8652 F:      include/linux/clocksource.h
8653 F:      include/linux/time.h
8654 F:      include/linux/timex.h
8655 F:      include/uapi/linux/time.h
8656 F:      include/uapi/linux/timex.h
8657 F:      kernel/time/clocksource.c
8658 F:      kernel/time/time*.c
8659 F:      kernel/time/ntp.c
8660 F:      tools/testing/selftests/timers/
8661
8662 SC1200 WDT DRIVER
8663 M:      Zwane Mwaikambo <zwanem@gmail.com>
8664 S:      Maintained
8665 F:      drivers/watchdog/sc1200wdt.c
8666
8667 SCHEDULER
8668 M:      Ingo Molnar <mingo@redhat.com>
8669 M:      Peter Zijlstra <peterz@infradead.org>
8670 L:      linux-kernel@vger.kernel.org
8671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
8672 S:      Maintained
8673 F:      kernel/sched/
8674 F:      include/linux/sched.h
8675 F:      include/uapi/linux/sched.h
8676 F:      include/linux/wait.h
8677
8678 SCORE ARCHITECTURE
8679 M:      Chen Liqin <liqin.linux@gmail.com>
8680 M:      Lennox Wu <lennox.wu@gmail.com>
8681 W:      http://www.sunplus.com
8682 S:      Supported
8683 F:      arch/score/
8684
8685 SCSI CDROM DRIVER
8686 M:      Jens Axboe <axboe@kernel.dk>
8687 L:      linux-scsi@vger.kernel.org
8688 W:      http://www.kernel.dk
8689 S:      Maintained
8690 F:      drivers/scsi/sr*
8691
8692 SCSI RDMA PROTOCOL (SRP) INITIATOR
8693 M:      Bart Van Assche <bart.vanassche@sandisk.com>
8694 L:      linux-rdma@vger.kernel.org
8695 S:      Supported
8696 W:      http://www.openfabrics.org
8697 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
8699 F:      drivers/infiniband/ulp/srp/
8700 F:      include/scsi/srp.h
8701
8702 SCSI SG DRIVER
8703 M:      Doug Gilbert <dgilbert@interlog.com>
8704 L:      linux-scsi@vger.kernel.org
8705 W:      http://sg.danny.cz/sg
8706 S:      Maintained
8707 F:      Documentation/scsi/scsi-generic.txt
8708 F:      drivers/scsi/sg.c
8709 F:      include/scsi/sg.h
8710
8711 SCSI SUBSYSTEM
8712 M:      "James E.J. Bottomley" <JBottomley@odin.com>
8713 L:      linux-scsi@vger.kernel.org
8714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
8715 S:      Maintained
8716 F:      drivers/scsi/
8717 F:      include/scsi/
8718
8719 SCSI TAPE DRIVER
8720 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
8721 L:      linux-scsi@vger.kernel.org
8722 S:      Maintained
8723 F:      Documentation/scsi/st.txt
8724 F:      drivers/scsi/st.*
8725 F:      drivers/scsi/st_*.h
8726
8727 SCTP PROTOCOL
8728 M:      Vlad Yasevich <vyasevich@gmail.com>
8729 M:      Neil Horman <nhorman@tuxdriver.com>
8730 L:      linux-sctp@vger.kernel.org
8731 W:      http://lksctp.sourceforge.net
8732 S:      Maintained
8733 F:      Documentation/networking/sctp.txt
8734 F:      include/linux/sctp.h
8735 F:      include/uapi/linux/sctp.h
8736 F:      include/net/sctp/
8737 F:      net/sctp/
8738
8739 SCx200 CPU SUPPORT
8740 M:      Jim Cromie <jim.cromie@gmail.com>
8741 S:      Odd Fixes
8742 F:      Documentation/i2c/busses/scx200_acb
8743 F:      arch/x86/platform/scx200/
8744 F:      drivers/watchdog/scx200_wdt.c
8745 F:      drivers/i2c/busses/scx200*
8746 F:      drivers/mtd/maps/scx200_docflash.c
8747 F:      include/linux/scx200.h
8748
8749 SCx200 GPIO DRIVER
8750 M:      Jim Cromie <jim.cromie@gmail.com>
8751 S:      Maintained
8752 F:      drivers/char/scx200_gpio.c
8753 F:      include/linux/scx200_gpio.h
8754
8755 SCx200 HRT CLOCKSOURCE DRIVER
8756 M:      Jim Cromie <jim.cromie@gmail.com>
8757 S:      Maintained
8758 F:      drivers/clocksource/scx200_hrt.c
8759
8760 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
8761 M:      Sascha Sommer <saschasommer@freenet.de>
8762 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
8763 S:      Maintained
8764 F:      drivers/mmc/host/sdricoh_cs.c
8765
8766 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
8767 L:      linux-mmc@vger.kernel.org
8768 S:      Orphan
8769 F:      drivers/mmc/host/sdhci.*
8770 F:      drivers/mmc/host/sdhci-pltfm.[ch]
8771
8772 SECURE COMPUTING
8773 M:      Kees Cook <keescook@chromium.org>
8774 R:      Andy Lutomirski <luto@amacapital.net>
8775 R:      Will Drewry <wad@chromium.org>
8776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
8777 S:      Supported
8778 F:      kernel/seccomp.c
8779 F:      include/uapi/linux/seccomp.h
8780 F:      include/linux/seccomp.h
8781 K:      \bsecure_computing
8782 K:      \bTIF_SECCOMP\b
8783
8784 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
8785 M:      Ben Dooks <ben-linux@fluff.org>
8786 M:      Jaehoon Chung <jh80.chung@samsung.com>
8787 L:      linux-mmc@vger.kernel.org
8788 S:      Maintained
8789 F:      drivers/mmc/host/sdhci-s3c*
8790
8791 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
8792 M:      Viresh Kumar <viresh.linux@gmail.com>
8793 L:      spear-devel@list.st.com
8794 L:      linux-mmc@vger.kernel.org
8795 S:      Maintained
8796 F:      drivers/mmc/host/sdhci-spear.c
8797
8798 SECURITY SUBSYSTEM
8799 M:      James Morris <james.l.morris@oracle.com>
8800 M:      Serge E. Hallyn <serge@hallyn.com>
8801 L:      linux-security-module@vger.kernel.org (suggested Cc:)
8802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
8803 W:      http://kernsec.org/
8804 S:      Supported
8805 F:      security/
8806
8807 SECURITY CONTACT
8808 M:      Security Officers <security@kernel.org>
8809 S:      Supported
8810
8811 SELINUX SECURITY MODULE
8812 M:      Paul Moore <paul@paul-moore.com>
8813 M:      Stephen Smalley <sds@tycho.nsa.gov>
8814 M:      Eric Paris <eparis@parisplace.org>
8815 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
8816 W:      http://selinuxproject.org
8817 T:      git git://git.infradead.org/users/pcmoore/selinux
8818 S:      Supported
8819 F:      include/linux/selinux*
8820 F:      security/selinux/
8821 F:      scripts/selinux/
8822
8823 APPARMOR SECURITY MODULE
8824 M:      John Johansen <john.johansen@canonical.com>
8825 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
8826 W:      apparmor.wiki.kernel.org
8827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
8828 S:      Supported
8829 F:      security/apparmor/
8830
8831 SENSABLE PHANTOM
8832 M:      Jiri Slaby <jirislaby@gmail.com>
8833 S:      Maintained
8834 F:      drivers/misc/phantom.c
8835 F:      include/uapi/linux/phantom.h
8836
8837 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
8838 M:      Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
8839 L:      linux-scsi@vger.kernel.org
8840 W:      http://www.emulex.com
8841 S:      Supported
8842 F:      drivers/scsi/be2iscsi/
8843
8844 SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
8845 M:      Sathya Perla <sathya.perla@emulex.com>
8846 M:      Subbu Seetharaman <subbu.seetharaman@emulex.com>
8847 M:      Ajit Khaparde <ajit.khaparde@emulex.com>
8848 L:      netdev@vger.kernel.org
8849 W:      http://www.emulex.com
8850 S:      Supported
8851 F:      drivers/net/ethernet/emulex/benet/
8852
8853 EMULEX ONECONNECT ROCE DRIVER
8854 M:      Selvin Xavier <selvin.xavier@emulex.com>
8855 M:      Devesh Sharma <devesh.sharma@emulex.com>
8856 M:      Mitesh Ahuja <mitesh.ahuja@emulex.com>
8857 L:      linux-rdma@vger.kernel.org
8858 W:      http://www.emulex.com
8859 S:      Supported
8860 F:      drivers/infiniband/hw/ocrdma/
8861
8862 SFC NETWORK DRIVER
8863 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
8864 M:      Shradha Shah <sshah@solarflare.com>
8865 L:      netdev@vger.kernel.org
8866 S:      Supported
8867 F:      drivers/net/ethernet/sfc/
8868
8869 SGI GRU DRIVER
8870 M:      Dimitri Sivanich <sivanich@sgi.com>
8871 S:      Maintained
8872 F:      drivers/misc/sgi-gru/
8873
8874 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
8875 M:      Pat Gefre <pfg@sgi.com>
8876 L:      linux-ia64@vger.kernel.org
8877 S:      Supported
8878 F:      Documentation/ia64/serial.txt
8879 F:      drivers/tty/serial/ioc?_serial.c
8880 F:      include/linux/ioc?.h
8881
8882 SGI XP/XPC/XPNET DRIVER
8883 M:      Cliff Whickman <cpw@sgi.com>
8884 M:      Robin Holt <robinmholt@gmail.com>
8885 S:      Maintained
8886 F:      drivers/misc/sgi-xp/
8887
8888 SI2157 MEDIA DRIVER
8889 M:      Antti Palosaari <crope@iki.fi>
8890 L:      linux-media@vger.kernel.org
8891 W:      http://linuxtv.org/
8892 W:      http://palosaari.fi/linux/
8893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8894 T:      git git://linuxtv.org/anttip/media_tree.git
8895 S:      Maintained
8896 F:      drivers/media/tuners/si2157*
8897
8898 SI2168 MEDIA DRIVER
8899 M:      Antti Palosaari <crope@iki.fi>
8900 L:      linux-media@vger.kernel.org
8901 W:      http://linuxtv.org/
8902 W:      http://palosaari.fi/linux/
8903 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8904 T:      git git://linuxtv.org/anttip/media_tree.git
8905 S:      Maintained
8906 F:      drivers/media/dvb-frontends/si2168*
8907
8908 SI470X FM RADIO RECEIVER I2C DRIVER
8909 M:      Hans Verkuil <hverkuil@xs4all.nl>
8910 L:      linux-media@vger.kernel.org
8911 T:      git git://linuxtv.org/media_tree.git
8912 W:      http://linuxtv.org
8913 S:      Odd Fixes
8914 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
8915
8916 SI470X FM RADIO RECEIVER USB DRIVER
8917 M:      Hans Verkuil <hverkuil@xs4all.nl>
8918 L:      linux-media@vger.kernel.org
8919 T:      git git://linuxtv.org/media_tree.git
8920 W:      http://linuxtv.org
8921 S:      Maintained
8922 F:      drivers/media/radio/si470x/radio-si470x-common.c
8923 F:      drivers/media/radio/si470x/radio-si470x.h
8924 F:      drivers/media/radio/si470x/radio-si470x-usb.c
8925
8926 SI4713 FM RADIO TRANSMITTER I2C DRIVER
8927 M:      Eduardo Valentin <edubezval@gmail.com>
8928 L:      linux-media@vger.kernel.org
8929 T:      git git://linuxtv.org/media_tree.git
8930 W:      http://linuxtv.org
8931 S:      Odd Fixes
8932 F:      drivers/media/radio/si4713/si4713.?
8933
8934 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
8935 M:      Eduardo Valentin <edubezval@gmail.com>
8936 L:      linux-media@vger.kernel.org
8937 T:      git git://linuxtv.org/media_tree.git
8938 W:      http://linuxtv.org
8939 S:      Odd Fixes
8940 F:      drivers/media/radio/si4713/radio-platform-si4713.c
8941
8942 SI4713 FM RADIO TRANSMITTER USB DRIVER
8943 M:      Hans Verkuil <hverkuil@xs4all.nl>
8944 L:      linux-media@vger.kernel.org
8945 T:      git git://linuxtv.org/media_tree.git
8946 W:      http://linuxtv.org
8947 S:      Maintained
8948 F:      drivers/media/radio/si4713/radio-usb-si4713.c
8949
8950 SIANO DVB DRIVER
8951 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8952 L:      linux-media@vger.kernel.org
8953 W:      http://linuxtv.org
8954 T:      git git://linuxtv.org/media_tree.git
8955 S:      Odd fixes
8956 F:      drivers/media/common/siano/
8957 F:      drivers/media/usb/siano/
8958 F:      drivers/media/usb/siano/
8959 F:      drivers/media/mmc/siano/
8960
8961 SIMPLEFB FB DRIVER
8962 M:      Hans de Goede <hdegoede@redhat.com>
8963 L:      linux-fbdev@vger.kernel.org
8964 S:      Maintained
8965 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
8966 F:      drivers/video/fbdev/simplefb.c
8967 F:      include/linux/platform_data/simplefb.h
8968
8969 SH_VEU V4L2 MEM2MEM DRIVER
8970 L:      linux-media@vger.kernel.org
8971 S:      Orphan
8972 F:      drivers/media/platform/sh_veu.c
8973
8974 SH_VOU V4L2 OUTPUT DRIVER
8975 L:      linux-media@vger.kernel.org
8976 S:      Orphan
8977 F:      drivers/media/platform/sh_vou.c
8978 F:      include/media/sh_vou.h
8979
8980 SIMPLE FIRMWARE INTERFACE (SFI)
8981 M:      Len Brown <lenb@kernel.org>
8982 L:      sfi-devel@simplefirmware.org
8983 W:      http://simplefirmware.org/
8984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
8985 S:      Supported
8986 F:      arch/x86/platform/sfi/
8987 F:      drivers/sfi/
8988 F:      include/linux/sfi*.h
8989
8990 SIMTEC EB110ATX (Chalice CATS)
8991 P:      Ben Dooks
8992 P:      Vincent Sanders <vince@simtec.co.uk>
8993 M:      Simtec Linux Team <linux@simtec.co.uk>
8994 W:      http://www.simtec.co.uk/products/EB110ATX/
8995 S:      Supported
8996
8997 SIMTEC EB2410ITX (BAST)
8998 P:      Ben Dooks
8999 P:      Vincent Sanders <vince@simtec.co.uk>
9000 M:      Simtec Linux Team <linux@simtec.co.uk>
9001 W:      http://www.simtec.co.uk/products/EB2410ITX/
9002 S:      Supported
9003 F:      arch/arm/mach-s3c24xx/mach-bast.c
9004 F:      arch/arm/mach-s3c24xx/bast-ide.c
9005 F:      arch/arm/mach-s3c24xx/bast-irq.c
9006
9007 TI DAVINCI MACHINE SUPPORT
9008 M:      Sekhar Nori <nsekhar@ti.com>
9009 M:      Kevin Hilman <khilman@deeprootsystems.com>
9010 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9011 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9012 S:      Supported
9013 F:      arch/arm/mach-davinci/
9014 F:      drivers/i2c/busses/i2c-davinci.c
9015
9016 TI DAVINCI SERIES MEDIA DRIVER
9017 M:      Lad, Prabhakar <prabhakar.csengg@gmail.com>
9018 L:      linux-media@vger.kernel.org
9019 W:      http://linuxtv.org/
9020 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9021 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9022 S:      Maintained
9023 F:      drivers/media/platform/davinci/
9024 F:      include/media/davinci/
9025
9026 TI AM437X VPFE DRIVER
9027 M:      Lad, Prabhakar <prabhakar.csengg@gmail.com>
9028 L:      linux-media@vger.kernel.org
9029 W:      http://linuxtv.org/
9030 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9031 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9032 S:      Maintained
9033 F:      drivers/media/platform/am437x/
9034
9035 OV2659 OMNIVISION SENSOR DRIVER
9036 M:      Lad, Prabhakar <prabhakar.csengg@gmail.com>
9037 L:      linux-media@vger.kernel.org
9038 W:      http://linuxtv.org/
9039 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9040 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9041 S:      Maintained
9042 F:      drivers/media/i2c/ov2659.c
9043 F:      include/media/ov2659.h
9044
9045 SIS 190 ETHERNET DRIVER
9046 M:      Francois Romieu <romieu@fr.zoreil.com>
9047 L:      netdev@vger.kernel.org
9048 S:      Maintained
9049 F:      drivers/net/ethernet/sis/sis190.c
9050
9051 SIS 900/7016 FAST ETHERNET DRIVER
9052 M:      Daniele Venzano <venza@brownhat.org>
9053 W:      http://www.brownhat.org/sis900.html
9054 L:      netdev@vger.kernel.org
9055 S:      Maintained
9056 F:      drivers/net/ethernet/sis/sis900.*
9057
9058 SIS FRAMEBUFFER DRIVER
9059 M:      Thomas Winischhofer <thomas@winischhofer.net>
9060 W:      http://www.winischhofer.net/linuxsisvga.shtml
9061 S:      Maintained
9062 F:      Documentation/fb/sisfb.txt
9063 F:      drivers/video/fbdev/sis/
9064 F:      include/video/sisfb.h
9065
9066 SIS USB2VGA DRIVER
9067 M:      Thomas Winischhofer <thomas@winischhofer.net>
9068 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9069 S:      Maintained
9070 F:      drivers/usb/misc/sisusbvga/
9071
9072 SLAB ALLOCATOR
9073 M:      Christoph Lameter <cl@linux.com>
9074 M:      Pekka Enberg <penberg@kernel.org>
9075 M:      David Rientjes <rientjes@google.com>
9076 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9077 M:      Andrew Morton <akpm@linux-foundation.org>
9078 L:      linux-mm@kvack.org
9079 S:      Maintained
9080 F:      include/linux/sl?b*.h
9081 F:      mm/sl?b*
9082
9083 SLEEPABLE READ-COPY UPDATE (SRCU)
9084 M:      Lai Jiangshan <laijs@cn.fujitsu.com>
9085 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9086 M:      Josh Triplett <josh@joshtriplett.org>
9087 R:      Steven Rostedt <rostedt@goodmis.org>
9088 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9089 L:      linux-kernel@vger.kernel.org
9090 W:      http://www.rdrop.com/users/paulmck/RCU/
9091 S:      Supported
9092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9093 F:      include/linux/srcu.h
9094 F:      kernel/rcu/srcu.c
9095
9096 SMACK SECURITY MODULE
9097 M:      Casey Schaufler <casey@schaufler-ca.com>
9098 L:      linux-security-module@vger.kernel.org
9099 W:      http://schaufler-ca.com
9100 T:      git git://git.gitorious.org/smack-next/kernel.git
9101 S:      Maintained
9102 F:      Documentation/security/Smack.txt
9103 F:      security/smack/
9104
9105 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9106 M:      Kevin Hilman <khilman@kernel.org>
9107 M:      Nishanth Menon <nm@ti.com>
9108 S:      Maintained
9109 F:      drivers/power/avs/
9110 F:      include/linux/power/smartreflex.h
9111 L:      linux-pm@vger.kernel.org
9112
9113 SMC91x ETHERNET DRIVER
9114 M:      Nicolas Pitre <nico@fluxnic.net>
9115 S:      Odd Fixes
9116 F:      drivers/net/ethernet/smsc/smc91x.*
9117
9118 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9119 M:      Sakari Ailus <sakari.ailus@iki.fi>
9120 L:      linux-media@vger.kernel.org
9121 S:      Maintained
9122 F:      drivers/media/i2c/smiapp/
9123 F:      include/media/smiapp.h
9124 F:      drivers/media/i2c/smiapp-pll.c
9125 F:      drivers/media/i2c/smiapp-pll.h
9126 F:      include/uapi/linux/smiapp.h
9127 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9128
9129 SMM665 HARDWARE MONITOR DRIVER
9130 M:      Guenter Roeck <linux@roeck-us.net>
9131 L:      lm-sensors@lm-sensors.org
9132 S:      Maintained
9133 F:      Documentation/hwmon/smm665
9134 F:      drivers/hwmon/smm665.c
9135
9136 SMSC EMC2103 HARDWARE MONITOR DRIVER
9137 M:      Steve Glendinning <steve.glendinning@shawell.net>
9138 L:      lm-sensors@lm-sensors.org
9139 S:      Maintained
9140 F:      Documentation/hwmon/emc2103
9141 F:      drivers/hwmon/emc2103.c
9142
9143 SMSC SCH5627 HARDWARE MONITOR DRIVER
9144 M:      Hans de Goede <hdegoede@redhat.com>
9145 L:      lm-sensors@lm-sensors.org
9146 S:      Supported
9147 F:      Documentation/hwmon/sch5627
9148 F:      drivers/hwmon/sch5627.c
9149
9150 SMSC47B397 HARDWARE MONITOR DRIVER
9151 M:      Jean Delvare <jdelvare@suse.de>
9152 L:      lm-sensors@lm-sensors.org
9153 S:      Maintained
9154 F:      Documentation/hwmon/smsc47b397
9155 F:      drivers/hwmon/smsc47b397.c
9156
9157 SMSC911x ETHERNET DRIVER
9158 M:      Steve Glendinning <steve.glendinning@shawell.net>
9159 L:      netdev@vger.kernel.org
9160 S:      Maintained
9161 F:      include/linux/smsc911x.h
9162 F:      drivers/net/ethernet/smsc/smsc911x.*
9163
9164 SMSC9420 PCI ETHERNET DRIVER
9165 M:      Steve Glendinning <steve.glendinning@shawell.net>
9166 L:      netdev@vger.kernel.org
9167 S:      Maintained
9168 F:      drivers/net/ethernet/smsc/smsc9420.*
9169
9170 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9171 M:      Steve Glendinning <steve.glendinning@shawell.net>
9172 L:      linux-fbdev@vger.kernel.org
9173 S:      Maintained
9174 F:      drivers/video/fbdev/smscufx.c
9175
9176 SOC-CAMERA V4L2 SUBSYSTEM
9177 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9178 L:      linux-media@vger.kernel.org
9179 T:      git git://linuxtv.org/media_tree.git
9180 S:      Maintained
9181 F:      include/media/soc*
9182 F:      drivers/media/i2c/soc_camera/
9183 F:      drivers/media/platform/soc_camera/
9184
9185 SOEKRIS NET48XX LED SUPPORT
9186 M:      Chris Boot <bootc@bootc.net>
9187 S:      Maintained
9188 F:      drivers/leds/leds-net48xx.c
9189
9190 SOFTLOGIC 6x10 MPEG CODEC
9191 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9192 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9193 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9194 M:      Ismael Luceno <ismael@iodev.co.uk>
9195 L:      linux-media@vger.kernel.org
9196 S:      Supported
9197 F:      drivers/media/pci/solo6x10/
9198
9199 SOFTWARE RAID (Multiple Disks) SUPPORT
9200 M:      Neil Brown <neilb@suse.de>
9201 L:      linux-raid@vger.kernel.org
9202 S:      Supported
9203 F:      drivers/md/
9204 F:      include/linux/raid/
9205 F:      include/uapi/linux/raid/
9206
9207 SONIC NETWORK DRIVER
9208 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9209 L:      netdev@vger.kernel.org
9210 S:      Maintained
9211 F:      drivers/net/ethernet/natsemi/sonic.*
9212
9213 SONICS SILICON BACKPLANE DRIVER (SSB)
9214 M:      Michael Buesch <m@bues.ch>
9215 L:      netdev@vger.kernel.org
9216 S:      Maintained
9217 F:      drivers/ssb/
9218 F:      include/linux/ssb/
9219
9220 SONY VAIO CONTROL DEVICE DRIVER
9221 M:      Mattia Dongili <malattia@linux.it>
9222 L:      platform-driver-x86@vger.kernel.org
9223 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9224 S:      Maintained
9225 F:      Documentation/laptops/sony-laptop.txt
9226 F:      drivers/char/sonypi.c
9227 F:      drivers/platform/x86/sony-laptop.c
9228 F:      include/linux/sony-laptop.h
9229
9230 SONY MEMORYSTICK CARD SUPPORT
9231 M:      Alex Dubov <oakad@yahoo.com>
9232 W:      http://tifmxx.berlios.de/
9233 S:      Maintained
9234 F:      drivers/memstick/host/tifm_ms.c
9235
9236 SONY MEMORYSTICK STANDARD SUPPORT
9237 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9238 S:      Maintained
9239 F:      drivers/memstick/core/ms_block.*
9240
9241 SOUND
9242 M:      Jaroslav Kysela <perex@perex.cz>
9243 M:      Takashi Iwai <tiwai@suse.de>
9244 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9245 W:      http://www.alsa-project.org/
9246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9247 T:      git git://git.alsa-project.org/alsa-kernel.git
9248 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9249 S:      Maintained
9250 F:      Documentation/sound/
9251 F:      include/sound/
9252 F:      include/uapi/sound/
9253 F:      sound/
9254
9255 SOUND - COMPRESSED AUDIO
9256 M:      Vinod Koul <vinod.koul@intel.com>
9257 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9259 S:      Supported
9260 F:      Documentation/sound/alsa/compress_offload.txt
9261 F:      include/sound/compress_driver.h
9262 F:      include/uapi/sound/compress_*
9263 F:      sound/core/compress_offload.c
9264 F:      sound/soc/soc-compress.c
9265
9266 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9267 M:      Liam Girdwood <lgirdwood@gmail.com>
9268 M:      Mark Brown <broonie@kernel.org>
9269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9270 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9271 W:      http://alsa-project.org/main/index.php/ASoC
9272 S:      Supported
9273 F:      Documentation/sound/alsa/soc/
9274 F:      sound/soc/
9275 F:      include/sound/soc*
9276
9277 SOUND - DMAENGINE HELPERS
9278 M:      Lars-Peter Clausen <lars@metafoo.de>
9279 S:      Supported
9280 F:      include/sound/dmaengine_pcm.h
9281 F:      sound/core/pcm_dmaengine.c
9282 F:      sound/soc/soc-generic-dmaengine-pcm.c
9283
9284 SP2 MEDIA DRIVER
9285 M:      Olli Salonen <olli.salonen@iki.fi>
9286 L:      linux-media@vger.kernel.org
9287 W:      http://linuxtv.org/
9288 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9289 S:      Maintained
9290 F:      drivers/media/dvb-frontends/sp2*
9291
9292 SPARC + UltraSPARC (sparc/sparc64)
9293 M:      "David S. Miller" <davem@davemloft.net>
9294 L:      sparclinux@vger.kernel.org
9295 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9298 S:      Maintained
9299 F:      arch/sparc/
9300 F:      drivers/sbus/
9301
9302 SPARC SERIAL DRIVERS
9303 M:      "David S. Miller" <davem@davemloft.net>
9304 L:      sparclinux@vger.kernel.org
9305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9307 S:      Maintained
9308 F:      include/linux/sunserialcore.h
9309 F:      drivers/tty/serial/suncore.c
9310 F:      drivers/tty/serial/sunhv.c
9311 F:      drivers/tty/serial/sunsab.c
9312 F:      drivers/tty/serial/sunsab.h
9313 F:      drivers/tty/serial/sunsu.c
9314 F:      drivers/tty/serial/sunzilog.c
9315 F:      drivers/tty/serial/sunzilog.h
9316
9317 SPARSE CHECKER
9318 M:      "Christopher Li" <sparse@chrisli.org>
9319 L:      linux-sparse@vger.kernel.org
9320 W:      https://sparse.wiki.kernel.org/
9321 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9322 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9323 S:      Maintained
9324 F:      include/linux/compiler.h
9325
9326 SPEAR PLATFORM SUPPORT
9327 M:      Viresh Kumar <viresh.linux@gmail.com>
9328 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9329 L:      spear-devel@list.st.com
9330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9331 W:      http://www.st.com/spear
9332 S:      Maintained
9333 F:      arch/arm/mach-spear/
9334
9335 SPEAR CLOCK FRAMEWORK SUPPORT
9336 M:      Viresh Kumar <viresh.linux@gmail.com>
9337 L:      spear-devel@list.st.com
9338 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9339 W:      http://www.st.com/spear
9340 S:      Maintained
9341 F:      drivers/clk/spear/
9342
9343 SPI SUBSYSTEM
9344 M:      Mark Brown <broonie@kernel.org>
9345 L:      linux-spi@vger.kernel.org
9346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9347 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9348 S:      Maintained
9349 F:      Documentation/spi/
9350 F:      drivers/spi/
9351 F:      include/linux/spi/
9352 F:      include/uapi/linux/spi/
9353
9354 SPIDERNET NETWORK DRIVER for CELL
9355 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9356 M:      Jens Osterkamp <jens@de.ibm.com>
9357 L:      netdev@vger.kernel.org
9358 S:      Supported
9359 F:      Documentation/networking/spider_net.txt
9360 F:      drivers/net/ethernet/toshiba/spider_net*
9361
9362 SPU FILE SYSTEM
9363 M:      Jeremy Kerr <jk@ozlabs.org>
9364 L:      linuxppc-dev@lists.ozlabs.org
9365 L:      cbe-oss-dev@lists.ozlabs.org
9366 W:      http://www.ibm.com/developerworks/power/cell/
9367 S:      Supported
9368 F:      Documentation/filesystems/spufs.txt
9369 F:      arch/powerpc/platforms/cell/spufs/
9370
9371 SQUASHFS FILE SYSTEM
9372 M:      Phillip Lougher <phillip@squashfs.org.uk>
9373 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9374 W:      http://squashfs.org.uk
9375 S:      Maintained
9376 F:      Documentation/filesystems/squashfs.txt
9377 F:      fs/squashfs/
9378
9379 SRM (Alpha) environment access
9380 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9381 S:      Maintained
9382 F:      arch/alpha/kernel/srm_env.c
9383
9384 STABLE BRANCH
9385 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9386 L:      stable@vger.kernel.org
9387 S:      Supported
9388 F:      Documentation/stable_kernel_rules.txt
9389
9390 STAGING SUBSYSTEM
9391 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9393 L:      devel@driverdev.osuosl.org
9394 S:      Supported
9395 F:      drivers/staging/
9396
9397 STAGING - COMEDI
9398 M:      Ian Abbott <abbotti@mev.co.uk>
9399 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9400 S:      Odd Fixes
9401 F:      drivers/staging/comedi/
9402
9403 STAGING - FLARION FT1000 DRIVERS
9404 M:      Marek Belisko <marek.belisko@gmail.com>
9405 S:      Odd Fixes
9406 F:      drivers/staging/ft1000/
9407
9408 STAGING - INDUSTRIAL IO
9409 M:      Jonathan Cameron <jic23@kernel.org>
9410 L:      linux-iio@vger.kernel.org
9411 S:      Odd Fixes
9412 F:      drivers/staging/iio/
9413
9414 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9415 M:      Jarod Wilson <jarod@wilsonet.com>
9416 W:      http://www.lirc.org/
9417 S:      Odd Fixes
9418 F:      drivers/staging/media/lirc/
9419
9420 STAGING - LUSTRE PARALLEL FILESYSTEM
9421 M:      Oleg Drokin <oleg.drokin@intel.com>
9422 M:      Andreas Dilger <andreas.dilger@intel.com>
9423 L:      HPDD-discuss@lists.01.org (moderated for non-subscribers)
9424 W:      http://lustre.opensfs.org/
9425 S:      Maintained
9426 F:      drivers/staging/lustre
9427
9428 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9429 M:      Julian Andres Klode <jak@jak-linux.org>
9430 M:      Marc Dietrich <marvin24@gmx.de>
9431 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9432 L:      linux-tegra@vger.kernel.org
9433 S:      Maintained
9434 F:      drivers/staging/nvec/
9435
9436 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9437 M:      Jens Frederich <jfrederich@gmail.com>
9438 M:      Daniel Drake <dsd@laptop.org>
9439 M:      Jon Nettleton <jon.nettleton@gmail.com>
9440 W:      http://wiki.laptop.org/go/DCON
9441 S:      Maintained
9442 F:      drivers/staging/olpc_dcon/
9443
9444 STAGING - OZMO DEVICES USB OVER WIFI DRIVER
9445 M:      Shigekatsu Tateno <shigekatsu.tateno@atmel.com>
9446 S:      Maintained
9447 F:      drivers/staging/ozwpan/
9448
9449 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9450 M:      Willy Tarreau <willy@meta-x.org>
9451 S:      Odd Fixes
9452 F:      drivers/staging/panel/
9453
9454 STAGING - REALTEK RTL8712U DRIVERS
9455 M:      Larry Finger <Larry.Finger@lwfinger.net>
9456 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9457 S:      Odd Fixes
9458 F:      drivers/staging/rtl8712/
9459
9460 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9461 M:      Larry Finger <Larry.Finger@lwfinger.net>
9462 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9463 L:      linux-wireless@vger.kernel.org
9464 S:      Maintained
9465 F:      drivers/staging/rtl8723au/
9466
9467 STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
9468 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9469 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9470 M:      Sudip Mukherjee <sudip@vectorindia.org>
9471 L:      linux-fbdev@vger.kernel.org
9472 S:      Maintained
9473 F:      drivers/staging/sm7xxfb/
9474
9475 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9476 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9477 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9478 M:      Sudip Mukherjee <sudip@vectorindia.org>
9479 L:      linux-fbdev@vger.kernel.org
9480 S:      Maintained
9481 F:      drivers/staging/sm750fb/
9482
9483 STAGING - SLICOSS
9484 M:      Lior Dotan <liodot@gmail.com>
9485 M:      Christopher Harrer <charrer@alacritech.com>
9486 S:      Odd Fixes
9487 F:      drivers/staging/slicoss/
9488
9489 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9490 M:      William Hubbs <w.d.hubbs@gmail.com>
9491 M:      Chris Brannon <chris@the-brannons.com>
9492 M:      Kirk Reiser <kirk@reisers.ca>
9493 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9494 L:      speakup@linux-speakup.org
9495 W:      http://www.linux-speakup.org/
9496 S:      Odd Fixes
9497 F:      drivers/staging/speakup/
9498
9499 STAGING - VIA VT665X DRIVERS
9500 M:      Forest Bond <forest@alittletooquiet.net>
9501 S:      Odd Fixes
9502 F:      drivers/staging/vt665?/
9503
9504 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
9505 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
9506 S:      Odd Fixes
9507 F:      drivers/staging/xgifb/
9508
9509 STARFIRE/DURALAN NETWORK DRIVER
9510 M:      Ion Badulescu <ionut@badula.org>
9511 S:      Odd Fixes
9512 F:      drivers/net/ethernet/adaptec/starfire*
9513
9514 SUN3/3X
9515 M:      Sam Creasey <sammy@sammy.net>
9516 W:      http://sammy.net/sun3/
9517 S:      Maintained
9518 F:      arch/m68k/kernel/*sun3*
9519 F:      arch/m68k/sun3*/
9520 F:      arch/m68k/include/asm/sun3*
9521 F:      drivers/net/ethernet/i825xx/sun3*
9522
9523 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
9524 M:      Hans de Goede <hdegoede@redhat.com>
9525 L:      linux-input@vger.kernel.org
9526 S:      Maintained
9527 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
9528 F:      drivers/input/keyboard/sun4i-lradc-keys.c
9529
9530 SUNDANCE NETWORK DRIVER
9531 M:      Denis Kirjanov <kda@linux-powerpc.org>
9532 L:      netdev@vger.kernel.org
9533 S:      Maintained
9534 F:      drivers/net/ethernet/dlink/sundance.c
9535
9536 SUPERH
9537 L:      linux-sh@vger.kernel.org
9538 Q:      http://patchwork.kernel.org/project/linux-sh/list/
9539 S:      Orphan
9540 F:      Documentation/sh/
9541 F:      arch/sh/
9542 F:      drivers/sh/
9543
9544 SUSPEND TO RAM
9545 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9546 M:      Len Brown <len.brown@intel.com>
9547 M:      Pavel Machek <pavel@ucw.cz>
9548 L:      linux-pm@vger.kernel.org
9549 S:      Supported
9550 F:      Documentation/power/
9551 F:      arch/x86/kernel/acpi/
9552 F:      drivers/base/power/
9553 F:      kernel/power/
9554 F:      include/linux/suspend.h
9555 F:      include/linux/freezer.h
9556 F:      include/linux/pm.h
9557
9558 SVGA HANDLING
9559 M:      Martin Mares <mj@ucw.cz>
9560 L:      linux-video@atrey.karlin.mff.cuni.cz
9561 S:      Maintained
9562 F:      Documentation/svga.txt
9563 F:      arch/x86/boot/video*
9564
9565 SWIOTLB SUBSYSTEM
9566 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9567 L:      linux-kernel@vger.kernel.org
9568 S:      Supported
9569 F:      lib/swiotlb.c
9570 F:      arch/*/kernel/pci-swiotlb.c
9571 F:      include/linux/swiotlb.h
9572
9573 SWITCHDEV
9574 M:      Jiri Pirko <jiri@resnulli.us>
9575 L:      netdev@vger.kernel.org
9576 S:      Supported
9577 F:      net/switchdev/
9578 F:      include/net/switchdev.h
9579
9580 SYNOPSYS ARC ARCHITECTURE
9581 M:      Vineet Gupta <vgupta@synopsys.com>
9582 S:      Supported
9583 F:      arch/arc/
9584 F:      Documentation/devicetree/bindings/arc/
9585 F:      drivers/tty/serial/arc_uart.c
9586
9587 SYSV FILESYSTEM
9588 M:      Christoph Hellwig <hch@infradead.org>
9589 S:      Maintained
9590 F:      Documentation/filesystems/sysv-fs.txt
9591 F:      fs/sysv/
9592 F:      include/linux/sysv_fs.h
9593
9594 TARGET SUBSYSTEM
9595 M:      Nicholas A. Bellinger <nab@linux-iscsi.org>
9596 L:      linux-scsi@vger.kernel.org
9597 L:      target-devel@vger.kernel.org
9598 W:      http://www.linux-iscsi.org
9599 W:      http://groups.google.com/group/linux-iscsi-target-dev
9600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9601 S:      Supported
9602 F:      drivers/target/
9603 F:      include/target/
9604 F:      Documentation/target/
9605
9606 TASKSTATS STATISTICS INTERFACE
9607 M:      Balbir Singh <bsingharora@gmail.com>
9608 S:      Maintained
9609 F:      Documentation/accounting/taskstats*
9610 F:      include/linux/taskstats*
9611 F:      kernel/taskstats.c
9612
9613 TC CLASSIFIER
9614 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9615 L:      netdev@vger.kernel.org
9616 S:      Maintained
9617 F:      include/net/pkt_cls.h
9618 F:      include/uapi/linux/pkt_cls.h
9619 F:      net/sched/
9620
9621 TCP LOW PRIORITY MODULE
9622 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
9623 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
9624 W:      http://tcp-lp-mod.sourceforge.net/
9625 S:      Maintained
9626 F:      net/ipv4/tcp_lp.c
9627
9628 TDA10071 MEDIA DRIVER
9629 M:      Antti Palosaari <crope@iki.fi>
9630 L:      linux-media@vger.kernel.org
9631 W:      http://linuxtv.org/
9632 W:      http://palosaari.fi/linux/
9633 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9634 T:      git git://linuxtv.org/anttip/media_tree.git
9635 S:      Maintained
9636 F:      drivers/media/dvb-frontends/tda10071*
9637
9638 TDA18212 MEDIA DRIVER
9639 M:      Antti Palosaari <crope@iki.fi>
9640 L:      linux-media@vger.kernel.org
9641 W:      http://linuxtv.org/
9642 W:      http://palosaari.fi/linux/
9643 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9644 T:      git git://linuxtv.org/anttip/media_tree.git
9645 S:      Maintained
9646 F:      drivers/media/tuners/tda18212*
9647
9648 TDA18218 MEDIA DRIVER
9649 M:      Antti Palosaari <crope@iki.fi>
9650 L:      linux-media@vger.kernel.org
9651 W:      http://linuxtv.org/
9652 W:      http://palosaari.fi/linux/
9653 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9654 T:      git git://linuxtv.org/anttip/media_tree.git
9655 S:      Maintained
9656 F:      drivers/media/tuners/tda18218*
9657
9658 TDA18271 MEDIA DRIVER
9659 M:      Michael Krufky <mkrufky@linuxtv.org>
9660 L:      linux-media@vger.kernel.org
9661 W:      http://linuxtv.org/
9662 W:      http://github.com/mkrufky
9663 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9664 T:      git git://linuxtv.org/mkrufky/tuners.git
9665 S:      Maintained
9666 F:      drivers/media/tuners/tda18271*
9667
9668 TDA827x MEDIA DRIVER
9669 M:      Michael Krufky <mkrufky@linuxtv.org>
9670 L:      linux-media@vger.kernel.org
9671 W:      http://linuxtv.org/
9672 W:      http://github.com/mkrufky
9673 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9674 T:      git git://linuxtv.org/mkrufky/tuners.git
9675 S:      Maintained
9676 F:      drivers/media/tuners/tda8290.*
9677
9678 TDA8290 MEDIA DRIVER
9679 M:      Michael Krufky <mkrufky@linuxtv.org>
9680 L:      linux-media@vger.kernel.org
9681 W:      http://linuxtv.org/
9682 W:      http://github.com/mkrufky
9683 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9684 T:      git git://linuxtv.org/mkrufky/tuners.git
9685 S:      Maintained
9686 F:      drivers/media/tuners/tda8290.*
9687
9688 TDA9840 MEDIA DRIVER
9689 M:      Hans Verkuil <hverkuil@xs4all.nl>
9690 L:      linux-media@vger.kernel.org
9691 T:      git git://linuxtv.org/media_tree.git
9692 W:      http://linuxtv.org
9693 S:      Maintained
9694 F:      drivers/media/i2c/tda9840*
9695
9696 TEA5761 TUNER DRIVER
9697 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9698 L:      linux-media@vger.kernel.org
9699 W:      http://linuxtv.org
9700 T:      git git://linuxtv.org/media_tree.git
9701 S:      Odd fixes
9702 F:      drivers/media/tuners/tea5761.*
9703
9704 TEA5767 TUNER DRIVER
9705 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9706 L:      linux-media@vger.kernel.org
9707 W:      http://linuxtv.org
9708 T:      git git://linuxtv.org/media_tree.git
9709 S:      Maintained
9710 F:      drivers/media/tuners/tea5767.*
9711
9712 TEA6415C MEDIA DRIVER
9713 M:      Hans Verkuil <hverkuil@xs4all.nl>
9714 L:      linux-media@vger.kernel.org
9715 T:      git git://linuxtv.org/media_tree.git
9716 W:      http://linuxtv.org
9717 S:      Maintained
9718 F:      drivers/media/i2c/tea6415c*
9719
9720 TEA6420 MEDIA DRIVER
9721 M:      Hans Verkuil <hverkuil@xs4all.nl>
9722 L:      linux-media@vger.kernel.org
9723 T:      git git://linuxtv.org/media_tree.git
9724 W:      http://linuxtv.org
9725 S:      Maintained
9726 F:      drivers/media/i2c/tea6420*
9727
9728 TEAM DRIVER
9729 M:      Jiri Pirko <jiri@resnulli.us>
9730 L:      netdev@vger.kernel.org
9731 S:      Supported
9732 F:      drivers/net/team/
9733 F:      include/linux/if_team.h
9734 F:      include/uapi/linux/if_team.h
9735
9736 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
9737 M:      Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
9738 S:      Maintained
9739 F:      arch/x86/platform/ts5500/
9740
9741 TECHNOTREND USB IR RECEIVER
9742 M:      Sean Young <sean@mess.org>
9743 L:      linux-media@vger.kernel.org
9744 S:      Maintained
9745 F:      drivers/media/rc/ttusbir.c
9746
9747 TEGRA ARCHITECTURE SUPPORT
9748 M:      Stephen Warren <swarren@wwwdotorg.org>
9749 M:      Thierry Reding <thierry.reding@gmail.com>
9750 M:      Alexandre Courbot <gnurou@gmail.com>
9751 L:      linux-tegra@vger.kernel.org
9752 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
9753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
9754 S:      Supported
9755 N:      [^a-z]tegra
9756
9757 TEGRA CLOCK DRIVER
9758 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
9759 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
9760 S:      Supported
9761 F:      drivers/clk/tegra/
9762
9763 TEGRA DMA DRIVER
9764 M:      Laxman Dewangan <ldewangan@nvidia.com>
9765 S:      Supported
9766 F:      drivers/dma/tegra20-apb-dma.c
9767
9768 TEGRA I2C DRIVER
9769 M:      Laxman Dewangan <ldewangan@nvidia.com>
9770 S:      Supported
9771 F:      drivers/i2c/busses/i2c-tegra.c
9772
9773 TEGRA IOMMU DRIVERS
9774 M:      Hiroshi Doyu <hdoyu@nvidia.com>
9775 S:      Supported
9776 F:      drivers/iommu/tegra*
9777
9778 TEGRA KBC DRIVER
9779 M:      Rakesh Iyer <riyer@nvidia.com>
9780 M:      Laxman Dewangan <ldewangan@nvidia.com>
9781 S:      Supported
9782 F:      drivers/input/keyboard/tegra-kbc.c
9783
9784 TEGRA PWM DRIVER
9785 M:      Thierry Reding <thierry.reding@gmail.com>
9786 S:      Supported
9787 F:      drivers/pwm/pwm-tegra.c
9788
9789 TEGRA SERIAL DRIVER
9790 M:      Laxman Dewangan <ldewangan@nvidia.com>
9791 S:      Supported
9792 F:      drivers/tty/serial/serial-tegra.c
9793
9794 TEGRA SPI DRIVER
9795 M:      Laxman Dewangan <ldewangan@nvidia.com>
9796 S:      Supported
9797 F:      drivers/spi/spi-tegra*
9798
9799 TEHUTI ETHERNET DRIVER
9800 M:      Andy Gospodarek <andy@greyhouse.net>
9801 L:      netdev@vger.kernel.org
9802 S:      Supported
9803 F:      drivers/net/ethernet/tehuti/*
9804
9805 Telecom Clock Driver for MCPL0010
9806 M:      Mark Gross <mark.gross@intel.com>
9807 S:      Supported
9808 F:      drivers/char/tlclk.c
9809
9810 TENSILICA XTENSA PORT (xtensa)
9811 M:      Chris Zankel <chris@zankel.net>
9812 M:      Max Filippov <jcmvbkbc@gmail.com>
9813 L:      linux-xtensa@linux-xtensa.org
9814 S:      Maintained
9815 F:      arch/xtensa/
9816 F:      drivers/irqchip/irq-xtensa-*
9817
9818 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
9819 M:      Hans Verkuil <hverkuil@xs4all.nl>
9820 L:      linux-media@vger.kernel.org
9821 T:      git git://linuxtv.org/media_tree.git
9822 W:      http://linuxtv.org
9823 S:      Maintained
9824 F:      drivers/media/radio/radio-raremono.c
9825
9826 THERMAL
9827 M:      Zhang Rui <rui.zhang@intel.com>
9828 M:      Eduardo Valentin <edubezval@gmail.com>
9829 L:      linux-pm@vger.kernel.org
9830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
9831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
9832 Q:      https://patchwork.kernel.org/project/linux-pm/list/
9833 S:      Supported
9834 F:      drivers/thermal/
9835 F:      include/linux/thermal.h
9836 F:      include/uapi/linux/thermal.h
9837 F:      include/linux/cpu_cooling.h
9838 F:      Documentation/devicetree/bindings/thermal/
9839
9840 THINGM BLINK(1) USB RGB LED DRIVER
9841 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9842 S:      Maintained
9843 F:      drivers/hid/hid-thingm.c
9844
9845 THINKPAD ACPI EXTRAS DRIVER
9846 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
9847 L:      ibm-acpi-devel@lists.sourceforge.net
9848 L:      platform-driver-x86@vger.kernel.org
9849 W:      http://ibm-acpi.sourceforge.net
9850 W:      http://thinkwiki.org/wiki/Ibm-acpi
9851 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
9852 S:      Maintained
9853 F:      drivers/platform/x86/thinkpad_acpi.c
9854
9855 TI BANDGAP AND THERMAL DRIVER
9856 M:      Eduardo Valentin <edubezval@gmail.com>
9857 L:      linux-pm@vger.kernel.org
9858 L:      linux-omap@vger.kernel.org
9859 S:      Maintained
9860 F:      drivers/thermal/ti-soc-thermal/
9861
9862 TI CDCE706 CLOCK DRIVER
9863 M:      Max Filippov <jcmvbkbc@gmail.com>
9864 S:      Maintained
9865 F:      drivers/clk/clk-cdce706.c
9866
9867 TI CLOCK DRIVER
9868 M:      Tero Kristo <t-kristo@ti.com>
9869 L:      linux-omap@vger.kernel.org
9870 S:      Maintained
9871 F:      drivers/clk/ti/
9872 F:      include/linux/clk/ti.h
9873
9874 TI FLASH MEDIA INTERFACE DRIVER
9875 M:      Alex Dubov <oakad@yahoo.com>
9876 S:      Maintained
9877 F:      drivers/misc/tifm*
9878 F:      drivers/mmc/host/tifm_sd.c
9879 F:      include/linux/tifm.h
9880
9881 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
9882 M:      Santosh Shilimkar <ssantosh@kernel.org>
9883 L:      linux-kernel@vger.kernel.org
9884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9885 S:      Maintained
9886 F:      drivers/soc/ti/*
9887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
9888
9889
9890 TI LM49xxx FAMILY ASoC CODEC DRIVERS
9891 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
9892 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
9893 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9894 S:      Maintained
9895 F:      sound/soc/codecs/lm49453*
9896 F:      sound/soc/codecs/isabelle*
9897
9898 TI LP855x BACKLIGHT DRIVER
9899 M:      Milo Kim <milo.kim@ti.com>
9900 S:      Maintained
9901 F:      Documentation/backlight/lp855x-driver.txt
9902 F:      drivers/video/backlight/lp855x_bl.c
9903 F:      include/linux/platform_data/lp855x.h
9904
9905 TI LP8727 CHARGER DRIVER
9906 M:      Milo Kim <milo.kim@ti.com>
9907 S:      Maintained
9908 F:      drivers/power/lp8727_charger.c
9909 F:      include/linux/platform_data/lp8727.h
9910
9911 TI LP8788 MFD DRIVER
9912 M:      Milo Kim <milo.kim@ti.com>
9913 S:      Maintained
9914 F:      drivers/iio/adc/lp8788_adc.c
9915 F:      drivers/leds/leds-lp8788.c
9916 F:      drivers/mfd/lp8788*.c
9917 F:      drivers/power/lp8788-charger.c
9918 F:      drivers/regulator/lp8788-*.c
9919 F:      include/linux/mfd/lp8788*.h
9920
9921 TI NETCP ETHERNET DRIVER
9922 M:      Wingman Kwok <w-kwok2@ti.com>
9923 M:      Murali Karicheri <m-karicheri2@ti.com>
9924 L:      netdev@vger.kernel.org
9925 S:      Maintained
9926 F:      drivers/net/ethernet/ti/netcp*
9927
9928 TI TWL4030 SERIES SOC CODEC DRIVER
9929 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
9930 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9931 S:      Maintained
9932 F:      sound/soc/codecs/twl4030*
9933
9934 TI WILINK WIRELESS DRIVERS
9935 L:      linux-wireless@vger.kernel.org
9936 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
9937 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
9938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
9939 S:      Orphan
9940 F:      drivers/net/wireless/ti/
9941 F:      include/linux/wl12xx.h
9942
9943 TIPC NETWORK LAYER
9944 M:      Jon Maloy <jon.maloy@ericsson.com>
9945 M:      Ying Xue <ying.xue@windriver.com>
9946 L:      netdev@vger.kernel.org (core kernel code)
9947 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
9948 W:      http://tipc.sourceforge.net/
9949 S:      Maintained
9950 F:      include/uapi/linux/tipc*.h
9951 F:      net/tipc/
9952
9953 TILE ARCHITECTURE
9954 M:      Chris Metcalf <cmetcalf@ezchip.com>
9955 W:      http://www.ezchip.com/scm/
9956 S:      Supported
9957 F:      arch/tile/
9958 F:      drivers/char/tile-srom.c
9959 F:      drivers/edac/tile_edac.c
9960 F:      drivers/net/ethernet/tile/
9961 F:      drivers/rtc/rtc-tile.c
9962 F:      drivers/tty/hvc/hvc_tile.c
9963 F:      drivers/tty/serial/tilegx.c
9964 F:      drivers/usb/host/*-tilegx.c
9965 F:      include/linux/usb/tilegx.h
9966
9967 TLAN NETWORK DRIVER
9968 M:      Samuel Chessman <chessman@tux.org>
9969 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
9970 W:      http://sourceforge.net/projects/tlan/
9971 S:      Maintained
9972 F:      Documentation/networking/tlan.txt
9973 F:      drivers/net/ethernet/ti/tlan.*
9974
9975 TOMOYO SECURITY MODULE
9976 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
9977 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
9978 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
9979 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
9980 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
9981 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
9982 W:      http://tomoyo.sourceforge.jp/
9983 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
9984 S:      Maintained
9985 F:      security/tomoyo/
9986
9987 TOPSTAR LAPTOP EXTRAS DRIVER
9988 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9989 L:      platform-driver-x86@vger.kernel.org
9990 S:      Maintained
9991 F:      drivers/platform/x86/topstar-laptop.c
9992
9993 TOSHIBA ACPI EXTRAS DRIVER
9994 M:      Azael Avalos <coproscefalo@gmail.com>
9995 L:      platform-driver-x86@vger.kernel.org
9996 S:      Maintained
9997 F:      drivers/platform/x86/toshiba_acpi.c
9998
9999 TOSHIBA BLUETOOTH DRIVER
10000 M:      Azael Avalos <coproscefalo@gmail.com>
10001 L:      platform-driver-x86@vger.kernel.org
10002 S:      Maintained
10003 F:      drivers/platform/x86/toshiba_bluetooth.c
10004
10005 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10006 M:      Azael Avalos <coproscefalo@gmail.com>
10007 L:      platform-driver-x86@vger.kernel.org
10008 S:      Maintained
10009 F:      drivers/platform/x86/toshiba_haps.c
10010
10011 TOSHIBA SMM DRIVER
10012 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10013 L:      tlinux-users@tce.toshiba-dme.co.jp
10014 W:      http://www.buzzard.org.uk/toshiba/
10015 S:      Maintained
10016 F:      drivers/char/toshiba.c
10017 F:      include/linux/toshiba.h
10018 F:      include/uapi/linux/toshiba.h
10019
10020 TMIO MMC DRIVER
10021 M:      Ian Molton <ian.molton@codethink.co.uk>
10022 L:      linux-mmc@vger.kernel.org
10023 S:      Maintained
10024 F:      drivers/mmc/host/tmio_mmc*
10025 F:      drivers/mmc/host/sh_mobile_sdhi.c
10026 F:      include/linux/mmc/tmio.h
10027 F:      include/linux/mmc/sh_mobile_sdhi.h
10028
10029 TMP401 HARDWARE MONITOR DRIVER
10030 M:      Guenter Roeck <linux@roeck-us.net>
10031 L:      lm-sensors@lm-sensors.org
10032 S:      Maintained
10033 F:      Documentation/hwmon/tmp401
10034 F:      drivers/hwmon/tmp401.c
10035
10036 TMPFS (SHMEM FILESYSTEM)
10037 M:      Hugh Dickins <hughd@google.com>
10038 L:      linux-mm@kvack.org
10039 S:      Maintained
10040 F:      include/linux/shmem_fs.h
10041 F:      mm/shmem.c
10042
10043 TM6000 VIDEO4LINUX DRIVER
10044 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10045 L:      linux-media@vger.kernel.org
10046 W:      http://linuxtv.org
10047 T:      git git://linuxtv.org/media_tree.git
10048 S:      Odd fixes
10049 F:      drivers/media/usb/tm6000/
10050
10051 TW68 VIDEO4LINUX DRIVER
10052 M:      Hans Verkuil <hverkuil@xs4all.nl>
10053 L:      linux-media@vger.kernel.org
10054 T:      git git://linuxtv.org/media_tree.git
10055 W:      http://linuxtv.org
10056 S:      Odd Fixes
10057 F:      drivers/media/pci/tw68/
10058
10059 TPM DEVICE DRIVER
10060 M:      Peter Huewe <peterhuewe@gmx.de>
10061 M:      Marcel Selhorst <tpmdd@selhorst.net>
10062 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10063 W:      http://tpmdd.sourceforge.net
10064 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10065 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10066 T:      https://github.com/PeterHuewe/linux-tpmdd
10067 S:      Maintained
10068 F:      drivers/char/tpm/
10069
10070 TPM IBM_VTPM DEVICE DRIVER
10071 M:      Ashley Lai <ashleydlai@gmail.com>
10072 W:      http://tpmdd.sourceforge.net
10073 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10074 S:      Maintained
10075 F:      drivers/char/tpm/tpm_ibmvtpm*
10076
10077 TRACING
10078 M:      Steven Rostedt <rostedt@goodmis.org>
10079 M:      Ingo Molnar <mingo@redhat.com>
10080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10081 S:      Maintained
10082 F:      Documentation/trace/ftrace.txt
10083 F:      arch/*/*/*/ftrace.h
10084 F:      arch/*/kernel/ftrace.c
10085 F:      include/*/ftrace.h
10086 F:      include/linux/trace*.h
10087 F:      include/trace/
10088 F:      kernel/trace/
10089 F:      tools/testing/selftests/ftrace/
10090
10091 TRIVIAL PATCHES
10092 M:      Jiri Kosina <trivial@kernel.org>
10093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10094 S:      Maintained
10095 K:      ^Subject:.*(?i)trivial
10096
10097 TTY LAYER
10098 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10099 M:      Jiri Slaby <jslaby@suse.cz>
10100 S:      Supported
10101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10102 F:      drivers/tty/
10103 F:      drivers/tty/serial/serial_core.c
10104 F:      include/linux/serial_core.h
10105 F:      include/linux/serial.h
10106 F:      include/linux/tty.h
10107 F:      include/uapi/linux/serial_core.h
10108 F:      include/uapi/linux/serial.h
10109 F:      include/uapi/linux/tty.h
10110
10111 TUA9001 MEDIA DRIVER
10112 M:      Antti Palosaari <crope@iki.fi>
10113 L:      linux-media@vger.kernel.org
10114 W:      http://linuxtv.org/
10115 W:      http://palosaari.fi/linux/
10116 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10117 T:      git git://linuxtv.org/anttip/media_tree.git
10118 S:      Maintained
10119 F:      drivers/media/tuners/tua9001*
10120
10121 TULIP NETWORK DRIVERS
10122 M:      Grant Grundler <grundler@parisc-linux.org>
10123 L:      netdev@vger.kernel.org
10124 S:      Maintained
10125 F:      drivers/net/ethernet/dec/tulip/
10126
10127 TUN/TAP driver
10128 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10129 W:      http://vtun.sourceforge.net/tun
10130 S:      Maintained
10131 F:      Documentation/networking/tuntap.txt
10132 F:      arch/um/os-Linux/drivers/
10133
10134 TURBOCHANNEL SUBSYSTEM
10135 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10136 M:      Ralf Baechle <ralf@linux-mips.org>
10137 L:      linux-mips@linux-mips.org
10138 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10139 S:      Maintained
10140 F:      drivers/tc/
10141 F:      include/linux/tc.h
10142
10143 U14-34F SCSI DRIVER
10144 M:      Dario Ballabio <ballabio_dario@emc.com>
10145 L:      linux-scsi@vger.kernel.org
10146 S:      Maintained
10147 F:      drivers/scsi/u14-34f.c
10148
10149 UBI FILE SYSTEM (UBIFS)
10150 M:      Artem Bityutskiy <dedekind1@gmail.com>
10151 M:      Adrian Hunter <adrian.hunter@intel.com>
10152 L:      linux-mtd@lists.infradead.org
10153 T:      git git://git.infradead.org/ubifs-2.6.git
10154 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10155 S:      Maintained
10156 F:      Documentation/filesystems/ubifs.txt
10157 F:      fs/ubifs/
10158
10159 UCLINUX (AND M68KNOMMU)
10160 M:      Greg Ungerer <gerg@uclinux.org>
10161 W:      http://www.uclinux.org/
10162 L:      uclinux-dev@uclinux.org  (subscribers-only)
10163 S:      Maintained
10164 F:      arch/m68k/*/*_no.*
10165 F:      arch/m68k/include/asm/*_no.*
10166
10167 UDF FILESYSTEM
10168 M:      Jan Kara <jack@suse.cz>
10169 S:      Maintained
10170 F:      Documentation/filesystems/udf.txt
10171 F:      fs/udf/
10172
10173 UFS FILESYSTEM
10174 M:      Evgeniy Dushistov <dushistov@mail.ru>
10175 S:      Maintained
10176 F:      Documentation/filesystems/ufs.txt
10177 F:      fs/ufs/
10178
10179 UHID USERSPACE HID IO DRIVER:
10180 M:      David Herrmann <dh.herrmann@googlemail.com>
10181 L:      linux-input@vger.kernel.org
10182 S:      Maintained
10183 F:      drivers/hid/uhid.c
10184 F:      include/uapi/linux/uhid.h
10185
10186 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10187 L:      linux-usb@vger.kernel.org
10188 S:      Orphan
10189 F:      drivers/uwb/
10190 F:      include/linux/uwb.h
10191 F:      include/linux/uwb/
10192
10193 UNICORE32 ARCHITECTURE:
10194 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10195 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10196 S:      Maintained
10197 T:      git git://github.com/gxt/linux.git
10198 F:      arch/unicore32/
10199
10200 UNIFDEF
10201 M:      Tony Finch <dot@dotat.at>
10202 W:      http://dotat.at/prog/unifdef
10203 S:      Maintained
10204 F:      scripts/unifdef.c
10205
10206 UNIFORM CDROM DRIVER
10207 M:      Jens Axboe <axboe@kernel.dk>
10208 W:      http://www.kernel.dk
10209 S:      Maintained
10210 F:      Documentation/cdrom/
10211 F:      drivers/cdrom/cdrom.c
10212 F:      include/linux/cdrom.h
10213 F:      include/uapi/linux/cdrom.h
10214
10215 UNISYS S-PAR DRIVERS
10216 M:      Benjamin Romer <benjamin.romer@unisys.com>
10217 M:      David Kershner <david.kershner@unisys.com>
10218 L:      sparmaintainer@unisys.com (Unisys internal)
10219 S:      Supported
10220 F:      drivers/staging/unisys/
10221
10222 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10223 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10224 L:      linux-scsi@vger.kernel.org
10225 S:      Supported
10226 F:      Documentation/scsi/ufs.txt
10227 F:      drivers/scsi/ufs/
10228
10229 UNSORTED BLOCK IMAGES (UBI)
10230 M:      Artem Bityutskiy <dedekind1@gmail.com>
10231 M:      Richard Weinberger <richard@nod.at>
10232 W:      http://www.linux-mtd.infradead.org/
10233 L:      linux-mtd@lists.infradead.org
10234 T:      git git://git.infradead.org/ubifs-2.6.git
10235 S:      Supported
10236 F:      drivers/mtd/ubi/
10237 F:      include/linux/mtd/ubi.h
10238 F:      include/uapi/mtd/ubi-user.h
10239
10240 USB ACM DRIVER
10241 M:      Oliver Neukum <oliver@neukum.org>
10242 L:      linux-usb@vger.kernel.org
10243 S:      Maintained
10244 F:      Documentation/usb/acm.txt
10245 F:      drivers/usb/class/cdc-acm.*
10246
10247 USB AR5523 WIRELESS DRIVER
10248 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10249 L:      linux-wireless@vger.kernel.org
10250 S:      Maintained
10251 F:      drivers/net/wireless/ath/ar5523/
10252
10253 USB ATTACHED SCSI
10254 M:      Hans de Goede <hdegoede@redhat.com>
10255 M:      Gerd Hoffmann <kraxel@redhat.com>
10256 L:      linux-usb@vger.kernel.org
10257 L:      linux-scsi@vger.kernel.org
10258 S:      Maintained
10259 F:      drivers/usb/storage/uas.c
10260
10261 USB CDC ETHERNET DRIVER
10262 M:      Oliver Neukum <oliver@neukum.org>
10263 L:      linux-usb@vger.kernel.org
10264 S:      Maintained
10265 F:      drivers/net/usb/cdc_*.c
10266 F:      include/uapi/linux/usb/cdc.h
10267
10268 USB CHAOSKEY DRIVER
10269 M:      Keith Packard <keithp@keithp.com>
10270 L:      linux-usb@vger.kernel.org
10271 S:      Maintained
10272 F:      drivers/usb/misc/chaoskey.c
10273
10274 USB CYPRESS C67X00 DRIVER
10275 M:      Peter Korsgaard <jacmet@sunsite.dk>
10276 L:      linux-usb@vger.kernel.org
10277 S:      Maintained
10278 F:      drivers/usb/c67x00/
10279
10280 USB DAVICOM DM9601 DRIVER
10281 M:      Peter Korsgaard <jacmet@sunsite.dk>
10282 L:      netdev@vger.kernel.org
10283 W:      http://www.linux-usb.org/usbnet
10284 S:      Maintained
10285 F:      drivers/net/usb/dm9601.c
10286
10287 USB DIAMOND RIO500 DRIVER
10288 M:      Cesar Miquel <miquel@df.uba.ar>
10289 L:      rio500-users@lists.sourceforge.net
10290 W:      http://rio500.sourceforge.net
10291 S:      Maintained
10292 F:      drivers/usb/misc/rio500*
10293
10294 USB EHCI DRIVER
10295 M:      Alan Stern <stern@rowland.harvard.edu>
10296 L:      linux-usb@vger.kernel.org
10297 S:      Maintained
10298 F:      Documentation/usb/ehci.txt
10299 F:      drivers/usb/host/ehci*
10300
10301 USB GADGET/PERIPHERAL SUBSYSTEM
10302 M:      Felipe Balbi <balbi@ti.com>
10303 L:      linux-usb@vger.kernel.org
10304 W:      http://www.linux-usb.org/gadget
10305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10306 S:      Maintained
10307 F:      drivers/usb/gadget/
10308 F:      include/linux/usb/gadget*
10309
10310 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10311 M:      Jiri Kosina <jkosina@suse.cz>
10312 L:      linux-usb@vger.kernel.org
10313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10314 S:      Maintained
10315 F:      Documentation/hid/hiddev.txt
10316 F:      drivers/hid/usbhid/
10317
10318 USB ISP116X DRIVER
10319 M:      Olav Kongas <ok@artecdesign.ee>
10320 L:      linux-usb@vger.kernel.org
10321 S:      Maintained
10322 F:      drivers/usb/host/isp116x*
10323 F:      include/linux/usb/isp116x.h
10324
10325 USB MASS STORAGE DRIVER
10326 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10327 L:      linux-usb@vger.kernel.org
10328 L:      usb-storage@lists.one-eyed-alien.net
10329 S:      Maintained
10330 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10331 F:      drivers/usb/storage/
10332
10333 USB MIDI DRIVER
10334 M:      Clemens Ladisch <clemens@ladisch.de>
10335 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10336 T:      git git://git.alsa-project.org/alsa-kernel.git
10337 S:      Maintained
10338 F:      sound/usb/midi.*
10339
10340 USB NETWORKING DRIVERS
10341 L:      linux-usb@vger.kernel.org
10342 S:      Odd Fixes
10343 F:      drivers/net/usb/
10344
10345 USB OHCI DRIVER
10346 M:      Alan Stern <stern@rowland.harvard.edu>
10347 L:      linux-usb@vger.kernel.org
10348 S:      Maintained
10349 F:      Documentation/usb/ohci.txt
10350 F:      drivers/usb/host/ohci*
10351
10352 USB OTG FSM (Finite State Machine)
10353 M:      Peter Chen <Peter.Chen@freescale.com>
10354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10355 L:      linux-usb@vger.kernel.org
10356 S:      Maintained
10357 F:      drivers/usb/common/usb-otg-fsm.c
10358
10359 USB OVER IP DRIVER
10360 M:      Valentina Manea <valentina.manea.m@gmail.com>
10361 M:      Shuah Khan <shuah.kh@samsung.com>
10362 L:      linux-usb@vger.kernel.org
10363 S:      Maintained
10364 F:      drivers/usb/usbip/
10365 F:      tools/usb/usbip/
10366
10367 USB PEGASUS DRIVER
10368 M:      Petko Manolov <petkan@nucleusys.com>
10369 L:      linux-usb@vger.kernel.org
10370 L:      netdev@vger.kernel.org
10371 T:      git git://github.com/petkan/pegasus.git
10372 W:      https://github.com/petkan/pegasus
10373 S:      Maintained
10374 F:      drivers/net/usb/pegasus.*
10375
10376 USB PHY LAYER
10377 M:      Felipe Balbi <balbi@ti.com>
10378 L:      linux-usb@vger.kernel.org
10379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10380 S:      Maintained
10381 F:      drivers/usb/phy/
10382
10383 USB PRINTER DRIVER (usblp)
10384 M:      Pete Zaitcev <zaitcev@redhat.com>
10385 L:      linux-usb@vger.kernel.org
10386 S:      Supported
10387 F:      drivers/usb/class/usblp.c
10388
10389 USB RTL8150 DRIVER
10390 M:      Petko Manolov <petkan@nucleusys.com>
10391 L:      linux-usb@vger.kernel.org
10392 L:      netdev@vger.kernel.org
10393 T:      git git://github.com/petkan/rtl8150.git
10394 W:      https://github.com/petkan/rtl8150
10395 S:      Maintained
10396 F:      drivers/net/usb/rtl8150.c
10397
10398 USB SERIAL SUBSYSTEM
10399 M:      Johan Hovold <johan@kernel.org>
10400 L:      linux-usb@vger.kernel.org
10401 S:      Maintained
10402 F:      Documentation/usb/usb-serial.txt
10403 F:      drivers/usb/serial/
10404 F:      include/linux/usb/serial.h
10405
10406 USB SMSC75XX ETHERNET DRIVER
10407 M:      Steve Glendinning <steve.glendinning@shawell.net>
10408 L:      netdev@vger.kernel.org
10409 S:      Maintained
10410 F:      drivers/net/usb/smsc75xx.*
10411
10412 USB SMSC95XX ETHERNET DRIVER
10413 M:      Steve Glendinning <steve.glendinning@shawell.net>
10414 L:      netdev@vger.kernel.org
10415 S:      Maintained
10416 F:      drivers/net/usb/smsc95xx.*
10417
10418 USB SUBSYSTEM
10419 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10420 L:      linux-usb@vger.kernel.org
10421 W:      http://www.linux-usb.org
10422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10423 S:      Supported
10424 F:      Documentation/usb/
10425 F:      drivers/usb/
10426 F:      include/linux/usb.h
10427 F:      include/linux/usb/
10428
10429 USB UHCI DRIVER
10430 M:      Alan Stern <stern@rowland.harvard.edu>
10431 L:      linux-usb@vger.kernel.org
10432 S:      Maintained
10433 F:      drivers/usb/host/uhci*
10434
10435 USB "USBNET" DRIVER FRAMEWORK
10436 M:      Oliver Neukum <oneukum@suse.de>
10437 L:      netdev@vger.kernel.org
10438 W:      http://www.linux-usb.org/usbnet
10439 S:      Maintained
10440 F:      drivers/net/usb/usbnet.c
10441 F:      include/linux/usb/usbnet.h
10442
10443 USB VIDEO CLASS
10444 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10445 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10446 L:      linux-media@vger.kernel.org
10447 T:      git git://linuxtv.org/media_tree.git
10448 W:      http://www.ideasonboard.org/uvc/
10449 S:      Maintained
10450 F:      drivers/media/usb/uvc/
10451 F:      include/uapi/linux/uvcvideo.h
10452
10453 USB VISION DRIVER
10454 M:      Hans Verkuil <hverkuil@xs4all.nl>
10455 L:      linux-media@vger.kernel.org
10456 T:      git git://linuxtv.org/media_tree.git
10457 W:      http://linuxtv.org
10458 S:      Odd Fixes
10459 F:      drivers/media/usb/usbvision/
10460
10461 USB WEBCAM GADGET
10462 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10463 L:      linux-usb@vger.kernel.org
10464 S:      Maintained
10465 F:      drivers/usb/gadget/function/*uvc*
10466 F:      drivers/usb/gadget/legacy/webcam.c
10467
10468 USB WIRELESS RNDIS DRIVER (rndis_wlan)
10469 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
10470 L:      linux-wireless@vger.kernel.org
10471 S:      Maintained
10472 F:      drivers/net/wireless/rndis_wlan.c
10473
10474 USB XHCI DRIVER
10475 M:      Mathias Nyman <mathias.nyman@intel.com>
10476 L:      linux-usb@vger.kernel.org
10477 S:      Supported
10478 F:      drivers/usb/host/xhci*
10479 F:      drivers/usb/host/pci-quirks*
10480
10481 USB ZD1201 DRIVER
10482 L:      linux-wireless@vger.kernel.org
10483 W:      http://linux-lc100020.sourceforge.net
10484 S:      Orphan
10485 F:      drivers/net/wireless/zd1201.*
10486
10487 USB ZR364XX DRIVER
10488 M:      Antoine Jacquet <royale@zerezo.com>
10489 L:      linux-usb@vger.kernel.org
10490 L:      linux-media@vger.kernel.org
10491 T:      git git://linuxtv.org/media_tree.git
10492 W:      http://royale.zerezo.com/zr364xx/
10493 S:      Maintained
10494 F:      Documentation/video4linux/zr364xx.txt
10495 F:      drivers/media/usb/zr364xx/
10496
10497 USER-MODE LINUX (UML)
10498 M:      Jeff Dike <jdike@addtoit.com>
10499 M:      Richard Weinberger <richard@nod.at>
10500 L:      user-mode-linux-devel@lists.sourceforge.net
10501 L:      user-mode-linux-user@lists.sourceforge.net
10502 W:      http://user-mode-linux.sourceforge.net
10503 S:      Maintained
10504 F:      Documentation/virtual/uml/
10505 F:      arch/um/
10506 F:      arch/x86/um/
10507 F:      fs/hostfs/
10508 F:      fs/hppfs/
10509
10510 USERSPACE I/O (UIO)
10511 M:      "Hans J. Koch" <hjk@hansjkoch.de>
10512 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10513 S:      Maintained
10514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
10515 F:      Documentation/DocBook/uio-howto.tmpl
10516 F:      drivers/uio/
10517 F:      include/linux/uio*.h
10518
10519 UTIL-LINUX PACKAGE
10520 M:      Karel Zak <kzak@redhat.com>
10521 L:      util-linux@vger.kernel.org
10522 W:      http://en.wikipedia.org/wiki/Util-linux
10523 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
10524 S:      Maintained
10525
10526 UVESAFB DRIVER
10527 M:      Michal Januszewski <spock@gentoo.org>
10528 L:      linux-fbdev@vger.kernel.org
10529 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
10530 S:      Maintained
10531 F:      Documentation/fb/uvesafb.txt
10532 F:      drivers/video/fbdev/uvesafb.*
10533
10534 VFAT/FAT/MSDOS FILESYSTEM
10535 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
10536 S:      Maintained
10537 F:      Documentation/filesystems/vfat.txt
10538 F:      fs/fat/
10539
10540 VFIO DRIVER
10541 M:      Alex Williamson <alex.williamson@redhat.com>
10542 L:      kvm@vger.kernel.org
10543 S:      Maintained
10544 F:      Documentation/vfio.txt
10545 F:      drivers/vfio/
10546 F:      include/linux/vfio.h
10547 F:      include/uapi/linux/vfio.h
10548
10549 VIDEOBUF2 FRAMEWORK
10550 M:      Pawel Osciak <pawel@osciak.com>
10551 M:      Marek Szyprowski <m.szyprowski@samsung.com>
10552 M:      Kyungmin Park <kyungmin.park@samsung.com>
10553 L:      linux-media@vger.kernel.org
10554 S:      Maintained
10555 F:      drivers/media/v4l2-core/videobuf2-*
10556 F:      include/media/videobuf2-*
10557
10558 VIRTIO CONSOLE DRIVER
10559 M:      Amit Shah <amit.shah@redhat.com>
10560 L:      virtualization@lists.linux-foundation.org
10561 S:      Maintained
10562 F:      drivers/char/virtio_console.c
10563 F:      include/linux/virtio_console.h
10564 F:      include/uapi/linux/virtio_console.h
10565
10566 VIRTIO CORE, NET AND BLOCK DRIVERS
10567 M:      "Michael S. Tsirkin" <mst@redhat.com>
10568 L:      virtualization@lists.linux-foundation.org
10569 S:      Maintained
10570 F:      drivers/virtio/
10571 F:      tools/virtio/
10572 F:      drivers/net/virtio_net.c
10573 F:      drivers/block/virtio_blk.c
10574 F:      include/linux/virtio_*.h
10575 F:      include/uapi/linux/virtio_*.h
10576
10577 VIRTIO HOST (VHOST)
10578 M:      "Michael S. Tsirkin" <mst@redhat.com>
10579 L:      kvm@vger.kernel.org
10580 L:      virtualization@lists.linux-foundation.org
10581 L:      netdev@vger.kernel.org
10582 S:      Maintained
10583 F:      drivers/vhost/
10584 F:      include/uapi/linux/vhost.h
10585
10586 VIRTIO INPUT DRIVER
10587 M:      Gerd Hoffmann <kraxel@redhat.com>
10588 S:      Maintained
10589 F:      drivers/virtio/virtio_input.c
10590 F:      include/uapi/linux/virtio_input.h
10591
10592 VIA RHINE NETWORK DRIVER
10593 M:      Roger Luethi <rl@hellgate.ch>
10594 S:      Maintained
10595 F:      drivers/net/ethernet/via/via-rhine.c
10596
10597 VIA SD/MMC CARD CONTROLLER DRIVER
10598 M:      Bruce Chang <brucechang@via.com.tw>
10599 M:      Harald Welte <HaraldWelte@viatech.com>
10600 S:      Maintained
10601 F:      drivers/mmc/host/via-sdmmc.c
10602
10603 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
10604 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
10605 L:      linux-fbdev@vger.kernel.org
10606 S:      Maintained
10607 F:      include/linux/via-core.h
10608 F:      include/linux/via-gpio.h
10609 F:      include/linux/via_i2c.h
10610 F:      drivers/video/fbdev/via/
10611
10612 VIA VELOCITY NETWORK DRIVER
10613 M:      Francois Romieu <romieu@fr.zoreil.com>
10614 L:      netdev@vger.kernel.org
10615 S:      Maintained
10616 F:      drivers/net/ethernet/via/via-velocity.*
10617
10618 VIVID VIRTUAL VIDEO DRIVER
10619 M:      Hans Verkuil <hverkuil@xs4all.nl>
10620 L:      linux-media@vger.kernel.org
10621 T:      git git://linuxtv.org/media_tree.git
10622 W:      http://linuxtv.org
10623 S:      Maintained
10624 F:      drivers/media/platform/vivid/*
10625
10626 VLAN (802.1Q)
10627 M:      Patrick McHardy <kaber@trash.net>
10628 L:      netdev@vger.kernel.org
10629 S:      Maintained
10630 F:      drivers/net/macvlan.c
10631 F:      include/linux/if_*vlan.h
10632 F:      net/8021q/
10633
10634 VLYNQ BUS
10635 M:      Florian Fainelli <florian@openwrt.org>
10636 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
10637 S:      Maintained
10638 F:      drivers/vlynq/vlynq.c
10639 F:      include/linux/vlynq.h
10640
10641 VME SUBSYSTEM
10642 M:      Martyn Welch <martyn.welch@ge.com>
10643 M:      Manohar Vanga <manohar.vanga@gmail.com>
10644 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10645 L:      devel@driverdev.osuosl.org
10646 S:      Maintained
10647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10648 F:      Documentation/vme_api.txt
10649 F:      drivers/staging/vme/
10650 F:      drivers/vme/
10651 F:      include/linux/vme*
10652
10653 VMWARE HYPERVISOR INTERFACE
10654 M:      Alok Kataria <akataria@vmware.com>
10655 L:      virtualization@lists.linux-foundation.org
10656 S:      Supported
10657 F:      arch/x86/kernel/cpu/vmware.c
10658
10659 VMWARE BALLOON DRIVER
10660 M:      Xavier Deguillard <xdeguillard@vmware.com>
10661 M:      Philip Moltmann <moltmann@vmware.com>
10662 M:      "VMware, Inc." <pv-drivers@vmware.com>
10663 L:      linux-kernel@vger.kernel.org
10664 S:      Maintained
10665 F:      drivers/misc/vmw_balloon.c
10666
10667 VMWARE VMMOUSE SUBDRIVER
10668 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
10669 M:      "VMware, Inc." <pv-drivers@vmware.com>
10670 L:      linux-input@vger.kernel.org
10671 S:      Maintained
10672 F:      drivers/input/mouse/vmmouse.c
10673 F:      drivers/input/mouse/vmmouse.h
10674
10675 VMWARE VMXNET3 ETHERNET DRIVER
10676 M:      Shreyas Bhatewara <sbhatewara@vmware.com>
10677 M:      "VMware, Inc." <pv-drivers@vmware.com>
10678 L:      netdev@vger.kernel.org
10679 S:      Maintained
10680 F:      drivers/net/vmxnet3/
10681
10682 VMware PVSCSI driver
10683 M:      Arvind Kumar <arvindkumar@vmware.com>
10684 M:      VMware PV-Drivers <pv-drivers@vmware.com>
10685 L:      linux-scsi@vger.kernel.org
10686 S:      Maintained
10687 F:      drivers/scsi/vmw_pvscsi.c
10688 F:      drivers/scsi/vmw_pvscsi.h
10689
10690 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
10691 M:      Liam Girdwood <lgirdwood@gmail.com>
10692 M:      Mark Brown <broonie@kernel.org>
10693 L:      linux-kernel@vger.kernel.org
10694 W:      http://opensource.wolfsonmicro.com/node/15
10695 W:      http://www.slimlogic.co.uk/?p=48
10696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
10697 S:      Supported
10698 F:      drivers/regulator/
10699 F:      include/linux/regulator/
10700
10701 VT1211 HARDWARE MONITOR DRIVER
10702 M:      Juerg Haefliger <juergh@gmail.com>
10703 L:      lm-sensors@lm-sensors.org
10704 S:      Maintained
10705 F:      Documentation/hwmon/vt1211
10706 F:      drivers/hwmon/vt1211.c
10707
10708 VT8231 HARDWARE MONITOR DRIVER
10709 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
10710 L:      lm-sensors@lm-sensors.org
10711 S:      Maintained
10712 F:      drivers/hwmon/vt8231.c
10713
10714 VUB300 USB to SDIO/SD/MMC bridge chip
10715 M:      Tony Olech <tony.olech@elandigitalsystems.com>
10716 L:      linux-mmc@vger.kernel.org
10717 L:      linux-usb@vger.kernel.org
10718 S:      Supported
10719 F:      drivers/mmc/host/vub300.c
10720
10721 W1 DALLAS'S 1-WIRE BUS
10722 M:      Evgeniy Polyakov <zbr@ioremap.net>
10723 S:      Maintained
10724 F:      Documentation/w1/
10725 F:      drivers/w1/
10726
10727 W83791D HARDWARE MONITORING DRIVER
10728 M:      Marc Hulsman <m.hulsman@tudelft.nl>
10729 L:      lm-sensors@lm-sensors.org
10730 S:      Maintained
10731 F:      Documentation/hwmon/w83791d
10732 F:      drivers/hwmon/w83791d.c
10733
10734 W83793 HARDWARE MONITORING DRIVER
10735 M:      Rudolf Marek <r.marek@assembler.cz>
10736 L:      lm-sensors@lm-sensors.org
10737 S:      Maintained
10738 F:      Documentation/hwmon/w83793
10739 F:      drivers/hwmon/w83793.c
10740
10741 W83795 HARDWARE MONITORING DRIVER
10742 M:      Jean Delvare <jdelvare@suse.de>
10743 L:      lm-sensors@lm-sensors.org
10744 S:      Maintained
10745 F:      drivers/hwmon/w83795.c
10746
10747 W83L51xD SD/MMC CARD INTERFACE DRIVER
10748 M:      Pierre Ossman <pierre@ossman.eu>
10749 S:      Maintained
10750 F:      drivers/mmc/host/wbsd.*
10751
10752 WACOM PROTOCOL 4 SERIAL TABLETS
10753 M:      Julian Squires <julian@cipht.net>
10754 M:      Hans de Goede <hdegoede@redhat.com>
10755 L:      linux-input@vger.kernel.org
10756 S:      Maintained
10757 F:      drivers/input/tablet/wacom_serial4.c
10758
10759 WATCHDOG DEVICE DRIVERS
10760 M:      Wim Van Sebroeck <wim@iguana.be>
10761 L:      linux-watchdog@vger.kernel.org
10762 W:      http://www.linux-watchdog.org/
10763 T:      git git://www.linux-watchdog.org/linux-watchdog.git
10764 S:      Maintained
10765 F:      Documentation/watchdog/
10766 F:      drivers/watchdog/
10767 F:      include/linux/watchdog.h
10768 F:      include/uapi/linux/watchdog.h
10769
10770 WD7000 SCSI DRIVER
10771 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
10772 L:      linux-scsi@vger.kernel.org
10773 S:      Maintained
10774 F:      drivers/scsi/wd7000.c
10775
10776 WIIMOTE HID DRIVER
10777 M:      David Herrmann <dh.herrmann@googlemail.com>
10778 L:      linux-input@vger.kernel.org
10779 S:      Maintained
10780 F:      drivers/hid/hid-wiimote*
10781
10782 WINBOND CIR DRIVER
10783 M:      David Härdeman <david@hardeman.nu>
10784 S:      Maintained
10785 F:      drivers/media/rc/winbond-cir.c
10786
10787 WIMAX STACK
10788 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
10789 M:      linux-wimax@intel.com
10790 L:      wimax@linuxwimax.org (subscribers-only)
10791 S:      Supported
10792 W:      http://linuxwimax.org
10793 F:      Documentation/wimax/README.wimax
10794 F:      include/linux/wimax/debug.h
10795 F:      include/net/wimax.h
10796 F:      include/uapi/linux/wimax.h
10797 F:      net/wimax/
10798
10799 WISTRON LAPTOP BUTTON DRIVER
10800 M:      Miloslav Trmac <mitr@volny.cz>
10801 S:      Maintained
10802 F:      drivers/input/misc/wistron_btns.c
10803
10804 WL3501 WIRELESS PCMCIA CARD DRIVER
10805 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
10806 L:      linux-wireless@vger.kernel.org
10807 W:      http://oops.ghostprotocols.net:81/blog
10808 S:      Maintained
10809 F:      drivers/net/wireless/wl3501*
10810
10811 WM97XX TOUCHSCREEN DRIVERS
10812 M:      Mark Brown <broonie@kernel.org>
10813 M:      Liam Girdwood <lrg@slimlogic.co.uk>
10814 L:      linux-input@vger.kernel.org
10815 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
10816 W:      http://opensource.wolfsonmicro.com/node/7
10817 S:      Supported
10818 F:      drivers/input/touchscreen/*wm97*
10819 F:      include/linux/wm97xx.h
10820
10821 WOLFSON MICROELECTRONICS DRIVERS
10822 L:      patches@opensource.wolfsonmicro.com
10823 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
10824 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
10825 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
10826 S:      Supported
10827 F:      Documentation/hwmon/wm83??
10828 F:      arch/arm/mach-s3c64xx/mach-crag6410*
10829 F:      drivers/clk/clk-wm83*.c
10830 F:      drivers/extcon/extcon-arizona.c
10831 F:      drivers/leds/leds-wm83*.c
10832 F:      drivers/gpio/gpio-*wm*.c
10833 F:      drivers/gpio/gpio-arizona.c
10834 F:      drivers/hwmon/wm83??-hwmon.c
10835 F:      drivers/input/misc/wm831x-on.c
10836 F:      drivers/input/touchscreen/wm831x-ts.c
10837 F:      drivers/input/touchscreen/wm97*.c
10838 F:      drivers/mfd/arizona*
10839 F:      drivers/mfd/wm*.c
10840 F:      drivers/power/wm83*.c
10841 F:      drivers/rtc/rtc-wm83*.c
10842 F:      drivers/regulator/wm8*.c
10843 F:      drivers/video/backlight/wm83*_bl.c
10844 F:      drivers/watchdog/wm83*_wdt.c
10845 F:      include/linux/mfd/arizona/
10846 F:      include/linux/mfd/wm831x/
10847 F:      include/linux/mfd/wm8350/
10848 F:      include/linux/mfd/wm8400*
10849 F:      include/linux/wm97xx.h
10850 F:      include/sound/wm????.h
10851 F:      sound/soc/codecs/arizona.?
10852 F:      sound/soc/codecs/wm*
10853
10854 WORKQUEUE
10855 M:      Tejun Heo <tj@kernel.org>
10856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
10857 S:      Maintained
10858 F:      include/linux/workqueue.h
10859 F:      kernel/workqueue.c
10860 F:      Documentation/workqueue.txt
10861
10862 X.25 NETWORK LAYER
10863 M:      Andrew Hendry <andrew.hendry@gmail.com>
10864 L:      linux-x25@vger.kernel.org
10865 S:      Odd Fixes
10866 F:      Documentation/networking/x25*
10867 F:      include/net/x25*
10868 F:      net/x25/
10869
10870 X86 ARCHITECTURE (32-BIT AND 64-BIT)
10871 M:      Thomas Gleixner <tglx@linutronix.de>
10872 M:      Ingo Molnar <mingo@redhat.com>
10873 M:      "H. Peter Anvin" <hpa@zytor.com>
10874 M:      x86@kernel.org
10875 L:      linux-kernel@vger.kernel.org
10876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
10877 S:      Maintained
10878 F:      Documentation/x86/
10879 F:      arch/x86/
10880
10881 X86 PLATFORM DRIVERS
10882 M:      Darren Hart <dvhart@infradead.org>
10883 L:      platform-driver-x86@vger.kernel.org
10884 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
10885 S:      Maintained
10886 F:      drivers/platform/x86/
10887
10888 X86 MCE INFRASTRUCTURE
10889 M:      Tony Luck <tony.luck@intel.com>
10890 M:      Borislav Petkov <bp@alien8.de>
10891 L:      linux-edac@vger.kernel.org
10892 S:      Maintained
10893 F:      arch/x86/kernel/cpu/mcheck/*
10894
10895 X86 VDSO
10896 M:      Andy Lutomirski <luto@amacapital.net>
10897 L:      linux-kernel@vger.kernel.org
10898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
10899 S:      Maintained
10900 F:      arch/x86/vdso/
10901
10902 XC2028/3028 TUNER DRIVER
10903 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10904 L:      linux-media@vger.kernel.org
10905 W:      http://linuxtv.org
10906 T:      git git://linuxtv.org/media_tree.git
10907 S:      Maintained
10908 F:      drivers/media/tuners/tuner-xc2028.*
10909
10910 XEN HYPERVISOR INTERFACE
10911 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10912 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
10913 M:      David Vrabel <david.vrabel@citrix.com>
10914 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
10916 S:      Supported
10917 F:      arch/x86/xen/
10918 F:      drivers/*/xen-*front.c
10919 F:      drivers/xen/
10920 F:      arch/x86/include/asm/xen/
10921 F:      include/xen/
10922 F:      include/uapi/xen/
10923
10924 XEN HYPERVISOR ARM
10925 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
10926 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10927 S:      Supported
10928 F:      arch/arm/xen/
10929 F:      arch/arm/include/asm/xen/
10930
10931 XEN HYPERVISOR ARM64
10932 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
10933 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10934 S:      Supported
10935 F:      arch/arm64/xen/
10936 F:      arch/arm64/include/asm/xen/
10937
10938 XEN NETWORK BACKEND DRIVER
10939 M:      Ian Campbell <ian.campbell@citrix.com>
10940 M:      Wei Liu <wei.liu2@citrix.com>
10941 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10942 L:      netdev@vger.kernel.org
10943 S:      Supported
10944 F:      drivers/net/xen-netback/*
10945
10946 XEN PCI SUBSYSTEM
10947 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10948 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10949 S:      Supported
10950 F:      arch/x86/pci/*xen*
10951 F:      drivers/pci/*xen*
10952
10953 XEN BLOCK SUBSYSTEM
10954 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10955 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
10956 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10957 S:      Supported
10958 F:      drivers/block/xen-blkback/*
10959 F:      drivers/block/xen*
10960
10961 XEN PVSCSI DRIVERS
10962 M:      Juergen Gross <jgross@suse.com>
10963 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10964 L:      linux-scsi@vger.kernel.org
10965 S:      Supported
10966 F:      drivers/scsi/xen-scsifront.c
10967 F:      drivers/xen/xen-scsiback.c
10968 F:      include/xen/interface/io/vscsiif.h
10969
10970 XEN SWIOTLB SUBSYSTEM
10971 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10972 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10973 S:      Supported
10974 F:      arch/x86/xen/*swiotlb*
10975 F:      drivers/xen/*swiotlb*
10976
10977 XFS FILESYSTEM
10978 P:      Silicon Graphics Inc
10979 M:      Dave Chinner <david@fromorbit.com>
10980 M:      xfs@oss.sgi.com
10981 L:      xfs@oss.sgi.com
10982 W:      http://oss.sgi.com/projects/xfs
10983 T:      git git://oss.sgi.com/xfs/xfs.git
10984 S:      Supported
10985 F:      Documentation/filesystems/xfs.txt
10986 F:      fs/xfs/
10987
10988 XILINX AXI ETHERNET DRIVER
10989 M:      Anirudha Sarangi <anirudh@xilinx.com>
10990 M:      John Linn <John.Linn@xilinx.com>
10991 S:      Maintained
10992 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
10993
10994 XILINX UARTLITE SERIAL DRIVER
10995 M:      Peter Korsgaard <jacmet@sunsite.dk>
10996 L:      linux-serial@vger.kernel.org
10997 S:      Maintained
10998 F:      drivers/tty/serial/uartlite.c
10999
11000 XILINX VIDEO IP CORES
11001 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11002 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11003 L:      linux-media@vger.kernel.org
11004 T:      git git://linuxtv.org/media_tree.git
11005 S:      Supported
11006 F:      Documentation/devicetree/bindings/media/xilinx/
11007 F:      drivers/media/platform/xilinx/
11008 F:      include/uapi/linux/xilinx-v4l2-controls.h
11009
11010 XILLYBUS DRIVER
11011 M:      Eli Billauer <eli.billauer@gmail.com>
11012 L:      linux-kernel@vger.kernel.org
11013 S:      Supported
11014 F:      drivers/char/xillybus/
11015
11016 XTENSA XTFPGA PLATFORM SUPPORT
11017 M:      Max Filippov <jcmvbkbc@gmail.com>
11018 L:      linux-xtensa@linux-xtensa.org
11019 S:      Maintained
11020 F:      drivers/spi/spi-xtensa-xtfpga.c
11021 F:      sound/soc/xtensa/xtfpga-i2s.c
11022
11023 YAM DRIVER FOR AX.25
11024 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11025 L:      linux-hams@vger.kernel.org
11026 S:      Maintained
11027 F:      drivers/net/hamradio/yam*
11028 F:      include/linux/yam.h
11029
11030 YEALINK PHONE DRIVER
11031 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11032 L:      usbb2k-api-dev@nongnu.org
11033 S:      Maintained
11034 F:      Documentation/input/yealink.txt
11035 F:      drivers/input/misc/yealink.*
11036
11037 Z8530 DRIVER FOR AX.25
11038 M:      Joerg Reuter <jreuter@yaina.de>
11039 W:      http://yaina.de/jreuter/
11040 W:      http://www.qsl.net/dl1bke/
11041 L:      linux-hams@vger.kernel.org
11042 S:      Maintained
11043 F:      Documentation/networking/z8530drv.txt
11044 F:      drivers/net/hamradio/*scc.c
11045 F:      drivers/net/hamradio/z8530.h
11046
11047 ZBUD COMPRESSED PAGE ALLOCATOR
11048 M:      Seth Jennings <sjennings@variantweb.net>
11049 L:      linux-mm@kvack.org
11050 S:      Maintained
11051 F:      mm/zbud.c
11052 F:      include/linux/zbud.h
11053
11054 ZD1211RW WIRELESS DRIVER
11055 M:      Daniel Drake <dsd@gentoo.org>
11056 M:      Ulrich Kunitz <kune@deine-taler.de>
11057 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11058 L:      linux-wireless@vger.kernel.org
11059 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11060 S:      Maintained
11061 F:      drivers/net/wireless/zd1211rw/
11062
11063 ZR36067 VIDEO FOR LINUX DRIVER
11064 L:      mjpeg-users@lists.sourceforge.net
11065 L:      linux-media@vger.kernel.org
11066 W:      http://mjpeg.sourceforge.net/driver-zoran/
11067 T:      hg http://linuxtv.org/hg/v4l-dvb
11068 S:      Odd Fixes
11069 F:      drivers/media/pci/zoran/
11070
11071 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11072 M:      Minchan Kim <minchan@kernel.org>
11073 M:      Nitin Gupta <ngupta@vflare.org>
11074 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11075 L:      linux-kernel@vger.kernel.org
11076 S:      Maintained
11077 F:      drivers/block/zram/
11078 F:      Documentation/blockdev/zram.txt
11079
11080 ZS DECSTATION Z85C30 SERIAL DRIVER
11081 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11082 S:      Maintained
11083 F:      drivers/tty/serial/zs.*
11084
11085 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11086 M:      Minchan Kim <minchan@kernel.org>
11087 M:      Nitin Gupta <ngupta@vflare.org>
11088 L:      linux-mm@kvack.org
11089 S:      Maintained
11090 F:      mm/zsmalloc.c
11091 F:      include/linux/zsmalloc.h
11092 F:      Documentation/vm/zsmalloc.txt
11093
11094 ZSWAP COMPRESSED SWAP CACHING
11095 M:      Seth Jennings <sjennings@variantweb.net>
11096 L:      linux-mm@kvack.org
11097 S:      Maintained
11098 F:      mm/zswap.c
11099
11100 THE REST
11101 M:      Linus Torvalds <torvalds@linux-foundation.org>
11102 L:      linux-kernel@vger.kernel.org
11103 Q:      http://patchwork.kernel.org/project/LKML/list/
11104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11105 S:      Buried alive in reporters
11106 F:      *
11107 F:      */