]> git.karo-electronics.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge remote-tracking branch 'kselftest/next'
[karo-tx-linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the 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:      Andrew Victor <linux@maxim.org.za>
896 M:      Nicolas Ferre <nicolas.ferre@atmel.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://maxim.org.za/at91_26.html
900 W:      http://www.linux4sam.org
901 S:      Supported
902 F:      arch/arm/mach-at91/
903 F:      include/soc/at91/
904 F:      arch/arm/boot/dts/at91*.dts
905 F:      arch/arm/boot/dts/at91*.dtsi
906 F:      arch/arm/boot/dts/sama*.dts
907 F:      arch/arm/boot/dts/sama*.dtsi
908 F:      arch/arm/include/debug/at91.S
909
910 ARM/ATMEL AT91 Clock Support
911 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
912 S:      Maintained
913 F:      drivers/clk/at91
914
915 ARM/CALXEDA HIGHBANK ARCHITECTURE
916 M:      Rob Herring <robh@kernel.org>
917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
918 S:      Maintained
919 F:      arch/arm/mach-highbank/
920
921 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
922 M:      Krzysztof Halasa <khalasa@piap.pl>
923 S:      Maintained
924 F:      arch/arm/mach-cns3xxx/
925
926 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
927 M:      Alexander Shiyan <shc_work@mail.ru>
928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
929 S:      Odd Fixes
930 N:      clps711x
931
932 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
933 M:      Hartley Sweeten <hsweeten@visionengravers.com>
934 M:      Ryan Mallon <rmallon@gmail.com>
935 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
936 S:      Maintained
937 F:      arch/arm/mach-ep93xx/
938 F:      arch/arm/mach-ep93xx/include/mach/
939
940 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
941 M:      Lennert Buytenhek <kernel@wantstofly.org>
942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
943 S:      Maintained
944
945 ARM/CLKDEV SUPPORT
946 M:      Russell King <linux@arm.linux.org.uk>
947 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
948 S:      Maintained
949 F:      arch/arm/include/asm/clkdev.h
950 F:      drivers/clk/clkdev.c
951
952 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
953 M:      Mike Rapoport <mike@compulab.co.il>
954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
955 S:      Maintained
956
957 ARM/CONTEC MICRO9 MACHINE SUPPORT
958 M:      Hubert Feurstein <hubert.feurstein@contec.at>
959 S:      Maintained
960 F:      arch/arm/mach-ep93xx/micro9.c
961
962 ARM/CORESIGHT FRAMEWORK AND DRIVERS
963 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
965 S:      Maintained
966 F:      drivers/hwtracing/coresight/*
967 F:      Documentation/trace/coresight.txt
968 F:      Documentation/devicetree/bindings/arm/coresight.txt
969 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
970
971 ARM/CORGI MACHINE SUPPORT
972 M:      Richard Purdie <rpurdie@rpsys.net>
973 S:      Maintained
974
975 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
976 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
978 T:      git git://git.berlios.de/gemini-board
979 S:      Maintained
980 F:      arch/arm/mach-gemini/
981
982 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
983 M:      Barry Song <baohua@kernel.org>
984 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
986 S:      Maintained
987 F:      arch/arm/mach-prima2/
988 F:      drivers/clk/sirf/
989 F:      drivers/clocksource/timer-prima2.c
990 F:      drivers/clocksource/timer-atlas7.c
991 N:      [^a-z]sirf
992
993 ARM/EBSA110 MACHINE SUPPORT
994 M:      Russell King <linux@arm.linux.org.uk>
995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
996 W:      http://www.arm.linux.org.uk/
997 S:      Maintained
998 F:      arch/arm/mach-ebsa110/
999 F:      drivers/net/ethernet/amd/am79c961a.*
1000
1001 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1002 M:      Uwe Kleine-König <kernel@pengutronix.de>
1003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1004 S:      Maintained
1005 N:      efm32
1006
1007 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1008 M:      Daniel Ribeiro <drwyrm@gmail.com>
1009 M:      Stefan Schmidt <stefan@openezx.org>
1010 M:      Harald Welte <laforge@openezx.org>
1011 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1012 W:      http://www.openezx.org/
1013 S:      Maintained
1014 T:      topgit git://git.openezx.org/openezx.git
1015 F:      arch/arm/mach-pxa/ezx.c
1016
1017 ARM/FARADAY FA526 PORT
1018 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1020 S:      Maintained
1021 T:      git git://git.berlios.de/gemini-board
1022 F:      arch/arm/mm/*-fa*
1023
1024 ARM/FOOTBRIDGE ARCHITECTURE
1025 M:      Russell King <linux@arm.linux.org.uk>
1026 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1027 W:      http://www.arm.linux.org.uk/
1028 S:      Maintained
1029 F:      arch/arm/include/asm/hardware/dec21285.h
1030 F:      arch/arm/mach-footbridge/
1031
1032 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1033 M:      Shawn Guo <shawn.guo@linaro.org>
1034 M:      Sascha Hauer <kernel@pengutronix.de>
1035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1036 S:      Maintained
1037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1038 F:      arch/arm/mach-imx/
1039 F:      arch/arm/mach-mxs/
1040 F:      arch/arm/boot/dts/imx*
1041 F:      arch/arm/configs/imx*_defconfig
1042
1043 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1044 M:      Shawn Guo <shawn.guo@linaro.org>
1045 M:      Sascha Hauer <kernel@pengutronix.de>
1046 R:      Stefan Agner <stefan@agner.ch>
1047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1048 S:      Maintained
1049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1050 F:      arch/arm/mach-imx/*vf610*
1051 F:      arch/arm/boot/dts/vf*
1052
1053 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1054 M:      Lennert Buytenhek <kernel@wantstofly.org>
1055 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1056 S:      Maintained
1057
1058 ARM/GUMSTIX MACHINE SUPPORT
1059 M:      Steve Sakoman <sakoman@gmail.com>
1060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1061 S:      Maintained
1062
1063 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1064 M:      Philipp Zabel <philipp.zabel@gmail.com>
1065 M:      Paul Parsons <lost.distance@yahoo.com>
1066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 S:      Maintained
1068 F:      arch/arm/mach-pxa/hx4700.c
1069 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1070 F:      sound/soc/pxa/hx4700.c
1071
1072 ARM/HISILICON SOC SUPPORT
1073 M:      Wei Xu <xuwei5@hisilicon.com>
1074 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1075 W:      http://www.hisilicon.com
1076 S:      Supported
1077 T:      git git://github.com/hisilicon/linux-hisi.git
1078 F:      arch/arm/mach-hisi/
1079
1080 ARM/HP JORNADA 7XX MACHINE SUPPORT
1081 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1082 W:      www.jlime.com
1083 S:      Maintained
1084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1085 F:      arch/arm/mach-sa1100/jornada720.c
1086 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1087
1088 ARM/IGEP MACHINE SUPPORT
1089 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1090 M:      Javier Martinez Canillas <javier@dowhile0.org>
1091 L:      linux-omap@vger.kernel.org
1092 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1093 S:      Maintained
1094 F:      arch/arm/boot/dts/omap3-igep*
1095
1096 ARM/INCOME PXA270 SUPPORT
1097 M:      Marek Vasut <marek.vasut@gmail.com>
1098 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1099 S:      Maintained
1100 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1101
1102 ARM/INTEL IOP32X ARM ARCHITECTURE
1103 M:      Lennert Buytenhek <kernel@wantstofly.org>
1104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1105 S:      Maintained
1106
1107 ARM/INTEL IOP33X ARM ARCHITECTURE
1108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1109 S:      Orphan
1110
1111 ARM/INTEL IOP13XX ARM ARCHITECTURE
1112 M:      Lennert Buytenhek <kernel@wantstofly.org>
1113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1114 S:      Maintained
1115
1116 ARM/INTEL IQ81342EX MACHINE SUPPORT
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 IXDP2850 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 IXP4XX ARM ARCHITECTURE
1127 M:      Imre Kaloz <kaloz@openwrt.org>
1128 M:      Krzysztof Halasa <khalasa@piap.pl>
1129 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1130 S:      Maintained
1131 F:      arch/arm/mach-ixp4xx/
1132
1133 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1134 M:      Jonathan Cameron <jic23@cam.ac.uk>
1135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1136 S:      Maintained
1137 F:      arch/arm/mach-pxa/stargate2.c
1138 F:      drivers/pcmcia/pxa2xx_stargate2.c
1139
1140 ARM/INTEL XSC3 (MANZANO) ARM CORE
1141 M:      Lennert Buytenhek <kernel@wantstofly.org>
1142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1143 S:      Maintained
1144
1145 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
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/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1151 M:      Santosh Shilimkar <ssantosh@kernel.org>
1152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1153 S:      Maintained
1154 F:      arch/arm/mach-keystone/
1155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1156
1157 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1158 M:      Santosh Shilimkar <ssantosh@kernel.org>
1159 L:      linux-kernel@vger.kernel.org
1160 S:      Maintained
1161 F:      drivers/clk/keystone/
1162
1163 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1164 M:      Santosh Shilimkar <ssantosh@kernel.org>
1165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1166 L:      linux-kernel@vger.kernel.org
1167 S:      Maintained
1168 F:      drivers/clocksource/timer-keystone.c
1169
1170 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1171 M:      Santosh Shilimkar <ssantosh@kernel.org>
1172 L:      linux-kernel@vger.kernel.org
1173 S:      Maintained
1174 F:      drivers/power/reset/keystone-reset.c
1175
1176 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1177 M:      Santosh Shilimkar <ssantosh@kernel.org>
1178 L:      linux-kernel@vger.kernel.org
1179 S:      Maintained
1180 F:      drivers/memory/*emif*
1181
1182 ARM/LOGICPD PXA270 MACHINE SUPPORT
1183 M:      Lennert Buytenhek <kernel@wantstofly.org>
1184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185 S:      Maintained
1186
1187 ARM/MAGICIAN MACHINE SUPPORT
1188 M:      Philipp Zabel <philipp.zabel@gmail.com>
1189 S:      Maintained
1190
1191 ARM/Marvell Armada 370 and Armada XP SOC support
1192 M:      Jason Cooper <jason@lakedaemon.net>
1193 M:      Andrew Lunn <andrew@lunn.ch>
1194 M:      Gregory Clement <gregory.clement@free-electrons.com>
1195 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1197 S:      Maintained
1198 F:      arch/arm/mach-mvebu/
1199 F:      drivers/rtc/rtc-armada38x.c
1200
1201 ARM/Marvell Berlin SoC support
1202 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1203 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1204 S:      Maintained
1205 F:      arch/arm/mach-berlin/
1206
1207 ARM/Marvell Dove/MV78xx0/Orion SOC support
1208 M:      Jason Cooper <jason@lakedaemon.net>
1209 M:      Andrew Lunn <andrew@lunn.ch>
1210 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1211 M:      Gregory Clement <gregory.clement@free-electrons.com>
1212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1213 S:      Maintained
1214 F:      arch/arm/mach-dove/
1215 F:      arch/arm/mach-mv78xx0/
1216 F:      arch/arm/mach-orion5x/
1217 F:      arch/arm/plat-orion/
1218
1219 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1220 M:      Alexander Clouter <alex@digriz.org.uk>
1221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1222 W:      http://www.digriz.org.uk/ts78xx/kernel
1223 S:      Maintained
1224 F:      arch/arm/mach-orion5x/ts78xx-*
1225
1226 ARM/Mediatek SoC support
1227 M:      Matthias Brugger <matthias.bgg@gmail.com>
1228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1229 S:      Maintained
1230 F:      arch/arm/boot/dts/mt6*
1231 F:      arch/arm/boot/dts/mt8*
1232 F:      arch/arm/mach-mediatek/
1233 N:      mtk
1234 K:      mediatek
1235
1236 ARM/MICREL KS8695 ARCHITECTURE
1237 M:      Greg Ungerer <gerg@uclinux.org>
1238 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239 F:      arch/arm/mach-ks8695/
1240 S:      Odd Fixes
1241
1242 ARM/MIOA701 MACHINE SUPPORT
1243 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1245 F:      arch/arm/mach-pxa/mioa701.c
1246 S:      Maintained
1247
1248 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1249 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1250 S:      Maintained
1251
1252 ARM/NOMADIK ARCHITECTURE
1253 M:      Alessandro Rubini <rubini@unipv.it>
1254 M:      Linus Walleij <linus.walleij@linaro.org>
1255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1256 S:      Maintained
1257 F:      arch/arm/mach-nomadik/
1258 F:      drivers/pinctrl/nomadik/
1259 F:      drivers/i2c/busses/i2c-nomadik.c
1260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1261
1262 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1263 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1264 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1265 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1266 S:      Supported
1267
1268 ARM/TOSA MACHINE SUPPORT
1269 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1270 M:      Dirk Opfer <dirk@opfer-online.de>
1271 S:      Maintained
1272
1273 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1274 M:      Marek Vasut <marek.vasut@gmail.com>
1275 L:      linux-arm-kernel@lists.infradead.org
1276 W:      http://hackndev.com
1277 S:      Maintained
1278 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1279 F:      arch/arm/mach-pxa/palmtx.c
1280 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1281 F:      arch/arm/mach-pxa/palmt5.c
1282 F:      arch/arm/mach-pxa/include/mach/palmld.h
1283 F:      arch/arm/mach-pxa/palmld.c
1284 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1285 F:      arch/arm/mach-pxa/palmte2.c
1286 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1287 F:      arch/arm/mach-pxa/palmtc.c
1288
1289 ARM/PALM TREO SUPPORT
1290 M:      Tomas Cech <sleep_walker@suse.cz>
1291 L:      linux-arm-kernel@lists.infradead.org
1292 W:      http://hackndev.com
1293 S:      Maintained
1294 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1295 F:      arch/arm/mach-pxa/palmtreo.c
1296
1297 ARM/PALMZ72 SUPPORT
1298 M:      Sergey Lapin <slapin@ossfans.org>
1299 L:      linux-arm-kernel@lists.infradead.org
1300 W:      http://hackndev.com
1301 S:      Maintained
1302 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1303 F:      arch/arm/mach-pxa/palmz72.c
1304
1305 ARM/PLEB SUPPORT
1306 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1307 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1308 S:      Maintained
1309
1310 ARM/PT DIGITAL BOARD PORT
1311 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1312 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1313 W:      http://www.arm.linux.org.uk/
1314 S:      Maintained
1315
1316 ARM/QUALCOMM SUPPORT
1317 M:      Kumar Gala <galak@codeaurora.org>
1318 M:      Andy Gross <agross@codeaurora.org>
1319 M:      David Brown <davidb@codeaurora.org>
1320 L:      linux-arm-msm@vger.kernel.org
1321 L:      linux-soc@vger.kernel.org
1322 S:      Maintained
1323 F:      arch/arm/mach-qcom/
1324 F:      drivers/soc/qcom/
1325 F:      drivers/firmware/qcom_scm.c
1326 F:      drivers/tty/serial/msm_serial.h
1327 F:      drivers/tty/serial/msm_serial.c
1328 F:      drivers/*/pm8???-*
1329 F:      drivers/mfd/ssbi.c
1330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1331
1332 ARM/RADISYS ENP2611 MACHINE SUPPORT
1333 M:      Lennert Buytenhek <kernel@wantstofly.org>
1334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1335 S:      Maintained
1336
1337 ARM/RISCPC ARCHITECTURE
1338 M:      Russell King <linux@arm.linux.org.uk>
1339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1340 W:      http://www.arm.linux.org.uk/
1341 S:      Maintained
1342 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1343 F:      arch/arm/include/asm/hardware/ioc.h
1344 F:      arch/arm/include/asm/hardware/iomd.h
1345 F:      arch/arm/include/asm/hardware/memc.h
1346 F:      arch/arm/mach-rpc/
1347 F:      drivers/net/ethernet/8390/etherh.c
1348 F:      drivers/net/ethernet/i825xx/ether1*
1349 F:      drivers/net/ethernet/seeq/ether3*
1350 F:      drivers/scsi/arm/
1351
1352 ARM/Rockchip SoC support
1353 M:      Heiko Stuebner <heiko@sntech.de>
1354 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1355 L:      linux-rockchip@lists.infradead.org
1356 S:      Maintained
1357 F:      arch/arm/boot/dts/rk3*
1358 F:      arch/arm/mach-rockchip/
1359 F:      drivers/clk/rockchip/
1360 F:      drivers/i2c/busses/i2c-rk3x.c
1361 F:      drivers/*/*rockchip*
1362 F:      drivers/*/*/*rockchip*
1363 F:      sound/soc/rockchip/
1364 N:      rockchip
1365
1366 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1367 M:      Kukjin Kim <kgene@kernel.org>
1368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1369 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1370 S:      Maintained
1371 F:      arch/arm/boot/dts/s3c*
1372 F:      arch/arm/boot/dts/exynos*
1373 F:      arch/arm/plat-samsung/
1374 F:      arch/arm/mach-s3c24*/
1375 F:      arch/arm/mach-s3c64xx/
1376 F:      arch/arm/mach-s5p*/
1377 F:      arch/arm/mach-exynos*/
1378 F:      drivers/*/*s3c2410*
1379 F:      drivers/*/*/*s3c2410*
1380 F:      drivers/spi/spi-s3c*
1381 F:      sound/soc/samsung/*
1382 N:      exynos
1383
1384 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1385 M:      Kyungmin Park <kyungmin.park@samsung.com>
1386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1387 S:      Maintained
1388 F:      arch/arm/mach-s5pv210/
1389
1390 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1391 M:      Kyungmin Park <kyungmin.park@samsung.com>
1392 M:      Kamil Debski <k.debski@samsung.com>
1393 L:      linux-arm-kernel@lists.infradead.org
1394 L:      linux-media@vger.kernel.org
1395 S:      Maintained
1396 F:      drivers/media/platform/s5p-g2d/
1397
1398 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1399 M:      Kyungmin Park <kyungmin.park@samsung.com>
1400 M:      Kamil Debski <k.debski@samsung.com>
1401 M:      Jeongtae Park <jtp.park@samsung.com>
1402 L:      linux-arm-kernel@lists.infradead.org
1403 L:      linux-media@vger.kernel.org
1404 S:      Maintained
1405 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1406 F:      drivers/media/platform/s5p-mfc/
1407
1408 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1409 M:      Kyungmin Park <kyungmin.park@samsung.com>
1410 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1411 L:      linux-arm-kernel@lists.infradead.org
1412 L:      linux-media@vger.kernel.org
1413 S:      Maintained
1414 F:      drivers/media/platform/s5p-tv/
1415
1416 ARM/SHMOBILE ARM ARCHITECTURE
1417 M:      Simon Horman <horms@verge.net.au>
1418 M:      Magnus Damm <magnus.damm@gmail.com>
1419 L:      linux-sh@vger.kernel.org
1420 W:      http://oss.renesas.com
1421 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1423 S:      Supported
1424 F:      arch/arm/boot/dts/emev2*
1425 F:      arch/arm/boot/dts/r7s*
1426 F:      arch/arm/boot/dts/r8a*
1427 F:      arch/arm/boot/dts/sh*
1428 F:      arch/arm/configs/armadillo800eva_defconfig
1429 F:      arch/arm/configs/bockw_defconfig
1430 F:      arch/arm/configs/kzm9g_defconfig
1431 F:      arch/arm/configs/marzen_defconfig
1432 F:      arch/arm/configs/shmobile_defconfig
1433 F:      arch/arm/include/debug/renesas-scif.S
1434 F:      arch/arm/mach-shmobile/
1435 F:      drivers/sh/
1436
1437 ARM/SOCFPGA ARCHITECTURE
1438 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1439 S:      Maintained
1440 F:      arch/arm/mach-socfpga/
1441 W:      http://www.rocketboards.org
1442 T:      git://git.rocketboards.org/linux-socfpga.git
1443 T:      git://git.rocketboards.org/linux-socfpga-next.git
1444
1445 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1446 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1447 S:      Maintained
1448 F:      drivers/clk/socfpga/
1449
1450 ARM/SOCFPGA EDAC SUPPORT
1451 M:      Thor Thayer <tthayer@opensource.altera.com>
1452 S:      Maintained
1453 F:      drivers/edac/altera_edac.
1454
1455 ARM/STI ARCHITECTURE
1456 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1457 M:      Maxime Coquelin <maxime.coquelin@st.com>
1458 M:      Patrice Chotard <patrice.chotard@st.com>
1459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1460 L:      kernel@stlinux.com
1461 W:      http://www.stlinux.com
1462 S:      Maintained
1463 F:      arch/arm/mach-sti/
1464 F:      arch/arm/boot/dts/sti*
1465 F:      drivers/clocksource/arm_global_timer.c
1466 F:      drivers/i2c/busses/i2c-st.c
1467 F:      drivers/media/rc/st_rc.c
1468 F:      drivers/mmc/host/sdhci-st.c
1469 F:      drivers/phy/phy-stih407-usb.c
1470 F:      drivers/phy/phy-stih41x-usb.c
1471 F:      drivers/pinctrl/pinctrl-st.c
1472 F:      drivers/reset/sti/
1473 F:      drivers/tty/serial/st-asc.c
1474 F:      drivers/usb/dwc3/dwc3-st.c
1475 F:      drivers/usb/host/ehci-st.c
1476 F:      drivers/usb/host/ohci-st.c
1477 F:      drivers/ata/ahci_st.c
1478
1479 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1480 M:      Lennert Buytenhek <kernel@wantstofly.org>
1481 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1482 S:      Maintained
1483
1484 ARM/TETON BGA MACHINE SUPPORT
1485 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1487 S:      Maintained
1488
1489 ARM/THECUS N2100 MACHINE SUPPORT
1490 M:      Lennert Buytenhek <kernel@wantstofly.org>
1491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1492 S:      Maintained
1493
1494 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1495 M:      Wan ZongShun <mcuos.com@gmail.com>
1496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497 W:      http://www.mcuos.com
1498 S:      Maintained
1499 F:      arch/arm/mach-w90x900/
1500 F:      drivers/input/keyboard/w90p910_keypad.c
1501 F:      drivers/input/touchscreen/w90p910_ts.c
1502 F:      drivers/watchdog/nuc900_wdt.c
1503 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1504 F:      drivers/mtd/nand/nuc900_nand.c
1505 F:      drivers/rtc/rtc-nuc900.c
1506 F:      drivers/spi/spi-nuc900.c
1507 F:      drivers/usb/host/ehci-w90x900.c
1508 F:      drivers/video/fbdev/nuc900fb.c
1509
1510 ARM/U300 MACHINE SUPPORT
1511 M:      Linus Walleij <linus.walleij@linaro.org>
1512 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1513 S:      Supported
1514 F:      arch/arm/mach-u300/
1515 F:      drivers/clocksource/timer-u300.c
1516 F:      drivers/i2c/busses/i2c-stu300.c
1517 F:      drivers/rtc/rtc-coh901331.c
1518 F:      drivers/watchdog/coh901327_wdt.c
1519 F:      drivers/dma/coh901318*
1520 F:      drivers/mfd/ab3100*
1521 F:      drivers/rtc/rtc-ab3100.c
1522 F:      drivers/rtc/rtc-coh901331.c
1523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1524
1525 ARM/Ux500 ARM ARCHITECTURE
1526 M:      Linus Walleij <linus.walleij@linaro.org>
1527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1528 S:      Maintained
1529 F:      arch/arm/mach-ux500/
1530 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1531 F:      drivers/dma/ste_dma40*
1532 F:      drivers/hwspinlock/u8500_hsem.c
1533 F:      drivers/mfd/abx500*
1534 F:      drivers/mfd/ab8500*
1535 F:      drivers/mfd/dbx500*
1536 F:      drivers/mfd/db8500*
1537 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1538 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1539 F:      drivers/rtc/rtc-ab8500.c
1540 F:      drivers/rtc/rtc-pl031.c
1541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1542
1543 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1544 M:      Ulf Hansson <ulf.hansson@linaro.org>
1545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1546 T:      git git://git.linaro.org/people/ulfh/clk.git
1547 S:      Maintained
1548 F:      drivers/clk/ux500/
1549 F:      include/linux/platform_data/clk-ux500.h
1550
1551 ARM/VERSATILE EXPRESS PLATFORM
1552 M:      Liviu Dudau <liviu.dudau@arm.com>
1553 M:      Sudeep Holla <sudeep.holla@arm.com>
1554 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1555 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1556 S:      Maintained
1557 F:      arch/arm/boot/dts/vexpress*
1558 F:      arch/arm/mach-vexpress/
1559 F:      */*/vexpress*
1560 F:      */*/*/vexpress*
1561 F:      drivers/clk/versatile/clk-vexpress-osc.c
1562 F:      drivers/clocksource/versatile.c
1563
1564 ARM/VFP SUPPORT
1565 M:      Russell King <linux@arm.linux.org.uk>
1566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1567 W:      http://www.arm.linux.org.uk/
1568 S:      Maintained
1569 F:      arch/arm/vfp/
1570
1571 ARM/VOIPAC PXA270 SUPPORT
1572 M:      Marek Vasut <marek.vasut@gmail.com>
1573 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1574 S:      Maintained
1575 F:      arch/arm/mach-pxa/vpac270.c
1576 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1577
1578 ARM/VT8500 ARM ARCHITECTURE
1579 M:      Tony Prisk <linux@prisktech.co.nz>
1580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 S:      Maintained
1582 F:      arch/arm/mach-vt8500/
1583 F:      drivers/clocksource/vt8500_timer.c
1584 F:      drivers/i2c/busses/i2c-wmt.c
1585 F:      drivers/mmc/host/wmt-sdmmc.c
1586 F:      drivers/pwm/pwm-vt8500.c
1587 F:      drivers/rtc/rtc-vt8500.c
1588 F:      drivers/tty/serial/vt8500_serial.c
1589 F:      drivers/usb/host/ehci-platform.c
1590 F:      drivers/usb/host/uhci-platform.c
1591 F:      drivers/video/fbdev/vt8500lcdfb.*
1592 F:      drivers/video/fbdev/wm8505fb*
1593 F:      drivers/video/fbdev/wmt_ge_rops.*
1594
1595 ARM/ZIPIT Z2 SUPPORT
1596 M:      Marek Vasut <marek.vasut@gmail.com>
1597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1598 S:      Maintained
1599 F:      arch/arm/mach-pxa/z2.c
1600 F:      arch/arm/mach-pxa/include/mach/z2.h
1601
1602 ARM/ZYNQ ARCHITECTURE
1603 M:      Michal Simek <michal.simek@xilinx.com>
1604 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1606 W:      http://wiki.xilinx.com
1607 T:      git git://git.xilinx.com/linux-xlnx.git
1608 S:      Supported
1609 F:      arch/arm/mach-zynq/
1610 F:      drivers/cpuidle/cpuidle-zynq.c
1611 F:      drivers/block/xsysace.c
1612 N:      zynq
1613 N:      xilinx
1614 F:      drivers/clocksource/cadence_ttc_timer.c
1615 F:      drivers/i2c/busses/i2c-cadence.c
1616 F:      drivers/mmc/host/sdhci-of-arasan.c
1617 F:      drivers/edac/synopsys_edac.c
1618
1619 ARM SMMU DRIVER
1620 M:      Will Deacon <will.deacon@arm.com>
1621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1622 S:      Maintained
1623 F:      drivers/iommu/arm-smmu.c
1624 F:      drivers/iommu/io-pgtable-arm.c
1625
1626 ARM64 PORT (AARCH64 ARCHITECTURE)
1627 M:      Catalin Marinas <catalin.marinas@arm.com>
1628 M:      Will Deacon <will.deacon@arm.com>
1629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1630 S:      Maintained
1631 F:      arch/arm64/
1632 F:      Documentation/arm64/
1633
1634 AS3645A LED FLASH CONTROLLER DRIVER
1635 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1636 L:      linux-media@vger.kernel.org
1637 T:      git git://linuxtv.org/media_tree.git
1638 S:      Maintained
1639 F:      drivers/media/i2c/as3645a.c
1640 F:      include/media/as3645a.h
1641
1642 ASC7621 HARDWARE MONITOR DRIVER
1643 M:      George Joseph <george.joseph@fairview5.com>
1644 L:      lm-sensors@lm-sensors.org
1645 S:      Maintained
1646 F:      Documentation/hwmon/asc7621
1647 F:      drivers/hwmon/asc7621.c
1648
1649 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1650 M:      Corentin Chary <corentin.chary@gmail.com>
1651 L:      acpi4asus-user@lists.sourceforge.net
1652 L:      platform-driver-x86@vger.kernel.org
1653 W:      http://acpi4asus.sf.net
1654 S:      Maintained
1655 F:      drivers/platform/x86/asus*.c
1656 F:      drivers/platform/x86/eeepc*.c
1657
1658 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1659 R:      Dan Williams <dan.j.williams@intel.com>
1660 W:      http://sourceforge.net/projects/xscaleiop
1661 S:      Odd fixes
1662 F:      Documentation/crypto/async-tx-api.txt
1663 F:      crypto/async_tx/
1664 F:      drivers/dma/
1665 F:      include/linux/dmaengine.h
1666 F:      include/linux/async_tx.h
1667
1668 AT24 EEPROM DRIVER
1669 M:      Wolfram Sang <wsa@the-dreams.de>
1670 L:      linux-i2c@vger.kernel.org
1671 S:      Maintained
1672 F:      drivers/misc/eeprom/at24.c
1673 F:      include/linux/platform_data/at24.h
1674
1675 ATA OVER ETHERNET (AOE) DRIVER
1676 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1677 W:      http://www.openaoe.org/
1678 S:      Supported
1679 F:      Documentation/aoe/
1680 F:      drivers/block/aoe/
1681
1682 ATHEROS ATH GENERIC UTILITIES
1683 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1684 L:      linux-wireless@vger.kernel.org
1685 S:      Supported
1686 F:      drivers/net/wireless/ath/*
1687
1688 ATHEROS ATH5K WIRELESS DRIVER
1689 M:      Jiri Slaby <jirislaby@gmail.com>
1690 M:      Nick Kossifidis <mickflemm@gmail.com>
1691 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1692 L:      linux-wireless@vger.kernel.org
1693 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1694 S:      Maintained
1695 F:      drivers/net/wireless/ath/ath5k/
1696
1697 ATHEROS ATH6KL WIRELESS DRIVER
1698 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1699 L:      linux-wireless@vger.kernel.org
1700 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1701 T:      git git://github.com/kvalo/ath.git
1702 S:      Supported
1703 F:      drivers/net/wireless/ath/ath6kl/
1704
1705 WILOCITY WIL6210 WIRELESS DRIVER
1706 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1707 L:      linux-wireless@vger.kernel.org
1708 L:      wil6210@qca.qualcomm.com
1709 S:      Supported
1710 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1711 F:      drivers/net/wireless/ath/wil6210/
1712 F:      include/uapi/linux/wil6210_uapi.h
1713
1714 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1715 M:      Christian Lamparter <chunkeey@googlemail.com>
1716 L:      linux-wireless@vger.kernel.org
1717 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1718 S:      Maintained
1719 F:      drivers/net/wireless/ath/carl9170/
1720
1721 ATK0110 HWMON DRIVER
1722 M:      Luca Tettamanti <kronos.it@gmail.com>
1723 L:      lm-sensors@lm-sensors.org
1724 S:      Maintained
1725 F:      drivers/hwmon/asus_atk0110.c
1726
1727 ATI_REMOTE2 DRIVER
1728 M:      Ville Syrjala <syrjala@sci.fi>
1729 S:      Maintained
1730 F:      drivers/input/misc/ati_remote2.c
1731
1732 ATLX ETHERNET DRIVERS
1733 M:      Jay Cliburn <jcliburn@gmail.com>
1734 M:      Chris Snook <chris.snook@gmail.com>
1735 L:      netdev@vger.kernel.org
1736 W:      http://sourceforge.net/projects/atl1
1737 W:      http://atl1.sourceforge.net
1738 S:      Maintained
1739 F:      drivers/net/ethernet/atheros/
1740
1741 ATM
1742 M:      Chas Williams <3chas3@gmail.com>
1743 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1744 L:      netdev@vger.kernel.org
1745 W:      http://linux-atm.sourceforge.net
1746 S:      Maintained
1747 F:      drivers/atm/
1748 F:      include/linux/atm*
1749 F:      include/uapi/linux/atm*
1750
1751 ATMEL AT91 / AT32 MCI DRIVER
1752 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1753 S:      Maintained
1754 F:      drivers/mmc/host/atmel-mci.c
1755 F:      drivers/mmc/host/atmel-mci-regs.h
1756
1757 ATMEL AT91 / AT32 SERIAL DRIVER
1758 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1759 S:      Supported
1760 F:      drivers/tty/serial/atmel_serial.c
1761
1762 ATMEL Audio ALSA driver
1763 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1764 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1765 S:      Supported
1766 F:      sound/soc/atmel
1767
1768 ATMEL DMA DRIVER
1769 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1770 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1771 S:      Supported
1772 F:      drivers/dma/at_hdmac.c
1773 F:      drivers/dma/at_hdmac_regs.h
1774 F:      include/linux/platform_data/dma-atmel.h
1775
1776 ATMEL XDMA DRIVER
1777 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1778 L:      linux-arm-kernel@lists.infradead.org
1779 L:      dmaengine@vger.kernel.org
1780 S:      Supported
1781 F:      drivers/dma/at_xdmac.c
1782
1783 ATMEL I2C DRIVER
1784 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1785 L:      linux-i2c@vger.kernel.org
1786 S:      Supported
1787 F:      drivers/i2c/busses/i2c-at91.c
1788
1789 ATMEL ISI DRIVER
1790 M:      Josh Wu <josh.wu@atmel.com>
1791 L:      linux-media@vger.kernel.org
1792 S:      Supported
1793 F:      drivers/media/platform/soc_camera/atmel-isi.c
1794 F:      include/media/atmel-isi.h
1795
1796 ATMEL LCDFB DRIVER
1797 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1798 L:      linux-fbdev@vger.kernel.org
1799 S:      Maintained
1800 F:      drivers/video/fbdev/atmel_lcdfb.c
1801 F:      include/video/atmel_lcdc.h
1802
1803 ATMEL MACB ETHERNET DRIVER
1804 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1805 S:      Supported
1806 F:      drivers/net/ethernet/cadence/
1807
1808 ATMEL NAND DRIVER
1809 M:      Josh Wu <josh.wu@atmel.com>
1810 L:      linux-mtd@lists.infradead.org
1811 S:      Supported
1812 F:      drivers/mtd/nand/atmel_nand*
1813
1814 ATMEL SPI DRIVER
1815 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1816 S:      Supported
1817 F:      drivers/spi/spi-atmel.*
1818
1819 ATMEL SSC DRIVER
1820 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1822 S:      Supported
1823 F:      drivers/misc/atmel-ssc.c
1824 F:      include/linux/atmel-ssc.h
1825
1826 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1827 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1829 S:      Supported
1830 F:      drivers/misc/atmel_tclib.c
1831 F:      drivers/clocksource/tcb_clksrc.c
1832
1833 ATMEL USBA UDC DRIVER
1834 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1835 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1836 S:      Supported
1837 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1838
1839 ATMEL WIRELESS DRIVER
1840 M:      Simon Kelley <simon@thekelleys.org.uk>
1841 L:      linux-wireless@vger.kernel.org
1842 W:      http://www.thekelleys.org.uk/atmel
1843 W:      http://atmelwlandriver.sourceforge.net/
1844 S:      Maintained
1845 F:      drivers/net/wireless/atmel*
1846
1847 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1848 M:      Bradley Grove <linuxdrivers@attotech.com>
1849 L:      linux-scsi@vger.kernel.org
1850 W:      http://www.attotech.com
1851 S:      Supported
1852 F:      drivers/scsi/esas2r
1853
1854 AUDIT SUBSYSTEM
1855 M:      Paul Moore <paul@paul-moore.com>
1856 M:      Eric Paris <eparis@redhat.com>
1857 L:      linux-audit@redhat.com (moderated for non-subscribers)
1858 W:      http://people.redhat.com/sgrubb/audit/
1859 T:      git git://git.infradead.org/users/pcmoore/audit
1860 S:      Maintained
1861 F:      include/linux/audit.h
1862 F:      include/uapi/linux/audit.h
1863 F:      kernel/audit*
1864
1865 AUXILIARY DISPLAY DRIVERS
1866 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1867 W:      http://miguelojeda.es/auxdisplay.htm
1868 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1869 S:      Maintained
1870 F:      drivers/auxdisplay/
1871 F:      include/linux/cfag12864b.h
1872
1873 AVR32 ARCHITECTURE
1874 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1875 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1876 W:      http://www.atmel.com/products/AVR32/
1877 W:      http://mirror.egtvedt.no/avr32linux.org/
1878 W:      http://avrfreaks.net/
1879 S:      Maintained
1880 F:      arch/avr32/
1881
1882 AVR32/AT32AP MACHINE SUPPORT
1883 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1884 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1885 S:      Maintained
1886 F:      arch/avr32/mach-at32ap/
1887
1888 AX.25 NETWORK LAYER
1889 M:      Ralf Baechle <ralf@linux-mips.org>
1890 L:      linux-hams@vger.kernel.org
1891 W:      http://www.linux-ax25.org/
1892 S:      Maintained
1893 F:      include/uapi/linux/ax25.h
1894 F:      include/net/ax25.h
1895 F:      net/ax25/
1896
1897 AZ6007 DVB DRIVER
1898 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
1899 L:      linux-media@vger.kernel.org
1900 W:      http://linuxtv.org
1901 T:      git git://linuxtv.org/media_tree.git
1902 S:      Maintained
1903 F:      drivers/media/usb/dvb-usb-v2/az6007.c
1904
1905 AZTECH FM RADIO RECEIVER DRIVER
1906 M:      Hans Verkuil <hverkuil@xs4all.nl>
1907 L:      linux-media@vger.kernel.org
1908 T:      git git://linuxtv.org/media_tree.git
1909 W:      http://linuxtv.org
1910 S:      Maintained
1911 F:      drivers/media/radio/radio-aztech*
1912
1913 B43 WIRELESS DRIVER
1914 M:      Stefano Brivio <stefano.brivio@polimi.it>
1915 L:      linux-wireless@vger.kernel.org
1916 L:      b43-dev@lists.infradead.org
1917 W:      http://wireless.kernel.org/en/users/Drivers/b43
1918 S:      Maintained
1919 F:      drivers/net/wireless/b43/
1920
1921 B43LEGACY WIRELESS DRIVER
1922 M:      Larry Finger <Larry.Finger@lwfinger.net>
1923 M:      Stefano Brivio <stefano.brivio@polimi.it>
1924 L:      linux-wireless@vger.kernel.org
1925 L:      b43-dev@lists.infradead.org
1926 W:      http://wireless.kernel.org/en/users/Drivers/b43
1927 S:      Maintained
1928 F:      drivers/net/wireless/b43legacy/
1929
1930 BACKLIGHT CLASS/SUBSYSTEM
1931 M:      Jingoo Han <jg1.han@samsung.com>
1932 M:      Lee Jones <lee.jones@linaro.org>
1933 S:      Maintained
1934 F:      drivers/video/backlight/
1935 F:      include/linux/backlight.h
1936
1937 BATMAN ADVANCED
1938 M:      Marek Lindner <mareklindner@neomailbox.ch>
1939 M:      Simon Wunderlich <sw@simonwunderlich.de>
1940 M:      Antonio Quartulli <antonio@meshcoding.com>
1941 L:      b.a.t.m.a.n@lists.open-mesh.org
1942 W:      http://www.open-mesh.org/
1943 S:      Maintained
1944 F:      net/batman-adv/
1945
1946 BAYCOM/HDLCDRV DRIVERS FOR AX.25
1947 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
1948 L:      linux-hams@vger.kernel.org
1949 W:      http://www.baycom.org/~tom/ham/ham.html
1950 S:      Maintained
1951 F:      drivers/net/hamradio/baycom*
1952
1953 BCACHE (BLOCK LAYER CACHE)
1954 M:      Kent Overstreet <kmo@daterainc.com>
1955 L:      linux-bcache@vger.kernel.org
1956 W:      http://bcache.evilpiepirate.org
1957 S:      Maintained:
1958 F:      drivers/md/bcache/
1959
1960 BEFS FILE SYSTEM
1961 S:      Orphan
1962 F:      Documentation/filesystems/befs.txt
1963 F:      fs/befs/
1964
1965 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
1966 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
1967 L: netdev@vger.kernel.org
1968 S: Maintained
1969 F: drivers/net/ethernet/ec_bhf.c
1970
1971 BFS FILE SYSTEM
1972 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
1973 S:      Maintained
1974 F:      Documentation/filesystems/bfs.txt
1975 F:      fs/bfs/
1976 F:      include/uapi/linux/bfs_fs.h
1977
1978 BLACKFIN ARCHITECTURE
1979 M:      Steven Miao <realmz6@gmail.com>
1980 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1981 T:      git git://git.code.sf.net/p/adi-linux/code
1982 W:      http://blackfin.uclinux.org
1983 S:      Supported
1984 F:      arch/blackfin/
1985
1986 BLACKFIN EMAC DRIVER
1987 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1988 W:      http://blackfin.uclinux.org
1989 S:      Supported
1990 F:      drivers/net/ethernet/adi/
1991
1992 BLACKFIN RTC DRIVER
1993 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1994 W:      http://blackfin.uclinux.org
1995 S:      Supported
1996 F:      drivers/rtc/rtc-bfin.c
1997
1998 BLACKFIN SDH DRIVER
1999 M:      Sonic Zhang <sonic.zhang@analog.com>
2000 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2001 W:      http://blackfin.uclinux.org
2002 S:      Supported
2003 F:      drivers/mmc/host/bfin_sdh.c
2004
2005 BLACKFIN SERIAL 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/tty/serial/bfin_uart.c
2011
2012 BLACKFIN WATCHDOG DRIVER
2013 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2014 W:      http://blackfin.uclinux.org
2015 S:      Supported
2016 F:      drivers/watchdog/bfin_wdt.c
2017
2018 BLACKFIN I2C TWI DRIVER
2019 M:      Sonic Zhang <sonic.zhang@analog.com>
2020 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2021 W:      http://blackfin.uclinux.org/
2022 S:      Supported
2023 F:      drivers/i2c/busses/i2c-bfin-twi.c
2024
2025 BLACKFIN MEDIA DRIVER
2026 M:      Scott Jiang <scott.jiang.linux@gmail.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/media/platform/blackfin/
2031 F:      drivers/media/i2c/adv7183*
2032 F:      drivers/media/i2c/vs6624*
2033
2034 BLINKM RGB LED DRIVER
2035 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2036 S:      Maintained
2037 F:      drivers/leds/leds-blinkm.c
2038
2039 BLOCK LAYER
2040 M:      Jens Axboe <axboe@kernel.dk>
2041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2042 S:      Maintained
2043 F:      block/
2044
2045 BLOCK2MTD DRIVER
2046 M:      Joern Engel <joern@lazybastard.org>
2047 L:      linux-mtd@lists.infradead.org
2048 S:      Maintained
2049 F:      drivers/mtd/devices/block2mtd.c
2050
2051 BLUETOOTH DRIVERS
2052 M:      Marcel Holtmann <marcel@holtmann.org>
2053 M:      Gustavo Padovan <gustavo@padovan.org>
2054 M:      Johan Hedberg <johan.hedberg@gmail.com>
2055 L:      linux-bluetooth@vger.kernel.org
2056 W:      http://www.bluez.org/
2057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2059 S:      Maintained
2060 F:      drivers/bluetooth/
2061
2062 BLUETOOTH SUBSYSTEM
2063 M:      Marcel Holtmann <marcel@holtmann.org>
2064 M:      Gustavo Padovan <gustavo@padovan.org>
2065 M:      Johan Hedberg <johan.hedberg@gmail.com>
2066 L:      linux-bluetooth@vger.kernel.org
2067 W:      http://www.bluez.org/
2068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2070 S:      Maintained
2071 F:      net/bluetooth/
2072 F:      include/net/bluetooth/
2073
2074 BONDING DRIVER
2075 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2076 M:      Veaceslav Falico <vfalico@gmail.com>
2077 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2078 L:      netdev@vger.kernel.org
2079 W:      http://sourceforge.net/projects/bonding/
2080 S:      Supported
2081 F:      drivers/net/bonding/
2082 F:      include/uapi/linux/if_bonding.h
2083
2084 BPF (Safe dynamic programs and tools)
2085 M:      Alexei Starovoitov <ast@kernel.org>
2086 L:      netdev@vger.kernel.org
2087 L:      linux-kernel@vger.kernel.org
2088 S:      Supported
2089 F:      kernel/bpf/
2090
2091 BROADCOM B44 10/100 ETHERNET DRIVER
2092 M:      Gary Zambrano <zambrano@broadcom.com>
2093 L:      netdev@vger.kernel.org
2094 S:      Supported
2095 F:      drivers/net/ethernet/broadcom/b44.*
2096
2097 BROADCOM GENET ETHERNET DRIVER
2098 M:      Florian Fainelli <f.fainelli@gmail.com>
2099 L:      netdev@vger.kernel.org
2100 S:      Supported
2101 F:      drivers/net/ethernet/broadcom/genet/
2102
2103 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2104 M:      Sony Chacko <sony.chacko@qlogic.com>
2105 M:      Dept-HSGLinuxNICDev@qlogic.com
2106 L:      netdev@vger.kernel.org
2107 S:      Supported
2108 F:      drivers/net/ethernet/broadcom/bnx2.*
2109 F:      drivers/net/ethernet/broadcom/bnx2_*
2110
2111 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2112 M:      Ariel Elior <ariel.elior@qlogic.com>
2113 L:      netdev@vger.kernel.org
2114 S:      Supported
2115 F:      drivers/net/ethernet/broadcom/bnx2x/
2116
2117 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2118 M:      Christian Daudt <bcm@fixthebug.org>
2119 M:      Florian Fainelli <f.fainelli@gmail.com>
2120 L:      bcm-kernel-feedback-list@broadcom.com
2121 T:      git git://github.com/broadcom/mach-bcm
2122 S:      Maintained
2123 F:      arch/arm/mach-bcm/
2124 F:      arch/arm/boot/dts/bcm113*
2125 F:      arch/arm/boot/dts/bcm216*
2126 F:      arch/arm/boot/dts/bcm281*
2127 F:      arch/arm/configs/bcm_defconfig
2128 F:      drivers/mmc/host/sdhci-bcm-kona.c
2129 F:      drivers/clocksource/bcm_kona_timer.c
2130
2131 BROADCOM BCM2835 ARM ARCHITECTURE
2132 M:      Stephen Warren <swarren@wwwdotorg.org>
2133 M:      Lee Jones <lee@kernel.org>
2134 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2136 S:      Maintained
2137 N:      bcm2835
2138
2139 BROADCOM BCM33XX MIPS ARCHITECTURE
2140 M:      Kevin Cernekee <cernekee@gmail.com>
2141 L:      linux-mips@linux-mips.org
2142 S:      Maintained
2143 F:      arch/mips/bcm3384/*
2144 F:      arch/mips/include/asm/mach-bcm3384/*
2145 F:      arch/mips/kernel/*bmips*
2146
2147 BROADCOM BCM5301X ARM ARCHITECTURE
2148 M:      Hauke Mehrtens <hauke@hauke-m.de>
2149 L:      linux-arm-kernel@lists.infradead.org
2150 S:      Maintained
2151 F:      arch/arm/mach-bcm/bcm_5301x.c
2152 F:      arch/arm/boot/dts/bcm5301x.dtsi
2153 F:      arch/arm/boot/dts/bcm470*
2154
2155 BROADCOM BCM63XX ARM ARCHITECTURE
2156 M:      Florian Fainelli <f.fainelli@gmail.com>
2157 L:      linux-arm-kernel@lists.infradead.org
2158 T:      git git://github.com/broadcom/arm-bcm63xx.git
2159 S:      Maintained
2160 F:      arch/arm/mach-bcm/bcm63xx.c
2161 F:      arch/arm/include/debug/bcm63xx.S
2162
2163 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2164 M:      Kevin Cernekee <cernekee@gmail.com>
2165 L:      linux-usb@vger.kernel.org
2166 S:      Maintained
2167 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2168
2169 BROADCOM BCM7XXX ARM ARCHITECTURE
2170 M:      Marc Carino <marc.ceeeee@gmail.com>
2171 M:      Brian Norris <computersforpeace@gmail.com>
2172 M:      Gregory Fong <gregory.0xf0@gmail.com>
2173 M:      Florian Fainelli <f.fainelli@gmail.com>
2174 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2175 T:      git git://github.com/broadcom/stblinux.git
2176 S:      Maintained
2177 F:      arch/arm/mach-bcm/*brcmstb*
2178 F:      arch/arm/boot/dts/bcm7*.dts*
2179 F:      drivers/bus/brcmstb_gisb.c
2180
2181 BROADCOM BMIPS MIPS ARCHITECTURE
2182 M:      Kevin Cernekee <cernekee@gmail.com>
2183 M:      Florian Fainelli <f.fainelli@gmail.com>
2184 L:      linux-mips@linux-mips.org
2185 T:      git git://github.com/broadcom/stblinux.git
2186 S:      Maintained
2187 F:      arch/mips/bmips/*
2188 F:      arch/mips/include/asm/mach-bmips/*
2189 F:      arch/mips/kernel/*bmips*
2190 F:      arch/mips/boot/dts/bcm*.dts*
2191 F:      drivers/irqchip/irq-bcm7*
2192 F:      drivers/irqchip/irq-brcmstb*
2193
2194 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2195 M:      Prashant Sreedharan <prashant@broadcom.com>
2196 M:      Michael Chan <mchan@broadcom.com>
2197 L:      netdev@vger.kernel.org
2198 S:      Supported
2199 F:      drivers/net/ethernet/broadcom/tg3.*
2200
2201 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2202 M:      Brett Rudley <brudley@broadcom.com>
2203 M:      Arend van Spriel <arend@broadcom.com>
2204 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2205 M:      Hante Meuleman <meuleman@broadcom.com>
2206 L:      linux-wireless@vger.kernel.org
2207 L:      brcm80211-dev-list@broadcom.com
2208 S:      Supported
2209 F:      drivers/net/wireless/brcm80211/
2210
2211 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2212 M:      QLogic-Storage-Upstream@qlogic.com
2213 L:      linux-scsi@vger.kernel.org
2214 S:      Supported
2215 F:      drivers/scsi/bnx2fc/
2216
2217 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2218 M:      QLogic-Storage-Upstream@qlogic.com
2219 L:      linux-scsi@vger.kernel.org
2220 S:      Supported
2221 F:      drivers/scsi/bnx2i/
2222
2223 BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2224 M:      Ray Jui <rjui@broadcom.com>
2225 M:      Scott Branden <sbranden@broadcom.com>
2226 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2227 L:      bcm-kernel-feedback-list@broadcom.com
2228 T:      git git://github.com/broadcom/cygnus-linux.git
2229 S:      Maintained
2230 N:      iproc
2231 N:      cygnus
2232 N:      bcm9113*
2233 N:      bcm9583*
2234 N:      bcm583*
2235 N:      bcm113*
2236
2237 BROADCOM KONA GPIO DRIVER
2238 M:      Ray Jui <rjui@broadcom.com>
2239 L:      bcm-kernel-feedback-list@broadcom.com
2240 S:      Supported
2241 F:      drivers/gpio/gpio-bcm-kona.c
2242 F:      Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt
2243
2244 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2245 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2246 L:      linux-wireless@vger.kernel.org
2247 S:      Maintained
2248 F:      drivers/bcma/
2249 F:      include/linux/bcma/
2250
2251 BROADCOM SYSTEMPORT ETHERNET DRIVER
2252 M:      Florian Fainelli <f.fainelli@gmail.com>
2253 L:      netdev@vger.kernel.org
2254 S:      Supported
2255 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2256
2257 BROCADE BFA FC SCSI DRIVER
2258 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2259 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2260 L:      linux-scsi@vger.kernel.org
2261 S:      Supported
2262 F:      drivers/scsi/bfa/
2263
2264 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2265 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2266 L:      netdev@vger.kernel.org
2267 S:      Supported
2268 F:      drivers/net/ethernet/brocade/bna/
2269
2270 BSG (block layer generic sg v4 driver)
2271 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2272 L:      linux-scsi@vger.kernel.org
2273 S:      Supported
2274 F:      block/bsg.c
2275 F:      include/linux/bsg.h
2276 F:      include/uapi/linux/bsg.h
2277
2278 BT87X AUDIO DRIVER
2279 M:      Clemens Ladisch <clemens@ladisch.de>
2280 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2281 T:      git git://git.alsa-project.org/alsa-kernel.git
2282 S:      Maintained
2283 F:      Documentation/sound/alsa/Bt87x.txt
2284 F:      sound/pci/bt87x.c
2285
2286 BT8XXGPIO DRIVER
2287 M:      Michael Buesch <m@bues.ch>
2288 W:      http://bu3sch.de/btgpio.php
2289 S:      Maintained
2290 F:      drivers/gpio/gpio-bt8xx.c
2291
2292 BTRFS FILE SYSTEM
2293 M:      Chris Mason <clm@fb.com>
2294 M:      Josef Bacik <jbacik@fb.com>
2295 M:      David Sterba <dsterba@suse.cz>
2296 L:      linux-btrfs@vger.kernel.org
2297 W:      http://btrfs.wiki.kernel.org/
2298 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2300 S:      Maintained
2301 F:      Documentation/filesystems/btrfs.txt
2302 F:      fs/btrfs/
2303
2304 BTTV VIDEO4LINUX DRIVER
2305 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2306 L:      linux-media@vger.kernel.org
2307 W:      http://linuxtv.org
2308 T:      git git://linuxtv.org/media_tree.git
2309 S:      Odd fixes
2310 F:      Documentation/video4linux/bttv/
2311 F:      drivers/media/pci/bt8xx/bttv*
2312
2313 BUSLOGIC SCSI DRIVER
2314 M:      Khalid Aziz <khalid@gonehiking.org>
2315 L:      linux-scsi@vger.kernel.org
2316 S:      Maintained
2317 F:      drivers/scsi/BusLogic.*
2318 F:      drivers/scsi/FlashPoint.*
2319
2320 C-MEDIA CMI8788 DRIVER
2321 M:      Clemens Ladisch <clemens@ladisch.de>
2322 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2323 T:      git git://git.alsa-project.org/alsa-kernel.git
2324 S:      Maintained
2325 F:      sound/pci/oxygen/
2326
2327 C6X ARCHITECTURE
2328 M:      Mark Salter <msalter@redhat.com>
2329 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2330 L:      linux-c6x-dev@linux-c6x.org
2331 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2332 S:      Maintained
2333 F:      arch/c6x/
2334
2335 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2336 M:      David Howells <dhowells@redhat.com>
2337 L:      linux-cachefs@redhat.com
2338 S:      Supported
2339 F:      Documentation/filesystems/caching/cachefiles.txt
2340 F:      fs/cachefiles/
2341
2342 CADET FM/AM RADIO RECEIVER DRIVER
2343 M:      Hans Verkuil <hverkuil@xs4all.nl>
2344 L:      linux-media@vger.kernel.org
2345 T:      git git://linuxtv.org/media_tree.git
2346 W:      http://linuxtv.org
2347 S:      Maintained
2348 F:      drivers/media/radio/radio-cadet*
2349
2350 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2351 M:      Jonathan Corbet <corbet@lwn.net>
2352 L:      linux-media@vger.kernel.org
2353 T:      git git://linuxtv.org/media_tree.git
2354 S:      Maintained
2355 F:      Documentation/video4linux/cafe_ccic
2356 F:      drivers/media/platform/marvell-ccic/
2357
2358 CAIF NETWORK LAYER
2359 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2360 L:      netdev@vger.kernel.org
2361 S:      Supported
2362 F:      Documentation/networking/caif/
2363 F:      drivers/net/caif/
2364 F:      include/uapi/linux/caif/
2365 F:      include/net/caif/
2366 F:      net/caif/
2367
2368 CALGARY x86-64 IOMMU
2369 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2370 M:      "Jon D. Mason" <jdmason@kudzu.us>
2371 L:      discuss@x86-64.org
2372 S:      Maintained
2373 F:      arch/x86/kernel/pci-calgary_64.c
2374 F:      arch/x86/kernel/tce_64.c
2375 F:      arch/x86/include/asm/calgary.h
2376 F:      arch/x86/include/asm/tce.h
2377
2378 CAN NETWORK LAYER
2379 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2380 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2381 L:      linux-can@vger.kernel.org
2382 W:      https://github.com/linux-can
2383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2385 S:      Maintained
2386 F:      Documentation/networking/can.txt
2387 F:      net/can/
2388 F:      include/linux/can/core.h
2389 F:      include/uapi/linux/can.h
2390 F:      include/uapi/linux/can/bcm.h
2391 F:      include/uapi/linux/can/raw.h
2392 F:      include/uapi/linux/can/gw.h
2393
2394 CAN NETWORK DRIVERS
2395 M:      Wolfgang Grandegger <wg@grandegger.com>
2396 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2397 L:      linux-can@vger.kernel.org
2398 W:      https://github.com/linux-can
2399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2401 S:      Maintained
2402 F:      drivers/net/can/
2403 F:      include/linux/can/dev.h
2404 F:      include/linux/can/platform/
2405 F:      include/uapi/linux/can/error.h
2406 F:      include/uapi/linux/can/netlink.h
2407
2408 CAPABILITIES
2409 M:      Serge Hallyn <serge.hallyn@canonical.com>
2410 L:      linux-security-module@vger.kernel.org
2411 S:      Supported
2412 F:      include/linux/capability.h
2413 F:      include/uapi/linux/capability.h
2414 F:      security/capability.c
2415 F:      security/commoncap.c
2416 F:      kernel/capability.c
2417
2418 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2419 M:      Kevin Tsai <ktsai@capellamicro.com>
2420 S:      Maintained
2421 F:      drivers/iio/light/cm*
2422 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2423
2424 CC2520 IEEE-802.15.4 RADIO DRIVER
2425 M:      Varka Bhadram <varkabhadram@gmail.com>
2426 L:      linux-wpan@vger.kernel.org
2427 S:      Maintained
2428 F:      drivers/net/ieee802154/cc2520.c
2429 F:      include/linux/spi/cc2520.h
2430 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2431
2432 CELL BROADBAND ENGINE ARCHITECTURE
2433 M:      Arnd Bergmann <arnd@arndb.de>
2434 L:      linuxppc-dev@lists.ozlabs.org
2435 L:      cbe-oss-dev@lists.ozlabs.org
2436 W:      http://www.ibm.com/developerworks/power/cell/
2437 S:      Supported
2438 F:      arch/powerpc/include/asm/cell*.h
2439 F:      arch/powerpc/include/asm/spu*.h
2440 F:      arch/powerpc/include/uapi/asm/spu*.h
2441 F:      arch/powerpc/oprofile/*cell*
2442 F:      arch/powerpc/platforms/cell/
2443
2444 CEPH DISTRIBUTED FILE SYSTEM CLIENT
2445 M:      Yan, Zheng <zyan@redhat.com>
2446 M:      Sage Weil <sage@redhat.com>
2447 L:      ceph-devel@vger.kernel.org
2448 W:      http://ceph.com/
2449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2450 S:      Supported
2451 F:      Documentation/filesystems/ceph.txt
2452 F:      fs/ceph/
2453 F:      net/ceph/
2454 F:      include/linux/ceph/
2455 F:      include/linux/crush/
2456
2457 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2458 L:      linux-usb@vger.kernel.org
2459 S:      Orphan
2460 F:      Documentation/usb/WUSB-Design-overview.txt
2461 F:      Documentation/usb/wusb-cbaf
2462 F:      drivers/usb/host/hwa-hc.c
2463 F:      drivers/usb/host/whci/
2464 F:      drivers/usb/wusbcore/
2465 F:      include/linux/usb/wusb*
2466
2467 CFAG12864B LCD DRIVER
2468 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2469 W:      http://miguelojeda.es/auxdisplay.htm
2470 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2471 S:      Maintained
2472 F:      drivers/auxdisplay/cfag12864b.c
2473 F:      include/linux/cfag12864b.h
2474
2475 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2476 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2477 W:      http://miguelojeda.es/auxdisplay.htm
2478 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2479 S:      Maintained
2480 F:      drivers/auxdisplay/cfag12864bfb.c
2481 F:      include/linux/cfag12864b.h
2482
2483 CFG80211 and NL80211
2484 M:      Johannes Berg <johannes@sipsolutions.net>
2485 L:      linux-wireless@vger.kernel.org
2486 W:      http://wireless.kernel.org/
2487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2489 S:      Maintained
2490 F:      include/uapi/linux/nl80211.h
2491 F:      include/net/cfg80211.h
2492 F:      net/wireless/*
2493 X:      net/wireless/wext*
2494
2495 CHAR and MISC DRIVERS
2496 M:      Arnd Bergmann <arnd@arndb.de>
2497 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2499 S:      Supported
2500 F:      drivers/char/*
2501 F:      drivers/misc/*
2502 F:      include/linux/miscdevice.h
2503
2504 CHECKPATCH
2505 M:      Andy Whitcroft <apw@canonical.com>
2506 M:      Joe Perches <joe@perches.com>
2507 S:      Maintained
2508 F:      scripts/checkpatch.pl
2509
2510 CHINESE DOCUMENTATION
2511 M:      Harry Wei <harryxiyou@gmail.com>
2512 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2513 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2514 S:      Maintained
2515 F:      Documentation/zh_CN/
2516
2517 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2518 M:      Peter Chen <Peter.Chen@freescale.com>
2519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2520 L:      linux-usb@vger.kernel.org
2521 S:      Maintained
2522 F:      drivers/usb/chipidea/
2523
2524 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2525 M:      Hans de Goede <hdegoede@redhat.com>
2526 L:      linux-input@vger.kernel.org
2527 S:      Maintained
2528 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2529 F:      drivers/input/touchscreen/chipone_icn8318.c
2530
2531 CHROME HARDWARE PLATFORM SUPPORT
2532 M:      Olof Johansson <olof@lixom.net>
2533 S:      Maintained
2534 F:      drivers/platform/chrome/
2535
2536 CISCO VIC ETHERNET NIC DRIVER
2537 M:      Christian Benvenuti <benve@cisco.com>
2538 M:      Sujith Sankar <ssujith@cisco.com>
2539 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2540 M:      Neel Patel <neepatel@cisco.com>
2541 S:      Supported
2542 F:      drivers/net/ethernet/cisco/enic/
2543
2544 CISCO VIC LOW LATENCY NIC DRIVER
2545 M:      Upinder Malhi <umalhi@cisco.com>
2546 S:      Supported
2547 F:      drivers/infiniband/hw/usnic
2548
2549 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2550 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2551 L:      netdev@vger.kernel.org
2552 S:      Maintained
2553 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2554
2555 CIRRUS LOGIC AUDIO CODEC DRIVERS
2556 M:      Brian Austin <brian.austin@cirrus.com>
2557 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2558 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2559 S:      Maintained
2560 F:      sound/soc/codecs/cs*
2561
2562 CLEANCACHE API
2563 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2564 L:      linux-kernel@vger.kernel.org
2565 S:      Maintained
2566 F:      mm/cleancache.c
2567 F:      include/linux/cleancache.h
2568
2569 CLK API
2570 M:      Russell King <linux@arm.linux.org.uk>
2571 L:      linux-clk@vger.kernel.org
2572 S:      Maintained
2573 F:      include/linux/clk.h
2574
2575 CLOCKSOURCE, CLOCKEVENT DRIVERS
2576 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2577 M:      Thomas Gleixner <tglx@linutronix.de>
2578 L:      linux-kernel@vger.kernel.org
2579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2580 S:      Supported
2581 F:      drivers/clocksource
2582
2583 CISCO FCOE HBA DRIVER
2584 M:      Hiral Patel <hiralpat@cisco.com>
2585 M:      Suma Ramars <sramars@cisco.com>
2586 M:      Brian Uchino <buchino@cisco.com>
2587 L:      linux-scsi@vger.kernel.org
2588 S:      Supported
2589 F:      drivers/scsi/fnic/
2590
2591 CMPC ACPI DRIVER
2592 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2593 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2594 L:      platform-driver-x86@vger.kernel.org
2595 S:      Supported
2596 F:      drivers/platform/x86/classmate-laptop.c
2597
2598 COCCINELLE/Semantic Patches (SmPL)
2599 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2600 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2601 M:      Nicolas Palix <nicolas.palix@imag.fr>
2602 M:      Michal Marek <mmarek@suse.cz>
2603 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2605 W:      http://coccinelle.lip6.fr/
2606 S:      Supported
2607 F:      Documentation/coccinelle.txt
2608 F:      scripts/coccinelle/
2609 F:      scripts/coccicheck
2610
2611 CODA FILE SYSTEM
2612 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2613 M:      coda@cs.cmu.edu
2614 L:      codalist@coda.cs.cmu.edu
2615 W:      http://www.coda.cs.cmu.edu/
2616 S:      Maintained
2617 F:      Documentation/filesystems/coda.txt
2618 F:      fs/coda/
2619 F:      include/linux/coda*.h
2620 F:      include/uapi/linux/coda*.h
2621
2622 CODA V4L2 MEM2MEM DRIVER
2623 M:      Philipp Zabel <p.zabel@pengutronix.de>
2624 L:      linux-media@vger.kernel.org
2625 S:      Maintained
2626 F:      Documentation/devicetree/bindings/media/coda.txt
2627 F:      drivers/media/platform/coda/
2628
2629 COMMON CLK FRAMEWORK
2630 M:      Mike Turquette <mturquette@linaro.org>
2631 M:      Stephen Boyd <sboyd@codeaurora.org>
2632 L:      linux-clk@vger.kernel.org
2633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2634 S:      Maintained
2635 F:      drivers/clk/
2636 X:      drivers/clk/clkdev.c
2637 F:      include/linux/clk-pr*
2638 F:      include/linux/clk/
2639
2640 COMMON INTERNET FILE SYSTEM (CIFS)
2641 M:      Steve French <sfrench@samba.org>
2642 L:      linux-cifs@vger.kernel.org
2643 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2644 W:      http://linux-cifs.samba.org/
2645 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2646 S:      Supported
2647 F:      Documentation/filesystems/cifs/
2648 F:      fs/cifs/
2649
2650 COMPACTPCI HOTPLUG CORE
2651 M:      Scott Murray <scott@spiteful.org>
2652 L:      linux-pci@vger.kernel.org
2653 S:      Maintained
2654 F:      drivers/pci/hotplug/cpci_hotplug*
2655
2656 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2657 M:      Scott Murray <scott@spiteful.org>
2658 L:      linux-pci@vger.kernel.org
2659 S:      Maintained
2660 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2661
2662 COMPACTPCI HOTPLUG GENERIC DRIVER
2663 M:      Scott Murray <scott@spiteful.org>
2664 L:      linux-pci@vger.kernel.org
2665 S:      Maintained
2666 F:      drivers/pci/hotplug/cpcihp_generic.c
2667
2668 COMPAL LAPTOP SUPPORT
2669 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2670 L:      platform-driver-x86@vger.kernel.org
2671 S:      Maintained
2672 F:      drivers/platform/x86/compal-laptop.c
2673
2674 CONEXANT ACCESSRUNNER USB DRIVER
2675 M:      Simon Arlott <cxacru@fire.lp0.eu>
2676 L:      accessrunner-general@lists.sourceforge.net
2677 W:      http://accessrunner.sourceforge.net/
2678 S:      Maintained
2679 F:      drivers/usb/atm/cxacru.c
2680
2681 CONFIGFS
2682 M:      Joel Becker <jlbec@evilplan.org>
2683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2684 S:      Supported
2685 F:      fs/configfs/
2686 F:      include/linux/configfs.h
2687
2688 CONNECTOR
2689 M:      Evgeniy Polyakov <zbr@ioremap.net>
2690 L:      netdev@vger.kernel.org
2691 S:      Maintained
2692 F:      drivers/connector/
2693
2694 CONTROL GROUP (CGROUP)
2695 M:      Tejun Heo <tj@kernel.org>
2696 M:      Li Zefan <lizefan@huawei.com>
2697 L:      cgroups@vger.kernel.org
2698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2699 S:      Maintained
2700 F:      Documentation/cgroups/
2701 F:      include/linux/cgroup*
2702 F:      kernel/cgroup*
2703
2704 CONTROL GROUP - CPUSET
2705 M:      Li Zefan <lizefan@huawei.com>
2706 L:      cgroups@vger.kernel.org
2707 W:      http://www.bullopensource.org/cpuset/
2708 W:      http://oss.sgi.com/projects/cpusets/
2709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2710 S:      Maintained
2711 F:      Documentation/cgroups/cpusets.txt
2712 F:      include/linux/cpuset.h
2713 F:      kernel/cpuset.c
2714
2715 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2716 M:      Johannes Weiner <hannes@cmpxchg.org>
2717 M:      Michal Hocko <mhocko@suse.cz>
2718 L:      cgroups@vger.kernel.org
2719 L:      linux-mm@kvack.org
2720 S:      Maintained
2721 F:      mm/memcontrol.c
2722 F:      mm/swap_cgroup.c
2723
2724 CORETEMP HARDWARE MONITORING DRIVER
2725 M:      Fenghua Yu <fenghua.yu@intel.com>
2726 L:      lm-sensors@lm-sensors.org
2727 S:      Maintained
2728 F:      Documentation/hwmon/coretemp
2729 F:      drivers/hwmon/coretemp.c
2730
2731 COSA/SRP SYNC SERIAL DRIVER
2732 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2733 W:      http://www.fi.muni.cz/~kas/cosa/
2734 S:      Maintained
2735 F:      drivers/net/wan/cosa*
2736
2737 CPMAC ETHERNET DRIVER
2738 M:      Florian Fainelli <florian@openwrt.org>
2739 L:      netdev@vger.kernel.org
2740 S:      Maintained
2741 F:      drivers/net/ethernet/ti/cpmac.c
2742
2743 CPU FREQUENCY DRIVERS
2744 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
2745 M:      Viresh Kumar <viresh.kumar@linaro.org>
2746 L:      linux-pm@vger.kernel.org
2747 S:      Maintained
2748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2749 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2750 F:      drivers/cpufreq/
2751 F:      include/linux/cpufreq.h
2752
2753 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2754 M:      Viresh Kumar <viresh.kumar@linaro.org>
2755 M:      Sudeep Holla <sudeep.holla@arm.com>
2756 L:      linux-pm@vger.kernel.org
2757 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2758 S:      Maintained
2759 F:      drivers/cpufreq/arm_big_little.h
2760 F:      drivers/cpufreq/arm_big_little.c
2761 F:      drivers/cpufreq/arm_big_little_dt.c
2762
2763 CPUIDLE DRIVER - ARM BIG LITTLE
2764 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2765 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2766 L:      linux-pm@vger.kernel.org
2767 L:      linux-arm-kernel@lists.infradead.org
2768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2769 S:      Maintained
2770 F:      drivers/cpuidle/cpuidle-big_little.c
2771
2772 CPUIDLE DRIVER - ARM EXYNOS
2773 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2774 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2775 M:      Kukjin Kim <kgene@kernel.org>
2776 L:      linux-pm@vger.kernel.org
2777 L:      linux-samsung-soc@vger.kernel.org
2778 S:      Supported
2779 F:      drivers/cpuidle/cpuidle-exynos.c
2780 F:      arch/arm/mach-exynos/pm.c
2781
2782 CPUIDLE DRIVERS
2783 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
2784 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2785 L:      linux-pm@vger.kernel.org
2786 S:      Maintained
2787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2788 F:      drivers/cpuidle/*
2789 F:      include/linux/cpuidle.h
2790
2791 CPUID/MSR DRIVER
2792 M:      "H. Peter Anvin" <hpa@zytor.com>
2793 S:      Maintained
2794 F:      arch/x86/kernel/cpuid.c
2795 F:      arch/x86/kernel/msr.c
2796
2797 CPU POWER MONITORING SUBSYSTEM
2798 M:      Thomas Renninger <trenn@suse.de>
2799 L:      linux-pm@vger.kernel.org
2800 S:      Maintained
2801 F:      tools/power/cpupower/
2802
2803 CRAMFS FILESYSTEM
2804 W:      http://sourceforge.net/projects/cramfs/
2805 S:      Orphan / Obsolete
2806 F:      Documentation/filesystems/cramfs.txt
2807 F:      fs/cramfs/
2808
2809 CRIS PORT
2810 M:      Mikael Starvik <starvik@axis.com>
2811 M:      Jesper Nilsson <jesper.nilsson@axis.com>
2812 L:      linux-cris-kernel@axis.com
2813 W:      http://developer.axis.com
2814 S:      Maintained
2815 F:      arch/cris/
2816 F:      drivers/tty/serial/crisv10.*
2817
2818 CRYPTO API
2819 M:      Herbert Xu <herbert@gondor.apana.org.au>
2820 M:      "David S. Miller" <davem@davemloft.net>
2821 L:      linux-crypto@vger.kernel.org
2822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2823 S:      Maintained
2824 F:      Documentation/crypto/
2825 F:      Documentation/DocBook/crypto-API.tmpl
2826 F:      arch/*/crypto/
2827 F:      crypto/
2828 F:      drivers/crypto/
2829 F:      include/crypto/
2830
2831 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2832 M:      Neil Horman <nhorman@tuxdriver.com>
2833 L:      linux-crypto@vger.kernel.org
2834 S:      Maintained
2835 F:      crypto/ansi_cprng.c
2836 F:      crypto/rng.c
2837
2838 CS5535 Audio ALSA driver
2839 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
2840 S:      Maintained
2841 F:      sound/pci/cs5535audio/
2842
2843 CW1200 WLAN driver
2844 M:      Solomon Peachy <pizza@shaftnet.org>
2845 S:      Maintained
2846 F:      drivers/net/wireless/cw1200/
2847
2848 CX18 VIDEO4LINUX DRIVER
2849 M:      Andy Walls <awalls@md.metrocast.net>
2850 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
2851 L:      linux-media@vger.kernel.org
2852 T:      git git://linuxtv.org/media_tree.git
2853 W:      http://linuxtv.org
2854 W:      http://www.ivtvdriver.org/index.php/Cx18
2855 S:      Maintained
2856 F:      Documentation/video4linux/cx18.txt
2857 F:      drivers/media/pci/cx18/
2858 F:      include/uapi/linux/ivtv*
2859
2860 CX2341X MPEG ENCODER HELPER MODULE
2861 M:      Hans Verkuil <hverkuil@xs4all.nl>
2862 L:      linux-media@vger.kernel.org
2863 T:      git git://linuxtv.org/media_tree.git
2864 W:      http://linuxtv.org
2865 S:      Maintained
2866 F:      drivers/media/common/cx2341x*
2867 F:      include/media/cx2341x*
2868
2869 CX88 VIDEO4LINUX DRIVER
2870 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2871 L:      linux-media@vger.kernel.org
2872 W:      http://linuxtv.org
2873 T:      git git://linuxtv.org/media_tree.git
2874 S:      Odd fixes
2875 F:      Documentation/video4linux/cx88/
2876 F:      drivers/media/pci/cx88/
2877
2878 CXD2820R MEDIA DRIVER
2879 M:      Antti Palosaari <crope@iki.fi>
2880 L:      linux-media@vger.kernel.org
2881 W:      http://linuxtv.org/
2882 W:      http://palosaari.fi/linux/
2883 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
2884 T:      git git://linuxtv.org/anttip/media_tree.git
2885 S:      Maintained
2886 F:      drivers/media/dvb-frontends/cxd2820r*
2887
2888 CXGB3 ETHERNET DRIVER (CXGB3)
2889 M:      Santosh Raspatur <santosh@chelsio.com>
2890 L:      netdev@vger.kernel.org
2891 W:      http://www.chelsio.com
2892 S:      Supported
2893 F:      drivers/net/ethernet/chelsio/cxgb3/
2894
2895 CXGB3 ISCSI DRIVER (CXGB3I)
2896 M:      Karen Xie <kxie@chelsio.com>
2897 L:      linux-scsi@vger.kernel.org
2898 W:      http://www.chelsio.com
2899 S:      Supported
2900 F:      drivers/scsi/cxgbi/cxgb3i
2901
2902 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
2903 M:      Steve Wise <swise@chelsio.com>
2904 L:      linux-rdma@vger.kernel.org
2905 W:      http://www.openfabrics.org
2906 S:      Supported
2907 F:      drivers/infiniband/hw/cxgb3/
2908
2909 CXGB4 ETHERNET DRIVER (CXGB4)
2910 M:      Hariprasad S <hariprasad@chelsio.com>
2911 L:      netdev@vger.kernel.org
2912 W:      http://www.chelsio.com
2913 S:      Supported
2914 F:      drivers/net/ethernet/chelsio/cxgb4/
2915
2916 CXGB4 ISCSI DRIVER (CXGB4I)
2917 M:      Karen Xie <kxie@chelsio.com>
2918 L:      linux-scsi@vger.kernel.org
2919 W:      http://www.chelsio.com
2920 S:      Supported
2921 F:      drivers/scsi/cxgbi/cxgb4i
2922
2923 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2924 M:      Steve Wise <swise@chelsio.com>
2925 L:      linux-rdma@vger.kernel.org
2926 W:      http://www.openfabrics.org
2927 S:      Supported
2928 F:      drivers/infiniband/hw/cxgb4/
2929
2930 CXGB4VF ETHERNET DRIVER (CXGB4VF)
2931 M:      Casey Leedom <leedom@chelsio.com>
2932 L:      netdev@vger.kernel.org
2933 W:      http://www.chelsio.com
2934 S:      Supported
2935 F:      drivers/net/ethernet/chelsio/cxgb4vf/
2936
2937 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
2938 M:      Ian Munsie <imunsie@au1.ibm.com>
2939 M:      Michael Neuling <mikey@neuling.org>
2940 L:      linuxppc-dev@lists.ozlabs.org
2941 S:      Supported
2942 F:      drivers/misc/cxl/
2943 F:      include/misc/cxl.h
2944 F:      include/uapi/misc/cxl.h
2945 F:      Documentation/powerpc/cxl.txt
2946 F:      Documentation/powerpc/cxl.txt
2947 F:      Documentation/ABI/testing/sysfs-class-cxl
2948
2949 STMMAC ETHERNET DRIVER
2950 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
2951 L:      netdev@vger.kernel.org
2952 W:      http://www.stlinux.com
2953 S:      Supported
2954 F:      drivers/net/ethernet/stmicro/stmmac/
2955
2956 CYBERPRO FB DRIVER
2957 M:      Russell King <linux@arm.linux.org.uk>
2958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2959 W:      http://www.arm.linux.org.uk/
2960 S:      Maintained
2961 F:      drivers/video/fbdev/cyber2000fb.*
2962
2963 CYCLADES ASYNC MUX DRIVER
2964 W:      http://www.cyclades.com/
2965 S:      Orphan
2966 F:      drivers/tty/cyclades.c
2967 F:      include/linux/cyclades.h
2968 F:      include/uapi/linux/cyclades.h
2969
2970 CYCLADES PC300 DRIVER
2971 W:      http://www.cyclades.com/
2972 S:      Orphan
2973 F:      drivers/net/wan/pc300*
2974
2975 CYPRESS_FIRMWARE MEDIA DRIVER
2976 M:      Antti Palosaari <crope@iki.fi>
2977 L:      linux-media@vger.kernel.org
2978 W:      http://linuxtv.org/
2979 W:      http://palosaari.fi/linux/
2980 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
2981 T:      git git://linuxtv.org/anttip/media_tree.git
2982 S:      Maintained
2983 F:      drivers/media/common/cypress_firmware*
2984
2985 CYTTSP TOUCHSCREEN DRIVER
2986 M:      Ferruh Yigit <fery@cypress.com>
2987 L:      linux-input@vger.kernel.org
2988 S:      Supported
2989 F:      drivers/input/touchscreen/cyttsp*
2990 F:      include/linux/input/cyttsp.h
2991
2992 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
2993 M:      Joshua Kinard <kumba@gentoo.org>
2994 S:      Maintained
2995 F:      drivers/rtc/rtc-ds1685.c
2996 F:      include/linux/rtc/ds1685.h
2997
2998 DAMA SLAVE for AX.25
2999 M:      Joerg Reuter <jreuter@yaina.de>
3000 W:      http://yaina.de/jreuter/
3001 W:      http://www.qsl.net/dl1bke/
3002 L:      linux-hams@vger.kernel.org
3003 S:      Maintained
3004 F:      net/ax25/af_ax25.c
3005 F:      net/ax25/ax25_dev.c
3006 F:      net/ax25/ax25_ds_*
3007 F:      net/ax25/ax25_in.c
3008 F:      net/ax25/ax25_out.c
3009 F:      net/ax25/ax25_timer.c
3010 F:      net/ax25/sysctl_net_ax25.c
3011
3012 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3013 L:      netdev@vger.kernel.org
3014 S:      Orphan
3015 F:      Documentation/networking/dmfe.txt
3016 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3017
3018 DC390/AM53C974 SCSI driver
3019 M:      Hannes Reinecke <hare@suse.de>
3020 L:      linux-scsi@vger.kernel.org
3021 S:      Maintained
3022 F:      drivers/scsi/am53c974.c
3023
3024 DC395x SCSI driver
3025 M:      Oliver Neukum <oliver@neukum.org>
3026 M:      Ali Akcaagac <aliakc@web.de>
3027 M:      Jamie Lenehan <lenehan@twibble.org>
3028 L:      dc395x@twibble.org
3029 W:      http://twibble.org/dist/dc395x/
3030 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3031 S:      Maintained
3032 F:      Documentation/scsi/dc395x.txt
3033 F:      drivers/scsi/dc395x.*
3034
3035 DCCP PROTOCOL
3036 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3037 L:      dccp@vger.kernel.org
3038 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3039 S:      Maintained
3040 F:      include/linux/dccp.h
3041 F:      include/uapi/linux/dccp.h
3042 F:      include/linux/tfrc.h
3043 F:      net/dccp/
3044
3045 DECnet NETWORK LAYER
3046 W:      http://linux-decnet.sourceforge.net
3047 L:      linux-decnet-user@lists.sourceforge.net
3048 S:      Orphan
3049 F:      Documentation/networking/decnet.txt
3050 F:      net/decnet/
3051
3052 DECSTATION PLATFORM SUPPORT
3053 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3054 L:      linux-mips@linux-mips.org
3055 W:      http://www.linux-mips.org/wiki/DECstation
3056 S:      Maintained
3057 F:      arch/mips/dec/
3058 F:      arch/mips/include/asm/dec/
3059 F:      arch/mips/include/asm/mach-dec/
3060
3061 DEFXX FDDI NETWORK DRIVER
3062 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3063 S:      Maintained
3064 F:      drivers/net/fddi/defxx.*
3065
3066 DELL LAPTOP DRIVER
3067 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3068 L:      platform-driver-x86@vger.kernel.org
3069 S:      Maintained
3070 F:      drivers/platform/x86/dell-laptop.c
3071
3072 DELL LAPTOP SMM DRIVER
3073 M:      Guenter Roeck <linux@roeck-us.net>
3074 S:      Maintained
3075 F:      drivers/char/i8k.c
3076 F:      include/uapi/linux/i8k.h
3077
3078 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3079 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3080 S:      Maintained
3081 F:      Documentation/dcdbas.txt
3082 F:      drivers/firmware/dcdbas.*
3083
3084 DELL WMI EXTRAS DRIVER
3085 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3086 S:      Maintained
3087 F:      drivers/platform/x86/dell-wmi.c
3088
3089 DESIGNWARE USB2 DRD IP DRIVER
3090 M:      John Youn <johnyoun@synopsys.com>
3091 L:      linux-usb@vger.kernel.org
3092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3093 S:      Maintained
3094 F:      drivers/usb/dwc2/
3095
3096 DESIGNWARE USB3 DRD IP DRIVER
3097 M:      Felipe Balbi <balbi@ti.com>
3098 L:      linux-usb@vger.kernel.org
3099 L:      linux-omap@vger.kernel.org
3100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3101 S:      Maintained
3102 F:      drivers/usb/dwc3/
3103
3104 DEVICE COREDUMP (DEV_COREDUMP)
3105 M:      Johannes Berg <johannes@sipsolutions.net>
3106 L:      linux-kernel@vger.kernel.org
3107 S:      Maintained
3108 F:      drivers/base/devcoredump.c
3109 F:      include/linux/devcoredump.h
3110
3111 DEVICE FREQUENCY (DEVFREQ)
3112 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3113 M:      Kyungmin Park <kyungmin.park@samsung.com>
3114 L:      linux-pm@vger.kernel.org
3115 S:      Maintained
3116 F:      drivers/devfreq/
3117
3118 DEVICE NUMBER REGISTRY
3119 M:      Torben Mathiasen <device@lanana.org>
3120 W:      http://lanana.org/docs/device-list/index.html
3121 S:      Maintained
3122
3123 DEVICE-MAPPER  (LVM)
3124 M:      Alasdair Kergon <agk@redhat.com>
3125 M:      Mike Snitzer <snitzer@redhat.com>
3126 M:      dm-devel@redhat.com
3127 L:      dm-devel@redhat.com
3128 W:      http://sources.redhat.com/dm
3129 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3131 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3132 S:      Maintained
3133 F:      Documentation/device-mapper/
3134 F:      drivers/md/dm*
3135 F:      drivers/md/persistent-data/
3136 F:      include/linux/device-mapper.h
3137 F:      include/linux/dm-*.h
3138 F:      include/uapi/linux/dm-*.h
3139
3140 DIALOG SEMICONDUCTOR DRIVERS
3141 M:      Support Opensource <support.opensource@diasemi.com>
3142 W:      http://www.dialog-semiconductor.com/products
3143 S:      Supported
3144 F:      Documentation/hwmon/da90??
3145 F:      drivers/gpio/gpio-da90??.c
3146 F:      drivers/hwmon/da90??-hwmon.c
3147 F:      drivers/iio/adc/da91??-*.c
3148 F:      drivers/input/misc/da90??_onkey.c
3149 F:      drivers/input/touchscreen/da9052_tsi.c
3150 F:      drivers/leds/leds-da90??.c
3151 F:      drivers/mfd/da903x.c
3152 F:      drivers/mfd/da90??-*.c
3153 F:      drivers/mfd/da91??-*.c
3154 F:      drivers/power/da9052-battery.c
3155 F:      drivers/power/da91??-*.c
3156 F:      drivers/regulator/da903x.c
3157 F:      drivers/regulator/da9???-regulator.[ch]
3158 F:      drivers/rtc/rtc-da90??.c
3159 F:      drivers/video/backlight/da90??_bl.c
3160 F:      drivers/watchdog/da90??_wdt.c
3161 F:      include/linux/mfd/da903x.h
3162 F:      include/linux/mfd/da9052/
3163 F:      include/linux/mfd/da9055/
3164 F:      include/linux/mfd/da9063/
3165 F:      include/linux/mfd/da9150/
3166 F:      include/sound/da[79]*.h
3167 F:      sound/soc/codecs/da[79]*.[ch]
3168
3169 DIGI NEO AND CLASSIC PCI PRODUCTS
3170 M:      Lidza Louina <lidza.louina@gmail.com>
3171 M:      Mark Hounschell <markh@compro.net>
3172 L:      driverdev-devel@linuxdriverproject.org
3173 S:      Maintained
3174 F:      drivers/staging/dgnc/
3175
3176 DIGI EPCA PCI PRODUCTS
3177 M:      Lidza Louina <lidza.louina@gmail.com>
3178 M:      Mark Hounschell <markh@compro.net>
3179 M:      Daeseok Youn <daeseok.youn@gmail.com>
3180 L:      driverdev-devel@linuxdriverproject.org
3181 S:      Maintained
3182 F:      drivers/staging/dgap/
3183
3184 DIOLAN U2C-12 I2C DRIVER
3185 M:      Guenter Roeck <linux@roeck-us.net>
3186 L:      linux-i2c@vger.kernel.org
3187 S:      Maintained
3188 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3189
3190 DIRECT ACCESS (DAX)
3191 M:      Matthew Wilcox <willy@linux.intel.com>
3192 L:      linux-fsdevel@vger.kernel.org
3193 S:      Supported
3194 F:      fs/dax.c
3195
3196 DIRECTORY NOTIFICATION (DNOTIFY)
3197 M:      Eric Paris <eparis@parisplace.org>
3198 S:      Maintained
3199 F:      Documentation/filesystems/dnotify.txt
3200 F:      fs/notify/dnotify/
3201 F:      include/linux/dnotify.h
3202
3203 DISK GEOMETRY AND PARTITION HANDLING
3204 M:      Andries Brouwer <aeb@cwi.nl>
3205 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3206 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3207 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3208 S:      Maintained
3209
3210 DISKQUOTA
3211 M:      Jan Kara <jack@suse.cz>
3212 S:      Maintained
3213 F:      Documentation/filesystems/quota.txt
3214 F:      fs/quota/
3215 F:      include/linux/quota*.h
3216 F:      include/uapi/linux/quota*.h
3217
3218 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3219 M:      Bernie Thompson <bernie@plugable.com>
3220 L:      linux-fbdev@vger.kernel.org
3221 S:      Maintained
3222 W:      http://plugable.com/category/projects/udlfb/
3223 F:      drivers/video/fbdev/udlfb.c
3224 F:      include/video/udlfb.h
3225 F:      Documentation/fb/udlfb.txt
3226
3227 DISTRIBUTED LOCK MANAGER (DLM)
3228 M:      Christine Caulfield <ccaulfie@redhat.com>
3229 M:      David Teigland <teigland@redhat.com>
3230 L:      cluster-devel@redhat.com
3231 W:      http://sources.redhat.com/cluster/
3232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3233 S:      Supported
3234 F:      fs/dlm/
3235
3236 DMA BUFFER SHARING FRAMEWORK
3237 M:      Sumit Semwal <sumit.semwal@linaro.org>
3238 S:      Maintained
3239 L:      linux-media@vger.kernel.org
3240 L:      dri-devel@lists.freedesktop.org
3241 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3242 F:      drivers/dma-buf/
3243 F:      include/linux/dma-buf*
3244 F:      include/linux/reservation.h
3245 F:      include/linux/*fence.h
3246 F:      Documentation/dma-buf-sharing.txt
3247 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3248
3249 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3250 M:      Vinod Koul <vinod.koul@intel.com>
3251 L:      dmaengine@vger.kernel.org
3252 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3253 S:      Maintained
3254 F:      drivers/dma/
3255 F:      include/linux/dmaengine.h
3256 F:      Documentation/dmaengine/
3257 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3258
3259 DME1737 HARDWARE MONITOR DRIVER
3260 M:      Juerg Haefliger <juergh@gmail.com>
3261 L:      lm-sensors@lm-sensors.org
3262 S:      Maintained
3263 F:      Documentation/hwmon/dme1737
3264 F:      drivers/hwmon/dme1737.c
3265
3266 DMI/SMBIOS SUPPORT
3267 M:      Jean Delvare <jdelvare@suse.de>
3268 S:      Maintained
3269 F:      drivers/firmware/dmi-id.c
3270 F:      drivers/firmware/dmi_scan.c
3271 F:      include/linux/dmi.h
3272
3273 DOCKING STATION DRIVER
3274 M:      Shaohua Li <shaohua.li@intel.com>
3275 L:      linux-acpi@vger.kernel.org
3276 S:      Supported
3277 F:      drivers/acpi/dock.c
3278
3279 DOCUMENTATION
3280 M:      Jonathan Corbet <corbet@lwn.net>
3281 L:      linux-doc@vger.kernel.org
3282 S:      Maintained
3283 F:      Documentation/
3284 X:      Documentation/ABI/
3285 X:      Documentation/devicetree/
3286 X:      Documentation/acpi
3287 X:      Documentation/power
3288 X:      Documentation/spi
3289 T:      git git://git.lwn.net/linux-2.6.git docs-next
3290
3291 DOUBLETALK DRIVER
3292 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3293 L:      blinux-list@redhat.com
3294 S:      Maintained
3295 F:      drivers/char/dtlk.c
3296 F:      include/linux/dtlk.h
3297
3298 DPT_I2O SCSI RAID DRIVER
3299 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3300 L:      linux-scsi@vger.kernel.org
3301 W:      http://www.adaptec.com/
3302 S:      Maintained
3303 F:      drivers/scsi/dpt*
3304 F:      drivers/scsi/dpt/
3305
3306 DRBD DRIVER
3307 P:      Philipp Reisner
3308 P:      Lars Ellenberg
3309 M:      drbd-dev@lists.linbit.com
3310 L:      drbd-user@lists.linbit.com
3311 W:      http://www.drbd.org
3312 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3313 T:      git git://git.drbd.org/drbd-8.3.git
3314 S:      Supported
3315 F:      drivers/block/drbd/
3316 F:      lib/lru_cache.c
3317 F:      Documentation/blockdev/drbd/
3318
3319 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
3320 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3322 S:      Supported
3323 F:      Documentation/kobject.txt
3324 F:      drivers/base/
3325 F:      fs/sysfs/
3326 F:      fs/debugfs/
3327 F:      include/linux/kobj*
3328 F:      include/linux/debugfs.h
3329 F:      lib/kobj*
3330
3331 DRM DRIVERS
3332 M:      David Airlie <airlied@linux.ie>
3333 L:      dri-devel@lists.freedesktop.org
3334 T:      git git://people.freedesktop.org/~airlied/linux
3335 S:      Maintained
3336 F:      drivers/gpu/drm/
3337 F:      drivers/gpu/vga/
3338 F:      include/drm/
3339 F:      include/uapi/drm/
3340
3341 RADEON DRM DRIVERS
3342 M:      Alex Deucher <alexander.deucher@amd.com>
3343 M:      Christian König <christian.koenig@amd.com>
3344 L:      dri-devel@lists.freedesktop.org
3345 T:      git git://people.freedesktop.org/~agd5f/linux
3346 S:      Supported
3347 F:      drivers/gpu/drm/radeon/
3348 F:      include/uapi/drm/radeon*
3349
3350 DRM PANEL DRIVERS
3351 M:      Thierry Reding <thierry.reding@gmail.com>
3352 L:      dri-devel@lists.freedesktop.org
3353 T:      git git://anongit.freedesktop.org/tegra/linux.git
3354 S:      Maintained
3355 F:      drivers/gpu/drm/drm_panel.c
3356 F:      drivers/gpu/drm/panel/
3357 F:      include/drm/drm_panel.h
3358 F:      Documentation/devicetree/bindings/panel/
3359
3360 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3361 M:      Daniel Vetter <daniel.vetter@intel.com>
3362 M:      Jani Nikula <jani.nikula@linux.intel.com>
3363 L:      intel-gfx@lists.freedesktop.org
3364 L:      dri-devel@lists.freedesktop.org
3365 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3366 T:      git git://anongit.freedesktop.org/drm-intel
3367 S:      Supported
3368 F:      drivers/gpu/drm/i915/
3369 F:      include/drm/i915*
3370 F:      include/uapi/drm/i915*
3371
3372 DRM DRIVERS FOR EXYNOS
3373 M:      Inki Dae <inki.dae@samsung.com>
3374 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3375 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3376 M:      Kyungmin Park <kyungmin.park@samsung.com>
3377 L:      dri-devel@lists.freedesktop.org
3378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3379 S:      Supported
3380 F:      drivers/gpu/drm/exynos/
3381 F:      include/drm/exynos*
3382 F:      include/uapi/drm/exynos*
3383
3384 DRM DRIVERS FOR FREESCALE IMX
3385 M:      Philipp Zabel <p.zabel@pengutronix.de>
3386 L:      dri-devel@lists.freedesktop.org
3387 S:      Maintained
3388 F:      drivers/gpu/drm/imx/
3389 F:      Documentation/devicetree/bindings/drm/imx/
3390
3391 DRM DRIVERS FOR NVIDIA TEGRA
3392 M:      Thierry Reding <thierry.reding@gmail.com>
3393 M:      Terje Bergström <tbergstrom@nvidia.com>
3394 L:      dri-devel@lists.freedesktop.org
3395 L:      linux-tegra@vger.kernel.org
3396 T:      git git://anongit.freedesktop.org/tegra/linux.git
3397 S:      Supported
3398 F:      drivers/gpu/drm/tegra/
3399 F:      drivers/gpu/host1x/
3400 F:      include/linux/host1x.h
3401 F:      include/uapi/drm/tegra_drm.h
3402 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3403
3404 DRM DRIVERS FOR RENESAS
3405 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3406 L:      dri-devel@lists.freedesktop.org
3407 L:      linux-sh@vger.kernel.org
3408 T:      git git://people.freedesktop.org/~airlied/linux
3409 S:      Supported
3410 F:      drivers/gpu/drm/rcar-du/
3411 F:      drivers/gpu/drm/shmobile/
3412 F:      include/linux/platform_data/shmob_drm.h
3413
3414 DSBR100 USB FM RADIO DRIVER
3415 M:      Alexey Klimov <klimov.linux@gmail.com>
3416 L:      linux-media@vger.kernel.org
3417 T:      git git://linuxtv.org/media_tree.git
3418 S:      Maintained
3419 F:      drivers/media/radio/dsbr100.c
3420
3421 DSCC4 DRIVER
3422 M:      Francois Romieu <romieu@fr.zoreil.com>
3423 L:      netdev@vger.kernel.org
3424 S:      Maintained
3425 F:      drivers/net/wan/dscc4.c
3426
3427 DVB_USB_AF9015 MEDIA DRIVER
3428 M:      Antti Palosaari <crope@iki.fi>
3429 L:      linux-media@vger.kernel.org
3430 W:      http://linuxtv.org/
3431 W:      http://palosaari.fi/linux/
3432 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3433 T:      git git://linuxtv.org/anttip/media_tree.git
3434 S:      Maintained
3435 F:      drivers/media/usb/dvb-usb-v2/af9015*
3436
3437 DVB_USB_AF9035 MEDIA DRIVER
3438 M:      Antti Palosaari <crope@iki.fi>
3439 L:      linux-media@vger.kernel.org
3440 W:      http://linuxtv.org/
3441 W:      http://palosaari.fi/linux/
3442 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3443 T:      git git://linuxtv.org/anttip/media_tree.git
3444 S:      Maintained
3445 F:      drivers/media/usb/dvb-usb-v2/af9035*
3446
3447 DVB_USB_ANYSEE MEDIA DRIVER
3448 M:      Antti Palosaari <crope@iki.fi>
3449 L:      linux-media@vger.kernel.org
3450 W:      http://linuxtv.org/
3451 W:      http://palosaari.fi/linux/
3452 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3453 T:      git git://linuxtv.org/anttip/media_tree.git
3454 S:      Maintained
3455 F:      drivers/media/usb/dvb-usb-v2/anysee*
3456
3457 DVB_USB_AU6610 MEDIA DRIVER
3458 M:      Antti Palosaari <crope@iki.fi>
3459 L:      linux-media@vger.kernel.org
3460 W:      http://linuxtv.org/
3461 W:      http://palosaari.fi/linux/
3462 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3463 T:      git git://linuxtv.org/anttip/media_tree.git
3464 S:      Maintained
3465 F:      drivers/media/usb/dvb-usb-v2/au6610*
3466
3467 DVB_USB_CE6230 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/ce6230*
3476
3477 DVB_USB_CXUSB MEDIA DRIVER
3478 M:      Michael Krufky <mkrufky@linuxtv.org>
3479 L:      linux-media@vger.kernel.org
3480 W:      http://linuxtv.org/
3481 W:      http://github.com/mkrufky
3482 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3483 T:      git git://linuxtv.org/media_tree.git
3484 S:      Maintained
3485 F:      drivers/media/usb/dvb-usb/cxusb*
3486
3487 DVB_USB_EC168 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/ec168*
3496
3497 DVB_USB_GL861 MEDIA DRIVER
3498 M:      Antti Palosaari <crope@iki.fi>
3499 L:      linux-media@vger.kernel.org
3500 W:      http://linuxtv.org/
3501 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3502 T:      git git://linuxtv.org/anttip/media_tree.git
3503 S:      Maintained
3504 F:      drivers/media/usb/dvb-usb-v2/gl861*
3505
3506 DVB_USB_MXL111SF MEDIA DRIVER
3507 M:      Michael Krufky <mkrufky@linuxtv.org>
3508 L:      linux-media@vger.kernel.org
3509 W:      http://linuxtv.org/
3510 W:      http://github.com/mkrufky
3511 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3512 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3513 S:      Maintained
3514 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3515
3516 DVB_USB_RTL28XXU MEDIA DRIVER
3517 M:      Antti Palosaari <crope@iki.fi>
3518 L:      linux-media@vger.kernel.org
3519 W:      http://linuxtv.org/
3520 W:      http://palosaari.fi/linux/
3521 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3522 T:      git git://linuxtv.org/anttip/media_tree.git
3523 S:      Maintained
3524 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3525
3526 DVB_USB_V2 MEDIA DRIVER
3527 M:      Antti Palosaari <crope@iki.fi>
3528 L:      linux-media@vger.kernel.org
3529 W:      http://linuxtv.org/
3530 W:      http://palosaari.fi/linux/
3531 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3532 T:      git git://linuxtv.org/anttip/media_tree.git
3533 S:      Maintained
3534 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3535 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3536
3537 DYNAMIC DEBUG
3538 M:      Jason Baron <jbaron@akamai.com>
3539 S:      Maintained
3540 F:      lib/dynamic_debug.c
3541 F:      include/linux/dynamic_debug.h
3542
3543 DZ DECSTATION DZ11 SERIAL DRIVER
3544 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3545 S:      Maintained
3546 F:      drivers/tty/serial/dz.*
3547
3548 E3X0 POWER BUTTON DRIVER
3549 M:      Moritz Fischer <moritz.fischer@ettus.com>
3550 L:      usrp-users@lists.ettus.com
3551 W:      http://www.ettus.com
3552 S:      Supported
3553 F:      drivers/input/misc/e3x0-button.c
3554 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3555
3556 E4000 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/tuners/e4000*
3565
3566 EATA ISA/EISA/PCI SCSI DRIVER
3567 M:      Dario Ballabio <ballabio_dario@emc.com>
3568 L:      linux-scsi@vger.kernel.org
3569 S:      Maintained
3570 F:      drivers/scsi/eata.c
3571
3572 EC100 MEDIA DRIVER
3573 M:      Antti Palosaari <crope@iki.fi>
3574 L:      linux-media@vger.kernel.org
3575 W:      http://linuxtv.org/
3576 W:      http://palosaari.fi/linux/
3577 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3578 T:      git git://linuxtv.org/anttip/media_tree.git
3579 S:      Maintained
3580 F:      drivers/media/dvb-frontends/ec100*
3581
3582 ECRYPT FILE SYSTEM
3583 M:      Tyler Hicks <tyhicks@canonical.com>
3584 L:      ecryptfs@vger.kernel.org
3585 W:      http://ecryptfs.org
3586 W:      https://launchpad.net/ecryptfs
3587 S:      Supported
3588 F:      Documentation/filesystems/ecryptfs.txt
3589 F:      fs/ecryptfs/
3590
3591 EDAC-CORE
3592 M:      Doug Thompson <dougthompson@xmission.com>
3593 M:      Borislav Petkov <bp@alien8.de>
3594 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3595 L:      linux-edac@vger.kernel.org
3596 W:      bluesmoke.sourceforge.net
3597 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3598 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3599 S:      Supported
3600 F:      Documentation/edac.txt
3601 F:      drivers/edac/
3602 F:      include/linux/edac.h
3603
3604 EDAC-AMD64
3605 M:      Doug Thompson <dougthompson@xmission.com>
3606 M:      Borislav Petkov <bp@alien8.de>
3607 L:      linux-edac@vger.kernel.org
3608 W:      bluesmoke.sourceforge.net
3609 S:      Maintained
3610 F:      drivers/edac/amd64_edac*
3611
3612 EDAC-CALXEDA
3613 M:      Doug Thompson <dougthompson@xmission.com>
3614 M:      Robert Richter <rric@kernel.org>
3615 L:      linux-edac@vger.kernel.org
3616 W:      bluesmoke.sourceforge.net
3617 S:      Maintained
3618 F:      drivers/edac/highbank*
3619
3620 EDAC-CAVIUM
3621 M:      Ralf Baechle <ralf@linux-mips.org>
3622 M:      David Daney <david.daney@cavium.com>
3623 L:      linux-edac@vger.kernel.org
3624 L:      linux-mips@linux-mips.org
3625 W:      bluesmoke.sourceforge.net
3626 S:      Supported
3627 F:      drivers/edac/octeon_edac*
3628
3629 EDAC-E752X
3630 M:      Mark Gross <mark.gross@intel.com>
3631 M:      Doug Thompson <dougthompson@xmission.com>
3632 L:      linux-edac@vger.kernel.org
3633 W:      bluesmoke.sourceforge.net
3634 S:      Maintained
3635 F:      drivers/edac/e752x_edac.c
3636
3637 EDAC-E7XXX
3638 M:      Doug Thompson <dougthompson@xmission.com>
3639 L:      linux-edac@vger.kernel.org
3640 W:      bluesmoke.sourceforge.net
3641 S:      Maintained
3642 F:      drivers/edac/e7xxx_edac.c
3643
3644 EDAC-GHES
3645 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3646 L:      linux-edac@vger.kernel.org
3647 W:      bluesmoke.sourceforge.net
3648 S:      Maintained
3649 F:      drivers/edac/ghes_edac.c
3650
3651 EDAC-I82443BXGX
3652 M:      Tim Small <tim@buttersideup.com>
3653 L:      linux-edac@vger.kernel.org
3654 W:      bluesmoke.sourceforge.net
3655 S:      Maintained
3656 F:      drivers/edac/i82443bxgx_edac.c
3657
3658 EDAC-I3000
3659 M:      Jason Uhlenkott <juhlenko@akamai.com>
3660 L:      linux-edac@vger.kernel.org
3661 W:      bluesmoke.sourceforge.net
3662 S:      Maintained
3663 F:      drivers/edac/i3000_edac.c
3664
3665 EDAC-I5000
3666 M:      Doug Thompson <dougthompson@xmission.com>
3667 L:      linux-edac@vger.kernel.org
3668 W:      bluesmoke.sourceforge.net
3669 S:      Maintained
3670 F:      drivers/edac/i5000_edac.c
3671
3672 EDAC-I5400
3673 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3674 L:      linux-edac@vger.kernel.org
3675 W:      bluesmoke.sourceforge.net
3676 S:      Maintained
3677 F:      drivers/edac/i5400_edac.c
3678
3679 EDAC-I7300
3680 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3681 L:      linux-edac@vger.kernel.org
3682 W:      bluesmoke.sourceforge.net
3683 S:      Maintained
3684 F:      drivers/edac/i7300_edac.c
3685
3686 EDAC-I7CORE
3687 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3688 L:      linux-edac@vger.kernel.org
3689 W:      bluesmoke.sourceforge.net
3690 S:      Maintained
3691 F:      drivers/edac/i7core_edac.c
3692
3693 EDAC-I82975X
3694 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3695 M:      "Arvind R." <arvino55@gmail.com>
3696 L:      linux-edac@vger.kernel.org
3697 W:      bluesmoke.sourceforge.net
3698 S:      Maintained
3699 F:      drivers/edac/i82975x_edac.c
3700
3701 EDAC-IE31200
3702 M:      Jason Baron <jbaron@akamai.com>
3703 L:      linux-edac@vger.kernel.org
3704 W:      bluesmoke.sourceforge.net
3705 S:      Maintained
3706 F:      drivers/edac/ie31200_edac.c
3707
3708 EDAC-MPC85XX
3709 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
3710 L:      linux-edac@vger.kernel.org
3711 W:      bluesmoke.sourceforge.net
3712 S:      Maintained
3713 F:      drivers/edac/mpc85xx_edac.[ch]
3714
3715 EDAC-PASEMI
3716 M:      Egor Martovetsky <egor@pasemi.com>
3717 L:      linux-edac@vger.kernel.org
3718 W:      bluesmoke.sourceforge.net
3719 S:      Maintained
3720 F:      drivers/edac/pasemi_edac.c
3721
3722 EDAC-R82600
3723 M:      Tim Small <tim@buttersideup.com>
3724 L:      linux-edac@vger.kernel.org
3725 W:      bluesmoke.sourceforge.net
3726 S:      Maintained
3727 F:      drivers/edac/r82600_edac.c
3728
3729 EDAC-SBRIDGE
3730 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3731 L:      linux-edac@vger.kernel.org
3732 W:      bluesmoke.sourceforge.net
3733 S:      Maintained
3734 F:      drivers/edac/sb_edac.c
3735
3736 EDIROL UA-101/UA-1000 DRIVER
3737 M:      Clemens Ladisch <clemens@ladisch.de>
3738 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3739 T:      git git://git.alsa-project.org/alsa-kernel.git
3740 S:      Maintained
3741 F:      sound/usb/misc/ua101.c
3742
3743 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3744 M:      Matt Fleming <matt.fleming@intel.com>
3745 L:      linux-efi@vger.kernel.org
3746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3747 S:      Maintained
3748 F:      Documentation/efi-stub.txt
3749 F:      arch/ia64/kernel/efi.c
3750 F:      arch/x86/boot/compressed/eboot.[ch]
3751 F:      arch/x86/include/asm/efi.h
3752 F:      arch/x86/platform/efi/*
3753 F:      drivers/firmware/efi/*
3754 F:      include/linux/efi*.h
3755
3756 EFI VARIABLE FILESYSTEM
3757 M:      Matthew Garrett <matthew.garrett@nebula.com>
3758 M:      Jeremy Kerr <jk@ozlabs.org>
3759 M:      Matt Fleming <matt.fleming@intel.com>
3760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3761 L:      linux-efi@vger.kernel.org
3762 S:      Maintained
3763 F:      fs/efivarfs/
3764
3765 EFIFB FRAMEBUFFER DRIVER
3766 L:      linux-fbdev@vger.kernel.org
3767 M:      Peter Jones <pjones@redhat.com>
3768 S:      Maintained
3769 F:      drivers/video/fbdev/efifb.c
3770
3771 EFS FILESYSTEM
3772 W:      http://aeschi.ch.eu.org/efs/
3773 S:      Orphan
3774 F:      fs/efs/
3775
3776 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3777 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3778 M:      Christoph Raisch <raisch@de.ibm.com>
3779 L:      linux-rdma@vger.kernel.org
3780 S:      Supported
3781 F:      drivers/infiniband/hw/ehca/
3782
3783 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3784 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3785 L:      netdev@vger.kernel.org
3786 S:      Maintained
3787 F:      drivers/net/ethernet/ibm/ehea/
3788
3789 EM28XX VIDEO4LINUX DRIVER
3790 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3791 L:      linux-media@vger.kernel.org
3792 W:      http://linuxtv.org
3793 T:      git git://linuxtv.org/media_tree.git
3794 S:      Maintained
3795 F:      drivers/media/usb/em28xx/
3796
3797 EMBEDDED LINUX
3798 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
3799 M:      Matt Mackall <mpm@selenic.com>
3800 M:      David Woodhouse <dwmw2@infradead.org>
3801 L:      linux-embedded@vger.kernel.org
3802 S:      Maintained
3803
3804 EMULEX LPFC FC SCSI DRIVER
3805 M:      James Smart <james.smart@emulex.com>
3806 L:      linux-scsi@vger.kernel.org
3807 W:      http://sourceforge.net/projects/lpfcxxxx
3808 S:      Supported
3809 F:      drivers/scsi/lpfc/
3810
3811 ENE CB710 FLASH CARD READER DRIVER
3812 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
3813 S:      Maintained
3814 F:      drivers/misc/cb710/
3815 F:      drivers/mmc/host/cb710-mmc.*
3816 F:      include/linux/cb710.h
3817
3818 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3819 M:      Maxim Levitsky <maximlevitsky@gmail.com>
3820 S:      Maintained
3821 F:      drivers/media/rc/ene_ir.*
3822
3823 ENHANCED ERROR HANDLING (EEH)
3824 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
3825 L:      linuxppc-dev@lists.ozlabs.org
3826 S:      Supported
3827 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
3828 F:      arch/powerpc/kernel/eeh*.c
3829
3830 EPSON S1D13XXX FRAMEBUFFER DRIVER
3831 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
3832 S:      Maintained
3833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
3834 F:      drivers/video/fbdev/s1d13xxxfb.c
3835 F:      include/video/s1d13xxxfb.h
3836
3837 ET131X NETWORK DRIVER
3838 M:      Mark Einon <mark.einon@gmail.com>
3839 S:      Odd Fixes
3840 F:      drivers/net/ethernet/agere/
3841
3842 ETHERNET BRIDGE
3843 M:      Stephen Hemminger <stephen@networkplumber.org>
3844 L:      bridge@lists.linux-foundation.org
3845 L:      netdev@vger.kernel.org
3846 W:      http://www.linuxfoundation.org/en/Net:Bridge
3847 S:      Maintained
3848 F:      include/linux/netfilter_bridge/
3849 F:      net/bridge/
3850
3851 ETHERNET PHY LIBRARY
3852 M:      Florian Fainelli <f.fainelli@gmail.com>
3853 L:      netdev@vger.kernel.org
3854 S:      Maintained
3855 F:      include/linux/phy.h
3856 F:      include/linux/phy_fixed.h
3857 F:      drivers/net/phy/
3858 F:      Documentation/networking/phy.txt
3859 F:      drivers/of/of_mdio.c
3860 F:      drivers/of/of_net.c
3861
3862 EXT2 FILE SYSTEM
3863 M:      Jan Kara <jack@suse.cz>
3864 L:      linux-ext4@vger.kernel.org
3865 S:      Maintained
3866 F:      Documentation/filesystems/ext2.txt
3867 F:      fs/ext2/
3868 F:      include/linux/ext2*
3869
3870 EXT3 FILE SYSTEM
3871 M:      Jan Kara <jack@suse.cz>
3872 M:      Andrew Morton <akpm@linux-foundation.org>
3873 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3874 L:      linux-ext4@vger.kernel.org
3875 S:      Maintained
3876 F:      Documentation/filesystems/ext3.txt
3877 F:      fs/ext3/
3878
3879 EXT4 FILE SYSTEM
3880 M:      "Theodore Ts'o" <tytso@mit.edu>
3881 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3882 L:      linux-ext4@vger.kernel.org
3883 W:      http://ext4.wiki.kernel.org
3884 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
3885 S:      Maintained
3886 F:      Documentation/filesystems/ext4.txt
3887 F:      fs/ext4/
3888
3889 Extended Verification Module (EVM)
3890 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
3891 L:      linux-ima-devel@lists.sourceforge.net
3892 L:      linux-security-module@vger.kernel.org
3893 S:      Supported
3894 F:      security/integrity/evm/
3895
3896 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3897 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3898 M:      Chanwoo Choi <cw00.choi@samsung.com>
3899 L:      linux-kernel@vger.kernel.org
3900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
3901 S:      Maintained
3902 F:      drivers/extcon/
3903 F:      Documentation/extcon/
3904
3905 EXYNOS DP DRIVER
3906 M:      Jingoo Han <jg1.han@samsung.com>
3907 L:      dri-devel@lists.freedesktop.org
3908 S:      Maintained
3909 F:      drivers/gpu/drm/exynos/exynos_dp*
3910
3911 EXYNOS MIPI DISPLAY DRIVERS
3912 M:      Inki Dae <inki.dae@samsung.com>
3913 M:      Donghwa Lee <dh09.lee@samsung.com>
3914 M:      Kyungmin Park <kyungmin.park@samsung.com>
3915 L:      linux-fbdev@vger.kernel.org
3916 S:      Maintained
3917 F:      drivers/video/fbdev/exynos/exynos_mipi*
3918 F:      include/video/exynos_mipi*
3919
3920 F71805F HARDWARE MONITORING DRIVER
3921 M:      Jean Delvare <jdelvare@suse.de>
3922 L:      lm-sensors@lm-sensors.org
3923 S:      Maintained
3924 F:      Documentation/hwmon/f71805f
3925 F:      drivers/hwmon/f71805f.c
3926
3927 FC0011 TUNER DRIVER
3928 M:      Michael Buesch <m@bues.ch>
3929 L:      linux-media@vger.kernel.org
3930 S:      Maintained
3931 F:      drivers/media/tuners/fc0011.h
3932 F:      drivers/media/tuners/fc0011.c
3933
3934 FC2580 MEDIA DRIVER
3935 M:      Antti Palosaari <crope@iki.fi>
3936 L:      linux-media@vger.kernel.org
3937 W:      http://linuxtv.org/
3938 W:      http://palosaari.fi/linux/
3939 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3940 T:      git git://linuxtv.org/anttip/media_tree.git
3941 S:      Maintained
3942 F:      drivers/media/tuners/fc2580*
3943
3944 FANOTIFY
3945 M:      Eric Paris <eparis@redhat.com>
3946 S:      Maintained
3947 F:      fs/notify/fanotify/
3948 F:      include/linux/fanotify.h
3949 F:      include/uapi/linux/fanotify.h
3950
3951 FARSYNC SYNCHRONOUS DRIVER
3952 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
3953 W:      http://www.farsite.co.uk/
3954 S:      Supported
3955 F:      drivers/net/wan/farsync.*
3956
3957 FAULT INJECTION SUPPORT
3958 M:      Akinobu Mita <akinobu.mita@gmail.com>
3959 S:      Supported
3960 F:      Documentation/fault-injection/
3961 F:      lib/fault-inject.c
3962
3963 FBTFT Framebuffer drivers
3964 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3965 M:      Noralf Trønnes <noralf@tronnes.org>
3966 S:      Maintained
3967 F:      drivers/staging/fbtft/
3968
3969 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3970 M:      Vasu Dev <vasu.dev@intel.com>
3971 L:      fcoe-devel@open-fcoe.org
3972 W:      www.Open-FCoE.org
3973 S:      Supported
3974 F:      drivers/scsi/libfc/
3975 F:      drivers/scsi/fcoe/
3976 F:      include/scsi/fc/
3977 F:      include/scsi/libfc.h
3978 F:      include/scsi/libfcoe.h
3979 F:      include/uapi/scsi/fc/
3980
3981 FILE LOCKING (flock() and fcntl()/lockf())
3982 M:      Jeff Layton <jlayton@poochiereds.net>
3983 M:      J. Bruce Fields <bfields@fieldses.org>
3984 L:      linux-fsdevel@vger.kernel.org
3985 S:      Maintained
3986 F:      include/linux/fcntl.h
3987 F:      include/linux/fs.h
3988 F:      include/uapi/linux/fcntl.h
3989 F:      include/uapi/linux/fs.h
3990 F:      fs/fcntl.c
3991 F:      fs/locks.c
3992
3993 FILESYSTEMS (VFS and infrastructure)
3994 M:      Alexander Viro <viro@zeniv.linux.org.uk>
3995 L:      linux-fsdevel@vger.kernel.org
3996 S:      Maintained
3997 F:      fs/*
3998
3999 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4000 M:      Riku Voipio <riku.voipio@iki.fi>
4001 L:      lm-sensors@lm-sensors.org
4002 S:      Maintained
4003 F:      drivers/hwmon/f75375s.c
4004 F:      include/linux/f75375s.h
4005
4006 FIREWIRE AUDIO DRIVERS
4007 M:      Clemens Ladisch <clemens@ladisch.de>
4008 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4009 T:      git git://git.alsa-project.org/alsa-kernel.git
4010 S:      Maintained
4011 F:      sound/firewire/
4012
4013 FIREWIRE MEDIA DRIVERS (firedtv)
4014 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4015 L:      linux-media@vger.kernel.org
4016 L:      linux1394-devel@lists.sourceforge.net
4017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4018 S:      Maintained
4019 F:      drivers/media/firewire/
4020
4021 FIREWIRE SBP-2 TARGET
4022 M:      Chris Boot <bootc@bootc.net>
4023 L:      linux-scsi@vger.kernel.org
4024 L:      target-devel@vger.kernel.org
4025 L:      linux1394-devel@lists.sourceforge.net
4026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4027 S:      Maintained
4028 F:      drivers/target/sbp/
4029
4030 FIREWIRE SUBSYSTEM
4031 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4032 L:      linux1394-devel@lists.sourceforge.net
4033 W:      http://ieee1394.wiki.kernel.org/
4034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4035 S:      Maintained
4036 F:      drivers/firewire/
4037 F:      include/linux/firewire.h
4038 F:      include/uapi/linux/firewire*.h
4039 F:      tools/firewire/
4040
4041 FIRMWARE LOADER (request_firmware)
4042 M:      Ming Lei <ming.lei@canonical.com>
4043 L:      linux-kernel@vger.kernel.org
4044 S:      Maintained
4045 F:      Documentation/firmware_class/
4046 F:      drivers/base/firmware*.c
4047 F:      include/linux/firmware.h
4048
4049 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4050 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4051 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4052 S:      Maintained
4053 F:      drivers/block/rsxx/
4054
4055 FLOPPY DRIVER
4056 M:      Jiri Kosina <jkosina@suse.cz>
4057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4058 S:      Odd fixes
4059 F:      drivers/block/floppy.c
4060
4061 FMC SUBSYSTEM
4062 M:      Alessandro Rubini <rubini@gnudd.com>
4063 W:      http://www.ohwr.org/projects/fmc-bus
4064 S:      Supported
4065 F:      drivers/fmc/
4066 F:      include/linux/fmc*.h
4067 F:      include/linux/ipmi-fru.h
4068 K:      fmc_d.*register
4069
4070 FPU EMULATOR
4071 M:      Bill Metzenthen <billm@melbpc.org.au>
4072 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4073 S:      Maintained
4074 F:      arch/x86/math-emu/
4075
4076 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4077 L:      netdev@vger.kernel.org
4078 S:      Orphan
4079 F:      drivers/net/wan/dlci.c
4080 F:      drivers/net/wan/sdla.c
4081
4082 FRAMEBUFFER LAYER
4083 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4084 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4085 L:      linux-fbdev@vger.kernel.org
4086 W:      http://linux-fbdev.sourceforge.net/
4087 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4089 S:      Maintained
4090 F:      Documentation/fb/
4091 F:      Documentation/devicetree/bindings/fb/
4092 F:      drivers/video/
4093 F:      include/video/
4094 F:      include/linux/fb.h
4095 F:      include/uapi/video/
4096 F:      include/uapi/linux/fb.h
4097
4098 FREESCALE DIU FRAMEBUFFER DRIVER
4099 M:      Timur Tabi <timur@tabi.org>
4100 L:      linux-fbdev@vger.kernel.org
4101 S:      Maintained
4102 F:      drivers/video/fbdev/fsl-diu-fb.*
4103
4104 FREESCALE DMA DRIVER
4105 M:      Li Yang <leoli@freescale.com>
4106 M:      Zhang Wei <zw@zh-kernel.org>
4107 L:      linuxppc-dev@lists.ozlabs.org
4108 S:      Maintained
4109 F:      drivers/dma/fsldma.*
4110
4111 FREESCALE I2C CPM DRIVER
4112 M:      Jochen Friedrich <jochen@scram.de>
4113 L:      linuxppc-dev@lists.ozlabs.org
4114 L:      linux-i2c@vger.kernel.org
4115 S:      Maintained
4116 F:      drivers/i2c/busses/i2c-cpm.c
4117
4118 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4119 M:      Sascha Hauer <kernel@pengutronix.de>
4120 L:      linux-fbdev@vger.kernel.org
4121 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4122 S:      Maintained
4123 F:      include/linux/platform_data/video-imxfb.h
4124 F:      drivers/video/fbdev/imxfb.c
4125
4126 FREESCALE QUAD SPI DRIVER
4127 M:      Han Xu <han.xu@freescale.com>
4128 L:      linux-mtd@lists.infradead.org
4129 S:      Maintained
4130 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4131
4132 FREESCALE SOC FS_ENET DRIVER
4133 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4134 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4135 L:      linuxppc-dev@lists.ozlabs.org
4136 L:      netdev@vger.kernel.org
4137 S:      Maintained
4138 F:      drivers/net/ethernet/freescale/fs_enet/
4139 F:      include/linux/fs_enet_pd.h
4140
4141 FREESCALE QUICC ENGINE LIBRARY
4142 L:      linuxppc-dev@lists.ozlabs.org
4143 S:      Orphan
4144 F:      arch/powerpc/sysdev/qe_lib/
4145 F:      arch/powerpc/include/asm/*qe.h
4146
4147 FREESCALE USB PERIPHERAL DRIVERS
4148 M:      Li Yang <leoli@freescale.com>
4149 L:      linux-usb@vger.kernel.org
4150 L:      linuxppc-dev@lists.ozlabs.org
4151 S:      Maintained
4152 F:      drivers/usb/gadget/udc/fsl*
4153
4154 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4155 M:      Li Yang <leoli@freescale.com>
4156 L:      netdev@vger.kernel.org
4157 L:      linuxppc-dev@lists.ozlabs.org
4158 S:      Maintained
4159 F:      drivers/net/ethernet/freescale/ucc_geth*
4160
4161 FREESCALE QUICC ENGINE UCC UART DRIVER
4162 M:      Timur Tabi <timur@tabi.org>
4163 L:      linuxppc-dev@lists.ozlabs.org
4164 S:      Maintained
4165 F:      drivers/tty/serial/ucc_uart.c
4166
4167 FREESCALE SOC SOUND DRIVERS
4168 M:      Timur Tabi <timur@tabi.org>
4169 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4170 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4171 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4172 L:      linuxppc-dev@lists.ozlabs.org
4173 S:      Maintained
4174 F:      sound/soc/fsl/fsl*
4175 F:      sound/soc/fsl/imx*
4176 F:      sound/soc/fsl/mpc8610_hpcd.c
4177
4178 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4179 M:      J. German Rivera <German.Rivera@freescale.com>
4180 L:      linux-kernel@vger.kernel.org
4181 S:      Maintained
4182 F:      drivers/staging/fsl-mc/
4183
4184 FREEVXFS FILESYSTEM
4185 M:      Christoph Hellwig <hch@infradead.org>
4186 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4187 S:      Maintained
4188 F:      fs/freevxfs/
4189
4190 FREEZER
4191 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4192 M:      Pavel Machek <pavel@ucw.cz>
4193 L:      linux-pm@vger.kernel.org
4194 S:      Supported
4195 F:      Documentation/power/freezing-of-tasks.txt
4196 F:      include/linux/freezer.h
4197 F:      kernel/freezer.c
4198
4199 FRONTSWAP API
4200 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4201 L:      linux-kernel@vger.kernel.org
4202 S:      Maintained
4203 F:      mm/frontswap.c
4204 F:      include/linux/frontswap.h
4205
4206 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4207 M:      David Howells <dhowells@redhat.com>
4208 L:      linux-cachefs@redhat.com
4209 S:      Supported
4210 F:      Documentation/filesystems/caching/
4211 F:      fs/fscache/
4212 F:      include/linux/fscache*.h
4213
4214 F2FS FILE SYSTEM
4215 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4216 M:      Changman Lee <cm224.lee@samsung.com>
4217 L:      linux-f2fs-devel@lists.sourceforge.net
4218 W:      http://en.wikipedia.org/wiki/F2FS
4219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4220 S:      Maintained
4221 F:      Documentation/filesystems/f2fs.txt
4222 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4223 F:      fs/f2fs/
4224 F:      include/linux/f2fs_fs.h
4225
4226 FUJITSU FR-V (FRV) PORT
4227 M:      David Howells <dhowells@redhat.com>
4228 S:      Maintained
4229 F:      arch/frv/
4230
4231 FUJITSU LAPTOP EXTRAS
4232 M:      Jonathan Woithe <jwoithe@just42.net>
4233 L:      platform-driver-x86@vger.kernel.org
4234 S:      Maintained
4235 F:      drivers/platform/x86/fujitsu-laptop.c
4236
4237 FUJITSU M-5MO LS CAMERA ISP DRIVER
4238 M:      Kyungmin Park <kyungmin.park@samsung.com>
4239 M:      Heungjun Kim <riverful.kim@samsung.com>
4240 L:      linux-media@vger.kernel.org
4241 S:      Maintained
4242 F:      drivers/media/i2c/m5mols/
4243 F:      include/media/m5mols.h
4244
4245 FUJITSU TABLET EXTRAS
4246 M:      Robert Gerlach <khnz@gmx.de>
4247 L:      platform-driver-x86@vger.kernel.org
4248 S:      Maintained
4249 F:      drivers/platform/x86/fujitsu-tablet.c
4250
4251 FUSE: FILESYSTEM IN USERSPACE
4252 M:      Miklos Szeredi <miklos@szeredi.hu>
4253 L:      fuse-devel@lists.sourceforge.net
4254 W:      http://fuse.sourceforge.net/
4255 S:      Maintained
4256 F:      fs/fuse/
4257 F:      include/uapi/linux/fuse.h
4258
4259 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4260 M:      Rik Faith <faith@cs.unc.edu>
4261 L:      linux-scsi@vger.kernel.org
4262 S:      Odd Fixes (e.g., new signatures)
4263 F:      drivers/scsi/fdomain.*
4264
4265 GCOV BASED KERNEL PROFILING
4266 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4267 S:      Maintained
4268 F:      kernel/gcov/
4269 F:      Documentation/gcov.txt
4270
4271 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4272 M:      Achim Leubner <achim_leubner@adaptec.com>
4273 L:      linux-scsi@vger.kernel.org
4274 W:      http://www.icp-vortex.com/
4275 S:      Supported
4276 F:      drivers/scsi/gdt*
4277
4278 GDB KERNEL DEBUGGING HELPER SCRIPTS
4279 M:      Jan Kiszka <jan.kiszka@siemens.com>
4280 S:      Supported
4281 F:      scripts/gdb/
4282
4283 GEMTEK FM RADIO RECEIVER DRIVER
4284 M:      Hans Verkuil <hverkuil@xs4all.nl>
4285 L:      linux-media@vger.kernel.org
4286 T:      git git://linuxtv.org/media_tree.git
4287 W:      http://linuxtv.org
4288 S:      Maintained
4289 F:      drivers/media/radio/radio-gemtek*
4290
4291 GENERIC GPIO I2C DRIVER
4292 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4293 S:      Supported
4294 F:      drivers/i2c/busses/i2c-gpio.c
4295 F:      include/linux/i2c-gpio.h
4296
4297 GENERIC GPIO I2C MULTIPLEXER DRIVER
4298 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4299 L:      linux-i2c@vger.kernel.org
4300 S:      Supported
4301 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4302 F:      include/linux/i2c-mux-gpio.h
4303 F:      Documentation/i2c/muxes/i2c-mux-gpio
4304
4305 GENERIC HDLC (WAN) DRIVERS
4306 M:      Krzysztof Halasa <khc@pm.waw.pl>
4307 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4308 S:      Maintained
4309 F:      drivers/net/wan/c101.c
4310 F:      drivers/net/wan/hd6457*
4311 F:      drivers/net/wan/hdlc*
4312 F:      drivers/net/wan/n2.c
4313 F:      drivers/net/wan/pc300too.c
4314 F:      drivers/net/wan/pci200syn.c
4315 F:      drivers/net/wan/wanxl*
4316
4317 GENERIC INCLUDE/ASM HEADER FILES
4318 M:      Arnd Bergmann <arnd@arndb.de>
4319 L:      linux-arch@vger.kernel.org
4320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4321 S:      Maintained
4322 F:      include/asm-generic/
4323 F:      include/uapi/asm-generic/
4324
4325 GENERIC PHY FRAMEWORK
4326 M:      Kishon Vijay Abraham I <kishon@ti.com>
4327 L:      linux-kernel@vger.kernel.org
4328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4329 S:      Supported
4330 F:      drivers/phy/
4331 F:      include/linux/phy/
4332
4333 GENERIC PM DOMAINS
4334 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4335 M:      Kevin Hilman <khilman@kernel.org>
4336 M:      Ulf Hansson <ulf.hansson@linaro.org>
4337 L:      linux-pm@vger.kernel.org
4338 S:      Supported
4339 F:      drivers/base/power/domain*.c
4340 F:      include/linux/pm_domain.h
4341
4342 GENERIC UIO DRIVER FOR PCI DEVICES
4343 M:      "Michael S. Tsirkin" <mst@redhat.com>
4344 L:      kvm@vger.kernel.org
4345 S:      Supported
4346 F:      drivers/uio/uio_pci_generic.c
4347
4348 GET_MAINTAINER SCRIPT
4349 M:      Joe Perches <joe@perches.com>
4350 S:      Maintained
4351 F:      scripts/get_maintainer.pl
4352
4353 GFS2 FILE SYSTEM
4354 M:      Steven Whitehouse <swhiteho@redhat.com>
4355 M:      Bob Peterson <rpeterso@redhat.com>
4356 L:      cluster-devel@redhat.com
4357 W:      http://sources.redhat.com/cluster/
4358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4359 S:      Supported
4360 F:      Documentation/filesystems/gfs2*.txt
4361 F:      fs/gfs2/
4362 F:      include/uapi/linux/gfs2_ondisk.h
4363
4364 GIGASET ISDN DRIVERS
4365 M:      Hansjoerg Lipp <hjlipp@web.de>
4366 M:      Tilman Schmidt <tilman@imap.cc>
4367 L:      gigaset307x-common@lists.sourceforge.net
4368 W:      http://gigaset307x.sourceforge.net/
4369 S:      Maintained
4370 F:      Documentation/isdn/README.gigaset
4371 F:      drivers/isdn/gigaset/
4372 F:      include/uapi/linux/gigaset_dev.h
4373
4374 GO7007 MPEG CODEC
4375 M:      Hans Verkuil <hans.verkuil@cisco.com>
4376 L:      linux-media@vger.kernel.org
4377 S:      Maintained
4378 F:      drivers/media/usb/go7007/
4379
4380 GOODIX TOUCHSCREEN
4381 M:      Bastien Nocera <hadess@hadess.net>
4382 L:      linux-input@vger.kernel.org
4383 S:      Maintained
4384 F:      drivers/input/touchscreen/goodix.c
4385
4386 GPIO SUBSYSTEM
4387 M:      Linus Walleij <linus.walleij@linaro.org>
4388 M:      Alexandre Courbot <gnurou@gmail.com>
4389 L:      linux-gpio@vger.kernel.org
4390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4391 S:      Maintained
4392 F:      Documentation/gpio/
4393 F:      drivers/gpio/
4394 F:      include/linux/gpio/
4395 F:      include/linux/gpio.h
4396 F:      include/asm-generic/gpio.h
4397
4398 GRE DEMULTIPLEXER DRIVER
4399 M:      Dmitry Kozlov <xeb@mail.ru>
4400 L:      netdev@vger.kernel.org
4401 S:      Maintained
4402 F:      net/ipv4/gre_demux.c
4403 F:      net/ipv4/gre_offload.c
4404 F:      include/net/gre.h
4405
4406 GRETH 10/100/1G Ethernet MAC device driver
4407 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4408 L:      netdev@vger.kernel.org
4409 S:      Maintained
4410 F:      drivers/net/ethernet/aeroflex/
4411
4412 GSPCA FINEPIX SUBDRIVER
4413 M:      Frank Zago <frank@zago.net>
4414 L:      linux-media@vger.kernel.org
4415 T:      git git://linuxtv.org/media_tree.git
4416 S:      Maintained
4417 F:      drivers/media/usb/gspca/finepix.c
4418
4419 GSPCA GL860 SUBDRIVER
4420 M:      Olivier Lorin <o.lorin@laposte.net>
4421 L:      linux-media@vger.kernel.org
4422 T:      git git://linuxtv.org/media_tree.git
4423 S:      Maintained
4424 F:      drivers/media/usb/gspca/gl860/
4425
4426 GSPCA M5602 SUBDRIVER
4427 M:      Erik Andren <erik.andren@gmail.com>
4428 L:      linux-media@vger.kernel.org
4429 T:      git git://linuxtv.org/media_tree.git
4430 S:      Maintained
4431 F:      drivers/media/usb/gspca/m5602/
4432
4433 GSPCA PAC207 SONIXB SUBDRIVER
4434 M:      Hans de Goede <hdegoede@redhat.com>
4435 L:      linux-media@vger.kernel.org
4436 T:      git git://linuxtv.org/media_tree.git
4437 S:      Maintained
4438 F:      drivers/media/usb/gspca/pac207.c
4439
4440 GSPCA SN9C20X SUBDRIVER
4441 M:      Brian Johnson <brijohn@gmail.com>
4442 L:      linux-media@vger.kernel.org
4443 T:      git git://linuxtv.org/media_tree.git
4444 S:      Maintained
4445 F:      drivers/media/usb/gspca/sn9c20x.c
4446
4447 GSPCA T613 SUBDRIVER
4448 M:      Leandro Costantino <lcostantino@gmail.com>
4449 L:      linux-media@vger.kernel.org
4450 T:      git git://linuxtv.org/media_tree.git
4451 S:      Maintained
4452 F:      drivers/media/usb/gspca/t613.c
4453
4454 GSPCA USB WEBCAM DRIVER
4455 M:      Hans de Goede <hdegoede@redhat.com>
4456 L:      linux-media@vger.kernel.org
4457 T:      git git://linuxtv.org/media_tree.git
4458 S:      Maintained
4459 F:      drivers/media/usb/gspca/
4460
4461 GUID PARTITION TABLE (GPT)
4462 M:      Davidlohr Bueso <davidlohr@hp.com>
4463 L:      linux-efi@vger.kernel.org
4464 S:      Maintained
4465 F:      block/partitions/efi.*
4466
4467 STK1160 USB VIDEO CAPTURE DRIVER
4468 M:      Ezequiel Garcia <elezegarcia@gmail.com>
4469 L:      linux-media@vger.kernel.org
4470 T:      git git://linuxtv.org/media_tree.git
4471 S:      Maintained
4472 F:      drivers/media/usb/stk1160/
4473
4474 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4475 M:      Frank Seidel <frank@f-seidel.de>
4476 L:      platform-driver-x86@vger.kernel.org
4477 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4478 S:      Maintained
4479 F:      drivers/platform/x86/hdaps.c
4480
4481 HDPVR USB VIDEO ENCODER DRIVER
4482 M:      Hans Verkuil <hverkuil@xs4all.nl>
4483 L:      linux-media@vger.kernel.org
4484 T:      git git://linuxtv.org/media_tree.git
4485 W:      http://linuxtv.org
4486 S:      Odd Fixes
4487 F:      drivers/media/usb/hdpvr/
4488
4489 HWPOISON MEMORY FAILURE HANDLING
4490 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4491 L:      linux-mm@kvack.org
4492 S:      Maintained
4493 F:      mm/memory-failure.c
4494 F:      mm/hwpoison-inject.c
4495
4496 HYPERVISOR VIRTUAL CONSOLE DRIVER
4497 L:      linuxppc-dev@lists.ozlabs.org
4498 S:      Odd Fixes
4499 F:      drivers/tty/hvc/
4500
4501 HACKRF MEDIA DRIVER
4502 M:      Antti Palosaari <crope@iki.fi>
4503 L:      linux-media@vger.kernel.org
4504 W:      http://linuxtv.org/
4505 W:      http://palosaari.fi/linux/
4506 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4507 T:      git git://linuxtv.org/anttip/media_tree.git
4508 S:      Maintained
4509 F:      drivers/media/usb/hackrf/
4510
4511 HARDWARE MONITORING
4512 M:      Jean Delvare <jdelvare@suse.de>
4513 M:      Guenter Roeck <linux@roeck-us.net>
4514 L:      lm-sensors@lm-sensors.org
4515 W:      http://www.lm-sensors.org/
4516 T:      quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
4517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4518 S:      Maintained
4519 F:      Documentation/hwmon/
4520 F:      drivers/hwmon/
4521 F:      include/linux/hwmon*.h
4522
4523 HARDWARE RANDOM NUMBER GENERATOR CORE
4524 M:      Matt Mackall <mpm@selenic.com>
4525 M:      Herbert Xu <herbert@gondor.apana.org.au>
4526 L:      linux-crypto@vger.kernel.org
4527 S:      Odd fixes
4528 F:      Documentation/hw_random.txt
4529 F:      drivers/char/hw_random/
4530 F:      include/linux/hw_random.h
4531
4532 HARDWARE SPINLOCK CORE
4533 M:      Ohad Ben-Cohen <ohad@wizery.com>
4534 S:      Maintained
4535 F:      Documentation/hwspinlock.txt
4536 F:      drivers/hwspinlock/hwspinlock_*
4537 F:      include/linux/hwspinlock.h
4538
4539 HARMONY SOUND DRIVER
4540 L:      linux-parisc@vger.kernel.org
4541 S:      Maintained
4542 F:      sound/parisc/harmony.*
4543
4544 HD29L2 MEDIA DRIVER
4545 M:      Antti Palosaari <crope@iki.fi>
4546 L:      linux-media@vger.kernel.org
4547 W:      http://linuxtv.org/
4548 W:      http://palosaari.fi/linux/
4549 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4550 T:      git git://linuxtv.org/anttip/media_tree.git
4551 S:      Maintained
4552 F:      drivers/media/dvb-frontends/hd29l2*
4553
4554 HEWLETT-PACKARD SMART2 RAID DRIVER
4555 L:      iss_storagedev@hp.com
4556 S:      Orphan
4557 F:      Documentation/blockdev/cpqarray.txt
4558 F:      drivers/block/cpqarray.*
4559
4560 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4561 M:      Don Brace <don.brace@pmcs.com>
4562 L:      iss_storagedev@hp.com
4563 L:      storagedev@pmcs.com
4564 L:      linux-scsi@vger.kernel.org
4565 S:      Supported
4566 F:      Documentation/scsi/hpsa.txt
4567 F:      drivers/scsi/hpsa*.[ch]
4568 F:      include/linux/cciss*.h
4569 F:      include/uapi/linux/cciss*.h
4570
4571 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4572 M:      Don Brace <don.brace@pmcs.com>
4573 L:      iss_storagedev@hp.com
4574 L:      storagedev@pmcs.com
4575 L:      linux-scsi@vger.kernel.org
4576 S:      Supported
4577 F:      Documentation/blockdev/cciss.txt
4578 F:      drivers/block/cciss*
4579 F:      include/linux/cciss_ioctl.h
4580 F:      include/uapi/linux/cciss_ioctl.h
4581
4582 HFS FILESYSTEM
4583 L:      linux-fsdevel@vger.kernel.org
4584 S:      Orphan
4585 F:      Documentation/filesystems/hfs.txt
4586 F:      fs/hfs/
4587
4588 HFSPLUS FILESYSTEM
4589 L:      linux-fsdevel@vger.kernel.org
4590 S:      Orphan
4591 F:      Documentation/filesystems/hfsplus.txt
4592 F:      fs/hfsplus/
4593
4594 HGA FRAMEBUFFER DRIVER
4595 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4596 L:      linux-nvidia@lists.surfsouth.com
4597 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4598 S:      Maintained
4599 F:      drivers/video/fbdev/hgafb.c
4600
4601 HIBERNATION (aka Software Suspend, aka swsusp)
4602 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4603 M:      Pavel Machek <pavel@ucw.cz>
4604 L:      linux-pm@vger.kernel.org
4605 S:      Supported
4606 F:      arch/x86/power/
4607 F:      drivers/base/power/
4608 F:      kernel/power/
4609 F:      include/linux/suspend.h
4610 F:      include/linux/freezer.h
4611 F:      include/linux/pm.h
4612 F:      arch/*/include/asm/suspend*.h
4613
4614 HID CORE LAYER
4615 M:      Jiri Kosina <jkosina@suse.cz>
4616 L:      linux-input@vger.kernel.org
4617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4618 S:      Maintained
4619 F:      drivers/hid/
4620 F:      include/linux/hid*
4621 F:      include/uapi/linux/hid*
4622
4623 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4624 M:      Thomas Gleixner <tglx@linutronix.de>
4625 L:      linux-kernel@vger.kernel.org
4626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4627 S:      Maintained
4628 F:      Documentation/timers/
4629 F:      kernel/time/hrtimer.c
4630 F:      kernel/time/clockevents.c
4631 F:      kernel/time/tick*.*
4632 F:      kernel/time/timer_*.c
4633 F:      include/linux/clockchips.h
4634 F:      include/linux/hrtimer.h
4635
4636 HIGH-SPEED SCC DRIVER FOR AX.25
4637 L:      linux-hams@vger.kernel.org
4638 S:      Orphan
4639 F:      drivers/net/hamradio/dmascc.c
4640 F:      drivers/net/hamradio/scc.c
4641
4642 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4643 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4644 W:      http://www.highpoint-tech.com
4645 S:      Supported
4646 F:      Documentation/scsi/hptiop.txt
4647 F:      drivers/scsi/hptiop.c
4648
4649 HIPPI
4650 M:      Jes Sorensen <jes@trained-monkey.org>
4651 L:      linux-hippi@sunsite.dk
4652 S:      Maintained
4653 F:      include/linux/hippidevice.h
4654 F:      include/uapi/linux/if_hippi.h
4655 F:      net/802/hippi.c
4656 F:      drivers/net/hippi/
4657
4658 HOST AP DRIVER
4659 M:      Jouni Malinen <j@w1.fi>
4660 L:      hostap@shmoo.com (subscribers-only)
4661 L:      linux-wireless@vger.kernel.org
4662 W:      http://hostap.epitest.fi/
4663 S:      Maintained
4664 F:      drivers/net/wireless/hostap/
4665
4666 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4667 L:      platform-driver-x86@vger.kernel.org
4668 S:      Orphan
4669 F:      drivers/platform/x86/tc1100-wmi.c
4670
4671 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4672 M:      Jaroslav Kysela <perex@perex.cz>
4673 S:      Maintained
4674 F:      drivers/net/ethernet/hp/hp100.*
4675
4676 HPET:   High Precision Event Timers driver
4677 M:      Clemens Ladisch <clemens@ladisch.de>
4678 S:      Maintained
4679 F:      Documentation/timers/hpet.txt
4680 F:      drivers/char/hpet.c
4681 F:      include/linux/hpet.h
4682 F:      include/uapi/linux/hpet.h
4683
4684 HPET:   x86
4685 S:      Orphan
4686 F:      arch/x86/kernel/hpet.c
4687 F:      arch/x86/include/asm/hpet.h
4688
4689 HPFS FILESYSTEM
4690 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4691 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4692 S:      Maintained
4693 F:      fs/hpfs/
4694
4695 HSI SUBSYSTEM
4696 M:      Sebastian Reichel <sre@kernel.org>
4697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4698 S:      Maintained
4699 F:      Documentation/ABI/testing/sysfs-bus-hsi
4700 F:      Documentation/hsi.txt
4701 F:      drivers/hsi/
4702 F:      include/linux/hsi/
4703 F:      include/uapi/linux/hsi/
4704
4705 HSO 3G MODEM DRIVER
4706 M:      Jan Dumon <j.dumon@option.com>
4707 W:      http://www.pharscape.org
4708 S:      Maintained
4709 F:      drivers/net/usb/hso.c
4710
4711 HSR NETWORK PROTOCOL
4712 M:      Arvid Brodin <arvid.brodin@alten.se>
4713 L:      netdev@vger.kernel.org
4714 S:      Maintained
4715 F:      net/hsr/
4716
4717 HTCPEN TOUCHSCREEN DRIVER
4718 M:      Pau Oliva Fora <pof@eslack.org>
4719 L:      linux-input@vger.kernel.org
4720 S:      Maintained
4721 F:      drivers/input/touchscreen/htcpen.c
4722
4723 HUGETLB FILESYSTEM
4724 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
4725 S:      Maintained
4726 F:      fs/hugetlbfs/
4727
4728 Hyper-V CORE AND DRIVERS
4729 M:      K. Y. Srinivasan <kys@microsoft.com>
4730 M:      Haiyang Zhang <haiyangz@microsoft.com>
4731 L:      devel@linuxdriverproject.org
4732 S:      Maintained
4733 F:      arch/x86/include/asm/mshyperv.h
4734 F:      arch/x86/include/uapi/asm/hyperv.h
4735 F:      arch/x86/kernel/cpu/mshyperv.c
4736 F:      drivers/hid/hid-hyperv.c
4737 F:      drivers/hv/
4738 F:      drivers/input/serio/hyperv-keyboard.c
4739 F:      drivers/net/hyperv/
4740 F:      drivers/scsi/storvsc_drv.c
4741 F:      drivers/video/fbdev/hyperv_fb.c
4742 F:      include/linux/hyperv.h
4743 F:      tools/hv/
4744
4745 I2C OVER PARALLEL PORT
4746 M:      Jean Delvare <jdelvare@suse.de>
4747 L:      linux-i2c@vger.kernel.org
4748 S:      Maintained
4749 F:      Documentation/i2c/busses/i2c-parport
4750 F:      Documentation/i2c/busses/i2c-parport-light
4751 F:      drivers/i2c/busses/i2c-parport.c
4752 F:      drivers/i2c/busses/i2c-parport-light.c
4753
4754 I2C/SMBUS CONTROLLER DRIVERS FOR PC
4755 M:      Jean Delvare <jdelvare@suse.de>
4756 L:      linux-i2c@vger.kernel.org
4757 S:      Maintained
4758 F:      Documentation/i2c/busses/i2c-ali1535
4759 F:      Documentation/i2c/busses/i2c-ali1563
4760 F:      Documentation/i2c/busses/i2c-ali15x3
4761 F:      Documentation/i2c/busses/i2c-amd756
4762 F:      Documentation/i2c/busses/i2c-amd8111
4763 F:      Documentation/i2c/busses/i2c-i801
4764 F:      Documentation/i2c/busses/i2c-nforce2
4765 F:      Documentation/i2c/busses/i2c-piix4
4766 F:      Documentation/i2c/busses/i2c-sis5595
4767 F:      Documentation/i2c/busses/i2c-sis630
4768 F:      Documentation/i2c/busses/i2c-sis96x
4769 F:      Documentation/i2c/busses/i2c-via
4770 F:      Documentation/i2c/busses/i2c-viapro
4771 F:      drivers/i2c/busses/i2c-ali1535.c
4772 F:      drivers/i2c/busses/i2c-ali1563.c
4773 F:      drivers/i2c/busses/i2c-ali15x3.c
4774 F:      drivers/i2c/busses/i2c-amd756.c
4775 F:      drivers/i2c/busses/i2c-amd756-s4882.c
4776 F:      drivers/i2c/busses/i2c-amd8111.c
4777 F:      drivers/i2c/busses/i2c-i801.c
4778 F:      drivers/i2c/busses/i2c-isch.c
4779 F:      drivers/i2c/busses/i2c-nforce2.c
4780 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
4781 F:      drivers/i2c/busses/i2c-piix4.c
4782 F:      drivers/i2c/busses/i2c-sis5595.c
4783 F:      drivers/i2c/busses/i2c-sis630.c
4784 F:      drivers/i2c/busses/i2c-sis96x.c
4785 F:      drivers/i2c/busses/i2c-via.c
4786 F:      drivers/i2c/busses/i2c-viapro.c
4787
4788 I2C/SMBUS ISMT DRIVER
4789 M:      Seth Heasley <seth.heasley@intel.com>
4790 M:      Neil Horman <nhorman@tuxdriver.com>
4791 L:      linux-i2c@vger.kernel.org
4792 F:      drivers/i2c/busses/i2c-ismt.c
4793 F:      Documentation/i2c/busses/i2c-ismt
4794
4795 I2C/SMBUS STUB DRIVER
4796 M:      Jean Delvare <jdelvare@suse.de>
4797 L:      linux-i2c@vger.kernel.org
4798 S:      Maintained
4799 F:      drivers/i2c/i2c-stub.c
4800
4801 I2C SUBSYSTEM
4802 M:      Wolfram Sang <wsa@the-dreams.de>
4803 L:      linux-i2c@vger.kernel.org
4804 W:      https://i2c.wiki.kernel.org/
4805 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
4806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
4807 S:      Maintained
4808 F:      Documentation/devicetree/bindings/i2c/
4809 F:      Documentation/i2c/
4810 F:      drivers/i2c/
4811 F:      include/linux/i2c.h
4812 F:      include/linux/i2c-*.h
4813 F:      include/uapi/linux/i2c.h
4814 F:      include/uapi/linux/i2c-*.h
4815
4816 I2C ACPI SUPPORT
4817 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
4818 L:      linux-i2c@vger.kernel.org
4819 L:      linux-acpi@vger.kernel.org
4820 S:      Maintained
4821
4822 I2C-TAOS-EVM DRIVER
4823 M:      Jean Delvare <jdelvare@suse.de>
4824 L:      linux-i2c@vger.kernel.org
4825 S:      Maintained
4826 F:      Documentation/i2c/busses/i2c-taos-evm
4827 F:      drivers/i2c/busses/i2c-taos-evm.c
4828
4829 I2C-TINY-USB DRIVER
4830 M:      Till Harbaum <till@harbaum.org>
4831 L:      linux-i2c@vger.kernel.org
4832 W:      http://www.harbaum.org/till/i2c_tiny_usb
4833 S:      Maintained
4834 F:      drivers/i2c/busses/i2c-tiny-usb.c
4835
4836 i386 BOOT CODE
4837 M:      "H. Peter Anvin" <hpa@zytor.com>
4838 S:      Maintained
4839 F:      arch/x86/boot/
4840
4841 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
4842 M:      "H. Peter Anvin" <hpa@zytor.com>
4843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
4844 S:      Maintained
4845
4846 IA64 (Itanium) PLATFORM
4847 M:      Tony Luck <tony.luck@intel.com>
4848 M:      Fenghua Yu <fenghua.yu@intel.com>
4849 L:      linux-ia64@vger.kernel.org
4850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
4851 S:      Maintained
4852 F:      arch/ia64/
4853
4854 IBM Power in-Nest Crypto Acceleration
4855 M:      Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
4856 M:      Fionnuala Gunter <fin@linux.vnet.ibm.com>
4857 L:      linux-crypto@vger.kernel.org
4858 S:      Supported
4859 F:      drivers/crypto/nx/
4860
4861 IBM Power 842 compression accelerator
4862 M:      Dan Streetman <ddstreet@us.ibm.com>
4863 S:      Supported
4864 F:      drivers/crypto/nx/nx-842.c
4865 F:      include/linux/nx842.h
4866
4867 IBM Power Linux RAID adapter
4868 M:      Brian King <brking@us.ibm.com>
4869 S:      Supported
4870 F:      drivers/scsi/ipr.*
4871
4872 IBM Power Virtual Ethernet Device Driver
4873 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
4874 L:      netdev@vger.kernel.org
4875 S:      Supported
4876 F:      drivers/net/ethernet/ibm/ibmveth.*
4877
4878 IBM Power Virtual SCSI Device Drivers
4879 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
4880 L:      linux-scsi@vger.kernel.org
4881 S:      Supported
4882 F:      drivers/scsi/ibmvscsi/ibmvscsi*
4883 F:      drivers/scsi/ibmvscsi/viosrp.h
4884
4885 IBM Power Virtual FC Device Drivers
4886 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
4887 L:      linux-scsi@vger.kernel.org
4888 S:      Supported
4889 F:      drivers/scsi/ibmvscsi/ibmvfc*
4890
4891 IBM ServeRAID RAID DRIVER
4892 S:      Orphan
4893 F:      drivers/scsi/ips.*
4894
4895 ICH LPC AND GPIO DRIVER
4896 M:      Peter Tyser <ptyser@xes-inc.com>
4897 S:      Maintained
4898 F:      drivers/mfd/lpc_ich.c
4899 F:      drivers/gpio/gpio-ich.c
4900
4901 IDE SUBSYSTEM
4902 M:      "David S. Miller" <davem@davemloft.net>
4903 L:      linux-ide@vger.kernel.org
4904 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
4905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
4906 S:      Maintained
4907 F:      Documentation/ide/
4908 F:      drivers/ide/
4909 F:      include/linux/ide.h
4910
4911 IDEAPAD LAPTOP EXTRAS DRIVER
4912 M:      Ike Panhc <ike.pan@canonical.com>
4913 L:      platform-driver-x86@vger.kernel.org
4914 W:      http://launchpad.net/ideapad-laptop
4915 S:      Maintained
4916 F:      drivers/platform/x86/ideapad-laptop.c
4917
4918 IDEAPAD LAPTOP SLIDEBAR DRIVER
4919 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
4920 L:      linux-input@vger.kernel.org
4921 W:      https://github.com/o2genum/ideapad-slidebar
4922 S:      Maintained
4923 F:      drivers/input/misc/ideapad_slidebar.c
4924
4925 IDE/ATAPI DRIVERS
4926 M:      Borislav Petkov <bp@alien8.de>
4927 L:      linux-ide@vger.kernel.org
4928 S:      Maintained
4929 F:      Documentation/cdrom/ide-cd
4930 F:      drivers/ide/ide-cd*
4931
4932 IDLE-I7300
4933 M:      Andy Henroid <andrew.d.henroid@intel.com>
4934 L:      linux-pm@vger.kernel.org
4935 S:      Supported
4936 F:      drivers/idle/i7300_idle.c
4937
4938 IEEE 802.15.4 SUBSYSTEM
4939 M:      Alexander Aring <alex.aring@gmail.com>
4940 L:      linux-wpan@vger.kernel.org
4941 W:      https://github.com/linux-wpan
4942 T:      git git://github.com/linux-wpan/linux-wpan-next.git
4943 S:      Maintained
4944 F:      net/ieee802154/
4945 F:      net/mac802154/
4946 F:      drivers/net/ieee802154/
4947 F:      include/linux/nl802154.h
4948 F:      include/linux/ieee802154.h
4949 F:      include/net/nl802154.h
4950 F:      include/net/mac802154.h
4951 F:      include/net/af_ieee802154.h
4952 F:      include/net/cfg802154.h
4953 F:      include/net/ieee802154_netdev.h
4954 F:      Documentation/networking/ieee802154.txt
4955
4956 IGORPLUG-USB IR RECEIVER
4957 M:      Sean Young <sean@mess.org>
4958 L:      linux-media@vger.kernel.org
4959 S:      Maintained
4960 F:      drivers/media/rc/igorplugusb.c
4961
4962 IGUANAWORKS USB IR TRANSCEIVER
4963 M:      Sean Young <sean@mess.org>
4964 L:      linux-media@vger.kernel.org
4965 S:      Maintained
4966 F:      drivers/media/rc/iguanair.c
4967
4968 IIO SUBSYSTEM AND DRIVERS
4969 M:      Jonathan Cameron <jic23@kernel.org>
4970 R:      Hartmut Knaack <knaack.h@gmx.de>
4971 R:      Lars-Peter Clausen <lars@metafoo.de>
4972 R:      Peter Meerwald <pmeerw@pmeerw.net>
4973 L:      linux-iio@vger.kernel.org
4974 S:      Maintained
4975 F:      drivers/iio/
4976 F:      drivers/staging/iio/
4977 F:      include/linux/iio/
4978 F:      tools/iio/
4979
4980 IKANOS/ADI EAGLE ADSL USB DRIVER
4981 M:      Matthieu Castet <castet.matthieu@free.fr>
4982 M:      Stanislaw Gruszka <stf_xl@wp.pl>
4983 S:      Maintained
4984 F:      drivers/usb/atm/ueagle-atm.c
4985
4986 INA209 HARDWARE MONITOR DRIVER
4987 M:      Guenter Roeck <linux@roeck-us.net>
4988 L:      lm-sensors@lm-sensors.org
4989 S:      Maintained
4990 F:      Documentation/hwmon/ina209
4991 F:      Documentation/devicetree/bindings/i2c/ina209.txt
4992 F:      drivers/hwmon/ina209.c
4993
4994 INA2XX HARDWARE MONITOR DRIVER
4995 M:      Guenter Roeck <linux@roeck-us.net>
4996 L:      lm-sensors@lm-sensors.org
4997 S:      Maintained
4998 F:      Documentation/hwmon/ina2xx
4999 F:      drivers/hwmon/ina2xx.c
5000 F:      include/linux/platform_data/ina2xx.h
5001
5002 INDUSTRY PACK SUBSYSTEM (IPACK)
5003 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5004 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5005 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5006 L:      industrypack-devel@lists.sourceforge.net
5007 W:      http://industrypack.sourceforge.net
5008 S:      Maintained
5009 F:      drivers/ipack/
5010
5011 INGENIC JZ4780 DMA Driver
5012 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5013 S:      Maintained
5014 F:      drivers/dma/dma-jz4780.c
5015
5016 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5017 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5018 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5019 L:      linux-ima-devel@lists.sourceforge.net
5020 L:      linux-ima-user@lists.sourceforge.net
5021 L:      linux-security-module@vger.kernel.org
5022 S:      Supported
5023 F:      security/integrity/ima/
5024
5025 IMGTEC IR DECODER DRIVER
5026 M:      James Hogan <james.hogan@imgtec.com>
5027 S:      Maintained
5028 F:      drivers/media/rc/img-ir/
5029
5030 IMS TWINTURBO FRAMEBUFFER DRIVER
5031 L:      linux-fbdev@vger.kernel.org
5032 S:      Orphan
5033 F:      drivers/video/fbdev/imsttfb.c
5034
5035 INFINIBAND SUBSYSTEM
5036 M:      Roland Dreier <roland@kernel.org>
5037 M:      Sean Hefty <sean.hefty@intel.com>
5038 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5039 L:      linux-rdma@vger.kernel.org
5040 W:      http://www.openfabrics.org/
5041 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
5043 S:      Supported
5044 F:      Documentation/infiniband/
5045 F:      drivers/infiniband/
5046 F:      include/uapi/linux/if_infiniband.h
5047
5048 INOTIFY
5049 M:      John McCutchan <john@johnmccutchan.com>
5050 M:      Robert Love <rlove@rlove.org>
5051 M:      Eric Paris <eparis@parisplace.org>
5052 S:      Maintained
5053 F:      Documentation/filesystems/inotify.txt
5054 F:      fs/notify/inotify/
5055 F:      include/linux/inotify.h
5056 F:      include/uapi/linux/inotify.h
5057
5058 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5059 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5060 L:      linux-input@vger.kernel.org
5061 Q:      http://patchwork.kernel.org/project/linux-input/list/
5062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5063 S:      Maintained
5064 F:      drivers/input/
5065 F:      include/linux/input.h
5066 F:      include/uapi/linux/input.h
5067 F:      include/linux/input/
5068
5069 INPUT MULTITOUCH (MT) PROTOCOL
5070 M:      Henrik Rydberg <rydberg@bitmath.org>
5071 L:      linux-input@vger.kernel.org
5072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
5073 S:      Odd fixes
5074 F:      Documentation/input/multi-touch-protocol.txt
5075 F:      drivers/input/input-mt.c
5076 K:      \b(ABS|SYN)_MT_
5077
5078 INTEL ASoC BDW/HSW DRIVERS
5079 M:      Jie Yang <yang.jie@linux.intel.com>
5080 L:      alsa-devel@alsa-project.org
5081 S:      Supported
5082 F:      sound/soc/intel/sst-haswell*
5083 F:      sound/soc/intel/sst-dsp*
5084 F:      sound/soc/intel/sst-firmware.c
5085 F:      sound/soc/intel/broadwell.c
5086 F:      sound/soc/intel/haswell.c
5087
5088 INTEL C600 SERIES SAS CONTROLLER DRIVER
5089 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5090 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5091 L:      linux-scsi@vger.kernel.org
5092 T:      git git://git.code.sf.net/p/intel-sas/isci
5093 S:      Supported
5094 F:      drivers/scsi/isci/
5095
5096 INTEL IDLE DRIVER
5097 M:      Len Brown <lenb@kernel.org>
5098 L:      linux-pm@vger.kernel.org
5099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5100 S:      Supported
5101 F:      drivers/idle/intel_idle.c
5102
5103 INTEL PSTATE DRIVER
5104 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5105 L:      linux-pm@vger.kernel.org
5106 S:      Supported
5107 F:      drivers/cpufreq/intel_pstate.c
5108
5109 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5110 M:      Maik Broemme <mbroemme@plusserver.de>
5111 L:      linux-fbdev@vger.kernel.org
5112 S:      Maintained
5113 F:      Documentation/fb/intelfb.txt
5114 F:      drivers/video/fbdev/intelfb/
5115
5116 INTEL 810/815 FRAMEBUFFER DRIVER
5117 M:      Antonino Daplas <adaplas@gmail.com>
5118 L:      linux-fbdev@vger.kernel.org
5119 S:      Maintained
5120 F:      drivers/video/fbdev/i810/
5121
5122 INTEL MENLOW THERMAL DRIVER
5123 M:      Sujith Thomas <sujith.thomas@intel.com>
5124 L:      platform-driver-x86@vger.kernel.org
5125 W:      https://01.org/linux-acpi
5126 S:      Supported
5127 F:      drivers/platform/x86/intel_menlow.c
5128
5129 INTEL IA32 MICROCODE UPDATE SUPPORT
5130 M:      Borislav Petkov <bp@alien8.de>
5131 S:      Maintained
5132 F:      arch/x86/kernel/cpu/microcode/core*
5133 F:      arch/x86/kernel/cpu/microcode/intel*
5134
5135 INTEL I/OAT DMA DRIVER
5136 M:      Dave Jiang <dave.jiang@intel.com>
5137 R:      Dan Williams <dan.j.williams@intel.com>
5138 L:      dmaengine@vger.kernel.org
5139 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5140 S:      Supported
5141 F:      drivers/dma/ioat*
5142
5143 INTEL IOMMU (VT-d)
5144 M:      David Woodhouse <dwmw2@infradead.org>
5145 L:      iommu@lists.linux-foundation.org
5146 T:      git git://git.infradead.org/iommu-2.6.git
5147 S:      Supported
5148 F:      drivers/iommu/intel-iommu.c
5149 F:      include/linux/intel-iommu.h
5150
5151 INTEL IOP-ADMA DMA DRIVER
5152 R:      Dan Williams <dan.j.williams@intel.com>
5153 S:      Odd fixes
5154 F:      drivers/dma/iop-adma.c
5155
5156 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5157 M:      Krzysztof Halasa <khalasa@piap.pl>
5158 S:      Maintained
5159 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5160 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5161 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5162 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5163 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5164 F:      drivers/net/wan/ixp4xx_hss.c
5165
5166 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5167 M:      Deepak Saxena <dsaxena@plexity.net>
5168 S:      Maintained
5169 F:      drivers/char/hw_random/ixp4xx-rng.c
5170
5171 INTEL ETHERNET DRIVERS
5172 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5173 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5174 R:      Shannon Nelson <shannon.nelson@intel.com>
5175 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5176 R:      Don Skidmore <donald.c.skidmore@intel.com>
5177 R:      Matthew Vick <matthew.vick@intel.com>
5178 R:      John Ronciak <john.ronciak@intel.com>
5179 R:      Mitch Williams <mitch.a.williams@intel.com>
5180 L:      intel-wired-lan@lists.osuosl.org
5181 W:      http://www.intel.com/support/feedback.htm
5182 W:      http://e1000.sourceforge.net/
5183 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5186 S:      Supported
5187 F:      Documentation/networking/e100.txt
5188 F:      Documentation/networking/e1000.txt
5189 F:      Documentation/networking/e1000e.txt
5190 F:      Documentation/networking/igb.txt
5191 F:      Documentation/networking/igbvf.txt
5192 F:      Documentation/networking/ixgb.txt
5193 F:      Documentation/networking/ixgbe.txt
5194 F:      Documentation/networking/ixgbevf.txt
5195 F:      Documentation/networking/i40e.txt
5196 F:      Documentation/networking/i40evf.txt
5197 F:      drivers/net/ethernet/intel/
5198 F:      drivers/net/ethernet/intel/*/
5199
5200 INTEL-MID GPIO DRIVER
5201 M:      David Cohen <david.a.cohen@linux.intel.com>
5202 L:      linux-gpio@vger.kernel.org
5203 S:      Maintained
5204 F:      drivers/gpio/gpio-intel-mid.c
5205
5206 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5207 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5208 L:      linux-wireless@vger.kernel.org
5209 S:      Maintained
5210 F:      Documentation/networking/README.ipw2100
5211 F:      Documentation/networking/README.ipw2200
5212 F:      drivers/net/wireless/ipw2x00/
5213
5214 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5215 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5216 M:      Gang Wei <gang.wei@intel.com>
5217 M:      Shane Wang <shane.wang@intel.com>
5218 L:      tboot-devel@lists.sourceforge.net
5219 W:      http://tboot.sourceforge.net
5220 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5221 S:      Supported
5222 F:      Documentation/intel_txt.txt
5223 F:      include/linux/tboot.h
5224 F:      arch/x86/kernel/tboot.c
5225
5226 INTEL WIRELESS WIMAX CONNECTION 2400
5227 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5228 M:      linux-wimax@intel.com
5229 L:     wimax@linuxwimax.org (subscribers-only)
5230 S:      Supported
5231 W:      http://linuxwimax.org
5232 F:      Documentation/wimax/README.i2400m
5233 F:      drivers/net/wimax/i2400m/
5234 F:      include/uapi/linux/wimax/i2400m.h
5235
5236 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5237 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5238 L:      linux-wireless@vger.kernel.org
5239 S:      Supported
5240 F:      drivers/net/wireless/iwlegacy/
5241
5242 INTEL WIRELESS WIFI LINK (iwlwifi)
5243 M:      Johannes Berg <johannes.berg@intel.com>
5244 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5245 M:      Intel Linux Wireless <ilw@linux.intel.com>
5246 L:      linux-wireless@vger.kernel.org
5247 W:      http://intellinuxwireless.org
5248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5249 S:      Supported
5250 F:      drivers/net/wireless/iwlwifi/
5251
5252 INTEL MANAGEMENT ENGINE (mei)
5253 M:      Tomas Winkler <tomas.winkler@intel.com>
5254 L:      linux-kernel@vger.kernel.org
5255 S:      Supported
5256 F:      include/uapi/linux/mei.h
5257 F:      drivers/misc/mei/*
5258 F:      Documentation/misc-devices/mei/*
5259
5260 IOC3 ETHERNET DRIVER
5261 M:      Ralf Baechle <ralf@linux-mips.org>
5262 L:      linux-mips@linux-mips.org
5263 S:      Maintained
5264 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5265
5266 IOC3 SERIAL DRIVER
5267 M:      Pat Gefre <pfg@sgi.com>
5268 L:      linux-serial@vger.kernel.org
5269 S:      Maintained
5270 F:      drivers/tty/serial/ioc3_serial.c
5271
5272 IOMMU DRIVERS
5273 M:      Joerg Roedel <joro@8bytes.org>
5274 L:      iommu@lists.linux-foundation.org
5275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5276 S:      Maintained
5277 F:      drivers/iommu/
5278
5279 IP MASQUERADING
5280 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5281 S:      Maintained
5282 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5283
5284 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5285 M:      Francois Romieu <romieu@fr.zoreil.com>
5286 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5287 L:      netdev@vger.kernel.org
5288 S:      Maintained
5289 F:      drivers/net/ethernet/icplus/ipg.*
5290
5291 IPATH DRIVER
5292 M:      Mike Marciniszyn <infinipath@intel.com>
5293 L:      linux-rdma@vger.kernel.org
5294 S:      Maintained
5295 F:      drivers/infiniband/hw/ipath/
5296
5297 IPMI SUBSYSTEM
5298 M:      Corey Minyard <minyard@acm.org>
5299 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5300 W:      http://openipmi.sourceforge.net/
5301 S:      Supported
5302 F:      Documentation/IPMI.txt
5303 F:      drivers/char/ipmi/
5304 F:      include/linux/ipmi*
5305 F:      include/uapi/linux/ipmi*
5306
5307 QCOM AUDIO (ASoC) DRIVERS
5308 M:      Patrick Lai <plai@codeaurora.org>
5309 M:      Banajit Goswami <bgoswami@codeaurora.org>
5310 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5311 S:      Supported
5312 F:      sound/soc/qcom/
5313
5314 IPS SCSI RAID DRIVER
5315 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5316 L:      linux-scsi@vger.kernel.org
5317 W:      http://www.adaptec.com/
5318 S:      Maintained
5319 F:      drivers/scsi/ips*
5320
5321 IPVS
5322 M:      Wensong Zhang <wensong@linux-vs.org>
5323 M:      Simon Horman <horms@verge.net.au>
5324 M:      Julian Anastasov <ja@ssi.bg>
5325 L:      netdev@vger.kernel.org
5326 L:      lvs-devel@vger.kernel.org
5327 S:      Maintained
5328 F:      Documentation/networking/ipvs-sysctl.txt
5329 F:      include/net/ip_vs.h
5330 F:      include/uapi/linux/ip_vs.h
5331 F:      net/netfilter/ipvs/
5332
5333 IPWIRELESS DRIVER
5334 M:      Jiri Kosina <jkosina@suse.cz>
5335 M:      David Sterba <dsterba@suse.cz>
5336 S:      Odd Fixes
5337 F:      drivers/tty/ipwireless/
5338
5339 IPX NETWORK LAYER
5340 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5341 L:      netdev@vger.kernel.org
5342 S:      Maintained
5343 F:      include/net/ipx.h
5344 F:      include/uapi/linux/ipx.h
5345 F:      net/ipx/
5346
5347 IRDA SUBSYSTEM
5348 M:      Samuel Ortiz <samuel@sortiz.org>
5349 L:      irda-users@lists.sourceforge.net (subscribers-only)
5350 L:      netdev@vger.kernel.org
5351 W:      http://irda.sourceforge.net/
5352 S:      Maintained
5353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5354 F:      Documentation/networking/irda.txt
5355 F:      drivers/net/irda/
5356 F:      include/net/irda/
5357 F:      net/irda/
5358
5359 IRQ SUBSYSTEM
5360 M:      Thomas Gleixner <tglx@linutronix.de>
5361 L:      linux-kernel@vger.kernel.org
5362 S:      Maintained
5363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5364 F:      kernel/irq/
5365
5366 IRQCHIP DRIVERS
5367 M:      Thomas Gleixner <tglx@linutronix.de>
5368 M:      Jason Cooper <jason@lakedaemon.net>
5369 L:      linux-kernel@vger.kernel.org
5370 S:      Maintained
5371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5372 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5373 F:      Documentation/devicetree/bindings/interrupt-controller/
5374 F:      drivers/irqchip/
5375
5376 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5377 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5378 S:      Maintained
5379 F:      Documentation/IRQ-domain.txt
5380 F:      include/linux/irqdomain.h
5381 F:      kernel/irq/irqdomain.c
5382
5383 ISAPNP
5384 M:      Jaroslav Kysela <perex@perex.cz>
5385 S:      Maintained
5386 F:      Documentation/isapnp.txt
5387 F:      drivers/pnp/isapnp/
5388 F:      include/linux/isapnp.h
5389
5390 ISA RADIO MODULE
5391 M:      Hans Verkuil <hverkuil@xs4all.nl>
5392 L:      linux-media@vger.kernel.org
5393 T:      git git://linuxtv.org/media_tree.git
5394 W:      http://linuxtv.org
5395 S:      Maintained
5396 F:      drivers/media/radio/radio-isa*
5397
5398 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5399 M:      Peter Jones <pjones@redhat.com>
5400 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5401 S:      Maintained
5402 F:      drivers/firmware/iscsi_ibft*
5403
5404 ISCSI
5405 M:      Mike Christie <michaelc@cs.wisc.edu>
5406 L:      open-iscsi@googlegroups.com
5407 W:      www.open-iscsi.org
5408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5409 S:      Maintained
5410 F:      drivers/scsi/*iscsi*
5411 F:      include/scsi/*iscsi*
5412
5413 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5414 M:      Or Gerlitz <ogerlitz@mellanox.com>
5415 M:      Sagi Grimberg <sagig@mellanox.com>
5416 M:      Roi Dayan <roid@mellanox.com>
5417 L:      linux-rdma@vger.kernel.org
5418 S:      Supported
5419 W:      http://www.openfabrics.org
5420 W:      www.open-iscsi.org
5421 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5422 F:      drivers/infiniband/ulp/iser/
5423
5424 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5425 M:      Sagi Grimberg <sagig@mellanox.com>
5426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5427 L:      linux-rdma@vger.kernel.org
5428 L:      target-devel@vger.kernel.org
5429 S:      Supported
5430 W:      http://www.linux-iscsi.org
5431 F:      drivers/infiniband/ulp/isert
5432
5433 ISDN SUBSYSTEM
5434 M:      Karsten Keil <isdn@linux-pingi.de>
5435 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5436 L:      netdev@vger.kernel.org
5437 W:      http://www.isdn4linux.de
5438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5439 S:      Maintained
5440 F:      Documentation/isdn/
5441 F:      drivers/isdn/
5442 F:      include/linux/isdn.h
5443 F:      include/linux/isdn/
5444 F:      include/uapi/linux/isdn.h
5445 F:      include/uapi/linux/isdn/
5446
5447 ISDN SUBSYSTEM (Eicon active card driver)
5448 M:      Armin Schindler <mac@melware.de>
5449 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5450 W:      http://www.melware.de
5451 S:      Maintained
5452 F:      drivers/isdn/hardware/eicon/
5453
5454 IT87 HARDWARE MONITORING DRIVER
5455 M:      Jean Delvare <jdelvare@suse.de>
5456 L:      lm-sensors@lm-sensors.org
5457 S:      Maintained
5458 F:      Documentation/hwmon/it87
5459 F:      drivers/hwmon/it87.c
5460
5461 IT913X MEDIA DRIVER
5462 M:      Antti Palosaari <crope@iki.fi>
5463 L:      linux-media@vger.kernel.org
5464 W:      http://linuxtv.org/
5465 W:      http://palosaari.fi/linux/
5466 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5467 T:      git git://linuxtv.org/anttip/media_tree.git
5468 S:      Maintained
5469 F:      drivers/media/tuners/it913x*
5470
5471 IVTV VIDEO4LINUX DRIVER
5472 M:      Andy Walls <awalls@md.metrocast.net>
5473 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5474 L:      linux-media@vger.kernel.org
5475 T:      git git://linuxtv.org/media_tree.git
5476 W:      http://www.ivtvdriver.org
5477 S:      Maintained
5478 F:      Documentation/video4linux/*.ivtv
5479 F:      drivers/media/pci/ivtv/
5480 F:      include/uapi/linux/ivtv*
5481
5482 IX2505V MEDIA DRIVER
5483 M:      Malcolm Priestley <tvboxspy@gmail.com>
5484 L:      linux-media@vger.kernel.org
5485 W:      http://linuxtv.org/
5486 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5487 S:      Maintained
5488 F:      drivers/media/dvb-frontends/ix2505v*
5489
5490 JC42.4 TEMPERATURE SENSOR DRIVER
5491 M:      Guenter Roeck <linux@roeck-us.net>
5492 L:      lm-sensors@lm-sensors.org
5493 S:      Maintained
5494 F:      drivers/hwmon/jc42.c
5495 F:      Documentation/hwmon/jc42
5496
5497 JFS FILESYSTEM
5498 M:      Dave Kleikamp <shaggy@kernel.org>
5499 L:      jfs-discussion@lists.sourceforge.net
5500 W:      http://jfs.sourceforge.net/
5501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5502 S:      Maintained
5503 F:      Documentation/filesystems/jfs.txt
5504 F:      fs/jfs/
5505
5506 JME NETWORK DRIVER
5507 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5508 L:      netdev@vger.kernel.org
5509 S:      Maintained
5510 F:      drivers/net/ethernet/jme.*
5511
5512 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5513 M:      David Woodhouse <dwmw2@infradead.org>
5514 L:      linux-mtd@lists.infradead.org
5515 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5516 S:      Maintained
5517 F:      fs/jffs2/
5518 F:      include/uapi/linux/jffs2.h
5519
5520 JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
5521 M:      Andrew Morton <akpm@linux-foundation.org>
5522 M:      Jan Kara <jack@suse.cz>
5523 L:      linux-ext4@vger.kernel.org
5524 S:      Maintained
5525 F:      fs/jbd/
5526 F:      include/linux/jbd.h
5527
5528 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5529 M:      "Theodore Ts'o" <tytso@mit.edu>
5530 L:      linux-ext4@vger.kernel.org
5531 S:      Maintained
5532 F:      fs/jbd2/
5533 F:      include/linux/jbd2.h
5534
5535 JSM Neo PCI based serial card
5536 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5537 L:      linux-serial@vger.kernel.org
5538 S:      Maintained
5539 F:      drivers/tty/serial/jsm/
5540
5541 K10TEMP HARDWARE MONITORING DRIVER
5542 M:      Clemens Ladisch <clemens@ladisch.de>
5543 L:      lm-sensors@lm-sensors.org
5544 S:      Maintained
5545 F:      Documentation/hwmon/k10temp
5546 F:      drivers/hwmon/k10temp.c
5547
5548 K8TEMP HARDWARE MONITORING DRIVER
5549 M:      Rudolf Marek <r.marek@assembler.cz>
5550 L:      lm-sensors@lm-sensors.org
5551 S:      Maintained
5552 F:      Documentation/hwmon/k8temp
5553 F:      drivers/hwmon/k8temp.c
5554
5555 KCONFIG
5556 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5557 L:      linux-kbuild@vger.kernel.org
5558 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5559 S:      Maintained
5560 F:      Documentation/kbuild/kconfig-language.txt
5561 F:      scripts/kconfig/
5562
5563 KDBUS
5564 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5565 M:      Daniel Mack <daniel@zonque.org>
5566 M:      David Herrmann <dh.herrmann@googlemail.com>
5567 M:      Djalal Harouni <tixxdz@opendz.org>
5568 L:      linux-kernel@vger.kernel.org
5569 S:      Maintained
5570 F:      ipc/kdbus/*
5571 F:      samples/kdbus/*
5572 F:      Documentation/kdbus/*
5573 F:      include/uapi/linux/kdbus.h
5574 F:      tools/testing/selftests/kdbus/
5575
5576 KDUMP
5577 M:      Vivek Goyal <vgoyal@redhat.com>
5578 M:      Haren Myneni <hbabu@us.ibm.com>
5579 L:      kexec@lists.infradead.org
5580 W:      http://lse.sourceforge.net/kdump/
5581 S:      Maintained
5582 F:      Documentation/kdump/
5583
5584 KEENE FM RADIO TRANSMITTER DRIVER
5585 M:      Hans Verkuil <hverkuil@xs4all.nl>
5586 L:      linux-media@vger.kernel.org
5587 T:      git git://linuxtv.org/media_tree.git
5588 W:      http://linuxtv.org
5589 S:      Maintained
5590 F:      drivers/media/radio/radio-keene*
5591
5592 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5593 M:      Ian Kent <raven@themaw.net>
5594 L:      autofs@vger.kernel.org
5595 S:      Maintained
5596 F:      fs/autofs4/
5597
5598 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5599 M:      Michal Marek <mmarek@suse.cz>
5600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5602 L:      linux-kbuild@vger.kernel.org
5603 S:      Maintained
5604 F:      Documentation/kbuild/
5605 F:      Makefile
5606 F:      scripts/Makefile.*
5607 F:      scripts/basic/
5608 F:      scripts/mk*
5609 F:      scripts/package/
5610
5611 KERNEL JANITORS
5612 L:      kernel-janitors@vger.kernel.org
5613 W:      http://kernelnewbies.org/KernelJanitors
5614 S:      Odd Fixes
5615
5616 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5617 M:      "J. Bruce Fields" <bfields@fieldses.org>
5618 L:      linux-nfs@vger.kernel.org
5619 W:      http://nfs.sourceforge.net/
5620 S:      Supported
5621 F:      fs/nfsd/
5622 F:      include/uapi/linux/nfsd/
5623 F:      fs/lockd/
5624 F:      fs/nfs_common/
5625 F:      net/sunrpc/
5626 F:      include/linux/lockd/
5627 F:      include/linux/sunrpc/
5628 F:      include/uapi/linux/sunrpc/
5629
5630 KERNEL SELFTEST FRAMEWORK
5631 M:      Shuah Khan <shuahkh@osg.samsung.com>
5632 L:      linux-api@vger.kernel.org
5633 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5634 S:      Maintained
5635 F:      tools/testing/selftests
5636
5637 KERNEL VIRTUAL MACHINE (KVM)
5638 M:      Gleb Natapov <gleb@kernel.org>
5639 M:      Paolo Bonzini <pbonzini@redhat.com>
5640 L:      kvm@vger.kernel.org
5641 W:      http://www.linux-kvm.org
5642 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5643 S:      Supported
5644 F:      Documentation/*/kvm*.txt
5645 F:      Documentation/virtual/kvm/
5646 F:      arch/*/kvm/
5647 F:      arch/x86/kernel/kvm.c
5648 F:      arch/x86/kernel/kvmclock.c
5649 F:      arch/*/include/asm/kvm*
5650 F:      include/linux/kvm*
5651 F:      include/uapi/linux/kvm*
5652 F:      virt/kvm/
5653
5654 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5655 M:      Joerg Roedel <joro@8bytes.org>
5656 L:      kvm@vger.kernel.org
5657 W:      http://kvm.qumranet.com
5658 S:      Maintained
5659 F:      arch/x86/include/asm/svm.h
5660 F:      arch/x86/kvm/svm.c
5661
5662 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5663 M:      Alexander Graf <agraf@suse.de>
5664 L:      kvm-ppc@vger.kernel.org
5665 W:      http://kvm.qumranet.com
5666 T:      git git://github.com/agraf/linux-2.6.git
5667 S:      Supported
5668 F:      arch/powerpc/include/asm/kvm*
5669 F:      arch/powerpc/kvm/
5670
5671 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5672 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5673 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5674 M:      linux390@de.ibm.com
5675 L:      linux-s390@vger.kernel.org
5676 W:      http://www.ibm.com/developerworks/linux/linux390/
5677 S:      Supported
5678 F:      Documentation/s390/kvm.txt
5679 F:      arch/s390/include/asm/kvm*
5680 F:      arch/s390/kvm/
5681 F:      drivers/s390/kvm/
5682
5683 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5684 M:      Christoffer Dall <christoffer.dall@linaro.org>
5685 M:      Marc Zyngier <marc.zyngier@arm.com>
5686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5687 L:      kvmarm@lists.cs.columbia.edu
5688 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5689 S:      Supported
5690 F:      arch/arm/include/uapi/asm/kvm*
5691 F:      arch/arm/include/asm/kvm*
5692 F:      arch/arm/kvm/
5693 F:      virt/kvm/arm/
5694 F:      include/kvm/arm_*
5695
5696 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5697 M:      Christoffer Dall <christoffer.dall@linaro.org>
5698 M:      Marc Zyngier <marc.zyngier@arm.com>
5699 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5700 L:      kvmarm@lists.cs.columbia.edu
5701 S:      Maintained
5702 F:      arch/arm64/include/uapi/asm/kvm*
5703 F:      arch/arm64/include/asm/kvm*
5704 F:      arch/arm64/kvm/
5705
5706 KEXEC
5707 M:      Eric Biederman <ebiederm@xmission.com>
5708 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
5709 L:      kexec@lists.infradead.org
5710 S:      Maintained
5711 F:      include/linux/kexec.h
5712 F:      include/uapi/linux/kexec.h
5713 F:      kernel/kexec.c
5714
5715 KEYS/KEYRINGS:
5716 M:      David Howells <dhowells@redhat.com>
5717 L:      keyrings@linux-nfs.org
5718 S:      Maintained
5719 F:      Documentation/security/keys.txt
5720 F:      include/linux/key.h
5721 F:      include/linux/key-type.h
5722 F:      include/keys/
5723 F:      security/keys/
5724
5725 KEYS-TRUSTED
5726 M:      David Safford <safford@us.ibm.com>
5727 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5728 L:      linux-security-module@vger.kernel.org
5729 L:      keyrings@linux-nfs.org
5730 S:      Supported
5731 F:      Documentation/security/keys-trusted-encrypted.txt
5732 F:      include/keys/trusted-type.h
5733 F:      security/keys/trusted.c
5734 F:      security/keys/trusted.h
5735
5736 KEYS-ENCRYPTED
5737 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5738 M:      David Safford <safford@us.ibm.com>
5739 L:      linux-security-module@vger.kernel.org
5740 L:      keyrings@linux-nfs.org
5741 S:      Supported
5742 F:      Documentation/security/keys-trusted-encrypted.txt
5743 F:      include/keys/encrypted-type.h
5744 F:      security/keys/encrypted-keys/
5745
5746 KGDB / KDB /debug_core
5747 M:      Jason Wessel <jason.wessel@windriver.com>
5748 W:      http://kgdb.wiki.kernel.org/
5749 L:      kgdb-bugreport@lists.sourceforge.net
5750 S:      Maintained
5751 F:      Documentation/DocBook/kgdb.tmpl
5752 F:      drivers/misc/kgdbts.c
5753 F:      drivers/tty/serial/kgdboc.c
5754 F:      include/linux/kdb.h
5755 F:      include/linux/kgdb.h
5756 F:      kernel/debug/
5757
5758 KMEMCHECK
5759 M:      Vegard Nossum <vegardno@ifi.uio.no>
5760 M:      Pekka Enberg <penberg@kernel.org>
5761 S:      Maintained
5762 F:      Documentation/kmemcheck.txt
5763 F:      arch/x86/include/asm/kmemcheck.h
5764 F:      arch/x86/mm/kmemcheck/
5765 F:      include/linux/kmemcheck.h
5766 F:      mm/kmemcheck.c
5767
5768 KMEMLEAK
5769 M:      Catalin Marinas <catalin.marinas@arm.com>
5770 S:      Maintained
5771 F:      Documentation/kmemleak.txt
5772 F:      include/linux/kmemleak.h
5773 F:      mm/kmemleak.c
5774 F:      mm/kmemleak-test.c
5775
5776 KPROBES
5777 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
5778 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
5779 M:      "David S. Miller" <davem@davemloft.net>
5780 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
5781 S:      Maintained
5782 F:      Documentation/kprobes.txt
5783 F:      include/linux/kprobes.h
5784 F:      kernel/kprobes.c
5785
5786 KS0108 LCD CONTROLLER DRIVER
5787 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
5788 W:      http://miguelojeda.es/auxdisplay.htm
5789 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
5790 S:      Maintained
5791 F:      Documentation/auxdisplay/ks0108
5792 F:      drivers/auxdisplay/ks0108.c
5793 F:      include/linux/ks0108.h
5794
5795 LAPB module
5796 L:      linux-x25@vger.kernel.org
5797 S:      Orphan
5798 F:      Documentation/networking/lapb-module.txt
5799 F:      include/*/lapb.h
5800 F:      net/lapb/
5801
5802 LASI 53c700 driver for PARISC
5803 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
5804 L:      linux-scsi@vger.kernel.org
5805 S:      Maintained
5806 F:      Documentation/scsi/53c700.txt
5807 F:      drivers/scsi/53c700*
5808
5809 LED SUBSYSTEM
5810 M:      Bryan Wu <cooloney@gmail.com>
5811 M:      Richard Purdie <rpurdie@rpsys.net>
5812 L:      linux-leds@vger.kernel.org
5813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
5814 S:      Maintained
5815 F:      drivers/leds/
5816 F:      include/linux/leds.h
5817
5818 LEGACY EEPROM DRIVER
5819 M:      Jean Delvare <jdelvare@suse.de>
5820 S:      Maintained
5821 F:      Documentation/misc-devices/eeprom
5822 F:      drivers/misc/eeprom/eeprom.c
5823
5824 LEGO USB Tower driver
5825 M:      Juergen Stuber <starblue@users.sourceforge.net>
5826 L:      legousb-devel@lists.sourceforge.net
5827 W:      http://legousb.sourceforge.net/
5828 S:      Maintained
5829 F:      drivers/usb/misc/legousbtower.c
5830
5831 LG2160 MEDIA DRIVER
5832 M:      Michael Krufky <mkrufky@linuxtv.org>
5833 L:      linux-media@vger.kernel.org
5834 W:      http://linuxtv.org/
5835 W:      http://github.com/mkrufky
5836 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5837 T:      git git://linuxtv.org/mkrufky/tuners.git
5838 S:      Maintained
5839 F:      drivers/media/dvb-frontends/lg2160.*
5840
5841 LGDT3305 MEDIA DRIVER
5842 M:      Michael Krufky <mkrufky@linuxtv.org>
5843 L:      linux-media@vger.kernel.org
5844 W:      http://linuxtv.org/
5845 W:      http://github.com/mkrufky
5846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5847 T:      git git://linuxtv.org/mkrufky/tuners.git
5848 S:      Maintained
5849 F:      drivers/media/dvb-frontends/lgdt3305.*
5850
5851 LGUEST
5852 M:      Rusty Russell <rusty@rustcorp.com.au>
5853 L:      lguest@lists.ozlabs.org
5854 W:      http://lguest.ozlabs.org/
5855 S:      Odd Fixes
5856 F:      arch/x86/include/asm/lguest*.h
5857 F:      arch/x86/lguest/
5858 F:      drivers/lguest/
5859 F:      include/linux/lguest*.h
5860 F:      tools/lguest/
5861
5862 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
5863 M:      Tejun Heo <tj@kernel.org>
5864 L:      linux-ide@vger.kernel.org
5865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5866 S:      Maintained
5867 F:      drivers/ata/
5868 F:      include/linux/ata.h
5869 F:      include/linux/libata.h
5870
5871 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
5872 M:      Viresh Kumar <viresh.linux@gmail.com>
5873 L:      linux-ide@vger.kernel.org
5874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5875 S:      Maintained
5876 F:      include/linux/pata_arasan_cf_data.h
5877 F:      drivers/ata/pata_arasan_cf.c
5878
5879 LIBATA PATA DRIVERS
5880 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5881 M:      Tejun Heo <tj@kernel.org>
5882 L:      linux-ide@vger.kernel.org
5883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5884 S:      Maintained
5885 F:      drivers/ata/pata_*.c
5886 F:      drivers/ata/ata_generic.c
5887
5888 LIBATA SATA AHCI PLATFORM devices support
5889 M:      Hans de Goede <hdegoede@redhat.com>
5890 M:      Tejun Heo <tj@kernel.org>
5891 L:      linux-ide@vger.kernel.org
5892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5893 S:      Maintained
5894 F:      drivers/ata/ahci_platform.c
5895 F:      drivers/ata/libahci_platform.c
5896 F:      include/linux/ahci_platform.h
5897
5898 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
5899 M:      Mikael Pettersson <mikpelinux@gmail.com>
5900 L:      linux-ide@vger.kernel.org
5901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5902 S:      Maintained
5903 F:      drivers/ata/sata_promise.*
5904
5905 LIBLOCKDEP
5906 M:      Sasha Levin <sasha.levin@oracle.com>
5907 S:      Maintained
5908 F:      tools/lib/lockdep/
5909
5910 LINUX FOR IBM pSERIES (RS/6000)
5911 M:      Paul Mackerras <paulus@au.ibm.com>
5912 W:      http://www.ibm.com/linux/ltc/projects/ppc
5913 S:      Supported
5914 F:      arch/powerpc/boot/rs6000.h
5915
5916 LINUX FOR POWERPC (32-BIT AND 64-BIT)
5917 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5918 M:      Paul Mackerras <paulus@samba.org>
5919 M:      Michael Ellerman <mpe@ellerman.id.au>
5920 W:      http://www.penguinppc.org/
5921 L:      linuxppc-dev@lists.ozlabs.org
5922 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
5923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
5924 S:      Supported
5925 F:      Documentation/powerpc/
5926 F:      arch/powerpc/
5927
5928 LINUX FOR POWER MACINTOSH
5929 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5930 W:      http://www.penguinppc.org/
5931 L:      linuxppc-dev@lists.ozlabs.org
5932 S:      Maintained
5933 F:      arch/powerpc/platforms/powermac/
5934 F:      drivers/macintosh/
5935
5936 LINUX FOR POWERPC EMBEDDED MPC5XXX
5937 M:      Anatolij Gustschin <agust@denx.de>
5938 L:      linuxppc-dev@lists.ozlabs.org
5939 T:      git git://git.denx.de/linux-denx-agust.git
5940 S:      Maintained
5941 F:      arch/powerpc/platforms/512x/
5942 F:      arch/powerpc/platforms/52xx/
5943
5944 LINUX FOR POWERPC EMBEDDED PPC4XX
5945 M:  Alistair Popple <alistair@popple.id.au>
5946 M:      Matt Porter <mporter@kernel.crashing.org>
5947 W:      http://www.penguinppc.org/
5948 L:      linuxppc-dev@lists.ozlabs.org
5949 S:      Maintained
5950 F:      arch/powerpc/platforms/40x/
5951 F:      arch/powerpc/platforms/44x/
5952
5953 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
5954 L:      linuxppc-dev@lists.ozlabs.org
5955 S:      Orphan
5956 F:      arch/powerpc/*/*virtex*
5957 F:      arch/powerpc/*/*/*virtex*
5958
5959 LINUX FOR POWERPC EMBEDDED PPC8XX
5960 M:      Vitaly Bordug <vitb@kernel.crashing.org>
5961 W:      http://www.penguinppc.org/
5962 L:      linuxppc-dev@lists.ozlabs.org
5963 S:      Maintained
5964 F:      arch/powerpc/platforms/8xx/
5965
5966 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
5967 M:      Scott Wood <scottwood@freescale.com>
5968 M:      Kumar Gala <galak@kernel.crashing.org>
5969 W:      http://www.penguinppc.org/
5970 L:      linuxppc-dev@lists.ozlabs.org
5971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
5972 S:      Maintained
5973 F:      arch/powerpc/platforms/83xx/
5974 F:      arch/powerpc/platforms/85xx/
5975
5976 LINUX FOR POWERPC PA SEMI PWRFICIENT
5977 M:      Olof Johansson <olof@lixom.net>
5978 L:      linuxppc-dev@lists.ozlabs.org
5979 S:      Maintained
5980 F:      arch/powerpc/platforms/pasemi/
5981 F:      drivers/*/*pasemi*
5982 F:      drivers/*/*/*pasemi*
5983
5984 LINUX SECURITY MODULE (LSM) FRAMEWORK
5985 M:      Chris Wright <chrisw@sous-sol.org>
5986 L:      linux-security-module@vger.kernel.org
5987 S:      Supported
5988
5989 LIS3LV02D ACCELEROMETER DRIVER
5990 M:      Eric Piel <eric.piel@tremplin-utc.net>
5991 S:      Maintained
5992 F:      Documentation/misc-devices/lis3lv02d
5993 F:      drivers/misc/lis3lv02d/
5994 F:      drivers/platform/x86/hp_accel.c
5995
5996 LIVE PATCHING
5997 M:      Josh Poimboeuf <jpoimboe@redhat.com>
5998 M:      Seth Jennings <sjenning@redhat.com>
5999 M:      Jiri Kosina <jkosina@suse.cz>
6000 M:      Vojtech Pavlik <vojtech@suse.cz>
6001 S:      Maintained
6002 F:      kernel/livepatch/
6003 F:      include/linux/livepatch.h
6004 F:      arch/x86/include/asm/livepatch.h
6005 F:      arch/x86/kernel/livepatch.c
6006 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6007 F:      samples/livepatch/
6008 L:      live-patching@vger.kernel.org
6009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6010
6011 LLC (802.2)
6012 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6013 S:      Maintained
6014 F:      include/linux/llc.h
6015 F:      include/uapi/linux/llc.h
6016 F:      include/net/llc*
6017 F:      net/llc/
6018
6019 LM73 HARDWARE MONITOR DRIVER
6020 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6021 L:      lm-sensors@lm-sensors.org
6022 S:      Maintained
6023 F:      drivers/hwmon/lm73.c
6024
6025 LM78 HARDWARE MONITOR DRIVER
6026 M:      Jean Delvare <jdelvare@suse.de>
6027 L:      lm-sensors@lm-sensors.org
6028 S:      Maintained
6029 F:      Documentation/hwmon/lm78
6030 F:      drivers/hwmon/lm78.c
6031
6032 LM83 HARDWARE MONITOR DRIVER
6033 M:      Jean Delvare <jdelvare@suse.de>
6034 L:      lm-sensors@lm-sensors.org
6035 S:      Maintained
6036 F:      Documentation/hwmon/lm83
6037 F:      drivers/hwmon/lm83.c
6038
6039 LM90 HARDWARE MONITOR DRIVER
6040 M:      Jean Delvare <jdelvare@suse.de>
6041 L:      lm-sensors@lm-sensors.org
6042 S:      Maintained
6043 F:      Documentation/hwmon/lm90
6044 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6045 F:      drivers/hwmon/lm90.c
6046
6047 LM95234 HARDWARE MONITOR DRIVER
6048 M:      Guenter Roeck <linux@roeck-us.net>
6049 L:      lm-sensors@lm-sensors.org
6050 S:      Maintained
6051 F:      Documentation/hwmon/lm95234
6052 F:      drivers/hwmon/lm95234.c
6053
6054 LME2510 MEDIA DRIVER
6055 M:      Malcolm Priestley <tvboxspy@gmail.com>
6056 L:      linux-media@vger.kernel.org
6057 W:      http://linuxtv.org/
6058 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6059 S:      Maintained
6060 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6061
6062 LOCKDEP AND LOCKSTAT
6063 M:      Peter Zijlstra <peterz@infradead.org>
6064 M:      Ingo Molnar <mingo@redhat.com>
6065 L:      linux-kernel@vger.kernel.org
6066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6067 S:      Maintained
6068 F:      Documentation/locking/lockdep*.txt
6069 F:      Documentation/locking/lockstat.txt
6070 F:      include/linux/lockdep.h
6071 F:      kernel/locking/
6072
6073 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6074 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6075 L:      linux-ntfs-dev@lists.sourceforge.net
6076 W:      http://www.linux-ntfs.org/content/view/19/37/
6077 S:      Maintained
6078 F:      Documentation/ldm.txt
6079 F:      block/partitions/ldm.*
6080
6081 LogFS
6082 M:      Joern Engel <joern@logfs.org>
6083 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6084 L:      logfs@logfs.org
6085 W:      logfs.org
6086 S:      Maintained
6087 F:      fs/logfs/
6088
6089 LPC32XX MACHINE SUPPORT
6090 M:      Roland Stigge <stigge@antcom.de>
6091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6092 S:      Maintained
6093 F:      arch/arm/mach-lpc32xx/
6094
6095 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6096 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6097 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6098 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6099 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6100 L:      MPT-FusionLinux.pdl@avagotech.com
6101 L:      linux-scsi@vger.kernel.org
6102 W:      http://www.lsilogic.com/support
6103 S:      Supported
6104 F:      drivers/message/fusion/
6105 F:      drivers/scsi/mpt2sas/
6106 F:      drivers/scsi/mpt3sas/
6107
6108 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6109 M:      Matthew Wilcox <matthew@wil.cx>
6110 L:      linux-scsi@vger.kernel.org
6111 S:      Maintained
6112 F:      drivers/scsi/sym53c8xx_2/
6113
6114 LTC4261 HARDWARE MONITOR DRIVER
6115 M:      Guenter Roeck <linux@roeck-us.net>
6116 L:      lm-sensors@lm-sensors.org
6117 S:      Maintained
6118 F:      Documentation/hwmon/ltc4261
6119 F:      drivers/hwmon/ltc4261.c
6120
6121 LTP (Linux Test Project)
6122 M:      Mike Frysinger <vapier@gentoo.org>
6123 M:      Cyril Hrubis <chrubis@suse.cz>
6124 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
6125 M:      Jan Stancek <jstancek@redhat.com>
6126 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6127 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6128 L:      ltp-list@lists.sourceforge.net (subscribers-only)
6129 W:      http://linux-test-project.github.io/
6130 T:      git git://github.com/linux-test-project/ltp.git
6131 S:      Maintained
6132
6133 M32R ARCHITECTURE
6134 W:      http://www.linux-m32r.org/
6135 S:      Orphan
6136 F:      arch/m32r/
6137
6138 M68K ARCHITECTURE
6139 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6140 L:      linux-m68k@lists.linux-m68k.org
6141 W:      http://www.linux-m68k.org/
6142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6143 S:      Maintained
6144 F:      arch/m68k/
6145 F:      drivers/zorro/
6146
6147 M68K ON APPLE MACINTOSH
6148 M:      Joshua Thompson <funaho@jurai.org>
6149 W:      http://www.mac.linux-m68k.org/
6150 L:      linux-m68k@lists.linux-m68k.org
6151 S:      Maintained
6152 F:      arch/m68k/mac/
6153
6154 M68K ON HP9000/300
6155 M:      Philip Blundell <philb@gnu.org>
6156 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6157 S:      Maintained
6158 F:      arch/m68k/hp300/
6159
6160 M88DS3103 MEDIA DRIVER
6161 M:      Antti Palosaari <crope@iki.fi>
6162 L:      linux-media@vger.kernel.org
6163 W:      http://linuxtv.org/
6164 W:      http://palosaari.fi/linux/
6165 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6166 T:      git git://linuxtv.org/anttip/media_tree.git
6167 S:      Maintained
6168 F:      drivers/media/dvb-frontends/m88ds3103*
6169
6170 M88RS2000 MEDIA DRIVER
6171 M:      Malcolm Priestley <tvboxspy@gmail.com>
6172 L:      linux-media@vger.kernel.org
6173 W:      http://linuxtv.org/
6174 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6175 S:      Maintained
6176 F:      drivers/media/dvb-frontends/m88rs2000*
6177
6178 M88TS2022 MEDIA DRIVER
6179 M:      Antti Palosaari <crope@iki.fi>
6180 L:      linux-media@vger.kernel.org
6181 W:      http://linuxtv.org/
6182 W:      http://palosaari.fi/linux/
6183 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6184 T:      git git://linuxtv.org/anttip/media_tree.git
6185 S:      Maintained
6186 F:      drivers/media/tuners/m88ts2022*
6187
6188 MA901 MASTERKIT USB FM RADIO DRIVER
6189 M:      Alexey Klimov <klimov.linux@gmail.com>
6190 L:      linux-media@vger.kernel.org
6191 T:      git git://linuxtv.org/media_tree.git
6192 S:      Maintained
6193 F:      drivers/media/radio/radio-ma901.c
6194
6195 MAC80211
6196 M:      Johannes Berg <johannes@sipsolutions.net>
6197 L:      linux-wireless@vger.kernel.org
6198 W:      http://wireless.kernel.org/
6199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6201 S:      Maintained
6202 F:      Documentation/networking/mac80211-injection.txt
6203 F:      include/net/mac80211.h
6204 F:      net/mac80211/
6205
6206 MACVLAN DRIVER
6207 M:      Patrick McHardy <kaber@trash.net>
6208 L:      netdev@vger.kernel.org
6209 S:      Maintained
6210 F:      drivers/net/macvlan.c
6211 F:      include/linux/if_macvlan.h
6212
6213 MAILBOX API
6214 M:      Jassi Brar <jassisinghbrar@gmail.com>
6215 L:      linux-kernel@vger.kernel.org
6216 S:      Maintained
6217 F:      drivers/mailbox/
6218 F:      include/linux/mailbox_client.h
6219 F:      include/linux/mailbox_controller.h
6220
6221 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6222 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6223 W:      http://www.kernel.org/doc/man-pages
6224 L:      linux-man@vger.kernel.org
6225 S:      Maintained
6226
6227 MARVELL ARMADA DRM SUPPORT
6228 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6229 S:      Maintained
6230 F:      drivers/gpu/drm/armada/
6231
6232 MARVELL 88E6352 DSA support
6233 M:      Guenter Roeck <linux@roeck-us.net>
6234 S:      Maintained
6235 F:      drivers/net/dsa/mv88e6352.c
6236
6237 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6238 M:      Mirko Lindner <mlindner@marvell.com>
6239 M:      Stephen Hemminger <stephen@networkplumber.org>
6240 L:      netdev@vger.kernel.org
6241 S:      Maintained
6242 F:      drivers/net/ethernet/marvell/sk*
6243
6244 MARVELL LIBERTAS WIRELESS DRIVER
6245 L:      libertas-dev@lists.infradead.org
6246 S:      Orphan
6247 F:      drivers/net/wireless/libertas/
6248
6249 MARVELL MV643XX ETHERNET DRIVER
6250 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6251 L:      netdev@vger.kernel.org
6252 S:      Maintained
6253 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6254 F:      include/linux/mv643xx.h
6255
6256 MARVELL MVNETA ETHERNET DRIVER
6257 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6258 L:      netdev@vger.kernel.org
6259 S:      Maintained
6260 F:      drivers/net/ethernet/marvell/mvneta.*
6261
6262 MARVELL MWIFIEX WIRELESS DRIVER
6263 M:      Amitkumar Karwar <akarwar@marvell.com>
6264 M:      Avinash Patil <patila@marvell.com>
6265 L:      linux-wireless@vger.kernel.org
6266 S:      Maintained
6267 F:      drivers/net/wireless/mwifiex/
6268
6269 MARVELL MWL8K WIRELESS DRIVER
6270 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6271 L:      linux-wireless@vger.kernel.org
6272 S:      Odd Fixes
6273 F:      drivers/net/wireless/mwl8k.c
6274
6275 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6276 M:      Nicolas Pitre <nico@fluxnic.net>
6277 S:      Odd Fixes
6278 F:      drivers/mmc/host/mvsdio.*
6279
6280 MATROX FRAMEBUFFER DRIVER
6281 L:      linux-fbdev@vger.kernel.org
6282 S:      Orphan
6283 F:      drivers/video/fbdev/matrox/matroxfb_*
6284 F:      include/uapi/linux/matroxfb.h
6285
6286 MAX16065 HARDWARE MONITOR DRIVER
6287 M:      Guenter Roeck <linux@roeck-us.net>
6288 L:      lm-sensors@lm-sensors.org
6289 S:      Maintained
6290 F:      Documentation/hwmon/max16065
6291 F:      drivers/hwmon/max16065.c
6292
6293 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6294 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6295 L:      lm-sensors@lm-sensors.org
6296 S:      Maintained
6297 F:      Documentation/hwmon/max6650
6298 F:      drivers/hwmon/max6650.c
6299
6300 MAX6697 HARDWARE MONITOR DRIVER
6301 M:      Guenter Roeck <linux@roeck-us.net>
6302 L:      lm-sensors@lm-sensors.org
6303 S:      Maintained
6304 F:      Documentation/hwmon/max6697
6305 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6306 F:      drivers/hwmon/max6697.c
6307 F:      include/linux/platform_data/max6697.h
6308
6309 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6310 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6311 L:      linux-pm@vger.kernel.org
6312 S:      Supported
6313 F:      drivers/power/max14577_charger.c
6314 F:      drivers/power/max77693_charger.c
6315
6316 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6317 M:      Chanwoo Choi <cw00.choi@samsung.com>
6318 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6319 L:      linux-kernel@vger.kernel.org
6320 S:      Supported
6321 F:      drivers/*/max14577.c
6322 F:      drivers/*/max77686.c
6323 F:      drivers/*/max77693.c
6324 F:      drivers/extcon/extcon-max14577.c
6325 F:      drivers/extcon/extcon-max77693.c
6326 F:      drivers/rtc/rtc-max77686.c
6327 F:      drivers/clk/clk-max77686.c
6328 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6329 F:      Documentation/devicetree/bindings/mfd/max77686.txt
6330 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6331 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6332 F:      include/linux/mfd/max14577*.h
6333 F:      include/linux/mfd/max77686*.h
6334 F:      include/linux/mfd/max77693*.h
6335
6336 MAXIRADIO FM RADIO RECEIVER DRIVER
6337 M:      Hans Verkuil <hverkuil@xs4all.nl>
6338 L:      linux-media@vger.kernel.org
6339 T:      git git://linuxtv.org/media_tree.git
6340 W:      http://linuxtv.org
6341 S:      Maintained
6342 F:      drivers/media/radio/radio-maxiradio*
6343
6344 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6345 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6346 P:      LinuxTV.org Project
6347 L:      linux-media@vger.kernel.org
6348 W:      http://linuxtv.org
6349 Q:      http://patchwork.kernel.org/project/linux-media/list/
6350 T:      git git://linuxtv.org/media_tree.git
6351 S:      Maintained
6352 F:      Documentation/dvb/
6353 F:      Documentation/video4linux/
6354 F:      Documentation/DocBook/media/
6355 F:      drivers/media/
6356 F:      drivers/staging/media/
6357 F:      include/media/
6358 F:      include/uapi/linux/dvb/
6359 F:      include/uapi/linux/videodev2.h
6360 F:      include/uapi/linux/media.h
6361 F:      include/uapi/linux/v4l2-*
6362 F:      include/uapi/linux/meye.h
6363 F:      include/uapi/linux/ivtv*
6364 F:      include/uapi/linux/uvcvideo.h
6365
6366 MEGARAID SCSI/SAS DRIVERS
6367 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6368 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6369 M:      Uday Lingala <uday.lingala@avagotech.com>
6370 L:      megaraidlinux.pdl@avagotech.com
6371 L:      linux-scsi@vger.kernel.org
6372 W:      http://www.lsi.com
6373 S:      Maintained
6374 F:      Documentation/scsi/megaraid.txt
6375 F:      drivers/scsi/megaraid.*
6376 F:      drivers/scsi/megaraid/
6377
6378 MELLANOX ETHERNET DRIVER (mlx4_en)
6379 M:      Amir Vadai <amirv@mellanox.com>
6380 M:      Ido Shamay <idos@mellanox.com>
6381 L:      netdev@vger.kernel.org
6382 S:      Supported
6383 W:      http://www.mellanox.com
6384 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6385 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6386
6387 MEMORY MANAGEMENT
6388 L:      linux-mm@kvack.org
6389 W:      http://www.linux-mm.org
6390 S:      Maintained
6391 F:      include/linux/mm.h
6392 F:      include/linux/gfp.h
6393 F:      include/linux/mmzone.h
6394 F:      include/linux/memory_hotplug.h
6395 F:      include/linux/vmalloc.h
6396 F:      mm/
6397
6398 MEMORY TECHNOLOGY DEVICES (MTD)
6399 M:      David Woodhouse <dwmw2@infradead.org>
6400 M:      Brian Norris <computersforpeace@gmail.com>
6401 L:      linux-mtd@lists.infradead.org
6402 W:      http://www.linux-mtd.infradead.org/
6403 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6404 T:      git git://git.infradead.org/linux-mtd.git
6405 T:      git git://git.infradead.org/l2-mtd.git
6406 S:      Maintained
6407 F:      drivers/mtd/
6408 F:      include/linux/mtd/
6409 F:      include/uapi/mtd/
6410
6411 MEN A21 WATCHDOG DRIVER
6412 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
6413 L:      linux-watchdog@vger.kernel.org
6414 S:      Supported
6415 F:      drivers/watchdog/mena21_wdt.c
6416
6417 MEN CHAMELEON BUS (mcb)
6418 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
6419 S:      Supported
6420 F:      drivers/mcb/
6421 F:      include/linux/mcb.h
6422
6423 MEN F21BMC (Board Management Controller)
6424 M:      Andreas Werner <andreas.werner@men.de>
6425 S:      Supported
6426 F:      drivers/mfd/menf21bmc.c
6427 F:      drivers/watchdog/menf21bmc_wdt.c
6428 F:      drivers/leds/leds-menf21bmc.c
6429 F:      drivers/hwmon/menf21bmc_hwmon.c
6430 F:      Documentation/hwmon/menf21bmc
6431
6432 METAG ARCHITECTURE
6433 M:      James Hogan <james.hogan@imgtec.com>
6434 L:      linux-metag@vger.kernel.org
6435 S:      Supported
6436 F:      arch/metag/
6437 F:      Documentation/metag/
6438 F:      Documentation/devicetree/bindings/metag/
6439 F:      drivers/clocksource/metag_generic.c
6440 F:      drivers/irqchip/irq-metag.c
6441 F:      drivers/irqchip/irq-metag-ext.c
6442 F:      drivers/tty/metag_da.c
6443
6444 MICROBLAZE ARCHITECTURE
6445 M:      Michal Simek <monstr@monstr.eu>
6446 W:      http://www.monstr.eu/fdt/
6447 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6448 S:      Supported
6449 F:      arch/microblaze/
6450
6451 MICROTEK X6 SCANNER
6452 M:      Oliver Neukum <oliver@neukum.org>
6453 S:      Maintained
6454 F:      drivers/usb/image/microtek.*
6455
6456 MIPS
6457 M:      Ralf Baechle <ralf@linux-mips.org>
6458 L:      linux-mips@linux-mips.org
6459 W:      http://www.linux-mips.org/
6460 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6461 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6462 S:      Supported
6463 F:      Documentation/mips/
6464 F:      arch/mips/
6465
6466 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6467 M:      Hans Verkuil <hverkuil@xs4all.nl>
6468 L:      linux-media@vger.kernel.org
6469 T:      git git://linuxtv.org/media_tree.git
6470 W:      http://linuxtv.org
6471 S:      Odd Fixes
6472 F:      drivers/media/radio/radio-miropcm20*
6473
6474 Mellanox MLX5 core VPI driver
6475 M:      Eli Cohen <eli@mellanox.com>
6476 L:      netdev@vger.kernel.org
6477 L:      linux-rdma@vger.kernel.org
6478 W:      http://www.mellanox.com
6479 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6480 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6481 T:      git git://openfabrics.org/~eli/connect-ib.git
6482 S:      Supported
6483 F:      drivers/net/ethernet/mellanox/mlx5/core/
6484 F:      include/linux/mlx5/
6485
6486 Mellanox MLX5 IB driver
6487 M:      Eli Cohen <eli@mellanox.com>
6488 L:      linux-rdma@vger.kernel.org
6489 W:      http://www.mellanox.com
6490 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6491 T:      git git://openfabrics.org/~eli/connect-ib.git
6492 S:      Supported
6493 F:      include/linux/mlx5/
6494 F:      drivers/infiniband/hw/mlx5/
6495
6496 MN88472 MEDIA DRIVER
6497 M:      Antti Palosaari <crope@iki.fi>
6498 L:      linux-media@vger.kernel.org
6499 W:      http://linuxtv.org/
6500 W:      http://palosaari.fi/linux/
6501 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6502 T:      git git://linuxtv.org/anttip/media_tree.git
6503 S:      Maintained
6504 F:      drivers/staging/media/mn88472/
6505 F:      drivers/media/dvb-frontends/mn88472.h
6506
6507 MN88473 MEDIA DRIVER
6508 M:      Antti Palosaari <crope@iki.fi>
6509 L:      linux-media@vger.kernel.org
6510 W:      http://linuxtv.org/
6511 W:      http://palosaari.fi/linux/
6512 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6513 T:      git git://linuxtv.org/anttip/media_tree.git
6514 S:      Maintained
6515 F:      drivers/staging/media/mn88473/
6516 F:      drivers/media/dvb-frontends/mn88473.h
6517
6518 MODULE SUPPORT
6519 M:      Rusty Russell <rusty@rustcorp.com.au>
6520 S:      Maintained
6521 F:      include/linux/module.h
6522 F:      kernel/module.c
6523
6524 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6525 W:      http://popies.net/meye/
6526 S:      Orphan
6527 F:      Documentation/video4linux/meye.txt
6528 F:      drivers/media/pci/meye/
6529 F:      include/uapi/linux/meye.h
6530
6531 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6532 M:      Jiri Slaby <jirislaby@gmail.com>
6533 S:      Maintained
6534 F:      Documentation/serial/moxa-smartio
6535 F:      drivers/tty/mxser.*
6536
6537 MR800 AVERMEDIA USB FM RADIO DRIVER
6538 M:      Alexey Klimov <klimov.linux@gmail.com>
6539 L:      linux-media@vger.kernel.org
6540 T:      git git://linuxtv.org/media_tree.git
6541 S:      Maintained
6542 F:      drivers/media/radio/radio-mr800.c
6543
6544 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6545 M:      Alan Ott <alan@signal11.us>
6546 L:      linux-wpan@vger.kernel.org
6547 S:      Maintained
6548 F:      drivers/net/ieee802154/mrf24j40.c
6549
6550 MSI LAPTOP SUPPORT
6551 M:      "Lee, Chun-Yi" <jlee@suse.com>
6552 L:      platform-driver-x86@vger.kernel.org
6553 S:      Maintained
6554 F:      drivers/platform/x86/msi-laptop.c
6555
6556 MSI WMI SUPPORT
6557 M:      Anisse Astier <anisse@astier.eu>
6558 L:      platform-driver-x86@vger.kernel.org
6559 S:      Supported
6560 F:      drivers/platform/x86/msi-wmi.c
6561
6562 MSI001 MEDIA DRIVER
6563 M:      Antti Palosaari <crope@iki.fi>
6564 L:      linux-media@vger.kernel.org
6565 W:      http://linuxtv.org/
6566 W:      http://palosaari.fi/linux/
6567 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6568 T:      git git://linuxtv.org/anttip/media_tree.git
6569 S:      Maintained
6570 F:      drivers/media/tuners/msi001*
6571
6572 MSI2500 MEDIA DRIVER
6573 M:      Antti Palosaari <crope@iki.fi>
6574 L:      linux-media@vger.kernel.org
6575 W:      http://linuxtv.org/
6576 W:      http://palosaari.fi/linux/
6577 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6578 T:      git git://linuxtv.org/anttip/media_tree.git
6579 S:      Maintained
6580 F:      drivers/media/usb/msi2500/
6581
6582 MT9M032 APTINA SENSOR DRIVER
6583 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6584 L:      linux-media@vger.kernel.org
6585 T:      git git://linuxtv.org/media_tree.git
6586 S:      Maintained
6587 F:      drivers/media/i2c/mt9m032.c
6588 F:      include/media/mt9m032.h
6589
6590 MT9P031 APTINA CAMERA SENSOR
6591 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6592 L:      linux-media@vger.kernel.org
6593 T:      git git://linuxtv.org/media_tree.git
6594 S:      Maintained
6595 F:      drivers/media/i2c/mt9p031.c
6596 F:      include/media/mt9p031.h
6597
6598 MT9T001 APTINA CAMERA SENSOR
6599 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6600 L:      linux-media@vger.kernel.org
6601 T:      git git://linuxtv.org/media_tree.git
6602 S:      Maintained
6603 F:      drivers/media/i2c/mt9t001.c
6604 F:      include/media/mt9t001.h
6605
6606 MT9V032 APTINA CAMERA SENSOR
6607 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6608 L:      linux-media@vger.kernel.org
6609 T:      git git://linuxtv.org/media_tree.git
6610 S:      Maintained
6611 F:      drivers/media/i2c/mt9v032.c
6612 F:      include/media/mt9v032.h
6613
6614 MULTIFUNCTION DEVICES (MFD)
6615 M:      Samuel Ortiz <sameo@linux.intel.com>
6616 M:      Lee Jones <lee.jones@linaro.org>
6617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
6618 S:      Supported
6619 F:      drivers/mfd/
6620 F:      include/linux/mfd/
6621
6622 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
6623 M:      Ulf Hansson <ulf.hansson@linaro.org>
6624 L:      linux-mmc@vger.kernel.org
6625 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
6626 S:      Maintained
6627 F:      drivers/mmc/
6628 F:      include/linux/mmc/
6629 F:      include/uapi/linux/mmc/
6630
6631 MULTIMEDIA CARD (MMC) ETC. OVER SPI
6632 S:      Orphan
6633 F:      drivers/mmc/host/mmc_spi.c
6634 F:      include/linux/spi/mmc_spi.h
6635
6636 MULTISOUND SOUND DRIVER
6637 M:      Andrew Veliath <andrewtv@usa.net>
6638 S:      Maintained
6639 F:      Documentation/sound/oss/MultiSound
6640 F:      sound/oss/msnd*
6641
6642 MULTITECH MULTIPORT CARD (ISICOM)
6643 S:      Orphan
6644 F:      drivers/tty/isicom.c
6645 F:      include/linux/isicom.h
6646
6647 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
6648 M:      Felipe Balbi <balbi@ti.com>
6649 L:      linux-usb@vger.kernel.org
6650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6651 S:      Maintained
6652 F:      drivers/usb/musb/
6653
6654 MXL5007T MEDIA DRIVER
6655 M:      Michael Krufky <mkrufky@linuxtv.org>
6656 L:      linux-media@vger.kernel.org
6657 W:      http://linuxtv.org/
6658 W:      http://github.com/mkrufky
6659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6660 T:      git git://linuxtv.org/mkrufky/tuners.git
6661 S:      Maintained
6662 F:      drivers/media/tuners/mxl5007t.*
6663
6664 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
6665 M:      Hyong-Youb Kim <hykim@myri.com>
6666 L:      netdev@vger.kernel.org
6667 W:      https://www.myricom.com/support/downloads/myri10ge.html
6668 S:      Supported
6669 F:      drivers/net/ethernet/myricom/myri10ge/
6670
6671 NATSEMI ETHERNET DRIVER (DP8381x)
6672 S:      Orphan
6673 F:      drivers/net/ethernet/natsemi/natsemi.c
6674
6675 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
6676 M:      Daniel Mack <zonque@gmail.com>
6677 S:      Maintained
6678 L:      alsa-devel@alsa-project.org
6679 W:      http://www.native-instruments.com
6680 F:      sound/usb/caiaq/
6681
6682 NCP FILESYSTEM
6683 M:      Petr Vandrovec <petr@vandrovec.name>
6684 S:      Odd Fixes
6685 F:      fs/ncpfs/
6686
6687 NCR 5380 SCSI DRIVERS
6688 M:      Finn Thain <fthain@telegraphics.com.au>
6689 M:      Michael Schmitz <schmitzmic@gmail.com>
6690 L:      linux-scsi@vger.kernel.org
6691 S:      Maintained
6692 F:      Documentation/scsi/g_NCR5380.txt
6693 F:      drivers/scsi/NCR5380.*
6694 F:      drivers/scsi/arm/cumana_1.c
6695 F:      drivers/scsi/arm/oak.c
6696 F:      drivers/scsi/atari_NCR5380.c
6697 F:      drivers/scsi/atari_scsi.*
6698 F:      drivers/scsi/dmx3191d.c
6699 F:      drivers/scsi/dtc.*
6700 F:      drivers/scsi/g_NCR5380.*
6701 F:      drivers/scsi/g_NCR5380_mmio.c
6702 F:      drivers/scsi/mac_scsi.*
6703 F:      drivers/scsi/pas16.*
6704 F:      drivers/scsi/sun3_scsi.*
6705 F:      drivers/scsi/sun3_scsi_vme.c
6706 F:      drivers/scsi/t128.*
6707
6708 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
6709 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6710 L:      linux-scsi@vger.kernel.org
6711 S:      Maintained
6712 F:      drivers/scsi/NCR_D700.*
6713
6714 NCT6775 HARDWARE MONITOR DRIVER
6715 M:      Guenter Roeck <linux@roeck-us.net>
6716 L:      lm-sensors@lm-sensors.org
6717 S:      Maintained
6718 F:      Documentation/hwmon/nct6775
6719 F:      drivers/hwmon/nct6775.c
6720
6721 NETEFFECT IWARP RNIC DRIVER (IW_NES)
6722 M:      Faisal Latif <faisal.latif@intel.com>
6723 L:      linux-rdma@vger.kernel.org
6724 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
6725 S:      Supported
6726 F:      drivers/infiniband/hw/nes/
6727
6728 NETEM NETWORK EMULATOR
6729 M:      Stephen Hemminger <stephen@networkplumber.org>
6730 L:      netem@lists.linux-foundation.org
6731 S:      Maintained
6732 F:      net/sched/sch_netem.c
6733
6734 NETERION 10GbE DRIVERS (s2io/vxge)
6735 M:      Jon Mason <jdmason@kudzu.us>
6736 L:      netdev@vger.kernel.org
6737 S:      Supported
6738 F:      Documentation/networking/s2io.txt
6739 F:      Documentation/networking/vxge.txt
6740 F:      drivers/net/ethernet/neterion/
6741
6742 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
6743 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6744 M:      Patrick McHardy <kaber@trash.net>
6745 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
6746 L:      netfilter-devel@vger.kernel.org
6747 L:      coreteam@netfilter.org
6748 W:      http://www.netfilter.org/
6749 W:      http://www.iptables.org/
6750 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
6751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
6752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
6753 S:      Supported
6754 F:      include/linux/netfilter*
6755 F:      include/linux/netfilter/
6756 F:      include/net/netfilter/
6757 F:      include/uapi/linux/netfilter*
6758 F:      include/uapi/linux/netfilter/
6759 F:      net/*/netfilter.c
6760 F:      net/*/netfilter/
6761 F:      net/netfilter/
6762
6763 NETLABEL
6764 M:      Paul Moore <paul@paul-moore.com>
6765 W:      http://netlabel.sf.net
6766 L:      netdev@vger.kernel.org
6767 S:      Maintained
6768 F:      Documentation/netlabel/
6769 F:      include/net/netlabel.h
6770 F:      net/netlabel/
6771
6772 NETROM NETWORK LAYER
6773 M:      Ralf Baechle <ralf@linux-mips.org>
6774 L:      linux-hams@vger.kernel.org
6775 W:      http://www.linux-ax25.org/
6776 S:      Maintained
6777 F:      include/net/netrom.h
6778 F:      include/uapi/linux/netrom.h
6779 F:      net/netrom/
6780
6781 NETWORK BLOCK DEVICE (NBD)
6782 M:      Markus Pargmann <mpa@pengutronix.de>
6783 S:      Maintained
6784 L:      nbd-general@lists.sourceforge.net
6785 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
6786 F:      Documentation/blockdev/nbd.txt
6787 F:      drivers/block/nbd.c
6788 F:      include/linux/nbd.h
6789 F:      include/uapi/linux/nbd.h
6790
6791 NETWORK DROP MONITOR
6792 M:      Neil Horman <nhorman@tuxdriver.com>
6793 L:      netdev@vger.kernel.org
6794 S:      Maintained
6795 W:      https://fedorahosted.org/dropwatch/
6796 F:      net/core/drop_monitor.c
6797
6798 NETWORKING [GENERAL]
6799 M:      "David S. Miller" <davem@davemloft.net>
6800 L:      netdev@vger.kernel.org
6801 W:      http://www.linuxfoundation.org/en/Net
6802 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6805 S:      Maintained
6806 F:      net/
6807 F:      include/net/
6808 F:      include/linux/in.h
6809 F:      include/linux/net.h
6810 F:      include/linux/netdevice.h
6811 F:      include/uapi/linux/in.h
6812 F:      include/uapi/linux/net.h
6813 F:      include/uapi/linux/netdevice.h
6814 F:      include/uapi/linux/net_namespace.h
6815 F:      tools/net/
6816 F:      tools/testing/selftests/net/
6817 F:      lib/random32.c
6818 F:      lib/test_bpf.c
6819
6820 NETWORKING [IPv4/IPv6]
6821 M:      "David S. Miller" <davem@davemloft.net>
6822 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
6823 M:      James Morris <jmorris@namei.org>
6824 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
6825 M:      Patrick McHardy <kaber@trash.net>
6826 L:      netdev@vger.kernel.org
6827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6828 S:      Maintained
6829 F:      net/ipv4/
6830 F:      net/ipv6/
6831 F:      include/net/ip*
6832 F:      arch/x86/net/*
6833
6834 NETWORKING [IPSEC]
6835 M:      Steffen Klassert <steffen.klassert@secunet.com>
6836 M:      Herbert Xu <herbert@gondor.apana.org.au>
6837 M:      "David S. Miller" <davem@davemloft.net>
6838 L:      netdev@vger.kernel.org
6839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
6840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
6841 S:      Maintained
6842 F:      net/core/flow.c
6843 F:      net/xfrm/
6844 F:      net/key/
6845 F:      net/ipv4/xfrm*
6846 F:      net/ipv4/esp4.c
6847 F:      net/ipv4/ah4.c
6848 F:      net/ipv4/ipcomp.c
6849 F:      net/ipv4/ip_vti.c
6850 F:      net/ipv6/xfrm*
6851 F:      net/ipv6/esp6.c
6852 F:      net/ipv6/ah6.c
6853 F:      net/ipv6/ipcomp6.c
6854 F:      net/ipv6/ip6_vti.c
6855 F:      include/uapi/linux/xfrm.h
6856 F:      include/net/xfrm.h
6857
6858 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
6859 M:      Paul Moore <paul@paul-moore.com>
6860 L:      netdev@vger.kernel.org
6861 S:      Maintained
6862
6863 NETWORKING [WIRELESS]
6864 L:      linux-wireless@vger.kernel.org
6865 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
6866
6867 NETWORKING DRIVERS
6868 L:      netdev@vger.kernel.org
6869 W:      http://www.linuxfoundation.org/en/Net
6870 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6873 S:      Odd Fixes
6874 F:      drivers/net/
6875 F:      include/linux/if_*
6876 F:      include/linux/netdevice.h
6877 F:      include/linux/arcdevice.h
6878 F:      include/linux/etherdevice.h
6879 F:      include/linux/fcdevice.h
6880 F:      include/linux/fddidevice.h
6881 F:      include/linux/hippidevice.h
6882 F:      include/linux/inetdevice.h
6883 F:      include/uapi/linux/if_*
6884 F:      include/uapi/linux/netdevice.h
6885
6886 NETWORKING DRIVERS (WIRELESS)
6887 M:      Kalle Valo <kvalo@codeaurora.org>
6888 L:      linux-wireless@vger.kernel.org
6889 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
6890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
6891 S:      Maintained
6892 F:      drivers/net/wireless/
6893
6894 NETXEN (1/10) GbE SUPPORT
6895 M:      Manish Chopra <manish.chopra@qlogic.com>
6896 M:      Sony Chacko <sony.chacko@qlogic.com>
6897 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
6898 L:      netdev@vger.kernel.org
6899 W:      http://www.qlogic.com
6900 S:      Supported
6901 F:      drivers/net/ethernet/qlogic/netxen/
6902
6903 NFC SUBSYSTEM
6904 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6905 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
6906 M:      Samuel Ortiz <sameo@linux.intel.com>
6907 L:      linux-wireless@vger.kernel.org
6908 L:      linux-nfc@lists.01.org (subscribers-only)
6909 S:      Supported
6910 F:      net/nfc/
6911 F:      include/net/nfc/
6912 F:      include/uapi/linux/nfc.h
6913 F:      drivers/nfc/
6914 F:      include/linux/platform_data/pn544.h
6915 F:      Documentation/devicetree/bindings/net/nfc/
6916
6917 NFS, SUNRPC, AND LOCKD CLIENTS
6918 M:      Trond Myklebust <trond.myklebust@primarydata.com>
6919 M:      Anna Schumaker <anna.schumaker@netapp.com>
6920 L:      linux-nfs@vger.kernel.org
6921 W:      http://client.linux-nfs.org
6922 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
6923 S:      Maintained
6924 F:      fs/lockd/
6925 F:      fs/nfs/
6926 F:      fs/nfs_common/
6927 F:      net/sunrpc/
6928 F:      include/linux/lockd/
6929 F:      include/linux/nfs*
6930 F:      include/linux/sunrpc/
6931 F:      include/uapi/linux/nfs*
6932 F:      include/uapi/linux/sunrpc/
6933
6934 NILFS2 FILESYSTEM
6935 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
6936 L:      linux-nilfs@vger.kernel.org
6937 W:      http://nilfs.sourceforge.net/
6938 T:      git git://github.com/konis/nilfs2.git
6939 S:      Supported
6940 F:      Documentation/filesystems/nilfs2.txt
6941 F:      fs/nilfs2/
6942 F:      include/linux/nilfs2_fs.h
6943
6944 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
6945 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6946 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6947 S:      Maintained
6948 F:      Documentation/scsi/NinjaSCSI.txt
6949 F:      drivers/scsi/pcmcia/nsp_*
6950
6951 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
6952 M:      GOTO Masanori <gotom@debian.or.jp>
6953 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6954 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6955 S:      Maintained
6956 F:      Documentation/scsi/NinjaSCSI.txt
6957 F:      drivers/scsi/nsp32*
6958
6959 NIOS2 ARCHITECTURE
6960 M:      Ley Foon Tan <lftan@altera.com>
6961 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
6962 T:      git git://git.rocketboards.org/linux-socfpga-next.git
6963 S:      Maintained
6964 F:      arch/nios2/
6965
6966 NTB DRIVER
6967 M:      Jon Mason <jdmason@kudzu.us>
6968 M:      Dave Jiang <dave.jiang@intel.com>
6969 S:      Supported
6970 W:      https://github.com/jonmason/ntb/wiki
6971 T:      git git://github.com/jonmason/ntb.git
6972 F:      drivers/ntb/
6973 F:      drivers/net/ntb_netdev.c
6974 F:      include/linux/ntb.h
6975
6976 NTFS FILESYSTEM
6977 M:      Anton Altaparmakov <anton@tuxera.com>
6978 L:      linux-ntfs-dev@lists.sourceforge.net
6979 W:      http://www.tuxera.com/
6980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
6981 S:      Supported
6982 F:      Documentation/filesystems/ntfs.txt
6983 F:      fs/ntfs/
6984
6985 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
6986 M:      Antonino Daplas <adaplas@gmail.com>
6987 L:      linux-fbdev@vger.kernel.org
6988 S:      Maintained
6989 F:      drivers/video/fbdev/riva/
6990 F:      drivers/video/fbdev/nvidia/
6991
6992 NVM EXPRESS DRIVER
6993 M:      Matthew Wilcox <willy@linux.intel.com>
6994 L:      linux-nvme@lists.infradead.org
6995 T:      git git://git.infradead.org/users/willy/linux-nvme.git
6996 S:      Supported
6997 F:      drivers/block/nvme*
6998 F:      include/linux/nvme.h
6999
7000 NXP TDA998X DRM DRIVER
7001 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7002 S:      Supported
7003 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7004 F:      include/drm/i2c/tda998x.h
7005
7006 NXP TFA9879 DRIVER
7007 M:      Peter Rosin <peda@axentia.se>
7008 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7009 S:      Maintained
7010 F:      sound/soc/codecs/tfa9879*
7011
7012 OMAP SUPPORT
7013 M:      Tony Lindgren <tony@atomide.com>
7014 L:      linux-omap@vger.kernel.org
7015 W:      http://www.muru.com/linux/omap/
7016 W:      http://linux.omap.com/
7017 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7019 S:      Maintained
7020 F:      arch/arm/*omap*/
7021 F:      arch/arm/configs/omap1_defconfig
7022 F:      arch/arm/configs/omap2plus_defconfig
7023 F:      drivers/i2c/busses/i2c-omap.c
7024 F:      drivers/irqchip/irq-omap-intc.c
7025 F:      drivers/mfd/*omap*.c
7026 F:      drivers/mfd/menelaus.c
7027 F:      drivers/mfd/palmas.c
7028 F:      drivers/mfd/tps65217.c
7029 F:      drivers/mfd/tps65218.c
7030 F:      drivers/mfd/tps65910.c
7031 F:      drivers/mfd/twl-core.[ch]
7032 F:      drivers/mfd/twl4030*.c
7033 F:      drivers/mfd/twl6030*.c
7034 F:      drivers/mfd/twl6040*.c
7035 F:      drivers/regulator/palmas-regulator*.c
7036 F:      drivers/regulator/pbias-regulator.c
7037 F:      drivers/regulator/tps65217-regulator.c
7038 F:      drivers/regulator/tps65218-regulator.c
7039 F:      drivers/regulator/tps65910-regulator.c
7040 F:      drivers/regulator/twl-regulator.c
7041 F:      include/linux/i2c-omap.h
7042
7043 OMAP DEVICE TREE SUPPORT
7044 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7045 M:      Tony Lindgren <tony@atomide.com>
7046 L:      linux-omap@vger.kernel.org
7047 L:      devicetree@vger.kernel.org
7048 S:      Maintained
7049 F:      arch/arm/boot/dts/*omap*
7050 F:      arch/arm/boot/dts/*am3*
7051 F:      arch/arm/boot/dts/*am4*
7052 F:      arch/arm/boot/dts/*am5*
7053 F:      arch/arm/boot/dts/*dra7*
7054
7055 OMAP CLOCK FRAMEWORK SUPPORT
7056 M:      Paul Walmsley <paul@pwsan.com>
7057 L:      linux-omap@vger.kernel.org
7058 S:      Maintained
7059 F:      arch/arm/*omap*/*clock*
7060
7061 OMAP POWER MANAGEMENT SUPPORT
7062 M:      Kevin Hilman <khilman@deeprootsystems.com>
7063 L:      linux-omap@vger.kernel.org
7064 S:      Maintained
7065 F:      arch/arm/*omap*/*pm*
7066 F:      drivers/cpufreq/omap-cpufreq.c
7067
7068 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7069 M:      Rajendra Nayak <rnayak@ti.com>
7070 M:      Paul Walmsley <paul@pwsan.com>
7071 L:      linux-omap@vger.kernel.org
7072 S:      Maintained
7073 F:      arch/arm/mach-omap2/prm*
7074
7075 OMAP AUDIO SUPPORT
7076 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7077 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7078 L:      alsa-devel@alsa-project.org (subscribers-only)
7079 L:      linux-omap@vger.kernel.org
7080 S:      Maintained
7081 F:      sound/soc/omap/
7082
7083 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7084 M:      Roger Quadros <rogerq@ti.com>
7085 M:      Tony Lindgren <tony@atomide.com>
7086 L:      linux-omap@vger.kernel.org
7087 S:      Maintained
7088 F:      drivers/memory/omap-gpmc.c
7089 F:      arch/arm/mach-omap2/*gpmc*
7090
7091 OMAP FRAMEBUFFER SUPPORT
7092 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7093 L:      linux-fbdev@vger.kernel.org
7094 L:      linux-omap@vger.kernel.org
7095 S:      Maintained
7096 F:      drivers/video/fbdev/omap/
7097
7098 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7099 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7100 L:      linux-omap@vger.kernel.org
7101 L:      linux-fbdev@vger.kernel.org
7102 S:      Maintained
7103 F:      drivers/video/fbdev/omap2/
7104 F:      Documentation/arm/OMAP/DSS
7105
7106 OMAP HARDWARE SPINLOCK SUPPORT
7107 M:      Ohad Ben-Cohen <ohad@wizery.com>
7108 L:      linux-omap@vger.kernel.org
7109 S:      Maintained
7110 F:      drivers/hwspinlock/omap_hwspinlock.c
7111 F:      arch/arm/mach-omap2/hwspinlock.c
7112
7113 OMAP MMC SUPPORT
7114 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7115 L:      linux-omap@vger.kernel.org
7116 S:      Maintained
7117 F:      drivers/mmc/host/omap.c
7118
7119 OMAP HS MMC SUPPORT
7120 L:      linux-mmc@vger.kernel.org
7121 L:      linux-omap@vger.kernel.org
7122 S:      Orphan
7123 F:      drivers/mmc/host/omap_hsmmc.c
7124
7125 OMAP RANDOM NUMBER GENERATOR SUPPORT
7126 M:      Deepak Saxena <dsaxena@plexity.net>
7127 S:      Maintained
7128 F:      drivers/char/hw_random/omap-rng.c
7129
7130 OMAP HWMOD SUPPORT
7131 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7132 M:      Paul Walmsley <paul@pwsan.com>
7133 L:      linux-omap@vger.kernel.org
7134 S:      Maintained
7135 F:      arch/arm/mach-omap2/omap_hwmod.*
7136
7137 OMAP HWMOD DATA
7138 M:      Paul Walmsley <paul@pwsan.com>
7139 L:      linux-omap@vger.kernel.org
7140 S:      Maintained
7141 F:      arch/arm/mach-omap2/omap_hwmod*data*
7142
7143 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7144 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7145 L:      linux-omap@vger.kernel.org
7146 S:      Maintained
7147 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7148
7149 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7150 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7151 L:      linux-media@vger.kernel.org
7152 S:      Maintained
7153 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7154 F:      drivers/media/platform/omap3isp/
7155 F:      drivers/staging/media/omap4iss/
7156
7157 OMAP USB SUPPORT
7158 M:      Felipe Balbi <balbi@ti.com>
7159 L:      linux-usb@vger.kernel.org
7160 L:      linux-omap@vger.kernel.org
7161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7162 S:      Maintained
7163 F:      drivers/usb/*/*omap*
7164 F:      arch/arm/*omap*/usb*
7165
7166 OMAP GPIO DRIVER
7167 M:      Javier Martinez Canillas <javier@dowhile0.org>
7168 M:      Santosh Shilimkar <ssantosh@kernel.org>
7169 M:      Kevin Hilman <khilman@deeprootsystems.com>
7170 L:      linux-omap@vger.kernel.org
7171 S:      Maintained
7172 F:      drivers/gpio/gpio-omap.c
7173
7174 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7175 M:      Mark Jackson <mpfj@newflow.co.uk>
7176 L:      linux-omap@vger.kernel.org
7177 S:      Maintained
7178 F:      arch/arm/boot/dts/am335x-nano.dts
7179
7180 OMFS FILESYSTEM
7181 M:      Bob Copeland <me@bobcopeland.com>
7182 L:      linux-karma-devel@lists.sourceforge.net
7183 S:      Maintained
7184 F:      Documentation/filesystems/omfs.txt
7185 F:      fs/omfs/
7186
7187 OMNIKEY CARDMAN 4000 DRIVER
7188 M:      Harald Welte <laforge@gnumonks.org>
7189 S:      Maintained
7190 F:      drivers/char/pcmcia/cm4000_cs.c
7191 F:      include/linux/cm4000_cs.h
7192 F:      include/uapi/linux/cm4000_cs.h
7193
7194 OMNIKEY CARDMAN 4040 DRIVER
7195 M:      Harald Welte <laforge@gnumonks.org>
7196 S:      Maintained
7197 F:      drivers/char/pcmcia/cm4040_cs.*
7198
7199 OMNIVISION OV7670 SENSOR DRIVER
7200 M:      Jonathan Corbet <corbet@lwn.net>
7201 L:      linux-media@vger.kernel.org
7202 T:      git git://linuxtv.org/media_tree.git
7203 S:      Maintained
7204 F:      drivers/media/i2c/ov7670.c
7205
7206 ONENAND FLASH DRIVER
7207 M:      Kyungmin Park <kyungmin.park@samsung.com>
7208 L:      linux-mtd@lists.infradead.org
7209 S:      Maintained
7210 F:      drivers/mtd/onenand/
7211 F:      include/linux/mtd/onenand*.h
7212
7213 ONSTREAM SCSI TAPE DRIVER
7214 M:      Willem Riede <osst@riede.org>
7215 L:      osst-users@lists.sourceforge.net
7216 L:      linux-scsi@vger.kernel.org
7217 S:      Maintained
7218 F:      Documentation/scsi/osst.txt
7219 F:      drivers/scsi/osst.*
7220 F:      drivers/scsi/osst_*.h
7221 F:      drivers/scsi/st.h
7222
7223 OPENCORES I2C BUS DRIVER
7224 M:      Peter Korsgaard <jacmet@sunsite.dk>
7225 L:      linux-i2c@vger.kernel.org
7226 S:      Maintained
7227 F:      Documentation/i2c/busses/i2c-ocores
7228 F:      drivers/i2c/busses/i2c-ocores.c
7229
7230 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7231 M:      Grant Likely <grant.likely@linaro.org>
7232 M:      Rob Herring <robh+dt@kernel.org>
7233 L:      devicetree@vger.kernel.org
7234 W:      http://www.devicetree.org/
7235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7236 S:      Maintained
7237 F:      drivers/of/
7238 F:      include/linux/of*.h
7239 F:      scripts/dtc/
7240
7241 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7242 M:      Rob Herring <robh+dt@kernel.org>
7243 M:      Pawel Moll <pawel.moll@arm.com>
7244 M:      Mark Rutland <mark.rutland@arm.com>
7245 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7246 M:      Kumar Gala <galak@codeaurora.org>
7247 L:      devicetree@vger.kernel.org
7248 S:      Maintained
7249 F:      Documentation/devicetree/
7250 F:      arch/*/boot/dts/
7251 F:      include/dt-bindings/
7252
7253 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7254 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7255 L:      devicetree@vger.kernel.org
7256 S:      Maintained
7257 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7258 F:      Documentation/devicetree/overlay-notes.txt
7259 F:      drivers/of/overlay.c
7260 F:      drivers/of/resolver.c
7261
7262 OPENRISC ARCHITECTURE
7263 M:      Jonas Bonn <jonas@southpole.se>
7264 W:      http://openrisc.net
7265 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7266 S:      Maintained
7267 T:      git git://openrisc.net/~jonas/linux
7268 F:      arch/openrisc/
7269
7270 OPENVSWITCH
7271 M:      Pravin Shelar <pshelar@nicira.com>
7272 L:      netdev@vger.kernel.org
7273 L:      dev@openvswitch.org
7274 W:      http://openvswitch.org
7275 S:      Maintained
7276 F:      net/openvswitch/
7277 F:      include/uapi/linux/openvswitch.h
7278
7279 OPL4 DRIVER
7280 M:      Clemens Ladisch <clemens@ladisch.de>
7281 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7282 T:      git git://git.alsa-project.org/alsa-kernel.git
7283 S:      Maintained
7284 F:      sound/drivers/opl4/
7285
7286 OPROFILE
7287 M:      Robert Richter <rric@kernel.org>
7288 L:      oprofile-list@lists.sf.net
7289 S:      Maintained
7290 F:      arch/*/include/asm/oprofile*.h
7291 F:      arch/*/oprofile/
7292 F:      drivers/oprofile/
7293 F:      include/linux/oprofile.h
7294
7295 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7296 M:      Mark Fasheh <mfasheh@suse.com>
7297 M:      Joel Becker <jlbec@evilplan.org>
7298 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7299 W:      http://ocfs2.wiki.kernel.org
7300 S:      Supported
7301 F:      Documentation/filesystems/ocfs2.txt
7302 F:      Documentation/filesystems/dlmfs.txt
7303 F:      fs/ocfs2/
7304
7305 ORINOCO DRIVER
7306 L:      linux-wireless@vger.kernel.org
7307 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7308 W:      http://www.nongnu.org/orinoco/
7309 S:      Orphan
7310 F:      drivers/net/wireless/orinoco/
7311
7312 OSD LIBRARY and FILESYSTEM
7313 M:      Boaz Harrosh <ooo@electrozaur.com>
7314 M:      Benny Halevy <bhalevy@primarydata.com>
7315 L:      osd-dev@open-osd.org
7316 W:      http://open-osd.org
7317 T:      git git://git.open-osd.org/open-osd.git
7318 S:      Maintained
7319 F:      drivers/scsi/osd/
7320 F:      include/scsi/osd_*
7321 F:      fs/exofs/
7322
7323 OVERLAY FILESYSTEM
7324 M:      Miklos Szeredi <miklos@szeredi.hu>
7325 L:      linux-unionfs@vger.kernel.org
7326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7327 S:      Supported
7328 F:      fs/overlayfs/
7329 F:      Documentation/filesystems/overlayfs.txt
7330
7331 P54 WIRELESS DRIVER
7332 M:      Christian Lamparter <chunkeey@googlemail.com>
7333 L:      linux-wireless@vger.kernel.org
7334 W:      http://wireless.kernel.org/en/users/Drivers/p54
7335 S:      Maintained
7336 F:      drivers/net/wireless/p54/
7337
7338 PA SEMI ETHERNET DRIVER
7339 M:      Olof Johansson <olof@lixom.net>
7340 L:      netdev@vger.kernel.org
7341 S:      Maintained
7342 F:      drivers/net/ethernet/pasemi/*
7343
7344 PA SEMI SMBUS DRIVER
7345 M:      Olof Johansson <olof@lixom.net>
7346 L:      linux-i2c@vger.kernel.org
7347 S:      Maintained
7348 F:      drivers/i2c/busses/i2c-pasemi.c
7349
7350 PADATA PARALLEL EXECUTION MECHANISM
7351 M:      Steffen Klassert <steffen.klassert@secunet.com>
7352 L:      linux-crypto@vger.kernel.org
7353 S:      Maintained
7354 F:      kernel/padata.c
7355 F:      include/linux/padata.h
7356 F:      Documentation/padata.txt
7357
7358 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7359 M:      Harald Welte <laforge@gnumonks.org>
7360 L:      platform-driver-x86@vger.kernel.org
7361 S:      Maintained
7362 F:      drivers/platform/x86/panasonic-laptop.c
7363
7364 PANASONIC MN10300/AM33/AM34 PORT
7365 M:      David Howells <dhowells@redhat.com>
7366 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7367 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7368 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7369 S:      Maintained
7370 F:      Documentation/mn10300/
7371 F:      arch/mn10300/
7372
7373 PARALLEL PORT SUPPORT
7374 L:      linux-parport@lists.infradead.org (subscribers-only)
7375 S:      Orphan
7376 F:      drivers/parport/
7377 F:      include/linux/parport*.h
7378 F:      drivers/char/ppdev.c
7379 F:      include/uapi/linux/ppdev.h
7380
7381 PARAVIRT_OPS INTERFACE
7382 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7383 M:      Chris Wright <chrisw@sous-sol.org>
7384 M:      Alok Kataria <akataria@vmware.com>
7385 M:      Rusty Russell <rusty@rustcorp.com.au>
7386 L:      virtualization@lists.linux-foundation.org
7387 S:      Supported
7388 F:      Documentation/virtual/paravirt_ops.txt
7389 F:      arch/*/kernel/paravirt*
7390 F:      arch/*/include/asm/paravirt.h
7391
7392 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7393 M:      Tim Waugh <tim@cyberelk.net>
7394 L:      linux-parport@lists.infradead.org (subscribers-only)
7395 W:      http://www.torque.net/linux-pp.html
7396 S:      Maintained
7397 F:      Documentation/blockdev/paride.txt
7398 F:      drivers/block/paride/
7399
7400 PARISC ARCHITECTURE
7401 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7402 M:      Helge Deller <deller@gmx.de>
7403 L:      linux-parisc@vger.kernel.org
7404 W:      http://www.parisc-linux.org/
7405 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7408 S:      Maintained
7409 F:      arch/parisc/
7410 F:      Documentation/parisc/
7411 F:      drivers/parisc/
7412 F:      drivers/char/agp/parisc-agp.c
7413 F:      drivers/input/serio/gscps2.c
7414 F:      drivers/parport/parport_gsc.*
7415 F:      drivers/tty/serial/8250/8250_gsc.c
7416 F:      drivers/video/fbdev/sti*
7417 F:      drivers/video/console/sti*
7418 F:      drivers/video/logo/logo_parisc*
7419
7420 PC87360 HARDWARE MONITORING DRIVER
7421 M:      Jim Cromie <jim.cromie@gmail.com>
7422 L:      lm-sensors@lm-sensors.org
7423 S:      Maintained
7424 F:      Documentation/hwmon/pc87360
7425 F:      drivers/hwmon/pc87360.c
7426
7427 PC8736x GPIO DRIVER
7428 M:      Jim Cromie <jim.cromie@gmail.com>
7429 S:      Maintained
7430 F:      drivers/char/pc8736x_gpio.c
7431
7432 PC87427 HARDWARE MONITORING DRIVER
7433 M:      Jean Delvare <jdelvare@suse.de>
7434 L:      lm-sensors@lm-sensors.org
7435 S:      Maintained
7436 F:      Documentation/hwmon/pc87427
7437 F:      drivers/hwmon/pc87427.c
7438
7439 PCA9532 LED DRIVER
7440 M:      Riku Voipio <riku.voipio@iki.fi>
7441 S:      Maintained
7442 F:      drivers/leds/leds-pca9532.c
7443 F:      include/linux/leds-pca9532.h
7444
7445 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7446 M:      Guenter Roeck <linux@roeck-us.net>
7447 L:      linux-i2c@vger.kernel.org
7448 S:      Maintained
7449 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7450
7451 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7452 M:      Khalid Aziz <khalid@gonehiking.org>
7453 S:      Maintained
7454 F:      drivers/firmware/pcdp.*
7455
7456 PCI ERROR RECOVERY
7457 M:      Linas Vepstas <linasvepstas@gmail.com>
7458 L:      linux-pci@vger.kernel.org
7459 S:      Supported
7460 F:      Documentation/PCI/pci-error-recovery.txt
7461
7462 PCI SUBSYSTEM
7463 M:      Bjorn Helgaas <bhelgaas@google.com>
7464 L:      linux-pci@vger.kernel.org
7465 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7467 S:      Supported
7468 F:      Documentation/PCI/
7469 F:      drivers/pci/
7470 F:      include/linux/pci*
7471 F:      arch/x86/pci/
7472 F:      arch/x86/kernel/quirks.c
7473
7474 PCI DRIVER FOR ARM VERSATILE PLATFORM
7475 M:      Rob Herring <robh@kernel.org>
7476 L:      linux-pci@vger.kernel.org
7477 L:      linux-arm-kernel@lists.infradead.org
7478 S:      Maintained
7479 F:      Documentation/devicetree/bindings/pci/versatile.txt
7480 F:      drivers/pci/host/pci-versatile.c
7481
7482 PCI DRIVER FOR APPLIEDMICRO XGENE
7483 M:      Tanmay Inamdar <tinamdar@apm.com>
7484 L:      linux-pci@vger.kernel.org
7485 L:      linux-arm-kernel@lists.infradead.org
7486 S:      Maintained
7487 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7488 F:      drivers/pci/host/pci-xgene.c
7489
7490 PCI DRIVER FOR FREESCALE LAYERSCAPE
7491 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7492 M:      Mingkai Hu <mingkai.hu@freescale.com>
7493 M:      Roy Zang <tie-fei.zang@freescale.com>
7494 L:      linuxppc-dev@lists.ozlabs.org
7495 L:      linux-pci@vger.kernel.org
7496 L:      linux-arm-kernel@lists.infradead.org
7497 S:      Maintained
7498 F:      drivers/pci/host/*layerscape*
7499
7500 PCI DRIVER FOR IMX6
7501 M:      Richard Zhu <Richard.Zhu@freescale.com>
7502 M:      Lucas Stach <l.stach@pengutronix.de>
7503 L:      linux-pci@vger.kernel.org
7504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7505 S:      Maintained
7506 F:      drivers/pci/host/*imx6*
7507
7508 PCI DRIVER FOR TI KEYSTONE
7509 M:      Murali Karicheri <m-karicheri2@ti.com>
7510 L:      linux-pci@vger.kernel.org
7511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7512 S:      Maintained
7513 F:      drivers/pci/host/*keystone*
7514
7515 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7516 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7517 M:      Jason Cooper <jason@lakedaemon.net>
7518 L:      linux-pci@vger.kernel.org
7519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7520 S:      Maintained
7521 F:      drivers/pci/host/*mvebu*
7522
7523 PCI DRIVER FOR NVIDIA TEGRA
7524 M:      Thierry Reding <thierry.reding@gmail.com>
7525 L:      linux-tegra@vger.kernel.org
7526 L:      linux-pci@vger.kernel.org
7527 S:      Supported
7528 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
7529 F:      drivers/pci/host/pci-tegra.c
7530
7531 PCI DRIVER FOR TI DRA7XX
7532 M:      Kishon Vijay Abraham I <kishon@ti.com>
7533 L:      linux-omap@vger.kernel.org
7534 L:      linux-pci@vger.kernel.org
7535 S:      Supported
7536 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
7537 F:      drivers/pci/host/pci-dra7xx.c
7538
7539 PCI DRIVER FOR RENESAS R-CAR
7540 M:      Simon Horman <horms@verge.net.au>
7541 L:      linux-pci@vger.kernel.org
7542 L:      linux-sh@vger.kernel.org
7543 S:      Maintained
7544 F:      drivers/pci/host/*rcar*
7545
7546 PCI DRIVER FOR SAMSUNG EXYNOS
7547 M:      Jingoo Han <jg1.han@samsung.com>
7548 L:      linux-pci@vger.kernel.org
7549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7550 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7551 S:      Maintained
7552 F:      drivers/pci/host/pci-exynos.c
7553
7554 PCI DRIVER FOR SYNOPSIS DESIGNWARE
7555 M:      Mohit Kumar <mohit.kumar@st.com>
7556 M:      Jingoo Han <jg1.han@samsung.com>
7557 L:      linux-pci@vger.kernel.org
7558 S:      Maintained
7559 F:      drivers/pci/host/*designware*
7560
7561 PCI DRIVER FOR GENERIC OF HOSTS
7562 M:      Will Deacon <will.deacon@arm.com>
7563 L:      linux-pci@vger.kernel.org
7564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7565 S:      Maintained
7566 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
7567 F:      drivers/pci/host/pci-host-generic.c
7568
7569 PCIE DRIVER FOR ST SPEAR13XX
7570 M:      Mohit Kumar <mohit.kumar@st.com>
7571 L:      linux-pci@vger.kernel.org
7572 S:      Maintained
7573 F:      drivers/pci/host/*spear*
7574
7575 PCMCIA SUBSYSTEM
7576 P:      Linux PCMCIA Team
7577 L:      linux-pcmcia@lists.infradead.org
7578 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
7579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
7580 S:      Maintained
7581 F:      Documentation/pcmcia/
7582 F:      drivers/pcmcia/
7583 F:      include/pcmcia/
7584
7585 PCNET32 NETWORK DRIVER
7586 M:      Don Fry <pcnet32@frontier.com>
7587 L:      netdev@vger.kernel.org
7588 S:      Maintained
7589 F:      drivers/net/ethernet/amd/pcnet32.c
7590
7591 PCRYPT PARALLEL CRYPTO ENGINE
7592 M:      Steffen Klassert <steffen.klassert@secunet.com>
7593 L:      linux-crypto@vger.kernel.org
7594 S:      Maintained
7595 F:      crypto/pcrypt.c
7596 F:      include/crypto/pcrypt.h
7597
7598 PER-CPU MEMORY ALLOCATOR
7599 M:      Tejun Heo <tj@kernel.org>
7600 M:      Christoph Lameter <cl@linux-foundation.org>
7601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
7602 S:      Maintained
7603 F:      include/linux/percpu*.h
7604 F:      mm/percpu*.c
7605 F:      arch/*/include/asm/percpu.h
7606
7607 PER-TASK DELAY ACCOUNTING
7608 M:      Balbir Singh <bsingharora@gmail.com>
7609 S:      Maintained
7610 F:      include/linux/delayacct.h
7611 F:      kernel/delayacct.c
7612
7613 PERFORMANCE EVENTS SUBSYSTEM
7614 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
7615 M:      Paul Mackerras <paulus@samba.org>
7616 M:      Ingo Molnar <mingo@redhat.com>
7617 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
7618 L:      linux-kernel@vger.kernel.org
7619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
7620 S:      Supported
7621 F:      kernel/events/*
7622 F:      include/linux/perf_event.h
7623 F:      include/uapi/linux/perf_event.h
7624 F:      arch/*/kernel/perf_event*.c
7625 F:      arch/*/kernel/*/perf_event*.c
7626 F:      arch/*/kernel/*/*/perf_event*.c
7627 F:      arch/*/include/asm/perf_event.h
7628 F:      arch/*/kernel/perf_callchain.c
7629 F:      tools/perf/
7630
7631 PERSONALITY HANDLING
7632 M:      Christoph Hellwig <hch@infradead.org>
7633 L:      linux-abi-devel@lists.sourceforge.net
7634 S:      Maintained
7635 F:      include/linux/personality.h
7636 F:      include/uapi/linux/personality.h
7637
7638 PHONET PROTOCOL
7639 M:      Remi Denis-Courmont <courmisch@gmail.com>
7640 S:      Supported
7641 F:      Documentation/networking/phonet.txt
7642 F:      include/linux/phonet.h
7643 F:      include/net/phonet/
7644 F:      include/uapi/linux/phonet.h
7645 F:      net/phonet/
7646
7647 PHRAM MTD DRIVER
7648 M:      Joern Engel <joern@lazybastard.org>
7649 L:      linux-mtd@lists.infradead.org
7650 S:      Maintained
7651 F:      drivers/mtd/devices/phram.c
7652
7653 PICOLCD HID DRIVER
7654 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
7655 L:      linux-input@vger.kernel.org
7656 S:      Maintained
7657 F:      drivers/hid/hid-picolcd*
7658
7659 PICOXCELL SUPPORT
7660 M:      Jamie Iles <jamie@jamieiles.com>
7661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7662 T:      git git://github.com/jamieiles/linux-2.6-ji.git
7663 S:      Supported
7664 F:      arch/arm/boot/dts/picoxcell*
7665 F:      arch/arm/mach-picoxcell/
7666 F:      drivers/crypto/picoxcell*
7667
7668 PIN CONTROL SUBSYSTEM
7669 M:      Linus Walleij <linus.walleij@linaro.org>
7670 L:      linux-gpio@vger.kernel.org
7671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
7672 S:      Maintained
7673 F:      drivers/pinctrl/
7674 F:      include/linux/pinctrl/
7675
7676 PIN CONTROLLER - ATMEL AT91
7677 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
7678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7679 S:      Maintained
7680 F:      drivers/pinctrl/pinctrl-at91.*
7681
7682 PIN CONTROLLER - INTEL
7683 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7684 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
7685 S:      Maintained
7686 F:      drivers/pinctrl/intel/
7687
7688 PIN CONTROLLER - RENESAS
7689 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7690 L:      linux-sh@vger.kernel.org
7691 S:      Maintained
7692 F:      drivers/pinctrl/sh-pfc/
7693
7694 PIN CONTROLLER - SAMSUNG
7695 M:      Tomasz Figa <tomasz.figa@gmail.com>
7696 M:      Thomas Abraham <thomas.abraham@linaro.org>
7697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7698 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7699 S:      Maintained
7700 F:      drivers/pinctrl/samsung/
7701
7702 PIN CONTROLLER - ST SPEAR
7703 M:      Viresh Kumar <viresh.linux@gmail.com>
7704 L:      spear-devel@list.st.com
7705 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7706 W:      http://www.st.com/spear
7707 S:      Maintained
7708 F:      drivers/pinctrl/spear/
7709
7710 PKTCDVD DRIVER
7711 M:      Jiri Kosina <jkosina@suse.cz>
7712 S:      Maintained
7713 F:      drivers/block/pktcdvd.c
7714 F:      include/linux/pktcdvd.h
7715 F:      include/uapi/linux/pktcdvd.h
7716
7717 PKUNITY SOC DRIVERS
7718 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
7719 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
7720 S:      Maintained
7721 T:      git git://github.com/gxt/linux.git
7722 F:      drivers/input/serio/i8042-unicore32io.h
7723 F:      drivers/i2c/busses/i2c-puv3.c
7724 F:      drivers/video/fbdev/fb-puv3.c
7725 F:      drivers/rtc/rtc-puv3.c
7726
7727 PMBUS HARDWARE MONITORING DRIVERS
7728 M:      Guenter Roeck <linux@roeck-us.net>
7729 L:      lm-sensors@lm-sensors.org
7730 W:      http://www.lm-sensors.org/
7731 W:      http://www.roeck-us.net/linux/drivers/
7732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7733 S:      Maintained
7734 F:      Documentation/hwmon/pmbus
7735 F:      drivers/hwmon/pmbus/
7736 F:      include/linux/i2c/pmbus.h
7737
7738 PMC SIERRA MaxRAID DRIVER
7739 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
7740 L:      linux-scsi@vger.kernel.org
7741 W:      http://www.pmc-sierra.com/
7742 S:      Supported
7743 F:      drivers/scsi/pmcraid.*
7744
7745 PMC SIERRA PM8001 DRIVER
7746 M:      xjtuwjp@gmail.com
7747 M:      lindar_liu@usish.com
7748 L:      pmchba@pmcs.com
7749 L:      linux-scsi@vger.kernel.org
7750 S:      Supported
7751 F:      drivers/scsi/pm8001/
7752
7753 POSIX CLOCKS and TIMERS
7754 M:      Thomas Gleixner <tglx@linutronix.de>
7755 L:      linux-kernel@vger.kernel.org
7756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7757 S:      Maintained
7758 F:      fs/timerfd.c
7759 F:      include/linux/timer*
7760 F:      kernel/time/*timer*
7761
7762 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
7763 M:      Sebastian Reichel <sre@kernel.org>
7764 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
7765 M:      David Woodhouse <dwmw2@infradead.org>
7766 L:      linux-pm@vger.kernel.org
7767 T:      git git://git.infradead.org/battery-2.6.git
7768 S:      Maintained
7769 F:      include/linux/power_supply.h
7770 F:      drivers/power/
7771
7772 PNP SUPPORT
7773 M:      Rafael J. Wysocki <rafael.j.wysocki@intel.com>
7774 S:      Maintained
7775 F:      drivers/pnp/
7776
7777 PNXxxxx I2C DRIVER
7778 M:      Vitaly Wool <vitalywool@gmail.com>
7779 L:      linux-i2c@vger.kernel.org
7780 S:      Maintained
7781 F:      drivers/i2c/busses/i2c-pnx.c
7782
7783 PPP PROTOCOL DRIVERS AND COMPRESSORS
7784 M:      Paul Mackerras <paulus@samba.org>
7785 L:      linux-ppp@vger.kernel.org
7786 S:      Maintained
7787 F:      drivers/net/ppp/ppp_*
7788
7789 PPP OVER ATM (RFC 2364)
7790 M:      Mitchell Blank Jr <mitch@sfgoth.com>
7791 S:      Maintained
7792 F:      net/atm/pppoatm.c
7793 F:      include/uapi/linux/atmppp.h
7794
7795 PPP OVER ETHERNET
7796 M:      Michal Ostrowski <mostrows@earthlink.net>
7797 S:      Maintained
7798 F:      drivers/net/ppp/pppoe.c
7799 F:      drivers/net/ppp/pppox.c
7800
7801 PPP OVER L2TP
7802 M:      James Chapman <jchapman@katalix.com>
7803 S:      Maintained
7804 F:      net/l2tp/l2tp_ppp.c
7805 F:      include/linux/if_pppol2tp.h
7806 F:      include/uapi/linux/if_pppol2tp.h
7807
7808 PPS SUPPORT
7809 M:      Rodolfo Giometti <giometti@enneenne.com>
7810 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
7811 L:      linuxpps@ml.enneenne.com (subscribers-only)
7812 S:      Maintained
7813 F:      Documentation/pps/
7814 F:      drivers/pps/
7815 F:      include/linux/pps*.h
7816
7817 PPTP DRIVER
7818 M:      Dmitry Kozlov <xeb@mail.ru>
7819 L:      netdev@vger.kernel.org
7820 S:      Maintained
7821 F:      drivers/net/ppp/pptp.c
7822 W:      http://sourceforge.net/projects/accel-pptp
7823
7824 PREEMPTIBLE KERNEL
7825 M:      Robert Love <rml@tech9.net>
7826 L:      kpreempt-tech@lists.sourceforge.net
7827 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
7828 S:      Supported
7829 F:      Documentation/preempt-locking.txt
7830 F:      include/linux/preempt.h
7831
7832 PRISM54 WIRELESS DRIVER
7833 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
7834 L:      linux-wireless@vger.kernel.org
7835 W:      http://wireless.kernel.org/en/users/Drivers/p54
7836 S:      Obsolete
7837 F:      drivers/net/wireless/prism54/
7838
7839 PS3 NETWORK SUPPORT
7840 M:      Geoff Levand <geoff@infradead.org>
7841 L:      netdev@vger.kernel.org
7842 L:      cbe-oss-dev@lists.ozlabs.org
7843 S:      Maintained
7844 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
7845
7846 PS3 PLATFORM SUPPORT
7847 M:      Geoff Levand <geoff@infradead.org>
7848 L:      linuxppc-dev@lists.ozlabs.org
7849 L:      cbe-oss-dev@lists.ozlabs.org
7850 S:      Maintained
7851 F:      arch/powerpc/boot/ps3*
7852 F:      arch/powerpc/include/asm/lv1call.h
7853 F:      arch/powerpc/include/asm/ps3*.h
7854 F:      arch/powerpc/platforms/ps3/
7855 F:      drivers/*/ps3*
7856 F:      drivers/ps3/
7857 F:      drivers/rtc/rtc-ps3.c
7858 F:      drivers/usb/host/*ps3.c
7859 F:      sound/ppc/snd_ps3*
7860
7861 PS3VRAM DRIVER
7862 M:      Jim Paris <jim@jtan.com>
7863 L:      cbe-oss-dev@lists.ozlabs.org
7864 S:      Maintained
7865 F:      drivers/block/ps3vram.c
7866
7867 PSTORE FILESYSTEM
7868 M:      Anton Vorontsov <anton@enomsg.org>
7869 M:      Colin Cross <ccross@android.com>
7870 M:      Kees Cook <keescook@chromium.org>
7871 M:      Tony Luck <tony.luck@intel.com>
7872 S:      Maintained
7873 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
7874 F:      fs/pstore/
7875 F:      include/linux/pstore*
7876 F:      drivers/firmware/efi/efi-pstore.c
7877 F:      drivers/acpi/apei/erst.c
7878
7879 PTP HARDWARE CLOCK SUPPORT
7880 M:      Richard Cochran <richardcochran@gmail.com>
7881 L:      netdev@vger.kernel.org
7882 S:      Maintained
7883 W:      http://linuxptp.sourceforge.net/
7884 F:      Documentation/ABI/testing/sysfs-ptp
7885 F:      Documentation/ptp/*
7886 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
7887 F:      drivers/net/phy/dp83640*
7888 F:      drivers/ptp/*
7889 F:      include/linux/ptp_cl*
7890
7891 PTRACE SUPPORT
7892 M:      Roland McGrath <roland@hack.frob.com>
7893 M:      Oleg Nesterov <oleg@redhat.com>
7894 S:      Maintained
7895 F:      include/asm-generic/syscall.h
7896 F:      include/linux/ptrace.h
7897 F:      include/linux/regset.h
7898 F:      include/linux/tracehook.h
7899 F:      include/uapi/linux/ptrace.h
7900 F:      kernel/ptrace.c
7901
7902 PVRUSB2 VIDEO4LINUX DRIVER
7903 M:      Mike Isely <isely@pobox.com>
7904 L:      pvrusb2@isely.net       (subscribers-only)
7905 L:      linux-media@vger.kernel.org
7906 W:      http://www.isely.net/pvrusb2/
7907 T:      git git://linuxtv.org/media_tree.git
7908 S:      Maintained
7909 F:      Documentation/video4linux/README.pvrusb2
7910 F:      drivers/media/usb/pvrusb2/
7911
7912 PWC WEBCAM DRIVER
7913 M:      Hans de Goede <hdegoede@redhat.com>
7914 L:      linux-media@vger.kernel.org
7915 T:      git git://linuxtv.org/media_tree.git
7916 S:      Maintained
7917 F:      drivers/media/usb/pwc/*
7918
7919 PWM FAN DRIVER
7920 M:      Kamil Debski <k.debski@samsung.com>
7921 L:      lm-sensors@lm-sensors.org
7922 S:      Supported
7923 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
7924 F:      Documentation/hwmon/pwm-fan
7925 F:      drivers/hwmon/pwm-fan.c
7926
7927 PWM SUBSYSTEM
7928 M:      Thierry Reding <thierry.reding@gmail.com>
7929 L:      linux-pwm@vger.kernel.org
7930 S:      Maintained
7931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
7932 F:      Documentation/pwm.txt
7933 F:      Documentation/devicetree/bindings/pwm/
7934 F:      include/linux/pwm.h
7935 F:      drivers/pwm/
7936 F:      drivers/video/backlight/pwm_bl.c
7937 F:      include/linux/pwm_backlight.h
7938
7939 PXA2xx/PXA3xx SUPPORT
7940 M:      Daniel Mack <daniel@zonque.org>
7941 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7942 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7944 T:      git git://github.com/hzhuang1/linux.git
7945 T:      git git://github.com/rjarzmik/linux.git
7946 S:      Maintained
7947 F:      arch/arm/mach-pxa/
7948 F:      drivers/pcmcia/pxa2xx*
7949 F:      drivers/spi/spi-pxa2xx*
7950 F:      drivers/usb/gadget/udc/pxa2*
7951 F:      include/sound/pxa2xx-lib.h
7952 F:      sound/arm/pxa*
7953 F:      sound/soc/pxa/
7954
7955 PXA3xx NAND FLASH DRIVER
7956 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
7957 L:      linux-mtd@lists.infradead.org
7958 S:      Maintained
7959 F:      drivers/mtd/nand/pxa3xx_nand.c
7960
7961 MMP SUPPORT
7962 M:      Eric Miao <eric.y.miao@gmail.com>
7963 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7965 T:      git git://github.com/hzhuang1/linux.git
7966 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
7967 S:      Maintained
7968 F:      arch/arm/mach-mmp/
7969
7970 PXA MMCI DRIVER
7971 S:      Orphan
7972
7973 PXA RTC DRIVER
7974 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7975 L:      rtc-linux@googlegroups.com
7976 S:      Maintained
7977
7978 QAT DRIVER
7979 M:      Tadeusz Struk <tadeusz.struk@intel.com>
7980 L:      qat-linux@intel.com
7981 S:      Supported
7982 F:      drivers/crypto/qat/
7983
7984 QIB DRIVER
7985 M:      Mike Marciniszyn <infinipath@intel.com>
7986 L:      linux-rdma@vger.kernel.org
7987 S:      Supported
7988 F:      drivers/infiniband/hw/qib/
7989
7990 QLOGIC QLA1280 SCSI DRIVER
7991 M:      Michael Reed <mdr@sgi.com>
7992 L:      linux-scsi@vger.kernel.org
7993 S:      Maintained
7994 F:      drivers/scsi/qla1280.[ch]
7995
7996 QLOGIC QLA2XXX FC-SCSI DRIVER
7997 M:      qla2xxx-upstream@qlogic.com
7998 L:      linux-scsi@vger.kernel.org
7999 S:      Supported
8000 F:      Documentation/scsi/LICENSE.qla2xxx
8001 F:      drivers/scsi/qla2xxx/
8002
8003 QLOGIC QLA4XXX iSCSI DRIVER
8004 M:      QLogic-Storage-Upstream@qlogic.com
8005 L:      linux-scsi@vger.kernel.org
8006 S:      Supported
8007 F:      Documentation/scsi/LICENSE.qla4xxx
8008 F:      drivers/scsi/qla4xxx/
8009
8010 QLOGIC QLA3XXX NETWORK DRIVER
8011 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8012 M:      Ron Mercer <ron.mercer@qlogic.com>
8013 M:      linux-driver@qlogic.com
8014 L:      netdev@vger.kernel.org
8015 S:      Supported
8016 F:      Documentation/networking/LICENSE.qla3xxx
8017 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8018
8019 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8020 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
8021 M:      Dept-GELinuxNICDev@qlogic.com
8022 L:      netdev@vger.kernel.org
8023 S:      Supported
8024 F:      drivers/net/ethernet/qlogic/qlcnic/
8025
8026 QLOGIC QLGE 10Gb ETHERNET DRIVER
8027 M:      Harish Patil <harish.patil@qlogic.com>
8028 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8029 M:      Dept-GELinuxNICDev@qlogic.com
8030 M:      linux-driver@qlogic.com
8031 L:      netdev@vger.kernel.org
8032 S:      Supported
8033 F:      drivers/net/ethernet/qlogic/qlge/
8034
8035 QNX4 FILESYSTEM
8036 M:      Anders Larsen <al@alarsen.net>
8037 W:      http://www.alarsen.net/linux/qnx4fs/
8038 S:      Maintained
8039 F:      fs/qnx4/
8040 F:      include/uapi/linux/qnx4_fs.h
8041 F:      include/uapi/linux/qnxtypes.h
8042
8043 QT1010 MEDIA DRIVER
8044 M:      Antti Palosaari <crope@iki.fi>
8045 L:      linux-media@vger.kernel.org
8046 W:      http://linuxtv.org/
8047 W:      http://palosaari.fi/linux/
8048 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8049 T:      git git://linuxtv.org/anttip/media_tree.git
8050 S:      Maintained
8051 F:      drivers/media/tuners/qt1010*
8052
8053 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8054 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8055 L:      linux-wireless@vger.kernel.org
8056 L:      ath9k-devel@lists.ath9k.org
8057 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8058 S:      Supported
8059 F:      drivers/net/wireless/ath/ath9k/
8060
8061 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8062 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8063 L:      ath10k@lists.infradead.org
8064 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8065 T:      git git://github.com/kvalo/ath.git
8066 S:      Supported
8067 F:      drivers/net/wireless/ath/ath10k/
8068
8069 QUALCOMM HEXAGON ARCHITECTURE
8070 M:      Richard Kuo <rkuo@codeaurora.org>
8071 L:      linux-hexagon@vger.kernel.org
8072 S:      Supported
8073 F:      arch/hexagon/
8074
8075 QUALCOMM WCN36XX WIRELESS DRIVER
8076 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8077 L:      wcn36xx@lists.infradead.org
8078 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8079 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8080 S:      Supported
8081 F:      drivers/net/wireless/ath/wcn36xx/
8082
8083 RADOS BLOCK DEVICE (RBD)
8084 M:      Ilya Dryomov <idryomov@gmail.com>
8085 M:      Sage Weil <sage@redhat.com>
8086 M:      Alex Elder <elder@kernel.org>
8087 M:      ceph-devel@vger.kernel.org
8088 W:      http://ceph.com/
8089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8090 S:      Supported
8091 F:      drivers/block/rbd.c
8092 F:      drivers/block/rbd_types.h
8093
8094 RADEON FRAMEBUFFER DISPLAY DRIVER
8095 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8096 L:      linux-fbdev@vger.kernel.org
8097 S:      Maintained
8098 F:      drivers/video/fbdev/aty/radeon*
8099 F:      include/uapi/linux/radeonfb.h
8100
8101 RADIOSHARK RADIO DRIVER
8102 M:      Hans de Goede <hdegoede@redhat.com>
8103 L:      linux-media@vger.kernel.org
8104 T:      git git://linuxtv.org/media_tree.git
8105 S:      Maintained
8106 F:      drivers/media/radio/radio-shark.c
8107
8108 RADIOSHARK2 RADIO DRIVER
8109 M:      Hans de Goede <hdegoede@redhat.com>
8110 L:      linux-media@vger.kernel.org
8111 T:      git git://linuxtv.org/media_tree.git
8112 S:      Maintained
8113 F:      drivers/media/radio/radio-shark2.c
8114 F:      drivers/media/radio/radio-tea5777.c
8115
8116 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8117 M:      Paul Mackerras <paulus@samba.org>
8118 L:      linux-fbdev@vger.kernel.org
8119 S:      Maintained
8120 F:      drivers/video/fbdev/aty/aty128fb.c
8121
8122 RALINK RT2X00 WIRELESS LAN DRIVER
8123 P:      rt2x00 project
8124 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8125 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8126 L:      linux-wireless@vger.kernel.org
8127 L:      users@rt2x00.serialmonkey.com (moderated for non-subscribers)
8128 W:      http://rt2x00.serialmonkey.com/
8129 S:      Maintained
8130 F:      drivers/net/wireless/rt2x00/
8131
8132 RAMDISK RAM BLOCK DEVICE DRIVER
8133 M:      Jens Axboe <axboe@kernel.dk>
8134 S:      Maintained
8135 F:      Documentation/blockdev/ramdisk.txt
8136 F:      drivers/block/brd.c
8137
8138 PERSISTENT MEMORY DRIVER
8139 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
8140 L:      linux-nvdimm@lists.01.org
8141 S:      Supported
8142 F:      drivers/block/pmem.c
8143
8144 RANDOM NUMBER DRIVER
8145 M:      "Theodore Ts'o" <tytso@mit.edu>
8146 S:      Maintained
8147 F:      drivers/char/random.c
8148
8149 RAPIDIO SUBSYSTEM
8150 M:      Matt Porter <mporter@kernel.crashing.org>
8151 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8152 S:      Maintained
8153 F:      drivers/rapidio/
8154
8155 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8156 L:      linux-wireless@vger.kernel.org
8157 S:      Orphan
8158 F:      drivers/net/wireless/ray*
8159
8160 RCUTORTURE MODULE
8161 M:      Josh Triplett <josh@joshtriplett.org>
8162 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8163 L:      linux-kernel@vger.kernel.org
8164 S:      Supported
8165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8166 F:      Documentation/RCU/torture.txt
8167 F:      kernel/rcu/rcutorture.c
8168
8169 RCUTORTURE TEST FRAMEWORK
8170 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8171 M:      Josh Triplett <josh@joshtriplett.org>
8172 R:      Steven Rostedt <rostedt@goodmis.org>
8173 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8174 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
8175 L:      linux-kernel@vger.kernel.org
8176 S:      Supported
8177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8178 F:      tools/testing/selftests/rcutorture
8179
8180 RDC R-321X SoC
8181 M:      Florian Fainelli <florian@openwrt.org>
8182 S:      Maintained
8183
8184 RDC R6040 FAST ETHERNET DRIVER
8185 M:      Florian Fainelli <florian@openwrt.org>
8186 L:      netdev@vger.kernel.org
8187 S:      Maintained
8188 F:      drivers/net/ethernet/rdc/r6040.c
8189
8190 RDS - RELIABLE DATAGRAM SOCKETS
8191 M:      Chien Yen <chien.yen@oracle.com>
8192 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8193 S:      Supported
8194 F:      net/rds/
8195
8196 READ-COPY UPDATE (RCU)
8197 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8198 M:      Josh Triplett <josh@joshtriplett.org>
8199 R:      Steven Rostedt <rostedt@goodmis.org>
8200 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8201 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
8202 L:      linux-kernel@vger.kernel.org
8203 W:      http://www.rdrop.com/users/paulmck/RCU/
8204 S:      Supported
8205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8206 F:      Documentation/RCU/
8207 X:      Documentation/RCU/torture.txt
8208 F:      include/linux/rcu*
8209 X:      include/linux/srcu.h
8210 F:      kernel/rcu/
8211 X:      kernel/torture.c
8212
8213 REAL TIME CLOCK (RTC) SUBSYSTEM
8214 M:      Alessandro Zummo <a.zummo@towertech.it>
8215 L:      rtc-linux@googlegroups.com
8216 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8217 S:      Maintained
8218 F:      Documentation/rtc.txt
8219 F:      drivers/rtc/
8220 F:      include/linux/rtc.h
8221 F:      include/uapi/linux/rtc.h
8222
8223 REALTEK AUDIO CODECS
8224 M:      Bard Liao <bardliao@realtek.com>
8225 M:      Oder Chiou <oder_chiou@realtek.com>
8226 S:      Maintained
8227 F:      sound/soc/codecs/rt*
8228 F:      include/sound/rt*.h
8229
8230 REISERFS FILE SYSTEM
8231 L:      reiserfs-devel@vger.kernel.org
8232 S:      Supported
8233 F:      fs/reiserfs/
8234
8235 REGISTER MAP ABSTRACTION
8236 M:      Mark Brown <broonie@kernel.org>
8237 L:      linux-kernel@vger.kernel.org
8238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8239 S:      Supported
8240 F:      drivers/base/regmap/
8241 F:      include/linux/regmap.h
8242
8243 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8244 M:      Ohad Ben-Cohen <ohad@wizery.com>
8245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8246 S:      Maintained
8247 F:      drivers/remoteproc/
8248 F:      Documentation/remoteproc.txt
8249 F:      include/linux/remoteproc.h
8250
8251 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8252 M:      Ohad Ben-Cohen <ohad@wizery.com>
8253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8254 S:      Maintained
8255 F:      drivers/rpmsg/
8256 F:      Documentation/rpmsg.txt
8257 F:      include/linux/rpmsg.h
8258
8259 RESET CONTROLLER FRAMEWORK
8260 M:      Philipp Zabel <p.zabel@pengutronix.de>
8261 S:      Maintained
8262 F:      drivers/reset/
8263 F:      Documentation/devicetree/bindings/reset/
8264 F:      include/linux/reset.h
8265 F:      include/linux/reset-controller.h
8266
8267 RFKILL
8268 M:      Johannes Berg <johannes@sipsolutions.net>
8269 L:      linux-wireless@vger.kernel.org
8270 W:      http://wireless.kernel.org/
8271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8273 S:      Maintained
8274 F:      Documentation/rfkill.txt
8275 F:      net/rfkill/
8276
8277 RHASHTABLE
8278 M:      Thomas Graf <tgraf@suug.ch>
8279 L:      netdev@vger.kernel.org
8280 S:      Maintained
8281 F:      lib/rhashtable.c
8282 F:      include/linux/rhashtable.h
8283
8284 RICOH SMARTMEDIA/XD DRIVER
8285 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8286 S:      Maintained
8287 F:      drivers/mtd/nand/r852.c
8288 F:      drivers/mtd/nand/r852.h
8289
8290 RICOH R5C592 MEMORYSTICK DRIVER
8291 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8292 S:      Maintained
8293 F:      drivers/memstick/host/r592.*
8294
8295 ROCCAT DRIVERS
8296 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8297 W:      http://sourceforge.net/projects/roccat/
8298 S:      Maintained
8299 F:      drivers/hid/hid-roccat*
8300 F:      include/linux/hid-roccat*
8301 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8302
8303 ROCKER DRIVER
8304 M:      Jiri Pirko <jiri@resnulli.us>
8305 M:      Scott Feldman <sfeldma@gmail.com>
8306 L:      netdev@vger.kernel.org
8307 S:      Supported
8308 F:      drivers/net/ethernet/rocker/
8309
8310 ROCKETPORT DRIVER
8311 P:      Comtrol Corp.
8312 W:      http://www.comtrol.com
8313 S:      Maintained
8314 F:      Documentation/serial/rocket.txt
8315 F:      drivers/tty/rocket*
8316
8317 ROCKETPORT EXPRESS/INFINITY DRIVER
8318 M:      Kevin Cernekee <cernekee@gmail.com>
8319 L:      linux-serial@vger.kernel.org
8320 S:      Odd Fixes
8321 F:      drivers/tty/serial/rp2.*
8322
8323 ROSE NETWORK LAYER
8324 M:      Ralf Baechle <ralf@linux-mips.org>
8325 L:      linux-hams@vger.kernel.org
8326 W:      http://www.linux-ax25.org/
8327 S:      Maintained
8328 F:      include/net/rose.h
8329 F:      include/uapi/linux/rose.h
8330 F:      net/rose/
8331
8332 RTL2830 MEDIA DRIVER
8333 M:      Antti Palosaari <crope@iki.fi>
8334 L:      linux-media@vger.kernel.org
8335 W:      http://linuxtv.org/
8336 W:      http://palosaari.fi/linux/
8337 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8338 T:      git git://linuxtv.org/anttip/media_tree.git
8339 S:      Maintained
8340 F:      drivers/media/dvb-frontends/rtl2830*
8341
8342 RTL2832 MEDIA DRIVER
8343 M:      Antti Palosaari <crope@iki.fi>
8344 L:      linux-media@vger.kernel.org
8345 W:      http://linuxtv.org/
8346 W:      http://palosaari.fi/linux/
8347 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8348 T:      git git://linuxtv.org/anttip/media_tree.git
8349 S:      Maintained
8350 F:      drivers/media/dvb-frontends/rtl2832*
8351
8352 RTL2832_SDR MEDIA DRIVER
8353 M:      Antti Palosaari <crope@iki.fi>
8354 L:      linux-media@vger.kernel.org
8355 W:      http://linuxtv.org/
8356 W:      http://palosaari.fi/linux/
8357 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8358 T:      git git://linuxtv.org/anttip/media_tree.git
8359 S:      Maintained
8360 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8361
8362 RTL8180 WIRELESS DRIVER
8363 L:      linux-wireless@vger.kernel.org
8364 W:      http://wireless.kernel.org/
8365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8366 S:      Orphan
8367 F:      drivers/net/wireless/rtl818x/rtl8180/
8368
8369 RTL8187 WIRELESS DRIVER
8370 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8371 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8372 M:      Larry Finger <Larry.Finger@lwfinger.net>
8373 L:      linux-wireless@vger.kernel.org
8374 W:      http://wireless.kernel.org/
8375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8376 S:      Maintained
8377 F:      drivers/net/wireless/rtl818x/rtl8187/
8378
8379 RTL8192CE WIRELESS DRIVER
8380 M:      Larry Finger <Larry.Finger@lwfinger.net>
8381 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8382 L:      linux-wireless@vger.kernel.org
8383 W:      http://wireless.kernel.org/
8384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8385 S:      Maintained
8386 F:      drivers/net/wireless/rtlwifi/
8387 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8388
8389 S3 SAVAGE FRAMEBUFFER DRIVER
8390 M:      Antonino Daplas <adaplas@gmail.com>
8391 L:      linux-fbdev@vger.kernel.org
8392 S:      Maintained
8393 F:      drivers/video/fbdev/savage/
8394
8395 S390
8396 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8397 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8398 M:      linux390@de.ibm.com
8399 L:      linux-s390@vger.kernel.org
8400 W:      http://www.ibm.com/developerworks/linux/linux390/
8401 S:      Supported
8402 F:      arch/s390/
8403 F:      drivers/s390/
8404 F:      Documentation/s390/
8405 F:      Documentation/DocBook/s390*
8406
8407 S390 COMMON I/O LAYER
8408 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8409 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8410 L:      linux-s390@vger.kernel.org
8411 W:      http://www.ibm.com/developerworks/linux/linux390/
8412 S:      Supported
8413 F:      drivers/s390/cio/
8414
8415 S390 DASD DRIVER
8416 M:      Stefan Weinhuber <wein@de.ibm.com>
8417 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8418 L:      linux-s390@vger.kernel.org
8419 W:      http://www.ibm.com/developerworks/linux/linux390/
8420 S:      Supported
8421 F:      drivers/s390/block/dasd*
8422 F:      block/partitions/ibm.c
8423
8424 S390 NETWORK DRIVERS
8425 M:      Ursula Braun <ursula.braun@de.ibm.com>
8426 M:      linux390@de.ibm.com
8427 L:      linux-s390@vger.kernel.org
8428 W:      http://www.ibm.com/developerworks/linux/linux390/
8429 S:      Supported
8430 F:      drivers/s390/net/
8431
8432 S390 PCI SUBSYSTEM
8433 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8434 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8435 L:      linux-s390@vger.kernel.org
8436 W:      http://www.ibm.com/developerworks/linux/linux390/
8437 S:      Supported
8438 F:      arch/s390/pci/
8439 F:      drivers/pci/hotplug/s390_pci_hpc.c
8440
8441 S390 ZCRYPT DRIVER
8442 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8443 M:      linux390@de.ibm.com
8444 L:      linux-s390@vger.kernel.org
8445 W:      http://www.ibm.com/developerworks/linux/linux390/
8446 S:      Supported
8447 F:      drivers/s390/crypto/
8448
8449 S390 ZFCP DRIVER
8450 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8451 M:      linux390@de.ibm.com
8452 L:      linux-s390@vger.kernel.org
8453 W:      http://www.ibm.com/developerworks/linux/linux390/
8454 S:      Supported
8455 F:      drivers/s390/scsi/zfcp_*
8456
8457 S390 IUCV NETWORK LAYER
8458 M:      Ursula Braun <ursula.braun@de.ibm.com>
8459 M:      linux390@de.ibm.com
8460 L:      linux-s390@vger.kernel.org
8461 W:      http://www.ibm.com/developerworks/linux/linux390/
8462 S:      Supported
8463 F:      drivers/s390/net/*iucv*
8464 F:      include/net/iucv/
8465 F:      net/iucv/
8466
8467 S3C24XX SD/MMC Driver
8468 M:      Ben Dooks <ben-linux@fluff.org>
8469 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8470 S:      Supported
8471 F:      drivers/mmc/host/s3cmci.*
8472
8473 SAA6588 RDS RECEIVER DRIVER
8474 M:      Hans Verkuil <hverkuil@xs4all.nl>
8475 L:      linux-media@vger.kernel.org
8476 T:      git git://linuxtv.org/media_tree.git
8477 W:      http://linuxtv.org
8478 S:      Odd Fixes
8479 F:      drivers/media/i2c/saa6588*
8480
8481 SAA7134 VIDEO4LINUX DRIVER
8482 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8483 L:      linux-media@vger.kernel.org
8484 W:      http://linuxtv.org
8485 T:      git git://linuxtv.org/media_tree.git
8486 S:      Odd fixes
8487 F:      Documentation/video4linux/*.saa7134
8488 F:      drivers/media/pci/saa7134/
8489
8490 SAA7146 VIDEO4LINUX-2 DRIVER
8491 M:      Hans Verkuil <hverkuil@xs4all.nl>
8492 L:      linux-media@vger.kernel.org
8493 T:      git git://linuxtv.org/media_tree.git
8494 S:      Maintained
8495 F:      drivers/media/common/saa7146/
8496 F:      drivers/media/pci/saa7146/
8497 F:      include/media/saa7146*
8498
8499 SAMSUNG LAPTOP DRIVER
8500 M:      Corentin Chary <corentin.chary@gmail.com>
8501 L:      platform-driver-x86@vger.kernel.org
8502 S:      Maintained
8503 F:      drivers/platform/x86/samsung-laptop.c
8504
8505 SAMSUNG AUDIO (ASoC) DRIVERS
8506 M:      Sangbeom Kim <sbkim73@samsung.com>
8507 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8508 S:      Supported
8509 F:      sound/soc/samsung/
8510
8511 SAMSUNG FRAMEBUFFER DRIVER
8512 M:      Jingoo Han <jg1.han@samsung.com>
8513 L:      linux-fbdev@vger.kernel.org
8514 S:      Maintained
8515 F:      drivers/video/fbdev/s3c-fb.c
8516
8517 SAMSUNG MULTIFUNCTION DEVICE DRIVERS
8518 M:      Sangbeom Kim <sbkim73@samsung.com>
8519 L:      linux-kernel@vger.kernel.org
8520 S:      Supported
8521 F:      drivers/mfd/sec*.c
8522 F:      drivers/regulator/s2m*.c
8523 F:      drivers/regulator/s5m*.c
8524 F:      include/linux/mfd/samsung/
8525
8526 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
8527 M:      Kyungmin Park <kyungmin.park@samsung.com>
8528 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8529 L:      linux-media@vger.kernel.org
8530 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
8531 S:      Supported
8532 F:      drivers/media/platform/exynos4-is/
8533
8534 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
8535 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
8536 L:      linux-media@vger.kernel.org
8537 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8538 S:      Maintained
8539 F:      drivers/media/platform/s3c-camif/
8540 F:      include/media/s3c_camif.h
8541
8542 SAMSUNG S5C73M3 CAMERA DRIVER
8543 M:      Kyungmin Park <kyungmin.park@samsung.com>
8544 M:      Andrzej Hajda <a.hajda@samsung.com>
8545 L:      linux-media@vger.kernel.org
8546 S:      Supported
8547 F:      drivers/media/i2c/s5c73m3/*
8548
8549 SAMSUNG S5K5BAF CAMERA DRIVER
8550 M:      Kyungmin Park <kyungmin.park@samsung.com>
8551 M:      Andrzej Hajda <a.hajda@samsung.com>
8552 L:      linux-media@vger.kernel.org
8553 S:      Supported
8554 F:      drivers/media/i2c/s5k5baf.c
8555
8556 SAMSUNG SOC CLOCK DRIVERS
8557 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8558 M:      Tomasz Figa <tomasz.figa@gmail.com>
8559 S:      Supported
8560 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8561 F:      drivers/clk/samsung/
8562
8563 SAMSUNG SXGBE DRIVERS
8564 M:      Byungho An <bh74.an@samsung.com>
8565 M:      Girish K S <ks.giri@samsung.com>
8566 M:      Vipul Pandya <vipul.pandya@samsung.com>
8567 S:      Supported
8568 L:      netdev@vger.kernel.org
8569 F:      drivers/net/ethernet/samsung/sxgbe/
8570
8571 SAMSUNG THERMAL DRIVER
8572 M:      Lukasz Majewski <l.majewski@samsung.com>
8573 L:      linux-pm@vger.kernel.org
8574 L:      linux-samsung-soc@vger.kernel.org
8575 S:      Supported
8576 T:      https://github.com/lmajewski/linux-samsung-thermal.git
8577 F:      drivers/thermal/samsung/
8578
8579 SAMSUNG USB2 PHY DRIVER
8580 M:      Kamil Debski <k.debski@samsung.com>
8581 L:      linux-kernel@vger.kernel.org
8582 S:      Supported
8583 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
8584 F:      Documentation/phy/samsung-usb2.txt
8585 F:      drivers/phy/phy-exynos4210-usb2.c
8586 F:      drivers/phy/phy-exynos4x12-usb2.c
8587 F:      drivers/phy/phy-exynos5250-usb2.c
8588 F:      drivers/phy/phy-s5pv210-usb2.c
8589 F:      drivers/phy/phy-samsung-usb2.c
8590 F:      drivers/phy/phy-samsung-usb2.h
8591
8592 SERIAL DRIVERS
8593 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8594 L:      linux-serial@vger.kernel.org
8595 S:      Maintained
8596 F:      drivers/tty/serial/
8597
8598 SYNOPSYS DESIGNWARE DMAC DRIVER
8599 M:      Viresh Kumar <viresh.linux@gmail.com>
8600 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8601 S:      Maintained
8602 F:      include/linux/dma/dw.h
8603 F:      include/linux/platform_data/dma-dw.h
8604 F:      drivers/dma/dw/
8605
8606 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
8607 M:      Seungwon Jeon <tgih.jun@samsung.com>
8608 M:      Jaehoon Chung <jh80.chung@samsung.com>
8609 L:      linux-mmc@vger.kernel.org
8610 S:      Maintained
8611 F:      include/linux/mmc/dw_mmc.h
8612 F:      drivers/mmc/host/dw_mmc*
8613
8614 THUNDERBOLT DRIVER
8615 M:      Andreas Noever <andreas.noever@gmail.com>
8616 S:      Maintained
8617 F:      drivers/thunderbolt/
8618
8619 TIMEKEEPING, CLOCKSOURCE CORE, NTP
8620 M:      John Stultz <john.stultz@linaro.org>
8621 M:      Thomas Gleixner <tglx@linutronix.de>
8622 L:      linux-kernel@vger.kernel.org
8623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8624 S:      Supported
8625 F:      include/linux/clocksource.h
8626 F:      include/linux/time.h
8627 F:      include/linux/timex.h
8628 F:      include/uapi/linux/time.h
8629 F:      include/uapi/linux/timex.h
8630 F:      kernel/time/clocksource.c
8631 F:      kernel/time/time*.c
8632 F:      kernel/time/ntp.c
8633 F:      tools/testing/selftests/timers/
8634
8635 SC1200 WDT DRIVER
8636 M:      Zwane Mwaikambo <zwanem@gmail.com>
8637 S:      Maintained
8638 F:      drivers/watchdog/sc1200wdt.c
8639
8640 SCHEDULER
8641 M:      Ingo Molnar <mingo@redhat.com>
8642 M:      Peter Zijlstra <peterz@infradead.org>
8643 L:      linux-kernel@vger.kernel.org
8644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
8645 S:      Maintained
8646 F:      kernel/sched/
8647 F:      include/linux/sched.h
8648 F:      include/uapi/linux/sched.h
8649 F:      include/linux/wait.h
8650
8651 SCORE ARCHITECTURE
8652 M:      Chen Liqin <liqin.linux@gmail.com>
8653 M:      Lennox Wu <lennox.wu@gmail.com>
8654 W:      http://www.sunplus.com
8655 S:      Supported
8656 F:      arch/score/
8657
8658 SCSI CDROM DRIVER
8659 M:      Jens Axboe <axboe@kernel.dk>
8660 L:      linux-scsi@vger.kernel.org
8661 W:      http://www.kernel.dk
8662 S:      Maintained
8663 F:      drivers/scsi/sr*
8664
8665 SCSI RDMA PROTOCOL (SRP) INITIATOR
8666 M:      Bart Van Assche <bart.vanassche@sandisk.com>
8667 L:      linux-rdma@vger.kernel.org
8668 S:      Supported
8669 W:      http://www.openfabrics.org
8670 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
8672 F:      drivers/infiniband/ulp/srp/
8673 F:      include/scsi/srp.h
8674
8675 SCSI SG DRIVER
8676 M:      Doug Gilbert <dgilbert@interlog.com>
8677 L:      linux-scsi@vger.kernel.org
8678 W:      http://sg.danny.cz/sg
8679 S:      Maintained
8680 F:      Documentation/scsi/scsi-generic.txt
8681 F:      drivers/scsi/sg.c
8682 F:      include/scsi/sg.h
8683
8684 SCSI SUBSYSTEM
8685 M:      "James E.J. Bottomley" <JBottomley@parallels.com>
8686 L:      linux-scsi@vger.kernel.org
8687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
8688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
8689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
8690 S:      Maintained
8691 F:      drivers/scsi/
8692 F:      include/scsi/
8693
8694 SCSI TAPE DRIVER
8695 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
8696 L:      linux-scsi@vger.kernel.org
8697 S:      Maintained
8698 F:      Documentation/scsi/st.txt
8699 F:      drivers/scsi/st.*
8700 F:      drivers/scsi/st_*.h
8701
8702 SCTP PROTOCOL
8703 M:      Vlad Yasevich <vyasevich@gmail.com>
8704 M:      Neil Horman <nhorman@tuxdriver.com>
8705 L:      linux-sctp@vger.kernel.org
8706 W:      http://lksctp.sourceforge.net
8707 S:      Maintained
8708 F:      Documentation/networking/sctp.txt
8709 F:      include/linux/sctp.h
8710 F:      include/uapi/linux/sctp.h
8711 F:      include/net/sctp/
8712 F:      net/sctp/
8713
8714 SCx200 CPU SUPPORT
8715 M:      Jim Cromie <jim.cromie@gmail.com>
8716 S:      Odd Fixes
8717 F:      Documentation/i2c/busses/scx200_acb
8718 F:      arch/x86/platform/scx200/
8719 F:      drivers/watchdog/scx200_wdt.c
8720 F:      drivers/i2c/busses/scx200*
8721 F:      drivers/mtd/maps/scx200_docflash.c
8722 F:      include/linux/scx200.h
8723
8724 SCx200 GPIO DRIVER
8725 M:      Jim Cromie <jim.cromie@gmail.com>
8726 S:      Maintained
8727 F:      drivers/char/scx200_gpio.c
8728 F:      include/linux/scx200_gpio.h
8729
8730 SCx200 HRT CLOCKSOURCE DRIVER
8731 M:      Jim Cromie <jim.cromie@gmail.com>
8732 S:      Maintained
8733 F:      drivers/clocksource/scx200_hrt.c
8734
8735 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
8736 M:      Sascha Sommer <saschasommer@freenet.de>
8737 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
8738 S:      Maintained
8739 F:      drivers/mmc/host/sdricoh_cs.c
8740
8741 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
8742 L:      linux-mmc@vger.kernel.org
8743 S:      Orphan
8744 F:      drivers/mmc/host/sdhci.*
8745 F:      drivers/mmc/host/sdhci-pltfm.[ch]
8746
8747 SECURE COMPUTING
8748 M:      Kees Cook <keescook@chromium.org>
8749 R:      Andy Lutomirski <luto@amacapital.net>
8750 R:      Will Drewry <wad@chromium.org>
8751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
8752 S:      Supported
8753 F:      kernel/seccomp.c
8754 F:      include/uapi/linux/seccomp.h
8755 F:      include/linux/seccomp.h
8756 K:      \bsecure_computing
8757 K:      \bTIF_SECCOMP\b
8758
8759 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
8760 M:      Ben Dooks <ben-linux@fluff.org>
8761 M:      Jaehoon Chung <jh80.chung@samsung.com>
8762 L:      linux-mmc@vger.kernel.org
8763 S:      Maintained
8764 F:      drivers/mmc/host/sdhci-s3c*
8765
8766 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
8767 M:      Viresh Kumar <viresh.linux@gmail.com>
8768 L:      spear-devel@list.st.com
8769 L:      linux-mmc@vger.kernel.org
8770 S:      Maintained
8771 F:      drivers/mmc/host/sdhci-spear.c
8772
8773 SECURITY SUBSYSTEM
8774 M:      James Morris <james.l.morris@oracle.com>
8775 M:      Serge E. Hallyn <serge@hallyn.com>
8776 L:      linux-security-module@vger.kernel.org (suggested Cc:)
8777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
8778 W:      http://kernsec.org/
8779 S:      Supported
8780 F:      security/
8781
8782 SECURITY CONTACT
8783 M:      Security Officers <security@kernel.org>
8784 S:      Supported
8785
8786 SELINUX SECURITY MODULE
8787 M:      Paul Moore <paul@paul-moore.com>
8788 M:      Stephen Smalley <sds@tycho.nsa.gov>
8789 M:      Eric Paris <eparis@parisplace.org>
8790 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
8791 W:      http://selinuxproject.org
8792 T:      git git://git.infradead.org/users/pcmoore/selinux
8793 S:      Supported
8794 F:      include/linux/selinux*
8795 F:      security/selinux/
8796 F:      scripts/selinux/
8797
8798 APPARMOR SECURITY MODULE
8799 M:      John Johansen <john.johansen@canonical.com>
8800 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
8801 W:      apparmor.wiki.kernel.org
8802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
8803 S:      Supported
8804 F:      security/apparmor/
8805
8806 SENSABLE PHANTOM
8807 M:      Jiri Slaby <jirislaby@gmail.com>
8808 S:      Maintained
8809 F:      drivers/misc/phantom.c
8810 F:      include/uapi/linux/phantom.h
8811
8812 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
8813 M:      Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
8814 L:      linux-scsi@vger.kernel.org
8815 W:      http://www.emulex.com
8816 S:      Supported
8817 F:      drivers/scsi/be2iscsi/
8818
8819 SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
8820 M:      Sathya Perla <sathya.perla@emulex.com>
8821 M:      Subbu Seetharaman <subbu.seetharaman@emulex.com>
8822 M:      Ajit Khaparde <ajit.khaparde@emulex.com>
8823 L:      netdev@vger.kernel.org
8824 W:      http://www.emulex.com
8825 S:      Supported
8826 F:      drivers/net/ethernet/emulex/benet/
8827
8828 SFC NETWORK DRIVER
8829 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
8830 M:      Shradha Shah <sshah@solarflare.com>
8831 L:      netdev@vger.kernel.org
8832 S:      Supported
8833 F:      drivers/net/ethernet/sfc/
8834
8835 SGI GRU DRIVER
8836 M:      Dimitri Sivanich <sivanich@sgi.com>
8837 S:      Maintained
8838 F:      drivers/misc/sgi-gru/
8839
8840 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
8841 M:      Pat Gefre <pfg@sgi.com>
8842 L:      linux-ia64@vger.kernel.org
8843 S:      Supported
8844 F:      Documentation/ia64/serial.txt
8845 F:      drivers/tty/serial/ioc?_serial.c
8846 F:      include/linux/ioc?.h
8847
8848 SGI XP/XPC/XPNET DRIVER
8849 M:      Cliff Whickman <cpw@sgi.com>
8850 M:      Robin Holt <robinmholt@gmail.com>
8851 S:      Maintained
8852 F:      drivers/misc/sgi-xp/
8853
8854 SI2157 MEDIA DRIVER
8855 M:      Antti Palosaari <crope@iki.fi>
8856 L:      linux-media@vger.kernel.org
8857 W:      http://linuxtv.org/
8858 W:      http://palosaari.fi/linux/
8859 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8860 T:      git git://linuxtv.org/anttip/media_tree.git
8861 S:      Maintained
8862 F:      drivers/media/tuners/si2157*
8863
8864 SI2168 MEDIA DRIVER
8865 M:      Antti Palosaari <crope@iki.fi>
8866 L:      linux-media@vger.kernel.org
8867 W:      http://linuxtv.org/
8868 W:      http://palosaari.fi/linux/
8869 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8870 T:      git git://linuxtv.org/anttip/media_tree.git
8871 S:      Maintained
8872 F:      drivers/media/dvb-frontends/si2168*
8873
8874 SI470X FM RADIO RECEIVER I2C DRIVER
8875 M:      Hans Verkuil <hverkuil@xs4all.nl>
8876 L:      linux-media@vger.kernel.org
8877 T:      git git://linuxtv.org/media_tree.git
8878 W:      http://linuxtv.org
8879 S:      Odd Fixes
8880 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
8881
8882 SI470X FM RADIO RECEIVER USB DRIVER
8883 M:      Hans Verkuil <hverkuil@xs4all.nl>
8884 L:      linux-media@vger.kernel.org
8885 T:      git git://linuxtv.org/media_tree.git
8886 W:      http://linuxtv.org
8887 S:      Maintained
8888 F:      drivers/media/radio/si470x/radio-si470x-common.c
8889 F:      drivers/media/radio/si470x/radio-si470x.h
8890 F:      drivers/media/radio/si470x/radio-si470x-usb.c
8891
8892 SI4713 FM RADIO TRANSMITTER I2C DRIVER
8893 M:      Eduardo Valentin <edubezval@gmail.com>
8894 L:      linux-media@vger.kernel.org
8895 T:      git git://linuxtv.org/media_tree.git
8896 W:      http://linuxtv.org
8897 S:      Odd Fixes
8898 F:      drivers/media/radio/si4713/si4713.?
8899
8900 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
8901 M:      Eduardo Valentin <edubezval@gmail.com>
8902 L:      linux-media@vger.kernel.org
8903 T:      git git://linuxtv.org/media_tree.git
8904 W:      http://linuxtv.org
8905 S:      Odd Fixes
8906 F:      drivers/media/radio/si4713/radio-platform-si4713.c
8907
8908 SI4713 FM RADIO TRANSMITTER USB 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:      Maintained
8914 F:      drivers/media/radio/si4713/radio-usb-si4713.c
8915
8916 SIANO DVB DRIVER
8917 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8918 L:      linux-media@vger.kernel.org
8919 W:      http://linuxtv.org
8920 T:      git git://linuxtv.org/media_tree.git
8921 S:      Odd fixes
8922 F:      drivers/media/common/siano/
8923 F:      drivers/media/usb/siano/
8924 F:      drivers/media/usb/siano/
8925 F:      drivers/media/mmc/siano/
8926
8927 SIMPLEFB FB DRIVER
8928 M:      Hans de Goede <hdegoede@redhat.com>
8929 L:      linux-fbdev@vger.kernel.org
8930 S:      Maintained
8931 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
8932 F:      drivers/video/fbdev/simplefb.c
8933 F:      include/linux/platform_data/simplefb.h
8934
8935 SH_VEU V4L2 MEM2MEM DRIVER
8936 L:      linux-media@vger.kernel.org
8937 S:      Orphan
8938 F:      drivers/media/platform/sh_veu.c
8939
8940 SH_VOU V4L2 OUTPUT DRIVER
8941 L:      linux-media@vger.kernel.org
8942 S:      Orphan
8943 F:      drivers/media/platform/sh_vou.c
8944 F:      include/media/sh_vou.h
8945
8946 SIMPLE FIRMWARE INTERFACE (SFI)
8947 M:      Len Brown <lenb@kernel.org>
8948 L:      sfi-devel@simplefirmware.org
8949 W:      http://simplefirmware.org/
8950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
8951 S:      Supported
8952 F:      arch/x86/platform/sfi/
8953 F:      drivers/sfi/
8954 F:      include/linux/sfi*.h
8955
8956 SIMTEC EB110ATX (Chalice CATS)
8957 P:      Ben Dooks
8958 P:      Vincent Sanders <vince@simtec.co.uk>
8959 M:      Simtec Linux Team <linux@simtec.co.uk>
8960 W:      http://www.simtec.co.uk/products/EB110ATX/
8961 S:      Supported
8962
8963 SIMTEC EB2410ITX (BAST)
8964 P:      Ben Dooks
8965 P:      Vincent Sanders <vince@simtec.co.uk>
8966 M:      Simtec Linux Team <linux@simtec.co.uk>
8967 W:      http://www.simtec.co.uk/products/EB2410ITX/
8968 S:      Supported
8969 F:      arch/arm/mach-s3c24xx/mach-bast.c
8970 F:      arch/arm/mach-s3c24xx/bast-ide.c
8971 F:      arch/arm/mach-s3c24xx/bast-irq.c
8972
8973 TI DAVINCI MACHINE SUPPORT
8974 M:      Sekhar Nori <nsekhar@ti.com>
8975 M:      Kevin Hilman <khilman@deeprootsystems.com>
8976 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
8977 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
8978 S:      Supported
8979 F:      arch/arm/mach-davinci/
8980 F:      drivers/i2c/busses/i2c-davinci.c
8981
8982 TI DAVINCI SERIES MEDIA DRIVER
8983 M:      Lad, Prabhakar <prabhakar.csengg@gmail.com>
8984 L:      linux-media@vger.kernel.org
8985 W:      http://linuxtv.org/
8986 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8987 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
8988 S:      Maintained
8989 F:      drivers/media/platform/davinci/
8990 F:      include/media/davinci/
8991
8992 TI AM437X VPFE DRIVER
8993 M:      Lad, Prabhakar <prabhakar.csengg@gmail.com>
8994 L:      linux-media@vger.kernel.org
8995 W:      http://linuxtv.org/
8996 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8997 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
8998 S:      Maintained
8999 F:      drivers/media/platform/am437x/
9000
9001 SIS 190 ETHERNET DRIVER
9002 M:      Francois Romieu <romieu@fr.zoreil.com>
9003 L:      netdev@vger.kernel.org
9004 S:      Maintained
9005 F:      drivers/net/ethernet/sis/sis190.c
9006
9007 SIS 900/7016 FAST ETHERNET DRIVER
9008 M:      Daniele Venzano <venza@brownhat.org>
9009 W:      http://www.brownhat.org/sis900.html
9010 L:      netdev@vger.kernel.org
9011 S:      Maintained
9012 F:      drivers/net/ethernet/sis/sis900.*
9013
9014 SIS FRAMEBUFFER DRIVER
9015 M:      Thomas Winischhofer <thomas@winischhofer.net>
9016 W:      http://www.winischhofer.net/linuxsisvga.shtml
9017 S:      Maintained
9018 F:      Documentation/fb/sisfb.txt
9019 F:      drivers/video/fbdev/sis/
9020 F:      include/video/sisfb.h
9021
9022 SIS USB2VGA DRIVER
9023 M:      Thomas Winischhofer <thomas@winischhofer.net>
9024 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9025 S:      Maintained
9026 F:      drivers/usb/misc/sisusbvga/
9027
9028 SLAB ALLOCATOR
9029 M:      Christoph Lameter <cl@linux.com>
9030 M:      Pekka Enberg <penberg@kernel.org>
9031 M:      David Rientjes <rientjes@google.com>
9032 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9033 M:      Andrew Morton <akpm@linux-foundation.org>
9034 L:      linux-mm@kvack.org
9035 S:      Maintained
9036 F:      include/linux/sl?b*.h
9037 F:      mm/sl?b*
9038
9039 SLEEPABLE READ-COPY UPDATE (SRCU)
9040 M:      Lai Jiangshan <laijs@cn.fujitsu.com>
9041 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9042 M:      Josh Triplett <josh@joshtriplett.org>
9043 R:      Steven Rostedt <rostedt@goodmis.org>
9044 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9045 L:      linux-kernel@vger.kernel.org
9046 W:      http://www.rdrop.com/users/paulmck/RCU/
9047 S:      Supported
9048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9049 F:      include/linux/srcu.h
9050 F:      kernel/rcu/srcu.c
9051
9052 SMACK SECURITY MODULE
9053 M:      Casey Schaufler <casey@schaufler-ca.com>
9054 L:      linux-security-module@vger.kernel.org
9055 W:      http://schaufler-ca.com
9056 T:      git git://git.gitorious.org/smack-next/kernel.git
9057 S:      Maintained
9058 F:      Documentation/security/Smack.txt
9059 F:      security/smack/
9060
9061 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9062 M:      Kevin Hilman <khilman@kernel.org>
9063 M:      Nishanth Menon <nm@ti.com>
9064 S:      Maintained
9065 F:      drivers/power/avs/
9066 F:      include/linux/power/smartreflex.h
9067 L:      linux-pm@vger.kernel.org
9068
9069 SMC91x ETHERNET DRIVER
9070 M:      Nicolas Pitre <nico@fluxnic.net>
9071 S:      Odd Fixes
9072 F:      drivers/net/ethernet/smsc/smc91x.*
9073
9074 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9075 M:      Sakari Ailus <sakari.ailus@iki.fi>
9076 L:      linux-media@vger.kernel.org
9077 S:      Maintained
9078 F:      drivers/media/i2c/smiapp/
9079 F:      include/media/smiapp.h
9080 F:      drivers/media/i2c/smiapp-pll.c
9081 F:      drivers/media/i2c/smiapp-pll.h
9082 F:      include/uapi/linux/smiapp.h
9083 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9084
9085 SMM665 HARDWARE MONITOR DRIVER
9086 M:      Guenter Roeck <linux@roeck-us.net>
9087 L:      lm-sensors@lm-sensors.org
9088 S:      Maintained
9089 F:      Documentation/hwmon/smm665
9090 F:      drivers/hwmon/smm665.c
9091
9092 SMSC EMC2103 HARDWARE MONITOR DRIVER
9093 M:      Steve Glendinning <steve.glendinning@shawell.net>
9094 L:      lm-sensors@lm-sensors.org
9095 S:      Maintained
9096 F:      Documentation/hwmon/emc2103
9097 F:      drivers/hwmon/emc2103.c
9098
9099 SMSC SCH5627 HARDWARE MONITOR DRIVER
9100 M:      Hans de Goede <hdegoede@redhat.com>
9101 L:      lm-sensors@lm-sensors.org
9102 S:      Supported
9103 F:      Documentation/hwmon/sch5627
9104 F:      drivers/hwmon/sch5627.c
9105
9106 SMSC47B397 HARDWARE MONITOR DRIVER
9107 M:      Jean Delvare <jdelvare@suse.de>
9108 L:      lm-sensors@lm-sensors.org
9109 S:      Maintained
9110 F:      Documentation/hwmon/smsc47b397
9111 F:      drivers/hwmon/smsc47b397.c
9112
9113 SMSC911x ETHERNET DRIVER
9114 M:      Steve Glendinning <steve.glendinning@shawell.net>
9115 L:      netdev@vger.kernel.org
9116 S:      Maintained
9117 F:      include/linux/smsc911x.h
9118 F:      drivers/net/ethernet/smsc/smsc911x.*
9119
9120 SMSC9420 PCI ETHERNET DRIVER
9121 M:      Steve Glendinning <steve.glendinning@shawell.net>
9122 L:      netdev@vger.kernel.org
9123 S:      Maintained
9124 F:      drivers/net/ethernet/smsc/smsc9420.*
9125
9126 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9127 M:      Steve Glendinning <steve.glendinning@shawell.net>
9128 L:      linux-fbdev@vger.kernel.org
9129 S:      Maintained
9130 F:      drivers/video/fbdev/smscufx.c
9131
9132 SOC-CAMERA V4L2 SUBSYSTEM
9133 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9134 L:      linux-media@vger.kernel.org
9135 T:      git git://linuxtv.org/media_tree.git
9136 S:      Maintained
9137 F:      include/media/soc*
9138 F:      drivers/media/i2c/soc_camera/
9139 F:      drivers/media/platform/soc_camera/
9140
9141 SOEKRIS NET48XX LED SUPPORT
9142 M:      Chris Boot <bootc@bootc.net>
9143 S:      Maintained
9144 F:      drivers/leds/leds-net48xx.c
9145
9146 SOFTLOGIC 6x10 MPEG CODEC
9147 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9148 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9149 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9150 M:      Ismael Luceno <ismael@iodev.co.uk>
9151 L:      linux-media@vger.kernel.org
9152 S:      Supported
9153 F:      drivers/media/pci/solo6x10/
9154
9155 SOFTWARE RAID (Multiple Disks) SUPPORT
9156 M:      Neil Brown <neilb@suse.de>
9157 L:      linux-raid@vger.kernel.org
9158 S:      Supported
9159 F:      drivers/md/
9160 F:      include/linux/raid/
9161 F:      include/uapi/linux/raid/
9162
9163 SONIC NETWORK DRIVER
9164 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9165 L:      netdev@vger.kernel.org
9166 S:      Maintained
9167 F:      drivers/net/ethernet/natsemi/sonic.*
9168
9169 SONICS SILICON BACKPLANE DRIVER (SSB)
9170 M:      Michael Buesch <m@bues.ch>
9171 L:      netdev@vger.kernel.org
9172 S:      Maintained
9173 F:      drivers/ssb/
9174 F:      include/linux/ssb/
9175
9176 SONY VAIO CONTROL DEVICE DRIVER
9177 M:      Mattia Dongili <malattia@linux.it>
9178 L:      platform-driver-x86@vger.kernel.org
9179 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9180 S:      Maintained
9181 F:      Documentation/laptops/sony-laptop.txt
9182 F:      drivers/char/sonypi.c
9183 F:      drivers/platform/x86/sony-laptop.c
9184 F:      include/linux/sony-laptop.h
9185
9186 SONY MEMORYSTICK CARD SUPPORT
9187 M:      Alex Dubov <oakad@yahoo.com>
9188 W:      http://tifmxx.berlios.de/
9189 S:      Maintained
9190 F:      drivers/memstick/host/tifm_ms.c
9191
9192 SONY MEMORYSTICK STANDARD SUPPORT
9193 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9194 S:      Maintained
9195 F:      drivers/memstick/core/ms_block.*
9196
9197 SOUND
9198 M:      Jaroslav Kysela <perex@perex.cz>
9199 M:      Takashi Iwai <tiwai@suse.de>
9200 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9201 W:      http://www.alsa-project.org/
9202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9203 T:      git git://git.alsa-project.org/alsa-kernel.git
9204 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9205 S:      Maintained
9206 F:      Documentation/sound/
9207 F:      include/sound/
9208 F:      include/uapi/sound/
9209 F:      sound/
9210
9211 SOUND - COMPRESSED AUDIO
9212 M:      Vinod Koul <vinod.koul@intel.com>
9213 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9215 S:      Supported
9216 F:      Documentation/sound/alsa/compress_offload.txt
9217 F:      include/sound/compress_driver.h
9218 F:      include/uapi/sound/compress_*
9219 F:      sound/core/compress_offload.c
9220 F:      sound/soc/soc-compress.c
9221
9222 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9223 M:      Liam Girdwood <lgirdwood@gmail.com>
9224 M:      Mark Brown <broonie@kernel.org>
9225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9226 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9227 W:      http://alsa-project.org/main/index.php/ASoC
9228 S:      Supported
9229 F:      Documentation/sound/alsa/soc/
9230 F:      sound/soc/
9231 F:      include/sound/soc*
9232
9233 SOUND - DMAENGINE HELPERS
9234 M:      Lars-Peter Clausen <lars@metafoo.de>
9235 S:      Supported
9236 F:      include/sound/dmaengine_pcm.h
9237 F:      sound/core/pcm_dmaengine.c
9238 F:      sound/soc/soc-generic-dmaengine-pcm.c
9239
9240 SP2 MEDIA DRIVER
9241 M:      Olli Salonen <olli.salonen@iki.fi>
9242 L:      linux-media@vger.kernel.org
9243 W:      http://linuxtv.org/
9244 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9245 S:      Maintained
9246 F:      drivers/media/dvb-frontends/sp2*
9247
9248 SPARC + UltraSPARC (sparc/sparc64)
9249 M:      "David S. Miller" <davem@davemloft.net>
9250 L:      sparclinux@vger.kernel.org
9251 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9254 S:      Maintained
9255 F:      arch/sparc/
9256 F:      drivers/sbus/
9257
9258 SPARC SERIAL DRIVERS
9259 M:      "David S. Miller" <davem@davemloft.net>
9260 L:      sparclinux@vger.kernel.org
9261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9263 S:      Maintained
9264 F:      include/linux/sunserialcore.h
9265 F:      drivers/tty/serial/suncore.c
9266 F:      drivers/tty/serial/sunhv.c
9267 F:      drivers/tty/serial/sunsab.c
9268 F:      drivers/tty/serial/sunsab.h
9269 F:      drivers/tty/serial/sunsu.c
9270 F:      drivers/tty/serial/sunzilog.c
9271 F:      drivers/tty/serial/sunzilog.h
9272
9273 SPARSE CHECKER
9274 M:      "Christopher Li" <sparse@chrisli.org>
9275 L:      linux-sparse@vger.kernel.org
9276 W:      https://sparse.wiki.kernel.org/
9277 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9278 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9279 S:      Maintained
9280 F:      include/linux/compiler.h
9281
9282 SPEAR PLATFORM SUPPORT
9283 M:      Viresh Kumar <viresh.linux@gmail.com>
9284 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9285 L:      spear-devel@list.st.com
9286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9287 W:      http://www.st.com/spear
9288 S:      Maintained
9289 F:      arch/arm/mach-spear/
9290
9291 SPEAR CLOCK FRAMEWORK SUPPORT
9292 M:      Viresh Kumar <viresh.linux@gmail.com>
9293 L:      spear-devel@list.st.com
9294 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9295 W:      http://www.st.com/spear
9296 S:      Maintained
9297 F:      drivers/clk/spear/
9298
9299 SPI SUBSYSTEM
9300 M:      Mark Brown <broonie@kernel.org>
9301 L:      linux-spi@vger.kernel.org
9302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9303 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9304 S:      Maintained
9305 F:      Documentation/spi/
9306 F:      drivers/spi/
9307 F:      include/linux/spi/
9308 F:      include/uapi/linux/spi/
9309
9310 SPIDERNET NETWORK DRIVER for CELL
9311 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9312 M:      Jens Osterkamp <jens@de.ibm.com>
9313 L:      netdev@vger.kernel.org
9314 S:      Supported
9315 F:      Documentation/networking/spider_net.txt
9316 F:      drivers/net/ethernet/toshiba/spider_net*
9317
9318 SPU FILE SYSTEM
9319 M:      Jeremy Kerr <jk@ozlabs.org>
9320 L:      linuxppc-dev@lists.ozlabs.org
9321 L:      cbe-oss-dev@lists.ozlabs.org
9322 W:      http://www.ibm.com/developerworks/power/cell/
9323 S:      Supported
9324 F:      Documentation/filesystems/spufs.txt
9325 F:      arch/powerpc/platforms/cell/spufs/
9326
9327 SQUASHFS FILE SYSTEM
9328 M:      Phillip Lougher <phillip@squashfs.org.uk>
9329 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9330 W:      http://squashfs.org.uk
9331 S:      Maintained
9332 F:      Documentation/filesystems/squashfs.txt
9333 F:      fs/squashfs/
9334
9335 SRM (Alpha) environment access
9336 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9337 S:      Maintained
9338 F:      arch/alpha/kernel/srm_env.c
9339
9340 STABLE BRANCH
9341 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9342 L:      stable@vger.kernel.org
9343 S:      Supported
9344 F:      Documentation/stable_kernel_rules.txt
9345
9346 STAGING SUBSYSTEM
9347 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9349 L:      devel@driverdev.osuosl.org
9350 S:      Supported
9351 F:      drivers/staging/
9352
9353 STAGING - COMEDI
9354 M:      Ian Abbott <abbotti@mev.co.uk>
9355 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9356 S:      Odd Fixes
9357 F:      drivers/staging/comedi/
9358
9359 STAGING - FLARION FT1000 DRIVERS
9360 M:      Marek Belisko <marek.belisko@gmail.com>
9361 S:      Odd Fixes
9362 F:      drivers/staging/ft1000/
9363
9364 STAGING - INDUSTRIAL IO
9365 M:      Jonathan Cameron <jic23@kernel.org>
9366 L:      linux-iio@vger.kernel.org
9367 S:      Odd Fixes
9368 F:      drivers/staging/iio/
9369
9370 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9371 M:      Jarod Wilson <jarod@wilsonet.com>
9372 W:      http://www.lirc.org/
9373 S:      Odd Fixes
9374 F:      drivers/staging/media/lirc/
9375
9376 STAGING - LUSTRE PARALLEL FILESYSTEM
9377 M:      Oleg Drokin <oleg.drokin@intel.com>
9378 M:      Andreas Dilger <andreas.dilger@intel.com>
9379 L:      HPDD-discuss@lists.01.org (moderated for non-subscribers)
9380 W:      http://lustre.opensfs.org/
9381 S:      Maintained
9382 F:      drivers/staging/lustre
9383
9384 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9385 M:      Julian Andres Klode <jak@jak-linux.org>
9386 M:      Marc Dietrich <marvin24@gmx.de>
9387 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9388 L:      linux-tegra@vger.kernel.org
9389 S:      Maintained
9390 F:      drivers/staging/nvec/
9391
9392 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9393 M:      Jens Frederich <jfrederich@gmail.com>
9394 M:      Daniel Drake <dsd@laptop.org>
9395 M:      Jon Nettleton <jon.nettleton@gmail.com>
9396 W:      http://wiki.laptop.org/go/DCON
9397 S:      Maintained
9398 F:      drivers/staging/olpc_dcon/
9399
9400 STAGING - OZMO DEVICES USB OVER WIFI DRIVER
9401 M:      Shigekatsu Tateno <shigekatsu.tateno@atmel.com>
9402 S:      Maintained
9403 F:      drivers/staging/ozwpan/
9404
9405 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9406 M:      Willy Tarreau <willy@meta-x.org>
9407 S:      Odd Fixes
9408 F:      drivers/staging/panel/
9409
9410 STAGING - REALTEK RTL8712U DRIVERS
9411 M:      Larry Finger <Larry.Finger@lwfinger.net>
9412 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9413 S:      Odd Fixes
9414 F:      drivers/staging/rtl8712/
9415
9416 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9417 M:      Larry Finger <Larry.Finger@lwfinger.net>
9418 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9419 L:      linux-wireless@vger.kernel.org
9420 S:      Maintained
9421 F:      drivers/staging/rtl8723au/
9422
9423 STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
9424 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9425 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9426 M:      Sudip Mukherjee <sudip@vectorindia.org>
9427 L:      linux-fbdev@vger.kernel.org
9428 S:      Maintained
9429 F:      drivers/staging/sm7xxfb/
9430
9431 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9432 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9433 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9434 M:      Sudip Mukherjee <sudip@vectorindia.org>
9435 L:      linux-fbdev@vger.kernel.org
9436 S:      Maintained
9437 F:      drivers/staging/sm750fb/
9438
9439 STAGING - SLICOSS
9440 M:      Lior Dotan <liodot@gmail.com>
9441 M:      Christopher Harrer <charrer@alacritech.com>
9442 S:      Odd Fixes
9443 F:      drivers/staging/slicoss/
9444
9445 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9446 M:      William Hubbs <w.d.hubbs@gmail.com>
9447 M:      Chris Brannon <chris@the-brannons.com>
9448 M:      Kirk Reiser <kirk@reisers.ca>
9449 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9450 L:      speakup@linux-speakup.org
9451 W:      http://www.linux-speakup.org/
9452 S:      Odd Fixes
9453 F:      drivers/staging/speakup/
9454
9455 STAGING - VIA VT665X DRIVERS
9456 M:      Forest Bond <forest@alittletooquiet.net>
9457 S:      Odd Fixes
9458 F:      drivers/staging/vt665?/
9459
9460 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
9461 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
9462 S:      Odd Fixes
9463 F:      drivers/staging/xgifb/
9464
9465 STARFIRE/DURALAN NETWORK DRIVER
9466 M:      Ion Badulescu <ionut@badula.org>
9467 S:      Odd Fixes
9468 F:      drivers/net/ethernet/adaptec/starfire*
9469
9470 SUN3/3X
9471 M:      Sam Creasey <sammy@sammy.net>
9472 W:      http://sammy.net/sun3/
9473 S:      Maintained
9474 F:      arch/m68k/kernel/*sun3*
9475 F:      arch/m68k/sun3*/
9476 F:      arch/m68k/include/asm/sun3*
9477 F:      drivers/net/ethernet/i825xx/sun3*
9478
9479 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
9480 M:      Hans de Goede <hdegoede@redhat.com>
9481 L:      linux-input@vger.kernel.org
9482 S:      Maintained
9483 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
9484 F:      drivers/input/keyboard/sun4i-lradc-keys.c
9485
9486 SUNDANCE NETWORK DRIVER
9487 M:      Denis Kirjanov <kda@linux-powerpc.org>
9488 L:      netdev@vger.kernel.org
9489 S:      Maintained
9490 F:      drivers/net/ethernet/dlink/sundance.c
9491
9492 SUPERH
9493 L:      linux-sh@vger.kernel.org
9494 Q:      http://patchwork.kernel.org/project/linux-sh/list/
9495 S:      Orphan
9496 F:      Documentation/sh/
9497 F:      arch/sh/
9498 F:      drivers/sh/
9499
9500 SUSPEND TO RAM
9501 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9502 M:      Len Brown <len.brown@intel.com>
9503 M:      Pavel Machek <pavel@ucw.cz>
9504 L:      linux-pm@vger.kernel.org
9505 S:      Supported
9506 F:      Documentation/power/
9507 F:      arch/x86/kernel/acpi/
9508 F:      drivers/base/power/
9509 F:      kernel/power/
9510 F:      include/linux/suspend.h
9511 F:      include/linux/freezer.h
9512 F:      include/linux/pm.h
9513
9514 SVGA HANDLING
9515 M:      Martin Mares <mj@ucw.cz>
9516 L:      linux-video@atrey.karlin.mff.cuni.cz
9517 S:      Maintained
9518 F:      Documentation/svga.txt
9519 F:      arch/x86/boot/video*
9520
9521 SWIOTLB SUBSYSTEM
9522 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9523 L:      linux-kernel@vger.kernel.org
9524 S:      Supported
9525 F:      lib/swiotlb.c
9526 F:      arch/*/kernel/pci-swiotlb.c
9527 F:      include/linux/swiotlb.h
9528
9529 SWITCHDEV
9530 M:      Jiri Pirko <jiri@resnulli.us>
9531 L:      netdev@vger.kernel.org
9532 S:      Supported
9533 F:      net/switchdev/
9534 F:      include/net/switchdev.h
9535
9536 SYNOPSYS ARC ARCHITECTURE
9537 M:      Vineet Gupta <vgupta@synopsys.com>
9538 S:      Supported
9539 F:      arch/arc/
9540 F:      Documentation/devicetree/bindings/arc/
9541 F:      drivers/tty/serial/arc_uart.c
9542
9543 SYSV FILESYSTEM
9544 M:      Christoph Hellwig <hch@infradead.org>
9545 S:      Maintained
9546 F:      Documentation/filesystems/sysv-fs.txt
9547 F:      fs/sysv/
9548 F:      include/linux/sysv_fs.h
9549
9550 TARGET SUBSYSTEM
9551 M:      Nicholas A. Bellinger <nab@linux-iscsi.org>
9552 L:      linux-scsi@vger.kernel.org
9553 L:      target-devel@vger.kernel.org
9554 W:      http://www.linux-iscsi.org
9555 W:      http://groups.google.com/group/linux-iscsi-target-dev
9556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9557 S:      Supported
9558 F:      drivers/target/
9559 F:      include/target/
9560 F:      Documentation/target/
9561
9562 TASKSTATS STATISTICS INTERFACE
9563 M:      Balbir Singh <bsingharora@gmail.com>
9564 S:      Maintained
9565 F:      Documentation/accounting/taskstats*
9566 F:      include/linux/taskstats*
9567 F:      kernel/taskstats.c
9568
9569 TC CLASSIFIER
9570 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9571 L:      netdev@vger.kernel.org
9572 S:      Maintained
9573 F:      include/net/pkt_cls.h
9574 F:      include/uapi/linux/pkt_cls.h
9575 F:      net/sched/
9576
9577 TCP LOW PRIORITY MODULE
9578 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
9579 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
9580 W:      http://tcp-lp-mod.sourceforge.net/
9581 S:      Maintained
9582 F:      net/ipv4/tcp_lp.c
9583
9584 TDA10071 MEDIA DRIVER
9585 M:      Antti Palosaari <crope@iki.fi>
9586 L:      linux-media@vger.kernel.org
9587 W:      http://linuxtv.org/
9588 W:      http://palosaari.fi/linux/
9589 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9590 T:      git git://linuxtv.org/anttip/media_tree.git
9591 S:      Maintained
9592 F:      drivers/media/dvb-frontends/tda10071*
9593
9594 TDA18212 MEDIA DRIVER
9595 M:      Antti Palosaari <crope@iki.fi>
9596 L:      linux-media@vger.kernel.org
9597 W:      http://linuxtv.org/
9598 W:      http://palosaari.fi/linux/
9599 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9600 T:      git git://linuxtv.org/anttip/media_tree.git
9601 S:      Maintained
9602 F:      drivers/media/tuners/tda18212*
9603
9604 TDA18218 MEDIA DRIVER
9605 M:      Antti Palosaari <crope@iki.fi>
9606 L:      linux-media@vger.kernel.org
9607 W:      http://linuxtv.org/
9608 W:      http://palosaari.fi/linux/
9609 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9610 T:      git git://linuxtv.org/anttip/media_tree.git
9611 S:      Maintained
9612 F:      drivers/media/tuners/tda18218*
9613
9614 TDA18271 MEDIA DRIVER
9615 M:      Michael Krufky <mkrufky@linuxtv.org>
9616 L:      linux-media@vger.kernel.org
9617 W:      http://linuxtv.org/
9618 W:      http://github.com/mkrufky
9619 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9620 T:      git git://linuxtv.org/mkrufky/tuners.git
9621 S:      Maintained
9622 F:      drivers/media/tuners/tda18271*
9623
9624 TDA827x MEDIA DRIVER
9625 M:      Michael Krufky <mkrufky@linuxtv.org>
9626 L:      linux-media@vger.kernel.org
9627 W:      http://linuxtv.org/
9628 W:      http://github.com/mkrufky
9629 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9630 T:      git git://linuxtv.org/mkrufky/tuners.git
9631 S:      Maintained
9632 F:      drivers/media/tuners/tda8290.*
9633
9634 TDA8290 MEDIA DRIVER
9635 M:      Michael Krufky <mkrufky@linuxtv.org>
9636 L:      linux-media@vger.kernel.org
9637 W:      http://linuxtv.org/
9638 W:      http://github.com/mkrufky
9639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9640 T:      git git://linuxtv.org/mkrufky/tuners.git
9641 S:      Maintained
9642 F:      drivers/media/tuners/tda8290.*
9643
9644 TDA9840 MEDIA DRIVER
9645 M:      Hans Verkuil <hverkuil@xs4all.nl>
9646 L:      linux-media@vger.kernel.org
9647 T:      git git://linuxtv.org/media_tree.git
9648 W:      http://linuxtv.org
9649 S:      Maintained
9650 F:      drivers/media/i2c/tda9840*
9651
9652 TEA5761 TUNER DRIVER
9653 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9654 L:      linux-media@vger.kernel.org
9655 W:      http://linuxtv.org
9656 T:      git git://linuxtv.org/media_tree.git
9657 S:      Odd fixes
9658 F:      drivers/media/tuners/tea5761.*
9659
9660 TEA5767 TUNER DRIVER
9661 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9662 L:      linux-media@vger.kernel.org
9663 W:      http://linuxtv.org
9664 T:      git git://linuxtv.org/media_tree.git
9665 S:      Maintained
9666 F:      drivers/media/tuners/tea5767.*
9667
9668 TEA6415C MEDIA DRIVER
9669 M:      Hans Verkuil <hverkuil@xs4all.nl>
9670 L:      linux-media@vger.kernel.org
9671 T:      git git://linuxtv.org/media_tree.git
9672 W:      http://linuxtv.org
9673 S:      Maintained
9674 F:      drivers/media/i2c/tea6415c*
9675
9676 TEA6420 MEDIA DRIVER
9677 M:      Hans Verkuil <hverkuil@xs4all.nl>
9678 L:      linux-media@vger.kernel.org
9679 T:      git git://linuxtv.org/media_tree.git
9680 W:      http://linuxtv.org
9681 S:      Maintained
9682 F:      drivers/media/i2c/tea6420*
9683
9684 TEAM DRIVER
9685 M:      Jiri Pirko <jiri@resnulli.us>
9686 L:      netdev@vger.kernel.org
9687 S:      Supported
9688 F:      drivers/net/team/
9689 F:      include/linux/if_team.h
9690 F:      include/uapi/linux/if_team.h
9691
9692 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
9693 M:      Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
9694 S:      Maintained
9695 F:      arch/x86/platform/ts5500/
9696
9697 TECHNOTREND USB IR RECEIVER
9698 M:      Sean Young <sean@mess.org>
9699 L:      linux-media@vger.kernel.org
9700 S:      Maintained
9701 F:      drivers/media/rc/ttusbir.c
9702
9703 TEGRA ARCHITECTURE SUPPORT
9704 M:      Stephen Warren <swarren@wwwdotorg.org>
9705 M:      Thierry Reding <thierry.reding@gmail.com>
9706 M:      Alexandre Courbot <gnurou@gmail.com>
9707 L:      linux-tegra@vger.kernel.org
9708 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
9709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
9710 S:      Supported
9711 N:      [^a-z]tegra
9712
9713 TEGRA CLOCK DRIVER
9714 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
9715 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
9716 S:      Supported
9717 F:      drivers/clk/tegra/
9718
9719 TEGRA DMA DRIVER
9720 M:      Laxman Dewangan <ldewangan@nvidia.com>
9721 S:      Supported
9722 F:      drivers/dma/tegra20-apb-dma.c
9723
9724 TEGRA I2C DRIVER
9725 M:      Laxman Dewangan <ldewangan@nvidia.com>
9726 S:      Supported
9727 F:      drivers/i2c/busses/i2c-tegra.c
9728
9729 TEGRA IOMMU DRIVERS
9730 M:      Hiroshi Doyu <hdoyu@nvidia.com>
9731 S:      Supported
9732 F:      drivers/iommu/tegra*
9733
9734 TEGRA KBC DRIVER
9735 M:      Rakesh Iyer <riyer@nvidia.com>
9736 M:      Laxman Dewangan <ldewangan@nvidia.com>
9737 S:      Supported
9738 F:      drivers/input/keyboard/tegra-kbc.c
9739
9740 TEGRA PWM DRIVER
9741 M:      Thierry Reding <thierry.reding@gmail.com>
9742 S:      Supported
9743 F:      drivers/pwm/pwm-tegra.c
9744
9745 TEGRA SERIAL DRIVER
9746 M:      Laxman Dewangan <ldewangan@nvidia.com>
9747 S:      Supported
9748 F:      drivers/tty/serial/serial-tegra.c
9749
9750 TEGRA SPI DRIVER
9751 M:      Laxman Dewangan <ldewangan@nvidia.com>
9752 S:      Supported
9753 F:      drivers/spi/spi-tegra*
9754
9755 TEHUTI ETHERNET DRIVER
9756 M:      Andy Gospodarek <andy@greyhouse.net>
9757 L:      netdev@vger.kernel.org
9758 S:      Supported
9759 F:      drivers/net/ethernet/tehuti/*
9760
9761 Telecom Clock Driver for MCPL0010
9762 M:      Mark Gross <mark.gross@intel.com>
9763 S:      Supported
9764 F:      drivers/char/tlclk.c
9765
9766 TENSILICA XTENSA PORT (xtensa)
9767 M:      Chris Zankel <chris@zankel.net>
9768 M:      Max Filippov <jcmvbkbc@gmail.com>
9769 L:      linux-xtensa@linux-xtensa.org
9770 S:      Maintained
9771 F:      arch/xtensa/
9772 F:      drivers/irqchip/irq-xtensa-*
9773
9774 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
9775 M:      Hans Verkuil <hverkuil@xs4all.nl>
9776 L:      linux-media@vger.kernel.org
9777 T:      git git://linuxtv.org/media_tree.git
9778 W:      http://linuxtv.org
9779 S:      Maintained
9780 F:      drivers/media/radio/radio-raremono.c
9781
9782 THERMAL
9783 M:      Zhang Rui <rui.zhang@intel.com>
9784 M:      Eduardo Valentin <edubezval@gmail.com>
9785 L:      linux-pm@vger.kernel.org
9786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
9787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
9788 Q:      https://patchwork.kernel.org/project/linux-pm/list/
9789 S:      Supported
9790 F:      drivers/thermal/
9791 F:      include/linux/thermal.h
9792 F:      include/uapi/linux/thermal.h
9793 F:      include/linux/cpu_cooling.h
9794 F:      Documentation/devicetree/bindings/thermal/
9795
9796 THINGM BLINK(1) USB RGB LED DRIVER
9797 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9798 S:      Maintained
9799 F:      drivers/hid/hid-thingm.c
9800
9801 THINKPAD ACPI EXTRAS DRIVER
9802 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
9803 L:      ibm-acpi-devel@lists.sourceforge.net
9804 L:      platform-driver-x86@vger.kernel.org
9805 W:      http://ibm-acpi.sourceforge.net
9806 W:      http://thinkwiki.org/wiki/Ibm-acpi
9807 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
9808 S:      Maintained
9809 F:      drivers/platform/x86/thinkpad_acpi.c
9810
9811 TI BANDGAP AND THERMAL DRIVER
9812 M:      Eduardo Valentin <edubezval@gmail.com>
9813 L:      linux-pm@vger.kernel.org
9814 L:      linux-omap@vger.kernel.org
9815 S:      Maintained
9816 F:      drivers/thermal/ti-soc-thermal/
9817
9818 TI CDCE706 CLOCK DRIVER
9819 M:      Max Filippov <jcmvbkbc@gmail.com>
9820 S:      Maintained
9821 F:      drivers/clk/clk-cdce706.c
9822
9823 TI CLOCK DRIVER
9824 M:      Tero Kristo <t-kristo@ti.com>
9825 L:      linux-omap@vger.kernel.org
9826 S:      Maintained
9827 F:      drivers/clk/ti/
9828 F:      include/linux/clk/ti.h
9829
9830 TI FLASH MEDIA INTERFACE DRIVER
9831 M:      Alex Dubov <oakad@yahoo.com>
9832 S:      Maintained
9833 F:      drivers/misc/tifm*
9834 F:      drivers/mmc/host/tifm_sd.c
9835 F:      include/linux/tifm.h
9836
9837 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
9838 M:      Santosh Shilimkar <ssantosh@kernel.org>
9839 L:      linux-kernel@vger.kernel.org
9840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9841 S:      Maintained
9842 F:      drivers/soc/ti/*
9843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
9844
9845
9846 TI LM49xxx FAMILY ASoC CODEC DRIVERS
9847 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
9848 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
9849 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9850 S:      Maintained
9851 F:      sound/soc/codecs/lm49453*
9852 F:      sound/soc/codecs/isabelle*
9853
9854 TI LP855x BACKLIGHT DRIVER
9855 M:      Milo Kim <milo.kim@ti.com>
9856 S:      Maintained
9857 F:      Documentation/backlight/lp855x-driver.txt
9858 F:      drivers/video/backlight/lp855x_bl.c
9859 F:      include/linux/platform_data/lp855x.h
9860
9861 TI LP8727 CHARGER DRIVER
9862 M:      Milo Kim <milo.kim@ti.com>
9863 S:      Maintained
9864 F:      drivers/power/lp8727_charger.c
9865 F:      include/linux/platform_data/lp8727.h
9866
9867 TI LP8788 MFD DRIVER
9868 M:      Milo Kim <milo.kim@ti.com>
9869 S:      Maintained
9870 F:      drivers/iio/adc/lp8788_adc.c
9871 F:      drivers/leds/leds-lp8788.c
9872 F:      drivers/mfd/lp8788*.c
9873 F:      drivers/power/lp8788-charger.c
9874 F:      drivers/regulator/lp8788-*.c
9875 F:      include/linux/mfd/lp8788*.h
9876
9877 TI NETCP ETHERNET DRIVER
9878 M:      Wingman Kwok <w-kwok2@ti.com>
9879 M:      Murali Karicheri <m-karicheri2@ti.com>
9880 L:      netdev@vger.kernel.org
9881 S:      Maintained
9882 F:      drivers/net/ethernet/ti/netcp*
9883
9884 TI TWL4030 SERIES SOC CODEC DRIVER
9885 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
9886 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9887 S:      Maintained
9888 F:      sound/soc/codecs/twl4030*
9889
9890 TI WILINK WIRELESS DRIVERS
9891 L:      linux-wireless@vger.kernel.org
9892 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
9893 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
9894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
9895 S:      Orphan
9896 F:      drivers/net/wireless/ti/
9897 F:      include/linux/wl12xx.h
9898
9899 TIPC NETWORK LAYER
9900 M:      Jon Maloy <jon.maloy@ericsson.com>
9901 M:      Ying Xue <ying.xue@windriver.com>
9902 L:      netdev@vger.kernel.org (core kernel code)
9903 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
9904 W:      http://tipc.sourceforge.net/
9905 S:      Maintained
9906 F:      include/uapi/linux/tipc*.h
9907 F:      net/tipc/
9908
9909 TILE ARCHITECTURE
9910 M:      Chris Metcalf <cmetcalf@ezchip.com>
9911 W:      http://www.ezchip.com/scm/
9912 S:      Supported
9913 F:      arch/tile/
9914 F:      drivers/char/tile-srom.c
9915 F:      drivers/edac/tile_edac.c
9916 F:      drivers/net/ethernet/tile/
9917 F:      drivers/rtc/rtc-tile.c
9918 F:      drivers/tty/hvc/hvc_tile.c
9919 F:      drivers/tty/serial/tilegx.c
9920 F:      drivers/usb/host/*-tilegx.c
9921 F:      include/linux/usb/tilegx.h
9922
9923 TLAN NETWORK DRIVER
9924 M:      Samuel Chessman <chessman@tux.org>
9925 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
9926 W:      http://sourceforge.net/projects/tlan/
9927 S:      Maintained
9928 F:      Documentation/networking/tlan.txt
9929 F:      drivers/net/ethernet/ti/tlan.*
9930
9931 TOMOYO SECURITY MODULE
9932 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
9933 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
9934 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
9935 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
9936 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
9937 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
9938 W:      http://tomoyo.sourceforge.jp/
9939 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
9940 S:      Maintained
9941 F:      security/tomoyo/
9942
9943 TOPSTAR LAPTOP EXTRAS DRIVER
9944 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9945 L:      platform-driver-x86@vger.kernel.org
9946 S:      Maintained
9947 F:      drivers/platform/x86/topstar-laptop.c
9948
9949 TOSHIBA ACPI EXTRAS DRIVER
9950 M:      Azael Avalos <coproscefalo@gmail.com>
9951 L:      platform-driver-x86@vger.kernel.org
9952 S:      Maintained
9953 F:      drivers/platform/x86/toshiba_acpi.c
9954
9955 TOSHIBA BLUETOOTH DRIVER
9956 M:      Azael Avalos <coproscefalo@gmail.com>
9957 L:      platform-driver-x86@vger.kernel.org
9958 S:      Maintained
9959 F:      drivers/platform/x86/toshiba_bluetooth.c
9960
9961 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
9962 M:      Azael Avalos <coproscefalo@gmail.com>
9963 L:      platform-driver-x86@vger.kernel.org
9964 S:      Maintained
9965 F:      drivers/platform/x86/toshiba_haps.c
9966
9967 TOSHIBA SMM DRIVER
9968 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
9969 L:      tlinux-users@tce.toshiba-dme.co.jp
9970 W:      http://www.buzzard.org.uk/toshiba/
9971 S:      Maintained
9972 F:      drivers/char/toshiba.c
9973 F:      include/linux/toshiba.h
9974 F:      include/uapi/linux/toshiba.h
9975
9976 TMIO MMC DRIVER
9977 M:      Ian Molton <ian.molton@codethink.co.uk>
9978 L:      linux-mmc@vger.kernel.org
9979 S:      Maintained
9980 F:      drivers/mmc/host/tmio_mmc*
9981 F:      drivers/mmc/host/sh_mobile_sdhi.c
9982 F:      include/linux/mmc/tmio.h
9983 F:      include/linux/mmc/sh_mobile_sdhi.h
9984
9985 TMP401 HARDWARE MONITOR DRIVER
9986 M:      Guenter Roeck <linux@roeck-us.net>
9987 L:      lm-sensors@lm-sensors.org
9988 S:      Maintained
9989 F:      Documentation/hwmon/tmp401
9990 F:      drivers/hwmon/tmp401.c
9991
9992 TMPFS (SHMEM FILESYSTEM)
9993 M:      Hugh Dickins <hughd@google.com>
9994 L:      linux-mm@kvack.org
9995 S:      Maintained
9996 F:      include/linux/shmem_fs.h
9997 F:      mm/shmem.c
9998
9999 TM6000 VIDEO4LINUX DRIVER
10000 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10001 L:      linux-media@vger.kernel.org
10002 W:      http://linuxtv.org
10003 T:      git git://linuxtv.org/media_tree.git
10004 S:      Odd fixes
10005 F:      drivers/media/usb/tm6000/
10006
10007 TW68 VIDEO4LINUX DRIVER
10008 M:      Hans Verkuil <hverkuil@xs4all.nl>
10009 L:      linux-media@vger.kernel.org
10010 T:      git git://linuxtv.org/media_tree.git
10011 W:      http://linuxtv.org
10012 S:      Odd Fixes
10013 F:      drivers/media/pci/tw68/
10014
10015 TPM DEVICE DRIVER
10016 M:      Peter Huewe <peterhuewe@gmx.de>
10017 M:      Marcel Selhorst <tpmdd@selhorst.net>
10018 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10019 W:      http://tpmdd.sourceforge.net
10020 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10021 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10022 T:      https://github.com/PeterHuewe/linux-tpmdd
10023 S:      Maintained
10024 F:      drivers/char/tpm/
10025
10026 TPM IBM_VTPM DEVICE DRIVER
10027 M:      Ashley Lai <ashleydlai@gmail.com>
10028 W:      http://tpmdd.sourceforge.net
10029 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10030 S:      Maintained
10031 F:      drivers/char/tpm/tpm_ibmvtpm*
10032
10033 TRACING
10034 M:      Steven Rostedt <rostedt@goodmis.org>
10035 M:      Ingo Molnar <mingo@redhat.com>
10036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10037 S:      Maintained
10038 F:      Documentation/trace/ftrace.txt
10039 F:      arch/*/*/*/ftrace.h
10040 F:      arch/*/kernel/ftrace.c
10041 F:      include/*/ftrace.h
10042 F:      include/linux/trace*.h
10043 F:      include/trace/
10044 F:      kernel/trace/
10045 F:      tools/testing/selftests/ftrace/
10046
10047 TRIVIAL PATCHES
10048 M:      Jiri Kosina <trivial@kernel.org>
10049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10050 S:      Maintained
10051 K:      ^Subject:.*(?i)trivial
10052
10053 TTY LAYER
10054 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10055 M:      Jiri Slaby <jslaby@suse.cz>
10056 S:      Supported
10057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10058 F:      drivers/tty/
10059 F:      drivers/tty/serial/serial_core.c
10060 F:      include/linux/serial_core.h
10061 F:      include/linux/serial.h
10062 F:      include/linux/tty.h
10063 F:      include/uapi/linux/serial_core.h
10064 F:      include/uapi/linux/serial.h
10065 F:      include/uapi/linux/tty.h
10066
10067 TUA9001 MEDIA DRIVER
10068 M:      Antti Palosaari <crope@iki.fi>
10069 L:      linux-media@vger.kernel.org
10070 W:      http://linuxtv.org/
10071 W:      http://palosaari.fi/linux/
10072 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10073 T:      git git://linuxtv.org/anttip/media_tree.git
10074 S:      Maintained
10075 F:      drivers/media/tuners/tua9001*
10076
10077 TULIP NETWORK DRIVERS
10078 M:      Grant Grundler <grundler@parisc-linux.org>
10079 L:      netdev@vger.kernel.org
10080 S:      Maintained
10081 F:      drivers/net/ethernet/dec/tulip/
10082
10083 TUN/TAP driver
10084 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10085 W:      http://vtun.sourceforge.net/tun
10086 S:      Maintained
10087 F:      Documentation/networking/tuntap.txt
10088 F:      arch/um/os-Linux/drivers/
10089
10090 TURBOCHANNEL SUBSYSTEM
10091 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10092 M:      Ralf Baechle <ralf@linux-mips.org>
10093 L:      linux-mips@linux-mips.org
10094 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10095 S:      Maintained
10096 F:      drivers/tc/
10097 F:      include/linux/tc.h
10098
10099 U14-34F SCSI DRIVER
10100 M:      Dario Ballabio <ballabio_dario@emc.com>
10101 L:      linux-scsi@vger.kernel.org
10102 S:      Maintained
10103 F:      drivers/scsi/u14-34f.c
10104
10105 UBI FILE SYSTEM (UBIFS)
10106 M:      Artem Bityutskiy <dedekind1@gmail.com>
10107 M:      Adrian Hunter <adrian.hunter@intel.com>
10108 L:      linux-mtd@lists.infradead.org
10109 T:      git git://git.infradead.org/ubifs-2.6.git
10110 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10111 S:      Maintained
10112 F:      Documentation/filesystems/ubifs.txt
10113 F:      fs/ubifs/
10114
10115 UCLINUX (AND M68KNOMMU)
10116 M:      Greg Ungerer <gerg@uclinux.org>
10117 W:      http://www.uclinux.org/
10118 L:      uclinux-dev@uclinux.org  (subscribers-only)
10119 S:      Maintained
10120 F:      arch/m68k/*/*_no.*
10121 F:      arch/m68k/include/asm/*_no.*
10122
10123 UDF FILESYSTEM
10124 M:      Jan Kara <jack@suse.cz>
10125 S:      Maintained
10126 F:      Documentation/filesystems/udf.txt
10127 F:      fs/udf/
10128
10129 UFS FILESYSTEM
10130 M:      Evgeniy Dushistov <dushistov@mail.ru>
10131 S:      Maintained
10132 F:      Documentation/filesystems/ufs.txt
10133 F:      fs/ufs/
10134
10135 UHID USERSPACE HID IO DRIVER:
10136 M:      David Herrmann <dh.herrmann@googlemail.com>
10137 L:      linux-input@vger.kernel.org
10138 S:      Maintained
10139 F:      drivers/hid/uhid.c
10140 F:      include/uapi/linux/uhid.h
10141
10142 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10143 L:      linux-usb@vger.kernel.org
10144 S:      Orphan
10145 F:      drivers/uwb/
10146 F:      include/linux/uwb.h
10147 F:      include/linux/uwb/
10148
10149 UNICORE32 ARCHITECTURE:
10150 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10151 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10152 S:      Maintained
10153 T:      git git://github.com/gxt/linux.git
10154 F:      arch/unicore32/
10155
10156 UNIFDEF
10157 M:      Tony Finch <dot@dotat.at>
10158 W:      http://dotat.at/prog/unifdef
10159 S:      Maintained
10160 F:      scripts/unifdef.c
10161
10162 UNIFORM CDROM DRIVER
10163 M:      Jens Axboe <axboe@kernel.dk>
10164 W:      http://www.kernel.dk
10165 S:      Maintained
10166 F:      Documentation/cdrom/
10167 F:      drivers/cdrom/cdrom.c
10168 F:      include/linux/cdrom.h
10169 F:      include/uapi/linux/cdrom.h
10170
10171 UNISYS S-PAR DRIVERS
10172 M:     Benjamin Romer <benjamin.romer@unisys.com>
10173 M:     David Kershner <david.kershner@unisys.com>
10174 L:     sparmaintainer@unisys.com (Unisys internal)
10175 S:     Supported
10176 F:     drivers/staging/unisys/
10177
10178 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10179 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10180 L:      linux-scsi@vger.kernel.org
10181 S:      Supported
10182 F:      Documentation/scsi/ufs.txt
10183 F:      drivers/scsi/ufs/
10184
10185 UNSORTED BLOCK IMAGES (UBI)
10186 M:      Artem Bityutskiy <dedekind1@gmail.com>
10187 M:      Richard Weinberger <richard@nod.at>
10188 W:      http://www.linux-mtd.infradead.org/
10189 L:      linux-mtd@lists.infradead.org
10190 T:      git git://git.infradead.org/ubifs-2.6.git
10191 S:      Supported
10192 F:      drivers/mtd/ubi/
10193 F:      include/linux/mtd/ubi.h
10194 F:      include/uapi/mtd/ubi-user.h
10195
10196 USB ACM DRIVER
10197 M:      Oliver Neukum <oliver@neukum.org>
10198 L:      linux-usb@vger.kernel.org
10199 S:      Maintained
10200 F:      Documentation/usb/acm.txt
10201 F:      drivers/usb/class/cdc-acm.*
10202
10203 USB AR5523 WIRELESS DRIVER
10204 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10205 L:      linux-wireless@vger.kernel.org
10206 S:      Maintained
10207 F:      drivers/net/wireless/ath/ar5523/
10208
10209 USB ATTACHED SCSI
10210 M:      Hans de Goede <hdegoede@redhat.com>
10211 M:      Gerd Hoffmann <kraxel@redhat.com>
10212 L:      linux-usb@vger.kernel.org
10213 L:      linux-scsi@vger.kernel.org
10214 S:      Maintained
10215 F:      drivers/usb/storage/uas.c
10216
10217 USB CDC ETHERNET DRIVER
10218 M:      Oliver Neukum <oliver@neukum.org>
10219 L:      linux-usb@vger.kernel.org
10220 S:      Maintained
10221 F:      drivers/net/usb/cdc_*.c
10222 F:      include/uapi/linux/usb/cdc.h
10223
10224 USB CHAOSKEY DRIVER
10225 M:      Keith Packard <keithp@keithp.com>
10226 L:      linux-usb@vger.kernel.org
10227 S:      Maintained
10228 F:      drivers/usb/misc/chaoskey.c
10229
10230 USB CYPRESS C67X00 DRIVER
10231 M:      Peter Korsgaard <jacmet@sunsite.dk>
10232 L:      linux-usb@vger.kernel.org
10233 S:      Maintained
10234 F:      drivers/usb/c67x00/
10235
10236 USB DAVICOM DM9601 DRIVER
10237 M:      Peter Korsgaard <jacmet@sunsite.dk>
10238 L:      netdev@vger.kernel.org
10239 W:      http://www.linux-usb.org/usbnet
10240 S:      Maintained
10241 F:      drivers/net/usb/dm9601.c
10242
10243 USB DIAMOND RIO500 DRIVER
10244 M:      Cesar Miquel <miquel@df.uba.ar>
10245 L:      rio500-users@lists.sourceforge.net
10246 W:      http://rio500.sourceforge.net
10247 S:      Maintained
10248 F:      drivers/usb/misc/rio500*
10249
10250 USB EHCI DRIVER
10251 M:      Alan Stern <stern@rowland.harvard.edu>
10252 L:      linux-usb@vger.kernel.org
10253 S:      Maintained
10254 F:      Documentation/usb/ehci.txt
10255 F:      drivers/usb/host/ehci*
10256
10257 USB GADGET/PERIPHERAL SUBSYSTEM
10258 M:      Felipe Balbi <balbi@ti.com>
10259 L:      linux-usb@vger.kernel.org
10260 W:      http://www.linux-usb.org/gadget
10261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10262 S:      Maintained
10263 F:      drivers/usb/gadget/
10264 F:      include/linux/usb/gadget*
10265
10266 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10267 M:      Jiri Kosina <jkosina@suse.cz>
10268 L:      linux-usb@vger.kernel.org
10269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10270 S:      Maintained
10271 F:      Documentation/hid/hiddev.txt
10272 F:      drivers/hid/usbhid/
10273
10274 USB ISP116X DRIVER
10275 M:      Olav Kongas <ok@artecdesign.ee>
10276 L:      linux-usb@vger.kernel.org
10277 S:      Maintained
10278 F:      drivers/usb/host/isp116x*
10279 F:      include/linux/usb/isp116x.h
10280
10281 USB MASS STORAGE DRIVER
10282 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10283 L:      linux-usb@vger.kernel.org
10284 L:      usb-storage@lists.one-eyed-alien.net
10285 S:      Maintained
10286 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10287 F:      drivers/usb/storage/
10288
10289 USB MIDI DRIVER
10290 M:      Clemens Ladisch <clemens@ladisch.de>
10291 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10292 T:      git git://git.alsa-project.org/alsa-kernel.git
10293 S:      Maintained
10294 F:      sound/usb/midi.*
10295
10296 USB NETWORKING DRIVERS
10297 L:      linux-usb@vger.kernel.org
10298 S:      Odd Fixes
10299 F:      drivers/net/usb/
10300
10301 USB OHCI DRIVER
10302 M:      Alan Stern <stern@rowland.harvard.edu>
10303 L:      linux-usb@vger.kernel.org
10304 S:      Maintained
10305 F:      Documentation/usb/ohci.txt
10306 F:      drivers/usb/host/ohci*
10307
10308 USB OTG FSM (Finite State Machine)
10309 M:      Peter Chen <Peter.Chen@freescale.com>
10310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10311 L:      linux-usb@vger.kernel.org
10312 S:      Maintained
10313 F:      drivers/usb/common/usb-otg-fsm.c
10314
10315 USB OVER IP DRIVER
10316 M:      Valentina Manea <valentina.manea.m@gmail.com>
10317 M:      Shuah Khan <shuah.kh@samsung.com>
10318 L:      linux-usb@vger.kernel.org
10319 S:      Maintained
10320 F:      drivers/usb/usbip/
10321 F:      tools/usb/usbip/
10322
10323 USB PEGASUS DRIVER
10324 M:      Petko Manolov <petkan@nucleusys.com>
10325 L:      linux-usb@vger.kernel.org
10326 L:      netdev@vger.kernel.org
10327 T:      git git://github.com/petkan/pegasus.git
10328 W:      https://github.com/petkan/pegasus
10329 S:      Maintained
10330 F:      drivers/net/usb/pegasus.*
10331
10332 USB PHY LAYER
10333 M:      Felipe Balbi <balbi@ti.com>
10334 L:      linux-usb@vger.kernel.org
10335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10336 S:      Maintained
10337 F:      drivers/usb/phy/
10338
10339 USB PRINTER DRIVER (usblp)
10340 M:      Pete Zaitcev <zaitcev@redhat.com>
10341 L:      linux-usb@vger.kernel.org
10342 S:      Supported
10343 F:      drivers/usb/class/usblp.c
10344
10345 USB RTL8150 DRIVER
10346 M:      Petko Manolov <petkan@nucleusys.com>
10347 L:      linux-usb@vger.kernel.org
10348 L:      netdev@vger.kernel.org
10349 T:      git git://github.com/petkan/rtl8150.git
10350 W:      https://github.com/petkan/rtl8150
10351 S:      Maintained
10352 F:      drivers/net/usb/rtl8150.c
10353
10354 USB SERIAL SUBSYSTEM
10355 M:      Johan Hovold <johan@kernel.org>
10356 L:      linux-usb@vger.kernel.org
10357 S:      Maintained
10358 F:      Documentation/usb/usb-serial.txt
10359 F:      drivers/usb/serial/
10360 F:      include/linux/usb/serial.h
10361
10362 USB SMSC75XX ETHERNET DRIVER
10363 M:      Steve Glendinning <steve.glendinning@shawell.net>
10364 L:      netdev@vger.kernel.org
10365 S:      Maintained
10366 F:      drivers/net/usb/smsc75xx.*
10367
10368 USB SMSC95XX ETHERNET DRIVER
10369 M:      Steve Glendinning <steve.glendinning@shawell.net>
10370 L:      netdev@vger.kernel.org
10371 S:      Maintained
10372 F:      drivers/net/usb/smsc95xx.*
10373
10374 USB SUBSYSTEM
10375 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10376 L:      linux-usb@vger.kernel.org
10377 W:      http://www.linux-usb.org
10378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10379 S:      Supported
10380 F:      Documentation/usb/
10381 F:      drivers/usb/
10382 F:      include/linux/usb.h
10383 F:      include/linux/usb/
10384
10385 USB UHCI DRIVER
10386 M:      Alan Stern <stern@rowland.harvard.edu>
10387 L:      linux-usb@vger.kernel.org
10388 S:      Maintained
10389 F:      drivers/usb/host/uhci*
10390
10391 USB "USBNET" DRIVER FRAMEWORK
10392 M:      Oliver Neukum <oneukum@suse.de>
10393 L:      netdev@vger.kernel.org
10394 W:      http://www.linux-usb.org/usbnet
10395 S:      Maintained
10396 F:      drivers/net/usb/usbnet.c
10397 F:      include/linux/usb/usbnet.h
10398
10399 USB VIDEO CLASS
10400 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10401 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10402 L:      linux-media@vger.kernel.org
10403 T:      git git://linuxtv.org/media_tree.git
10404 W:      http://www.ideasonboard.org/uvc/
10405 S:      Maintained
10406 F:      drivers/media/usb/uvc/
10407 F:      include/uapi/linux/uvcvideo.h
10408
10409 USB VISION DRIVER
10410 M:      Hans Verkuil <hverkuil@xs4all.nl>
10411 L:      linux-media@vger.kernel.org
10412 T:      git git://linuxtv.org/media_tree.git
10413 W:      http://linuxtv.org
10414 S:      Odd Fixes
10415 F:      drivers/media/usb/usbvision/
10416
10417 USB WEBCAM GADGET
10418 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10419 L:      linux-usb@vger.kernel.org
10420 S:      Maintained
10421 F:      drivers/usb/gadget/function/*uvc*
10422 F:      drivers/usb/gadget/legacy/webcam.c
10423
10424 USB WIRELESS RNDIS DRIVER (rndis_wlan)
10425 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
10426 L:      linux-wireless@vger.kernel.org
10427 S:      Maintained
10428 F:      drivers/net/wireless/rndis_wlan.c
10429
10430 USB XHCI DRIVER
10431 M:      Mathias Nyman <mathias.nyman@intel.com>
10432 L:      linux-usb@vger.kernel.org
10433 S:      Supported
10434 F:      drivers/usb/host/xhci*
10435 F:      drivers/usb/host/pci-quirks*
10436
10437 USB ZD1201 DRIVER
10438 L:      linux-wireless@vger.kernel.org
10439 W:      http://linux-lc100020.sourceforge.net
10440 S:      Orphan
10441 F:      drivers/net/wireless/zd1201.*
10442
10443 USB ZR364XX DRIVER
10444 M:      Antoine Jacquet <royale@zerezo.com>
10445 L:      linux-usb@vger.kernel.org
10446 L:      linux-media@vger.kernel.org
10447 T:      git git://linuxtv.org/media_tree.git
10448 W:      http://royale.zerezo.com/zr364xx/
10449 S:      Maintained
10450 F:      Documentation/video4linux/zr364xx.txt
10451 F:      drivers/media/usb/zr364xx/
10452
10453 USER-MODE LINUX (UML)
10454 M:      Jeff Dike <jdike@addtoit.com>
10455 M:      Richard Weinberger <richard@nod.at>
10456 L:      user-mode-linux-devel@lists.sourceforge.net
10457 L:      user-mode-linux-user@lists.sourceforge.net
10458 W:      http://user-mode-linux.sourceforge.net
10459 S:      Maintained
10460 F:      Documentation/virtual/uml/
10461 F:      arch/um/
10462 F:      arch/x86/um/
10463 F:      fs/hostfs/
10464 F:      fs/hppfs/
10465
10466 USERSPACE I/O (UIO)
10467 M:      "Hans J. Koch" <hjk@hansjkoch.de>
10468 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10469 S:      Maintained
10470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
10471 F:      Documentation/DocBook/uio-howto.tmpl
10472 F:      drivers/uio/
10473 F:      include/linux/uio*.h
10474
10475 UTIL-LINUX PACKAGE
10476 M:      Karel Zak <kzak@redhat.com>
10477 L:      util-linux@vger.kernel.org
10478 W:      http://en.wikipedia.org/wiki/Util-linux
10479 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
10480 S:      Maintained
10481
10482 UVESAFB DRIVER
10483 M:      Michal Januszewski <spock@gentoo.org>
10484 L:      linux-fbdev@vger.kernel.org
10485 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
10486 S:      Maintained
10487 F:      Documentation/fb/uvesafb.txt
10488 F:      drivers/video/fbdev/uvesafb.*
10489
10490 VFAT/FAT/MSDOS FILESYSTEM
10491 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
10492 S:      Maintained
10493 F:      Documentation/filesystems/vfat.txt
10494 F:      fs/fat/
10495
10496 VFIO DRIVER
10497 M:      Alex Williamson <alex.williamson@redhat.com>
10498 L:      kvm@vger.kernel.org
10499 S:      Maintained
10500 F:      Documentation/vfio.txt
10501 F:      drivers/vfio/
10502 F:      include/linux/vfio.h
10503 F:      include/uapi/linux/vfio.h
10504
10505 VIDEOBUF2 FRAMEWORK
10506 M:      Pawel Osciak <pawel@osciak.com>
10507 M:      Marek Szyprowski <m.szyprowski@samsung.com>
10508 M:      Kyungmin Park <kyungmin.park@samsung.com>
10509 L:      linux-media@vger.kernel.org
10510 S:      Maintained
10511 F:      drivers/media/v4l2-core/videobuf2-*
10512 F:      include/media/videobuf2-*
10513
10514 VIRTIO CONSOLE DRIVER
10515 M:      Amit Shah <amit.shah@redhat.com>
10516 L:      virtualization@lists.linux-foundation.org
10517 S:      Maintained
10518 F:      drivers/char/virtio_console.c
10519 F:      include/linux/virtio_console.h
10520 F:      include/uapi/linux/virtio_console.h
10521
10522 VIRTIO CORE, NET AND BLOCK DRIVERS
10523 M:      Rusty Russell <rusty@rustcorp.com.au>
10524 M:      "Michael S. Tsirkin" <mst@redhat.com>
10525 L:      virtualization@lists.linux-foundation.org
10526 S:      Maintained
10527 F:      drivers/virtio/
10528 F:      tools/virtio/
10529 F:      drivers/net/virtio_net.c
10530 F:      drivers/block/virtio_blk.c
10531 F:      include/linux/virtio_*.h
10532 F:      include/uapi/linux/virtio_*.h
10533
10534 VIRTIO HOST (VHOST)
10535 M:      "Michael S. Tsirkin" <mst@redhat.com>
10536 L:      kvm@vger.kernel.org
10537 L:      virtualization@lists.linux-foundation.org
10538 L:      netdev@vger.kernel.org
10539 S:      Maintained
10540 F:      drivers/vhost/
10541 F:      include/uapi/linux/vhost.h
10542
10543 VIA RHINE NETWORK DRIVER
10544 M:      Roger Luethi <rl@hellgate.ch>
10545 S:      Maintained
10546 F:      drivers/net/ethernet/via/via-rhine.c
10547
10548 VIA SD/MMC CARD CONTROLLER DRIVER
10549 M:      Bruce Chang <brucechang@via.com.tw>
10550 M:      Harald Welte <HaraldWelte@viatech.com>
10551 S:      Maintained
10552 F:      drivers/mmc/host/via-sdmmc.c
10553
10554 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
10555 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
10556 L:      linux-fbdev@vger.kernel.org
10557 S:      Maintained
10558 F:      include/linux/via-core.h
10559 F:      include/linux/via-gpio.h
10560 F:      include/linux/via_i2c.h
10561 F:      drivers/video/fbdev/via/
10562
10563 VIA VELOCITY NETWORK DRIVER
10564 M:      Francois Romieu <romieu@fr.zoreil.com>
10565 L:      netdev@vger.kernel.org
10566 S:      Maintained
10567 F:      drivers/net/ethernet/via/via-velocity.*
10568
10569 VIVID VIRTUAL VIDEO DRIVER
10570 M:      Hans Verkuil <hverkuil@xs4all.nl>
10571 L:      linux-media@vger.kernel.org
10572 T:      git git://linuxtv.org/media_tree.git
10573 W:      http://linuxtv.org
10574 S:      Maintained
10575 F:      drivers/media/platform/vivid/*
10576
10577 VLAN (802.1Q)
10578 M:      Patrick McHardy <kaber@trash.net>
10579 L:      netdev@vger.kernel.org
10580 S:      Maintained
10581 F:      drivers/net/macvlan.c
10582 F:      include/linux/if_*vlan.h
10583 F:      net/8021q/
10584
10585 VLYNQ BUS
10586 M:      Florian Fainelli <florian@openwrt.org>
10587 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
10588 S:      Maintained
10589 F:      drivers/vlynq/vlynq.c
10590 F:      include/linux/vlynq.h
10591
10592 VME SUBSYSTEM
10593 M:      Martyn Welch <martyn.welch@ge.com>
10594 M:      Manohar Vanga <manohar.vanga@gmail.com>
10595 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10596 L:      devel@driverdev.osuosl.org
10597 S:      Maintained
10598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10599 F:      Documentation/vme_api.txt
10600 F:      drivers/staging/vme/
10601 F:      drivers/vme/
10602 F:      include/linux/vme*
10603
10604 VMWARE HYPERVISOR INTERFACE
10605 M:      Alok Kataria <akataria@vmware.com>
10606 L:      virtualization@lists.linux-foundation.org
10607 S:      Supported
10608 F:      arch/x86/kernel/cpu/vmware.c
10609
10610 VMWARE BALLOON DRIVER
10611 M:      Xavier Deguillard <xdeguillard@vmware.com>
10612 M:      Philip Moltmann <moltmann@vmware.com>
10613 M:      "VMware, Inc." <pv-drivers@vmware.com>
10614 L:      linux-kernel@vger.kernel.org
10615 S:      Maintained
10616 F:      drivers/misc/vmw_balloon.c
10617
10618 VMWARE VMXNET3 ETHERNET DRIVER
10619 M:      Shreyas Bhatewara <sbhatewara@vmware.com>
10620 M:      "VMware, Inc." <pv-drivers@vmware.com>
10621 L:      netdev@vger.kernel.org
10622 S:      Maintained
10623 F:      drivers/net/vmxnet3/
10624
10625 VMware PVSCSI driver
10626 M:      Arvind Kumar <arvindkumar@vmware.com>
10627 M:      VMware PV-Drivers <pv-drivers@vmware.com>
10628 L:      linux-scsi@vger.kernel.org
10629 S:      Maintained
10630 F:      drivers/scsi/vmw_pvscsi.c
10631 F:      drivers/scsi/vmw_pvscsi.h
10632
10633 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
10634 M:      Liam Girdwood <lgirdwood@gmail.com>
10635 M:      Mark Brown <broonie@kernel.org>
10636 L:      linux-kernel@vger.kernel.org
10637 W:      http://opensource.wolfsonmicro.com/node/15
10638 W:      http://www.slimlogic.co.uk/?p=48
10639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
10640 S:      Supported
10641 F:      drivers/regulator/
10642 F:      include/linux/regulator/
10643
10644 VT1211 HARDWARE MONITOR DRIVER
10645 M:      Juerg Haefliger <juergh@gmail.com>
10646 L:      lm-sensors@lm-sensors.org
10647 S:      Maintained
10648 F:      Documentation/hwmon/vt1211
10649 F:      drivers/hwmon/vt1211.c
10650
10651 VT8231 HARDWARE MONITOR DRIVER
10652 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
10653 L:      lm-sensors@lm-sensors.org
10654 S:      Maintained
10655 F:      drivers/hwmon/vt8231.c
10656
10657 VUB300 USB to SDIO/SD/MMC bridge chip
10658 M:      Tony Olech <tony.olech@elandigitalsystems.com>
10659 L:      linux-mmc@vger.kernel.org
10660 L:      linux-usb@vger.kernel.org
10661 S:      Supported
10662 F:      drivers/mmc/host/vub300.c
10663
10664 W1 DALLAS'S 1-WIRE BUS
10665 M:      Evgeniy Polyakov <zbr@ioremap.net>
10666 S:      Maintained
10667 F:      Documentation/w1/
10668 F:      drivers/w1/
10669
10670 W83791D HARDWARE MONITORING DRIVER
10671 M:      Marc Hulsman <m.hulsman@tudelft.nl>
10672 L:      lm-sensors@lm-sensors.org
10673 S:      Maintained
10674 F:      Documentation/hwmon/w83791d
10675 F:      drivers/hwmon/w83791d.c
10676
10677 W83793 HARDWARE MONITORING DRIVER
10678 M:      Rudolf Marek <r.marek@assembler.cz>
10679 L:      lm-sensors@lm-sensors.org
10680 S:      Maintained
10681 F:      Documentation/hwmon/w83793
10682 F:      drivers/hwmon/w83793.c
10683
10684 W83795 HARDWARE MONITORING DRIVER
10685 M:      Jean Delvare <jdelvare@suse.de>
10686 L:      lm-sensors@lm-sensors.org
10687 S:      Maintained
10688 F:      drivers/hwmon/w83795.c
10689
10690 W83L51xD SD/MMC CARD INTERFACE DRIVER
10691 M:      Pierre Ossman <pierre@ossman.eu>
10692 S:      Maintained
10693 F:      drivers/mmc/host/wbsd.*
10694
10695 WACOM PROTOCOL 4 SERIAL TABLETS
10696 M:      Julian Squires <julian@cipht.net>
10697 M:      Hans de Goede <hdegoede@redhat.com>
10698 L:      linux-input@vger.kernel.org
10699 S:      Maintained
10700 F:      drivers/input/tablet/wacom_serial4.c
10701
10702 WATCHDOG DEVICE DRIVERS
10703 M:      Wim Van Sebroeck <wim@iguana.be>
10704 L:      linux-watchdog@vger.kernel.org
10705 W:      http://www.linux-watchdog.org/
10706 T:      git git://www.linux-watchdog.org/linux-watchdog.git
10707 S:      Maintained
10708 F:      Documentation/watchdog/
10709 F:      drivers/watchdog/
10710 F:      include/linux/watchdog.h
10711 F:      include/uapi/linux/watchdog.h
10712
10713 WD7000 SCSI DRIVER
10714 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
10715 L:      linux-scsi@vger.kernel.org
10716 S:      Maintained
10717 F:      drivers/scsi/wd7000.c
10718
10719 WIIMOTE HID DRIVER
10720 M:      David Herrmann <dh.herrmann@googlemail.com>
10721 L:      linux-input@vger.kernel.org
10722 S:      Maintained
10723 F:      drivers/hid/hid-wiimote*
10724
10725 WINBOND CIR DRIVER
10726 M:      David Härdeman <david@hardeman.nu>
10727 S:      Maintained
10728 F:      drivers/media/rc/winbond-cir.c
10729
10730 WIMAX STACK
10731 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
10732 M:      linux-wimax@intel.com
10733 L:     wimax@linuxwimax.org (subscribers-only)
10734 S:      Supported
10735 W:      http://linuxwimax.org
10736 F:      Documentation/wimax/README.wimax
10737 F:      include/linux/wimax/debug.h
10738 F:      include/net/wimax.h
10739 F:      include/uapi/linux/wimax.h
10740 F:      net/wimax/
10741
10742 WISTRON LAPTOP BUTTON DRIVER
10743 M:      Miloslav Trmac <mitr@volny.cz>
10744 S:      Maintained
10745 F:      drivers/input/misc/wistron_btns.c
10746
10747 WL3501 WIRELESS PCMCIA CARD DRIVER
10748 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
10749 L:      linux-wireless@vger.kernel.org
10750 W:      http://oops.ghostprotocols.net:81/blog
10751 S:      Maintained
10752 F:      drivers/net/wireless/wl3501*
10753
10754 WM97XX TOUCHSCREEN DRIVERS
10755 M:      Mark Brown <broonie@kernel.org>
10756 M:      Liam Girdwood <lrg@slimlogic.co.uk>
10757 L:      linux-input@vger.kernel.org
10758 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
10759 W:      http://opensource.wolfsonmicro.com/node/7
10760 S:      Supported
10761 F:      drivers/input/touchscreen/*wm97*
10762 F:      include/linux/wm97xx.h
10763
10764 WOLFSON MICROELECTRONICS DRIVERS
10765 L:      patches@opensource.wolfsonmicro.com
10766 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
10767 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
10768 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
10769 S:      Supported
10770 F:      Documentation/hwmon/wm83??
10771 F:      arch/arm/mach-s3c64xx/mach-crag6410*
10772 F:      drivers/clk/clk-wm83*.c
10773 F:      drivers/extcon/extcon-arizona.c
10774 F:      drivers/leds/leds-wm83*.c
10775 F:      drivers/gpio/gpio-*wm*.c
10776 F:      drivers/gpio/gpio-arizona.c
10777 F:      drivers/hwmon/wm83??-hwmon.c
10778 F:      drivers/input/misc/wm831x-on.c
10779 F:      drivers/input/touchscreen/wm831x-ts.c
10780 F:      drivers/input/touchscreen/wm97*.c
10781 F:      drivers/mfd/arizona*
10782 F:      drivers/mfd/wm*.c
10783 F:      drivers/power/wm83*.c
10784 F:      drivers/rtc/rtc-wm83*.c
10785 F:      drivers/regulator/wm8*.c
10786 F:      drivers/video/backlight/wm83*_bl.c
10787 F:      drivers/watchdog/wm83*_wdt.c
10788 F:      include/linux/mfd/arizona/
10789 F:      include/linux/mfd/wm831x/
10790 F:      include/linux/mfd/wm8350/
10791 F:      include/linux/mfd/wm8400*
10792 F:      include/linux/wm97xx.h
10793 F:      include/sound/wm????.h
10794 F:      sound/soc/codecs/arizona.?
10795 F:      sound/soc/codecs/wm*
10796
10797 WORKQUEUE
10798 M:      Tejun Heo <tj@kernel.org>
10799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
10800 S:      Maintained
10801 F:      include/linux/workqueue.h
10802 F:      kernel/workqueue.c
10803 F:      Documentation/workqueue.txt
10804
10805 X.25 NETWORK LAYER
10806 M:      Andrew Hendry <andrew.hendry@gmail.com>
10807 L:      linux-x25@vger.kernel.org
10808 S:      Odd Fixes
10809 F:      Documentation/networking/x25*
10810 F:      include/net/x25*
10811 F:      net/x25/
10812
10813 X86 ARCHITECTURE (32-BIT AND 64-BIT)
10814 M:      Thomas Gleixner <tglx@linutronix.de>
10815 M:      Ingo Molnar <mingo@redhat.com>
10816 M:      "H. Peter Anvin" <hpa@zytor.com>
10817 M:      x86@kernel.org
10818 L:      linux-kernel@vger.kernel.org
10819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
10820 S:      Maintained
10821 F:      Documentation/x86/
10822 F:      arch/x86/
10823
10824 X86 PLATFORM DRIVERS
10825 M:      Darren Hart <dvhart@infradead.org>
10826 L:      platform-driver-x86@vger.kernel.org
10827 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
10828 S:      Maintained
10829 F:      drivers/platform/x86/
10830
10831 X86 MCE INFRASTRUCTURE
10832 M:      Tony Luck <tony.luck@intel.com>
10833 M:      Borislav Petkov <bp@alien8.de>
10834 L:      linux-edac@vger.kernel.org
10835 S:      Maintained
10836 F:      arch/x86/kernel/cpu/mcheck/*
10837
10838 X86 VDSO
10839 M:      Andy Lutomirski <luto@amacapital.net>
10840 L:      linux-kernel@vger.kernel.org
10841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
10842 S:      Maintained
10843 F:      arch/x86/vdso/
10844
10845 XC2028/3028 TUNER DRIVER
10846 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10847 L:      linux-media@vger.kernel.org
10848 W:      http://linuxtv.org
10849 T:      git git://linuxtv.org/media_tree.git
10850 S:      Maintained
10851 F:      drivers/media/tuners/tuner-xc2028.*
10852
10853 XEN HYPERVISOR INTERFACE
10854 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10855 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
10856 M:      David Vrabel <david.vrabel@citrix.com>
10857 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
10859 S:      Supported
10860 F:      arch/x86/xen/
10861 F:      drivers/*/xen-*front.c
10862 F:      drivers/xen/
10863 F:      arch/x86/include/asm/xen/
10864 F:      include/xen/
10865 F:      include/uapi/xen/
10866
10867 XEN HYPERVISOR ARM
10868 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
10869 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10870 S:      Supported
10871 F:      arch/arm/xen/
10872 F:      arch/arm/include/asm/xen/
10873
10874 XEN HYPERVISOR ARM64
10875 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
10876 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10877 S:      Supported
10878 F:      arch/arm64/xen/
10879 F:      arch/arm64/include/asm/xen/
10880
10881 XEN NETWORK BACKEND DRIVER
10882 M:      Ian Campbell <ian.campbell@citrix.com>
10883 M:      Wei Liu <wei.liu2@citrix.com>
10884 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10885 L:      netdev@vger.kernel.org
10886 S:      Supported
10887 F:      drivers/net/xen-netback/*
10888
10889 XEN PCI SUBSYSTEM
10890 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10891 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10892 S:      Supported
10893 F:      arch/x86/pci/*xen*
10894 F:      drivers/pci/*xen*
10895
10896 XEN BLOCK SUBSYSTEM
10897 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10898 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
10899 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10900 S:      Supported
10901 F:      drivers/block/xen-blkback/*
10902 F:      drivers/block/xen*
10903
10904 XEN PVSCSI DRIVERS
10905 M:      Juergen Gross <jgross@suse.com>
10906 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10907 L:      linux-scsi@vger.kernel.org
10908 S:      Supported
10909 F:      drivers/scsi/xen-scsifront.c
10910 F:      drivers/xen/xen-scsiback.c
10911 F:      include/xen/interface/io/vscsiif.h
10912
10913 XEN SWIOTLB SUBSYSTEM
10914 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10915 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10916 S:      Supported
10917 F:      arch/x86/xen/*swiotlb*
10918 F:      drivers/xen/*swiotlb*
10919
10920 XFS FILESYSTEM
10921 P:      Silicon Graphics Inc
10922 M:      Dave Chinner <david@fromorbit.com>
10923 M:      xfs@oss.sgi.com
10924 L:      xfs@oss.sgi.com
10925 W:      http://oss.sgi.com/projects/xfs
10926 T:      git git://oss.sgi.com/xfs/xfs.git
10927 S:      Supported
10928 F:      Documentation/filesystems/xfs.txt
10929 F:      fs/xfs/
10930
10931 XILINX AXI ETHERNET DRIVER
10932 M:      Anirudha Sarangi <anirudh@xilinx.com>
10933 M:      John Linn <John.Linn@xilinx.com>
10934 S:      Maintained
10935 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
10936
10937 XILINX UARTLITE SERIAL DRIVER
10938 M:      Peter Korsgaard <jacmet@sunsite.dk>
10939 L:      linux-serial@vger.kernel.org
10940 S:      Maintained
10941 F:      drivers/tty/serial/uartlite.c
10942
10943 XILLYBUS DRIVER
10944 M:      Eli Billauer <eli.billauer@gmail.com>
10945 L:      linux-kernel@vger.kernel.org
10946 S:      Supported
10947 F:      drivers/char/xillybus/
10948
10949 XTENSA XTFPGA PLATFORM SUPPORT
10950 M:      Max Filippov <jcmvbkbc@gmail.com>
10951 L:      linux-xtensa@linux-xtensa.org
10952 S:      Maintained
10953 F:      drivers/spi/spi-xtensa-xtfpga.c
10954 F:      sound/soc/xtensa/xtfpga-i2s.c
10955
10956 YAM DRIVER FOR AX.25
10957 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
10958 L:      linux-hams@vger.kernel.org
10959 S:      Maintained
10960 F:      drivers/net/hamradio/yam*
10961 F:      include/linux/yam.h
10962
10963 YEALINK PHONE DRIVER
10964 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
10965 L:      usbb2k-api-dev@nongnu.org
10966 S:      Maintained
10967 F:      Documentation/input/yealink.txt
10968 F:      drivers/input/misc/yealink.*
10969
10970 Z8530 DRIVER FOR AX.25
10971 M:      Joerg Reuter <jreuter@yaina.de>
10972 W:      http://yaina.de/jreuter/
10973 W:      http://www.qsl.net/dl1bke/
10974 L:      linux-hams@vger.kernel.org
10975 S:      Maintained
10976 F:      Documentation/networking/z8530drv.txt
10977 F:      drivers/net/hamradio/*scc.c
10978 F:      drivers/net/hamradio/z8530.h
10979
10980 ZBUD COMPRESSED PAGE ALLOCATOR
10981 M:      Seth Jennings <sjennings@variantweb.net>
10982 L:      linux-mm@kvack.org
10983 S:      Maintained
10984 F:      mm/zbud.c
10985 F:      include/linux/zbud.h
10986
10987 ZD1211RW WIRELESS DRIVER
10988 M:      Daniel Drake <dsd@gentoo.org>
10989 M:      Ulrich Kunitz <kune@deine-taler.de>
10990 W:      http://zd1211.ath.cx/wiki/DriverRewrite
10991 L:      linux-wireless@vger.kernel.org
10992 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
10993 S:      Maintained
10994 F:      drivers/net/wireless/zd1211rw/
10995
10996 ZR36067 VIDEO FOR LINUX DRIVER
10997 L:      mjpeg-users@lists.sourceforge.net
10998 L:      linux-media@vger.kernel.org
10999 W:      http://mjpeg.sourceforge.net/driver-zoran/
11000 T:      hg http://linuxtv.org/hg/v4l-dvb
11001 S:      Odd Fixes
11002 F:      drivers/media/pci/zoran/
11003
11004 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11005 M:      Minchan Kim <minchan@kernel.org>
11006 M:      Nitin Gupta <ngupta@vflare.org>
11007 L:      linux-kernel@vger.kernel.org
11008 S:      Maintained
11009 F:      drivers/block/zram/
11010 F:      Documentation/blockdev/zram.txt
11011
11012 ZS DECSTATION Z85C30 SERIAL DRIVER
11013 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11014 S:      Maintained
11015 F:      drivers/tty/serial/zs.*
11016
11017 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11018 M:      Minchan Kim <minchan@kernel.org>
11019 M:      Nitin Gupta <ngupta@vflare.org>
11020 L:      linux-mm@kvack.org
11021 S:      Maintained
11022 F:      mm/zsmalloc.c
11023 F:      include/linux/zsmalloc.h
11024
11025 ZSWAP COMPRESSED SWAP CACHING
11026 M:      Seth Jennings <sjennings@variantweb.net>
11027 L:      linux-mm@kvack.org
11028 S:      Maintained
11029 F:      mm/zswap.c
11030
11031 THE REST
11032 M:      Linus Torvalds <torvalds@linux-foundation.org>
11033 L:      linux-kernel@vger.kernel.org
11034 Q:      http://patchwork.kernel.org/project/LKML/list/
11035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11036 S:      Buried alive in reporters
11037 F:      *
11038 F:      */