OSDN Git Service

mmc: atmel-mci: remove useless include
[sagit-ice-cold/kernel_xiaomi_msm8998.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161
162 6PACK NETWORK DRIVER FOR AX.25
163 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
164 L:      linux-hams@vger.kernel.org
165 S:      Maintained
166 F:      drivers/net/hamradio/6pack.c
167
168 8169 10/100/1000 GIGABIT ETHERNET DRIVER
169 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
170 L:      netdev@vger.kernel.org
171 S:      Maintained
172 F:      drivers/net/ethernet/realtek/r8169.c
173
174 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
175 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
176 L:      linux-serial@vger.kernel.org
177 W:      http://serial.sourceforge.net
178 S:      Maintained
179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
180 F:      drivers/tty/serial/8250*
181 F:      include/linux/serial_8250.h
182
183 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
184 L:      netdev@vger.kernel.org
185 S:      Orphan / Obsolete
186 F:      drivers/net/ethernet/8390/
187
188 9P FILE SYSTEM
189 M:      Eric Van Hensbergen <ericvh@gmail.com>
190 M:      Ron Minnich <rminnich@sandia.gov>
191 M:      Latchesar Ionkov <lucho@ionkov.net>
192 L:      v9fs-developer@lists.sourceforge.net
193 W:      http://swik.net/v9fs
194 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
196 S:      Maintained
197 F:      Documentation/filesystems/9p.txt
198 F:      fs/9p/
199 F:      net/9p/
200 F:      include/net/9p/
201 F:      include/uapi/linux/virtio_9p.h
202 F:      include/trace/events/9p.h
203
204
205 A8293 MEDIA DRIVER
206 M:      Antti Palosaari <crope@iki.fi>
207 L:      linux-media@vger.kernel.org
208 W:      http://linuxtv.org/
209 W:      http://palosaari.fi/linux/
210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
211 T:      git git://linuxtv.org/anttip/media_tree.git
212 S:      Maintained
213 F:      drivers/media/dvb-frontends/a8293*
214
215 AACRAID SCSI RAID DRIVER
216 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
217 L:      linux-scsi@vger.kernel.org
218 W:      http://www.adaptec.com/
219 S:      Supported
220 F:      Documentation/scsi/aacraid.txt
221 F:      drivers/scsi/aacraid/
222
223 ABI/API
224 L:      linux-api@vger.kernel.org
225 F:      Documentation/ABI/
226 F:      include/linux/syscalls.h
227 F:      include/uapi/
228 F:      kernel/sys_ni.c
229
230 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
231 M:      Hans de Goede <hdegoede@redhat.com>
232 L:      lm-sensors@lm-sensors.org
233 S:      Maintained
234 F:      drivers/hwmon/abituguru.c
235
236 ABIT UGURU 3 HARDWARE MONITOR DRIVER
237 M:      Alistair John Strachan <alistair@devzero.co.uk>
238 L:      lm-sensors@lm-sensors.org
239 S:      Maintained
240 F:      drivers/hwmon/abituguru3.c
241
242 ACENIC DRIVER
243 M:      Jes Sorensen <jes@trained-monkey.org>
244 L:      linux-acenic@sunsite.dk
245 S:      Maintained
246 F:      drivers/net/ethernet/alteon/acenic*
247
248 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
249 M:      Peter Feuerer <peter@piie.net>
250 L:      platform-driver-x86@vger.kernel.org
251 W:      http://piie.net/?section=acerhdf
252 S:      Maintained
253 F:      drivers/platform/x86/acerhdf.c
254
255 ACER WMI LAPTOP EXTRAS
256 M:      "Lee, Chun-Yi" <jlee@suse.com>
257 L:      platform-driver-x86@vger.kernel.org
258 S:      Maintained
259 F:      drivers/platform/x86/acer-wmi.c
260
261 ACPI
262 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
263 M:      Len Brown <lenb@kernel.org>
264 L:      linux-acpi@vger.kernel.org
265 W:      https://01.org/linux-acpi
266 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
268 S:      Supported
269 F:      drivers/acpi/
270 F:      drivers/pnp/pnpacpi/
271 F:      include/linux/acpi.h
272 F:      include/acpi/
273 F:      Documentation/acpi/
274 F:      Documentation/ABI/testing/sysfs-bus-acpi
275 F:      drivers/pci/*acpi*
276 F:      drivers/pci/*/*acpi*
277 F:      drivers/pci/*/*/*acpi*
278 F:      tools/power/acpi/
279
280 ACPI COMPONENT ARCHITECTURE (ACPICA)
281 M:      Robert Moore <robert.moore@intel.com>
282 M:      Lv Zheng <lv.zheng@intel.com>
283 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
284 L:      linux-acpi@vger.kernel.org
285 L:      devel@acpica.org
286 W:      https://acpica.org/
287 W:      https://github.com/acpica/acpica/
288 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
290 S:      Supported
291 F:      drivers/acpi/acpica/
292 F:      include/acpi/
293 F:      tools/power/acpi/
294
295 ACPI FAN DRIVER
296 M:      Zhang Rui <rui.zhang@intel.com>
297 L:      linux-acpi@vger.kernel.org
298 W:      https://01.org/linux-acpi
299 S:      Supported
300 F:      drivers/acpi/fan.c
301
302 ACPI THERMAL DRIVER
303 M:      Zhang Rui <rui.zhang@intel.com>
304 L:      linux-acpi@vger.kernel.org
305 W:      https://01.org/linux-acpi
306 S:      Supported
307 F:      drivers/acpi/*thermal*
308
309 ACPI VIDEO DRIVER
310 M:      Zhang Rui <rui.zhang@intel.com>
311 L:      linux-acpi@vger.kernel.org
312 W:      https://01.org/linux-acpi
313 S:      Supported
314 F:      drivers/acpi/video.c
315
316 ACPI WMI DRIVER
317 L:      platform-driver-x86@vger.kernel.org
318 S:      Orphan
319 F:      drivers/platform/x86/wmi.c
320
321 AD1889 ALSA SOUND DRIVER
322 M:      Thibaut Varene <T-Bone@parisc-linux.org>
323 W:      http://wiki.parisc-linux.org/AD1889
324 L:      linux-parisc@vger.kernel.org
325 S:      Maintained
326 F:      sound/pci/ad1889.*
327
328 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
329 M:      Michael Hennerich <michael.hennerich@analog.com>
330 W:      http://wiki.analog.com/AD5254
331 W:      http://ez.analog.com/community/linux-device-drivers
332 S:      Supported
333 F:      drivers/misc/ad525x_dpot.c
334
335 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
336 M:      Michael Hennerich <michael.hennerich@analog.com>
337 W:      http://wiki.analog.com/AD5398
338 W:      http://ez.analog.com/community/linux-device-drivers
339 S:      Supported
340 F:      drivers/regulator/ad5398.c
341
342 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
343 M:      Michael Hennerich <michael.hennerich@analog.com>
344 W:      http://wiki.analog.com/AD7142
345 W:      http://ez.analog.com/community/linux-device-drivers
346 S:      Supported
347 F:      drivers/input/misc/ad714x.c
348
349 AD7877 TOUCHSCREEN DRIVER
350 M:      Michael Hennerich <michael.hennerich@analog.com>
351 W:      http://wiki.analog.com/AD7877
352 W:      http://ez.analog.com/community/linux-device-drivers
353 S:      Supported
354 F:      drivers/input/touchscreen/ad7877.c
355
356 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
357 M:      Michael Hennerich <michael.hennerich@analog.com>
358 W:      http://wiki.analog.com/AD7879
359 W:      http://ez.analog.com/community/linux-device-drivers
360 S:      Supported
361 F:      drivers/input/touchscreen/ad7879.c
362
363 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
364 M:      Jiri Kosina <jkosina@suse.com>
365 S:      Maintained
366
367 ADM1025 HARDWARE MONITOR DRIVER
368 M:      Jean Delvare <jdelvare@suse.com>
369 L:      lm-sensors@lm-sensors.org
370 S:      Maintained
371 F:      Documentation/hwmon/adm1025
372 F:      drivers/hwmon/adm1025.c
373
374 ADM1029 HARDWARE MONITOR DRIVER
375 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
376 L:      lm-sensors@lm-sensors.org
377 S:      Maintained
378 F:      drivers/hwmon/adm1029.c
379
380 ADM8211 WIRELESS DRIVER
381 L:      linux-wireless@vger.kernel.org
382 W:      http://wireless.kernel.org/
383 S:      Orphan
384 F:      drivers/net/wireless/adm8211.*
385
386 ADP1653 FLASH CONTROLLER DRIVER
387 M:      Sakari Ailus <sakari.ailus@iki.fi>
388 L:      linux-media@vger.kernel.org
389 S:      Maintained
390 F:      drivers/media/i2c/adp1653.c
391 F:      include/media/adp1653.h
392
393 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
394 M:      Michael Hennerich <michael.hennerich@analog.com>
395 W:      http://wiki.analog.com/ADP5520
396 W:      http://ez.analog.com/community/linux-device-drivers
397 S:      Supported
398 F:      drivers/mfd/adp5520.c
399 F:      drivers/video/backlight/adp5520_bl.c
400 F:      drivers/leds/leds-adp5520.c
401 F:      drivers/gpio/gpio-adp5520.c
402 F:      drivers/input/keyboard/adp5520-keys.c
403
404 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
405 M:      Michael Hennerich <michael.hennerich@analog.com>
406 W:      http://wiki.analog.com/ADP5588
407 W:      http://ez.analog.com/community/linux-device-drivers
408 S:      Supported
409 F:      drivers/input/keyboard/adp5588-keys.c
410 F:      drivers/gpio/gpio-adp5588.c
411
412 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
413 M:      Michael Hennerich <michael.hennerich@analog.com>
414 W:      http://wiki.analog.com/ADP8860
415 W:      http://ez.analog.com/community/linux-device-drivers
416 S:      Supported
417 F:      drivers/video/backlight/adp8860_bl.c
418
419 ADS1015 HARDWARE MONITOR DRIVER
420 M:      Dirk Eibach <eibach@gdsys.de>
421 L:      lm-sensors@lm-sensors.org
422 S:      Maintained
423 F:      Documentation/hwmon/ads1015
424 F:      drivers/hwmon/ads1015.c
425 F:      include/linux/i2c/ads1015.h
426
427 ADT746X FAN DRIVER
428 M:      Colin Leroy <colin@colino.net>
429 S:      Maintained
430 F:      drivers/macintosh/therm_adt746x.c
431
432 ADT7475 HARDWARE MONITOR DRIVER
433 M:      Jean Delvare <jdelvare@suse.com>
434 L:      lm-sensors@lm-sensors.org
435 S:      Maintained
436 F:      Documentation/hwmon/adt7475
437 F:      drivers/hwmon/adt7475.c
438
439 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
440 M:      Michael Hennerich <michael.hennerich@analog.com>
441 W:      http://wiki.analog.com/ADXL345
442 W:      http://ez.analog.com/community/linux-device-drivers
443 S:      Supported
444 F:      drivers/input/misc/adxl34x.c
445
446 ADVANSYS SCSI DRIVER
447 M:      Matthew Wilcox <matthew@wil.cx>
448 M:      Hannes Reinecke <hare@suse.com>
449 L:      linux-scsi@vger.kernel.org
450 S:      Maintained
451 F:      Documentation/scsi/advansys.txt
452 F:      drivers/scsi/advansys.c
453
454 AEDSP16 DRIVER
455 M:      Riccardo Facchetti <fizban@tin.it>
456 S:      Maintained
457 F:      sound/oss/aedsp16.c
458
459 AF9013 MEDIA DRIVER
460 M:      Antti Palosaari <crope@iki.fi>
461 L:      linux-media@vger.kernel.org
462 W:      http://linuxtv.org/
463 W:      http://palosaari.fi/linux/
464 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
465 T:      git git://linuxtv.org/anttip/media_tree.git
466 S:      Maintained
467 F:      drivers/media/dvb-frontends/af9013*
468
469 AF9033 MEDIA DRIVER
470 M:      Antti Palosaari <crope@iki.fi>
471 L:      linux-media@vger.kernel.org
472 W:      http://linuxtv.org/
473 W:      http://palosaari.fi/linux/
474 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
475 T:      git git://linuxtv.org/anttip/media_tree.git
476 S:      Maintained
477 F:      drivers/media/dvb-frontends/af9033*
478
479 AFFS FILE SYSTEM
480 L:      linux-fsdevel@vger.kernel.org
481 S:      Orphan
482 F:      Documentation/filesystems/affs.txt
483 F:      fs/affs/
484
485 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
486 M:      David Howells <dhowells@redhat.com>
487 L:      linux-afs@lists.infradead.org
488 S:      Supported
489 F:      fs/afs/
490 F:      include/net/af_rxrpc.h
491 F:      net/rxrpc/af_rxrpc.c
492
493 AGPGART DRIVER
494 M:      David Airlie <airlied@linux.ie>
495 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
496 S:      Maintained
497 F:      drivers/char/agp/
498 F:      include/linux/agp*
499 F:      include/uapi/linux/agp*
500
501 AHA152X SCSI DRIVER
502 M:      "Juergen E. Fischer" <fischer@norbit.de>
503 L:      linux-scsi@vger.kernel.org
504 S:      Maintained
505 F:      drivers/scsi/aha152x*
506 F:      drivers/scsi/pcmcia/aha152x*
507
508 AIC7XXX / AIC79XX SCSI DRIVER
509 M:      Hannes Reinecke <hare@suse.com>
510 L:      linux-scsi@vger.kernel.org
511 S:      Maintained
512 F:      drivers/scsi/aic7xxx/
513
514 AIMSLAB FM RADIO RECEIVER DRIVER
515 M:      Hans Verkuil <hverkuil@xs4all.nl>
516 L:      linux-media@vger.kernel.org
517 T:      git git://linuxtv.org/media_tree.git
518 W:      http://linuxtv.org
519 S:      Maintained
520 F:      drivers/media/radio/radio-aimslab*
521
522 AIO
523 M:      Benjamin LaHaise <bcrl@kvack.org>
524 L:      linux-aio@kvack.org
525 S:      Supported
526 F:      fs/aio.c
527 F:      include/linux/*aio*.h
528
529 AIRSPY MEDIA DRIVER
530 M:      Antti Palosaari <crope@iki.fi>
531 L:      linux-media@vger.kernel.org
532 W:      http://linuxtv.org/
533 W:      http://palosaari.fi/linux/
534 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
535 T:      git git://linuxtv.org/anttip/media_tree.git
536 S:      Maintained
537 F:      drivers/media/usb/airspy/
538
539 ALCATEL SPEEDTOUCH USB DRIVER
540 M:      Duncan Sands <duncan.sands@free.fr>
541 L:      linux-usb@vger.kernel.org
542 W:      http://www.linux-usb.org/SpeedTouch/
543 S:      Maintained
544 F:      drivers/usb/atm/speedtch.c
545 F:      drivers/usb/atm/usbatm.c
546
547 ALCHEMY AU1XX0 MMC DRIVER
548 M:      Manuel Lauss <manuel.lauss@gmail.com>
549 S:      Maintained
550 F:      drivers/mmc/host/au1xmmc.c
551
552 ALI1563 I2C DRIVER
553 M:      Rudolf Marek <r.marek@assembler.cz>
554 L:      linux-i2c@vger.kernel.org
555 S:      Maintained
556 F:      Documentation/i2c/busses/i2c-ali1563
557 F:      drivers/i2c/busses/i2c-ali1563.c
558
559 ALPHA PORT
560 M:      Richard Henderson <rth@twiddle.net>
561 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
562 M:      Matt Turner <mattst88@gmail.com>
563 S:      Odd Fixes
564 L:      linux-alpha@vger.kernel.org
565 F:      arch/alpha/
566
567 ALTERA MAILBOX DRIVER
568 M:      Ley Foon Tan <lftan@altera.com>
569 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
570 S:      Maintained
571 F:      drivers/mailbox/mailbox-altera.c
572
573 ALTERA PIO DRIVER
574 M:      Tien Hock Loh <thloh@altera.com>
575 L:      linux-gpio@vger.kernel.org
576 S:      Maintained
577 F:      drivers/gpio/gpio-altera.c
578
579 ALTERA TRIPLE SPEED ETHERNET DRIVER
580 M:      Vince Bridgers <vbridger@opensource.altera.com>
581 L:      netdev@vger.kernel.org
582 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
583 S:      Maintained
584 F:      drivers/net/ethernet/altera/
585
586 ALTERA UART/JTAG UART SERIAL DRIVERS
587 M:      Tobias Klauser <tklauser@distanz.ch>
588 L:      linux-serial@vger.kernel.org
589 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
590 S:      Maintained
591 F:      drivers/tty/serial/altera_uart.c
592 F:      drivers/tty/serial/altera_jtaguart.c
593 F:      include/linux/altera_uart.h
594 F:      include/linux/altera_jtaguart.h
595
596 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
597 M:      Tom Lendacky <thomas.lendacky@amd.com>
598 L:      linux-crypto@vger.kernel.org
599 S:      Supported
600 F:      drivers/crypto/ccp/
601 F:      include/linux/ccp.h
602
603 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
604 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
605 L:      lm-sensors@lm-sensors.org
606 S:      Maintained
607 F:      Documentation/hwmon/fam15h_power
608 F:      drivers/hwmon/fam15h_power.c
609
610 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
611 M:      Thomas Dahlmann <dahlmann.thomas@arcor.de>
612 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
613 S:      Supported
614 F:      drivers/usb/gadget/udc/amd5536udc.*
615
616 AMD GEODE PROCESSOR/CHIPSET SUPPORT
617 P:      Andres Salomon <dilinger@queued.net>
618 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
619 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
620 S:      Supported
621 F:      drivers/char/hw_random/geode-rng.c
622 F:      drivers/crypto/geode*
623 F:      drivers/video/fbdev/geode/
624 F:      arch/x86/include/asm/geode.h
625
626 AMD IOMMU (AMD-VI)
627 M:      Joerg Roedel <joro@8bytes.org>
628 L:      iommu@lists.linux-foundation.org
629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
630 S:      Maintained
631 F:      drivers/iommu/amd_iommu*.[ch]
632 F:      include/linux/amd-iommu.h
633
634 AMD KFD
635 M:      Oded Gabbay <oded.gabbay@gmail.com>
636 L:      dri-devel@lists.freedesktop.org
637 T:      git git://people.freedesktop.org/~gabbayo/linux.git
638 S:      Supported
639 F:      drivers/gpu/drm/amd/amdkfd/
640 F:      drivers/gpu/drm/amd/include/cik_structs.h
641 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
642 F:      drivers/gpu/drm/radeon/radeon_kfd.c
643 F:      drivers/gpu/drm/radeon/radeon_kfd.h
644 F:      include/uapi/linux/kfd_ioctl.h
645
646 AMD MICROCODE UPDATE SUPPORT
647 M:      Borislav Petkov <bp@alien8.de>
648 S:      Maintained
649 F:      arch/x86/kernel/cpu/microcode/amd*
650
651 AMD XGBE DRIVER
652 M:      Tom Lendacky <thomas.lendacky@amd.com>
653 L:      netdev@vger.kernel.org
654 S:      Supported
655 F:      drivers/net/ethernet/amd/xgbe/
656
657 AMS (Apple Motion Sensor) DRIVER
658 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
659 S:      Supported
660 F:      drivers/macintosh/ams/
661
662 AMSO1100 RNIC DRIVER
663 M:      Tom Tucker <tom@opengridcomputing.com>
664 M:      Steve Wise <swise@opengridcomputing.com>
665 L:      linux-rdma@vger.kernel.org
666 S:      Maintained
667 F:      drivers/infiniband/hw/amso1100/
668
669 ANALOG DEVICES INC AD9389B DRIVER
670 M:      Hans Verkuil <hans.verkuil@cisco.com>
671 L:      linux-media@vger.kernel.org
672 S:      Maintained
673 F:      drivers/media/i2c/ad9389b*
674
675 ANALOG DEVICES INC ADV7180 DRIVER
676 M:      Lars-Peter Clausen <lars@metafoo.de>
677 L:      linux-media@vger.kernel.org
678 W:      http://ez.analog.com/community/linux-device-drivers
679 S:      Supported
680 F:      drivers/media/i2c/adv7180.c
681
682 ANALOG DEVICES INC ADV7511 DRIVER
683 M:      Hans Verkuil <hans.verkuil@cisco.com>
684 L:      linux-media@vger.kernel.org
685 S:      Maintained
686 F:      drivers/media/i2c/adv7511*
687
688 ANALOG DEVICES INC ADV7604 DRIVER
689 M:      Hans Verkuil <hans.verkuil@cisco.com>
690 L:      linux-media@vger.kernel.org
691 S:      Maintained
692 F:      drivers/media/i2c/adv7604*
693
694 ANALOG DEVICES INC ADV7842 DRIVER
695 M:      Hans Verkuil <hans.verkuil@cisco.com>
696 L:      linux-media@vger.kernel.org
697 S:      Maintained
698 F:      drivers/media/i2c/adv7842*
699
700 ANALOG DEVICES INC ASOC CODEC DRIVERS
701 M:      Lars-Peter Clausen <lars@metafoo.de>
702 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
703 W:      http://wiki.analog.com/
704 W:      http://ez.analog.com/community/linux-device-drivers
705 S:      Supported
706 F:      sound/soc/codecs/adau*
707 F:      sound/soc/codecs/adav*
708 F:      sound/soc/codecs/ad1*
709 F:      sound/soc/codecs/ad7*
710 F:      sound/soc/codecs/ssm*
711 F:      sound/soc/codecs/sigmadsp.*
712
713 ANALOG DEVICES INC ASOC DRIVERS
714 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
715 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
716 W:      http://blackfin.uclinux.org/
717 S:      Supported
718 F:      sound/soc/blackfin/*
719
720 ANALOG DEVICES INC IIO DRIVERS
721 M:      Lars-Peter Clausen <lars@metafoo.de>
722 M:      Michael Hennerich <Michael.Hennerich@analog.com>
723 W:      http://wiki.analog.com/
724 W:      http://ez.analog.com/community/linux-device-drivers
725 S:      Supported
726 F:      drivers/iio/*/ad*
727 X:      drivers/iio/*/adjd*
728 F:      drivers/staging/iio/*/ad*
729 F:      staging/iio/trigger/iio-trig-bfin-timer.c
730
731 ANDROID DRIVERS
732 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
733 M:      Arve HjønnevĂ¥g <arve@android.com>
734 M:      Riley Andrews <riandrews@android.com>
735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/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.com>
750 S:      Odd fixes
751 F:      arch/x86/kernel/apm_32.c
752 F:      include/linux/apm_bios.h
753 F:      include/uapi/linux/apm_bios.h
754 F:      drivers/char/apm-emulation.c
755
756 APPLE BCM5974 MULTITOUCH DRIVER
757 M:      Henrik Rydberg <rydberg@bitmath.org>
758 L:      linux-input@vger.kernel.org
759 S:      Odd fixes
760 F:      drivers/input/mouse/bcm5974.c
761
762 APPLE SMC DRIVER
763 M:      Henrik Rydberg <rydberg@bitmath.org>
764 L:      lm-sensors@lm-sensors.org
765 S:      Odd fixes
766 F:      drivers/hwmon/applesmc.c
767
768 APPLETALK NETWORK LAYER
769 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
770 S:      Maintained
771 F:      drivers/net/appletalk/
772 F:      net/appletalk/
773
774 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
775 M:      Iyappan Subramanian <isubramanian@apm.com>
776 M:      Keyur Chudgar <kchudgar@apm.com>
777 S:      Supported
778 F:      drivers/net/ethernet/apm/xgene/
779 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
780
781 APTINA CAMERA SENSOR PLL
782 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
783 L:      linux-media@vger.kernel.org
784 S:      Maintained
785 F:      drivers/media/i2c/aptina-pll.*
786
787 ARC FRAMEBUFFER DRIVER
788 M:      Jaya Kumar <jayalk@intworks.biz>
789 S:      Maintained
790 F:      drivers/video/fbdev/arcfb.c
791 F:      drivers/video/fbdev/core/fb_defio.c
792
793 ARM MFM AND FLOPPY DRIVERS
794 M:      Ian Molton <spyro@f2s.com>
795 S:      Maintained
796 F:      arch/arm/lib/floppydma.S
797 F:      arch/arm/include/asm/floppy.h
798
799 ARM PMU PROFILING AND DEBUGGING
800 M:      Will Deacon <will.deacon@arm.com>
801 S:      Maintained
802 F:      arch/arm/kernel/perf_event*
803 F:      arch/arm/oprofile/common.c
804 F:      arch/arm/include/asm/pmu.h
805 F:      arch/arm/kernel/hw_breakpoint.c
806 F:      arch/arm/include/asm/hw_breakpoint.h
807
808 ARM PORT
809 M:      Russell King <linux@arm.linux.org.uk>
810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
811 W:      http://www.arm.linux.org.uk/
812 S:      Maintained
813 F:      arch/arm/
814
815 ARM SUB-ARCHITECTURES
816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
817 S:      Maintained
818 F:      arch/arm/mach-*/
819 F:      arch/arm/plat-*/
820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
821
822 ARM PRIMECELL AACI PL041 DRIVER
823 M:      Russell King <linux@arm.linux.org.uk>
824 S:      Maintained
825 F:      sound/arm/aaci.*
826
827 ARM PRIMECELL CLCD PL110 DRIVER
828 M:      Russell King <linux@arm.linux.org.uk>
829 S:      Maintained
830 F:      drivers/video/fbdev/amba-clcd.*
831
832 ARM PRIMECELL KMI PL050 DRIVER
833 M:      Russell King <linux@arm.linux.org.uk>
834 S:      Maintained
835 F:      drivers/input/serio/ambakmi.*
836 F:      include/linux/amba/kmi.h
837
838 ARM PRIMECELL MMCI PL180/1 DRIVER
839 M:      Russell King <linux@arm.linux.org.uk>
840 S:      Maintained
841 F:      drivers/mmc/host/mmci.*
842 F:      include/linux/amba/mmci.h
843
844 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
845 M:      Russell King <linux@arm.linux.org.uk>
846 S:      Maintained
847 F:      drivers/tty/serial/amba-pl01*.c
848 F:      include/linux/amba/serial.h
849
850 ARM PRIMECELL BUS SUPPORT
851 M:      Russell King <linux@arm.linux.org.uk>
852 S:      Maintained
853 F:      drivers/amba/
854 F:      include/linux/amba/bus.h
855
856 ARM/ADS SPHERE MACHINE SUPPORT
857 M:      Lennert Buytenhek <kernel@wantstofly.org>
858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
859 S:      Maintained
860
861 ARM/AFEB9260 MACHINE SUPPORT
862 M:      Sergey Lapin <slapin@ossfans.org>
863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
864 S:      Maintained
865
866 ARM/AJECO 1ARM MACHINE SUPPORT
867 M:      Lennert Buytenhek <kernel@wantstofly.org>
868 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
869 S:      Maintained
870
871 ARM/Allwinner A1X SoC support
872 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
874 S:      Maintained
875 N:      sun[x4567]i
876
877 ARM/Allwinner SoC Clock Support
878 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
879 S:      Maintained
880 F:      drivers/clk/sunxi/
881
882 ARM/Amlogic MesonX SoC support
883 M:      Carlo Caione <carlo@caione.org>
884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
885 S:      Maintained
886 F:      drivers/media/rc/meson-ir.c
887 N:      meson[x68]
888
889 ARM/Annapurna Labs ALPINE ARCHITECTURE
890 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
891 S:      Maintained
892 F:      arch/arm/mach-alpine/
893
894 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
895 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
896 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
897 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
899 W:      http://www.linux4sam.org
900 S:      Supported
901 F:      arch/arm/mach-at91/
902 F:      include/soc/at91/
903 F:      arch/arm/boot/dts/at91*.dts
904 F:      arch/arm/boot/dts/at91*.dtsi
905 F:      arch/arm/boot/dts/sama*.dts
906 F:      arch/arm/boot/dts/sama*.dtsi
907 F:      arch/arm/include/debug/at91.S
908
909 ARM/ATMEL AT91 Clock Support
910 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
911 S:      Maintained
912 F:      drivers/clk/at91
913
914 ARM/CALXEDA HIGHBANK ARCHITECTURE
915 M:      Rob Herring <robh@kernel.org>
916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917 S:      Maintained
918 F:      arch/arm/mach-highbank/
919
920 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
921 M:      Krzysztof Halasa <khalasa@piap.pl>
922 S:      Maintained
923 F:      arch/arm/mach-cns3xxx/
924
925 ARM/CAVIUM THUNDER NETWORK DRIVER
926 M:      Sunil Goutham <sgoutham@cavium.com>
927 M:      Robert Richter <rric@kernel.org>
928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
929 S:      Supported
930 F:      drivers/net/ethernet/cavium/
931
932 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
933 M:      Alexander Shiyan <shc_work@mail.ru>
934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
935 S:      Odd Fixes
936 N:      clps711x
937
938 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
939 M:      Hartley Sweeten <hsweeten@visionengravers.com>
940 M:      Ryan Mallon <rmallon@gmail.com>
941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
942 S:      Maintained
943 F:      arch/arm/mach-ep93xx/
944 F:      arch/arm/mach-ep93xx/include/mach/
945
946 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
947 M:      Lennert Buytenhek <kernel@wantstofly.org>
948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
949 S:      Maintained
950
951 ARM/CLKDEV SUPPORT
952 M:      Russell King <linux@arm.linux.org.uk>
953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
954 S:      Maintained
955 F:      arch/arm/include/asm/clkdev.h
956 F:      drivers/clk/clkdev.c
957
958 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
959 M:      Mike Rapoport <mike@compulab.co.il>
960 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
961 S:      Maintained
962
963 ARM/CONTEC MICRO9 MACHINE SUPPORT
964 M:      Hubert Feurstein <hubert.feurstein@contec.at>
965 S:      Maintained
966 F:      arch/arm/mach-ep93xx/micro9.c
967
968 ARM/CORESIGHT FRAMEWORK AND DRIVERS
969 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
971 S:      Maintained
972 F:      drivers/hwtracing/coresight/*
973 F:      Documentation/trace/coresight.txt
974 F:      Documentation/devicetree/bindings/arm/coresight.txt
975 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
976
977 ARM/CORGI MACHINE SUPPORT
978 M:      Richard Purdie <rpurdie@rpsys.net>
979 S:      Maintained
980
981 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
982 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
984 T:      git git://github.com/ulli-kroll/linux.git
985 S:      Maintained
986 F:      arch/arm/mach-gemini/
987 F:      drivers/rtc/rtc-gemini.c
988
989 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
990 M:      Barry Song <baohua@kernel.org>
991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
993 S:      Maintained
994 F:      arch/arm/mach-prima2/
995 F:      drivers/clk/sirf/
996 F:      drivers/clocksource/timer-prima2.c
997 F:      drivers/clocksource/timer-atlas7.c
998 N:      [^a-z]sirf
999
1000 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1001 M:      Baruch Siach <baruch@tkos.co.il>
1002 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1003 S:      Maintained
1004 F:      arch/arm/boot/dts/cx92755*
1005 N:      digicolor
1006
1007 ARM/EBSA110 MACHINE SUPPORT
1008 M:      Russell King <linux@arm.linux.org.uk>
1009 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1010 W:      http://www.arm.linux.org.uk/
1011 S:      Maintained
1012 F:      arch/arm/mach-ebsa110/
1013 F:      drivers/net/ethernet/amd/am79c961a.*
1014
1015 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1016 M:      Uwe Kleine-König <kernel@pengutronix.de>
1017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1018 S:      Maintained
1019 N:      efm32
1020
1021 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1022 M:      Daniel Ribeiro <drwyrm@gmail.com>
1023 M:      Stefan Schmidt <stefan@openezx.org>
1024 M:      Harald Welte <laforge@openezx.org>
1025 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1026 W:      http://www.openezx.org/
1027 S:      Maintained
1028 T:      topgit git://git.openezx.org/openezx.git
1029 F:      arch/arm/mach-pxa/ezx.c
1030
1031 ARM/FARADAY FA526 PORT
1032 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1033 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1034 S:      Maintained
1035 T:      git git://git.berlios.de/gemini-board
1036 F:      arch/arm/mm/*-fa*
1037
1038 ARM/FOOTBRIDGE ARCHITECTURE
1039 M:      Russell King <linux@arm.linux.org.uk>
1040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1041 W:      http://www.arm.linux.org.uk/
1042 S:      Maintained
1043 F:      arch/arm/include/asm/hardware/dec21285.h
1044 F:      arch/arm/mach-footbridge/
1045
1046 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1047 M:      Shawn Guo <shawnguo@kernel.org>
1048 M:      Sascha Hauer <kernel@pengutronix.de>
1049 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1050 S:      Maintained
1051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1052 F:      arch/arm/mach-imx/
1053 F:      arch/arm/mach-mxs/
1054 F:      arch/arm/boot/dts/imx*
1055 F:      arch/arm/configs/imx*_defconfig
1056 F:      drivers/clk/imx/
1057 F:      include/soc/imx/
1058
1059 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1060 M:      Shawn Guo <shawnguo@kernel.org>
1061 M:      Sascha Hauer <kernel@pengutronix.de>
1062 R:      Stefan Agner <stefan@agner.ch>
1063 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1064 S:      Maintained
1065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1066 F:      arch/arm/mach-imx/*vf610*
1067 F:      arch/arm/boot/dts/vf*
1068
1069 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1070 M:      Lennert Buytenhek <kernel@wantstofly.org>
1071 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1072 S:      Maintained
1073
1074 ARM/GUMSTIX MACHINE SUPPORT
1075 M:      Steve Sakoman <sakoman@gmail.com>
1076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1077 S:      Maintained
1078
1079 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1080 M:      Philipp Zabel <philipp.zabel@gmail.com>
1081 M:      Paul Parsons <lost.distance@yahoo.com>
1082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083 S:      Maintained
1084 F:      arch/arm/mach-pxa/hx4700.c
1085 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1086 F:      sound/soc/pxa/hx4700.c
1087
1088 ARM/HISILICON SOC SUPPORT
1089 M:      Wei Xu <xuwei5@hisilicon.com>
1090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1091 W:      http://www.hisilicon.com
1092 S:      Supported
1093 T:      git git://github.com/hisilicon/linux-hisi.git
1094 F:      arch/arm/mach-hisi/
1095
1096 ARM/HP JORNADA 7XX MACHINE SUPPORT
1097 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1098 W:      www.jlime.com
1099 S:      Maintained
1100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1101 F:      arch/arm/mach-sa1100/jornada720.c
1102 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1103
1104 ARM/IGEP MACHINE SUPPORT
1105 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1106 M:      Javier Martinez Canillas <javier@dowhile0.org>
1107 L:      linux-omap@vger.kernel.org
1108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1109 S:      Maintained
1110 F:      arch/arm/boot/dts/omap3-igep*
1111
1112 ARM/INCOME PXA270 SUPPORT
1113 M:      Marek Vasut <marek.vasut@gmail.com>
1114 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1115 S:      Maintained
1116 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1117
1118 ARM/INTEL IOP32X ARM ARCHITECTURE
1119 M:      Lennert Buytenhek <kernel@wantstofly.org>
1120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1121 S:      Maintained
1122
1123 ARM/INTEL IOP33X ARM ARCHITECTURE
1124 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1125 S:      Orphan
1126
1127 ARM/INTEL IOP13XX ARM ARCHITECTURE
1128 M:      Lennert Buytenhek <kernel@wantstofly.org>
1129 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1130 S:      Maintained
1131
1132 ARM/INTEL IQ81342EX MACHINE SUPPORT
1133 M:      Lennert Buytenhek <kernel@wantstofly.org>
1134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135 S:      Maintained
1136
1137 ARM/INTEL IXDP2850 MACHINE SUPPORT
1138 M:      Lennert Buytenhek <kernel@wantstofly.org>
1139 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1140 S:      Maintained
1141
1142 ARM/INTEL IXP4XX ARM ARCHITECTURE
1143 M:      Imre Kaloz <kaloz@openwrt.org>
1144 M:      Krzysztof Halasa <khalasa@piap.pl>
1145 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1146 S:      Maintained
1147 F:      arch/arm/mach-ixp4xx/
1148
1149 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1150 M:      Jonathan Cameron <jic23@cam.ac.uk>
1151 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1152 S:      Maintained
1153 F:      arch/arm/mach-pxa/stargate2.c
1154 F:      drivers/pcmcia/pxa2xx_stargate2.c
1155
1156 ARM/INTEL XSC3 (MANZANO) ARM CORE
1157 M:      Lennert Buytenhek <kernel@wantstofly.org>
1158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1159 S:      Maintained
1160
1161 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1162 M:      Lennert Buytenhek <kernel@wantstofly.org>
1163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1164 S:      Maintained
1165
1166 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1167 M:      Santosh Shilimkar <ssantosh@kernel.org>
1168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1169 S:      Maintained
1170 F:      arch/arm/mach-keystone/
1171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1172
1173 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1174 M:      Santosh Shilimkar <ssantosh@kernel.org>
1175 L:      linux-kernel@vger.kernel.org
1176 S:      Maintained
1177 F:      drivers/clk/keystone/
1178
1179 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1180 M:      Santosh Shilimkar <ssantosh@kernel.org>
1181 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1182 L:      linux-kernel@vger.kernel.org
1183 S:      Maintained
1184 F:      drivers/clocksource/timer-keystone.c
1185
1186 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1187 M:      Santosh Shilimkar <ssantosh@kernel.org>
1188 L:      linux-kernel@vger.kernel.org
1189 S:      Maintained
1190 F:      drivers/power/reset/keystone-reset.c
1191
1192 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1193 M:      Santosh Shilimkar <ssantosh@kernel.org>
1194 L:      linux-kernel@vger.kernel.org
1195 S:      Maintained
1196 F:      drivers/memory/*emif*
1197
1198 ARM/LOGICPD PXA270 MACHINE SUPPORT
1199 M:      Lennert Buytenhek <kernel@wantstofly.org>
1200 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1201 S:      Maintained
1202
1203 ARM/LPC18XX ARCHITECTURE
1204 M:      Joachim Eastwood <manabian@gmail.com>
1205 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1206 S:      Maintained
1207 N:      lpc18xx
1208
1209 ARM/MAGICIAN MACHINE SUPPORT
1210 M:      Philipp Zabel <philipp.zabel@gmail.com>
1211 S:      Maintained
1212
1213 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1214 M:      Jason Cooper <jason@lakedaemon.net>
1215 M:      Andrew Lunn <andrew@lunn.ch>
1216 M:      Gregory Clement <gregory.clement@free-electrons.com>
1217 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1218 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1219 S:      Maintained
1220 F:      arch/arm/mach-mvebu/
1221 F:      drivers/rtc/rtc-armada38x.c
1222 F:      arch/arm/boot/dts/armada*
1223 F:      arch/arm/boot/dts/kirkwood*
1224
1225
1226 ARM/Marvell Berlin SoC support
1227 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1229 S:      Maintained
1230 F:      arch/arm/mach-berlin/
1231 F:      arch/arm/boot/dts/berlin*
1232
1233
1234 ARM/Marvell Dove/MV78xx0/Orion SOC support
1235 M:      Jason Cooper <jason@lakedaemon.net>
1236 M:      Andrew Lunn <andrew@lunn.ch>
1237 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1238 M:      Gregory Clement <gregory.clement@free-electrons.com>
1239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1240 S:      Maintained
1241 F:      arch/arm/mach-dove/
1242 F:      arch/arm/mach-mv78xx0/
1243 F:      arch/arm/mach-orion5x/
1244 F:      arch/arm/plat-orion/
1245 F:      arch/arm/boot/dts/dove*
1246 F:      arch/arm/boot/dts/orion5x*
1247
1248
1249 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1250 M:      Alexander Clouter <alex@digriz.org.uk>
1251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1252 W:      http://www.digriz.org.uk/ts78xx/kernel
1253 S:      Maintained
1254 F:      arch/arm/mach-orion5x/ts78xx-*
1255
1256 ARM/Mediatek RTC DRIVER
1257 M:      Eddie Huang <eddie.huang@mediatek.com>
1258 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1259 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1260 S:      Maintained
1261 F:      drivers/rtc/rtc-mt6397.c
1262
1263 ARM/Mediatek SoC support
1264 M:      Matthias Brugger <matthias.bgg@gmail.com>
1265 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1266 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1267 S:      Maintained
1268 F:      arch/arm/boot/dts/mt6*
1269 F:      arch/arm/boot/dts/mt8*
1270 F:      arch/arm/mach-mediatek/
1271 N:      mtk
1272 K:      mediatek
1273
1274 ARM/MICREL KS8695 ARCHITECTURE
1275 M:      Greg Ungerer <gerg@uclinux.org>
1276 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1277 F:      arch/arm/mach-ks8695/
1278 S:      Odd Fixes
1279
1280 ARM/MIOA701 MACHINE SUPPORT
1281 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1282 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1283 F:      arch/arm/mach-pxa/mioa701.c
1284 S:      Maintained
1285
1286 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1287 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1288 S:      Maintained
1289
1290 ARM/NOMADIK ARCHITECTURE
1291 M:      Alessandro Rubini <rubini@unipv.it>
1292 M:      Linus Walleij <linus.walleij@linaro.org>
1293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1294 S:      Maintained
1295 F:      arch/arm/mach-nomadik/
1296 F:      drivers/pinctrl/nomadik/
1297 F:      drivers/i2c/busses/i2c-nomadik.c
1298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1299
1300 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1301 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1302 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1303 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1304 S:      Supported
1305
1306 ARM/TOSA MACHINE SUPPORT
1307 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1308 M:      Dirk Opfer <dirk@opfer-online.de>
1309 S:      Maintained
1310
1311 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1312 M:      Marek Vasut <marek.vasut@gmail.com>
1313 L:      linux-arm-kernel@lists.infradead.org
1314 W:      http://hackndev.com
1315 S:      Maintained
1316 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1317 F:      arch/arm/mach-pxa/palmtx.c
1318 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1319 F:      arch/arm/mach-pxa/palmt5.c
1320 F:      arch/arm/mach-pxa/include/mach/palmld.h
1321 F:      arch/arm/mach-pxa/palmld.c
1322 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1323 F:      arch/arm/mach-pxa/palmte2.c
1324 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1325 F:      arch/arm/mach-pxa/palmtc.c
1326
1327 ARM/PALM TREO SUPPORT
1328 M:      Tomas Cech <sleep_walker@suse.com>
1329 L:      linux-arm-kernel@lists.infradead.org
1330 W:      http://hackndev.com
1331 S:      Maintained
1332 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1333 F:      arch/arm/mach-pxa/palmtreo.c
1334
1335 ARM/PALMZ72 SUPPORT
1336 M:      Sergey Lapin <slapin@ossfans.org>
1337 L:      linux-arm-kernel@lists.infradead.org
1338 W:      http://hackndev.com
1339 S:      Maintained
1340 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1341 F:      arch/arm/mach-pxa/palmz72.c
1342
1343 ARM/PLEB SUPPORT
1344 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1345 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1346 S:      Maintained
1347
1348 ARM/PT DIGITAL BOARD PORT
1349 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1351 W:      http://www.arm.linux.org.uk/
1352 S:      Maintained
1353
1354 ARM/QUALCOMM SUPPORT
1355 M:      Kumar Gala <galak@codeaurora.org>
1356 M:      Andy Gross <agross@codeaurora.org>
1357 M:      David Brown <davidb@codeaurora.org>
1358 L:      linux-arm-msm@vger.kernel.org
1359 L:      linux-soc@vger.kernel.org
1360 S:      Maintained
1361 F:      arch/arm/mach-qcom/
1362 F:      drivers/soc/qcom/
1363 F:      drivers/tty/serial/msm_serial.h
1364 F:      drivers/tty/serial/msm_serial.c
1365 F:      drivers/*/pm8???-*
1366 F:      drivers/mfd/ssbi.c
1367 F:      drivers/firmware/qcom_scm.c
1368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1369
1370 ARM/RADISYS ENP2611 MACHINE SUPPORT
1371 M:      Lennert Buytenhek <kernel@wantstofly.org>
1372 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1373 S:      Maintained
1374
1375 ARM/RISCPC ARCHITECTURE
1376 M:      Russell King <linux@arm.linux.org.uk>
1377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1378 W:      http://www.arm.linux.org.uk/
1379 S:      Maintained
1380 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1381 F:      arch/arm/include/asm/hardware/ioc.h
1382 F:      arch/arm/include/asm/hardware/iomd.h
1383 F:      arch/arm/include/asm/hardware/memc.h
1384 F:      arch/arm/mach-rpc/
1385 F:      drivers/net/ethernet/8390/etherh.c
1386 F:      drivers/net/ethernet/i825xx/ether1*
1387 F:      drivers/net/ethernet/seeq/ether3*
1388 F:      drivers/scsi/arm/
1389
1390 ARM/Rockchip SoC support
1391 M:      Heiko Stuebner <heiko@sntech.de>
1392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393 L:      linux-rockchip@lists.infradead.org
1394 S:      Maintained
1395 F:      arch/arm/boot/dts/rk3*
1396 F:      arch/arm/mach-rockchip/
1397 F:      drivers/clk/rockchip/
1398 F:      drivers/i2c/busses/i2c-rk3x.c
1399 F:      drivers/*/*rockchip*
1400 F:      drivers/*/*/*rockchip*
1401 F:      sound/soc/rockchip/
1402 N:      rockchip
1403
1404 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1405 M:      Kukjin Kim <kgene@kernel.org>
1406 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1408 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1409 S:      Maintained
1410 F:      arch/arm/boot/dts/s3c*
1411 F:      arch/arm/boot/dts/exynos*
1412 F:      arch/arm64/boot/dts/exynos/
1413 F:      arch/arm/plat-samsung/
1414 F:      arch/arm/mach-s3c24*/
1415 F:      arch/arm/mach-s3c64xx/
1416 F:      arch/arm/mach-s5p*/
1417 F:      arch/arm/mach-exynos*/
1418 F:      drivers/*/*s3c2410*
1419 F:      drivers/*/*/*s3c2410*
1420 F:      drivers/spi/spi-s3c*
1421 F:      sound/soc/samsung/*
1422 N:      exynos
1423
1424 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1425 M:      Kyungmin Park <kyungmin.park@samsung.com>
1426 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1427 S:      Maintained
1428 F:      arch/arm/mach-s5pv210/
1429
1430 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1431 M:      Kyungmin Park <kyungmin.park@samsung.com>
1432 M:      Kamil Debski <k.debski@samsung.com>
1433 L:      linux-arm-kernel@lists.infradead.org
1434 L:      linux-media@vger.kernel.org
1435 S:      Maintained
1436 F:      drivers/media/platform/s5p-g2d/
1437
1438 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1439 M:      Kyungmin Park <kyungmin.park@samsung.com>
1440 M:      Kamil Debski <k.debski@samsung.com>
1441 M:      Jeongtae Park <jtp.park@samsung.com>
1442 L:      linux-arm-kernel@lists.infradead.org
1443 L:      linux-media@vger.kernel.org
1444 S:      Maintained
1445 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1446 F:      drivers/media/platform/s5p-mfc/
1447
1448 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1449 M:      Kyungmin Park <kyungmin.park@samsung.com>
1450 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1451 L:      linux-arm-kernel@lists.infradead.org
1452 L:      linux-media@vger.kernel.org
1453 S:      Maintained
1454 F:      drivers/media/platform/s5p-tv/
1455
1456 ARM/SHMOBILE ARM ARCHITECTURE
1457 M:      Simon Horman <horms@verge.net.au>
1458 M:      Magnus Damm <magnus.damm@gmail.com>
1459 L:      linux-sh@vger.kernel.org
1460 W:      http://oss.renesas.com
1461 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1463 S:      Supported
1464 F:      arch/arm/boot/dts/emev2*
1465 F:      arch/arm/boot/dts/r7s*
1466 F:      arch/arm/boot/dts/r8a*
1467 F:      arch/arm/boot/dts/sh*
1468 F:      arch/arm/configs/armadillo800eva_defconfig
1469 F:      arch/arm/configs/bockw_defconfig
1470 F:      arch/arm/configs/kzm9g_defconfig
1471 F:      arch/arm/configs/marzen_defconfig
1472 F:      arch/arm/configs/shmobile_defconfig
1473 F:      arch/arm/include/debug/renesas-scif.S
1474 F:      arch/arm/mach-shmobile/
1475 F:      drivers/sh/
1476
1477 ARM/SOCFPGA ARCHITECTURE
1478 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1479 S:      Maintained
1480 F:      arch/arm/mach-socfpga/
1481 F:      arch/arm/boot/dts/socfpga*
1482 F:      arch/arm/configs/socfpga_defconfig
1483 W:      http://www.rocketboards.org
1484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1485
1486 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1487 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1488 S:      Maintained
1489 F:      drivers/clk/socfpga/
1490
1491 ARM/SOCFPGA EDAC SUPPORT
1492 M:      Thor Thayer <tthayer@opensource.altera.com>
1493 S:      Maintained
1494 F:      drivers/edac/altera_edac.
1495
1496 ARM/STI ARCHITECTURE
1497 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1498 M:      Maxime Coquelin <maxime.coquelin@st.com>
1499 M:      Patrice Chotard <patrice.chotard@st.com>
1500 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1501 L:      kernel@stlinux.com
1502 W:      http://www.stlinux.com
1503 S:      Maintained
1504 F:      arch/arm/mach-sti/
1505 F:      arch/arm/boot/dts/sti*
1506 F:      drivers/clocksource/arm_global_timer.c
1507 F:      drivers/i2c/busses/i2c-st.c
1508 F:      drivers/media/rc/st_rc.c
1509 F:      drivers/mmc/host/sdhci-st.c
1510 F:      drivers/phy/phy-miphy28lp.c
1511 F:      drivers/phy/phy-miphy365x.c
1512 F:      drivers/phy/phy-stih407-usb.c
1513 F:      drivers/phy/phy-stih41x-usb.c
1514 F:      drivers/pinctrl/pinctrl-st.c
1515 F:      drivers/reset/sti/
1516 F:      drivers/rtc/rtc-st-lpc.c
1517 F:      drivers/tty/serial/st-asc.c
1518 F:      drivers/usb/dwc3/dwc3-st.c
1519 F:      drivers/usb/host/ehci-st.c
1520 F:      drivers/usb/host/ohci-st.c
1521 F:      drivers/watchdog/st_lpc_wdt.c
1522 F:      drivers/ata/ahci_st.c
1523
1524 ARM/STM32 ARCHITECTURE
1525 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1526 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1527 S:      Maintained
1528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1529 N:      stm32
1530 F:      drivers/clocksource/armv7m_systick.c
1531
1532 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1533 M:      Lennert Buytenhek <kernel@wantstofly.org>
1534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1535 S:      Maintained
1536
1537 ARM/TETON BGA MACHINE SUPPORT
1538 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1540 S:      Maintained
1541
1542 ARM/THECUS N2100 MACHINE SUPPORT
1543 M:      Lennert Buytenhek <kernel@wantstofly.org>
1544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1545 S:      Maintained
1546
1547 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1548 M:      Wan ZongShun <mcuos.com@gmail.com>
1549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1550 W:      http://www.mcuos.com
1551 S:      Maintained
1552 F:      arch/arm/mach-w90x900/
1553 F:      drivers/input/keyboard/w90p910_keypad.c
1554 F:      drivers/input/touchscreen/w90p910_ts.c
1555 F:      drivers/watchdog/nuc900_wdt.c
1556 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1557 F:      drivers/mtd/nand/nuc900_nand.c
1558 F:      drivers/rtc/rtc-nuc900.c
1559 F:      drivers/spi/spi-nuc900.c
1560 F:      drivers/usb/host/ehci-w90x900.c
1561 F:      drivers/video/fbdev/nuc900fb.c
1562
1563 ARM/U300 MACHINE SUPPORT
1564 M:      Linus Walleij <linus.walleij@linaro.org>
1565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566 S:      Supported
1567 F:      arch/arm/mach-u300/
1568 F:      drivers/clocksource/timer-u300.c
1569 F:      drivers/i2c/busses/i2c-stu300.c
1570 F:      drivers/rtc/rtc-coh901331.c
1571 F:      drivers/watchdog/coh901327_wdt.c
1572 F:      drivers/dma/coh901318*
1573 F:      drivers/mfd/ab3100*
1574 F:      drivers/rtc/rtc-ab3100.c
1575 F:      drivers/rtc/rtc-coh901331.c
1576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1577
1578 ARM/UNIPHIER ARCHITECTURE
1579 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 S:      Maintained
1582 F:      arch/arm/mach-uniphier/
1583 N:      uniphier
1584
1585 ARM/Ux500 ARM ARCHITECTURE
1586 M:      Linus Walleij <linus.walleij@linaro.org>
1587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1588 S:      Maintained
1589 F:      arch/arm/mach-ux500/
1590 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1591 F:      drivers/dma/ste_dma40*
1592 F:      drivers/hwspinlock/u8500_hsem.c
1593 F:      drivers/mfd/abx500*
1594 F:      drivers/mfd/ab8500*
1595 F:      drivers/mfd/dbx500*
1596 F:      drivers/mfd/db8500*
1597 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1598 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1599 F:      drivers/rtc/rtc-ab8500.c
1600 F:      drivers/rtc/rtc-pl031.c
1601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1602
1603 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1604 M:      Ulf Hansson <ulf.hansson@linaro.org>
1605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1606 T:      git git://git.linaro.org/people/ulfh/clk.git
1607 S:      Maintained
1608 F:      drivers/clk/ux500/
1609 F:      include/linux/platform_data/clk-ux500.h
1610
1611 ARM/VERSATILE EXPRESS PLATFORM
1612 M:      Liviu Dudau <liviu.dudau@arm.com>
1613 M:      Sudeep Holla <sudeep.holla@arm.com>
1614 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1616 S:      Maintained
1617 F:      arch/arm/boot/dts/vexpress*
1618 F:      arch/arm64/boot/dts/arm/vexpress*
1619 F:      arch/arm/mach-vexpress/
1620 F:      */*/vexpress*
1621 F:      */*/*/vexpress*
1622 F:      drivers/clk/versatile/clk-vexpress-osc.c
1623 F:      drivers/clocksource/versatile.c
1624
1625 ARM/VFP SUPPORT
1626 M:      Russell King <linux@arm.linux.org.uk>
1627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1628 W:      http://www.arm.linux.org.uk/
1629 S:      Maintained
1630 F:      arch/arm/vfp/
1631
1632 ARM/VOIPAC PXA270 SUPPORT
1633 M:      Marek Vasut <marek.vasut@gmail.com>
1634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1635 S:      Maintained
1636 F:      arch/arm/mach-pxa/vpac270.c
1637 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1638
1639 ARM/VT8500 ARM ARCHITECTURE
1640 M:      Tony Prisk <linux@prisktech.co.nz>
1641 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1642 S:      Maintained
1643 F:      arch/arm/mach-vt8500/
1644 F:      drivers/clocksource/vt8500_timer.c
1645 F:      drivers/i2c/busses/i2c-wmt.c
1646 F:      drivers/mmc/host/wmt-sdmmc.c
1647 F:      drivers/pwm/pwm-vt8500.c
1648 F:      drivers/rtc/rtc-vt8500.c
1649 F:      drivers/tty/serial/vt8500_serial.c
1650 F:      drivers/usb/host/ehci-platform.c
1651 F:      drivers/usb/host/uhci-platform.c
1652 F:      drivers/video/fbdev/vt8500lcdfb.*
1653 F:      drivers/video/fbdev/wm8505fb*
1654 F:      drivers/video/fbdev/wmt_ge_rops.*
1655
1656 ARM/ZIPIT Z2 SUPPORT
1657 M:      Marek Vasut <marek.vasut@gmail.com>
1658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1659 S:      Maintained
1660 F:      arch/arm/mach-pxa/z2.c
1661 F:      arch/arm/mach-pxa/include/mach/z2.h
1662
1663 ARM/ZTE ARCHITECTURE
1664 M:      Jun Nie <jun.nie@linaro.org>
1665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1666 S:      Maintained
1667 F:      arch/arm/mach-zx/
1668 F:      drivers/clk/zte/
1669 F:      Documentation/devicetree/bindings/arm/zte.txt
1670 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1671
1672 ARM/ZYNQ ARCHITECTURE
1673 M:      Michal Simek <michal.simek@xilinx.com>
1674 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1675 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1676 W:      http://wiki.xilinx.com
1677 T:      git git://git.xilinx.com/linux-xlnx.git
1678 S:      Supported
1679 F:      arch/arm/mach-zynq/
1680 F:      drivers/cpuidle/cpuidle-zynq.c
1681 F:      drivers/block/xsysace.c
1682 N:      zynq
1683 N:      xilinx
1684 F:      drivers/clocksource/cadence_ttc_timer.c
1685 F:      drivers/i2c/busses/i2c-cadence.c
1686 F:      drivers/mmc/host/sdhci-of-arasan.c
1687 F:      drivers/edac/synopsys_edac.c
1688
1689 ARM SMMU DRIVERS
1690 M:      Will Deacon <will.deacon@arm.com>
1691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1692 S:      Maintained
1693 F:      drivers/iommu/arm-smmu.c
1694 F:      drivers/iommu/arm-smmu-v3.c
1695 F:      drivers/iommu/io-pgtable-arm.c
1696
1697 ARM64 PORT (AARCH64 ARCHITECTURE)
1698 M:      Catalin Marinas <catalin.marinas@arm.com>
1699 M:      Will Deacon <will.deacon@arm.com>
1700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1701 S:      Maintained
1702 F:      arch/arm64/
1703 F:      Documentation/arm64/
1704
1705 AS3645A LED FLASH CONTROLLER DRIVER
1706 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1707 L:      linux-media@vger.kernel.org
1708 T:      git git://linuxtv.org/media_tree.git
1709 S:      Maintained
1710 F:      drivers/media/i2c/as3645a.c
1711 F:      include/media/as3645a.h
1712
1713 ASC7621 HARDWARE MONITOR DRIVER
1714 M:      George Joseph <george.joseph@fairview5.com>
1715 L:      lm-sensors@lm-sensors.org
1716 S:      Maintained
1717 F:      Documentation/hwmon/asc7621
1718 F:      drivers/hwmon/asc7621.c
1719
1720 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1721 M:      Corentin Chary <corentin.chary@gmail.com>
1722 L:      acpi4asus-user@lists.sourceforge.net
1723 L:      platform-driver-x86@vger.kernel.org
1724 W:      http://acpi4asus.sf.net
1725 S:      Maintained
1726 F:      drivers/platform/x86/asus*.c
1727 F:      drivers/platform/x86/eeepc*.c
1728
1729 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1730 R:      Dan Williams <dan.j.williams@intel.com>
1731 W:      http://sourceforge.net/projects/xscaleiop
1732 S:      Odd fixes
1733 F:      Documentation/crypto/async-tx-api.txt
1734 F:      crypto/async_tx/
1735 F:      drivers/dma/
1736 F:      include/linux/dmaengine.h
1737 F:      include/linux/async_tx.h
1738
1739 AT24 EEPROM DRIVER
1740 M:      Wolfram Sang <wsa@the-dreams.de>
1741 L:      linux-i2c@vger.kernel.org
1742 S:      Maintained
1743 F:      drivers/misc/eeprom/at24.c
1744 F:      include/linux/platform_data/at24.h
1745
1746 ATA OVER ETHERNET (AOE) DRIVER
1747 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1748 W:      http://www.openaoe.org/
1749 S:      Supported
1750 F:      Documentation/aoe/
1751 F:      drivers/block/aoe/
1752
1753 ATHEROS ATH GENERIC UTILITIES
1754 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1755 L:      linux-wireless@vger.kernel.org
1756 S:      Supported
1757 F:      drivers/net/wireless/ath/*
1758
1759 ATHEROS ATH5K WIRELESS DRIVER
1760 M:      Jiri Slaby <jirislaby@gmail.com>
1761 M:      Nick Kossifidis <mickflemm@gmail.com>
1762 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1763 L:      linux-wireless@vger.kernel.org
1764 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1765 S:      Maintained
1766 F:      drivers/net/wireless/ath/ath5k/
1767
1768 ATHEROS ATH6KL WIRELESS DRIVER
1769 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1770 L:      linux-wireless@vger.kernel.org
1771 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1772 T:      git git://github.com/kvalo/ath.git
1773 S:      Supported
1774 F:      drivers/net/wireless/ath/ath6kl/
1775
1776 WILOCITY WIL6210 WIRELESS DRIVER
1777 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1778 L:      linux-wireless@vger.kernel.org
1779 L:      wil6210@qca.qualcomm.com
1780 S:      Supported
1781 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1782 F:      drivers/net/wireless/ath/wil6210/
1783 F:      include/uapi/linux/wil6210_uapi.h
1784
1785 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1786 M:      Christian Lamparter <chunkeey@googlemail.com>
1787 L:      linux-wireless@vger.kernel.org
1788 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1789 S:      Maintained
1790 F:      drivers/net/wireless/ath/carl9170/
1791
1792 ATK0110 HWMON DRIVER
1793 M:      Luca Tettamanti <kronos.it@gmail.com>
1794 L:      lm-sensors@lm-sensors.org
1795 S:      Maintained
1796 F:      drivers/hwmon/asus_atk0110.c
1797
1798 ATI_REMOTE2 DRIVER
1799 M:      Ville Syrjala <syrjala@sci.fi>
1800 S:      Maintained
1801 F:      drivers/input/misc/ati_remote2.c
1802
1803 ATLX ETHERNET DRIVERS
1804 M:      Jay Cliburn <jcliburn@gmail.com>
1805 M:      Chris Snook <chris.snook@gmail.com>
1806 L:      netdev@vger.kernel.org
1807 W:      http://sourceforge.net/projects/atl1
1808 W:      http://atl1.sourceforge.net
1809 S:      Maintained
1810 F:      drivers/net/ethernet/atheros/
1811
1812 ATM
1813 M:      Chas Williams <3chas3@gmail.com>
1814 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1815 L:      netdev@vger.kernel.org
1816 W:      http://linux-atm.sourceforge.net
1817 S:      Maintained
1818 F:      drivers/atm/
1819 F:      include/linux/atm*
1820 F:      include/uapi/linux/atm*
1821
1822 ATMEL AT91 / AT32 MCI DRIVER
1823 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1824 S:      Maintained
1825 F:      drivers/mmc/host/atmel-mci.c
1826 F:      drivers/mmc/host/atmel-mci-regs.h
1827
1828 ATMEL AT91 / AT32 SERIAL DRIVER
1829 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1830 S:      Supported
1831 F:      drivers/tty/serial/atmel_serial.c
1832
1833 ATMEL Audio ALSA driver
1834 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1835 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1836 S:      Supported
1837 F:      sound/soc/atmel
1838
1839 ATMEL DMA DRIVER
1840 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1842 S:      Supported
1843 F:      drivers/dma/at_hdmac.c
1844 F:      drivers/dma/at_hdmac_regs.h
1845 F:      include/linux/platform_data/dma-atmel.h
1846
1847 ATMEL XDMA DRIVER
1848 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1849 L:      linux-arm-kernel@lists.infradead.org
1850 L:      dmaengine@vger.kernel.org
1851 S:      Supported
1852 F:      drivers/dma/at_xdmac.c
1853
1854 ATMEL I2C DRIVER
1855 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1856 L:      linux-i2c@vger.kernel.org
1857 S:      Supported
1858 F:      drivers/i2c/busses/i2c-at91.c
1859
1860 ATMEL ISI DRIVER
1861 M:      Josh Wu <josh.wu@atmel.com>
1862 L:      linux-media@vger.kernel.org
1863 S:      Supported
1864 F:      drivers/media/platform/soc_camera/atmel-isi.c
1865 F:      include/media/atmel-isi.h
1866
1867 ATMEL LCDFB DRIVER
1868 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1869 L:      linux-fbdev@vger.kernel.org
1870 S:      Maintained
1871 F:      drivers/video/fbdev/atmel_lcdfb.c
1872 F:      include/video/atmel_lcdc.h
1873
1874 ATMEL MACB ETHERNET DRIVER
1875 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1876 S:      Supported
1877 F:      drivers/net/ethernet/cadence/
1878
1879 ATMEL NAND DRIVER
1880 M:      Josh Wu <josh.wu@atmel.com>
1881 L:      linux-mtd@lists.infradead.org
1882 S:      Supported
1883 F:      drivers/mtd/nand/atmel_nand*
1884
1885 ATMEL SDMMC DRIVER
1886 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1887 L:      linux-mmc@vger.kernel.org
1888 S:      Supported
1889 F:      drivers/mmc/host/sdhci-of-at91.c
1890
1891 ATMEL SPI DRIVER
1892 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1893 S:      Supported
1894 F:      drivers/spi/spi-atmel.*
1895
1896 ATMEL SSC DRIVER
1897 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1899 S:      Supported
1900 F:      drivers/misc/atmel-ssc.c
1901 F:      include/linux/atmel-ssc.h
1902
1903 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1904 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1906 S:      Supported
1907 F:      drivers/misc/atmel_tclib.c
1908 F:      drivers/clocksource/tcb_clksrc.c
1909
1910 ATMEL USBA UDC DRIVER
1911 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1913 S:      Supported
1914 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1915
1916 ATMEL WIRELESS DRIVER
1917 M:      Simon Kelley <simon@thekelleys.org.uk>
1918 L:      linux-wireless@vger.kernel.org
1919 W:      http://www.thekelleys.org.uk/atmel
1920 W:      http://atmelwlandriver.sourceforge.net/
1921 S:      Maintained
1922 F:      drivers/net/wireless/atmel*
1923
1924 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1925 M:      Bradley Grove <linuxdrivers@attotech.com>
1926 L:      linux-scsi@vger.kernel.org
1927 W:      http://www.attotech.com
1928 S:      Supported
1929 F:      drivers/scsi/esas2r
1930
1931 ATUSB IEEE 802.15.4 RADIO DRIVER
1932 M:      Stefan Schmidt <stefan@osg.samsung.com>
1933 L:      linux-wpan@vger.kernel.org
1934 S:      Maintained
1935 F:      drivers/net/ieee802154/atusb.c
1936 F:      drivers/net/ieee802154/atusb.h
1937 F:      drivers/net/ieee802154/at86rf230.h
1938
1939 AUDIT SUBSYSTEM
1940 M:      Paul Moore <paul@paul-moore.com>
1941 M:      Eric Paris <eparis@redhat.com>
1942 L:      linux-audit@redhat.com (moderated for non-subscribers)
1943 W:      http://people.redhat.com/sgrubb/audit/
1944 T:      git git://git.infradead.org/users/pcmoore/audit
1945 S:      Maintained
1946 F:      include/linux/audit.h
1947 F:      include/uapi/linux/audit.h
1948 F:      kernel/audit*
1949
1950 AUXILIARY DISPLAY DRIVERS
1951 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1952 W:      http://miguelojeda.es/auxdisplay.htm
1953 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1954 S:      Maintained
1955 F:      drivers/auxdisplay/
1956 F:      include/linux/cfag12864b.h
1957
1958 AVR32 ARCHITECTURE
1959 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1960 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1961 W:      http://www.atmel.com/products/AVR32/
1962 W:      http://mirror.egtvedt.no/avr32linux.org/
1963 W:      http://avrfreaks.net/
1964 S:      Maintained
1965 F:      arch/avr32/
1966
1967 AVR32/AT32AP MACHINE SUPPORT
1968 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1969 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1970 S:      Maintained
1971 F:      arch/avr32/mach-at32ap/
1972
1973 AX.25 NETWORK LAYER
1974 M:      Ralf Baechle <ralf@linux-mips.org>
1975 L:      linux-hams@vger.kernel.org
1976 W:      http://www.linux-ax25.org/
1977 S:      Maintained
1978 F:      include/uapi/linux/ax25.h
1979 F:      include/net/ax25.h
1980 F:      net/ax25/
1981
1982 AZ6007 DVB DRIVER
1983 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
1984 L:      linux-media@vger.kernel.org
1985 W:      http://linuxtv.org
1986 T:      git git://linuxtv.org/media_tree.git
1987 S:      Maintained
1988 F:      drivers/media/usb/dvb-usb-v2/az6007.c
1989
1990 AZTECH FM RADIO RECEIVER DRIVER
1991 M:      Hans Verkuil <hverkuil@xs4all.nl>
1992 L:      linux-media@vger.kernel.org
1993 T:      git git://linuxtv.org/media_tree.git
1994 W:      http://linuxtv.org
1995 S:      Maintained
1996 F:      drivers/media/radio/radio-aztech*
1997
1998 B43 WIRELESS DRIVER
1999 L:      linux-wireless@vger.kernel.org
2000 L:      b43-dev@lists.infradead.org
2001 W:      http://wireless.kernel.org/en/users/Drivers/b43
2002 S:      Odd Fixes
2003 F:      drivers/net/wireless/b43/
2004
2005 B43LEGACY WIRELESS DRIVER
2006 M:      Larry Finger <Larry.Finger@lwfinger.net>
2007 L:      linux-wireless@vger.kernel.org
2008 L:      b43-dev@lists.infradead.org
2009 W:      http://wireless.kernel.org/en/users/Drivers/b43
2010 S:      Maintained
2011 F:      drivers/net/wireless/b43legacy/
2012
2013 BACKLIGHT CLASS/SUBSYSTEM
2014 M:      Jingoo Han <jingoohan1@gmail.com>
2015 M:      Lee Jones <lee.jones@linaro.org>
2016 S:      Maintained
2017 F:      drivers/video/backlight/
2018 F:      include/linux/backlight.h
2019
2020 BATMAN ADVANCED
2021 M:      Marek Lindner <mareklindner@neomailbox.ch>
2022 M:      Simon Wunderlich <sw@simonwunderlich.de>
2023 M:      Antonio Quartulli <antonio@meshcoding.com>
2024 L:      b.a.t.m.a.n@lists.open-mesh.org
2025 W:      http://www.open-mesh.org/
2026 S:      Maintained
2027 F:      net/batman-adv/
2028
2029 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2030 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2031 L:      linux-hams@vger.kernel.org
2032 W:      http://www.baycom.org/~tom/ham/ham.html
2033 S:      Maintained
2034 F:      drivers/net/hamradio/baycom*
2035
2036 BCACHE (BLOCK LAYER CACHE)
2037 M:      Kent Overstreet <kent.overstreet@gmail.com>
2038 L:      linux-bcache@vger.kernel.org
2039 W:      http://bcache.evilpiepirate.org
2040 S:      Maintained
2041 F:      drivers/md/bcache/
2042
2043 BDISP ST MEDIA DRIVER
2044 M:      Fabien Dessenne <fabien.dessenne@st.com>
2045 L:      linux-media@vger.kernel.org
2046 T:      git git://linuxtv.org/media_tree.git
2047 W:      http://linuxtv.org
2048 S:      Supported
2049 F:      drivers/media/platform/sti/bdisp
2050
2051 BEFS FILE SYSTEM
2052 S:      Orphan
2053 F:      Documentation/filesystems/befs.txt
2054 F:      fs/befs/
2055
2056 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2057 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2058 L:      netdev@vger.kernel.org
2059 S:      Maintained
2060 F:      drivers/net/ethernet/ec_bhf.c
2061
2062 BFS FILE SYSTEM
2063 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2064 S:      Maintained
2065 F:      Documentation/filesystems/bfs.txt
2066 F:      fs/bfs/
2067 F:      include/uapi/linux/bfs_fs.h
2068
2069 BLACKFIN ARCHITECTURE
2070 M:      Steven Miao <realmz6@gmail.com>
2071 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2072 T:      git git://git.code.sf.net/p/adi-linux/code
2073 W:      http://blackfin.uclinux.org
2074 S:      Supported
2075 F:      arch/blackfin/
2076
2077 BLACKFIN EMAC DRIVER
2078 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2079 W:      http://blackfin.uclinux.org
2080 S:      Supported
2081 F:      drivers/net/ethernet/adi/
2082
2083 BLACKFIN RTC DRIVER
2084 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2085 W:      http://blackfin.uclinux.org
2086 S:      Supported
2087 F:      drivers/rtc/rtc-bfin.c
2088
2089 BLACKFIN SDH DRIVER
2090 M:      Sonic Zhang <sonic.zhang@analog.com>
2091 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2092 W:      http://blackfin.uclinux.org
2093 S:      Supported
2094 F:      drivers/mmc/host/bfin_sdh.c
2095
2096 BLACKFIN SERIAL DRIVER
2097 M:      Sonic Zhang <sonic.zhang@analog.com>
2098 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2099 W:      http://blackfin.uclinux.org
2100 S:      Supported
2101 F:      drivers/tty/serial/bfin_uart.c
2102
2103 BLACKFIN WATCHDOG DRIVER
2104 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2105 W:      http://blackfin.uclinux.org
2106 S:      Supported
2107 F:      drivers/watchdog/bfin_wdt.c
2108
2109 BLACKFIN I2C TWI DRIVER
2110 M:      Sonic Zhang <sonic.zhang@analog.com>
2111 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2112 W:      http://blackfin.uclinux.org/
2113 S:      Supported
2114 F:      drivers/i2c/busses/i2c-bfin-twi.c
2115
2116 BLACKFIN MEDIA DRIVER
2117 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2118 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2119 W:      http://blackfin.uclinux.org/
2120 S:      Supported
2121 F:      drivers/media/platform/blackfin/
2122 F:      drivers/media/i2c/adv7183*
2123 F:      drivers/media/i2c/vs6624*
2124
2125 BLINKM RGB LED DRIVER
2126 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2127 S:      Maintained
2128 F:      drivers/leds/leds-blinkm.c
2129
2130 BLOCK LAYER
2131 M:      Jens Axboe <axboe@kernel.dk>
2132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2133 S:      Maintained
2134 F:      block/
2135 F:      kernel/trace/blktrace.c
2136
2137 BLOCK2MTD DRIVER
2138 M:      Joern Engel <joern@lazybastard.org>
2139 L:      linux-mtd@lists.infradead.org
2140 S:      Maintained
2141 F:      drivers/mtd/devices/block2mtd.c
2142
2143 BLUETOOTH DRIVERS
2144 M:      Marcel Holtmann <marcel@holtmann.org>
2145 M:      Gustavo Padovan <gustavo@padovan.org>
2146 M:      Johan Hedberg <johan.hedberg@gmail.com>
2147 L:      linux-bluetooth@vger.kernel.org
2148 W:      http://www.bluez.org/
2149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2151 S:      Maintained
2152 F:      drivers/bluetooth/
2153
2154 BLUETOOTH SUBSYSTEM
2155 M:      Marcel Holtmann <marcel@holtmann.org>
2156 M:      Gustavo Padovan <gustavo@padovan.org>
2157 M:      Johan Hedberg <johan.hedberg@gmail.com>
2158 L:      linux-bluetooth@vger.kernel.org
2159 W:      http://www.bluez.org/
2160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2162 S:      Maintained
2163 F:      net/bluetooth/
2164 F:      include/net/bluetooth/
2165
2166 BONDING DRIVER
2167 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2168 M:      Veaceslav Falico <vfalico@gmail.com>
2169 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2170 L:      netdev@vger.kernel.org
2171 W:      http://sourceforge.net/projects/bonding/
2172 S:      Supported
2173 F:      drivers/net/bonding/
2174 F:      include/uapi/linux/if_bonding.h
2175
2176 BPF (Safe dynamic programs and tools)
2177 M:      Alexei Starovoitov <ast@kernel.org>
2178 L:      netdev@vger.kernel.org
2179 L:      linux-kernel@vger.kernel.org
2180 S:      Supported
2181 F:      kernel/bpf/
2182
2183 BROADCOM B44 10/100 ETHERNET DRIVER
2184 M:      Gary Zambrano <zambrano@broadcom.com>
2185 L:      netdev@vger.kernel.org
2186 S:      Supported
2187 F:      drivers/net/ethernet/broadcom/b44.*
2188
2189 BROADCOM GENET ETHERNET DRIVER
2190 M:      Florian Fainelli <f.fainelli@gmail.com>
2191 L:      netdev@vger.kernel.org
2192 S:      Supported
2193 F:      drivers/net/ethernet/broadcom/genet/
2194
2195 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2196 M:      Sony Chacko <sony.chacko@qlogic.com>
2197 M:      Dept-HSGLinuxNICDev@qlogic.com
2198 L:      netdev@vger.kernel.org
2199 S:      Supported
2200 F:      drivers/net/ethernet/broadcom/bnx2.*
2201 F:      drivers/net/ethernet/broadcom/bnx2_*
2202
2203 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2204 M:      Ariel Elior <ariel.elior@qlogic.com>
2205 L:      netdev@vger.kernel.org
2206 S:      Supported
2207 F:      drivers/net/ethernet/broadcom/bnx2x/
2208
2209 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2210 M:      Florian Fainelli <f.fainelli@gmail.com>
2211 M:      Ray Jui <rjui@broadcom.com>
2212 M:      Scott Branden <sbranden@broadcom.com>
2213 L:      bcm-kernel-feedback-list@broadcom.com
2214 T:      git git://github.com/broadcom/mach-bcm
2215 S:      Maintained
2216 F:      arch/arm/mach-bcm/
2217 F:      arch/arm/boot/dts/bcm113*
2218 F:      arch/arm/boot/dts/bcm216*
2219 F:      arch/arm/boot/dts/bcm281*
2220 F:      arch/arm/configs/bcm_defconfig
2221 F:      drivers/mmc/host/sdhci-bcm-kona.c
2222 F:      drivers/clocksource/bcm_kona_timer.c
2223
2224 BROADCOM BCM2835 ARM ARCHITECTURE
2225 M:      Stephen Warren <swarren@wwwdotorg.org>
2226 M:      Lee Jones <lee@kernel.org>
2227 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2229 S:      Maintained
2230 N:      bcm2835
2231
2232 BROADCOM BCM33XX MIPS ARCHITECTURE
2233 M:      Kevin Cernekee <cernekee@gmail.com>
2234 L:      linux-mips@linux-mips.org
2235 S:      Maintained
2236 F:      arch/mips/bcm3384/*
2237 F:      arch/mips/include/asm/mach-bcm3384/*
2238 F:      arch/mips/kernel/*bmips*
2239
2240 BROADCOM BCM47XX MIPS ARCHITECTURE
2241 M:      Hauke Mehrtens <hauke@hauke-m.de>
2242 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2243 L:      linux-mips@linux-mips.org
2244 S:      Maintained
2245 F:      arch/mips/bcm47xx/*
2246 F:      arch/mips/include/asm/mach-bcm47xx/*
2247
2248 BROADCOM BCM5301X ARM ARCHITECTURE
2249 M:      Hauke Mehrtens <hauke@hauke-m.de>
2250 L:      linux-arm-kernel@lists.infradead.org
2251 S:      Maintained
2252 F:      arch/arm/mach-bcm/bcm_5301x.c
2253 F:      arch/arm/boot/dts/bcm5301x.dtsi
2254 F:      arch/arm/boot/dts/bcm470*
2255
2256 BROADCOM BCM63XX ARM ARCHITECTURE
2257 M:      Florian Fainelli <f.fainelli@gmail.com>
2258 L:      linux-arm-kernel@lists.infradead.org
2259 T:      git git://github.com/broadcom/arm-bcm63xx.git
2260 S:      Maintained
2261 F:      arch/arm/mach-bcm/bcm63xx.c
2262 F:      arch/arm/include/debug/bcm63xx.S
2263
2264 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2265 M:      Kevin Cernekee <cernekee@gmail.com>
2266 L:      linux-usb@vger.kernel.org
2267 S:      Maintained
2268 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2269
2270 BROADCOM BCM7XXX ARM ARCHITECTURE
2271 M:      Brian Norris <computersforpeace@gmail.com>
2272 M:      Gregory Fong <gregory.0xf0@gmail.com>
2273 M:      Florian Fainelli <f.fainelli@gmail.com>
2274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2275 T:      git git://github.com/broadcom/stblinux.git
2276 S:      Maintained
2277 F:      arch/arm/mach-bcm/*brcmstb*
2278 F:      arch/arm/boot/dts/bcm7*.dts*
2279 F:      drivers/bus/brcmstb_gisb.c
2280 N:      brcmstb
2281
2282 BROADCOM BMIPS MIPS ARCHITECTURE
2283 M:      Kevin Cernekee <cernekee@gmail.com>
2284 M:      Florian Fainelli <f.fainelli@gmail.com>
2285 L:      linux-mips@linux-mips.org
2286 T:      git git://github.com/broadcom/stblinux.git
2287 S:      Maintained
2288 F:      arch/mips/bmips/*
2289 F:      arch/mips/include/asm/mach-bmips/*
2290 F:      arch/mips/kernel/*bmips*
2291 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2292 F:      drivers/irqchip/irq-bcm7*
2293 F:      drivers/irqchip/irq-brcmstb*
2294
2295 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2296 M:      Prashant Sreedharan <prashant@broadcom.com>
2297 M:      Michael Chan <mchan@broadcom.com>
2298 L:      netdev@vger.kernel.org
2299 S:      Supported
2300 F:      drivers/net/ethernet/broadcom/tg3.*
2301
2302 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2303 M:      Brett Rudley <brudley@broadcom.com>
2304 M:      Arend van Spriel <arend@broadcom.com>
2305 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2306 M:      Hante Meuleman <meuleman@broadcom.com>
2307 L:      linux-wireless@vger.kernel.org
2308 L:      brcm80211-dev-list@broadcom.com
2309 S:      Supported
2310 F:      drivers/net/wireless/brcm80211/
2311
2312 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2313 M:      QLogic-Storage-Upstream@qlogic.com
2314 L:      linux-scsi@vger.kernel.org
2315 S:      Supported
2316 F:      drivers/scsi/bnx2fc/
2317
2318 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2319 M:      QLogic-Storage-Upstream@qlogic.com
2320 L:      linux-scsi@vger.kernel.org
2321 S:      Supported
2322 F:      drivers/scsi/bnx2i/
2323
2324 BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2325 M:      Ray Jui <rjui@broadcom.com>
2326 M:      Scott Branden <sbranden@broadcom.com>
2327 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2328 L:      bcm-kernel-feedback-list@broadcom.com
2329 T:      git git://github.com/broadcom/cygnus-linux.git
2330 S:      Maintained
2331 N:      iproc
2332 N:      cygnus
2333 N:      bcm9113*
2334 N:      bcm9583*
2335 N:      bcm583*
2336 N:      bcm113*
2337
2338 BROADCOM BRCMSTB GPIO DRIVER
2339 M:      Gregory Fong <gregory.0xf0@gmail.com>
2340 L:      bcm-kernel-feedback-list@broadcom.com>
2341 S:      Supported
2342 F:      drivers/gpio/gpio-brcmstb.c
2343 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2344
2345 BROADCOM KONA GPIO DRIVER
2346 M:      Ray Jui <rjui@broadcom.com>
2347 L:      bcm-kernel-feedback-list@broadcom.com
2348 S:      Supported
2349 F:      drivers/gpio/gpio-bcm-kona.c
2350 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2351
2352 BROADCOM NVRAM DRIVER
2353 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2354 L:      linux-mips@linux-mips.org
2355 S:      Maintained
2356 F:      drivers/firmware/broadcom/*
2357
2358 BROADCOM STB NAND FLASH DRIVER
2359 M:      Brian Norris <computersforpeace@gmail.com>
2360 L:      linux-mtd@lists.infradead.org
2361 S:      Maintained
2362 F:      drivers/mtd/nand/brcmnand/
2363
2364 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2365 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2366 L:      linux-wireless@vger.kernel.org
2367 S:      Maintained
2368 F:      drivers/bcma/
2369 F:      include/linux/bcma/
2370
2371 BROADCOM SYSTEMPORT ETHERNET DRIVER
2372 M:      Florian Fainelli <f.fainelli@gmail.com>
2373 L:      netdev@vger.kernel.org
2374 S:      Supported
2375 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2376
2377 BROCADE BFA FC SCSI DRIVER
2378 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2379 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2380 L:      linux-scsi@vger.kernel.org
2381 S:      Supported
2382 F:      drivers/scsi/bfa/
2383
2384 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2385 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2386 L:      netdev@vger.kernel.org
2387 S:      Supported
2388 F:      drivers/net/ethernet/brocade/bna/
2389
2390 BSG (block layer generic sg v4 driver)
2391 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2392 L:      linux-scsi@vger.kernel.org
2393 S:      Supported
2394 F:      block/bsg.c
2395 F:      include/linux/bsg.h
2396 F:      include/uapi/linux/bsg.h
2397
2398 BT87X AUDIO DRIVER
2399 M:      Clemens Ladisch <clemens@ladisch.de>
2400 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2401 T:      git git://git.alsa-project.org/alsa-kernel.git
2402 S:      Maintained
2403 F:      Documentation/sound/alsa/Bt87x.txt
2404 F:      sound/pci/bt87x.c
2405
2406 BT8XXGPIO DRIVER
2407 M:      Michael Buesch <m@bues.ch>
2408 W:      http://bu3sch.de/btgpio.php
2409 S:      Maintained
2410 F:      drivers/gpio/gpio-bt8xx.c
2411
2412 BTRFS FILE SYSTEM
2413 M:      Chris Mason <clm@fb.com>
2414 M:      Josef Bacik <jbacik@fb.com>
2415 M:      David Sterba <dsterba@suse.com>
2416 L:      linux-btrfs@vger.kernel.org
2417 W:      http://btrfs.wiki.kernel.org/
2418 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2420 S:      Maintained
2421 F:      Documentation/filesystems/btrfs.txt
2422 F:      fs/btrfs/
2423
2424 BTTV VIDEO4LINUX DRIVER
2425 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2426 L:      linux-media@vger.kernel.org
2427 W:      http://linuxtv.org
2428 T:      git git://linuxtv.org/media_tree.git
2429 S:      Odd fixes
2430 F:      Documentation/video4linux/bttv/
2431 F:      drivers/media/pci/bt8xx/bttv*
2432
2433 BUSLOGIC SCSI DRIVER
2434 M:      Khalid Aziz <khalid@gonehiking.org>
2435 L:      linux-scsi@vger.kernel.org
2436 S:      Maintained
2437 F:      drivers/scsi/BusLogic.*
2438 F:      drivers/scsi/FlashPoint.*
2439
2440 C-MEDIA CMI8788 DRIVER
2441 M:      Clemens Ladisch <clemens@ladisch.de>
2442 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2443 T:      git git://git.alsa-project.org/alsa-kernel.git
2444 S:      Maintained
2445 F:      sound/pci/oxygen/
2446
2447 C6X ARCHITECTURE
2448 M:      Mark Salter <msalter@redhat.com>
2449 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2450 L:      linux-c6x-dev@linux-c6x.org
2451 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2452 S:      Maintained
2453 F:      arch/c6x/
2454
2455 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2456 M:      David Howells <dhowells@redhat.com>
2457 L:      linux-cachefs@redhat.com
2458 S:      Supported
2459 F:      Documentation/filesystems/caching/cachefiles.txt
2460 F:      fs/cachefiles/
2461
2462 CADET FM/AM RADIO RECEIVER DRIVER
2463 M:      Hans Verkuil <hverkuil@xs4all.nl>
2464 L:      linux-media@vger.kernel.org
2465 T:      git git://linuxtv.org/media_tree.git
2466 W:      http://linuxtv.org
2467 S:      Maintained
2468 F:      drivers/media/radio/radio-cadet*
2469
2470 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2471 M:      Jonathan Corbet <corbet@lwn.net>
2472 L:      linux-media@vger.kernel.org
2473 T:      git git://linuxtv.org/media_tree.git
2474 S:      Maintained
2475 F:      Documentation/video4linux/cafe_ccic
2476 F:      drivers/media/platform/marvell-ccic/
2477
2478 CAIF NETWORK LAYER
2479 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2480 L:      netdev@vger.kernel.org
2481 S:      Supported
2482 F:      Documentation/networking/caif/
2483 F:      drivers/net/caif/
2484 F:      include/uapi/linux/caif/
2485 F:      include/net/caif/
2486 F:      net/caif/
2487
2488 CALGARY x86-64 IOMMU
2489 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2490 M:      "Jon D. Mason" <jdmason@kudzu.us>
2491 L:      discuss@x86-64.org
2492 S:      Maintained
2493 F:      arch/x86/kernel/pci-calgary_64.c
2494 F:      arch/x86/kernel/tce_64.c
2495 F:      arch/x86/include/asm/calgary.h
2496 F:      arch/x86/include/asm/tce.h
2497
2498 CAN NETWORK LAYER
2499 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2500 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2501 L:      linux-can@vger.kernel.org
2502 W:      https://github.com/linux-can
2503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2505 S:      Maintained
2506 F:      Documentation/networking/can.txt
2507 F:      net/can/
2508 F:      include/linux/can/core.h
2509 F:      include/uapi/linux/can.h
2510 F:      include/uapi/linux/can/bcm.h
2511 F:      include/uapi/linux/can/raw.h
2512 F:      include/uapi/linux/can/gw.h
2513
2514 CAN NETWORK DRIVERS
2515 M:      Wolfgang Grandegger <wg@grandegger.com>
2516 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2517 L:      linux-can@vger.kernel.org
2518 W:      https://github.com/linux-can
2519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2521 S:      Maintained
2522 F:      drivers/net/can/
2523 F:      include/linux/can/dev.h
2524 F:      include/linux/can/platform/
2525 F:      include/uapi/linux/can/error.h
2526 F:      include/uapi/linux/can/netlink.h
2527
2528 CAPABILITIES
2529 M:      Serge Hallyn <serge.hallyn@canonical.com>
2530 L:      linux-security-module@vger.kernel.org
2531 S:      Supported
2532 F:      include/linux/capability.h
2533 F:      include/uapi/linux/capability.h
2534 F:      security/commoncap.c
2535 F:      kernel/capability.c
2536
2537 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2538 M:      Kevin Tsai <ktsai@capellamicro.com>
2539 S:      Maintained
2540 F:      drivers/iio/light/cm*
2541 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2542
2543 CAVIUM LIQUIDIO NETWORK DRIVER
2544 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2545 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2546 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2547 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2548 L:     netdev@vger.kernel.org
2549 W:     http://www.cavium.com
2550 S:     Supported
2551 F:     drivers/net/ethernet/cavium/
2552 F:     drivers/net/ethernet/cavium/liquidio/
2553
2554 CC2520 IEEE-802.15.4 RADIO DRIVER
2555 M:      Varka Bhadram <varkabhadram@gmail.com>
2556 L:      linux-wpan@vger.kernel.org
2557 S:      Maintained
2558 F:      drivers/net/ieee802154/cc2520.c
2559 F:      include/linux/spi/cc2520.h
2560 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2561
2562 CELL BROADBAND ENGINE ARCHITECTURE
2563 M:      Arnd Bergmann <arnd@arndb.de>
2564 L:      linuxppc-dev@lists.ozlabs.org
2565 W:      http://www.ibm.com/developerworks/power/cell/
2566 S:      Supported
2567 F:      arch/powerpc/include/asm/cell*.h
2568 F:      arch/powerpc/include/asm/spu*.h
2569 F:      arch/powerpc/include/uapi/asm/spu*.h
2570 F:      arch/powerpc/oprofile/*cell*
2571 F:      arch/powerpc/platforms/cell/
2572
2573 CEPH COMMON CODE (LIBCEPH)
2574 M:      Ilya Dryomov <idryomov@gmail.com>
2575 M:      "Yan, Zheng" <zyan@redhat.com>
2576 M:      Sage Weil <sage@redhat.com>
2577 L:      ceph-devel@vger.kernel.org
2578 W:      http://ceph.com/
2579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2580 T:      git git://github.com/ceph/ceph-client.git
2581 S:      Supported
2582 F:      net/ceph/
2583 F:      include/linux/ceph/
2584 F:      include/linux/crush/
2585
2586 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2587 M:      "Yan, Zheng" <zyan@redhat.com>
2588 M:      Sage Weil <sage@redhat.com>
2589 M:      Ilya Dryomov <idryomov@gmail.com>
2590 L:      ceph-devel@vger.kernel.org
2591 W:      http://ceph.com/
2592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2593 T:      git git://github.com/ceph/ceph-client.git
2594 S:      Supported
2595 F:      Documentation/filesystems/ceph.txt
2596 F:      fs/ceph/
2597
2598 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2599 L:      linux-usb@vger.kernel.org
2600 S:      Orphan
2601 F:      Documentation/usb/WUSB-Design-overview.txt
2602 F:      Documentation/usb/wusb-cbaf
2603 F:      drivers/usb/host/hwa-hc.c
2604 F:      drivers/usb/host/whci/
2605 F:      drivers/usb/wusbcore/
2606 F:      include/linux/usb/wusb*
2607
2608 CFAG12864B LCD DRIVER
2609 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2610 W:      http://miguelojeda.es/auxdisplay.htm
2611 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2612 S:      Maintained
2613 F:      drivers/auxdisplay/cfag12864b.c
2614 F:      include/linux/cfag12864b.h
2615
2616 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2617 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2618 W:      http://miguelojeda.es/auxdisplay.htm
2619 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2620 S:      Maintained
2621 F:      drivers/auxdisplay/cfag12864bfb.c
2622 F:      include/linux/cfag12864b.h
2623
2624 CFG80211 and NL80211
2625 M:      Johannes Berg <johannes@sipsolutions.net>
2626 L:      linux-wireless@vger.kernel.org
2627 W:      http://wireless.kernel.org/
2628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2630 S:      Maintained
2631 F:      include/uapi/linux/nl80211.h
2632 F:      include/net/cfg80211.h
2633 F:      net/wireless/*
2634 X:      net/wireless/wext*
2635
2636 CHAR and MISC DRIVERS
2637 M:      Arnd Bergmann <arnd@arndb.de>
2638 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2640 S:      Supported
2641 F:      drivers/char/*
2642 F:      drivers/misc/*
2643 F:      include/linux/miscdevice.h
2644
2645 CHECKPATCH
2646 M:      Andy Whitcroft <apw@canonical.com>
2647 M:      Joe Perches <joe@perches.com>
2648 S:      Maintained
2649 F:      scripts/checkpatch.pl
2650
2651 CHINESE DOCUMENTATION
2652 M:      Harry Wei <harryxiyou@gmail.com>
2653 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2654 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2655 S:      Maintained
2656 F:      Documentation/zh_CN/
2657
2658 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2659 M:      Peter Chen <Peter.Chen@freescale.com>
2660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2661 L:      linux-usb@vger.kernel.org
2662 S:      Maintained
2663 F:      drivers/usb/chipidea/
2664
2665 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2666 M:      Hans de Goede <hdegoede@redhat.com>
2667 L:      linux-input@vger.kernel.org
2668 S:      Maintained
2669 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2670 F:      drivers/input/touchscreen/chipone_icn8318.c
2671
2672 CHROME HARDWARE PLATFORM SUPPORT
2673 M:      Olof Johansson <olof@lixom.net>
2674 S:      Maintained
2675 F:      drivers/platform/chrome/
2676
2677 CISCO VIC ETHERNET NIC DRIVER
2678 M:      Christian Benvenuti <benve@cisco.com>
2679 M:      Sujith Sankar <ssujith@cisco.com>
2680 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2681 M:      Neel Patel <neepatel@cisco.com>
2682 S:      Supported
2683 F:      drivers/net/ethernet/cisco/enic/
2684
2685 CISCO VIC LOW LATENCY NIC DRIVER
2686 M:      Upinder Malhi <umalhi@cisco.com>
2687 S:      Supported
2688 F:      drivers/infiniband/hw/usnic
2689
2690 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2691 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2692 L:      netdev@vger.kernel.org
2693 S:      Maintained
2694 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2695
2696 CIRRUS LOGIC AUDIO CODEC DRIVERS
2697 M:      Brian Austin <brian.austin@cirrus.com>
2698 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2699 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2700 S:      Maintained
2701 F:      sound/soc/codecs/cs*
2702
2703 CLEANCACHE API
2704 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2705 L:      linux-kernel@vger.kernel.org
2706 S:      Maintained
2707 F:      mm/cleancache.c
2708 F:      include/linux/cleancache.h
2709
2710 CLK API
2711 M:      Russell King <linux@arm.linux.org.uk>
2712 L:      linux-clk@vger.kernel.org
2713 S:      Maintained
2714 F:      include/linux/clk.h
2715
2716 CLOCKSOURCE, CLOCKEVENT DRIVERS
2717 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2718 M:      Thomas Gleixner <tglx@linutronix.de>
2719 L:      linux-kernel@vger.kernel.org
2720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2721 S:      Supported
2722 F:      drivers/clocksource
2723
2724 CISCO FCOE HBA DRIVER
2725 M:      Hiral Patel <hiralpat@cisco.com>
2726 M:      Suma Ramars <sramars@cisco.com>
2727 M:      Brian Uchino <buchino@cisco.com>
2728 L:      linux-scsi@vger.kernel.org
2729 S:      Supported
2730 F:      drivers/scsi/fnic/
2731
2732 CISCO SCSI HBA DRIVER
2733 M:      Narsimhulu Musini <nmusini@cisco.com>
2734 M:      Sesidhar Baddela <sebaddel@cisco.com>
2735 L:      linux-scsi@vger.kernel.org
2736 S:      Supported
2737 F:      drivers/scsi/snic/
2738
2739 CMPC ACPI DRIVER
2740 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2741 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2742 L:      platform-driver-x86@vger.kernel.org
2743 S:      Supported
2744 F:      drivers/platform/x86/classmate-laptop.c
2745
2746 COBALT MEDIA DRIVER
2747 M:      Hans Verkuil <hans.verkuil@cisco.com>
2748 L:      linux-media@vger.kernel.org
2749 T:      git git://linuxtv.org/media_tree.git
2750 W:      http://linuxtv.org
2751 S:      Supported
2752 F:      drivers/media/pci/cobalt/
2753
2754 COCCINELLE/Semantic Patches (SmPL)
2755 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2756 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2757 M:      Nicolas Palix <nicolas.palix@imag.fr>
2758 M:      Michal Marek <mmarek@suse.com>
2759 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2761 W:      http://coccinelle.lip6.fr/
2762 S:      Supported
2763 F:      Documentation/coccinelle.txt
2764 F:      scripts/coccinelle/
2765 F:      scripts/coccicheck
2766
2767 CODA FILE SYSTEM
2768 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2769 M:      coda@cs.cmu.edu
2770 L:      codalist@coda.cs.cmu.edu
2771 W:      http://www.coda.cs.cmu.edu/
2772 S:      Maintained
2773 F:      Documentation/filesystems/coda.txt
2774 F:      fs/coda/
2775 F:      include/linux/coda*.h
2776 F:      include/uapi/linux/coda*.h
2777
2778 CODA V4L2 MEM2MEM DRIVER
2779 M:      Philipp Zabel <p.zabel@pengutronix.de>
2780 L:      linux-media@vger.kernel.org
2781 S:      Maintained
2782 F:      Documentation/devicetree/bindings/media/coda.txt
2783 F:      drivers/media/platform/coda/
2784
2785 COMMON CLK FRAMEWORK
2786 M:      Michael Turquette <mturquette@baylibre.com>
2787 M:      Stephen Boyd <sboyd@codeaurora.org>
2788 L:      linux-clk@vger.kernel.org
2789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2790 S:      Maintained
2791 F:      drivers/clk/
2792 X:      drivers/clk/clkdev.c
2793 F:      include/linux/clk-pr*
2794 F:      include/linux/clk/
2795
2796 COMMON INTERNET FILE SYSTEM (CIFS)
2797 M:      Steve French <sfrench@samba.org>
2798 L:      linux-cifs@vger.kernel.org
2799 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2800 W:      http://linux-cifs.samba.org/
2801 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2802 S:      Supported
2803 F:      Documentation/filesystems/cifs/
2804 F:      fs/cifs/
2805
2806 COMPACTPCI HOTPLUG CORE
2807 M:      Scott Murray <scott@spiteful.org>
2808 L:      linux-pci@vger.kernel.org
2809 S:      Maintained
2810 F:      drivers/pci/hotplug/cpci_hotplug*
2811
2812 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2813 M:      Scott Murray <scott@spiteful.org>
2814 L:      linux-pci@vger.kernel.org
2815 S:      Maintained
2816 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2817
2818 COMPACTPCI HOTPLUG GENERIC DRIVER
2819 M:      Scott Murray <scott@spiteful.org>
2820 L:      linux-pci@vger.kernel.org
2821 S:      Maintained
2822 F:      drivers/pci/hotplug/cpcihp_generic.c
2823
2824 COMPAL LAPTOP SUPPORT
2825 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2826 L:      platform-driver-x86@vger.kernel.org
2827 S:      Maintained
2828 F:      drivers/platform/x86/compal-laptop.c
2829
2830 CONEXANT ACCESSRUNNER USB DRIVER
2831 M:      Simon Arlott <cxacru@fire.lp0.eu>
2832 L:      accessrunner-general@lists.sourceforge.net
2833 W:      http://accessrunner.sourceforge.net/
2834 S:      Maintained
2835 F:      drivers/usb/atm/cxacru.c
2836
2837 CONFIGFS
2838 M:      Joel Becker <jlbec@evilplan.org>
2839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2840 S:      Supported
2841 F:      fs/configfs/
2842 F:      include/linux/configfs.h
2843
2844 CONNECTOR
2845 M:      Evgeniy Polyakov <zbr@ioremap.net>
2846 L:      netdev@vger.kernel.org
2847 S:      Maintained
2848 F:      drivers/connector/
2849
2850 CONTROL GROUP (CGROUP)
2851 M:      Tejun Heo <tj@kernel.org>
2852 M:      Li Zefan <lizefan@huawei.com>
2853 M:      Johannes Weiner <hannes@cmpxchg.org>
2854 L:      cgroups@vger.kernel.org
2855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2856 S:      Maintained
2857 F:      Documentation/cgroups/
2858 F:      include/linux/cgroup*
2859 F:      kernel/cgroup*
2860
2861 CONTROL GROUP - CPUSET
2862 M:      Li Zefan <lizefan@huawei.com>
2863 L:      cgroups@vger.kernel.org
2864 W:      http://www.bullopensource.org/cpuset/
2865 W:      http://oss.sgi.com/projects/cpusets/
2866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2867 S:      Maintained
2868 F:      Documentation/cgroups/cpusets.txt
2869 F:      include/linux/cpuset.h
2870 F:      kernel/cpuset.c
2871
2872 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2873 M:      Johannes Weiner <hannes@cmpxchg.org>
2874 M:      Michal Hocko <mhocko@kernel.org>
2875 L:      cgroups@vger.kernel.org
2876 L:      linux-mm@kvack.org
2877 S:      Maintained
2878 F:      mm/memcontrol.c
2879 F:      mm/swap_cgroup.c
2880
2881 CORETEMP HARDWARE MONITORING DRIVER
2882 M:      Fenghua Yu <fenghua.yu@intel.com>
2883 L:      lm-sensors@lm-sensors.org
2884 S:      Maintained
2885 F:      Documentation/hwmon/coretemp
2886 F:      drivers/hwmon/coretemp.c
2887
2888 COSA/SRP SYNC SERIAL DRIVER
2889 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2890 W:      http://www.fi.muni.cz/~kas/cosa/
2891 S:      Maintained
2892 F:      drivers/net/wan/cosa*
2893
2894 CPMAC ETHERNET DRIVER
2895 M:      Florian Fainelli <florian@openwrt.org>
2896 L:      netdev@vger.kernel.org
2897 S:      Maintained
2898 F:      drivers/net/ethernet/ti/cpmac.c
2899
2900 CPU FREQUENCY DRIVERS
2901 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2902 M:      Viresh Kumar <viresh.kumar@linaro.org>
2903 L:      linux-pm@vger.kernel.org
2904 S:      Maintained
2905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2906 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2907 F:      drivers/cpufreq/
2908 F:      include/linux/cpufreq.h
2909
2910 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2911 M:      Viresh Kumar <viresh.kumar@linaro.org>
2912 M:      Sudeep Holla <sudeep.holla@arm.com>
2913 L:      linux-pm@vger.kernel.org
2914 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2915 S:      Maintained
2916 F:      drivers/cpufreq/arm_big_little.h
2917 F:      drivers/cpufreq/arm_big_little.c
2918 F:      drivers/cpufreq/arm_big_little_dt.c
2919
2920 CPUIDLE DRIVER - ARM BIG LITTLE
2921 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2922 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2923 L:      linux-pm@vger.kernel.org
2924 L:      linux-arm-kernel@lists.infradead.org
2925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2926 S:      Maintained
2927 F:      drivers/cpuidle/cpuidle-big_little.c
2928
2929 CPUIDLE DRIVER - ARM EXYNOS
2930 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2931 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2932 M:      Kukjin Kim <kgene@kernel.org>
2933 L:      linux-pm@vger.kernel.org
2934 L:      linux-samsung-soc@vger.kernel.org
2935 S:      Supported
2936 F:      drivers/cpuidle/cpuidle-exynos.c
2937 F:      arch/arm/mach-exynos/pm.c
2938
2939 CPUIDLE DRIVERS
2940 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2941 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2942 L:      linux-pm@vger.kernel.org
2943 S:      Maintained
2944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2945 F:      drivers/cpuidle/*
2946 F:      include/linux/cpuidle.h
2947
2948 CPUID/MSR DRIVER
2949 M:      "H. Peter Anvin" <hpa@zytor.com>
2950 S:      Maintained
2951 F:      arch/x86/kernel/cpuid.c
2952 F:      arch/x86/kernel/msr.c
2953
2954 CPU POWER MONITORING SUBSYSTEM
2955 M:      Thomas Renninger <trenn@suse.com>
2956 L:      linux-pm@vger.kernel.org
2957 S:      Maintained
2958 F:      tools/power/cpupower/
2959
2960 CRAMFS FILESYSTEM
2961 W:      http://sourceforge.net/projects/cramfs/
2962 S:      Orphan / Obsolete
2963 F:      Documentation/filesystems/cramfs.txt
2964 F:      fs/cramfs/
2965
2966 CRIS PORT
2967 M:      Mikael Starvik <starvik@axis.com>
2968 M:      Jesper Nilsson <jesper.nilsson@axis.com>
2969 L:      linux-cris-kernel@axis.com
2970 W:      http://developer.axis.com
2971 S:      Maintained
2972 F:      arch/cris/
2973 F:      drivers/tty/serial/crisv10.*
2974
2975 CRYPTO API
2976 M:      Herbert Xu <herbert@gondor.apana.org.au>
2977 M:      "David S. Miller" <davem@davemloft.net>
2978 L:      linux-crypto@vger.kernel.org
2979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2980 S:      Maintained
2981 F:      Documentation/crypto/
2982 F:      Documentation/DocBook/crypto-API.tmpl
2983 F:      arch/*/crypto/
2984 F:      crypto/
2985 F:      drivers/crypto/
2986 F:      include/crypto/
2987
2988 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2989 M:      Neil Horman <nhorman@tuxdriver.com>
2990 L:      linux-crypto@vger.kernel.org
2991 S:      Maintained
2992 F:      crypto/ansi_cprng.c
2993 F:      crypto/rng.c
2994
2995 CS5535 Audio ALSA driver
2996 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
2997 S:      Maintained
2998 F:      sound/pci/cs5535audio/
2999
3000 CW1200 WLAN driver
3001 M:      Solomon Peachy <pizza@shaftnet.org>
3002 S:      Maintained
3003 F:      drivers/net/wireless/cw1200/
3004
3005 CX18 VIDEO4LINUX DRIVER
3006 M:      Andy Walls <awalls@md.metrocast.net>
3007 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3008 L:      linux-media@vger.kernel.org
3009 T:      git git://linuxtv.org/media_tree.git
3010 W:      http://linuxtv.org
3011 W:      http://www.ivtvdriver.org/index.php/Cx18
3012 S:      Maintained
3013 F:      Documentation/video4linux/cx18.txt
3014 F:      drivers/media/pci/cx18/
3015 F:      include/uapi/linux/ivtv*
3016
3017 CX2341X MPEG ENCODER HELPER MODULE
3018 M:      Hans Verkuil <hverkuil@xs4all.nl>
3019 L:      linux-media@vger.kernel.org
3020 T:      git git://linuxtv.org/media_tree.git
3021 W:      http://linuxtv.org
3022 S:      Maintained
3023 F:      drivers/media/common/cx2341x*
3024 F:      include/media/cx2341x*
3025
3026 CX24120 MEDIA DRIVER
3027 M:      Jemma Denson <jdenson@gmail.com>
3028 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3029 L:      linux-media@vger.kernel.org
3030 W:      http://linuxtv.org/
3031 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3032 S:      Maintained
3033 F:      drivers/media/dvb-frontends/cx24120*
3034
3035 CX88 VIDEO4LINUX DRIVER
3036 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3037 L:      linux-media@vger.kernel.org
3038 W:      http://linuxtv.org
3039 T:      git git://linuxtv.org/media_tree.git
3040 S:      Odd fixes
3041 F:      Documentation/video4linux/cx88/
3042 F:      drivers/media/pci/cx88/
3043
3044 CXD2820R MEDIA DRIVER
3045 M:      Antti Palosaari <crope@iki.fi>
3046 L:      linux-media@vger.kernel.org
3047 W:      http://linuxtv.org/
3048 W:      http://palosaari.fi/linux/
3049 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3050 T:      git git://linuxtv.org/anttip/media_tree.git
3051 S:      Maintained
3052 F:      drivers/media/dvb-frontends/cxd2820r*
3053
3054 CXGB3 ETHERNET DRIVER (CXGB3)
3055 M:      Santosh Raspatur <santosh@chelsio.com>
3056 L:      netdev@vger.kernel.org
3057 W:      http://www.chelsio.com
3058 S:      Supported
3059 F:      drivers/net/ethernet/chelsio/cxgb3/
3060
3061 CXGB3 ISCSI DRIVER (CXGB3I)
3062 M:      Karen Xie <kxie@chelsio.com>
3063 L:      linux-scsi@vger.kernel.org
3064 W:      http://www.chelsio.com
3065 S:      Supported
3066 F:      drivers/scsi/cxgbi/cxgb3i
3067
3068 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3069 M:      Steve Wise <swise@chelsio.com>
3070 L:      linux-rdma@vger.kernel.org
3071 W:      http://www.openfabrics.org
3072 S:      Supported
3073 F:      drivers/infiniband/hw/cxgb3/
3074
3075 CXGB4 ETHERNET DRIVER (CXGB4)
3076 M:      Hariprasad S <hariprasad@chelsio.com>
3077 L:      netdev@vger.kernel.org
3078 W:      http://www.chelsio.com
3079 S:      Supported
3080 F:      drivers/net/ethernet/chelsio/cxgb4/
3081
3082 CXGB4 ISCSI DRIVER (CXGB4I)
3083 M:      Karen Xie <kxie@chelsio.com>
3084 L:      linux-scsi@vger.kernel.org
3085 W:      http://www.chelsio.com
3086 S:      Supported
3087 F:      drivers/scsi/cxgbi/cxgb4i
3088
3089 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3090 M:      Steve Wise <swise@chelsio.com>
3091 L:      linux-rdma@vger.kernel.org
3092 W:      http://www.openfabrics.org
3093 S:      Supported
3094 F:      drivers/infiniband/hw/cxgb4/
3095
3096 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3097 M:      Casey Leedom <leedom@chelsio.com>
3098 L:      netdev@vger.kernel.org
3099 W:      http://www.chelsio.com
3100 S:      Supported
3101 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3102
3103 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3104 M:      Ian Munsie <imunsie@au1.ibm.com>
3105 M:      Michael Neuling <mikey@neuling.org>
3106 L:      linuxppc-dev@lists.ozlabs.org
3107 S:      Supported
3108 F:      drivers/misc/cxl/
3109 F:      include/misc/cxl*
3110 F:      include/uapi/misc/cxl.h
3111 F:      Documentation/powerpc/cxl.txt
3112 F:      Documentation/powerpc/cxl.txt
3113 F:      Documentation/ABI/testing/sysfs-class-cxl
3114
3115 STMMAC ETHERNET DRIVER
3116 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3117 L:      netdev@vger.kernel.org
3118 W:      http://www.stlinux.com
3119 S:      Supported
3120 F:      drivers/net/ethernet/stmicro/stmmac/
3121
3122 CYBERPRO FB DRIVER
3123 M:      Russell King <linux@arm.linux.org.uk>
3124 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3125 W:      http://www.arm.linux.org.uk/
3126 S:      Maintained
3127 F:      drivers/video/fbdev/cyber2000fb.*
3128
3129 CYCLADES ASYNC MUX DRIVER
3130 W:      http://www.cyclades.com/
3131 S:      Orphan
3132 F:      drivers/tty/cyclades.c
3133 F:      include/linux/cyclades.h
3134 F:      include/uapi/linux/cyclades.h
3135
3136 CYCLADES PC300 DRIVER
3137 W:      http://www.cyclades.com/
3138 S:      Orphan
3139 F:      drivers/net/wan/pc300*
3140
3141 CYPRESS_FIRMWARE MEDIA DRIVER
3142 M:      Antti Palosaari <crope@iki.fi>
3143 L:      linux-media@vger.kernel.org
3144 W:      http://linuxtv.org/
3145 W:      http://palosaari.fi/linux/
3146 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3147 T:      git git://linuxtv.org/anttip/media_tree.git
3148 S:      Maintained
3149 F:      drivers/media/common/cypress_firmware*
3150
3151 CYTTSP TOUCHSCREEN DRIVER
3152 M:      Ferruh Yigit <fery@cypress.com>
3153 L:      linux-input@vger.kernel.org
3154 S:      Supported
3155 F:      drivers/input/touchscreen/cyttsp*
3156 F:      include/linux/input/cyttsp.h
3157
3158 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3159 M:      Joshua Kinard <kumba@gentoo.org>
3160 S:      Maintained
3161 F:      drivers/rtc/rtc-ds1685.c
3162 F:      include/linux/rtc/ds1685.h
3163
3164 DAMA SLAVE for AX.25
3165 M:      Joerg Reuter <jreuter@yaina.de>
3166 W:      http://yaina.de/jreuter/
3167 W:      http://www.qsl.net/dl1bke/
3168 L:      linux-hams@vger.kernel.org
3169 S:      Maintained
3170 F:      net/ax25/af_ax25.c
3171 F:      net/ax25/ax25_dev.c
3172 F:      net/ax25/ax25_ds_*
3173 F:      net/ax25/ax25_in.c
3174 F:      net/ax25/ax25_out.c
3175 F:      net/ax25/ax25_timer.c
3176 F:      net/ax25/sysctl_net_ax25.c
3177
3178 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3179 L:      netdev@vger.kernel.org
3180 S:      Orphan
3181 F:      Documentation/networking/dmfe.txt
3182 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3183
3184 DC390/AM53C974 SCSI driver
3185 M:      Hannes Reinecke <hare@suse.com>
3186 L:      linux-scsi@vger.kernel.org
3187 S:      Maintained
3188 F:      drivers/scsi/am53c974.c
3189
3190 DC395x SCSI driver
3191 M:      Oliver Neukum <oliver@neukum.org>
3192 M:      Ali Akcaagac <aliakc@web.de>
3193 M:      Jamie Lenehan <lenehan@twibble.org>
3194 L:      dc395x@twibble.org
3195 W:      http://twibble.org/dist/dc395x/
3196 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3197 S:      Maintained
3198 F:      Documentation/scsi/dc395x.txt
3199 F:      drivers/scsi/dc395x.*
3200
3201 DCCP PROTOCOL
3202 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3203 L:      dccp@vger.kernel.org
3204 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3205 S:      Maintained
3206 F:      include/linux/dccp.h
3207 F:      include/uapi/linux/dccp.h
3208 F:      include/linux/tfrc.h
3209 F:      net/dccp/
3210
3211 DECnet NETWORK LAYER
3212 W:      http://linux-decnet.sourceforge.net
3213 L:      linux-decnet-user@lists.sourceforge.net
3214 S:      Orphan
3215 F:      Documentation/networking/decnet.txt
3216 F:      net/decnet/
3217
3218 DECSTATION PLATFORM SUPPORT
3219 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3220 L:      linux-mips@linux-mips.org
3221 W:      http://www.linux-mips.org/wiki/DECstation
3222 S:      Maintained
3223 F:      arch/mips/dec/
3224 F:      arch/mips/include/asm/dec/
3225 F:      arch/mips/include/asm/mach-dec/
3226
3227 DEFXX FDDI NETWORK DRIVER
3228 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3229 S:      Maintained
3230 F:      drivers/net/fddi/defxx.*
3231
3232 DELL LAPTOP DRIVER
3233 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3234 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3235 L:      platform-driver-x86@vger.kernel.org
3236 S:      Maintained
3237 F:      drivers/platform/x86/dell-laptop.c
3238
3239 DELL LAPTOP RBTN DRIVER
3240 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3241 S:      Maintained
3242 F:      drivers/platform/x86/dell-rbtn.*
3243
3244 DELL LAPTOP FREEFALL DRIVER
3245 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3246 S:      Maintained
3247 F:      drivers/platform/x86/dell-smo8800.c
3248
3249 DELL LAPTOP SMM DRIVER
3250 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3251 S:      Maintained
3252 F:      drivers/hwmon/dell-smm-hwmon.c
3253 F:      include/uapi/linux/i8k.h
3254
3255 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3256 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3257 S:      Maintained
3258 F:      Documentation/dcdbas.txt
3259 F:      drivers/firmware/dcdbas.*
3260
3261 DELL WMI EXTRAS DRIVER
3262 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3263 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3264 S:      Maintained
3265 F:      drivers/platform/x86/dell-wmi.c
3266
3267 DESIGNWARE USB2 DRD IP DRIVER
3268 M:      John Youn <johnyoun@synopsys.com>
3269 L:      linux-usb@vger.kernel.org
3270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3271 S:      Maintained
3272 F:      drivers/usb/dwc2/
3273
3274 DESIGNWARE USB3 DRD IP DRIVER
3275 M:      Felipe Balbi <balbi@ti.com>
3276 L:      linux-usb@vger.kernel.org
3277 L:      linux-omap@vger.kernel.org
3278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3279 S:      Maintained
3280 F:      drivers/usb/dwc3/
3281
3282 DEVICE COREDUMP (DEV_COREDUMP)
3283 M:      Johannes Berg <johannes@sipsolutions.net>
3284 L:      linux-kernel@vger.kernel.org
3285 S:      Maintained
3286 F:      drivers/base/devcoredump.c
3287 F:      include/linux/devcoredump.h
3288
3289 DEVICE FREQUENCY (DEVFREQ)
3290 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3291 M:      Kyungmin Park <kyungmin.park@samsung.com>
3292 L:      linux-pm@vger.kernel.org
3293 S:      Maintained
3294 F:      drivers/devfreq/
3295
3296 DEVICE NUMBER REGISTRY
3297 M:      Torben Mathiasen <device@lanana.org>
3298 W:      http://lanana.org/docs/device-list/index.html
3299 S:      Maintained
3300
3301 DEVICE-MAPPER  (LVM)
3302 M:      Alasdair Kergon <agk@redhat.com>
3303 M:      Mike Snitzer <snitzer@redhat.com>
3304 M:      dm-devel@redhat.com
3305 L:      dm-devel@redhat.com
3306 W:      http://sources.redhat.com/dm
3307 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3309 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3310 S:      Maintained
3311 F:      Documentation/device-mapper/
3312 F:      drivers/md/dm*
3313 F:      drivers/md/persistent-data/
3314 F:      include/linux/device-mapper.h
3315 F:      include/linux/dm-*.h
3316 F:      include/uapi/linux/dm-*.h
3317
3318 DIALOG SEMICONDUCTOR DRIVERS
3319 M:      Support Opensource <support.opensource@diasemi.com>
3320 W:      http://www.dialog-semiconductor.com/products
3321 S:      Supported
3322 F:      Documentation/hwmon/da90??
3323 F:      drivers/gpio/gpio-da90??.c
3324 F:      drivers/hwmon/da90??-hwmon.c
3325 F:      drivers/iio/adc/da91??-*.c
3326 F:      drivers/input/misc/da90??_onkey.c
3327 F:      drivers/input/touchscreen/da9052_tsi.c
3328 F:      drivers/leds/leds-da90??.c
3329 F:      drivers/mfd/da903x.c
3330 F:      drivers/mfd/da90??-*.c
3331 F:      drivers/mfd/da91??-*.c
3332 F:      drivers/power/da9052-battery.c
3333 F:      drivers/power/da91??-*.c
3334 F:      drivers/regulator/da903x.c
3335 F:      drivers/regulator/da9???-regulator.[ch]
3336 F:      drivers/rtc/rtc-da90??.c
3337 F:      drivers/video/backlight/da90??_bl.c
3338 F:      drivers/watchdog/da90??_wdt.c
3339 F:      include/linux/mfd/da903x.h
3340 F:      include/linux/mfd/da9052/
3341 F:      include/linux/mfd/da9055/
3342 F:      include/linux/mfd/da9063/
3343 F:      include/linux/mfd/da9150/
3344 F:      include/sound/da[79]*.h
3345 F:      sound/soc/codecs/da[79]*.[ch]
3346
3347 DIGI NEO AND CLASSIC PCI PRODUCTS
3348 M:      Lidza Louina <lidza.louina@gmail.com>
3349 M:      Mark Hounschell <markh@compro.net>
3350 L:      driverdev-devel@linuxdriverproject.org
3351 S:      Maintained
3352 F:      drivers/staging/dgnc/
3353
3354 DIGI EPCA PCI PRODUCTS
3355 M:      Lidza Louina <lidza.louina@gmail.com>
3356 M:      Mark Hounschell <markh@compro.net>
3357 M:      Daeseok Youn <daeseok.youn@gmail.com>
3358 L:      driverdev-devel@linuxdriverproject.org
3359 S:      Maintained
3360 F:      drivers/staging/dgap/
3361
3362 DIOLAN U2C-12 I2C DRIVER
3363 M:      Guenter Roeck <linux@roeck-us.net>
3364 L:      linux-i2c@vger.kernel.org
3365 S:      Maintained
3366 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3367
3368 DIRECT ACCESS (DAX)
3369 M:      Matthew Wilcox <willy@linux.intel.com>
3370 L:      linux-fsdevel@vger.kernel.org
3371 S:      Supported
3372 F:      fs/dax.c
3373
3374 DIRECTORY NOTIFICATION (DNOTIFY)
3375 M:      Eric Paris <eparis@parisplace.org>
3376 S:      Maintained
3377 F:      Documentation/filesystems/dnotify.txt
3378 F:      fs/notify/dnotify/
3379 F:      include/linux/dnotify.h
3380
3381 DISK GEOMETRY AND PARTITION HANDLING
3382 M:      Andries Brouwer <aeb@cwi.nl>
3383 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3384 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3385 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3386 S:      Maintained
3387
3388 DISKQUOTA
3389 M:      Jan Kara <jack@suse.com>
3390 S:      Maintained
3391 F:      Documentation/filesystems/quota.txt
3392 F:      fs/quota/
3393 F:      include/linux/quota*.h
3394 F:      include/uapi/linux/quota*.h
3395
3396 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3397 M:      Bernie Thompson <bernie@plugable.com>
3398 L:      linux-fbdev@vger.kernel.org
3399 S:      Maintained
3400 W:      http://plugable.com/category/projects/udlfb/
3401 F:      drivers/video/fbdev/udlfb.c
3402 F:      include/video/udlfb.h
3403 F:      Documentation/fb/udlfb.txt
3404
3405 DISTRIBUTED LOCK MANAGER (DLM)
3406 M:      Christine Caulfield <ccaulfie@redhat.com>
3407 M:      David Teigland <teigland@redhat.com>
3408 L:      cluster-devel@redhat.com
3409 W:      http://sources.redhat.com/cluster/
3410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3411 S:      Supported
3412 F:      fs/dlm/
3413
3414 DMA BUFFER SHARING FRAMEWORK
3415 M:      Sumit Semwal <sumit.semwal@linaro.org>
3416 S:      Maintained
3417 L:      linux-media@vger.kernel.org
3418 L:      dri-devel@lists.freedesktop.org
3419 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3420 F:      drivers/dma-buf/
3421 F:      include/linux/dma-buf*
3422 F:      include/linux/reservation.h
3423 F:      include/linux/*fence.h
3424 F:      Documentation/dma-buf-sharing.txt
3425 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3426
3427 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3428 M:      Vinod Koul <vinod.koul@intel.com>
3429 L:      dmaengine@vger.kernel.org
3430 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3431 S:      Maintained
3432 F:      drivers/dma/
3433 F:      include/linux/dmaengine.h
3434 F:      Documentation/dmaengine/
3435 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3436
3437 DME1737 HARDWARE MONITOR DRIVER
3438 M:      Juerg Haefliger <juergh@gmail.com>
3439 L:      lm-sensors@lm-sensors.org
3440 S:      Maintained
3441 F:      Documentation/hwmon/dme1737
3442 F:      drivers/hwmon/dme1737.c
3443
3444 DMI/SMBIOS SUPPORT
3445 M:      Jean Delvare <jdelvare@suse.com>
3446 S:      Maintained
3447 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3448 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3449 F:      drivers/firmware/dmi-id.c
3450 F:      drivers/firmware/dmi_scan.c
3451 F:      include/linux/dmi.h
3452
3453 DOCUMENTATION
3454 M:      Jonathan Corbet <corbet@lwn.net>
3455 L:      linux-doc@vger.kernel.org
3456 S:      Maintained
3457 F:      Documentation/
3458 X:      Documentation/ABI/
3459 X:      Documentation/devicetree/
3460 X:      Documentation/acpi
3461 X:      Documentation/power
3462 X:      Documentation/spi
3463 T:      git git://git.lwn.net/linux-2.6.git docs-next
3464
3465 DOUBLETALK DRIVER
3466 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3467 L:      blinux-list@redhat.com
3468 S:      Maintained
3469 F:      drivers/char/dtlk.c
3470 F:      include/linux/dtlk.h
3471
3472 DPT_I2O SCSI RAID DRIVER
3473 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3474 L:      linux-scsi@vger.kernel.org
3475 W:      http://www.adaptec.com/
3476 S:      Maintained
3477 F:      drivers/scsi/dpt*
3478 F:      drivers/scsi/dpt/
3479
3480 DRBD DRIVER
3481 P:      Philipp Reisner
3482 P:      Lars Ellenberg
3483 M:      drbd-dev@lists.linbit.com
3484 L:      drbd-user@lists.linbit.com
3485 W:      http://www.drbd.org
3486 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3487 T:      git git://git.drbd.org/drbd-8.3.git
3488 S:      Supported
3489 F:      drivers/block/drbd/
3490 F:      lib/lru_cache.c
3491 F:      Documentation/blockdev/drbd/
3492
3493 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3494 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3496 S:      Supported
3497 F:      Documentation/kobject.txt
3498 F:      drivers/base/
3499 F:      fs/debugfs/
3500 F:      fs/kernfs/
3501 F:      fs/sysfs/
3502 F:      include/linux/debugfs.h
3503 F:      include/linux/kobj*
3504 F:      lib/kobj*
3505
3506 DRM DRIVERS
3507 M:      David Airlie <airlied@linux.ie>
3508 L:      dri-devel@lists.freedesktop.org
3509 T:      git git://people.freedesktop.org/~airlied/linux
3510 S:      Maintained
3511 F:      drivers/gpu/drm/
3512 F:      drivers/gpu/vga/
3513 F:      include/drm/
3514 F:      include/uapi/drm/
3515
3516 RADEON DRM DRIVERS
3517 M:      Alex Deucher <alexander.deucher@amd.com>
3518 M:      Christian König <christian.koenig@amd.com>
3519 L:      dri-devel@lists.freedesktop.org
3520 T:      git git://people.freedesktop.org/~agd5f/linux
3521 S:      Supported
3522 F:      drivers/gpu/drm/radeon/
3523 F:      include/uapi/drm/radeon*
3524
3525 DRM PANEL DRIVERS
3526 M:      Thierry Reding <thierry.reding@gmail.com>
3527 L:      dri-devel@lists.freedesktop.org
3528 T:      git git://anongit.freedesktop.org/tegra/linux.git
3529 S:      Maintained
3530 F:      drivers/gpu/drm/drm_panel.c
3531 F:      drivers/gpu/drm/panel/
3532 F:      include/drm/drm_panel.h
3533 F:      Documentation/devicetree/bindings/panel/
3534
3535 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3536 M:      Daniel Vetter <daniel.vetter@intel.com>
3537 M:      Jani Nikula <jani.nikula@linux.intel.com>
3538 L:      intel-gfx@lists.freedesktop.org
3539 L:      dri-devel@lists.freedesktop.org
3540 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3541 T:      git git://anongit.freedesktop.org/drm-intel
3542 S:      Supported
3543 F:      drivers/gpu/drm/i915/
3544 F:      include/drm/i915*
3545 F:      include/uapi/drm/i915*
3546
3547 DRM DRIVERS FOR EXYNOS
3548 M:      Inki Dae <inki.dae@samsung.com>
3549 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3550 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3551 M:      Kyungmin Park <kyungmin.park@samsung.com>
3552 L:      dri-devel@lists.freedesktop.org
3553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3554 S:      Supported
3555 F:      drivers/gpu/drm/exynos/
3556 F:      include/drm/exynos*
3557 F:      include/uapi/drm/exynos*
3558
3559 DRM DRIVERS FOR FREESCALE IMX
3560 M:      Philipp Zabel <p.zabel@pengutronix.de>
3561 L:      dri-devel@lists.freedesktop.org
3562 S:      Maintained
3563 F:      drivers/gpu/drm/imx/
3564 F:      Documentation/devicetree/bindings/drm/imx/
3565
3566 DRM DRIVERS FOR NVIDIA TEGRA
3567 M:      Thierry Reding <thierry.reding@gmail.com>
3568 M:      Terje Bergström <tbergstrom@nvidia.com>
3569 L:      dri-devel@lists.freedesktop.org
3570 L:      linux-tegra@vger.kernel.org
3571 T:      git git://anongit.freedesktop.org/tegra/linux.git
3572 S:      Supported
3573 F:      drivers/gpu/drm/tegra/
3574 F:      drivers/gpu/host1x/
3575 F:      include/linux/host1x.h
3576 F:      include/uapi/drm/tegra_drm.h
3577 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3578
3579 DRM DRIVERS FOR RENESAS
3580 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3581 L:      dri-devel@lists.freedesktop.org
3582 L:      linux-sh@vger.kernel.org
3583 T:      git git://people.freedesktop.org/~airlied/linux
3584 S:      Supported
3585 F:      drivers/gpu/drm/rcar-du/
3586 F:      drivers/gpu/drm/shmobile/
3587 F:      include/linux/platform_data/shmob_drm.h
3588
3589 DRM DRIVERS FOR ROCKCHIP
3590 M:      Mark Yao <mark.yao@rock-chips.com>
3591 L:      dri-devel@lists.freedesktop.org
3592 S:      Maintained
3593 F:      drivers/gpu/drm/rockchip/
3594 F:      Documentation/devicetree/bindings/video/rockchip*
3595
3596 DRM DRIVERS FOR STI
3597 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3598 M:      Vincent Abriou <vincent.abriou@st.com>
3599 L:      dri-devel@lists.freedesktop.org
3600 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3601 S:      Maintained
3602 F:      drivers/gpu/drm/sti
3603 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3604
3605 DSBR100 USB FM RADIO DRIVER
3606 M:      Alexey Klimov <klimov.linux@gmail.com>
3607 L:      linux-media@vger.kernel.org
3608 T:      git git://linuxtv.org/media_tree.git
3609 S:      Maintained
3610 F:      drivers/media/radio/dsbr100.c
3611
3612 DSCC4 DRIVER
3613 M:      Francois Romieu <romieu@fr.zoreil.com>
3614 L:      netdev@vger.kernel.org
3615 S:      Maintained
3616 F:      drivers/net/wan/dscc4.c
3617
3618 DT3155 MEDIA DRIVER
3619 M:      Hans Verkuil <hverkuil@xs4all.nl>
3620 L:      linux-media@vger.kernel.org
3621 T:      git git://linuxtv.org/media_tree.git
3622 W:      http://linuxtv.org
3623 S:      Odd Fixes
3624 F:      drivers/media/pci/dt3155/
3625
3626 DVB_USB_AF9015 MEDIA DRIVER
3627 M:      Antti Palosaari <crope@iki.fi>
3628 L:      linux-media@vger.kernel.org
3629 W:      http://linuxtv.org/
3630 W:      http://palosaari.fi/linux/
3631 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3632 T:      git git://linuxtv.org/anttip/media_tree.git
3633 S:      Maintained
3634 F:      drivers/media/usb/dvb-usb-v2/af9015*
3635
3636 DVB_USB_AF9035 MEDIA DRIVER
3637 M:      Antti Palosaari <crope@iki.fi>
3638 L:      linux-media@vger.kernel.org
3639 W:      http://linuxtv.org/
3640 W:      http://palosaari.fi/linux/
3641 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3642 T:      git git://linuxtv.org/anttip/media_tree.git
3643 S:      Maintained
3644 F:      drivers/media/usb/dvb-usb-v2/af9035*
3645
3646 DVB_USB_ANYSEE MEDIA DRIVER
3647 M:      Antti Palosaari <crope@iki.fi>
3648 L:      linux-media@vger.kernel.org
3649 W:      http://linuxtv.org/
3650 W:      http://palosaari.fi/linux/
3651 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3652 T:      git git://linuxtv.org/anttip/media_tree.git
3653 S:      Maintained
3654 F:      drivers/media/usb/dvb-usb-v2/anysee*
3655
3656 DVB_USB_AU6610 MEDIA DRIVER
3657 M:      Antti Palosaari <crope@iki.fi>
3658 L:      linux-media@vger.kernel.org
3659 W:      http://linuxtv.org/
3660 W:      http://palosaari.fi/linux/
3661 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3662 T:      git git://linuxtv.org/anttip/media_tree.git
3663 S:      Maintained
3664 F:      drivers/media/usb/dvb-usb-v2/au6610*
3665
3666 DVB_USB_CE6230 MEDIA DRIVER
3667 M:      Antti Palosaari <crope@iki.fi>
3668 L:      linux-media@vger.kernel.org
3669 W:      http://linuxtv.org/
3670 W:      http://palosaari.fi/linux/
3671 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3672 T:      git git://linuxtv.org/anttip/media_tree.git
3673 S:      Maintained
3674 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3675
3676 DVB_USB_CXUSB MEDIA DRIVER
3677 M:      Michael Krufky <mkrufky@linuxtv.org>
3678 L:      linux-media@vger.kernel.org
3679 W:      http://linuxtv.org/
3680 W:      http://github.com/mkrufky
3681 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3682 T:      git git://linuxtv.org/media_tree.git
3683 S:      Maintained
3684 F:      drivers/media/usb/dvb-usb/cxusb*
3685
3686 DVB_USB_EC168 MEDIA DRIVER
3687 M:      Antti Palosaari <crope@iki.fi>
3688 L:      linux-media@vger.kernel.org
3689 W:      http://linuxtv.org/
3690 W:      http://palosaari.fi/linux/
3691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3692 T:      git git://linuxtv.org/anttip/media_tree.git
3693 S:      Maintained
3694 F:      drivers/media/usb/dvb-usb-v2/ec168*
3695
3696 DVB_USB_GL861 MEDIA DRIVER
3697 M:      Antti Palosaari <crope@iki.fi>
3698 L:      linux-media@vger.kernel.org
3699 W:      http://linuxtv.org/
3700 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3701 T:      git git://linuxtv.org/anttip/media_tree.git
3702 S:      Maintained
3703 F:      drivers/media/usb/dvb-usb-v2/gl861*
3704
3705 DVB_USB_MXL111SF MEDIA DRIVER
3706 M:      Michael Krufky <mkrufky@linuxtv.org>
3707 L:      linux-media@vger.kernel.org
3708 W:      http://linuxtv.org/
3709 W:      http://github.com/mkrufky
3710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3711 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3712 S:      Maintained
3713 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3714
3715 DVB_USB_RTL28XXU MEDIA DRIVER
3716 M:      Antti Palosaari <crope@iki.fi>
3717 L:      linux-media@vger.kernel.org
3718 W:      http://linuxtv.org/
3719 W:      http://palosaari.fi/linux/
3720 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3721 T:      git git://linuxtv.org/anttip/media_tree.git
3722 S:      Maintained
3723 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3724
3725 DVB_USB_V2 MEDIA DRIVER
3726 M:      Antti Palosaari <crope@iki.fi>
3727 L:      linux-media@vger.kernel.org
3728 W:      http://linuxtv.org/
3729 W:      http://palosaari.fi/linux/
3730 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3731 T:      git git://linuxtv.org/anttip/media_tree.git
3732 S:      Maintained
3733 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3734 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3735
3736 DYNAMIC DEBUG
3737 M:      Jason Baron <jbaron@akamai.com>
3738 S:      Maintained
3739 F:      lib/dynamic_debug.c
3740 F:      include/linux/dynamic_debug.h
3741
3742 DZ DECSTATION DZ11 SERIAL DRIVER
3743 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3744 S:      Maintained
3745 F:      drivers/tty/serial/dz.*
3746
3747 E3X0 POWER BUTTON DRIVER
3748 M:      Moritz Fischer <moritz.fischer@ettus.com>
3749 L:      usrp-users@lists.ettus.com
3750 W:      http://www.ettus.com
3751 S:      Supported
3752 F:      drivers/input/misc/e3x0-button.c
3753 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3754
3755 E4000 MEDIA DRIVER
3756 M:      Antti Palosaari <crope@iki.fi>
3757 L:      linux-media@vger.kernel.org
3758 W:      http://linuxtv.org/
3759 W:      http://palosaari.fi/linux/
3760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3761 T:      git git://linuxtv.org/anttip/media_tree.git
3762 S:      Maintained
3763 F:      drivers/media/tuners/e4000*
3764
3765 EATA ISA/EISA/PCI SCSI DRIVER
3766 M:      Dario Ballabio <ballabio_dario@emc.com>
3767 L:      linux-scsi@vger.kernel.org
3768 S:      Maintained
3769 F:      drivers/scsi/eata.c
3770
3771 EC100 MEDIA DRIVER
3772 M:      Antti Palosaari <crope@iki.fi>
3773 L:      linux-media@vger.kernel.org
3774 W:      http://linuxtv.org/
3775 W:      http://palosaari.fi/linux/
3776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3777 T:      git git://linuxtv.org/anttip/media_tree.git
3778 S:      Maintained
3779 F:      drivers/media/dvb-frontends/ec100*
3780
3781 ECRYPT FILE SYSTEM
3782 M:      Tyler Hicks <tyhicks@canonical.com>
3783 L:      ecryptfs@vger.kernel.org
3784 W:      http://ecryptfs.org
3785 W:      https://launchpad.net/ecryptfs
3786 S:      Supported
3787 F:      Documentation/filesystems/ecryptfs.txt
3788 F:      fs/ecryptfs/
3789
3790 EDAC-CORE
3791 M:      Doug Thompson <dougthompson@xmission.com>
3792 M:      Borislav Petkov <bp@alien8.de>
3793 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3794 L:      linux-edac@vger.kernel.org
3795 W:      bluesmoke.sourceforge.net
3796 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3797 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3798 S:      Supported
3799 F:      Documentation/edac.txt
3800 F:      drivers/edac/
3801 F:      include/linux/edac.h
3802
3803 EDAC-AMD64
3804 M:      Doug Thompson <dougthompson@xmission.com>
3805 M:      Borislav Petkov <bp@alien8.de>
3806 L:      linux-edac@vger.kernel.org
3807 W:      bluesmoke.sourceforge.net
3808 S:      Maintained
3809 F:      drivers/edac/amd64_edac*
3810
3811 EDAC-CALXEDA
3812 M:      Doug Thompson <dougthompson@xmission.com>
3813 M:      Robert Richter <rric@kernel.org>
3814 L:      linux-edac@vger.kernel.org
3815 W:      bluesmoke.sourceforge.net
3816 S:      Maintained
3817 F:      drivers/edac/highbank*
3818
3819 EDAC-CAVIUM
3820 M:      Ralf Baechle <ralf@linux-mips.org>
3821 M:      David Daney <david.daney@cavium.com>
3822 L:      linux-edac@vger.kernel.org
3823 L:      linux-mips@linux-mips.org
3824 W:      bluesmoke.sourceforge.net
3825 S:      Supported
3826 F:      drivers/edac/octeon_edac*
3827
3828 EDAC-E752X
3829 M:      Mark Gross <mark.gross@intel.com>
3830 M:      Doug Thompson <dougthompson@xmission.com>
3831 L:      linux-edac@vger.kernel.org
3832 W:      bluesmoke.sourceforge.net
3833 S:      Maintained
3834 F:      drivers/edac/e752x_edac.c
3835
3836 EDAC-E7XXX
3837 M:      Doug Thompson <dougthompson@xmission.com>
3838 L:      linux-edac@vger.kernel.org
3839 W:      bluesmoke.sourceforge.net
3840 S:      Maintained
3841 F:      drivers/edac/e7xxx_edac.c
3842
3843 EDAC-GHES
3844 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3845 L:      linux-edac@vger.kernel.org
3846 W:      bluesmoke.sourceforge.net
3847 S:      Maintained
3848 F:      drivers/edac/ghes_edac.c
3849
3850 EDAC-I82443BXGX
3851 M:      Tim Small <tim@buttersideup.com>
3852 L:      linux-edac@vger.kernel.org
3853 W:      bluesmoke.sourceforge.net
3854 S:      Maintained
3855 F:      drivers/edac/i82443bxgx_edac.c
3856
3857 EDAC-I3000
3858 M:      Jason Uhlenkott <juhlenko@akamai.com>
3859 L:      linux-edac@vger.kernel.org
3860 W:      bluesmoke.sourceforge.net
3861 S:      Maintained
3862 F:      drivers/edac/i3000_edac.c
3863
3864 EDAC-I5000
3865 M:      Doug Thompson <dougthompson@xmission.com>
3866 L:      linux-edac@vger.kernel.org
3867 W:      bluesmoke.sourceforge.net
3868 S:      Maintained
3869 F:      drivers/edac/i5000_edac.c
3870
3871 EDAC-I5400
3872 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3873 L:      linux-edac@vger.kernel.org
3874 W:      bluesmoke.sourceforge.net
3875 S:      Maintained
3876 F:      drivers/edac/i5400_edac.c
3877
3878 EDAC-I7300
3879 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3880 L:      linux-edac@vger.kernel.org
3881 W:      bluesmoke.sourceforge.net
3882 S:      Maintained
3883 F:      drivers/edac/i7300_edac.c
3884
3885 EDAC-I7CORE
3886 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3887 L:      linux-edac@vger.kernel.org
3888 W:      bluesmoke.sourceforge.net
3889 S:      Maintained
3890 F:      drivers/edac/i7core_edac.c
3891
3892 EDAC-I82975X
3893 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3894 M:      "Arvind R." <arvino55@gmail.com>
3895 L:      linux-edac@vger.kernel.org
3896 W:      bluesmoke.sourceforge.net
3897 S:      Maintained
3898 F:      drivers/edac/i82975x_edac.c
3899
3900 EDAC-IE31200
3901 M:      Jason Baron <jbaron@akamai.com>
3902 L:      linux-edac@vger.kernel.org
3903 W:      bluesmoke.sourceforge.net
3904 S:      Maintained
3905 F:      drivers/edac/ie31200_edac.c
3906
3907 EDAC-MPC85XX
3908 M:      Johannes Thumshirn <morbidrsa@gmail.com>
3909 L:      linux-edac@vger.kernel.org
3910 W:      bluesmoke.sourceforge.net
3911 S:      Maintained
3912 F:      drivers/edac/mpc85xx_edac.[ch]
3913
3914 EDAC-PASEMI
3915 M:      Egor Martovetsky <egor@pasemi.com>
3916 L:      linux-edac@vger.kernel.org
3917 W:      bluesmoke.sourceforge.net
3918 S:      Maintained
3919 F:      drivers/edac/pasemi_edac.c
3920
3921 EDAC-R82600
3922 M:      Tim Small <tim@buttersideup.com>
3923 L:      linux-edac@vger.kernel.org
3924 W:      bluesmoke.sourceforge.net
3925 S:      Maintained
3926 F:      drivers/edac/r82600_edac.c
3927
3928 EDAC-SBRIDGE
3929 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3930 L:      linux-edac@vger.kernel.org
3931 W:      bluesmoke.sourceforge.net
3932 S:      Maintained
3933 F:      drivers/edac/sb_edac.c
3934
3935 EDAC-XGENE
3936 APPLIED MICRO (APM) X-GENE SOC EDAC
3937 M:     Loc Ho <lho@apm.com>
3938 S:     Supported
3939 F:     drivers/edac/xgene_edac.c
3940 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
3941
3942 EDIROL UA-101/UA-1000 DRIVER
3943 M:      Clemens Ladisch <clemens@ladisch.de>
3944 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3945 T:      git git://git.alsa-project.org/alsa-kernel.git
3946 S:      Maintained
3947 F:      sound/usb/misc/ua101.c
3948
3949 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3950 M:      Matt Fleming <matt.fleming@intel.com>
3951 L:      linux-efi@vger.kernel.org
3952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3953 S:      Maintained
3954 F:      Documentation/efi-stub.txt
3955 F:      arch/ia64/kernel/efi.c
3956 F:      arch/x86/boot/compressed/eboot.[ch]
3957 F:      arch/x86/include/asm/efi.h
3958 F:      arch/x86/platform/efi/*
3959 F:      drivers/firmware/efi/*
3960 F:      include/linux/efi*.h
3961
3962 EFI VARIABLE FILESYSTEM
3963 M:      Matthew Garrett <matthew.garrett@nebula.com>
3964 M:      Jeremy Kerr <jk@ozlabs.org>
3965 M:      Matt Fleming <matt.fleming@intel.com>
3966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3967 L:      linux-efi@vger.kernel.org
3968 S:      Maintained
3969 F:      fs/efivarfs/
3970
3971 EFIFB FRAMEBUFFER DRIVER
3972 L:      linux-fbdev@vger.kernel.org
3973 M:      Peter Jones <pjones@redhat.com>
3974 S:      Maintained
3975 F:      drivers/video/fbdev/efifb.c
3976
3977 EFS FILESYSTEM
3978 W:      http://aeschi.ch.eu.org/efs/
3979 S:      Orphan
3980 F:      fs/efs/
3981
3982 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3983 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3984 M:      Christoph Raisch <raisch@de.ibm.com>
3985 L:      linux-rdma@vger.kernel.org
3986 S:      Supported
3987 F:      drivers/infiniband/hw/ehca/
3988
3989 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3990 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3991 L:      netdev@vger.kernel.org
3992 S:      Maintained
3993 F:      drivers/net/ethernet/ibm/ehea/
3994
3995 EM28XX VIDEO4LINUX DRIVER
3996 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3997 L:      linux-media@vger.kernel.org
3998 W:      http://linuxtv.org
3999 T:      git git://linuxtv.org/media_tree.git
4000 S:      Maintained
4001 F:      drivers/media/usb/em28xx/
4002
4003 EMBEDDED LINUX
4004 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4005 M:      Matt Mackall <mpm@selenic.com>
4006 M:      David Woodhouse <dwmw2@infradead.org>
4007 L:      linux-embedded@vger.kernel.org
4008 S:      Maintained
4009
4010 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4011 M:      James Smart <james.smart@avagotech.com>
4012 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4013 L:      linux-scsi@vger.kernel.org
4014 W:      http://www.avagotech.com
4015 S:      Supported
4016 F:      drivers/scsi/lpfc/
4017
4018 ENE CB710 FLASH CARD READER DRIVER
4019 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4020 S:      Maintained
4021 F:      drivers/misc/cb710/
4022 F:      drivers/mmc/host/cb710-mmc.*
4023 F:      include/linux/cb710.h
4024
4025 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4026 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4027 S:      Maintained
4028 F:      drivers/media/rc/ene_ir.*
4029
4030 ENHANCED ERROR HANDLING (EEH)
4031 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4032 L:      linuxppc-dev@lists.ozlabs.org
4033 S:      Supported
4034 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4035 F:      arch/powerpc/kernel/eeh*.c
4036
4037 EPSON S1D13XXX FRAMEBUFFER DRIVER
4038 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4039 S:      Maintained
4040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4041 F:      drivers/video/fbdev/s1d13xxxfb.c
4042 F:      include/video/s1d13xxxfb.h
4043
4044 ET131X NETWORK DRIVER
4045 M:      Mark Einon <mark.einon@gmail.com>
4046 S:      Odd Fixes
4047 F:      drivers/net/ethernet/agere/
4048
4049 ETHERNET BRIDGE
4050 M:      Stephen Hemminger <stephen@networkplumber.org>
4051 L:      bridge@lists.linux-foundation.org
4052 L:      netdev@vger.kernel.org
4053 W:      http://www.linuxfoundation.org/en/Net:Bridge
4054 S:      Maintained
4055 F:      include/linux/netfilter_bridge/
4056 F:      net/bridge/
4057
4058 ETHERNET PHY LIBRARY
4059 M:      Florian Fainelli <f.fainelli@gmail.com>
4060 L:      netdev@vger.kernel.org
4061 S:      Maintained
4062 F:      include/linux/phy.h
4063 F:      include/linux/phy_fixed.h
4064 F:      drivers/net/phy/
4065 F:      Documentation/networking/phy.txt
4066 F:      drivers/of/of_mdio.c
4067 F:      drivers/of/of_net.c
4068
4069 EXT2 FILE SYSTEM
4070 M:      Jan Kara <jack@suse.com>
4071 L:      linux-ext4@vger.kernel.org
4072 S:      Maintained
4073 F:      Documentation/filesystems/ext2.txt
4074 F:      fs/ext2/
4075 F:      include/linux/ext2*
4076
4077 EXT3 FILE SYSTEM
4078 M:      Jan Kara <jack@suse.com>
4079 M:      Andrew Morton <akpm@linux-foundation.org>
4080 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4081 L:      linux-ext4@vger.kernel.org
4082 S:      Maintained
4083 F:      Documentation/filesystems/ext3.txt
4084 F:      fs/ext3/
4085
4086 EXT4 FILE SYSTEM
4087 M:      "Theodore Ts'o" <tytso@mit.edu>
4088 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4089 L:      linux-ext4@vger.kernel.org
4090 W:      http://ext4.wiki.kernel.org
4091 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4092 S:      Maintained
4093 F:      Documentation/filesystems/ext4.txt
4094 F:      fs/ext4/
4095
4096 Extended Verification Module (EVM)
4097 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4098 L:      linux-ima-devel@lists.sourceforge.net
4099 L:      linux-security-module@vger.kernel.org
4100 S:      Supported
4101 F:      security/integrity/evm/
4102
4103 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4104 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4105 M:      Chanwoo Choi <cw00.choi@samsung.com>
4106 L:      linux-kernel@vger.kernel.org
4107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4108 S:      Maintained
4109 F:      drivers/extcon/
4110 F:      Documentation/extcon/
4111
4112 EXYNOS DP DRIVER
4113 M:      Jingoo Han <jingoohan1@gmail.com>
4114 L:      dri-devel@lists.freedesktop.org
4115 S:      Maintained
4116 F:      drivers/gpu/drm/exynos/exynos_dp*
4117
4118 EXYNOS MIPI DISPLAY DRIVERS
4119 M:      Inki Dae <inki.dae@samsung.com>
4120 M:      Donghwa Lee <dh09.lee@samsung.com>
4121 M:      Kyungmin Park <kyungmin.park@samsung.com>
4122 L:      linux-fbdev@vger.kernel.org
4123 S:      Maintained
4124 F:      drivers/video/fbdev/exynos/exynos_mipi*
4125 F:      include/video/exynos_mipi*
4126
4127 F71805F HARDWARE MONITORING DRIVER
4128 M:      Jean Delvare <jdelvare@suse.com>
4129 L:      lm-sensors@lm-sensors.org
4130 S:      Maintained
4131 F:      Documentation/hwmon/f71805f
4132 F:      drivers/hwmon/f71805f.c
4133
4134 FC0011 TUNER DRIVER
4135 M:      Michael Buesch <m@bues.ch>
4136 L:      linux-media@vger.kernel.org
4137 S:      Maintained
4138 F:      drivers/media/tuners/fc0011.h
4139 F:      drivers/media/tuners/fc0011.c
4140
4141 FC2580 MEDIA DRIVER
4142 M:      Antti Palosaari <crope@iki.fi>
4143 L:      linux-media@vger.kernel.org
4144 W:      http://linuxtv.org/
4145 W:      http://palosaari.fi/linux/
4146 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4147 T:      git git://linuxtv.org/anttip/media_tree.git
4148 S:      Maintained
4149 F:      drivers/media/tuners/fc2580*
4150
4151 FANOTIFY
4152 M:      Eric Paris <eparis@redhat.com>
4153 S:      Maintained
4154 F:      fs/notify/fanotify/
4155 F:      include/linux/fanotify.h
4156 F:      include/uapi/linux/fanotify.h
4157
4158 FARSYNC SYNCHRONOUS DRIVER
4159 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4160 W:      http://www.farsite.co.uk/
4161 S:      Supported
4162 F:      drivers/net/wan/farsync.*
4163
4164 FAULT INJECTION SUPPORT
4165 M:      Akinobu Mita <akinobu.mita@gmail.com>
4166 S:      Supported
4167 F:      Documentation/fault-injection/
4168 F:      lib/fault-inject.c
4169
4170 FBTFT Framebuffer drivers
4171 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4172 M:      Noralf Trønnes <noralf@tronnes.org>
4173 S:      Maintained
4174 F:      drivers/staging/fbtft/
4175
4176 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4177 M:      Vasu Dev <vasu.dev@intel.com>
4178 L:      fcoe-devel@open-fcoe.org
4179 W:      www.Open-FCoE.org
4180 S:      Supported
4181 F:      drivers/scsi/libfc/
4182 F:      drivers/scsi/fcoe/
4183 F:      include/scsi/fc/
4184 F:      include/scsi/libfc.h
4185 F:      include/scsi/libfcoe.h
4186 F:      include/uapi/scsi/fc/
4187
4188 FILE LOCKING (flock() and fcntl()/lockf())
4189 M:      Jeff Layton <jlayton@poochiereds.net>
4190 M:      "J. Bruce Fields" <bfields@fieldses.org>
4191 L:      linux-fsdevel@vger.kernel.org
4192 S:      Maintained
4193 F:      include/linux/fcntl.h
4194 F:      include/linux/fs.h
4195 F:      include/uapi/linux/fcntl.h
4196 F:      include/uapi/linux/fs.h
4197 F:      fs/fcntl.c
4198 F:      fs/locks.c
4199
4200 FILESYSTEMS (VFS and infrastructure)
4201 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4202 L:      linux-fsdevel@vger.kernel.org
4203 S:      Maintained
4204 F:      fs/*
4205
4206 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4207 M:      Riku Voipio <riku.voipio@iki.fi>
4208 L:      lm-sensors@lm-sensors.org
4209 S:      Maintained
4210 F:      drivers/hwmon/f75375s.c
4211 F:      include/linux/f75375s.h
4212
4213 FIREWIRE AUDIO DRIVERS
4214 M:      Clemens Ladisch <clemens@ladisch.de>
4215 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4216 T:      git git://git.alsa-project.org/alsa-kernel.git
4217 S:      Maintained
4218 F:      sound/firewire/
4219
4220 FIREWIRE MEDIA DRIVERS (firedtv)
4221 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4222 L:      linux-media@vger.kernel.org
4223 L:      linux1394-devel@lists.sourceforge.net
4224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4225 S:      Maintained
4226 F:      drivers/media/firewire/
4227
4228 FIREWIRE SBP-2 TARGET
4229 M:      Chris Boot <bootc@bootc.net>
4230 L:      linux-scsi@vger.kernel.org
4231 L:      target-devel@vger.kernel.org
4232 L:      linux1394-devel@lists.sourceforge.net
4233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4234 S:      Maintained
4235 F:      drivers/target/sbp/
4236
4237 FIREWIRE SUBSYSTEM
4238 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4239 L:      linux1394-devel@lists.sourceforge.net
4240 W:      http://ieee1394.wiki.kernel.org/
4241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4242 S:      Maintained
4243 F:      drivers/firewire/
4244 F:      include/linux/firewire.h
4245 F:      include/uapi/linux/firewire*.h
4246 F:      tools/firewire/
4247
4248 FIRMWARE LOADER (request_firmware)
4249 M:      Ming Lei <ming.lei@canonical.com>
4250 L:      linux-kernel@vger.kernel.org
4251 S:      Maintained
4252 F:      Documentation/firmware_class/
4253 F:      drivers/base/firmware*.c
4254 F:      include/linux/firmware.h
4255
4256 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4257 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4258 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4259 S:      Maintained
4260 F:      drivers/block/rsxx/
4261
4262 FLOPPY DRIVER
4263 M:      Jiri Kosina <jkosina@suse.com>
4264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4265 S:      Odd fixes
4266 F:      drivers/block/floppy.c
4267
4268 FMC SUBSYSTEM
4269 M:      Alessandro Rubini <rubini@gnudd.com>
4270 W:      http://www.ohwr.org/projects/fmc-bus
4271 S:      Supported
4272 F:      drivers/fmc/
4273 F:      include/linux/fmc*.h
4274 F:      include/linux/ipmi-fru.h
4275 K:      fmc_d.*register
4276
4277 FPU EMULATOR
4278 M:      Bill Metzenthen <billm@melbpc.org.au>
4279 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4280 S:      Maintained
4281 F:      arch/x86/math-emu/
4282
4283 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4284 L:      netdev@vger.kernel.org
4285 S:      Orphan
4286 F:      drivers/net/wan/dlci.c
4287 F:      drivers/net/wan/sdla.c
4288
4289 FRAMEBUFFER LAYER
4290 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4291 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4292 L:      linux-fbdev@vger.kernel.org
4293 W:      http://linux-fbdev.sourceforge.net/
4294 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4296 S:      Maintained
4297 F:      Documentation/fb/
4298 F:      Documentation/devicetree/bindings/fb/
4299 F:      drivers/video/
4300 F:      include/video/
4301 F:      include/linux/fb.h
4302 F:      include/uapi/video/
4303 F:      include/uapi/linux/fb.h
4304
4305 FREESCALE DIU FRAMEBUFFER DRIVER
4306 M:      Timur Tabi <timur@tabi.org>
4307 L:      linux-fbdev@vger.kernel.org
4308 S:      Maintained
4309 F:      drivers/video/fbdev/fsl-diu-fb.*
4310
4311 FREESCALE DMA DRIVER
4312 M:      Li Yang <leoli@freescale.com>
4313 M:      Zhang Wei <zw@zh-kernel.org>
4314 L:      linuxppc-dev@lists.ozlabs.org
4315 S:      Maintained
4316 F:      drivers/dma/fsldma.*
4317
4318 FREESCALE I2C CPM DRIVER
4319 M:      Jochen Friedrich <jochen@scram.de>
4320 L:      linuxppc-dev@lists.ozlabs.org
4321 L:      linux-i2c@vger.kernel.org
4322 S:      Maintained
4323 F:      drivers/i2c/busses/i2c-cpm.c
4324
4325 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4326 M:      Sascha Hauer <kernel@pengutronix.de>
4327 L:      linux-fbdev@vger.kernel.org
4328 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4329 S:      Maintained
4330 F:      include/linux/platform_data/video-imxfb.h
4331 F:      drivers/video/fbdev/imxfb.c
4332
4333 FREESCALE QUAD SPI DRIVER
4334 M:      Han Xu <han.xu@freescale.com>
4335 L:      linux-mtd@lists.infradead.org
4336 S:      Maintained
4337 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4338
4339 FREESCALE SOC FS_ENET DRIVER
4340 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4341 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4342 L:      linuxppc-dev@lists.ozlabs.org
4343 L:      netdev@vger.kernel.org
4344 S:      Maintained
4345 F:      drivers/net/ethernet/freescale/fs_enet/
4346 F:      include/linux/fs_enet_pd.h
4347
4348 FREESCALE QUICC ENGINE LIBRARY
4349 L:      linuxppc-dev@lists.ozlabs.org
4350 S:      Orphan
4351 F:      arch/powerpc/sysdev/qe_lib/
4352 F:      arch/powerpc/include/asm/*qe.h
4353
4354 FREESCALE USB PERIPHERAL DRIVERS
4355 M:      Li Yang <leoli@freescale.com>
4356 L:      linux-usb@vger.kernel.org
4357 L:      linuxppc-dev@lists.ozlabs.org
4358 S:      Maintained
4359 F:      drivers/usb/gadget/udc/fsl*
4360
4361 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4362 M:      Li Yang <leoli@freescale.com>
4363 L:      netdev@vger.kernel.org
4364 L:      linuxppc-dev@lists.ozlabs.org
4365 S:      Maintained
4366 F:      drivers/net/ethernet/freescale/ucc_geth*
4367
4368 FREESCALE QUICC ENGINE UCC UART DRIVER
4369 M:      Timur Tabi <timur@tabi.org>
4370 L:      linuxppc-dev@lists.ozlabs.org
4371 S:      Maintained
4372 F:      drivers/tty/serial/ucc_uart.c
4373
4374 FREESCALE SOC SOUND DRIVERS
4375 M:      Timur Tabi <timur@tabi.org>
4376 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4377 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4378 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4379 L:      linuxppc-dev@lists.ozlabs.org
4380 S:      Maintained
4381 F:      sound/soc/fsl/fsl*
4382 F:      sound/soc/fsl/imx*
4383 F:      sound/soc/fsl/mpc8610_hpcd.c
4384
4385 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4386 M:      "J. German Rivera" <German.Rivera@freescale.com>
4387 L:      linux-kernel@vger.kernel.org
4388 S:      Maintained
4389 F:      drivers/staging/fsl-mc/
4390
4391 FREEVXFS FILESYSTEM
4392 M:      Christoph Hellwig <hch@infradead.org>
4393 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4394 S:      Maintained
4395 F:      fs/freevxfs/
4396
4397 FREEZER
4398 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4399 M:      Pavel Machek <pavel@ucw.cz>
4400 L:      linux-pm@vger.kernel.org
4401 S:      Supported
4402 F:      Documentation/power/freezing-of-tasks.txt
4403 F:      include/linux/freezer.h
4404 F:      kernel/freezer.c
4405
4406 FRONTSWAP API
4407 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4408 L:      linux-kernel@vger.kernel.org
4409 S:      Maintained
4410 F:      mm/frontswap.c
4411 F:      include/linux/frontswap.h
4412
4413 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4414 M:      David Howells <dhowells@redhat.com>
4415 L:      linux-cachefs@redhat.com
4416 S:      Supported
4417 F:      Documentation/filesystems/caching/
4418 F:      fs/fscache/
4419 F:      include/linux/fscache*.h
4420
4421 F2FS FILE SYSTEM
4422 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4423 M:      Changman Lee <cm224.lee@samsung.com>
4424 L:      linux-f2fs-devel@lists.sourceforge.net
4425 W:      http://en.wikipedia.org/wiki/F2FS
4426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4427 S:      Maintained
4428 F:      Documentation/filesystems/f2fs.txt
4429 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4430 F:      fs/f2fs/
4431 F:      include/linux/f2fs_fs.h
4432
4433 FUJITSU FR-V (FRV) PORT
4434 M:      David Howells <dhowells@redhat.com>
4435 S:      Maintained
4436 F:      arch/frv/
4437
4438 FUJITSU LAPTOP EXTRAS
4439 M:      Jonathan Woithe <jwoithe@just42.net>
4440 L:      platform-driver-x86@vger.kernel.org
4441 S:      Maintained
4442 F:      drivers/platform/x86/fujitsu-laptop.c
4443
4444 FUJITSU M-5MO LS CAMERA ISP DRIVER
4445 M:      Kyungmin Park <kyungmin.park@samsung.com>
4446 M:      Heungjun Kim <riverful.kim@samsung.com>
4447 L:      linux-media@vger.kernel.org
4448 S:      Maintained
4449 F:      drivers/media/i2c/m5mols/
4450 F:      include/media/m5mols.h
4451
4452 FUJITSU TABLET EXTRAS
4453 M:      Robert Gerlach <khnz@gmx.de>
4454 L:      platform-driver-x86@vger.kernel.org
4455 S:      Maintained
4456 F:      drivers/platform/x86/fujitsu-tablet.c
4457
4458 FUSE: FILESYSTEM IN USERSPACE
4459 M:      Miklos Szeredi <miklos@szeredi.hu>
4460 L:      fuse-devel@lists.sourceforge.net
4461 W:      http://fuse.sourceforge.net/
4462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4463 S:      Maintained
4464 F:      fs/fuse/
4465 F:      include/uapi/linux/fuse.h
4466 F:      Documentation/filesystems/fuse.txt
4467
4468 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4469 M:      Rik Faith <faith@cs.unc.edu>
4470 L:      linux-scsi@vger.kernel.org
4471 S:      Odd Fixes (e.g., new signatures)
4472 F:      drivers/scsi/fdomain.*
4473
4474 GCOV BASED KERNEL PROFILING
4475 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4476 S:      Maintained
4477 F:      kernel/gcov/
4478 F:      Documentation/gcov.txt
4479
4480 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4481 M:      Achim Leubner <achim_leubner@adaptec.com>
4482 L:      linux-scsi@vger.kernel.org
4483 W:      http://www.icp-vortex.com/
4484 S:      Supported
4485 F:      drivers/scsi/gdt*
4486
4487 GDB KERNEL DEBUGGING HELPER SCRIPTS
4488 M:      Jan Kiszka <jan.kiszka@siemens.com>
4489 S:      Supported
4490 F:      scripts/gdb/
4491
4492 GEMTEK FM RADIO RECEIVER DRIVER
4493 M:      Hans Verkuil <hverkuil@xs4all.nl>
4494 L:      linux-media@vger.kernel.org
4495 T:      git git://linuxtv.org/media_tree.git
4496 W:      http://linuxtv.org
4497 S:      Maintained
4498 F:      drivers/media/radio/radio-gemtek*
4499
4500 GENERIC GPIO I2C DRIVER
4501 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4502 S:      Supported
4503 F:      drivers/i2c/busses/i2c-gpio.c
4504 F:      include/linux/i2c-gpio.h
4505
4506 GENERIC GPIO I2C MULTIPLEXER DRIVER
4507 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4508 L:      linux-i2c@vger.kernel.org
4509 S:      Supported
4510 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4511 F:      include/linux/i2c-mux-gpio.h
4512 F:      Documentation/i2c/muxes/i2c-mux-gpio
4513
4514 GENERIC HDLC (WAN) DRIVERS
4515 M:      Krzysztof Halasa <khc@pm.waw.pl>
4516 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4517 S:      Maintained
4518 F:      drivers/net/wan/c101.c
4519 F:      drivers/net/wan/hd6457*
4520 F:      drivers/net/wan/hdlc*
4521 F:      drivers/net/wan/n2.c
4522 F:      drivers/net/wan/pc300too.c
4523 F:      drivers/net/wan/pci200syn.c
4524 F:      drivers/net/wan/wanxl*
4525
4526 GENERIC INCLUDE/ASM HEADER FILES
4527 M:      Arnd Bergmann <arnd@arndb.de>
4528 L:      linux-arch@vger.kernel.org
4529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4530 S:      Maintained
4531 F:      include/asm-generic/
4532 F:      include/uapi/asm-generic/
4533
4534 GENERIC PHY FRAMEWORK
4535 M:      Kishon Vijay Abraham I <kishon@ti.com>
4536 L:      linux-kernel@vger.kernel.org
4537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4538 S:      Supported
4539 F:      drivers/phy/
4540 F:      include/linux/phy/
4541
4542 GENERIC PM DOMAINS
4543 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4544 M:      Kevin Hilman <khilman@kernel.org>
4545 M:      Ulf Hansson <ulf.hansson@linaro.org>
4546 L:      linux-pm@vger.kernel.org
4547 S:      Supported
4548 F:      drivers/base/power/domain*.c
4549 F:      include/linux/pm_domain.h
4550
4551 GENERIC UIO DRIVER FOR PCI DEVICES
4552 M:      "Michael S. Tsirkin" <mst@redhat.com>
4553 L:      kvm@vger.kernel.org
4554 S:      Supported
4555 F:      drivers/uio/uio_pci_generic.c
4556
4557 GET_MAINTAINER SCRIPT
4558 M:      Joe Perches <joe@perches.com>
4559 S:      Maintained
4560 F:      scripts/get_maintainer.pl
4561
4562 GFS2 FILE SYSTEM
4563 M:      Steven Whitehouse <swhiteho@redhat.com>
4564 M:      Bob Peterson <rpeterso@redhat.com>
4565 L:      cluster-devel@redhat.com
4566 W:      http://sources.redhat.com/cluster/
4567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4568 S:      Supported
4569 F:      Documentation/filesystems/gfs2*.txt
4570 F:      fs/gfs2/
4571 F:      include/uapi/linux/gfs2_ondisk.h
4572
4573 GIGASET ISDN DRIVERS
4574 M:      Paul Bolle <pebolle@tiscali.nl>
4575 L:      gigaset307x-common@lists.sourceforge.net
4576 W:      http://gigaset307x.sourceforge.net/
4577 S:      Odd Fixes
4578 F:      Documentation/isdn/README.gigaset
4579 F:      drivers/isdn/gigaset/
4580 F:      include/uapi/linux/gigaset_dev.h
4581
4582 GO7007 MPEG CODEC
4583 M:      Hans Verkuil <hans.verkuil@cisco.com>
4584 L:      linux-media@vger.kernel.org
4585 S:      Maintained
4586 F:      drivers/media/usb/go7007/
4587
4588 GOODIX TOUCHSCREEN
4589 M:      Bastien Nocera <hadess@hadess.net>
4590 L:      linux-input@vger.kernel.org
4591 S:      Maintained
4592 F:      drivers/input/touchscreen/goodix.c
4593
4594 GPIO SUBSYSTEM
4595 M:      Linus Walleij <linus.walleij@linaro.org>
4596 M:      Alexandre Courbot <gnurou@gmail.com>
4597 L:      linux-gpio@vger.kernel.org
4598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4599 S:      Maintained
4600 F:      Documentation/gpio/
4601 F:      drivers/gpio/
4602 F:      include/linux/gpio/
4603 F:      include/linux/gpio.h
4604 F:      include/asm-generic/gpio.h
4605
4606 GRE DEMULTIPLEXER DRIVER
4607 M:      Dmitry Kozlov <xeb@mail.ru>
4608 L:      netdev@vger.kernel.org
4609 S:      Maintained
4610 F:      net/ipv4/gre_demux.c
4611 F:      net/ipv4/gre_offload.c
4612 F:      include/net/gre.h
4613
4614 GRETH 10/100/1G Ethernet MAC device driver
4615 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4616 L:      netdev@vger.kernel.org
4617 S:      Maintained
4618 F:      drivers/net/ethernet/aeroflex/
4619
4620 GSPCA FINEPIX SUBDRIVER
4621 M:      Frank Zago <frank@zago.net>
4622 L:      linux-media@vger.kernel.org
4623 T:      git git://linuxtv.org/media_tree.git
4624 S:      Maintained
4625 F:      drivers/media/usb/gspca/finepix.c
4626
4627 GSPCA GL860 SUBDRIVER
4628 M:      Olivier Lorin <o.lorin@laposte.net>
4629 L:      linux-media@vger.kernel.org
4630 T:      git git://linuxtv.org/media_tree.git
4631 S:      Maintained
4632 F:      drivers/media/usb/gspca/gl860/
4633
4634 GSPCA M5602 SUBDRIVER
4635 M:      Erik Andren <erik.andren@gmail.com>
4636 L:      linux-media@vger.kernel.org
4637 T:      git git://linuxtv.org/media_tree.git
4638 S:      Maintained
4639 F:      drivers/media/usb/gspca/m5602/
4640
4641 GSPCA PAC207 SONIXB SUBDRIVER
4642 M:      Hans de Goede <hdegoede@redhat.com>
4643 L:      linux-media@vger.kernel.org
4644 T:      git git://linuxtv.org/media_tree.git
4645 S:      Maintained
4646 F:      drivers/media/usb/gspca/pac207.c
4647
4648 GSPCA SN9C20X SUBDRIVER
4649 M:      Brian Johnson <brijohn@gmail.com>
4650 L:      linux-media@vger.kernel.org
4651 T:      git git://linuxtv.org/media_tree.git
4652 S:      Maintained
4653 F:      drivers/media/usb/gspca/sn9c20x.c
4654
4655 GSPCA T613 SUBDRIVER
4656 M:      Leandro Costantino <lcostantino@gmail.com>
4657 L:      linux-media@vger.kernel.org
4658 T:      git git://linuxtv.org/media_tree.git
4659 S:      Maintained
4660 F:      drivers/media/usb/gspca/t613.c
4661
4662 GSPCA USB WEBCAM DRIVER
4663 M:      Hans de Goede <hdegoede@redhat.com>
4664 L:      linux-media@vger.kernel.org
4665 T:      git git://linuxtv.org/media_tree.git
4666 S:      Maintained
4667 F:      drivers/media/usb/gspca/
4668
4669 GUID PARTITION TABLE (GPT)
4670 M:      Davidlohr Bueso <dave@stgolabs.net>
4671 L:      linux-efi@vger.kernel.org
4672 S:      Maintained
4673 F:      block/partitions/efi.*
4674
4675 STK1160 USB VIDEO CAPTURE DRIVER
4676 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4677 L:      linux-media@vger.kernel.org
4678 T:      git git://linuxtv.org/media_tree.git
4679 S:      Maintained
4680 F:      drivers/media/usb/stk1160/
4681
4682 H8/300 ARCHITECTURE
4683 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4684 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4685 W:      http://uclinux-h8.sourceforge.jp
4686 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4687 S:      Maintained
4688 F:      arch/h8300/
4689 F:      drivers/clocksource/h8300_*.c
4690 F:      drivers/clk/h8300/
4691 F:      drivers/irqchip/irq-renesas-h8*.c
4692
4693 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4694 M:      Frank Seidel <frank@f-seidel.de>
4695 L:      platform-driver-x86@vger.kernel.org
4696 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4697 S:      Maintained
4698 F:      drivers/platform/x86/hdaps.c
4699
4700 HDPVR USB VIDEO ENCODER DRIVER
4701 M:      Hans Verkuil <hverkuil@xs4all.nl>
4702 L:      linux-media@vger.kernel.org
4703 T:      git git://linuxtv.org/media_tree.git
4704 W:      http://linuxtv.org
4705 S:      Odd Fixes
4706 F:      drivers/media/usb/hdpvr/
4707
4708 HWPOISON MEMORY FAILURE HANDLING
4709 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4710 L:      linux-mm@kvack.org
4711 S:      Maintained
4712 F:      mm/memory-failure.c
4713 F:      mm/hwpoison-inject.c
4714
4715 HYPERVISOR VIRTUAL CONSOLE DRIVER
4716 L:      linuxppc-dev@lists.ozlabs.org
4717 S:      Odd Fixes
4718 F:      drivers/tty/hvc/
4719
4720 HACKRF MEDIA DRIVER
4721 M:      Antti Palosaari <crope@iki.fi>
4722 L:      linux-media@vger.kernel.org
4723 W:      http://linuxtv.org/
4724 W:      http://palosaari.fi/linux/
4725 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4726 T:      git git://linuxtv.org/anttip/media_tree.git
4727 S:      Maintained
4728 F:      drivers/media/usb/hackrf/
4729
4730 HARDWARE MONITORING
4731 M:      Jean Delvare <jdelvare@suse.com>
4732 M:      Guenter Roeck <linux@roeck-us.net>
4733 L:      lm-sensors@lm-sensors.org
4734 W:      http://www.lm-sensors.org/
4735 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4737 S:      Maintained
4738 F:      Documentation/hwmon/
4739 F:      drivers/hwmon/
4740 F:      include/linux/hwmon*.h
4741
4742 HARDWARE RANDOM NUMBER GENERATOR CORE
4743 M:      Matt Mackall <mpm@selenic.com>
4744 M:      Herbert Xu <herbert@gondor.apana.org.au>
4745 L:      linux-crypto@vger.kernel.org
4746 S:      Odd fixes
4747 F:      Documentation/hw_random.txt
4748 F:      drivers/char/hw_random/
4749 F:      include/linux/hw_random.h
4750
4751 HARDWARE SPINLOCK CORE
4752 M:      Ohad Ben-Cohen <ohad@wizery.com>
4753 S:      Maintained
4754 F:      Documentation/hwspinlock.txt
4755 F:      drivers/hwspinlock/hwspinlock_*
4756 F:      include/linux/hwspinlock.h
4757
4758 HARMONY SOUND DRIVER
4759 L:      linux-parisc@vger.kernel.org
4760 S:      Maintained
4761 F:      sound/parisc/harmony.*
4762
4763 HD29L2 MEDIA DRIVER
4764 M:      Antti Palosaari <crope@iki.fi>
4765 L:      linux-media@vger.kernel.org
4766 W:      http://linuxtv.org/
4767 W:      http://palosaari.fi/linux/
4768 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4769 T:      git git://linuxtv.org/anttip/media_tree.git
4770 S:      Maintained
4771 F:      drivers/media/dvb-frontends/hd29l2*
4772
4773 HEWLETT-PACKARD SMART2 RAID DRIVER
4774 L:      iss_storagedev@hp.com
4775 S:      Orphan
4776 F:      Documentation/blockdev/cpqarray.txt
4777 F:      drivers/block/cpqarray.*
4778
4779 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4780 M:      Don Brace <don.brace@pmcs.com>
4781 L:      iss_storagedev@hp.com
4782 L:      storagedev@pmcs.com
4783 L:      linux-scsi@vger.kernel.org
4784 S:      Supported
4785 F:      Documentation/scsi/hpsa.txt
4786 F:      drivers/scsi/hpsa*.[ch]
4787 F:      include/linux/cciss*.h
4788 F:      include/uapi/linux/cciss*.h
4789
4790 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4791 M:      Don Brace <don.brace@pmcs.com>
4792 L:      iss_storagedev@hp.com
4793 L:      storagedev@pmcs.com
4794 L:      linux-scsi@vger.kernel.org
4795 S:      Supported
4796 F:      Documentation/blockdev/cciss.txt
4797 F:      drivers/block/cciss*
4798 F:      include/linux/cciss_ioctl.h
4799 F:      include/uapi/linux/cciss_ioctl.h
4800
4801 HFS FILESYSTEM
4802 L:      linux-fsdevel@vger.kernel.org
4803 S:      Orphan
4804 F:      Documentation/filesystems/hfs.txt
4805 F:      fs/hfs/
4806
4807 HFSPLUS FILESYSTEM
4808 L:      linux-fsdevel@vger.kernel.org
4809 S:      Orphan
4810 F:      Documentation/filesystems/hfsplus.txt
4811 F:      fs/hfsplus/
4812
4813 HGA FRAMEBUFFER DRIVER
4814 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4815 L:      linux-nvidia@lists.surfsouth.com
4816 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4817 S:      Maintained
4818 F:      drivers/video/fbdev/hgafb.c
4819
4820 HIBERNATION (aka Software Suspend, aka swsusp)
4821 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4822 M:      Pavel Machek <pavel@ucw.cz>
4823 L:      linux-pm@vger.kernel.org
4824 S:      Supported
4825 F:      arch/x86/power/
4826 F:      drivers/base/power/
4827 F:      kernel/power/
4828 F:      include/linux/suspend.h
4829 F:      include/linux/freezer.h
4830 F:      include/linux/pm.h
4831 F:      arch/*/include/asm/suspend*.h
4832
4833 HID CORE LAYER
4834 M:      Jiri Kosina <jkosina@suse.com>
4835 L:      linux-input@vger.kernel.org
4836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4837 S:      Maintained
4838 F:      drivers/hid/
4839 F:      include/linux/hid*
4840 F:      include/uapi/linux/hid*
4841
4842 HID SENSOR HUB DRIVERS
4843 M:      Jiri Kosina <jkosina@suse.com>
4844 M:      Jonathan Cameron <jic23@kernel.org>
4845 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4846 L:      linux-input@vger.kernel.org
4847 L:      linux-iio@vger.kernel.org
4848 S:      Maintained
4849 F:      Documentation/hid/hid-sensor*
4850 F:      drivers/hid/hid-sensor-*
4851 F:      drivers/iio/*/hid-*
4852 F:      include/linux/hid-sensor-*
4853
4854 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4855 M:      Thomas Gleixner <tglx@linutronix.de>
4856 L:      linux-kernel@vger.kernel.org
4857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4858 S:      Maintained
4859 F:      Documentation/timers/
4860 F:      kernel/time/hrtimer.c
4861 F:      kernel/time/clockevents.c
4862 F:      kernel/time/tick*.*
4863 F:      kernel/time/timer_*.c
4864 F:      include/linux/clockchips.h
4865 F:      include/linux/hrtimer.h
4866
4867 HIGH-SPEED SCC DRIVER FOR AX.25
4868 L:      linux-hams@vger.kernel.org
4869 S:      Orphan
4870 F:      drivers/net/hamradio/dmascc.c
4871 F:      drivers/net/hamradio/scc.c
4872
4873 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4874 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4875 W:      http://www.highpoint-tech.com
4876 S:      Supported
4877 F:      Documentation/scsi/hptiop.txt
4878 F:      drivers/scsi/hptiop.c
4879
4880 HIPPI
4881 M:      Jes Sorensen <jes@trained-monkey.org>
4882 L:      linux-hippi@sunsite.dk
4883 S:      Maintained
4884 F:      include/linux/hippidevice.h
4885 F:      include/uapi/linux/if_hippi.h
4886 F:      net/802/hippi.c
4887 F:      drivers/net/hippi/
4888
4889 HOST AP DRIVER
4890 M:      Jouni Malinen <j@w1.fi>
4891 L:      hostap@shmoo.com (subscribers-only)
4892 L:      linux-wireless@vger.kernel.org
4893 W:      http://hostap.epitest.fi/
4894 S:      Maintained
4895 F:      drivers/net/wireless/hostap/
4896
4897 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4898 L:      platform-driver-x86@vger.kernel.org
4899 S:      Orphan
4900 F:      drivers/platform/x86/tc1100-wmi.c
4901
4902 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4903 M:      Jaroslav Kysela <perex@perex.cz>
4904 S:      Maintained
4905 F:      drivers/net/ethernet/hp/hp100.*
4906
4907 HPET:   High Precision Event Timers driver
4908 M:      Clemens Ladisch <clemens@ladisch.de>
4909 S:      Maintained
4910 F:      Documentation/timers/hpet.txt
4911 F:      drivers/char/hpet.c
4912 F:      include/linux/hpet.h
4913 F:      include/uapi/linux/hpet.h
4914
4915 HPET:   x86
4916 S:      Orphan
4917 F:      arch/x86/kernel/hpet.c
4918 F:      arch/x86/include/asm/hpet.h
4919
4920 HPFS FILESYSTEM
4921 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4922 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4923 S:      Maintained
4924 F:      fs/hpfs/
4925
4926 HSI SUBSYSTEM
4927 M:      Sebastian Reichel <sre@kernel.org>
4928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4929 S:      Maintained
4930 F:      Documentation/ABI/testing/sysfs-bus-hsi
4931 F:      Documentation/hsi.txt
4932 F:      drivers/hsi/
4933 F:      include/linux/hsi/
4934 F:      include/uapi/linux/hsi/
4935
4936 HSO 3G MODEM DRIVER
4937 M:      Jan Dumon <j.dumon@option.com>
4938 W:      http://www.pharscape.org
4939 S:      Maintained
4940 F:      drivers/net/usb/hso.c
4941
4942 HSR NETWORK PROTOCOL
4943 M:      Arvid Brodin <arvid.brodin@alten.se>
4944 L:      netdev@vger.kernel.org
4945 S:      Maintained
4946 F:      net/hsr/
4947
4948 HTCPEN TOUCHSCREEN DRIVER
4949 M:      Pau Oliva Fora <pof@eslack.org>
4950 L:      linux-input@vger.kernel.org
4951 S:      Maintained
4952 F:      drivers/input/touchscreen/htcpen.c
4953
4954 HUGETLB FILESYSTEM
4955 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
4956 S:      Maintained
4957 F:      fs/hugetlbfs/
4958
4959 Hyper-V CORE AND DRIVERS
4960 M:      "K. Y. Srinivasan" <kys@microsoft.com>
4961 M:      Haiyang Zhang <haiyangz@microsoft.com>
4962 L:      devel@linuxdriverproject.org
4963 S:      Maintained
4964 F:      arch/x86/include/asm/mshyperv.h
4965 F:      arch/x86/include/uapi/asm/hyperv.h
4966 F:      arch/x86/kernel/cpu/mshyperv.c
4967 F:      drivers/hid/hid-hyperv.c
4968 F:      drivers/hv/
4969 F:      drivers/input/serio/hyperv-keyboard.c
4970 F:      drivers/net/hyperv/
4971 F:      drivers/scsi/storvsc_drv.c
4972 F:      drivers/video/fbdev/hyperv_fb.c
4973 F:      include/linux/hyperv.h
4974 F:      tools/hv/
4975
4976 I2C OVER PARALLEL PORT
4977 M:      Jean Delvare <jdelvare@suse.com>
4978 L:      linux-i2c@vger.kernel.org
4979 S:      Maintained
4980 F:      Documentation/i2c/busses/i2c-parport
4981 F:      Documentation/i2c/busses/i2c-parport-light
4982 F:      drivers/i2c/busses/i2c-parport.c
4983 F:      drivers/i2c/busses/i2c-parport-light.c
4984
4985 I2C/SMBUS CONTROLLER DRIVERS FOR PC
4986 M:      Jean Delvare <jdelvare@suse.com>
4987 L:      linux-i2c@vger.kernel.org
4988 S:      Maintained
4989 F:      Documentation/i2c/busses/i2c-ali1535
4990 F:      Documentation/i2c/busses/i2c-ali1563
4991 F:      Documentation/i2c/busses/i2c-ali15x3
4992 F:      Documentation/i2c/busses/i2c-amd756
4993 F:      Documentation/i2c/busses/i2c-amd8111
4994 F:      Documentation/i2c/busses/i2c-i801
4995 F:      Documentation/i2c/busses/i2c-nforce2
4996 F:      Documentation/i2c/busses/i2c-piix4
4997 F:      Documentation/i2c/busses/i2c-sis5595
4998 F:      Documentation/i2c/busses/i2c-sis630
4999 F:      Documentation/i2c/busses/i2c-sis96x
5000 F:      Documentation/i2c/busses/i2c-via
5001 F:      Documentation/i2c/busses/i2c-viapro
5002 F:      drivers/i2c/busses/i2c-ali1535.c
5003 F:      drivers/i2c/busses/i2c-ali1563.c
5004 F:      drivers/i2c/busses/i2c-ali15x3.c
5005 F:      drivers/i2c/busses/i2c-amd756.c
5006 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5007 F:      drivers/i2c/busses/i2c-amd8111.c
5008 F:      drivers/i2c/busses/i2c-i801.c
5009 F:      drivers/i2c/busses/i2c-isch.c
5010 F:      drivers/i2c/busses/i2c-nforce2.c
5011 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5012 F:      drivers/i2c/busses/i2c-piix4.c
5013 F:      drivers/i2c/busses/i2c-sis5595.c
5014 F:      drivers/i2c/busses/i2c-sis630.c
5015 F:      drivers/i2c/busses/i2c-sis96x.c
5016 F:      drivers/i2c/busses/i2c-via.c
5017 F:      drivers/i2c/busses/i2c-viapro.c
5018
5019 I2C/SMBUS ISMT DRIVER
5020 M:      Seth Heasley <seth.heasley@intel.com>
5021 M:      Neil Horman <nhorman@tuxdriver.com>
5022 L:      linux-i2c@vger.kernel.org
5023 F:      drivers/i2c/busses/i2c-ismt.c
5024 F:      Documentation/i2c/busses/i2c-ismt
5025
5026 I2C/SMBUS STUB DRIVER
5027 M:      Jean Delvare <jdelvare@suse.com>
5028 L:      linux-i2c@vger.kernel.org
5029 S:      Maintained
5030 F:      drivers/i2c/i2c-stub.c
5031
5032 I2C SUBSYSTEM
5033 M:      Wolfram Sang <wsa@the-dreams.de>
5034 L:      linux-i2c@vger.kernel.org
5035 W:      https://i2c.wiki.kernel.org/
5036 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5038 S:      Maintained
5039 F:      Documentation/devicetree/bindings/i2c/
5040 F:      Documentation/i2c/
5041 F:      drivers/i2c/
5042 F:      include/linux/i2c.h
5043 F:      include/linux/i2c-*.h
5044 F:      include/uapi/linux/i2c.h
5045 F:      include/uapi/linux/i2c-*.h
5046
5047 I2C ACPI SUPPORT
5048 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5049 L:      linux-i2c@vger.kernel.org
5050 L:      linux-acpi@vger.kernel.org
5051 S:      Maintained
5052
5053 I2C-TAOS-EVM DRIVER
5054 M:      Jean Delvare <jdelvare@suse.com>
5055 L:      linux-i2c@vger.kernel.org
5056 S:      Maintained
5057 F:      Documentation/i2c/busses/i2c-taos-evm
5058 F:      drivers/i2c/busses/i2c-taos-evm.c
5059
5060 I2C-TINY-USB DRIVER
5061 M:      Till Harbaum <till@harbaum.org>
5062 L:      linux-i2c@vger.kernel.org
5063 W:      http://www.harbaum.org/till/i2c_tiny_usb
5064 S:      Maintained
5065 F:      drivers/i2c/busses/i2c-tiny-usb.c
5066
5067 i386 BOOT CODE
5068 M:      "H. Peter Anvin" <hpa@zytor.com>
5069 S:      Maintained
5070 F:      arch/x86/boot/
5071
5072 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5073 M:      "H. Peter Anvin" <hpa@zytor.com>
5074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5075 S:      Maintained
5076
5077 IA64 (Itanium) PLATFORM
5078 M:      Tony Luck <tony.luck@intel.com>
5079 M:      Fenghua Yu <fenghua.yu@intel.com>
5080 L:      linux-ia64@vger.kernel.org
5081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5082 S:      Maintained
5083 F:      arch/ia64/
5084
5085 IBM Power in-Nest Crypto Acceleration
5086 M:      Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
5087 M:      Fionnuala Gunter <fin@linux.vnet.ibm.com>
5088 L:      linux-crypto@vger.kernel.org
5089 S:      Supported
5090 F:      drivers/crypto/nx/Makefile
5091 F:      drivers/crypto/nx/Kconfig
5092 F:      drivers/crypto/nx/nx-aes*
5093 F:      drivers/crypto/nx/nx-sha*
5094 F:      drivers/crypto/nx/nx.*
5095 F:      drivers/crypto/nx/nx_csbcpb.h
5096 F:      drivers/crypto/nx/nx_debugfs.h
5097
5098 IBM Power 842 compression accelerator
5099 M:      Dan Streetman <ddstreet@us.ibm.com>
5100 S:      Supported
5101 F:      drivers/crypto/nx/Makefile
5102 F:      drivers/crypto/nx/Kconfig
5103 F:      drivers/crypto/nx/nx-842*
5104 F:      include/linux/sw842.h
5105 F:      crypto/842.c
5106 F:      lib/842/
5107
5108 IBM Power Linux RAID adapter
5109 M:      Brian King <brking@us.ibm.com>
5110 S:      Supported
5111 F:      drivers/scsi/ipr.*
5112
5113 IBM Power Virtual Ethernet Device Driver
5114 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5115 L:      netdev@vger.kernel.org
5116 S:      Supported
5117 F:      drivers/net/ethernet/ibm/ibmveth.*
5118
5119 IBM Power Virtual SCSI Device Drivers
5120 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5121 L:      linux-scsi@vger.kernel.org
5122 S:      Supported
5123 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5124 F:      drivers/scsi/ibmvscsi/viosrp.h
5125
5126 IBM Power Virtual FC Device Drivers
5127 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5128 L:      linux-scsi@vger.kernel.org
5129 S:      Supported
5130 F:      drivers/scsi/ibmvscsi/ibmvfc*
5131
5132 IBM ServeRAID RAID DRIVER
5133 S:      Orphan
5134 F:      drivers/scsi/ips.*
5135
5136 ICH LPC AND GPIO DRIVER
5137 M:      Peter Tyser <ptyser@xes-inc.com>
5138 S:      Maintained
5139 F:      drivers/mfd/lpc_ich.c
5140 F:      drivers/gpio/gpio-ich.c
5141
5142 IDE SUBSYSTEM
5143 M:      "David S. Miller" <davem@davemloft.net>
5144 L:      linux-ide@vger.kernel.org
5145 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5147 S:      Maintained
5148 F:      Documentation/ide/
5149 F:      drivers/ide/
5150 F:      include/linux/ide.h
5151
5152 IDEAPAD LAPTOP EXTRAS DRIVER
5153 M:      Ike Panhc <ike.pan@canonical.com>
5154 L:      platform-driver-x86@vger.kernel.org
5155 W:      http://launchpad.net/ideapad-laptop
5156 S:      Maintained
5157 F:      drivers/platform/x86/ideapad-laptop.c
5158
5159 IDEAPAD LAPTOP SLIDEBAR DRIVER
5160 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5161 L:      linux-input@vger.kernel.org
5162 W:      https://github.com/o2genum/ideapad-slidebar
5163 S:      Maintained
5164 F:      drivers/input/misc/ideapad_slidebar.c
5165
5166 IDE/ATAPI DRIVERS
5167 M:      Borislav Petkov <bp@alien8.de>
5168 L:      linux-ide@vger.kernel.org
5169 S:      Maintained
5170 F:      Documentation/cdrom/ide-cd
5171 F:      drivers/ide/ide-cd*
5172
5173 IDLE-I7300
5174 M:      Andy Henroid <andrew.d.henroid@intel.com>
5175 L:      linux-pm@vger.kernel.org
5176 S:      Supported
5177 F:      drivers/idle/i7300_idle.c
5178
5179 IEEE 802.15.4 SUBSYSTEM
5180 M:      Alexander Aring <alex.aring@gmail.com>
5181 L:      linux-wpan@vger.kernel.org
5182 W:      https://github.com/linux-wpan
5183 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5184 S:      Maintained
5185 F:      net/ieee802154/
5186 F:      net/mac802154/
5187 F:      drivers/net/ieee802154/
5188 F:      include/linux/nl802154.h
5189 F:      include/linux/ieee802154.h
5190 F:      include/net/nl802154.h
5191 F:      include/net/mac802154.h
5192 F:      include/net/af_ieee802154.h
5193 F:      include/net/cfg802154.h
5194 F:      include/net/ieee802154_netdev.h
5195 F:      Documentation/networking/ieee802154.txt
5196
5197 IGORPLUG-USB IR RECEIVER
5198 M:      Sean Young <sean@mess.org>
5199 L:      linux-media@vger.kernel.org
5200 S:      Maintained
5201 F:      drivers/media/rc/igorplugusb.c
5202
5203 IGUANAWORKS USB IR TRANSCEIVER
5204 M:      Sean Young <sean@mess.org>
5205 L:      linux-media@vger.kernel.org
5206 S:      Maintained
5207 F:      drivers/media/rc/iguanair.c
5208
5209 IIO SUBSYSTEM AND DRIVERS
5210 M:      Jonathan Cameron <jic23@kernel.org>
5211 R:      Hartmut Knaack <knaack.h@gmx.de>
5212 R:      Lars-Peter Clausen <lars@metafoo.de>
5213 R:      Peter Meerwald <pmeerw@pmeerw.net>
5214 L:      linux-iio@vger.kernel.org
5215 S:      Maintained
5216 F:      drivers/iio/
5217 F:      drivers/staging/iio/
5218 F:      include/linux/iio/
5219 F:      tools/iio/
5220
5221 IKANOS/ADI EAGLE ADSL USB DRIVER
5222 M:      Matthieu Castet <castet.matthieu@free.fr>
5223 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5224 S:      Maintained
5225 F:      drivers/usb/atm/ueagle-atm.c
5226
5227 INA209 HARDWARE MONITOR DRIVER
5228 M:      Guenter Roeck <linux@roeck-us.net>
5229 L:      lm-sensors@lm-sensors.org
5230 S:      Maintained
5231 F:      Documentation/hwmon/ina209
5232 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5233 F:      drivers/hwmon/ina209.c
5234
5235 INA2XX HARDWARE MONITOR DRIVER
5236 M:      Guenter Roeck <linux@roeck-us.net>
5237 L:      lm-sensors@lm-sensors.org
5238 S:      Maintained
5239 F:      Documentation/hwmon/ina2xx
5240 F:      drivers/hwmon/ina2xx.c
5241 F:      include/linux/platform_data/ina2xx.h
5242
5243 INDUSTRY PACK SUBSYSTEM (IPACK)
5244 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5245 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5246 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5247 L:      industrypack-devel@lists.sourceforge.net
5248 W:      http://industrypack.sourceforge.net
5249 S:      Maintained
5250 F:      drivers/ipack/
5251
5252 INGENIC JZ4780 DMA Driver
5253 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5254 S:      Maintained
5255 F:      drivers/dma/dma-jz4780.c
5256
5257 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5258 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5259 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5260 L:      linux-ima-devel@lists.sourceforge.net
5261 L:      linux-ima-user@lists.sourceforge.net
5262 L:      linux-security-module@vger.kernel.org
5263 S:      Supported
5264 F:      security/integrity/ima/
5265
5266 IMGTEC IR DECODER DRIVER
5267 M:      James Hogan <james.hogan@imgtec.com>
5268 S:      Maintained
5269 F:      drivers/media/rc/img-ir/
5270
5271 IMS TWINTURBO FRAMEBUFFER DRIVER
5272 L:      linux-fbdev@vger.kernel.org
5273 S:      Orphan
5274 F:      drivers/video/fbdev/imsttfb.c
5275
5276 INFINIBAND SUBSYSTEM
5277 M:      Doug Ledford <dledford@redhat.com>
5278 M:      Sean Hefty <sean.hefty@intel.com>
5279 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5280 L:      linux-rdma@vger.kernel.org
5281 W:      http://www.openfabrics.org/
5282 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5284 S:      Supported
5285 F:      Documentation/infiniband/
5286 F:      drivers/infiniband/
5287 F:      include/uapi/linux/if_infiniband.h
5288 F:      include/uapi/rdma/
5289 F:      include/rdma/
5290
5291 INOTIFY
5292 M:      John McCutchan <john@johnmccutchan.com>
5293 M:      Robert Love <rlove@rlove.org>
5294 M:      Eric Paris <eparis@parisplace.org>
5295 S:      Maintained
5296 F:      Documentation/filesystems/inotify.txt
5297 F:      fs/notify/inotify/
5298 F:      include/linux/inotify.h
5299 F:      include/uapi/linux/inotify.h
5300
5301 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5302 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5303 L:      linux-input@vger.kernel.org
5304 Q:      http://patchwork.kernel.org/project/linux-input/list/
5305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5306 S:      Maintained
5307 F:      drivers/input/
5308 F:      include/linux/input.h
5309 F:      include/uapi/linux/input.h
5310 F:      include/linux/input/
5311
5312 INPUT MULTITOUCH (MT) PROTOCOL
5313 M:      Henrik Rydberg <rydberg@bitmath.org>
5314 L:      linux-input@vger.kernel.org
5315 S:      Odd fixes
5316 F:      Documentation/input/multi-touch-protocol.txt
5317 F:      drivers/input/input-mt.c
5318 K:      \b(ABS|SYN)_MT_
5319
5320 INTEL ASoC BDW/HSW DRIVERS
5321 M:      Jie Yang <yang.jie@linux.intel.com>
5322 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5323 S:      Supported
5324 F:      sound/soc/intel/common/sst-dsp*
5325 F:      sound/soc/intel/common/sst-firmware.c
5326 F:      sound/soc/intel/boards/broadwell.c
5327 F:      sound/soc/intel/haswell/
5328
5329 INTEL C600 SERIES SAS CONTROLLER DRIVER
5330 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5331 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5332 L:      linux-scsi@vger.kernel.org
5333 T:      git git://git.code.sf.net/p/intel-sas/isci
5334 S:      Supported
5335 F:      drivers/scsi/isci/
5336
5337 INTEL IDLE DRIVER
5338 M:      Len Brown <lenb@kernel.org>
5339 L:      linux-pm@vger.kernel.org
5340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5341 S:      Supported
5342 F:      drivers/idle/intel_idle.c
5343
5344 INTEL PSTATE DRIVER
5345 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5346 L:      linux-pm@vger.kernel.org
5347 S:      Supported
5348 F:      drivers/cpufreq/intel_pstate.c
5349
5350 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5351 M:      Maik Broemme <mbroemme@plusserver.de>
5352 L:      linux-fbdev@vger.kernel.org
5353 S:      Maintained
5354 F:      Documentation/fb/intelfb.txt
5355 F:      drivers/video/fbdev/intelfb/
5356
5357 INTEL 810/815 FRAMEBUFFER DRIVER
5358 M:      Antonino Daplas <adaplas@gmail.com>
5359 L:      linux-fbdev@vger.kernel.org
5360 S:      Maintained
5361 F:      drivers/video/fbdev/i810/
5362
5363 INTEL MENLOW THERMAL DRIVER
5364 M:      Sujith Thomas <sujith.thomas@intel.com>
5365 L:      platform-driver-x86@vger.kernel.org
5366 W:      https://01.org/linux-acpi
5367 S:      Supported
5368 F:      drivers/platform/x86/intel_menlow.c
5369
5370 INTEL IA32 MICROCODE UPDATE SUPPORT
5371 M:      Borislav Petkov <bp@alien8.de>
5372 S:      Maintained
5373 F:      arch/x86/kernel/cpu/microcode/core*
5374 F:      arch/x86/kernel/cpu/microcode/intel*
5375
5376 INTEL I/OAT DMA DRIVER
5377 M:      Dave Jiang <dave.jiang@intel.com>
5378 R:      Dan Williams <dan.j.williams@intel.com>
5379 L:      dmaengine@vger.kernel.org
5380 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5381 S:      Supported
5382 F:      drivers/dma/ioat*
5383
5384 INTEL IOMMU (VT-d)
5385 M:      David Woodhouse <dwmw2@infradead.org>
5386 L:      iommu@lists.linux-foundation.org
5387 T:      git git://git.infradead.org/iommu-2.6.git
5388 S:      Supported
5389 F:      drivers/iommu/intel-iommu.c
5390 F:      include/linux/intel-iommu.h
5391
5392 INTEL IOP-ADMA DMA DRIVER
5393 R:      Dan Williams <dan.j.williams@intel.com>
5394 S:      Odd fixes
5395 F:      drivers/dma/iop-adma.c
5396
5397 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5398 M:      Krzysztof Halasa <khalasa@piap.pl>
5399 S:      Maintained
5400 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5401 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5402 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5403 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5404 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5405 F:      drivers/net/wan/ixp4xx_hss.c
5406
5407 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5408 M:      Deepak Saxena <dsaxena@plexity.net>
5409 S:      Maintained
5410 F:      drivers/char/hw_random/ixp4xx-rng.c
5411
5412 INTEL ETHERNET DRIVERS
5413 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5414 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5415 R:      Shannon Nelson <shannon.nelson@intel.com>
5416 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5417 R:      Don Skidmore <donald.c.skidmore@intel.com>
5418 R:      Matthew Vick <matthew.vick@intel.com>
5419 R:      John Ronciak <john.ronciak@intel.com>
5420 R:      Mitch Williams <mitch.a.williams@intel.com>
5421 L:      intel-wired-lan@lists.osuosl.org
5422 W:      http://www.intel.com/support/feedback.htm
5423 W:      http://e1000.sourceforge.net/
5424 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5427 S:      Supported
5428 F:      Documentation/networking/e100.txt
5429 F:      Documentation/networking/e1000.txt
5430 F:      Documentation/networking/e1000e.txt
5431 F:      Documentation/networking/igb.txt
5432 F:      Documentation/networking/igbvf.txt
5433 F:      Documentation/networking/ixgb.txt
5434 F:      Documentation/networking/ixgbe.txt
5435 F:      Documentation/networking/ixgbevf.txt
5436 F:      Documentation/networking/i40e.txt
5437 F:      Documentation/networking/i40evf.txt
5438 F:      drivers/net/ethernet/intel/
5439 F:      drivers/net/ethernet/intel/*/
5440
5441 INTEL-MID GPIO DRIVER
5442 M:      David Cohen <david.a.cohen@linux.intel.com>
5443 L:      linux-gpio@vger.kernel.org
5444 S:      Maintained
5445 F:      drivers/gpio/gpio-intel-mid.c
5446
5447 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5448 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5449 L:      linux-wireless@vger.kernel.org
5450 S:      Maintained
5451 F:      Documentation/networking/README.ipw2100
5452 F:      Documentation/networking/README.ipw2200
5453 F:      drivers/net/wireless/ipw2x00/
5454
5455 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5456 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5457 M:      Gang Wei <gang.wei@intel.com>
5458 M:      Shane Wang <shane.wang@intel.com>
5459 L:      tboot-devel@lists.sourceforge.net
5460 W:      http://tboot.sourceforge.net
5461 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5462 S:      Supported
5463 F:      Documentation/intel_txt.txt
5464 F:      include/linux/tboot.h
5465 F:      arch/x86/kernel/tboot.c
5466
5467 INTEL WIRELESS WIMAX CONNECTION 2400
5468 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5469 M:      linux-wimax@intel.com
5470 L:      wimax@linuxwimax.org (subscribers-only)
5471 S:      Supported
5472 W:      http://linuxwimax.org
5473 F:      Documentation/wimax/README.i2400m
5474 F:      drivers/net/wimax/i2400m/
5475 F:      include/uapi/linux/wimax/i2400m.h
5476
5477 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5478 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5479 L:      linux-wireless@vger.kernel.org
5480 S:      Supported
5481 F:      drivers/net/wireless/iwlegacy/
5482
5483 INTEL WIRELESS WIFI LINK (iwlwifi)
5484 M:      Johannes Berg <johannes.berg@intel.com>
5485 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5486 M:      Intel Linux Wireless <ilw@linux.intel.com>
5487 L:      linux-wireless@vger.kernel.org
5488 W:      http://intellinuxwireless.org
5489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5490 S:      Supported
5491 F:      drivers/net/wireless/iwlwifi/
5492
5493 INTEL MANAGEMENT ENGINE (mei)
5494 M:      Tomas Winkler <tomas.winkler@intel.com>
5495 L:      linux-kernel@vger.kernel.org
5496 S:      Supported
5497 F:      include/uapi/linux/mei.h
5498 F:      include/linux/mei_cl_bus.h
5499 F:      drivers/misc/mei/*
5500 F:      Documentation/misc-devices/mei/*
5501
5502 INTEL PMC IPC DRIVER
5503 M:      Zha Qipeng<qipeng.zha@intel.com>
5504 L:      platform-driver-x86@vger.kernel.org
5505 S:      Maintained
5506 F:      drivers/platform/x86/intel_pmc_ipc.c
5507 F:      arch/x86/include/asm/intel_pmc_ipc.h
5508
5509 IOC3 ETHERNET DRIVER
5510 M:      Ralf Baechle <ralf@linux-mips.org>
5511 L:      linux-mips@linux-mips.org
5512 S:      Maintained
5513 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5514
5515 IOC3 SERIAL DRIVER
5516 M:      Pat Gefre <pfg@sgi.com>
5517 L:      linux-serial@vger.kernel.org
5518 S:      Maintained
5519 F:      drivers/tty/serial/ioc3_serial.c
5520
5521 IOMMU DRIVERS
5522 M:      Joerg Roedel <joro@8bytes.org>
5523 L:      iommu@lists.linux-foundation.org
5524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5525 S:      Maintained
5526 F:      drivers/iommu/
5527
5528 IP MASQUERADING
5529 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5530 S:      Maintained
5531 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5532
5533 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5534 M:      Francois Romieu <romieu@fr.zoreil.com>
5535 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5536 L:      netdev@vger.kernel.org
5537 S:      Maintained
5538 F:      drivers/net/ethernet/icplus/ipg.*
5539
5540 IPATH DRIVER
5541 M:      Mike Marciniszyn <infinipath@intel.com>
5542 L:      linux-rdma@vger.kernel.org
5543 S:      Maintained
5544 F:      drivers/infiniband/hw/ipath/
5545
5546 IPMI SUBSYSTEM
5547 M:      Corey Minyard <minyard@acm.org>
5548 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5549 W:      http://openipmi.sourceforge.net/
5550 S:      Supported
5551 F:      Documentation/IPMI.txt
5552 F:      drivers/char/ipmi/
5553 F:      include/linux/ipmi*
5554 F:      include/uapi/linux/ipmi*
5555
5556 QCOM AUDIO (ASoC) DRIVERS
5557 M:      Patrick Lai <plai@codeaurora.org>
5558 M:      Banajit Goswami <bgoswami@codeaurora.org>
5559 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5560 S:      Supported
5561 F:      sound/soc/qcom/
5562
5563 IPS SCSI RAID DRIVER
5564 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5565 L:      linux-scsi@vger.kernel.org
5566 W:      http://www.adaptec.com/
5567 S:      Maintained
5568 F:      drivers/scsi/ips*
5569
5570 IPVS
5571 M:      Wensong Zhang <wensong@linux-vs.org>
5572 M:      Simon Horman <horms@verge.net.au>
5573 M:      Julian Anastasov <ja@ssi.bg>
5574 L:      netdev@vger.kernel.org
5575 L:      lvs-devel@vger.kernel.org
5576 S:      Maintained
5577 F:      Documentation/networking/ipvs-sysctl.txt
5578 F:      include/net/ip_vs.h
5579 F:      include/uapi/linux/ip_vs.h
5580 F:      net/netfilter/ipvs/
5581
5582 IPWIRELESS DRIVER
5583 M:      Jiri Kosina <jkosina@suse.com>
5584 M:      David Sterba <dsterba@suse.com>
5585 S:      Odd Fixes
5586 F:      drivers/tty/ipwireless/
5587
5588 IPX NETWORK LAYER
5589 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5590 L:      netdev@vger.kernel.org
5591 S:      Maintained
5592 F:      include/net/ipx.h
5593 F:      include/uapi/linux/ipx.h
5594 F:      net/ipx/
5595
5596 IRDA SUBSYSTEM
5597 M:      Samuel Ortiz <samuel@sortiz.org>
5598 L:      irda-users@lists.sourceforge.net (subscribers-only)
5599 L:      netdev@vger.kernel.org
5600 W:      http://irda.sourceforge.net/
5601 S:      Maintained
5602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5603 F:      Documentation/networking/irda.txt
5604 F:      drivers/net/irda/
5605 F:      include/net/irda/
5606 F:      net/irda/
5607
5608 IRQ SUBSYSTEM
5609 M:      Thomas Gleixner <tglx@linutronix.de>
5610 L:      linux-kernel@vger.kernel.org
5611 S:      Maintained
5612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5613 F:      kernel/irq/
5614
5615 IRQCHIP DRIVERS
5616 M:      Thomas Gleixner <tglx@linutronix.de>
5617 M:      Jason Cooper <jason@lakedaemon.net>
5618 M:      Marc Zyngier <marc.zyngier@arm.com>
5619 L:      linux-kernel@vger.kernel.org
5620 S:      Maintained
5621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5622 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5623 F:      Documentation/devicetree/bindings/interrupt-controller/
5624 F:      drivers/irqchip/
5625
5626 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5627 M:      Jiang Liu <jiang.liu@linux.intel.com>
5628 M:      Marc Zyngier <marc.zyngier@arm.com>
5629 S:      Maintained
5630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5631 F:      Documentation/IRQ-domain.txt
5632 F:      include/linux/irqdomain.h
5633 F:      kernel/irq/irqdomain.c
5634 F:      kernel/irq/msi.c
5635
5636 ISAPNP
5637 M:      Jaroslav Kysela <perex@perex.cz>
5638 S:      Maintained
5639 F:      Documentation/isapnp.txt
5640 F:      drivers/pnp/isapnp/
5641 F:      include/linux/isapnp.h
5642
5643 ISA RADIO MODULE
5644 M:      Hans Verkuil <hverkuil@xs4all.nl>
5645 L:      linux-media@vger.kernel.org
5646 T:      git git://linuxtv.org/media_tree.git
5647 W:      http://linuxtv.org
5648 S:      Maintained
5649 F:      drivers/media/radio/radio-isa*
5650
5651 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5652 M:      Peter Jones <pjones@redhat.com>
5653 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5654 S:      Maintained
5655 F:      drivers/firmware/iscsi_ibft*
5656
5657 ISCSI
5658 M:      Mike Christie <michaelc@cs.wisc.edu>
5659 L:      open-iscsi@googlegroups.com
5660 W:      www.open-iscsi.org
5661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5662 S:      Maintained
5663 F:      drivers/scsi/*iscsi*
5664 F:      include/scsi/*iscsi*
5665
5666 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5667 M:      Or Gerlitz <ogerlitz@mellanox.com>
5668 M:      Sagi Grimberg <sagig@mellanox.com>
5669 M:      Roi Dayan <roid@mellanox.com>
5670 L:      linux-rdma@vger.kernel.org
5671 S:      Supported
5672 W:      http://www.openfabrics.org
5673 W:      www.open-iscsi.org
5674 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5675 F:      drivers/infiniband/ulp/iser/
5676
5677 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5678 M:      Sagi Grimberg <sagig@mellanox.com>
5679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5680 L:      linux-rdma@vger.kernel.org
5681 L:      target-devel@vger.kernel.org
5682 S:      Supported
5683 W:      http://www.linux-iscsi.org
5684 F:      drivers/infiniband/ulp/isert
5685
5686 ISDN SUBSYSTEM
5687 M:      Karsten Keil <isdn@linux-pingi.de>
5688 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5689 L:      netdev@vger.kernel.org
5690 W:      http://www.isdn4linux.de
5691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5692 S:      Maintained
5693 F:      Documentation/isdn/
5694 F:      drivers/isdn/
5695 F:      include/linux/isdn.h
5696 F:      include/linux/isdn/
5697 F:      include/uapi/linux/isdn.h
5698 F:      include/uapi/linux/isdn/
5699
5700 ISDN SUBSYSTEM (Eicon active card driver)
5701 M:      Armin Schindler <mac@melware.de>
5702 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5703 W:      http://www.melware.de
5704 S:      Maintained
5705 F:      drivers/isdn/hardware/eicon/
5706
5707 IT87 HARDWARE MONITORING DRIVER
5708 M:      Jean Delvare <jdelvare@suse.com>
5709 L:      lm-sensors@lm-sensors.org
5710 S:      Maintained
5711 F:      Documentation/hwmon/it87
5712 F:      drivers/hwmon/it87.c
5713
5714 IT913X MEDIA DRIVER
5715 M:      Antti Palosaari <crope@iki.fi>
5716 L:      linux-media@vger.kernel.org
5717 W:      http://linuxtv.org/
5718 W:      http://palosaari.fi/linux/
5719 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5720 T:      git git://linuxtv.org/anttip/media_tree.git
5721 S:      Maintained
5722 F:      drivers/media/tuners/it913x*
5723
5724 IVTV VIDEO4LINUX DRIVER
5725 M:      Andy Walls <awalls@md.metrocast.net>
5726 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5727 L:      linux-media@vger.kernel.org
5728 T:      git git://linuxtv.org/media_tree.git
5729 W:      http://www.ivtvdriver.org
5730 S:      Maintained
5731 F:      Documentation/video4linux/*.ivtv
5732 F:      drivers/media/pci/ivtv/
5733 F:      include/uapi/linux/ivtv*
5734
5735 IX2505V MEDIA DRIVER
5736 M:      Malcolm Priestley <tvboxspy@gmail.com>
5737 L:      linux-media@vger.kernel.org
5738 W:      http://linuxtv.org/
5739 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5740 S:      Maintained
5741 F:      drivers/media/dvb-frontends/ix2505v*
5742
5743 JC42.4 TEMPERATURE SENSOR DRIVER
5744 M:      Guenter Roeck <linux@roeck-us.net>
5745 L:      lm-sensors@lm-sensors.org
5746 S:      Maintained
5747 F:      drivers/hwmon/jc42.c
5748 F:      Documentation/hwmon/jc42
5749
5750 JFS FILESYSTEM
5751 M:      Dave Kleikamp <shaggy@kernel.org>
5752 L:      jfs-discussion@lists.sourceforge.net
5753 W:      http://jfs.sourceforge.net/
5754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5755 S:      Maintained
5756 F:      Documentation/filesystems/jfs.txt
5757 F:      fs/jfs/
5758
5759 JME NETWORK DRIVER
5760 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5761 L:      netdev@vger.kernel.org
5762 S:      Maintained
5763 F:      drivers/net/ethernet/jme.*
5764
5765 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5766 M:      David Woodhouse <dwmw2@infradead.org>
5767 L:      linux-mtd@lists.infradead.org
5768 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5769 S:      Maintained
5770 F:      fs/jffs2/
5771 F:      include/uapi/linux/jffs2.h
5772
5773 JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
5774 M:      Andrew Morton <akpm@linux-foundation.org>
5775 M:      Jan Kara <jack@suse.com>
5776 L:      linux-ext4@vger.kernel.org
5777 S:      Maintained
5778 F:      fs/jbd/
5779 F:      include/linux/jbd.h
5780
5781 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5782 M:      "Theodore Ts'o" <tytso@mit.edu>
5783 L:      linux-ext4@vger.kernel.org
5784 S:      Maintained
5785 F:      fs/jbd2/
5786 F:      include/linux/jbd2.h
5787
5788 JSM Neo PCI based serial card
5789 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5790 L:      linux-serial@vger.kernel.org
5791 S:      Maintained
5792 F:      drivers/tty/serial/jsm/
5793
5794 K10TEMP HARDWARE MONITORING DRIVER
5795 M:      Clemens Ladisch <clemens@ladisch.de>
5796 L:      lm-sensors@lm-sensors.org
5797 S:      Maintained
5798 F:      Documentation/hwmon/k10temp
5799 F:      drivers/hwmon/k10temp.c
5800
5801 K8TEMP HARDWARE MONITORING DRIVER
5802 M:      Rudolf Marek <r.marek@assembler.cz>
5803 L:      lm-sensors@lm-sensors.org
5804 S:      Maintained
5805 F:      Documentation/hwmon/k8temp
5806 F:      drivers/hwmon/k8temp.c
5807
5808 KCONFIG
5809 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5810 L:      linux-kbuild@vger.kernel.org
5811 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5812 S:      Maintained
5813 F:      Documentation/kbuild/kconfig-language.txt
5814 F:      scripts/kconfig/
5815
5816 KDUMP
5817 M:      Vivek Goyal <vgoyal@redhat.com>
5818 M:      Haren Myneni <hbabu@us.ibm.com>
5819 L:      kexec@lists.infradead.org
5820 W:      http://lse.sourceforge.net/kdump/
5821 S:      Maintained
5822 F:      Documentation/kdump/
5823
5824 KEENE FM RADIO TRANSMITTER DRIVER
5825 M:      Hans Verkuil <hverkuil@xs4all.nl>
5826 L:      linux-media@vger.kernel.org
5827 T:      git git://linuxtv.org/media_tree.git
5828 W:      http://linuxtv.org
5829 S:      Maintained
5830 F:      drivers/media/radio/radio-keene*
5831
5832 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5833 M:      Ian Kent <raven@themaw.net>
5834 L:      autofs@vger.kernel.org
5835 S:      Maintained
5836 F:      fs/autofs4/
5837
5838 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5839 M:      Michal Marek <mmarek@suse.com>
5840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5842 L:      linux-kbuild@vger.kernel.org
5843 S:      Maintained
5844 F:      Documentation/kbuild/
5845 F:      Makefile
5846 F:      scripts/Makefile.*
5847 F:      scripts/basic/
5848 F:      scripts/mk*
5849 F:      scripts/package/
5850
5851 KERNEL JANITORS
5852 L:      kernel-janitors@vger.kernel.org
5853 W:      http://kernelnewbies.org/KernelJanitors
5854 S:      Odd Fixes
5855
5856 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5857 M:      "J. Bruce Fields" <bfields@fieldses.org>
5858 L:      linux-nfs@vger.kernel.org
5859 W:      http://nfs.sourceforge.net/
5860 S:      Supported
5861 F:      fs/nfsd/
5862 F:      include/uapi/linux/nfsd/
5863 F:      fs/lockd/
5864 F:      fs/nfs_common/
5865 F:      net/sunrpc/
5866 F:      include/linux/lockd/
5867 F:      include/linux/sunrpc/
5868 F:      include/uapi/linux/sunrpc/
5869
5870 KERNEL SELFTEST FRAMEWORK
5871 M:      Shuah Khan <shuahkh@osg.samsung.com>
5872 L:      linux-api@vger.kernel.org
5873 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5874 S:      Maintained
5875 F:      tools/testing/selftests
5876
5877 KERNEL VIRTUAL MACHINE (KVM)
5878 M:      Gleb Natapov <gleb@kernel.org>
5879 M:      Paolo Bonzini <pbonzini@redhat.com>
5880 L:      kvm@vger.kernel.org
5881 W:      http://www.linux-kvm.org
5882 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5883 S:      Supported
5884 F:      Documentation/*/kvm*.txt
5885 F:      Documentation/virtual/kvm/
5886 F:      arch/*/kvm/
5887 F:      arch/x86/kernel/kvm.c
5888 F:      arch/x86/kernel/kvmclock.c
5889 F:      arch/*/include/asm/kvm*
5890 F:      include/linux/kvm*
5891 F:      include/uapi/linux/kvm*
5892 F:      virt/kvm/
5893
5894 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5895 M:      Joerg Roedel <joro@8bytes.org>
5896 L:      kvm@vger.kernel.org
5897 W:      http://kvm.qumranet.com
5898 S:      Maintained
5899 F:      arch/x86/include/asm/svm.h
5900 F:      arch/x86/kvm/svm.c
5901
5902 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5903 M:      Alexander Graf <agraf@suse.com>
5904 L:      kvm-ppc@vger.kernel.org
5905 W:      http://kvm.qumranet.com
5906 T:      git git://github.com/agraf/linux-2.6.git
5907 S:      Supported
5908 F:      arch/powerpc/include/asm/kvm*
5909 F:      arch/powerpc/kvm/
5910
5911 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5912 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5913 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5914 M:      linux390@de.ibm.com
5915 L:      linux-s390@vger.kernel.org
5916 W:      http://www.ibm.com/developerworks/linux/linux390/
5917 S:      Supported
5918 F:      Documentation/s390/kvm.txt
5919 F:      arch/s390/include/asm/kvm*
5920 F:      arch/s390/kvm/
5921
5922 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5923 M:      Christoffer Dall <christoffer.dall@linaro.org>
5924 M:      Marc Zyngier <marc.zyngier@arm.com>
5925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5926 L:      kvmarm@lists.cs.columbia.edu
5927 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5928 S:      Supported
5929 F:      arch/arm/include/uapi/asm/kvm*
5930 F:      arch/arm/include/asm/kvm*
5931 F:      arch/arm/kvm/
5932 F:      virt/kvm/arm/
5933 F:      include/kvm/arm_*
5934
5935 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5936 M:      Christoffer Dall <christoffer.dall@linaro.org>
5937 M:      Marc Zyngier <marc.zyngier@arm.com>
5938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5939 L:      kvmarm@lists.cs.columbia.edu
5940 S:      Maintained
5941 F:      arch/arm64/include/uapi/asm/kvm*
5942 F:      arch/arm64/include/asm/kvm*
5943 F:      arch/arm64/kvm/
5944
5945 KEXEC
5946 M:      Eric Biederman <ebiederm@xmission.com>
5947 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
5948 L:      kexec@lists.infradead.org
5949 S:      Maintained
5950 F:      include/linux/kexec.h
5951 F:      include/uapi/linux/kexec.h
5952 F:      kernel/kexec.c
5953
5954 KEYS/KEYRINGS:
5955 M:      David Howells <dhowells@redhat.com>
5956 L:      keyrings@linux-nfs.org
5957 S:      Maintained
5958 F:      Documentation/security/keys.txt
5959 F:      include/linux/key.h
5960 F:      include/linux/key-type.h
5961 F:      include/keys/
5962 F:      security/keys/
5963
5964 KEYS-TRUSTED
5965 M:      David Safford <safford@us.ibm.com>
5966 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5967 L:      linux-security-module@vger.kernel.org
5968 L:      keyrings@linux-nfs.org
5969 S:      Supported
5970 F:      Documentation/security/keys-trusted-encrypted.txt
5971 F:      include/keys/trusted-type.h
5972 F:      security/keys/trusted.c
5973 F:      security/keys/trusted.h
5974
5975 KEYS-ENCRYPTED
5976 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5977 M:      David Safford <safford@us.ibm.com>
5978 L:      linux-security-module@vger.kernel.org
5979 L:      keyrings@linux-nfs.org
5980 S:      Supported
5981 F:      Documentation/security/keys-trusted-encrypted.txt
5982 F:      include/keys/encrypted-type.h
5983 F:      security/keys/encrypted-keys/
5984
5985 KGDB / KDB /debug_core
5986 M:      Jason Wessel <jason.wessel@windriver.com>
5987 W:      http://kgdb.wiki.kernel.org/
5988 L:      kgdb-bugreport@lists.sourceforge.net
5989 S:      Maintained
5990 F:      Documentation/DocBook/kgdb.tmpl
5991 F:      drivers/misc/kgdbts.c
5992 F:      drivers/tty/serial/kgdboc.c
5993 F:      include/linux/kdb.h
5994 F:      include/linux/kgdb.h
5995 F:      kernel/debug/
5996
5997 KMEMCHECK
5998 M:      Vegard Nossum <vegardno@ifi.uio.no>
5999 M:      Pekka Enberg <penberg@kernel.org>
6000 S:      Maintained
6001 F:      Documentation/kmemcheck.txt
6002 F:      arch/x86/include/asm/kmemcheck.h
6003 F:      arch/x86/mm/kmemcheck/
6004 F:      include/linux/kmemcheck.h
6005 F:      mm/kmemcheck.c
6006
6007 KMEMLEAK
6008 M:      Catalin Marinas <catalin.marinas@arm.com>
6009 S:      Maintained
6010 F:      Documentation/kmemleak.txt
6011 F:      include/linux/kmemleak.h
6012 F:      mm/kmemleak.c
6013 F:      mm/kmemleak-test.c
6014
6015 KPROBES
6016 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6017 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6018 M:      "David S. Miller" <davem@davemloft.net>
6019 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6020 S:      Maintained
6021 F:      Documentation/kprobes.txt
6022 F:      include/linux/kprobes.h
6023 F:      kernel/kprobes.c
6024
6025 KS0108 LCD CONTROLLER DRIVER
6026 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6027 W:      http://miguelojeda.es/auxdisplay.htm
6028 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6029 S:      Maintained
6030 F:      Documentation/auxdisplay/ks0108
6031 F:      drivers/auxdisplay/ks0108.c
6032 F:      include/linux/ks0108.h
6033
6034 LAPB module
6035 L:      linux-x25@vger.kernel.org
6036 S:      Orphan
6037 F:      Documentation/networking/lapb-module.txt
6038 F:      include/*/lapb.h
6039 F:      net/lapb/
6040
6041 LASI 53c700 driver for PARISC
6042 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6043 L:      linux-scsi@vger.kernel.org
6044 S:      Maintained
6045 F:      Documentation/scsi/53c700.txt
6046 F:      drivers/scsi/53c700*
6047
6048 LED SUBSYSTEM
6049 M:      Bryan Wu <cooloney@gmail.com>
6050 M:      Richard Purdie <rpurdie@rpsys.net>
6051 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6052 L:      linux-leds@vger.kernel.org
6053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
6054 S:      Maintained
6055 F:      drivers/leds/
6056 F:      include/linux/leds.h
6057
6058 LEGACY EEPROM DRIVER
6059 M:      Jean Delvare <jdelvare@suse.com>
6060 S:      Maintained
6061 F:      Documentation/misc-devices/eeprom
6062 F:      drivers/misc/eeprom/eeprom.c
6063
6064 LEGO USB Tower driver
6065 M:      Juergen Stuber <starblue@users.sourceforge.net>
6066 L:      legousb-devel@lists.sourceforge.net
6067 W:      http://legousb.sourceforge.net/
6068 S:      Maintained
6069 F:      drivers/usb/misc/legousbtower.c
6070
6071 LG2160 MEDIA DRIVER
6072 M:      Michael Krufky <mkrufky@linuxtv.org>
6073 L:      linux-media@vger.kernel.org
6074 W:      http://linuxtv.org/
6075 W:      http://github.com/mkrufky
6076 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6077 T:      git git://linuxtv.org/mkrufky/tuners.git
6078 S:      Maintained
6079 F:      drivers/media/dvb-frontends/lg2160.*
6080
6081 LGDT3305 MEDIA DRIVER
6082 M:      Michael Krufky <mkrufky@linuxtv.org>
6083 L:      linux-media@vger.kernel.org
6084 W:      http://linuxtv.org/
6085 W:      http://github.com/mkrufky
6086 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6087 T:      git git://linuxtv.org/mkrufky/tuners.git
6088 S:      Maintained
6089 F:      drivers/media/dvb-frontends/lgdt3305.*
6090
6091 LGUEST
6092 M:      Rusty Russell <rusty@rustcorp.com.au>
6093 L:      lguest@lists.ozlabs.org
6094 W:      http://lguest.ozlabs.org/
6095 S:      Odd Fixes
6096 F:      arch/x86/include/asm/lguest*.h
6097 F:      arch/x86/lguest/
6098 F:      drivers/lguest/
6099 F:      include/linux/lguest*.h
6100 F:      tools/lguest/
6101
6102 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6103 M:      Tejun Heo <tj@kernel.org>
6104 L:      linux-ide@vger.kernel.org
6105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6106 S:      Maintained
6107 F:      drivers/ata/
6108 F:      include/linux/ata.h
6109 F:      include/linux/libata.h
6110
6111 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6112 M:      Viresh Kumar <vireshk@kernel.org>
6113 L:      linux-ide@vger.kernel.org
6114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6115 S:      Maintained
6116 F:      include/linux/pata_arasan_cf_data.h
6117 F:      drivers/ata/pata_arasan_cf.c
6118
6119 LIBATA PATA DRIVERS
6120 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6121 M:      Tejun Heo <tj@kernel.org>
6122 L:      linux-ide@vger.kernel.org
6123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6124 S:      Maintained
6125 F:      drivers/ata/pata_*.c
6126 F:      drivers/ata/ata_generic.c
6127
6128 LIBATA SATA AHCI PLATFORM devices support
6129 M:      Hans de Goede <hdegoede@redhat.com>
6130 M:      Tejun Heo <tj@kernel.org>
6131 L:      linux-ide@vger.kernel.org
6132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6133 S:      Maintained
6134 F:      drivers/ata/ahci_platform.c
6135 F:      drivers/ata/libahci_platform.c
6136 F:      include/linux/ahci_platform.h
6137
6138 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6139 M:      Mikael Pettersson <mikpelinux@gmail.com>
6140 L:      linux-ide@vger.kernel.org
6141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6142 S:      Maintained
6143 F:      drivers/ata/sata_promise.*
6144
6145 LIBLOCKDEP
6146 M:      Sasha Levin <sasha.levin@oracle.com>
6147 S:      Maintained
6148 F:      tools/lib/lockdep/
6149
6150 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6151 M:      Dan Williams <dan.j.williams@intel.com>
6152 L:      linux-nvdimm@lists.01.org
6153 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6154 S:      Supported
6155 F:      drivers/nvdimm/*
6156 F:      include/linux/nd.h
6157 F:      include/linux/libnvdimm.h
6158 F:      include/uapi/linux/ndctl.h
6159
6160 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6161 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6162 L:      linux-nvdimm@lists.01.org
6163 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6164 S:      Supported
6165 F:      drivers/nvdimm/blk.c
6166 F:      drivers/nvdimm/region_devs.c
6167 F:      drivers/acpi/nfit*
6168
6169 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6170 M:      Vishal Verma <vishal.l.verma@intel.com>
6171 L:      linux-nvdimm@lists.01.org
6172 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6173 S:      Supported
6174 F:      drivers/nvdimm/btt*
6175
6176 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6177 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6178 L:      linux-nvdimm@lists.01.org
6179 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6180 S:      Supported
6181 F:      drivers/nvdimm/pmem.c
6182 F:      include/linux/pmem.h
6183
6184 LINUX FOR IBM pSERIES (RS/6000)
6185 M:      Paul Mackerras <paulus@au.ibm.com>
6186 W:      http://www.ibm.com/linux/ltc/projects/ppc
6187 S:      Supported
6188 F:      arch/powerpc/boot/rs6000.h
6189
6190 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6191 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6192 M:      Paul Mackerras <paulus@samba.org>
6193 M:      Michael Ellerman <mpe@ellerman.id.au>
6194 W:      http://www.penguinppc.org/
6195 L:      linuxppc-dev@lists.ozlabs.org
6196 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6198 S:      Supported
6199 F:      Documentation/powerpc/
6200 F:      arch/powerpc/
6201
6202 LINUX FOR POWER MACINTOSH
6203 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6204 W:      http://www.penguinppc.org/
6205 L:      linuxppc-dev@lists.ozlabs.org
6206 S:      Maintained
6207 F:      arch/powerpc/platforms/powermac/
6208 F:      drivers/macintosh/
6209
6210 LINUX FOR POWERPC EMBEDDED MPC5XXX
6211 M:      Anatolij Gustschin <agust@denx.de>
6212 L:      linuxppc-dev@lists.ozlabs.org
6213 T:      git git://git.denx.de/linux-denx-agust.git
6214 S:      Maintained
6215 F:      arch/powerpc/platforms/512x/
6216 F:      arch/powerpc/platforms/52xx/
6217
6218 LINUX FOR POWERPC EMBEDDED PPC4XX
6219 M:      Alistair Popple <alistair@popple.id.au>
6220 M:      Matt Porter <mporter@kernel.crashing.org>
6221 W:      http://www.penguinppc.org/
6222 L:      linuxppc-dev@lists.ozlabs.org
6223 S:      Maintained
6224 F:      arch/powerpc/platforms/40x/
6225 F:      arch/powerpc/platforms/44x/
6226
6227 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6228 L:      linuxppc-dev@lists.ozlabs.org
6229 S:      Orphan
6230 F:      arch/powerpc/*/*virtex*
6231 F:      arch/powerpc/*/*/*virtex*
6232
6233 LINUX FOR POWERPC EMBEDDED PPC8XX
6234 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6235 W:      http://www.penguinppc.org/
6236 L:      linuxppc-dev@lists.ozlabs.org
6237 S:      Maintained
6238 F:      arch/powerpc/platforms/8xx/
6239
6240 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6241 M:      Scott Wood <scottwood@freescale.com>
6242 M:      Kumar Gala <galak@kernel.crashing.org>
6243 W:      http://www.penguinppc.org/
6244 L:      linuxppc-dev@lists.ozlabs.org
6245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6246 S:      Maintained
6247 F:      arch/powerpc/platforms/83xx/
6248 F:      arch/powerpc/platforms/85xx/
6249
6250 LINUX FOR POWERPC PA SEMI PWRFICIENT
6251 M:      Olof Johansson <olof@lixom.net>
6252 L:      linuxppc-dev@lists.ozlabs.org
6253 S:      Maintained
6254 F:      arch/powerpc/platforms/pasemi/
6255 F:      drivers/*/*pasemi*
6256 F:      drivers/*/*/*pasemi*
6257
6258 LINUX SECURITY MODULE (LSM) FRAMEWORK
6259 M:      Chris Wright <chrisw@sous-sol.org>
6260 L:      linux-security-module@vger.kernel.org
6261 S:      Supported
6262
6263 LIS3LV02D ACCELEROMETER DRIVER
6264 M:      Eric Piel <eric.piel@tremplin-utc.net>
6265 S:      Maintained
6266 F:      Documentation/misc-devices/lis3lv02d
6267 F:      drivers/misc/lis3lv02d/
6268 F:      drivers/platform/x86/hp_accel.c
6269
6270 LIVE PATCHING
6271 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6272 M:      Seth Jennings <sjenning@redhat.com>
6273 M:      Jiri Kosina <jkosina@suse.com>
6274 M:      Vojtech Pavlik <vojtech@suse.com>
6275 S:      Maintained
6276 F:      kernel/livepatch/
6277 F:      include/linux/livepatch.h
6278 F:      arch/x86/include/asm/livepatch.h
6279 F:      arch/x86/kernel/livepatch.c
6280 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6281 F:      samples/livepatch/
6282 L:      live-patching@vger.kernel.org
6283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6284
6285 LLC (802.2)
6286 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6287 S:      Maintained
6288 F:      include/linux/llc.h
6289 F:      include/uapi/linux/llc.h
6290 F:      include/net/llc*
6291 F:      net/llc/
6292
6293 LM73 HARDWARE MONITOR DRIVER
6294 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6295 L:      lm-sensors@lm-sensors.org
6296 S:      Maintained
6297 F:      drivers/hwmon/lm73.c
6298
6299 LM78 HARDWARE MONITOR DRIVER
6300 M:      Jean Delvare <jdelvare@suse.com>
6301 L:      lm-sensors@lm-sensors.org
6302 S:      Maintained
6303 F:      Documentation/hwmon/lm78
6304 F:      drivers/hwmon/lm78.c
6305
6306 LM83 HARDWARE MONITOR DRIVER
6307 M:      Jean Delvare <jdelvare@suse.com>
6308 L:      lm-sensors@lm-sensors.org
6309 S:      Maintained
6310 F:      Documentation/hwmon/lm83
6311 F:      drivers/hwmon/lm83.c
6312
6313 LM90 HARDWARE MONITOR DRIVER
6314 M:      Jean Delvare <jdelvare@suse.com>
6315 L:      lm-sensors@lm-sensors.org
6316 S:      Maintained
6317 F:      Documentation/hwmon/lm90
6318 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6319 F:      drivers/hwmon/lm90.c
6320
6321 LM95234 HARDWARE MONITOR DRIVER
6322 M:      Guenter Roeck <linux@roeck-us.net>
6323 L:      lm-sensors@lm-sensors.org
6324 S:      Maintained
6325 F:      Documentation/hwmon/lm95234
6326 F:      drivers/hwmon/lm95234.c
6327
6328 LME2510 MEDIA DRIVER
6329 M:      Malcolm Priestley <tvboxspy@gmail.com>
6330 L:      linux-media@vger.kernel.org
6331 W:      http://linuxtv.org/
6332 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6333 S:      Maintained
6334 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6335
6336 LOCKDEP AND LOCKSTAT
6337 M:      Peter Zijlstra <peterz@infradead.org>
6338 M:      Ingo Molnar <mingo@redhat.com>
6339 L:      linux-kernel@vger.kernel.org
6340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6341 S:      Maintained
6342 F:      Documentation/locking/lockdep*.txt
6343 F:      Documentation/locking/lockstat.txt
6344 F:      include/linux/lockdep.h
6345 F:      kernel/locking/
6346
6347 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6348 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6349 L:      linux-ntfs-dev@lists.sourceforge.net
6350 W:      http://www.linux-ntfs.org/content/view/19/37/
6351 S:      Maintained
6352 F:      Documentation/ldm.txt
6353 F:      block/partitions/ldm.*
6354
6355 LogFS
6356 M:      Joern Engel <joern@logfs.org>
6357 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6358 L:      logfs@logfs.org
6359 W:      logfs.org
6360 S:      Maintained
6361 F:      fs/logfs/
6362
6363 LPC32XX MACHINE SUPPORT
6364 M:      Roland Stigge <stigge@antcom.de>
6365 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6366 S:      Maintained
6367 F:      arch/arm/mach-lpc32xx/
6368
6369 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6370 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6371 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6372 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6373 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6374 L:      MPT-FusionLinux.pdl@avagotech.com
6375 L:      linux-scsi@vger.kernel.org
6376 W:      http://www.lsilogic.com/support
6377 S:      Supported
6378 F:      drivers/message/fusion/
6379 F:      drivers/scsi/mpt2sas/
6380 F:      drivers/scsi/mpt3sas/
6381
6382 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6383 M:      Matthew Wilcox <matthew@wil.cx>
6384 L:      linux-scsi@vger.kernel.org
6385 S:      Maintained
6386 F:      drivers/scsi/sym53c8xx_2/
6387
6388 LTC4261 HARDWARE MONITOR DRIVER
6389 M:      Guenter Roeck <linux@roeck-us.net>
6390 L:      lm-sensors@lm-sensors.org
6391 S:      Maintained
6392 F:      Documentation/hwmon/ltc4261
6393 F:      drivers/hwmon/ltc4261.c
6394
6395 LTP (Linux Test Project)
6396 M:      Mike Frysinger <vapier@gentoo.org>
6397 M:      Cyril Hrubis <chrubis@suse.cz>
6398 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
6399 M:      Jan Stancek <jstancek@redhat.com>
6400 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6401 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6402 L:      ltp-list@lists.sourceforge.net (subscribers-only)
6403 W:      http://linux-test-project.github.io/
6404 T:      git git://github.com/linux-test-project/ltp.git
6405 S:      Maintained
6406
6407 M32R ARCHITECTURE
6408 W:      http://www.linux-m32r.org/
6409 S:      Orphan
6410 F:      arch/m32r/
6411
6412 M68K ARCHITECTURE
6413 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6414 L:      linux-m68k@lists.linux-m68k.org
6415 W:      http://www.linux-m68k.org/
6416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6417 S:      Maintained
6418 F:      arch/m68k/
6419 F:      drivers/zorro/
6420
6421 M68K ON APPLE MACINTOSH
6422 M:      Joshua Thompson <funaho@jurai.org>
6423 W:      http://www.mac.linux-m68k.org/
6424 L:      linux-m68k@lists.linux-m68k.org
6425 S:      Maintained
6426 F:      arch/m68k/mac/
6427
6428 M68K ON HP9000/300
6429 M:      Philip Blundell <philb@gnu.org>
6430 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6431 S:      Maintained
6432 F:      arch/m68k/hp300/
6433
6434 M88DS3103 MEDIA DRIVER
6435 M:      Antti Palosaari <crope@iki.fi>
6436 L:      linux-media@vger.kernel.org
6437 W:      http://linuxtv.org/
6438 W:      http://palosaari.fi/linux/
6439 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6440 T:      git git://linuxtv.org/anttip/media_tree.git
6441 S:      Maintained
6442 F:      drivers/media/dvb-frontends/m88ds3103*
6443
6444 M88RS2000 MEDIA DRIVER
6445 M:      Malcolm Priestley <tvboxspy@gmail.com>
6446 L:      linux-media@vger.kernel.org
6447 W:      http://linuxtv.org/
6448 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6449 S:      Maintained
6450 F:      drivers/media/dvb-frontends/m88rs2000*
6451
6452 MA901 MASTERKIT USB FM RADIO DRIVER
6453 M:      Alexey Klimov <klimov.linux@gmail.com>
6454 L:      linux-media@vger.kernel.org
6455 T:      git git://linuxtv.org/media_tree.git
6456 S:      Maintained
6457 F:      drivers/media/radio/radio-ma901.c
6458
6459 MAC80211
6460 M:      Johannes Berg <johannes@sipsolutions.net>
6461 L:      linux-wireless@vger.kernel.org
6462 W:      http://wireless.kernel.org/
6463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6465 S:      Maintained
6466 F:      Documentation/networking/mac80211-injection.txt
6467 F:      include/net/mac80211.h
6468 F:      net/mac80211/
6469
6470 MACVLAN DRIVER
6471 M:      Patrick McHardy <kaber@trash.net>
6472 L:      netdev@vger.kernel.org
6473 S:      Maintained
6474 F:      drivers/net/macvlan.c
6475 F:      include/linux/if_macvlan.h
6476
6477 MAILBOX API
6478 M:      Jassi Brar <jassisinghbrar@gmail.com>
6479 L:      linux-kernel@vger.kernel.org
6480 S:      Maintained
6481 F:      drivers/mailbox/
6482 F:      include/linux/mailbox_client.h
6483 F:      include/linux/mailbox_controller.h
6484
6485 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6486 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6487 W:      http://www.kernel.org/doc/man-pages
6488 L:      linux-man@vger.kernel.org
6489 S:      Maintained
6490
6491 MARVELL ARMADA DRM SUPPORT
6492 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6493 S:      Maintained
6494 F:      drivers/gpu/drm/armada/
6495
6496 MARVELL 88E6352 DSA support
6497 M:      Guenter Roeck <linux@roeck-us.net>
6498 S:      Maintained
6499 F:      drivers/net/dsa/mv88e6352.c
6500
6501 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6502 M:      Mirko Lindner <mlindner@marvell.com>
6503 M:      Stephen Hemminger <stephen@networkplumber.org>
6504 L:      netdev@vger.kernel.org
6505 S:      Maintained
6506 F:      drivers/net/ethernet/marvell/sk*
6507
6508 MARVELL LIBERTAS WIRELESS DRIVER
6509 L:      libertas-dev@lists.infradead.org
6510 S:      Orphan
6511 F:      drivers/net/wireless/libertas/
6512
6513 MARVELL MV643XX ETHERNET DRIVER
6514 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6515 L:      netdev@vger.kernel.org
6516 S:      Maintained
6517 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6518 F:      include/linux/mv643xx.h
6519
6520 MARVELL MVNETA ETHERNET DRIVER
6521 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6522 L:      netdev@vger.kernel.org
6523 S:      Maintained
6524 F:      drivers/net/ethernet/marvell/mvneta.*
6525
6526 MARVELL MWIFIEX WIRELESS DRIVER
6527 M:      Amitkumar Karwar <akarwar@marvell.com>
6528 M:      Avinash Patil <patila@marvell.com>
6529 L:      linux-wireless@vger.kernel.org
6530 S:      Maintained
6531 F:      drivers/net/wireless/mwifiex/
6532
6533 MARVELL MWL8K WIRELESS DRIVER
6534 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6535 L:      linux-wireless@vger.kernel.org
6536 S:      Odd Fixes
6537 F:      drivers/net/wireless/mwl8k.c
6538
6539 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6540 M:      Nicolas Pitre <nico@fluxnic.net>
6541 S:      Odd Fixes
6542 F:      drivers/mmc/host/mvsdio.*
6543
6544 MATROX FRAMEBUFFER DRIVER
6545 L:      linux-fbdev@vger.kernel.org
6546 S:      Orphan
6547 F:      drivers/video/fbdev/matrox/matroxfb_*
6548 F:      include/uapi/linux/matroxfb.h
6549
6550 MAX16065 HARDWARE MONITOR DRIVER
6551 M:      Guenter Roeck <linux@roeck-us.net>
6552 L:      lm-sensors@lm-sensors.org
6553 S:      Maintained
6554 F:      Documentation/hwmon/max16065
6555 F:      drivers/hwmon/max16065.c
6556
6557 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6558 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6559 L:      lm-sensors@lm-sensors.org
6560 S:      Maintained
6561 F:      Documentation/hwmon/max6650
6562 F:      drivers/hwmon/max6650.c
6563
6564 MAX6697 HARDWARE MONITOR DRIVER
6565 M:      Guenter Roeck <linux@roeck-us.net>
6566 L:      lm-sensors@lm-sensors.org
6567 S:      Maintained
6568 F:      Documentation/hwmon/max6697
6569 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6570 F:      drivers/hwmon/max6697.c
6571 F:      include/linux/platform_data/max6697.h
6572
6573 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6574 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6575 L:      linux-pm@vger.kernel.org
6576 S:      Supported
6577 F:      drivers/power/max14577_charger.c
6578 F:      drivers/power/max77693_charger.c
6579
6580 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6581 M:      Chanwoo Choi <cw00.choi@samsung.com>
6582 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6583 L:      linux-kernel@vger.kernel.org
6584 S:      Supported
6585 F:      drivers/*/max14577.c
6586 F:      drivers/*/max77686.c
6587 F:      drivers/*/max77693.c
6588 F:      drivers/extcon/extcon-max14577.c
6589 F:      drivers/extcon/extcon-max77693.c
6590 F:      drivers/rtc/rtc-max77686.c
6591 F:      drivers/clk/clk-max77686.c
6592 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6593 F:      Documentation/devicetree/bindings/mfd/max77686.txt
6594 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6595 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6596 F:      include/linux/mfd/max14577*.h
6597 F:      include/linux/mfd/max77686*.h
6598 F:      include/linux/mfd/max77693*.h
6599
6600 MAXIRADIO FM RADIO RECEIVER DRIVER
6601 M:      Hans Verkuil <hverkuil@xs4all.nl>
6602 L:      linux-media@vger.kernel.org
6603 T:      git git://linuxtv.org/media_tree.git
6604 W:      http://linuxtv.org
6605 S:      Maintained
6606 F:      drivers/media/radio/radio-maxiradio*
6607
6608 MEDIA DRIVERS FOR RENESAS - VSP1
6609 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6610 L:      linux-media@vger.kernel.org
6611 L:      linux-sh@vger.kernel.org
6612 T:      git git://linuxtv.org/media_tree.git
6613 S:      Supported
6614 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6615 F:      drivers/media/platform/vsp1/
6616
6617 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6618 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6619 P:      LinuxTV.org Project
6620 L:      linux-media@vger.kernel.org
6621 W:      http://linuxtv.org
6622 Q:      http://patchwork.kernel.org/project/linux-media/list/
6623 T:      git git://linuxtv.org/media_tree.git
6624 S:      Maintained
6625 F:      Documentation/dvb/
6626 F:      Documentation/video4linux/
6627 F:      Documentation/DocBook/media/
6628 F:      drivers/media/
6629 F:      drivers/staging/media/
6630 F:      include/media/
6631 F:      include/uapi/linux/dvb/
6632 F:      include/uapi/linux/videodev2.h
6633 F:      include/uapi/linux/media.h
6634 F:      include/uapi/linux/v4l2-*
6635 F:      include/uapi/linux/meye.h
6636 F:      include/uapi/linux/ivtv*
6637 F:      include/uapi/linux/uvcvideo.h
6638
6639 MEDIATEK MT7601U WIRELESS LAN DRIVER
6640 M:      Jakub Kicinski <kubakici@wp.pl>
6641 L:      linux-wireless@vger.kernel.org
6642 S:      Maintained
6643 F:      drivers/net/wireless/mediatek/mt7601u/
6644
6645 MEGARAID SCSI/SAS DRIVERS
6646 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6647 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6648 M:      Uday Lingala <uday.lingala@avagotech.com>
6649 L:      megaraidlinux.pdl@avagotech.com
6650 L:      linux-scsi@vger.kernel.org
6651 W:      http://www.lsi.com
6652 S:      Maintained
6653 F:      Documentation/scsi/megaraid.txt
6654 F:      drivers/scsi/megaraid.*
6655 F:      drivers/scsi/megaraid/
6656
6657 MELLANOX ETHERNET DRIVER (mlx4_en)
6658 M:      Amir Vadai <amirv@mellanox.com>
6659 M:      Ido Shamay <idos@mellanox.com>
6660 L:      netdev@vger.kernel.org
6661 S:      Supported
6662 W:      http://www.mellanox.com
6663 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6664 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6665
6666 MEMORY MANAGEMENT
6667 L:      linux-mm@kvack.org
6668 W:      http://www.linux-mm.org
6669 S:      Maintained
6670 F:      include/linux/mm.h
6671 F:      include/linux/gfp.h
6672 F:      include/linux/mmzone.h
6673 F:      include/linux/memory_hotplug.h
6674 F:      include/linux/vmalloc.h
6675 F:      mm/
6676
6677 MEMORY TECHNOLOGY DEVICES (MTD)
6678 M:      David Woodhouse <dwmw2@infradead.org>
6679 M:      Brian Norris <computersforpeace@gmail.com>
6680 L:      linux-mtd@lists.infradead.org
6681 W:      http://www.linux-mtd.infradead.org/
6682 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6683 T:      git git://git.infradead.org/linux-mtd.git
6684 T:      git git://git.infradead.org/l2-mtd.git
6685 S:      Maintained
6686 F:      drivers/mtd/
6687 F:      include/linux/mtd/
6688 F:      include/uapi/mtd/
6689
6690 MEN A21 WATCHDOG DRIVER
6691 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6692 L:      linux-watchdog@vger.kernel.org
6693 S:      Maintained
6694 F:      drivers/watchdog/mena21_wdt.c
6695
6696 MEN CHAMELEON BUS (mcb)
6697 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6698 S:      Maintained
6699 F:      drivers/mcb/
6700 F:      include/linux/mcb.h
6701
6702 MEN F21BMC (Board Management Controller)
6703 M:      Andreas Werner <andreas.werner@men.de>
6704 S:      Supported
6705 F:      drivers/mfd/menf21bmc.c
6706 F:      drivers/watchdog/menf21bmc_wdt.c
6707 F:      drivers/leds/leds-menf21bmc.c
6708 F:      drivers/hwmon/menf21bmc_hwmon.c
6709 F:      Documentation/hwmon/menf21bmc
6710
6711 METAG ARCHITECTURE
6712 M:      James Hogan <james.hogan@imgtec.com>
6713 L:      linux-metag@vger.kernel.org
6714 S:      Supported
6715 F:      arch/metag/
6716 F:      Documentation/metag/
6717 F:      Documentation/devicetree/bindings/metag/
6718 F:      drivers/clocksource/metag_generic.c
6719 F:      drivers/irqchip/irq-metag.c
6720 F:      drivers/irqchip/irq-metag-ext.c
6721 F:      drivers/tty/metag_da.c
6722
6723 MICROBLAZE ARCHITECTURE
6724 M:      Michal Simek <monstr@monstr.eu>
6725 W:      http://www.monstr.eu/fdt/
6726 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6727 S:      Supported
6728 F:      arch/microblaze/
6729
6730 MICROTEK X6 SCANNER
6731 M:      Oliver Neukum <oliver@neukum.org>
6732 S:      Maintained
6733 F:      drivers/usb/image/microtek.*
6734
6735 MIPS
6736 M:      Ralf Baechle <ralf@linux-mips.org>
6737 L:      linux-mips@linux-mips.org
6738 W:      http://www.linux-mips.org/
6739 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6740 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6741 S:      Supported
6742 F:      Documentation/mips/
6743 F:      arch/mips/
6744
6745 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6746 M:      Hans Verkuil <hverkuil@xs4all.nl>
6747 L:      linux-media@vger.kernel.org
6748 T:      git git://linuxtv.org/media_tree.git
6749 W:      http://linuxtv.org
6750 S:      Odd Fixes
6751 F:      drivers/media/radio/radio-miropcm20*
6752
6753 Mellanox MLX5 core VPI driver
6754 M:      Eli Cohen <eli@mellanox.com>
6755 L:      netdev@vger.kernel.org
6756 L:      linux-rdma@vger.kernel.org
6757 W:      http://www.mellanox.com
6758 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6759 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6760 T:      git git://openfabrics.org/~eli/connect-ib.git
6761 S:      Supported
6762 F:      drivers/net/ethernet/mellanox/mlx5/core/
6763 F:      include/linux/mlx5/
6764
6765 Mellanox MLX5 IB driver
6766 M:      Eli Cohen <eli@mellanox.com>
6767 L:      linux-rdma@vger.kernel.org
6768 W:      http://www.mellanox.com
6769 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6770 T:      git git://openfabrics.org/~eli/connect-ib.git
6771 S:      Supported
6772 F:      include/linux/mlx5/
6773 F:      drivers/infiniband/hw/mlx5/
6774
6775 MN88472 MEDIA DRIVER
6776 M:      Antti Palosaari <crope@iki.fi>
6777 L:      linux-media@vger.kernel.org
6778 W:      http://linuxtv.org/
6779 W:      http://palosaari.fi/linux/
6780 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6781 T:      git git://linuxtv.org/anttip/media_tree.git
6782 S:      Maintained
6783 F:      drivers/staging/media/mn88472/
6784 F:      drivers/media/dvb-frontends/mn88472.h
6785
6786 MN88473 MEDIA DRIVER
6787 M:      Antti Palosaari <crope@iki.fi>
6788 L:      linux-media@vger.kernel.org
6789 W:      http://linuxtv.org/
6790 W:      http://palosaari.fi/linux/
6791 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6792 T:      git git://linuxtv.org/anttip/media_tree.git
6793 S:      Maintained
6794 F:      drivers/staging/media/mn88473/
6795 F:      drivers/media/dvb-frontends/mn88473.h
6796
6797 MODULE SUPPORT
6798 M:      Rusty Russell <rusty@rustcorp.com.au>
6799 S:      Maintained
6800 F:      include/linux/module.h
6801 F:      kernel/module.c
6802
6803 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6804 W:      http://popies.net/meye/
6805 S:      Orphan
6806 F:      Documentation/video4linux/meye.txt
6807 F:      drivers/media/pci/meye/
6808 F:      include/uapi/linux/meye.h
6809
6810 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6811 M:      Jiri Slaby <jirislaby@gmail.com>
6812 S:      Maintained
6813 F:      Documentation/serial/moxa-smartio
6814 F:      drivers/tty/mxser.*
6815
6816 MR800 AVERMEDIA USB FM RADIO DRIVER
6817 M:      Alexey Klimov <klimov.linux@gmail.com>
6818 L:      linux-media@vger.kernel.org
6819 T:      git git://linuxtv.org/media_tree.git
6820 S:      Maintained
6821 F:      drivers/media/radio/radio-mr800.c
6822
6823 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6824 M:      Alan Ott <alan@signal11.us>
6825 L:      linux-wpan@vger.kernel.org
6826 S:      Maintained
6827 F:      drivers/net/ieee802154/mrf24j40.c
6828
6829 MSI LAPTOP SUPPORT
6830 M:      "Lee, Chun-Yi" <jlee@suse.com>
6831 L:      platform-driver-x86@vger.kernel.org
6832 S:      Maintained
6833 F:      drivers/platform/x86/msi-laptop.c
6834
6835 MSI WMI SUPPORT
6836 L:      platform-driver-x86@vger.kernel.org
6837 S:      Orphan
6838 F:      drivers/platform/x86/msi-wmi.c
6839
6840 MSI001 MEDIA DRIVER
6841 M:      Antti Palosaari <crope@iki.fi>
6842 L:      linux-media@vger.kernel.org
6843 W:      http://linuxtv.org/
6844 W:      http://palosaari.fi/linux/
6845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6846 T:      git git://linuxtv.org/anttip/media_tree.git
6847 S:      Maintained
6848 F:      drivers/media/tuners/msi001*
6849
6850 MSI2500 MEDIA DRIVER
6851 M:      Antti Palosaari <crope@iki.fi>
6852 L:      linux-media@vger.kernel.org
6853 W:      http://linuxtv.org/
6854 W:      http://palosaari.fi/linux/
6855 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6856 T:      git git://linuxtv.org/anttip/media_tree.git
6857 S:      Maintained
6858 F:      drivers/media/usb/msi2500/
6859
6860 MSYSTEMS DISKONCHIP G3 MTD DRIVER
6861 M:      Robert Jarzmik <robert.jarzmik@free.fr>
6862 L:      linux-mtd@lists.infradead.org
6863 S:      Maintained
6864 F:      drivers/mtd/devices/docg3*
6865
6866 MT9M032 APTINA SENSOR DRIVER
6867 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6868 L:      linux-media@vger.kernel.org
6869 T:      git git://linuxtv.org/media_tree.git
6870 S:      Maintained
6871 F:      drivers/media/i2c/mt9m032.c
6872 F:      include/media/mt9m032.h
6873
6874 MT9P031 APTINA CAMERA SENSOR
6875 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6876 L:      linux-media@vger.kernel.org
6877 T:      git git://linuxtv.org/media_tree.git
6878 S:      Maintained
6879 F:      drivers/media/i2c/mt9p031.c
6880 F:      include/media/mt9p031.h
6881
6882 MT9T001 APTINA CAMERA SENSOR
6883 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6884 L:      linux-media@vger.kernel.org
6885 T:      git git://linuxtv.org/media_tree.git
6886 S:      Maintained
6887 F:      drivers/media/i2c/mt9t001.c
6888 F:      include/media/mt9t001.h
6889
6890 MT9V032 APTINA CAMERA SENSOR
6891 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6892 L:      linux-media@vger.kernel.org
6893 T:      git git://linuxtv.org/media_tree.git
6894 S:      Maintained
6895 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
6896 F:      drivers/media/i2c/mt9v032.c
6897 F:      include/media/mt9v032.h
6898
6899 MULTIFUNCTION DEVICES (MFD)
6900 M:      Samuel Ortiz <sameo@linux.intel.com>
6901 M:      Lee Jones <lee.jones@linaro.org>
6902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
6903 S:      Supported
6904 F:      drivers/mfd/
6905 F:      include/linux/mfd/
6906
6907 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
6908 M:      Ulf Hansson <ulf.hansson@linaro.org>
6909 L:      linux-mmc@vger.kernel.org
6910 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
6911 S:      Maintained
6912 F:      drivers/mmc/
6913 F:      include/linux/mmc/
6914 F:      include/uapi/linux/mmc/
6915
6916 MULTIMEDIA CARD (MMC) ETC. OVER SPI
6917 S:      Orphan
6918 F:      drivers/mmc/host/mmc_spi.c
6919 F:      include/linux/spi/mmc_spi.h
6920
6921 MULTISOUND SOUND DRIVER
6922 M:      Andrew Veliath <andrewtv@usa.net>
6923 S:      Maintained
6924 F:      Documentation/sound/oss/MultiSound
6925 F:      sound/oss/msnd*
6926
6927 MULTITECH MULTIPORT CARD (ISICOM)
6928 S:      Orphan
6929 F:      drivers/tty/isicom.c
6930 F:      include/linux/isicom.h
6931
6932 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
6933 M:      Felipe Balbi <balbi@ti.com>
6934 L:      linux-usb@vger.kernel.org
6935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6936 S:      Maintained
6937 F:      drivers/usb/musb/
6938
6939 MXL5007T MEDIA DRIVER
6940 M:      Michael Krufky <mkrufky@linuxtv.org>
6941 L:      linux-media@vger.kernel.org
6942 W:      http://linuxtv.org/
6943 W:      http://github.com/mkrufky
6944 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6945 T:      git git://linuxtv.org/mkrufky/tuners.git
6946 S:      Maintained
6947 F:      drivers/media/tuners/mxl5007t.*
6948
6949 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
6950 M:      Hyong-Youb Kim <hykim@myri.com>
6951 L:      netdev@vger.kernel.org
6952 W:      https://www.myricom.com/support/downloads/myri10ge.html
6953 S:      Supported
6954 F:      drivers/net/ethernet/myricom/myri10ge/
6955
6956 NATSEMI ETHERNET DRIVER (DP8381x)
6957 S:      Orphan
6958 F:      drivers/net/ethernet/natsemi/natsemi.c
6959
6960 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
6961 M:      Daniel Mack <zonque@gmail.com>
6962 S:      Maintained
6963 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6964 W:      http://www.native-instruments.com
6965 F:      sound/usb/caiaq/
6966
6967 NCP FILESYSTEM
6968 M:      Petr Vandrovec <petr@vandrovec.name>
6969 S:      Odd Fixes
6970 F:      fs/ncpfs/
6971
6972 NCR 5380 SCSI DRIVERS
6973 M:      Finn Thain <fthain@telegraphics.com.au>
6974 M:      Michael Schmitz <schmitzmic@gmail.com>
6975 L:      linux-scsi@vger.kernel.org
6976 S:      Maintained
6977 F:      Documentation/scsi/g_NCR5380.txt
6978 F:      drivers/scsi/NCR5380.*
6979 F:      drivers/scsi/arm/cumana_1.c
6980 F:      drivers/scsi/arm/oak.c
6981 F:      drivers/scsi/atari_NCR5380.c
6982 F:      drivers/scsi/atari_scsi.*
6983 F:      drivers/scsi/dmx3191d.c
6984 F:      drivers/scsi/dtc.*
6985 F:      drivers/scsi/g_NCR5380.*
6986 F:      drivers/scsi/g_NCR5380_mmio.c
6987 F:      drivers/scsi/mac_scsi.*
6988 F:      drivers/scsi/pas16.*
6989 F:      drivers/scsi/sun3_scsi.*
6990 F:      drivers/scsi/sun3_scsi_vme.c
6991 F:      drivers/scsi/t128.*
6992
6993 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
6994 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6995 L:      linux-scsi@vger.kernel.org
6996 S:      Maintained
6997 F:      drivers/scsi/NCR_D700.*
6998
6999 NCT6775 HARDWARE MONITOR DRIVER
7000 M:      Guenter Roeck <linux@roeck-us.net>
7001 L:      lm-sensors@lm-sensors.org
7002 S:      Maintained
7003 F:      Documentation/hwmon/nct6775
7004 F:      drivers/hwmon/nct6775.c
7005
7006 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7007 M:      Faisal Latif <faisal.latif@intel.com>
7008 L:      linux-rdma@vger.kernel.org
7009 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7010 S:      Supported
7011 F:      drivers/infiniband/hw/nes/
7012
7013 NETEM NETWORK EMULATOR
7014 M:      Stephen Hemminger <stephen@networkplumber.org>
7015 L:      netem@lists.linux-foundation.org
7016 S:      Maintained
7017 F:      net/sched/sch_netem.c
7018
7019 NETERION 10GbE DRIVERS (s2io/vxge)
7020 M:      Jon Mason <jdmason@kudzu.us>
7021 L:      netdev@vger.kernel.org
7022 S:      Supported
7023 F:      Documentation/networking/s2io.txt
7024 F:      Documentation/networking/vxge.txt
7025 F:      drivers/net/ethernet/neterion/
7026
7027 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7028 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7029 M:      Patrick McHardy <kaber@trash.net>
7030 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7031 L:      netfilter-devel@vger.kernel.org
7032 L:      coreteam@netfilter.org
7033 W:      http://www.netfilter.org/
7034 W:      http://www.iptables.org/
7035 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7038 S:      Supported
7039 F:      include/linux/netfilter*
7040 F:      include/linux/netfilter/
7041 F:      include/net/netfilter/
7042 F:      include/uapi/linux/netfilter*
7043 F:      include/uapi/linux/netfilter/
7044 F:      net/*/netfilter.c
7045 F:      net/*/netfilter/
7046 F:      net/netfilter/
7047 F:      net/bridge/br_netfilter*.c
7048
7049 NETLABEL
7050 M:      Paul Moore <paul@paul-moore.com>
7051 W:      http://netlabel.sf.net
7052 L:      netdev@vger.kernel.org
7053 S:      Maintained
7054 F:      Documentation/netlabel/
7055 F:      include/net/netlabel.h
7056 F:      net/netlabel/
7057
7058 NETROM NETWORK LAYER
7059 M:      Ralf Baechle <ralf@linux-mips.org>
7060 L:      linux-hams@vger.kernel.org
7061 W:      http://www.linux-ax25.org/
7062 S:      Maintained
7063 F:      include/net/netrom.h
7064 F:      include/uapi/linux/netrom.h
7065 F:      net/netrom/
7066
7067 NETWORK BLOCK DEVICE (NBD)
7068 M:      Markus Pargmann <mpa@pengutronix.de>
7069 S:      Maintained
7070 L:      nbd-general@lists.sourceforge.net
7071 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7072 F:      Documentation/blockdev/nbd.txt
7073 F:      drivers/block/nbd.c
7074 F:      include/uapi/linux/nbd.h
7075
7076 NETWORK DROP MONITOR
7077 M:      Neil Horman <nhorman@tuxdriver.com>
7078 L:      netdev@vger.kernel.org
7079 S:      Maintained
7080 W:      https://fedorahosted.org/dropwatch/
7081 F:      net/core/drop_monitor.c
7082
7083 NETWORKING [GENERAL]
7084 M:      "David S. Miller" <davem@davemloft.net>
7085 L:      netdev@vger.kernel.org
7086 W:      http://www.linuxfoundation.org/en/Net
7087 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7090 S:      Maintained
7091 F:      net/
7092 F:      include/net/
7093 F:      include/linux/in.h
7094 F:      include/linux/net.h
7095 F:      include/linux/netdevice.h
7096 F:      include/uapi/linux/in.h
7097 F:      include/uapi/linux/net.h
7098 F:      include/uapi/linux/netdevice.h
7099 F:      include/uapi/linux/net_namespace.h
7100 F:      tools/net/
7101 F:      tools/testing/selftests/net/
7102 F:      lib/random32.c
7103 F:      lib/test_bpf.c
7104
7105 NETWORKING [IPv4/IPv6]
7106 M:      "David S. Miller" <davem@davemloft.net>
7107 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7108 M:      James Morris <jmorris@namei.org>
7109 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7110 M:      Patrick McHardy <kaber@trash.net>
7111 L:      netdev@vger.kernel.org
7112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7113 S:      Maintained
7114 F:      net/ipv4/
7115 F:      net/ipv6/
7116 F:      include/net/ip*
7117 F:      arch/x86/net/*
7118
7119 NETWORKING [IPSEC]
7120 M:      Steffen Klassert <steffen.klassert@secunet.com>
7121 M:      Herbert Xu <herbert@gondor.apana.org.au>
7122 M:      "David S. Miller" <davem@davemloft.net>
7123 L:      netdev@vger.kernel.org
7124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7126 S:      Maintained
7127 F:      net/core/flow.c
7128 F:      net/xfrm/
7129 F:      net/key/
7130 F:      net/ipv4/xfrm*
7131 F:      net/ipv4/esp4.c
7132 F:      net/ipv4/ah4.c
7133 F:      net/ipv4/ipcomp.c
7134 F:      net/ipv4/ip_vti.c
7135 F:      net/ipv6/xfrm*
7136 F:      net/ipv6/esp6.c
7137 F:      net/ipv6/ah6.c
7138 F:      net/ipv6/ipcomp6.c
7139 F:      net/ipv6/ip6_vti.c
7140 F:      include/uapi/linux/xfrm.h
7141 F:      include/net/xfrm.h
7142
7143 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7144 M:      Paul Moore <paul@paul-moore.com>
7145 L:      netdev@vger.kernel.org
7146 S:      Maintained
7147
7148 NETWORKING [WIRELESS]
7149 L:      linux-wireless@vger.kernel.org
7150 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7151
7152 NETWORKING DRIVERS
7153 L:      netdev@vger.kernel.org
7154 W:      http://www.linuxfoundation.org/en/Net
7155 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7158 S:      Odd Fixes
7159 F:      drivers/net/
7160 F:      include/linux/if_*
7161 F:      include/linux/netdevice.h
7162 F:      include/linux/arcdevice.h
7163 F:      include/linux/etherdevice.h
7164 F:      include/linux/fcdevice.h
7165 F:      include/linux/fddidevice.h
7166 F:      include/linux/hippidevice.h
7167 F:      include/linux/inetdevice.h
7168 F:      include/uapi/linux/if_*
7169 F:      include/uapi/linux/netdevice.h
7170
7171 NETWORKING DRIVERS (WIRELESS)
7172 M:      Kalle Valo <kvalo@codeaurora.org>
7173 L:      linux-wireless@vger.kernel.org
7174 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7176 S:      Maintained
7177 F:      drivers/net/wireless/
7178
7179 NETXEN (1/10) GbE SUPPORT
7180 M:      Manish Chopra <manish.chopra@qlogic.com>
7181 M:      Sony Chacko <sony.chacko@qlogic.com>
7182 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7183 L:      netdev@vger.kernel.org
7184 W:      http://www.qlogic.com
7185 S:      Supported
7186 F:      drivers/net/ethernet/qlogic/netxen/
7187
7188 NFC SUBSYSTEM
7189 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7190 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7191 M:      Samuel Ortiz <sameo@linux.intel.com>
7192 L:      linux-wireless@vger.kernel.org
7193 L:      linux-nfc@lists.01.org (subscribers-only)
7194 S:      Supported
7195 F:      net/nfc/
7196 F:      include/net/nfc/
7197 F:      include/uapi/linux/nfc.h
7198 F:      drivers/nfc/
7199 F:      include/linux/platform_data/pn544.h
7200 F:      Documentation/devicetree/bindings/net/nfc/
7201
7202 NFS, SUNRPC, AND LOCKD CLIENTS
7203 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7204 M:      Anna Schumaker <anna.schumaker@netapp.com>
7205 L:      linux-nfs@vger.kernel.org
7206 W:      http://client.linux-nfs.org
7207 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7208 S:      Maintained
7209 F:      fs/lockd/
7210 F:      fs/nfs/
7211 F:      fs/nfs_common/
7212 F:      net/sunrpc/
7213 F:      include/linux/lockd/
7214 F:      include/linux/nfs*
7215 F:      include/linux/sunrpc/
7216 F:      include/uapi/linux/nfs*
7217 F:      include/uapi/linux/sunrpc/
7218
7219 NILFS2 FILESYSTEM
7220 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7221 L:      linux-nilfs@vger.kernel.org
7222 W:      http://nilfs.sourceforge.net/
7223 T:      git git://github.com/konis/nilfs2.git
7224 S:      Supported
7225 F:      Documentation/filesystems/nilfs2.txt
7226 F:      fs/nilfs2/
7227 F:      include/linux/nilfs2_fs.h
7228
7229 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7230 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7231 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7232 S:      Maintained
7233 F:      Documentation/scsi/NinjaSCSI.txt
7234 F:      drivers/scsi/pcmcia/nsp_*
7235
7236 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7237 M:      GOTO Masanori <gotom@debian.or.jp>
7238 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7239 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7240 S:      Maintained
7241 F:      Documentation/scsi/NinjaSCSI.txt
7242 F:      drivers/scsi/nsp32*
7243
7244 NIOS2 ARCHITECTURE
7245 M:      Ley Foon Tan <lftan@altera.com>
7246 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7247 T:      git git://git.rocketboards.org/linux-socfpga-next.git
7248 S:      Maintained
7249 F:      arch/nios2/
7250
7251 NOKIA N900 POWER SUPPLY DRIVERS
7252 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7253 S:      Maintained
7254 F:      include/linux/power/bq2415x_charger.h
7255 F:      include/linux/power/bq27x00_battery.h
7256 F:      include/linux/power/isp1704_charger.h
7257 F:      drivers/power/bq2415x_charger.c
7258 F:      drivers/power/bq27x00_battery.c
7259 F:      drivers/power/isp1704_charger.c
7260 F:      drivers/power/rx51_battery.c
7261
7262 NTB DRIVER CORE
7263 M:      Jon Mason <jdmason@kudzu.us>
7264 M:      Dave Jiang <dave.jiang@intel.com>
7265 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7266 S:      Supported
7267 W:      https://github.com/jonmason/ntb/wiki
7268 T:      git git://github.com/jonmason/ntb.git
7269 F:      drivers/ntb/
7270 F:      drivers/net/ntb_netdev.c
7271 F:      include/linux/ntb.h
7272 F:      include/linux/ntb_transport.h
7273
7274 NTB INTEL DRIVER
7275 M:      Jon Mason <jdmason@kudzu.us>
7276 M:      Dave Jiang <dave.jiang@intel.com>
7277 S:      Supported
7278 W:      https://github.com/jonmason/ntb/wiki
7279 T:      git git://github.com/jonmason/ntb.git
7280 F:      drivers/ntb/hw/intel/
7281
7282 NTFS FILESYSTEM
7283 M:      Anton Altaparmakov <anton@tuxera.com>
7284 L:      linux-ntfs-dev@lists.sourceforge.net
7285 W:      http://www.tuxera.com/
7286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7287 S:      Supported
7288 F:      Documentation/filesystems/ntfs.txt
7289 F:      fs/ntfs/
7290
7291 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7292 M:      Antonino Daplas <adaplas@gmail.com>
7293 L:      linux-fbdev@vger.kernel.org
7294 S:      Maintained
7295 F:      drivers/video/fbdev/riva/
7296 F:      drivers/video/fbdev/nvidia/
7297
7298 NVM EXPRESS DRIVER
7299 M:      Matthew Wilcox <willy@linux.intel.com>
7300 L:      linux-nvme@lists.infradead.org
7301 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7302 S:      Supported
7303 F:      drivers/block/nvme*
7304 F:      include/linux/nvme.h
7305
7306 NXP-NCI NFC DRIVER
7307 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7308 R:      Charles Gorand <charles.gorand@effinnov.com>
7309 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7310 S:      Supported
7311 F:      drivers/nfc/nxp-nci
7312
7313 NXP TDA998X DRM DRIVER
7314 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7315 S:      Supported
7316 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7317 F:      include/drm/i2c/tda998x.h
7318
7319 NXP TFA9879 DRIVER
7320 M:      Peter Rosin <peda@axentia.se>
7321 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7322 S:      Maintained
7323 F:      sound/soc/codecs/tfa9879*
7324
7325 OMAP SUPPORT
7326 M:      Tony Lindgren <tony@atomide.com>
7327 L:      linux-omap@vger.kernel.org
7328 W:      http://www.muru.com/linux/omap/
7329 W:      http://linux.omap.com/
7330 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7332 S:      Maintained
7333 F:      arch/arm/*omap*/
7334 F:      arch/arm/configs/omap1_defconfig
7335 F:      arch/arm/configs/omap2plus_defconfig
7336 F:      drivers/i2c/busses/i2c-omap.c
7337 F:      drivers/irqchip/irq-omap-intc.c
7338 F:      drivers/mfd/*omap*.c
7339 F:      drivers/mfd/menelaus.c
7340 F:      drivers/mfd/palmas.c
7341 F:      drivers/mfd/tps65217.c
7342 F:      drivers/mfd/tps65218.c
7343 F:      drivers/mfd/tps65910.c
7344 F:      drivers/mfd/twl-core.[ch]
7345 F:      drivers/mfd/twl4030*.c
7346 F:      drivers/mfd/twl6030*.c
7347 F:      drivers/mfd/twl6040*.c
7348 F:      drivers/regulator/palmas-regulator*.c
7349 F:      drivers/regulator/pbias-regulator.c
7350 F:      drivers/regulator/tps65217-regulator.c
7351 F:      drivers/regulator/tps65218-regulator.c
7352 F:      drivers/regulator/tps65910-regulator.c
7353 F:      drivers/regulator/twl-regulator.c
7354 F:      include/linux/i2c-omap.h
7355
7356 OMAP DEVICE TREE SUPPORT
7357 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7358 M:      Tony Lindgren <tony@atomide.com>
7359 L:      linux-omap@vger.kernel.org
7360 L:      devicetree@vger.kernel.org
7361 S:      Maintained
7362 F:      arch/arm/boot/dts/*omap*
7363 F:      arch/arm/boot/dts/*am3*
7364 F:      arch/arm/boot/dts/*am4*
7365 F:      arch/arm/boot/dts/*am5*
7366 F:      arch/arm/boot/dts/*dra7*
7367
7368 OMAP CLOCK FRAMEWORK SUPPORT
7369 M:      Paul Walmsley <paul@pwsan.com>
7370 L:      linux-omap@vger.kernel.org
7371 S:      Maintained
7372 F:      arch/arm/*omap*/*clock*
7373
7374 OMAP POWER MANAGEMENT SUPPORT
7375 M:      Kevin Hilman <khilman@deeprootsystems.com>
7376 L:      linux-omap@vger.kernel.org
7377 S:      Maintained
7378 F:      arch/arm/*omap*/*pm*
7379 F:      drivers/cpufreq/omap-cpufreq.c
7380
7381 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7382 M:      Rajendra Nayak <rnayak@ti.com>
7383 M:      Paul Walmsley <paul@pwsan.com>
7384 L:      linux-omap@vger.kernel.org
7385 S:      Maintained
7386 F:      arch/arm/mach-omap2/prm*
7387
7388 OMAP AUDIO SUPPORT
7389 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7390 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7391 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7392 L:      linux-omap@vger.kernel.org
7393 S:      Maintained
7394 F:      sound/soc/omap/
7395
7396 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7397 M:      Roger Quadros <rogerq@ti.com>
7398 M:      Tony Lindgren <tony@atomide.com>
7399 L:      linux-omap@vger.kernel.org
7400 S:      Maintained
7401 F:      drivers/memory/omap-gpmc.c
7402 F:      arch/arm/mach-omap2/*gpmc*
7403
7404 OMAP FRAMEBUFFER SUPPORT
7405 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7406 L:      linux-fbdev@vger.kernel.org
7407 L:      linux-omap@vger.kernel.org
7408 S:      Maintained
7409 F:      drivers/video/fbdev/omap/
7410
7411 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7412 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7413 L:      linux-omap@vger.kernel.org
7414 L:      linux-fbdev@vger.kernel.org
7415 S:      Maintained
7416 F:      drivers/video/fbdev/omap2/
7417 F:      Documentation/arm/OMAP/DSS
7418
7419 OMAP HARDWARE SPINLOCK SUPPORT
7420 M:      Ohad Ben-Cohen <ohad@wizery.com>
7421 L:      linux-omap@vger.kernel.org
7422 S:      Maintained
7423 F:      drivers/hwspinlock/omap_hwspinlock.c
7424
7425 OMAP MMC SUPPORT
7426 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7427 L:      linux-omap@vger.kernel.org
7428 S:      Maintained
7429 F:      drivers/mmc/host/omap.c
7430
7431 OMAP HS MMC SUPPORT
7432 L:      linux-mmc@vger.kernel.org
7433 L:      linux-omap@vger.kernel.org
7434 S:      Orphan
7435 F:      drivers/mmc/host/omap_hsmmc.c
7436
7437 OMAP RANDOM NUMBER GENERATOR SUPPORT
7438 M:      Deepak Saxena <dsaxena@plexity.net>
7439 S:      Maintained
7440 F:      drivers/char/hw_random/omap-rng.c
7441
7442 OMAP HWMOD SUPPORT
7443 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7444 M:      Paul Walmsley <paul@pwsan.com>
7445 L:      linux-omap@vger.kernel.org
7446 S:      Maintained
7447 F:      arch/arm/mach-omap2/omap_hwmod.*
7448
7449 OMAP HWMOD DATA
7450 M:      Paul Walmsley <paul@pwsan.com>
7451 L:      linux-omap@vger.kernel.org
7452 S:      Maintained
7453 F:      arch/arm/mach-omap2/omap_hwmod*data*
7454
7455 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7456 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7457 L:      linux-omap@vger.kernel.org
7458 S:      Maintained
7459 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7460
7461 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7462 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7463 L:      linux-media@vger.kernel.org
7464 S:      Maintained
7465 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7466 F:      drivers/media/platform/omap3isp/
7467 F:      drivers/staging/media/omap4iss/
7468
7469 OMAP USB SUPPORT
7470 M:      Felipe Balbi <balbi@ti.com>
7471 L:      linux-usb@vger.kernel.org
7472 L:      linux-omap@vger.kernel.org
7473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7474 S:      Maintained
7475 F:      drivers/usb/*/*omap*
7476 F:      arch/arm/*omap*/usb*
7477
7478 OMAP GPIO DRIVER
7479 M:      Javier Martinez Canillas <javier@dowhile0.org>
7480 M:      Santosh Shilimkar <ssantosh@kernel.org>
7481 M:      Kevin Hilman <khilman@deeprootsystems.com>
7482 L:      linux-omap@vger.kernel.org
7483 S:      Maintained
7484 F:      drivers/gpio/gpio-omap.c
7485
7486 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7487 M:      Mark Jackson <mpfj@newflow.co.uk>
7488 L:      linux-omap@vger.kernel.org
7489 S:      Maintained
7490 F:      arch/arm/boot/dts/am335x-nano.dts
7491
7492 OMFS FILESYSTEM
7493 M:      Bob Copeland <me@bobcopeland.com>
7494 L:      linux-karma-devel@lists.sourceforge.net
7495 S:      Maintained
7496 F:      Documentation/filesystems/omfs.txt
7497 F:      fs/omfs/
7498
7499 OMNIKEY CARDMAN 4000 DRIVER
7500 M:      Harald Welte <laforge@gnumonks.org>
7501 S:      Maintained
7502 F:      drivers/char/pcmcia/cm4000_cs.c
7503 F:      include/linux/cm4000_cs.h
7504 F:      include/uapi/linux/cm4000_cs.h
7505
7506 OMNIKEY CARDMAN 4040 DRIVER
7507 M:      Harald Welte <laforge@gnumonks.org>
7508 S:      Maintained
7509 F:      drivers/char/pcmcia/cm4040_cs.*
7510
7511 OMNIVISION OV7670 SENSOR DRIVER
7512 M:      Jonathan Corbet <corbet@lwn.net>
7513 L:      linux-media@vger.kernel.org
7514 T:      git git://linuxtv.org/media_tree.git
7515 S:      Maintained
7516 F:      drivers/media/i2c/ov7670.c
7517
7518 ONENAND FLASH DRIVER
7519 M:      Kyungmin Park <kyungmin.park@samsung.com>
7520 L:      linux-mtd@lists.infradead.org
7521 S:      Maintained
7522 F:      drivers/mtd/onenand/
7523 F:      include/linux/mtd/onenand*.h
7524
7525 ONSTREAM SCSI TAPE DRIVER
7526 M:      Willem Riede <osst@riede.org>
7527 L:      osst-users@lists.sourceforge.net
7528 L:      linux-scsi@vger.kernel.org
7529 S:      Maintained
7530 F:      Documentation/scsi/osst.txt
7531 F:      drivers/scsi/osst.*
7532 F:      drivers/scsi/osst_*.h
7533 F:      drivers/scsi/st.h
7534
7535 OPENCORES I2C BUS DRIVER
7536 M:      Peter Korsgaard <jacmet@sunsite.dk>
7537 L:      linux-i2c@vger.kernel.org
7538 S:      Maintained
7539 F:      Documentation/i2c/busses/i2c-ocores
7540 F:      drivers/i2c/busses/i2c-ocores.c
7541
7542 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7543 M:      Grant Likely <grant.likely@linaro.org>
7544 M:      Rob Herring <robh+dt@kernel.org>
7545 L:      devicetree@vger.kernel.org
7546 W:      http://www.devicetree.org/
7547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7548 S:      Maintained
7549 F:      drivers/of/
7550 F:      include/linux/of*.h
7551 F:      scripts/dtc/
7552
7553 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7554 M:      Rob Herring <robh+dt@kernel.org>
7555 M:      Pawel Moll <pawel.moll@arm.com>
7556 M:      Mark Rutland <mark.rutland@arm.com>
7557 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7558 M:      Kumar Gala <galak@codeaurora.org>
7559 L:      devicetree@vger.kernel.org
7560 S:      Maintained
7561 F:      Documentation/devicetree/
7562 F:      arch/*/boot/dts/
7563 F:      include/dt-bindings/
7564
7565 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7566 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7567 L:      devicetree@vger.kernel.org
7568 S:      Maintained
7569 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7570 F:      Documentation/devicetree/overlay-notes.txt
7571 F:      drivers/of/overlay.c
7572 F:      drivers/of/resolver.c
7573
7574 OPENRISC ARCHITECTURE
7575 M:      Jonas Bonn <jonas@southpole.se>
7576 W:      http://openrisc.net
7577 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7578 S:      Maintained
7579 T:      git git://openrisc.net/~jonas/linux
7580 F:      arch/openrisc/
7581
7582 OPENVSWITCH
7583 M:      Pravin Shelar <pshelar@nicira.com>
7584 L:      netdev@vger.kernel.org
7585 L:      dev@openvswitch.org
7586 W:      http://openvswitch.org
7587 S:      Maintained
7588 F:      net/openvswitch/
7589 F:      include/uapi/linux/openvswitch.h
7590
7591 OPL4 DRIVER
7592 M:      Clemens Ladisch <clemens@ladisch.de>
7593 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7594 T:      git git://git.alsa-project.org/alsa-kernel.git
7595 S:      Maintained
7596 F:      sound/drivers/opl4/
7597
7598 OPROFILE
7599 M:      Robert Richter <rric@kernel.org>
7600 L:      oprofile-list@lists.sf.net
7601 S:      Maintained
7602 F:      arch/*/include/asm/oprofile*.h
7603 F:      arch/*/oprofile/
7604 F:      drivers/oprofile/
7605 F:      include/linux/oprofile.h
7606
7607 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7608 M:      Mark Fasheh <mfasheh@suse.com>
7609 M:      Joel Becker <jlbec@evilplan.org>
7610 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7611 W:      http://ocfs2.wiki.kernel.org
7612 S:      Supported
7613 F:      Documentation/filesystems/ocfs2.txt
7614 F:      Documentation/filesystems/dlmfs.txt
7615 F:      fs/ocfs2/
7616
7617 ORINOCO DRIVER
7618 L:      linux-wireless@vger.kernel.org
7619 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7620 W:      http://www.nongnu.org/orinoco/
7621 S:      Orphan
7622 F:      drivers/net/wireless/orinoco/
7623
7624 OSD LIBRARY and FILESYSTEM
7625 M:      Boaz Harrosh <ooo@electrozaur.com>
7626 M:      Benny Halevy <bhalevy@primarydata.com>
7627 L:      osd-dev@open-osd.org
7628 W:      http://open-osd.org
7629 T:      git git://git.open-osd.org/open-osd.git
7630 S:      Maintained
7631 F:      drivers/scsi/osd/
7632 F:      include/scsi/osd_*
7633 F:      fs/exofs/
7634
7635 OVERLAY FILESYSTEM
7636 M:      Miklos Szeredi <miklos@szeredi.hu>
7637 L:      linux-unionfs@vger.kernel.org
7638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7639 S:      Supported
7640 F:      fs/overlayfs/
7641 F:      Documentation/filesystems/overlayfs.txt
7642
7643 P54 WIRELESS DRIVER
7644 M:      Christian Lamparter <chunkeey@googlemail.com>
7645 L:      linux-wireless@vger.kernel.org
7646 W:      http://wireless.kernel.org/en/users/Drivers/p54
7647 S:      Maintained
7648 F:      drivers/net/wireless/p54/
7649
7650 PA SEMI ETHERNET DRIVER
7651 M:      Olof Johansson <olof@lixom.net>
7652 L:      netdev@vger.kernel.org
7653 S:      Maintained
7654 F:      drivers/net/ethernet/pasemi/*
7655
7656 PA SEMI SMBUS DRIVER
7657 M:      Olof Johansson <olof@lixom.net>
7658 L:      linux-i2c@vger.kernel.org
7659 S:      Maintained
7660 F:      drivers/i2c/busses/i2c-pasemi.c
7661
7662 PADATA PARALLEL EXECUTION MECHANISM
7663 M:      Steffen Klassert <steffen.klassert@secunet.com>
7664 L:      linux-crypto@vger.kernel.org
7665 S:      Maintained
7666 F:      kernel/padata.c
7667 F:      include/linux/padata.h
7668 F:      Documentation/padata.txt
7669
7670 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7671 M:      Harald Welte <laforge@gnumonks.org>
7672 L:      platform-driver-x86@vger.kernel.org
7673 S:      Maintained
7674 F:      drivers/platform/x86/panasonic-laptop.c
7675
7676 PANASONIC MN10300/AM33/AM34 PORT
7677 M:      David Howells <dhowells@redhat.com>
7678 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7679 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7680 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7681 S:      Maintained
7682 F:      Documentation/mn10300/
7683 F:      arch/mn10300/
7684
7685 PARALLEL PORT SUBSYSTEM
7686 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7687 M:      Sudip Mukherjee <sudip@vectorindia.org>
7688 L:      linux-parport@lists.infradead.org (subscribers-only)
7689 S:      Maintained
7690 F:      drivers/parport/
7691 F:      include/linux/parport*.h
7692 F:      drivers/char/ppdev.c
7693 F:      include/uapi/linux/ppdev.h
7694 F:      Documentation/parport*.txt
7695
7696 PARAVIRT_OPS INTERFACE
7697 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7698 M:      Chris Wright <chrisw@sous-sol.org>
7699 M:      Alok Kataria <akataria@vmware.com>
7700 M:      Rusty Russell <rusty@rustcorp.com.au>
7701 L:      virtualization@lists.linux-foundation.org
7702 S:      Supported
7703 F:      Documentation/virtual/paravirt_ops.txt
7704 F:      arch/*/kernel/paravirt*
7705 F:      arch/*/include/asm/paravirt.h
7706
7707 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7708 M:      Tim Waugh <tim@cyberelk.net>
7709 L:      linux-parport@lists.infradead.org (subscribers-only)
7710 S:      Maintained
7711 F:      Documentation/blockdev/paride.txt
7712 F:      drivers/block/paride/
7713
7714 PARISC ARCHITECTURE
7715 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7716 M:      Helge Deller <deller@gmx.de>
7717 L:      linux-parisc@vger.kernel.org
7718 W:      http://www.parisc-linux.org/
7719 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7722 S:      Maintained
7723 F:      arch/parisc/
7724 F:      Documentation/parisc/
7725 F:      drivers/parisc/
7726 F:      drivers/char/agp/parisc-agp.c
7727 F:      drivers/input/serio/gscps2.c
7728 F:      drivers/parport/parport_gsc.*
7729 F:      drivers/tty/serial/8250/8250_gsc.c
7730 F:      drivers/video/fbdev/sti*
7731 F:      drivers/video/console/sti*
7732 F:      drivers/video/logo/logo_parisc*
7733
7734 PC87360 HARDWARE MONITORING DRIVER
7735 M:      Jim Cromie <jim.cromie@gmail.com>
7736 L:      lm-sensors@lm-sensors.org
7737 S:      Maintained
7738 F:      Documentation/hwmon/pc87360
7739 F:      drivers/hwmon/pc87360.c
7740
7741 PC8736x GPIO DRIVER
7742 M:      Jim Cromie <jim.cromie@gmail.com>
7743 S:      Maintained
7744 F:      drivers/char/pc8736x_gpio.c
7745
7746 PC87427 HARDWARE MONITORING DRIVER
7747 M:      Jean Delvare <jdelvare@suse.com>
7748 L:      lm-sensors@lm-sensors.org
7749 S:      Maintained
7750 F:      Documentation/hwmon/pc87427
7751 F:      drivers/hwmon/pc87427.c
7752
7753 PCA9532 LED DRIVER
7754 M:      Riku Voipio <riku.voipio@iki.fi>
7755 S:      Maintained
7756 F:      drivers/leds/leds-pca9532.c
7757 F:      include/linux/leds-pca9532.h
7758
7759 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7760 M:      Guenter Roeck <linux@roeck-us.net>
7761 L:      linux-i2c@vger.kernel.org
7762 S:      Maintained
7763 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7764
7765 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7766 M:      Khalid Aziz <khalid@gonehiking.org>
7767 S:      Maintained
7768 F:      drivers/firmware/pcdp.*
7769
7770 PCI ERROR RECOVERY
7771 M:      Linas Vepstas <linasvepstas@gmail.com>
7772 L:      linux-pci@vger.kernel.org
7773 S:      Supported
7774 F:      Documentation/PCI/pci-error-recovery.txt
7775
7776 PCI SUBSYSTEM
7777 M:      Bjorn Helgaas <bhelgaas@google.com>
7778 L:      linux-pci@vger.kernel.org
7779 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7781 S:      Supported
7782 F:      Documentation/PCI/
7783 F:      drivers/pci/
7784 F:      include/linux/pci*
7785 F:      arch/x86/pci/
7786 F:      arch/x86/kernel/quirks.c
7787
7788 PCI DRIVER FOR ARM VERSATILE PLATFORM
7789 M:      Rob Herring <robh@kernel.org>
7790 L:      linux-pci@vger.kernel.org
7791 L:      linux-arm-kernel@lists.infradead.org
7792 S:      Maintained
7793 F:      Documentation/devicetree/bindings/pci/versatile.txt
7794 F:      drivers/pci/host/pci-versatile.c
7795
7796 PCI DRIVER FOR APPLIEDMICRO XGENE
7797 M:      Tanmay Inamdar <tinamdar@apm.com>
7798 L:      linux-pci@vger.kernel.org
7799 L:      linux-arm-kernel@lists.infradead.org
7800 S:      Maintained
7801 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7802 F:      drivers/pci/host/pci-xgene.c
7803
7804 PCI DRIVER FOR FREESCALE LAYERSCAPE
7805 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7806 M:      Mingkai Hu <mingkai.hu@freescale.com>
7807 M:      Roy Zang <tie-fei.zang@freescale.com>
7808 L:      linuxppc-dev@lists.ozlabs.org
7809 L:      linux-pci@vger.kernel.org
7810 L:      linux-arm-kernel@lists.infradead.org
7811 S:      Maintained
7812 F:      drivers/pci/host/*layerscape*
7813
7814 PCI DRIVER FOR IMX6
7815 M:      Richard Zhu <Richard.Zhu@freescale.com>
7816 M:      Lucas Stach <l.stach@pengutronix.de>
7817 L:      linux-pci@vger.kernel.org
7818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7819 S:      Maintained
7820 F:      drivers/pci/host/*imx6*
7821
7822 PCI DRIVER FOR TI KEYSTONE
7823 M:      Murali Karicheri <m-karicheri2@ti.com>
7824 L:      linux-pci@vger.kernel.org
7825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7826 S:      Maintained
7827 F:      drivers/pci/host/*keystone*
7828
7829 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7830 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7831 M:      Jason Cooper <jason@lakedaemon.net>
7832 L:      linux-pci@vger.kernel.org
7833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7834 S:      Maintained
7835 F:      drivers/pci/host/*mvebu*
7836
7837 PCI DRIVER FOR NVIDIA TEGRA
7838 M:      Thierry Reding <thierry.reding@gmail.com>
7839 L:      linux-tegra@vger.kernel.org
7840 L:      linux-pci@vger.kernel.org
7841 S:      Supported
7842 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
7843 F:      drivers/pci/host/pci-tegra.c
7844
7845 PCI DRIVER FOR TI DRA7XX
7846 M:      Kishon Vijay Abraham I <kishon@ti.com>
7847 L:      linux-omap@vger.kernel.org
7848 L:      linux-pci@vger.kernel.org
7849 S:      Supported
7850 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
7851 F:      drivers/pci/host/pci-dra7xx.c
7852
7853 PCI DRIVER FOR RENESAS R-CAR
7854 M:      Simon Horman <horms@verge.net.au>
7855 L:      linux-pci@vger.kernel.org
7856 L:      linux-sh@vger.kernel.org
7857 S:      Maintained
7858 F:      drivers/pci/host/*rcar*
7859
7860 PCI DRIVER FOR SAMSUNG EXYNOS
7861 M:      Jingoo Han <jingoohan1@gmail.com>
7862 L:      linux-pci@vger.kernel.org
7863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7864 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7865 S:      Maintained
7866 F:      drivers/pci/host/pci-exynos.c
7867
7868 PCI DRIVER FOR SYNOPSIS DESIGNWARE
7869 M:      Jingoo Han <jingoohan1@gmail.com>
7870 M:      Pratyush Anand <pratyush.anand@gmail.com>
7871 L:      linux-pci@vger.kernel.org
7872 S:      Maintained
7873 F:      drivers/pci/host/*designware*
7874
7875 PCI DRIVER FOR GENERIC OF HOSTS
7876 M:      Will Deacon <will.deacon@arm.com>
7877 L:      linux-pci@vger.kernel.org
7878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7879 S:      Maintained
7880 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
7881 F:      drivers/pci/host/pci-host-generic.c
7882
7883 PCIE DRIVER FOR ST SPEAR13XX
7884 M:      Pratyush Anand <pratyush.anand@gmail.com>
7885 L:      linux-pci@vger.kernel.org
7886 S:      Maintained
7887 F:      drivers/pci/host/*spear*
7888
7889 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
7890 M:      Duc Dang <dhdang@apm.com>
7891 L:      linux-pci@vger.kernel.org
7892 L:      linux-arm-kernel@lists.infradead.org
7893 S:      Maintained
7894 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
7895 F:      drivers/pci/host/pci-xgene-msi.c
7896
7897 PCMCIA SUBSYSTEM
7898 P:      Linux PCMCIA Team
7899 L:      linux-pcmcia@lists.infradead.org
7900 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
7901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
7902 S:      Maintained
7903 F:      Documentation/pcmcia/
7904 F:      drivers/pcmcia/
7905 F:      include/pcmcia/
7906
7907 PCNET32 NETWORK DRIVER
7908 M:      Don Fry <pcnet32@frontier.com>
7909 L:      netdev@vger.kernel.org
7910 S:      Maintained
7911 F:      drivers/net/ethernet/amd/pcnet32.c
7912
7913 PCRYPT PARALLEL CRYPTO ENGINE
7914 M:      Steffen Klassert <steffen.klassert@secunet.com>
7915 L:      linux-crypto@vger.kernel.org
7916 S:      Maintained
7917 F:      crypto/pcrypt.c
7918 F:      include/crypto/pcrypt.h
7919
7920 PER-CPU MEMORY ALLOCATOR
7921 M:      Tejun Heo <tj@kernel.org>
7922 M:      Christoph Lameter <cl@linux-foundation.org>
7923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
7924 S:      Maintained
7925 F:      include/linux/percpu*.h
7926 F:      mm/percpu*.c
7927 F:      arch/*/include/asm/percpu.h
7928
7929 PER-TASK DELAY ACCOUNTING
7930 M:      Balbir Singh <bsingharora@gmail.com>
7931 S:      Maintained
7932 F:      include/linux/delayacct.h
7933 F:      kernel/delayacct.c
7934
7935 PERFORMANCE EVENTS SUBSYSTEM
7936 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
7937 M:      Ingo Molnar <mingo@redhat.com>
7938 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
7939 L:      linux-kernel@vger.kernel.org
7940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
7941 S:      Supported
7942 F:      kernel/events/*
7943 F:      include/linux/perf_event.h
7944 F:      include/uapi/linux/perf_event.h
7945 F:      arch/*/kernel/perf_event*.c
7946 F:      arch/*/kernel/*/perf_event*.c
7947 F:      arch/*/kernel/*/*/perf_event*.c
7948 F:      arch/*/include/asm/perf_event.h
7949 F:      arch/*/kernel/perf_callchain.c
7950 F:      tools/perf/
7951
7952 PERSONALITY HANDLING
7953 M:      Christoph Hellwig <hch@infradead.org>
7954 L:      linux-abi-devel@lists.sourceforge.net
7955 S:      Maintained
7956 F:      include/linux/personality.h
7957 F:      include/uapi/linux/personality.h
7958
7959 PHONET PROTOCOL
7960 M:      Remi Denis-Courmont <courmisch@gmail.com>
7961 S:      Supported
7962 F:      Documentation/networking/phonet.txt
7963 F:      include/linux/phonet.h
7964 F:      include/net/phonet/
7965 F:      include/uapi/linux/phonet.h
7966 F:      net/phonet/
7967
7968 PHRAM MTD DRIVER
7969 M:      Joern Engel <joern@lazybastard.org>
7970 L:      linux-mtd@lists.infradead.org
7971 S:      Maintained
7972 F:      drivers/mtd/devices/phram.c
7973
7974 PICOLCD HID DRIVER
7975 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
7976 L:      linux-input@vger.kernel.org
7977 S:      Maintained
7978 F:      drivers/hid/hid-picolcd*
7979
7980 PICOXCELL SUPPORT
7981 M:      Jamie Iles <jamie@jamieiles.com>
7982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7983 T:      git git://github.com/jamieiles/linux-2.6-ji.git
7984 S:      Supported
7985 F:      arch/arm/boot/dts/picoxcell*
7986 F:      arch/arm/mach-picoxcell/
7987 F:      drivers/crypto/picoxcell*
7988
7989 PIN CONTROL SUBSYSTEM
7990 M:      Linus Walleij <linus.walleij@linaro.org>
7991 L:      linux-gpio@vger.kernel.org
7992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
7993 S:      Maintained
7994 F:      drivers/pinctrl/
7995 F:      include/linux/pinctrl/
7996
7997 PIN CONTROLLER - ATMEL AT91
7998 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
7999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8000 S:      Maintained
8001 F:      drivers/pinctrl/pinctrl-at91.*
8002
8003 PIN CONTROLLER - INTEL
8004 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8005 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8006 S:      Maintained
8007 F:      drivers/pinctrl/intel/
8008
8009 PIN CONTROLLER - RENESAS
8010 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8011 L:      linux-sh@vger.kernel.org
8012 S:      Maintained
8013 F:      drivers/pinctrl/sh-pfc/
8014
8015 PIN CONTROLLER - SAMSUNG
8016 M:      Tomasz Figa <tomasz.figa@gmail.com>
8017 M:      Thomas Abraham <thomas.abraham@linaro.org>
8018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8019 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8020 S:      Maintained
8021 F:      drivers/pinctrl/samsung/
8022
8023 PIN CONTROLLER - ST SPEAR
8024 M:      Viresh Kumar <vireshk@kernel.org>
8025 L:      spear-devel@list.st.com
8026 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8027 W:      http://www.st.com/spear
8028 S:      Maintained
8029 F:      drivers/pinctrl/spear/
8030
8031 PKTCDVD DRIVER
8032 M:      Jiri Kosina <jkosina@suse.com>
8033 S:      Maintained
8034 F:      drivers/block/pktcdvd.c
8035 F:      include/linux/pktcdvd.h
8036 F:      include/uapi/linux/pktcdvd.h
8037
8038 PKUNITY SOC DRIVERS
8039 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8040 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8041 S:      Maintained
8042 T:      git git://github.com/gxt/linux.git
8043 F:      drivers/input/serio/i8042-unicore32io.h
8044 F:      drivers/i2c/busses/i2c-puv3.c
8045 F:      drivers/video/fbdev/fb-puv3.c
8046 F:      drivers/rtc/rtc-puv3.c
8047
8048 PMBUS HARDWARE MONITORING DRIVERS
8049 M:      Guenter Roeck <linux@roeck-us.net>
8050 L:      lm-sensors@lm-sensors.org
8051 W:      http://www.lm-sensors.org/
8052 W:      http://www.roeck-us.net/linux/drivers/
8053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8054 S:      Maintained
8055 F:      Documentation/hwmon/pmbus
8056 F:      drivers/hwmon/pmbus/
8057 F:      include/linux/i2c/pmbus.h
8058
8059 PMC SIERRA MaxRAID DRIVER
8060 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
8061 L:      linux-scsi@vger.kernel.org
8062 W:      http://www.pmc-sierra.com/
8063 S:      Supported
8064 F:      drivers/scsi/pmcraid.*
8065
8066 PMC SIERRA PM8001 DRIVER
8067 M:      xjtuwjp@gmail.com
8068 M:      lindar_liu@usish.com
8069 L:      pmchba@pmcs.com
8070 L:      linux-scsi@vger.kernel.org
8071 S:      Supported
8072 F:      drivers/scsi/pm8001/
8073
8074 POSIX CLOCKS and TIMERS
8075 M:      Thomas Gleixner <tglx@linutronix.de>
8076 L:      linux-kernel@vger.kernel.org
8077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8078 S:      Maintained
8079 F:      fs/timerfd.c
8080 F:      include/linux/timer*
8081 F:      kernel/time/*timer*
8082
8083 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8084 M:      Sebastian Reichel <sre@kernel.org>
8085 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8086 M:      David Woodhouse <dwmw2@infradead.org>
8087 L:      linux-pm@vger.kernel.org
8088 T:      git git://git.infradead.org/battery-2.6.git
8089 S:      Maintained
8090 F:      include/linux/power_supply.h
8091 F:      drivers/power/
8092
8093 PNP SUPPORT
8094 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8095 S:      Maintained
8096 F:      drivers/pnp/
8097
8098 PNXxxxx I2C DRIVER
8099 M:      Vitaly Wool <vitalywool@gmail.com>
8100 L:      linux-i2c@vger.kernel.org
8101 S:      Maintained
8102 F:      drivers/i2c/busses/i2c-pnx.c
8103
8104 PPP PROTOCOL DRIVERS AND COMPRESSORS
8105 M:      Paul Mackerras <paulus@samba.org>
8106 L:      linux-ppp@vger.kernel.org
8107 S:      Maintained
8108 F:      drivers/net/ppp/ppp_*
8109
8110 PPP OVER ATM (RFC 2364)
8111 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8112 S:      Maintained
8113 F:      net/atm/pppoatm.c
8114 F:      include/uapi/linux/atmppp.h
8115
8116 PPP OVER ETHERNET
8117 M:      Michal Ostrowski <mostrows@earthlink.net>
8118 S:      Maintained
8119 F:      drivers/net/ppp/pppoe.c
8120 F:      drivers/net/ppp/pppox.c
8121
8122 PPP OVER L2TP
8123 M:      James Chapman <jchapman@katalix.com>
8124 S:      Maintained
8125 F:      net/l2tp/l2tp_ppp.c
8126 F:      include/linux/if_pppol2tp.h
8127 F:      include/uapi/linux/if_pppol2tp.h
8128
8129 PPS SUPPORT
8130 M:      Rodolfo Giometti <giometti@enneenne.com>
8131 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8132 L:      linuxpps@ml.enneenne.com (subscribers-only)
8133 S:      Maintained
8134 F:      Documentation/pps/
8135 F:      drivers/pps/
8136 F:      include/linux/pps*.h
8137
8138 PPTP DRIVER
8139 M:      Dmitry Kozlov <xeb@mail.ru>
8140 L:      netdev@vger.kernel.org
8141 S:      Maintained
8142 F:      drivers/net/ppp/pptp.c
8143 W:      http://sourceforge.net/projects/accel-pptp
8144
8145 PREEMPTIBLE KERNEL
8146 M:      Robert Love <rml@tech9.net>
8147 L:      kpreempt-tech@lists.sourceforge.net
8148 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8149 S:      Supported
8150 F:      Documentation/preempt-locking.txt
8151 F:      include/linux/preempt.h
8152
8153 PRISM54 WIRELESS DRIVER
8154 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8155 L:      linux-wireless@vger.kernel.org
8156 W:      http://wireless.kernel.org/en/users/Drivers/p54
8157 S:      Obsolete
8158 F:      drivers/net/wireless/prism54/
8159
8160 PS3 NETWORK SUPPORT
8161 M:      Geoff Levand <geoff@infradead.org>
8162 L:      netdev@vger.kernel.org
8163 L:      linuxppc-dev@lists.ozlabs.org
8164 S:      Maintained
8165 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8166
8167 PS3 PLATFORM SUPPORT
8168 M:      Geoff Levand <geoff@infradead.org>
8169 L:      linuxppc-dev@lists.ozlabs.org
8170 S:      Maintained
8171 F:      arch/powerpc/boot/ps3*
8172 F:      arch/powerpc/include/asm/lv1call.h
8173 F:      arch/powerpc/include/asm/ps3*.h
8174 F:      arch/powerpc/platforms/ps3/
8175 F:      drivers/*/ps3*
8176 F:      drivers/ps3/
8177 F:      drivers/rtc/rtc-ps3.c
8178 F:      drivers/usb/host/*ps3.c
8179 F:      sound/ppc/snd_ps3*
8180
8181 PS3VRAM DRIVER
8182 M:      Jim Paris <jim@jtan.com>
8183 M:      Geoff Levand <geoff@infradead.org>
8184 L:      linuxppc-dev@lists.ozlabs.org
8185 S:      Maintained
8186 F:      drivers/block/ps3vram.c
8187
8188 PSTORE FILESYSTEM
8189 M:      Anton Vorontsov <anton@enomsg.org>
8190 M:      Colin Cross <ccross@android.com>
8191 M:      Kees Cook <keescook@chromium.org>
8192 M:      Tony Luck <tony.luck@intel.com>
8193 S:      Maintained
8194 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8195 F:      fs/pstore/
8196 F:      include/linux/pstore*
8197 F:      drivers/firmware/efi/efi-pstore.c
8198 F:      drivers/acpi/apei/erst.c
8199
8200 PTP HARDWARE CLOCK SUPPORT
8201 M:      Richard Cochran <richardcochran@gmail.com>
8202 L:      netdev@vger.kernel.org
8203 S:      Maintained
8204 W:      http://linuxptp.sourceforge.net/
8205 F:      Documentation/ABI/testing/sysfs-ptp
8206 F:      Documentation/ptp/*
8207 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8208 F:      drivers/net/phy/dp83640*
8209 F:      drivers/ptp/*
8210 F:      include/linux/ptp_cl*
8211
8212 PTRACE SUPPORT
8213 M:      Roland McGrath <roland@hack.frob.com>
8214 M:      Oleg Nesterov <oleg@redhat.com>
8215 S:      Maintained
8216 F:      include/asm-generic/syscall.h
8217 F:      include/linux/ptrace.h
8218 F:      include/linux/regset.h
8219 F:      include/linux/tracehook.h
8220 F:      include/uapi/linux/ptrace.h
8221 F:      kernel/ptrace.c
8222
8223 PVRUSB2 VIDEO4LINUX DRIVER
8224 M:      Mike Isely <isely@pobox.com>
8225 L:      pvrusb2@isely.net       (subscribers-only)
8226 L:      linux-media@vger.kernel.org
8227 W:      http://www.isely.net/pvrusb2/
8228 T:      git git://linuxtv.org/media_tree.git
8229 S:      Maintained
8230 F:      Documentation/video4linux/README.pvrusb2
8231 F:      drivers/media/usb/pvrusb2/
8232
8233 PWC WEBCAM DRIVER
8234 M:      Hans de Goede <hdegoede@redhat.com>
8235 L:      linux-media@vger.kernel.org
8236 T:      git git://linuxtv.org/media_tree.git
8237 S:      Maintained
8238 F:      drivers/media/usb/pwc/*
8239
8240 PWM FAN DRIVER
8241 M:      Kamil Debski <k.debski@samsung.com>
8242 L:      lm-sensors@lm-sensors.org
8243 S:      Supported
8244 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8245 F:      Documentation/hwmon/pwm-fan
8246 F:      drivers/hwmon/pwm-fan.c
8247
8248 PWM SUBSYSTEM
8249 M:      Thierry Reding <thierry.reding@gmail.com>
8250 L:      linux-pwm@vger.kernel.org
8251 S:      Maintained
8252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8253 F:      Documentation/pwm.txt
8254 F:      Documentation/devicetree/bindings/pwm/
8255 F:      include/linux/pwm.h
8256 F:      drivers/pwm/
8257 F:      drivers/video/backlight/pwm_bl.c
8258 F:      include/linux/pwm_backlight.h
8259
8260 PXA2xx/PXA3xx SUPPORT
8261 M:      Daniel Mack <daniel@zonque.org>
8262 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8263 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8264 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8265 T:      git git://github.com/hzhuang1/linux.git
8266 T:      git git://github.com/rjarzmik/linux.git
8267 S:      Maintained
8268 F:      arch/arm/mach-pxa/
8269 F:      drivers/dma/pxa*
8270 F:      drivers/pcmcia/pxa2xx*
8271 F:      drivers/spi/spi-pxa2xx*
8272 F:      drivers/usb/gadget/udc/pxa2*
8273 F:      include/sound/pxa2xx-lib.h
8274 F:      sound/arm/pxa*
8275 F:      sound/soc/pxa/
8276
8277 PXA3xx NAND FLASH DRIVER
8278 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8279 L:      linux-mtd@lists.infradead.org
8280 S:      Maintained
8281 F:      drivers/mtd/nand/pxa3xx_nand.c
8282
8283 MMP SUPPORT
8284 M:      Eric Miao <eric.y.miao@gmail.com>
8285 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8287 T:      git git://github.com/hzhuang1/linux.git
8288 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8289 S:      Maintained
8290 F:      arch/arm/mach-mmp/
8291
8292 PXA MMCI DRIVER
8293 S:      Orphan
8294
8295 PXA RTC DRIVER
8296 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8297 L:      rtc-linux@googlegroups.com
8298 S:      Maintained
8299
8300 QAT DRIVER
8301 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8302 L:      qat-linux@intel.com
8303 S:      Supported
8304 F:      drivers/crypto/qat/
8305
8306 QIB DRIVER
8307 M:      Mike Marciniszyn <infinipath@intel.com>
8308 L:      linux-rdma@vger.kernel.org
8309 S:      Supported
8310 F:      drivers/infiniband/hw/qib/
8311
8312 QLOGIC QLA1280 SCSI DRIVER
8313 M:      Michael Reed <mdr@sgi.com>
8314 L:      linux-scsi@vger.kernel.org
8315 S:      Maintained
8316 F:      drivers/scsi/qla1280.[ch]
8317
8318 QLOGIC QLA2XXX FC-SCSI DRIVER
8319 M:      qla2xxx-upstream@qlogic.com
8320 L:      linux-scsi@vger.kernel.org
8321 S:      Supported
8322 F:      Documentation/scsi/LICENSE.qla2xxx
8323 F:      drivers/scsi/qla2xxx/
8324
8325 QLOGIC QLA4XXX iSCSI DRIVER
8326 M:      QLogic-Storage-Upstream@qlogic.com
8327 L:      linux-scsi@vger.kernel.org
8328 S:      Supported
8329 F:      Documentation/scsi/LICENSE.qla4xxx
8330 F:      drivers/scsi/qla4xxx/
8331
8332 QLOGIC QLA3XXX NETWORK DRIVER
8333 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8334 M:      Ron Mercer <ron.mercer@qlogic.com>
8335 M:      linux-driver@qlogic.com
8336 L:      netdev@vger.kernel.org
8337 S:      Supported
8338 F:      Documentation/networking/LICENSE.qla3xxx
8339 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8340
8341 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8342 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
8343 M:      Dept-GELinuxNICDev@qlogic.com
8344 L:      netdev@vger.kernel.org
8345 S:      Supported
8346 F:      drivers/net/ethernet/qlogic/qlcnic/
8347
8348 QLOGIC QLGE 10Gb ETHERNET DRIVER
8349 M:      Harish Patil <harish.patil@qlogic.com>
8350 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8351 M:      Dept-GELinuxNICDev@qlogic.com
8352 M:      linux-driver@qlogic.com
8353 L:      netdev@vger.kernel.org
8354 S:      Supported
8355 F:      drivers/net/ethernet/qlogic/qlge/
8356
8357 QNX4 FILESYSTEM
8358 M:      Anders Larsen <al@alarsen.net>
8359 W:      http://www.alarsen.net/linux/qnx4fs/
8360 S:      Maintained
8361 F:      fs/qnx4/
8362 F:      include/uapi/linux/qnx4_fs.h
8363 F:      include/uapi/linux/qnxtypes.h
8364
8365 QT1010 MEDIA DRIVER
8366 M:      Antti Palosaari <crope@iki.fi>
8367 L:      linux-media@vger.kernel.org
8368 W:      http://linuxtv.org/
8369 W:      http://palosaari.fi/linux/
8370 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8371 T:      git git://linuxtv.org/anttip/media_tree.git
8372 S:      Maintained
8373 F:      drivers/media/tuners/qt1010*
8374
8375 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8376 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8377 L:      linux-wireless@vger.kernel.org
8378 L:      ath9k-devel@lists.ath9k.org
8379 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8380 S:      Supported
8381 F:      drivers/net/wireless/ath/ath9k/
8382
8383 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8384 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8385 L:      ath10k@lists.infradead.org
8386 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8387 T:      git git://github.com/kvalo/ath.git
8388 S:      Supported
8389 F:      drivers/net/wireless/ath/ath10k/
8390
8391 QUALCOMM HEXAGON ARCHITECTURE
8392 M:      Richard Kuo <rkuo@codeaurora.org>
8393 L:      linux-hexagon@vger.kernel.org
8394 S:      Supported
8395 F:      arch/hexagon/
8396
8397 QUALCOMM WCN36XX WIRELESS DRIVER
8398 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8399 L:      wcn36xx@lists.infradead.org
8400 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8401 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8402 S:      Supported
8403 F:      drivers/net/wireless/ath/wcn36xx/
8404
8405 RADOS BLOCK DEVICE (RBD)
8406 M:      Ilya Dryomov <idryomov@gmail.com>
8407 M:      Sage Weil <sage@redhat.com>
8408 M:      Alex Elder <elder@kernel.org>
8409 L:      ceph-devel@vger.kernel.org
8410 W:      http://ceph.com/
8411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8412 T:      git git://github.com/ceph/ceph-client.git
8413 S:      Supported
8414 F:      Documentation/ABI/testing/sysfs-bus-rbd
8415 F:      drivers/block/rbd.c
8416 F:      drivers/block/rbd_types.h
8417
8418 RADEON FRAMEBUFFER DISPLAY DRIVER
8419 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8420 L:      linux-fbdev@vger.kernel.org
8421 S:      Maintained
8422 F:      drivers/video/fbdev/aty/radeon*
8423 F:      include/uapi/linux/radeonfb.h
8424
8425 RADIOSHARK RADIO DRIVER
8426 M:      Hans de Goede <hdegoede@redhat.com>
8427 L:      linux-media@vger.kernel.org
8428 T:      git git://linuxtv.org/media_tree.git
8429 S:      Maintained
8430 F:      drivers/media/radio/radio-shark.c
8431
8432 RADIOSHARK2 RADIO DRIVER
8433 M:      Hans de Goede <hdegoede@redhat.com>
8434 L:      linux-media@vger.kernel.org
8435 T:      git git://linuxtv.org/media_tree.git
8436 S:      Maintained
8437 F:      drivers/media/radio/radio-shark2.c
8438 F:      drivers/media/radio/radio-tea5777.c
8439
8440 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8441 M:      Paul Mackerras <paulus@samba.org>
8442 L:      linux-fbdev@vger.kernel.org
8443 S:      Maintained
8444 F:      drivers/video/fbdev/aty/aty128fb.c
8445
8446 RALINK RT2X00 WIRELESS LAN DRIVER
8447 P:      rt2x00 project
8448 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8449 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8450 L:      linux-wireless@vger.kernel.org
8451 S:      Maintained
8452 F:      drivers/net/wireless/rt2x00/
8453
8454 RAMDISK RAM BLOCK DEVICE DRIVER
8455 M:      Jens Axboe <axboe@kernel.dk>
8456 S:      Maintained
8457 F:      Documentation/blockdev/ramdisk.txt
8458 F:      drivers/block/brd.c
8459
8460 RANDOM NUMBER DRIVER
8461 M:      "Theodore Ts'o" <tytso@mit.edu>
8462 S:      Maintained
8463 F:      drivers/char/random.c
8464
8465 RAPIDIO SUBSYSTEM
8466 M:      Matt Porter <mporter@kernel.crashing.org>
8467 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8468 S:      Maintained
8469 F:      drivers/rapidio/
8470
8471 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8472 L:      linux-wireless@vger.kernel.org
8473 S:      Orphan
8474 F:      drivers/net/wireless/ray*
8475
8476 RCUTORTURE MODULE
8477 M:      Josh Triplett <josh@joshtriplett.org>
8478 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8479 L:      linux-kernel@vger.kernel.org
8480 S:      Supported
8481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8482 F:      Documentation/RCU/torture.txt
8483 F:      kernel/rcu/rcutorture.c
8484
8485 RCUTORTURE TEST FRAMEWORK
8486 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8487 M:      Josh Triplett <josh@joshtriplett.org>
8488 R:      Steven Rostedt <rostedt@goodmis.org>
8489 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8490 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
8491 L:      linux-kernel@vger.kernel.org
8492 S:      Supported
8493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8494 F:      tools/testing/selftests/rcutorture
8495
8496 RDC R-321X SoC
8497 M:      Florian Fainelli <florian@openwrt.org>
8498 S:      Maintained
8499
8500 RDC R6040 FAST ETHERNET DRIVER
8501 M:      Florian Fainelli <florian@openwrt.org>
8502 L:      netdev@vger.kernel.org
8503 S:      Maintained
8504 F:      drivers/net/ethernet/rdc/r6040.c
8505
8506 RDS - RELIABLE DATAGRAM SOCKETS
8507 M:      Chien Yen <chien.yen@oracle.com>
8508 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8509 S:      Supported
8510 F:      net/rds/
8511
8512 READ-COPY UPDATE (RCU)
8513 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8514 M:      Josh Triplett <josh@joshtriplett.org>
8515 R:      Steven Rostedt <rostedt@goodmis.org>
8516 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8517 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
8518 L:      linux-kernel@vger.kernel.org
8519 W:      http://www.rdrop.com/users/paulmck/RCU/
8520 S:      Supported
8521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8522 F:      Documentation/RCU/
8523 X:      Documentation/RCU/torture.txt
8524 F:      include/linux/rcu*
8525 X:      include/linux/srcu.h
8526 F:      kernel/rcu/
8527 X:      kernel/torture.c
8528
8529 REAL TIME CLOCK (RTC) SUBSYSTEM
8530 M:      Alessandro Zummo <a.zummo@towertech.it>
8531 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8532 L:      rtc-linux@googlegroups.com
8533 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8535 S:      Maintained
8536 F:      Documentation/rtc.txt
8537 F:      drivers/rtc/
8538 F:      include/linux/rtc.h
8539 F:      include/uapi/linux/rtc.h
8540
8541 REALTEK AUDIO CODECS
8542 M:      Bard Liao <bardliao@realtek.com>
8543 M:      Oder Chiou <oder_chiou@realtek.com>
8544 S:      Maintained
8545 F:      sound/soc/codecs/rt*
8546 F:      include/sound/rt*.h
8547
8548 REISERFS FILE SYSTEM
8549 L:      reiserfs-devel@vger.kernel.org
8550 S:      Supported
8551 F:      fs/reiserfs/
8552
8553 REGISTER MAP ABSTRACTION
8554 M:      Mark Brown <broonie@kernel.org>
8555 L:      linux-kernel@vger.kernel.org
8556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8557 S:      Supported
8558 F:      drivers/base/regmap/
8559 F:      include/linux/regmap.h
8560
8561 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8562 M:      Ohad Ben-Cohen <ohad@wizery.com>
8563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8564 S:      Maintained
8565 F:      drivers/remoteproc/
8566 F:      Documentation/remoteproc.txt
8567 F:      include/linux/remoteproc.h
8568
8569 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8570 M:      Ohad Ben-Cohen <ohad@wizery.com>
8571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8572 S:      Maintained
8573 F:      drivers/rpmsg/
8574 F:      Documentation/rpmsg.txt
8575 F:      include/linux/rpmsg.h
8576
8577 RESET CONTROLLER FRAMEWORK
8578 M:      Philipp Zabel <p.zabel@pengutronix.de>
8579 S:      Maintained
8580 F:      drivers/reset/
8581 F:      Documentation/devicetree/bindings/reset/
8582 F:      include/linux/reset.h
8583 F:      include/linux/reset-controller.h
8584
8585 RFKILL
8586 M:      Johannes Berg <johannes@sipsolutions.net>
8587 L:      linux-wireless@vger.kernel.org
8588 W:      http://wireless.kernel.org/
8589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8591 S:      Maintained
8592 F:      Documentation/rfkill.txt
8593 F:      net/rfkill/
8594
8595 RHASHTABLE
8596 M:      Thomas Graf <tgraf@suug.ch>
8597 L:      netdev@vger.kernel.org
8598 S:      Maintained
8599 F:      lib/rhashtable.c
8600 F:      include/linux/rhashtable.h
8601
8602 RICOH SMARTMEDIA/XD DRIVER
8603 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8604 S:      Maintained
8605 F:      drivers/mtd/nand/r852.c
8606 F:      drivers/mtd/nand/r852.h
8607
8608 RICOH R5C592 MEMORYSTICK DRIVER
8609 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8610 S:      Maintained
8611 F:      drivers/memstick/host/r592.*
8612
8613 ROCCAT DRIVERS
8614 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8615 W:      http://sourceforge.net/projects/roccat/
8616 S:      Maintained
8617 F:      drivers/hid/hid-roccat*
8618 F:      include/linux/hid-roccat*
8619 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8620
8621 ROCKER DRIVER
8622 M:      Jiri Pirko <jiri@resnulli.us>
8623 M:      Scott Feldman <sfeldma@gmail.com>
8624 L:      netdev@vger.kernel.org
8625 S:      Supported
8626 F:      drivers/net/ethernet/rocker/
8627
8628 ROCKETPORT DRIVER
8629 P:      Comtrol Corp.
8630 W:      http://www.comtrol.com
8631 S:      Maintained
8632 F:      Documentation/serial/rocket.txt
8633 F:      drivers/tty/rocket*
8634
8635 ROCKETPORT EXPRESS/INFINITY DRIVER
8636 M:      Kevin Cernekee <cernekee@gmail.com>
8637 L:      linux-serial@vger.kernel.org
8638 S:      Odd Fixes
8639 F:      drivers/tty/serial/rp2.*
8640
8641 ROSE NETWORK LAYER
8642 M:      Ralf Baechle <ralf@linux-mips.org>
8643 L:      linux-hams@vger.kernel.org
8644 W:      http://www.linux-ax25.org/
8645 S:      Maintained
8646 F:      include/net/rose.h
8647 F:      include/uapi/linux/rose.h
8648 F:      net/rose/
8649
8650 RTL2830 MEDIA DRIVER
8651 M:      Antti Palosaari <crope@iki.fi>
8652 L:      linux-media@vger.kernel.org
8653 W:      http://linuxtv.org/
8654 W:      http://palosaari.fi/linux/
8655 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8656 T:      git git://linuxtv.org/anttip/media_tree.git
8657 S:      Maintained
8658 F:      drivers/media/dvb-frontends/rtl2830*
8659
8660 RTL2832 MEDIA DRIVER
8661 M:      Antti Palosaari <crope@iki.fi>
8662 L:      linux-media@vger.kernel.org
8663 W:      http://linuxtv.org/
8664 W:      http://palosaari.fi/linux/
8665 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8666 T:      git git://linuxtv.org/anttip/media_tree.git
8667 S:      Maintained
8668 F:      drivers/media/dvb-frontends/rtl2832*
8669
8670 RTL2832_SDR MEDIA DRIVER
8671 M:      Antti Palosaari <crope@iki.fi>
8672 L:      linux-media@vger.kernel.org
8673 W:      http://linuxtv.org/
8674 W:      http://palosaari.fi/linux/
8675 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8676 T:      git git://linuxtv.org/anttip/media_tree.git
8677 S:      Maintained
8678 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8679
8680 RTL8180 WIRELESS DRIVER
8681 L:      linux-wireless@vger.kernel.org
8682 W:      http://wireless.kernel.org/
8683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8684 S:      Orphan
8685 F:      drivers/net/wireless/rtl818x/rtl8180/
8686
8687 RTL8187 WIRELESS DRIVER
8688 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8689 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8690 M:      Larry Finger <Larry.Finger@lwfinger.net>
8691 L:      linux-wireless@vger.kernel.org
8692 W:      http://wireless.kernel.org/
8693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8694 S:      Maintained
8695 F:      drivers/net/wireless/rtl818x/rtl8187/
8696
8697 RTL8192CE WIRELESS DRIVER
8698 M:      Larry Finger <Larry.Finger@lwfinger.net>
8699 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8700 L:      linux-wireless@vger.kernel.org
8701 W:      http://wireless.kernel.org/
8702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8703 S:      Maintained
8704 F:      drivers/net/wireless/rtlwifi/
8705 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8706
8707 S3 SAVAGE FRAMEBUFFER DRIVER
8708 M:      Antonino Daplas <adaplas@gmail.com>
8709 L:      linux-fbdev@vger.kernel.org
8710 S:      Maintained
8711 F:      drivers/video/fbdev/savage/
8712
8713 S390
8714 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8715 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8716 M:      linux390@de.ibm.com
8717 L:      linux-s390@vger.kernel.org
8718 W:      http://www.ibm.com/developerworks/linux/linux390/
8719 S:      Supported
8720 F:      arch/s390/
8721 F:      drivers/s390/
8722 F:      Documentation/s390/
8723 F:      Documentation/DocBook/s390*
8724
8725 S390 COMMON I/O LAYER
8726 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8727 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8728 L:      linux-s390@vger.kernel.org
8729 W:      http://www.ibm.com/developerworks/linux/linux390/
8730 S:      Supported
8731 F:      drivers/s390/cio/
8732
8733 S390 DASD DRIVER
8734 M:      Stefan Weinhuber <wein@de.ibm.com>
8735 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8736 L:      linux-s390@vger.kernel.org
8737 W:      http://www.ibm.com/developerworks/linux/linux390/
8738 S:      Supported
8739 F:      drivers/s390/block/dasd*
8740 F:      block/partitions/ibm.c
8741
8742 S390 NETWORK DRIVERS
8743 M:      Ursula Braun <ursula.braun@de.ibm.com>
8744 M:      linux390@de.ibm.com
8745 L:      linux-s390@vger.kernel.org
8746 W:      http://www.ibm.com/developerworks/linux/linux390/
8747 S:      Supported
8748 F:      drivers/s390/net/
8749
8750 S390 PCI SUBSYSTEM
8751 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8752 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8753 L:      linux-s390@vger.kernel.org
8754 W:      http://www.ibm.com/developerworks/linux/linux390/
8755 S:      Supported
8756 F:      arch/s390/pci/
8757 F:      drivers/pci/hotplug/s390_pci_hpc.c
8758
8759 S390 ZCRYPT DRIVER
8760 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8761 M:      linux390@de.ibm.com
8762 L:      linux-s390@vger.kernel.org
8763 W:      http://www.ibm.com/developerworks/linux/linux390/
8764 S:      Supported
8765 F:      drivers/s390/crypto/
8766
8767 S390 ZFCP DRIVER
8768 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8769 M:      linux390@de.ibm.com
8770 L:      linux-s390@vger.kernel.org
8771 W:      http://www.ibm.com/developerworks/linux/linux390/
8772 S:      Supported
8773 F:      drivers/s390/scsi/zfcp_*
8774
8775 S390 IUCV NETWORK LAYER
8776 M:      Ursula Braun <ursula.braun@de.ibm.com>
8777 M:      linux390@de.ibm.com
8778 L:      linux-s390@vger.kernel.org
8779 W:      http://www.ibm.com/developerworks/linux/linux390/
8780 S:      Supported
8781 F:      drivers/s390/net/*iucv*
8782 F:      include/net/iucv/
8783 F:      net/iucv/
8784
8785 S3C24XX SD/MMC Driver
8786 M:      Ben Dooks <ben-linux@fluff.org>
8787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8788 S:      Supported
8789 F:      drivers/mmc/host/s3cmci.*
8790
8791 SAA6588 RDS RECEIVER DRIVER
8792 M:      Hans Verkuil <hverkuil@xs4all.nl>
8793 L:      linux-media@vger.kernel.org
8794 T:      git git://linuxtv.org/media_tree.git
8795 W:      http://linuxtv.org
8796 S:      Odd Fixes
8797 F:      drivers/media/i2c/saa6588*
8798
8799 SAA7134 VIDEO4LINUX DRIVER
8800 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8801 L:      linux-media@vger.kernel.org
8802 W:      http://linuxtv.org
8803 T:      git git://linuxtv.org/media_tree.git
8804 S:      Odd fixes
8805 F:      Documentation/video4linux/*.saa7134
8806 F:      drivers/media/pci/saa7134/
8807
8808 SAA7146 VIDEO4LINUX-2 DRIVER
8809 M:      Hans Verkuil <hverkuil@xs4all.nl>
8810 L:      linux-media@vger.kernel.org
8811 T:      git git://linuxtv.org/media_tree.git
8812 S:      Maintained
8813 F:      drivers/media/common/saa7146/
8814 F:      drivers/media/pci/saa7146/
8815 F:      include/media/saa7146*
8816
8817 SAMSUNG LAPTOP DRIVER
8818 M:      Corentin Chary <corentin.chary@gmail.com>
8819 L:      platform-driver-x86@vger.kernel.org
8820 S:      Maintained
8821 F:      drivers/platform/x86/samsung-laptop.c
8822
8823 SAMSUNG AUDIO (ASoC) DRIVERS
8824 M:      Sangbeom Kim <sbkim73@samsung.com>
8825 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8826 S:      Supported
8827 F:      sound/soc/samsung/
8828
8829 SAMSUNG FRAMEBUFFER DRIVER
8830 M:      Jingoo Han <jingoohan1@gmail.com>
8831 L:      linux-fbdev@vger.kernel.org
8832 S:      Maintained
8833 F:      drivers/video/fbdev/s3c-fb.c
8834
8835 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
8836 M:      Sangbeom Kim <sbkim73@samsung.com>
8837 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
8838 L:      linux-kernel@vger.kernel.org
8839 L:      linux-samsung-soc@vger.kernel.org
8840 S:      Supported
8841 F:      drivers/mfd/sec*.c
8842 F:      drivers/regulator/s2m*.c
8843 F:      drivers/regulator/s5m*.c
8844 F:      drivers/clk/clk-s2mps11.c
8845 F:      drivers/rtc/rtc-s5m.c
8846 F:      include/linux/mfd/samsung/
8847 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
8848 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
8849
8850 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
8851 M:      Kyungmin Park <kyungmin.park@samsung.com>
8852 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8853 L:      linux-media@vger.kernel.org
8854 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
8855 S:      Supported
8856 F:      drivers/media/platform/exynos4-is/
8857
8858 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
8859 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
8860 L:      linux-media@vger.kernel.org
8861 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8862 S:      Maintained
8863 F:      drivers/media/platform/s3c-camif/
8864 F:      include/media/s3c_camif.h
8865
8866 SAMSUNG S5C73M3 CAMERA DRIVER
8867 M:      Kyungmin Park <kyungmin.park@samsung.com>
8868 M:      Andrzej Hajda <a.hajda@samsung.com>
8869 L:      linux-media@vger.kernel.org
8870 S:      Supported
8871 F:      drivers/media/i2c/s5c73m3/*
8872
8873 SAMSUNG S5K5BAF CAMERA DRIVER
8874 M:      Kyungmin Park <kyungmin.park@samsung.com>
8875 M:      Andrzej Hajda <a.hajda@samsung.com>
8876 L:      linux-media@vger.kernel.org
8877 S:      Supported
8878 F:      drivers/media/i2c/s5k5baf.c
8879
8880 SAMSUNG SOC CLOCK DRIVERS
8881 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8882 M:      Tomasz Figa <tomasz.figa@gmail.com>
8883 S:      Supported
8884 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8885 F:      drivers/clk/samsung/
8886
8887 SAMSUNG SXGBE DRIVERS
8888 M:      Byungho An <bh74.an@samsung.com>
8889 M:      Girish K S <ks.giri@samsung.com>
8890 M:      Vipul Pandya <vipul.pandya@samsung.com>
8891 S:      Supported
8892 L:      netdev@vger.kernel.org
8893 F:      drivers/net/ethernet/samsung/sxgbe/
8894
8895 SAMSUNG THERMAL DRIVER
8896 M:      Lukasz Majewski <l.majewski@samsung.com>
8897 L:      linux-pm@vger.kernel.org
8898 L:      linux-samsung-soc@vger.kernel.org
8899 S:      Supported
8900 T:      https://github.com/lmajewski/linux-samsung-thermal.git
8901 F:      drivers/thermal/samsung/
8902
8903 SAMSUNG USB2 PHY DRIVER
8904 M:      Kamil Debski <k.debski@samsung.com>
8905 L:      linux-kernel@vger.kernel.org
8906 S:      Supported
8907 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
8908 F:      Documentation/phy/samsung-usb2.txt
8909 F:      drivers/phy/phy-exynos4210-usb2.c
8910 F:      drivers/phy/phy-exynos4x12-usb2.c
8911 F:      drivers/phy/phy-exynos5250-usb2.c
8912 F:      drivers/phy/phy-s5pv210-usb2.c
8913 F:      drivers/phy/phy-samsung-usb2.c
8914 F:      drivers/phy/phy-samsung-usb2.h
8915
8916 SERIAL DRIVERS
8917 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8918 L:      linux-serial@vger.kernel.org
8919 S:      Maintained
8920 F:      drivers/tty/serial/
8921
8922 SYNOPSYS DESIGNWARE DMAC DRIVER
8923 M:      Viresh Kumar <vireshk@kernel.org>
8924 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8925 S:      Maintained
8926 F:      include/linux/dma/dw.h
8927 F:      include/linux/platform_data/dma-dw.h
8928 F:      drivers/dma/dw/
8929
8930 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
8931 M:      Seungwon Jeon <tgih.jun@samsung.com>
8932 M:      Jaehoon Chung <jh80.chung@samsung.com>
8933 L:      linux-mmc@vger.kernel.org
8934 S:      Maintained
8935 F:      include/linux/mmc/dw_mmc.h
8936 F:      drivers/mmc/host/dw_mmc*
8937
8938 THUNDERBOLT DRIVER
8939 M:      Andreas Noever <andreas.noever@gmail.com>
8940 S:      Maintained
8941 F:      drivers/thunderbolt/
8942
8943 TIMEKEEPING, CLOCKSOURCE CORE, NTP
8944 M:      John Stultz <john.stultz@linaro.org>
8945 M:      Thomas Gleixner <tglx@linutronix.de>
8946 L:      linux-kernel@vger.kernel.org
8947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8948 S:      Supported
8949 F:      include/linux/clocksource.h
8950 F:      include/linux/time.h
8951 F:      include/linux/timex.h
8952 F:      include/uapi/linux/time.h
8953 F:      include/uapi/linux/timex.h
8954 F:      kernel/time/clocksource.c
8955 F:      kernel/time/time*.c
8956 F:      kernel/time/ntp.c
8957 F:      tools/testing/selftests/timers/
8958
8959 SC1200 WDT DRIVER
8960 M:      Zwane Mwaikambo <zwanem@gmail.com>
8961 S:      Maintained
8962 F:      drivers/watchdog/sc1200wdt.c
8963
8964 SCHEDULER
8965 M:      Ingo Molnar <mingo@redhat.com>
8966 M:      Peter Zijlstra <peterz@infradead.org>
8967 L:      linux-kernel@vger.kernel.org
8968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
8969 S:      Maintained
8970 F:      kernel/sched/
8971 F:      include/linux/sched.h
8972 F:      include/uapi/linux/sched.h
8973 F:      include/linux/wait.h
8974
8975 SCORE ARCHITECTURE
8976 M:      Chen Liqin <liqin.linux@gmail.com>
8977 M:      Lennox Wu <lennox.wu@gmail.com>
8978 W:      http://www.sunplus.com
8979 S:      Supported
8980 F:      arch/score/
8981
8982 SCSI CDROM DRIVER
8983 M:      Jens Axboe <axboe@kernel.dk>
8984 L:      linux-scsi@vger.kernel.org
8985 W:      http://www.kernel.dk
8986 S:      Maintained
8987 F:      drivers/scsi/sr*
8988
8989 SCSI RDMA PROTOCOL (SRP) INITIATOR
8990 M:      Bart Van Assche <bart.vanassche@sandisk.com>
8991 L:      linux-rdma@vger.kernel.org
8992 S:      Supported
8993 W:      http://www.openfabrics.org
8994 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
8996 F:      drivers/infiniband/ulp/srp/
8997 F:      include/scsi/srp.h
8998
8999 SCSI SG DRIVER
9000 M:      Doug Gilbert <dgilbert@interlog.com>
9001 L:      linux-scsi@vger.kernel.org
9002 W:      http://sg.danny.cz/sg
9003 S:      Maintained
9004 F:      Documentation/scsi/scsi-generic.txt
9005 F:      drivers/scsi/sg.c
9006 F:      include/scsi/sg.h
9007
9008 SCSI SUBSYSTEM
9009 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9010 L:      linux-scsi@vger.kernel.org
9011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9012 S:      Maintained
9013 F:      drivers/scsi/
9014 F:      include/scsi/
9015
9016 SCSI TAPE DRIVER
9017 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9018 L:      linux-scsi@vger.kernel.org
9019 S:      Maintained
9020 F:      Documentation/scsi/st.txt
9021 F:      drivers/scsi/st.*
9022 F:      drivers/scsi/st_*.h
9023
9024 SCTP PROTOCOL
9025 M:      Vlad Yasevich <vyasevich@gmail.com>
9026 M:      Neil Horman <nhorman@tuxdriver.com>
9027 L:      linux-sctp@vger.kernel.org
9028 W:      http://lksctp.sourceforge.net
9029 S:      Maintained
9030 F:      Documentation/networking/sctp.txt
9031 F:      include/linux/sctp.h
9032 F:      include/uapi/linux/sctp.h
9033 F:      include/net/sctp/
9034 F:      net/sctp/
9035
9036 SCx200 CPU SUPPORT
9037 M:      Jim Cromie <jim.cromie@gmail.com>
9038 S:      Odd Fixes
9039 F:      Documentation/i2c/busses/scx200_acb
9040 F:      arch/x86/platform/scx200/
9041 F:      drivers/watchdog/scx200_wdt.c
9042 F:      drivers/i2c/busses/scx200*
9043 F:      drivers/mtd/maps/scx200_docflash.c
9044 F:      include/linux/scx200.h
9045
9046 SCx200 GPIO DRIVER
9047 M:      Jim Cromie <jim.cromie@gmail.com>
9048 S:      Maintained
9049 F:      drivers/char/scx200_gpio.c
9050 F:      include/linux/scx200_gpio.h
9051
9052 SCx200 HRT CLOCKSOURCE DRIVER
9053 M:      Jim Cromie <jim.cromie@gmail.com>
9054 S:      Maintained
9055 F:      drivers/clocksource/scx200_hrt.c
9056
9057 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9058 M:      Sascha Sommer <saschasommer@freenet.de>
9059 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9060 S:      Maintained
9061 F:      drivers/mmc/host/sdricoh_cs.c
9062
9063 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9064 L:      linux-mmc@vger.kernel.org
9065 S:      Orphan
9066 F:      drivers/mmc/host/sdhci.*
9067 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9068
9069 SECURE COMPUTING
9070 M:      Kees Cook <keescook@chromium.org>
9071 R:      Andy Lutomirski <luto@amacapital.net>
9072 R:      Will Drewry <wad@chromium.org>
9073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9074 S:      Supported
9075 F:      kernel/seccomp.c
9076 F:      include/uapi/linux/seccomp.h
9077 F:      include/linux/seccomp.h
9078 F:      tools/testing/selftests/seccomp/*
9079 K:      \bsecure_computing
9080 K:      \bTIF_SECCOMP\b
9081
9082 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9083 M:      Ben Dooks <ben-linux@fluff.org>
9084 M:      Jaehoon Chung <jh80.chung@samsung.com>
9085 L:      linux-mmc@vger.kernel.org
9086 S:      Maintained
9087 F:      drivers/mmc/host/sdhci-s3c*
9088
9089 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9090 M:      Viresh Kumar <vireshk@kernel.org>
9091 L:      spear-devel@list.st.com
9092 L:      linux-mmc@vger.kernel.org
9093 S:      Maintained
9094 F:      drivers/mmc/host/sdhci-spear.c
9095
9096 SECURITY SUBSYSTEM
9097 M:      James Morris <james.l.morris@oracle.com>
9098 M:      "Serge E. Hallyn" <serge@hallyn.com>
9099 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9101 W:      http://kernsec.org/
9102 S:      Supported
9103 F:      security/
9104
9105 SECURITY CONTACT
9106 M:      Security Officers <security@kernel.org>
9107 S:      Supported
9108
9109 SELINUX SECURITY MODULE
9110 M:      Paul Moore <paul@paul-moore.com>
9111 M:      Stephen Smalley <sds@tycho.nsa.gov>
9112 M:      Eric Paris <eparis@parisplace.org>
9113 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9114 W:      http://selinuxproject.org
9115 T:      git git://git.infradead.org/users/pcmoore/selinux
9116 S:      Supported
9117 F:      include/linux/selinux*
9118 F:      security/selinux/
9119 F:      scripts/selinux/
9120
9121 APPARMOR SECURITY MODULE
9122 M:      John Johansen <john.johansen@canonical.com>
9123 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9124 W:      apparmor.wiki.kernel.org
9125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9126 S:      Supported
9127 F:      security/apparmor/
9128
9129 SENSABLE PHANTOM
9130 M:      Jiri Slaby <jirislaby@gmail.com>
9131 S:      Maintained
9132 F:      drivers/misc/phantom.c
9133 F:      include/uapi/linux/phantom.h
9134
9135 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9136 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9137 M:      Minh Tran <minh.tran@avagotech.com>
9138 M:      John Soni Jose <sony.john-n@avagotech.com>
9139 L:      linux-scsi@vger.kernel.org
9140 W:      http://www.avagotech.com
9141 S:      Supported
9142 F:      drivers/scsi/be2iscsi/
9143
9144 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9145 M:      Sathya Perla <sathya.perla@avagotech.com>
9146 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9147 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9148 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9149 L:      netdev@vger.kernel.org
9150 W:      http://www.emulex.com
9151 S:      Supported
9152 F:      drivers/net/ethernet/emulex/benet/
9153
9154 EMULEX ONECONNECT ROCE DRIVER
9155 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9156 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9157 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9158 L:      linux-rdma@vger.kernel.org
9159 W:      http://www.emulex.com
9160 S:      Supported
9161 F:      drivers/infiniband/hw/ocrdma/
9162
9163 SFC NETWORK DRIVER
9164 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9165 M:      Shradha Shah <sshah@solarflare.com>
9166 L:      netdev@vger.kernel.org
9167 S:      Supported
9168 F:      drivers/net/ethernet/sfc/
9169
9170 SGI GRU DRIVER
9171 M:      Dimitri Sivanich <sivanich@sgi.com>
9172 S:      Maintained
9173 F:      drivers/misc/sgi-gru/
9174
9175 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9176 M:      Pat Gefre <pfg@sgi.com>
9177 L:      linux-ia64@vger.kernel.org
9178 S:      Supported
9179 F:      Documentation/ia64/serial.txt
9180 F:      drivers/tty/serial/ioc?_serial.c
9181 F:      include/linux/ioc?.h
9182
9183 SGI XP/XPC/XPNET DRIVER
9184 M:      Cliff Whickman <cpw@sgi.com>
9185 M:      Robin Holt <robinmholt@gmail.com>
9186 S:      Maintained
9187 F:      drivers/misc/sgi-xp/
9188
9189 SI2157 MEDIA DRIVER
9190 M:      Antti Palosaari <crope@iki.fi>
9191 L:      linux-media@vger.kernel.org
9192 W:      http://linuxtv.org/
9193 W:      http://palosaari.fi/linux/
9194 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9195 T:      git git://linuxtv.org/anttip/media_tree.git
9196 S:      Maintained
9197 F:      drivers/media/tuners/si2157*
9198
9199 SI2168 MEDIA DRIVER
9200 M:      Antti Palosaari <crope@iki.fi>
9201 L:      linux-media@vger.kernel.org
9202 W:      http://linuxtv.org/
9203 W:      http://palosaari.fi/linux/
9204 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9205 T:      git git://linuxtv.org/anttip/media_tree.git
9206 S:      Maintained
9207 F:      drivers/media/dvb-frontends/si2168*
9208
9209 SI470X FM RADIO RECEIVER I2C DRIVER
9210 M:      Hans Verkuil <hverkuil@xs4all.nl>
9211 L:      linux-media@vger.kernel.org
9212 T:      git git://linuxtv.org/media_tree.git
9213 W:      http://linuxtv.org
9214 S:      Odd Fixes
9215 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9216
9217 SI470X FM RADIO RECEIVER USB DRIVER
9218 M:      Hans Verkuil <hverkuil@xs4all.nl>
9219 L:      linux-media@vger.kernel.org
9220 T:      git git://linuxtv.org/media_tree.git
9221 W:      http://linuxtv.org
9222 S:      Maintained
9223 F:      drivers/media/radio/si470x/radio-si470x-common.c
9224 F:      drivers/media/radio/si470x/radio-si470x.h
9225 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9226
9227 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9228 M:      Eduardo Valentin <edubezval@gmail.com>
9229 L:      linux-media@vger.kernel.org
9230 T:      git git://linuxtv.org/media_tree.git
9231 W:      http://linuxtv.org
9232 S:      Odd Fixes
9233 F:      drivers/media/radio/si4713/si4713.?
9234
9235 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9236 M:      Eduardo Valentin <edubezval@gmail.com>
9237 L:      linux-media@vger.kernel.org
9238 T:      git git://linuxtv.org/media_tree.git
9239 W:      http://linuxtv.org
9240 S:      Odd Fixes
9241 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9242
9243 SI4713 FM RADIO TRANSMITTER USB DRIVER
9244 M:      Hans Verkuil <hverkuil@xs4all.nl>
9245 L:      linux-media@vger.kernel.org
9246 T:      git git://linuxtv.org/media_tree.git
9247 W:      http://linuxtv.org
9248 S:      Maintained
9249 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9250
9251 SIANO DVB DRIVER
9252 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9253 L:      linux-media@vger.kernel.org
9254 W:      http://linuxtv.org
9255 T:      git git://linuxtv.org/media_tree.git
9256 S:      Odd fixes
9257 F:      drivers/media/common/siano/
9258 F:      drivers/media/usb/siano/
9259 F:      drivers/media/usb/siano/
9260 F:      drivers/media/mmc/siano/
9261
9262 SIMPLEFB FB DRIVER
9263 M:      Hans de Goede <hdegoede@redhat.com>
9264 L:      linux-fbdev@vger.kernel.org
9265 S:      Maintained
9266 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9267 F:      drivers/video/fbdev/simplefb.c
9268 F:      include/linux/platform_data/simplefb.h
9269
9270 SH_VEU V4L2 MEM2MEM DRIVER
9271 L:      linux-media@vger.kernel.org
9272 S:      Orphan
9273 F:      drivers/media/platform/sh_veu.c
9274
9275 SH_VOU V4L2 OUTPUT DRIVER
9276 L:      linux-media@vger.kernel.org
9277 S:      Orphan
9278 F:      drivers/media/platform/sh_vou.c
9279 F:      include/media/sh_vou.h
9280
9281 SIMPLE FIRMWARE INTERFACE (SFI)
9282 M:      Len Brown <lenb@kernel.org>
9283 L:      sfi-devel@simplefirmware.org
9284 W:      http://simplefirmware.org/
9285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9286 S:      Supported
9287 F:      arch/x86/platform/sfi/
9288 F:      drivers/sfi/
9289 F:      include/linux/sfi*.h
9290
9291 SIMTEC EB110ATX (Chalice CATS)
9292 P:      Ben Dooks
9293 P:      Vincent Sanders <vince@simtec.co.uk>
9294 M:      Simtec Linux Team <linux@simtec.co.uk>
9295 W:      http://www.simtec.co.uk/products/EB110ATX/
9296 S:      Supported
9297
9298 SIMTEC EB2410ITX (BAST)
9299 P:      Ben Dooks
9300 P:      Vincent Sanders <vince@simtec.co.uk>
9301 M:      Simtec Linux Team <linux@simtec.co.uk>
9302 W:      http://www.simtec.co.uk/products/EB2410ITX/
9303 S:      Supported
9304 F:      arch/arm/mach-s3c24xx/mach-bast.c
9305 F:      arch/arm/mach-s3c24xx/bast-ide.c
9306 F:      arch/arm/mach-s3c24xx/bast-irq.c
9307
9308 TI DAVINCI MACHINE SUPPORT
9309 M:      Sekhar Nori <nsekhar@ti.com>
9310 M:      Kevin Hilman <khilman@deeprootsystems.com>
9311 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9312 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9313 S:      Supported
9314 F:      arch/arm/mach-davinci/
9315 F:      drivers/i2c/busses/i2c-davinci.c
9316
9317 TI DAVINCI SERIES MEDIA DRIVER
9318 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9319 L:      linux-media@vger.kernel.org
9320 W:      http://linuxtv.org/
9321 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9322 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9323 S:      Maintained
9324 F:      drivers/media/platform/davinci/
9325 F:      include/media/davinci/
9326
9327 TI AM437X VPFE DRIVER
9328 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9329 L:      linux-media@vger.kernel.org
9330 W:      http://linuxtv.org/
9331 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9332 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9333 S:      Maintained
9334 F:      drivers/media/platform/am437x/
9335
9336 OV2659 OMNIVISION SENSOR DRIVER
9337 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9338 L:      linux-media@vger.kernel.org
9339 W:      http://linuxtv.org/
9340 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9341 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9342 S:      Maintained
9343 F:      drivers/media/i2c/ov2659.c
9344 F:      include/media/ov2659.h
9345
9346 SIS 190 ETHERNET DRIVER
9347 M:      Francois Romieu <romieu@fr.zoreil.com>
9348 L:      netdev@vger.kernel.org
9349 S:      Maintained
9350 F:      drivers/net/ethernet/sis/sis190.c
9351
9352 SIS 900/7016 FAST ETHERNET DRIVER
9353 M:      Daniele Venzano <venza@brownhat.org>
9354 W:      http://www.brownhat.org/sis900.html
9355 L:      netdev@vger.kernel.org
9356 S:      Maintained
9357 F:      drivers/net/ethernet/sis/sis900.*
9358
9359 SIS FRAMEBUFFER DRIVER
9360 M:      Thomas Winischhofer <thomas@winischhofer.net>
9361 W:      http://www.winischhofer.net/linuxsisvga.shtml
9362 S:      Maintained
9363 F:      Documentation/fb/sisfb.txt
9364 F:      drivers/video/fbdev/sis/
9365 F:      include/video/sisfb.h
9366
9367 SIS USB2VGA DRIVER
9368 M:      Thomas Winischhofer <thomas@winischhofer.net>
9369 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9370 S:      Maintained
9371 F:      drivers/usb/misc/sisusbvga/
9372
9373 SLAB ALLOCATOR
9374 M:      Christoph Lameter <cl@linux.com>
9375 M:      Pekka Enberg <penberg@kernel.org>
9376 M:      David Rientjes <rientjes@google.com>
9377 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9378 M:      Andrew Morton <akpm@linux-foundation.org>
9379 L:      linux-mm@kvack.org
9380 S:      Maintained
9381 F:      include/linux/sl?b*.h
9382 F:      mm/sl?b*
9383
9384 SLEEPABLE READ-COPY UPDATE (SRCU)
9385 M:      Lai Jiangshan <laijs@cn.fujitsu.com>
9386 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9387 M:      Josh Triplett <josh@joshtriplett.org>
9388 R:      Steven Rostedt <rostedt@goodmis.org>
9389 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9390 L:      linux-kernel@vger.kernel.org
9391 W:      http://www.rdrop.com/users/paulmck/RCU/
9392 S:      Supported
9393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9394 F:      include/linux/srcu.h
9395 F:      kernel/rcu/srcu.c
9396
9397 SMACK SECURITY MODULE
9398 M:      Casey Schaufler <casey@schaufler-ca.com>
9399 L:      linux-security-module@vger.kernel.org
9400 W:      http://schaufler-ca.com
9401 T:      git git://git.gitorious.org/smack-next/kernel.git
9402 S:      Maintained
9403 F:      Documentation/security/Smack.txt
9404 F:      security/smack/
9405
9406 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9407 M:      Kevin Hilman <khilman@kernel.org>
9408 M:      Nishanth Menon <nm@ti.com>
9409 S:      Maintained
9410 F:      drivers/power/avs/
9411 F:      include/linux/power/smartreflex.h
9412 L:      linux-pm@vger.kernel.org
9413
9414 SMC91x ETHERNET DRIVER
9415 M:      Nicolas Pitre <nico@fluxnic.net>
9416 S:      Odd Fixes
9417 F:      drivers/net/ethernet/smsc/smc91x.*
9418
9419 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9420 M:      Sakari Ailus <sakari.ailus@iki.fi>
9421 L:      linux-media@vger.kernel.org
9422 S:      Maintained
9423 F:      drivers/media/i2c/smiapp/
9424 F:      include/media/smiapp.h
9425 F:      drivers/media/i2c/smiapp-pll.c
9426 F:      drivers/media/i2c/smiapp-pll.h
9427 F:      include/uapi/linux/smiapp.h
9428 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9429
9430 SMM665 HARDWARE MONITOR DRIVER
9431 M:      Guenter Roeck <linux@roeck-us.net>
9432 L:      lm-sensors@lm-sensors.org
9433 S:      Maintained
9434 F:      Documentation/hwmon/smm665
9435 F:      drivers/hwmon/smm665.c
9436
9437 SMSC EMC2103 HARDWARE MONITOR DRIVER
9438 M:      Steve Glendinning <steve.glendinning@shawell.net>
9439 L:      lm-sensors@lm-sensors.org
9440 S:      Maintained
9441 F:      Documentation/hwmon/emc2103
9442 F:      drivers/hwmon/emc2103.c
9443
9444 SMSC SCH5627 HARDWARE MONITOR DRIVER
9445 M:      Hans de Goede <hdegoede@redhat.com>
9446 L:      lm-sensors@lm-sensors.org
9447 S:      Supported
9448 F:      Documentation/hwmon/sch5627
9449 F:      drivers/hwmon/sch5627.c
9450
9451 SMSC47B397 HARDWARE MONITOR DRIVER
9452 M:      Jean Delvare <jdelvare@suse.com>
9453 L:      lm-sensors@lm-sensors.org
9454 S:      Maintained
9455 F:      Documentation/hwmon/smsc47b397
9456 F:      drivers/hwmon/smsc47b397.c
9457
9458 SMSC911x ETHERNET DRIVER
9459 M:      Steve Glendinning <steve.glendinning@shawell.net>
9460 L:      netdev@vger.kernel.org
9461 S:      Maintained
9462 F:      include/linux/smsc911x.h
9463 F:      drivers/net/ethernet/smsc/smsc911x.*
9464
9465 SMSC9420 PCI ETHERNET DRIVER
9466 M:      Steve Glendinning <steve.glendinning@shawell.net>
9467 L:      netdev@vger.kernel.org
9468 S:      Maintained
9469 F:      drivers/net/ethernet/smsc/smsc9420.*
9470
9471 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9472 M:      Steve Glendinning <steve.glendinning@shawell.net>
9473 L:      linux-fbdev@vger.kernel.org
9474 S:      Maintained
9475 F:      drivers/video/fbdev/smscufx.c
9476
9477 SOC-CAMERA V4L2 SUBSYSTEM
9478 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9479 L:      linux-media@vger.kernel.org
9480 T:      git git://linuxtv.org/media_tree.git
9481 S:      Maintained
9482 F:      include/media/soc*
9483 F:      drivers/media/i2c/soc_camera/
9484 F:      drivers/media/platform/soc_camera/
9485
9486 SOEKRIS NET48XX LED SUPPORT
9487 M:      Chris Boot <bootc@bootc.net>
9488 S:      Maintained
9489 F:      drivers/leds/leds-net48xx.c
9490
9491 SOFTLOGIC 6x10 MPEG CODEC
9492 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9493 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9494 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9495 M:      Ismael Luceno <ismael@iodev.co.uk>
9496 L:      linux-media@vger.kernel.org
9497 S:      Supported
9498 F:      drivers/media/pci/solo6x10/
9499
9500 SOFTWARE RAID (Multiple Disks) SUPPORT
9501 M:      Neil Brown <neilb@suse.com>
9502 L:      linux-raid@vger.kernel.org
9503 S:      Supported
9504 F:      drivers/md/
9505 F:      include/linux/raid/
9506 F:      include/uapi/linux/raid/
9507
9508 SONIC NETWORK DRIVER
9509 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9510 L:      netdev@vger.kernel.org
9511 S:      Maintained
9512 F:      drivers/net/ethernet/natsemi/sonic.*
9513
9514 SONICS SILICON BACKPLANE DRIVER (SSB)
9515 M:      Michael Buesch <m@bues.ch>
9516 L:      netdev@vger.kernel.org
9517 S:      Maintained
9518 F:      drivers/ssb/
9519 F:      include/linux/ssb/
9520
9521 SONY VAIO CONTROL DEVICE DRIVER
9522 M:      Mattia Dongili <malattia@linux.it>
9523 L:      platform-driver-x86@vger.kernel.org
9524 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9525 S:      Maintained
9526 F:      Documentation/laptops/sony-laptop.txt
9527 F:      drivers/char/sonypi.c
9528 F:      drivers/platform/x86/sony-laptop.c
9529 F:      include/linux/sony-laptop.h
9530
9531 SONY MEMORYSTICK CARD SUPPORT
9532 M:      Alex Dubov <oakad@yahoo.com>
9533 W:      http://tifmxx.berlios.de/
9534 S:      Maintained
9535 F:      drivers/memstick/host/tifm_ms.c
9536
9537 SONY MEMORYSTICK STANDARD SUPPORT
9538 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9539 S:      Maintained
9540 F:      drivers/memstick/core/ms_block.*
9541
9542 SOUND
9543 M:      Jaroslav Kysela <perex@perex.cz>
9544 M:      Takashi Iwai <tiwai@suse.com>
9545 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9546 W:      http://www.alsa-project.org/
9547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9548 T:      git git://git.alsa-project.org/alsa-kernel.git
9549 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9550 S:      Maintained
9551 F:      Documentation/sound/
9552 F:      include/sound/
9553 F:      include/uapi/sound/
9554 F:      sound/
9555
9556 SOUND - COMPRESSED AUDIO
9557 M:      Vinod Koul <vinod.koul@intel.com>
9558 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9560 S:      Supported
9561 F:      Documentation/sound/alsa/compress_offload.txt
9562 F:      include/sound/compress_driver.h
9563 F:      include/uapi/sound/compress_*
9564 F:      sound/core/compress_offload.c
9565 F:      sound/soc/soc-compress.c
9566
9567 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9568 M:      Liam Girdwood <lgirdwood@gmail.com>
9569 M:      Mark Brown <broonie@kernel.org>
9570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9571 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9572 W:      http://alsa-project.org/main/index.php/ASoC
9573 S:      Supported
9574 F:      Documentation/sound/alsa/soc/
9575 F:      sound/soc/
9576 F:      include/sound/soc*
9577
9578 SOUND - DMAENGINE HELPERS
9579 M:      Lars-Peter Clausen <lars@metafoo.de>
9580 S:      Supported
9581 F:      include/sound/dmaengine_pcm.h
9582 F:      sound/core/pcm_dmaengine.c
9583 F:      sound/soc/soc-generic-dmaengine-pcm.c
9584
9585 SP2 MEDIA DRIVER
9586 M:      Olli Salonen <olli.salonen@iki.fi>
9587 L:      linux-media@vger.kernel.org
9588 W:      http://linuxtv.org/
9589 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9590 S:      Maintained
9591 F:      drivers/media/dvb-frontends/sp2*
9592
9593 SPARC + UltraSPARC (sparc/sparc64)
9594 M:      "David S. Miller" <davem@davemloft.net>
9595 L:      sparclinux@vger.kernel.org
9596 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9599 S:      Maintained
9600 F:      arch/sparc/
9601 F:      drivers/sbus/
9602
9603 SPARC SERIAL DRIVERS
9604 M:      "David S. Miller" <davem@davemloft.net>
9605 L:      sparclinux@vger.kernel.org
9606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9608 S:      Maintained
9609 F:      include/linux/sunserialcore.h
9610 F:      drivers/tty/serial/suncore.c
9611 F:      drivers/tty/serial/sunhv.c
9612 F:      drivers/tty/serial/sunsab.c
9613 F:      drivers/tty/serial/sunsab.h
9614 F:      drivers/tty/serial/sunsu.c
9615 F:      drivers/tty/serial/sunzilog.c
9616 F:      drivers/tty/serial/sunzilog.h
9617
9618 SPARSE CHECKER
9619 M:      "Christopher Li" <sparse@chrisli.org>
9620 L:      linux-sparse@vger.kernel.org
9621 W:      https://sparse.wiki.kernel.org/
9622 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9623 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9624 S:      Maintained
9625 F:      include/linux/compiler.h
9626
9627 SPEAR PLATFORM SUPPORT
9628 M:      Viresh Kumar <vireshk@kernel.org>
9629 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9630 L:      spear-devel@list.st.com
9631 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9632 W:      http://www.st.com/spear
9633 S:      Maintained
9634 F:      arch/arm/mach-spear/
9635
9636 SPEAR CLOCK FRAMEWORK SUPPORT
9637 M:      Viresh Kumar <vireshk@kernel.org>
9638 L:      spear-devel@list.st.com
9639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9640 W:      http://www.st.com/spear
9641 S:      Maintained
9642 F:      drivers/clk/spear/
9643
9644 SPI SUBSYSTEM
9645 M:      Mark Brown <broonie@kernel.org>
9646 L:      linux-spi@vger.kernel.org
9647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9648 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9649 S:      Maintained
9650 F:      Documentation/spi/
9651 F:      drivers/spi/
9652 F:      include/linux/spi/
9653 F:      include/uapi/linux/spi/
9654
9655 SPIDERNET NETWORK DRIVER for CELL
9656 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9657 L:      netdev@vger.kernel.org
9658 S:      Supported
9659 F:      Documentation/networking/spider_net.txt
9660 F:      drivers/net/ethernet/toshiba/spider_net*
9661
9662 SPU FILE SYSTEM
9663 M:      Jeremy Kerr <jk@ozlabs.org>
9664 L:      linuxppc-dev@lists.ozlabs.org
9665 W:      http://www.ibm.com/developerworks/power/cell/
9666 S:      Supported
9667 F:      Documentation/filesystems/spufs.txt
9668 F:      arch/powerpc/platforms/cell/spufs/
9669
9670 SQUASHFS FILE SYSTEM
9671 M:      Phillip Lougher <phillip@squashfs.org.uk>
9672 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9673 W:      http://squashfs.org.uk
9674 S:      Maintained
9675 F:      Documentation/filesystems/squashfs.txt
9676 F:      fs/squashfs/
9677
9678 SRM (Alpha) environment access
9679 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9680 S:      Maintained
9681 F:      arch/alpha/kernel/srm_env.c
9682
9683 STABLE BRANCH
9684 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9685 L:      stable@vger.kernel.org
9686 S:      Supported
9687 F:      Documentation/stable_kernel_rules.txt
9688
9689 STAGING SUBSYSTEM
9690 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9692 L:      devel@driverdev.osuosl.org
9693 S:      Supported
9694 F:      drivers/staging/
9695
9696 STAGING - COMEDI
9697 M:      Ian Abbott <abbotti@mev.co.uk>
9698 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9699 S:      Odd Fixes
9700 F:      drivers/staging/comedi/
9701
9702 STAGING - FLARION FT1000 DRIVERS
9703 M:      Marek Belisko <marek.belisko@gmail.com>
9704 S:      Odd Fixes
9705 F:      drivers/staging/ft1000/
9706
9707 STAGING - INDUSTRIAL IO
9708 M:      Jonathan Cameron <jic23@kernel.org>
9709 L:      linux-iio@vger.kernel.org
9710 S:      Odd Fixes
9711 F:      drivers/staging/iio/
9712
9713 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9714 M:      Jarod Wilson <jarod@wilsonet.com>
9715 W:      http://www.lirc.org/
9716 S:      Odd Fixes
9717 F:      drivers/staging/media/lirc/
9718
9719 STAGING - LUSTRE PARALLEL FILESYSTEM
9720 M:      Oleg Drokin <oleg.drokin@intel.com>
9721 M:      Andreas Dilger <andreas.dilger@intel.com>
9722 L:      HPDD-discuss@lists.01.org (moderated for non-subscribers)
9723 W:      http://lustre.opensfs.org/
9724 S:      Maintained
9725 F:      drivers/staging/lustre
9726
9727 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9728 M:      Julian Andres Klode <jak@jak-linux.org>
9729 M:      Marc Dietrich <marvin24@gmx.de>
9730 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9731 L:      linux-tegra@vger.kernel.org
9732 S:      Maintained
9733 F:      drivers/staging/nvec/
9734
9735 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9736 M:      Jens Frederich <jfrederich@gmail.com>
9737 M:      Daniel Drake <dsd@laptop.org>
9738 M:      Jon Nettleton <jon.nettleton@gmail.com>
9739 W:      http://wiki.laptop.org/go/DCON
9740 S:      Maintained
9741 F:      drivers/staging/olpc_dcon/
9742
9743 STAGING - OZMO DEVICES USB OVER WIFI DRIVER
9744 M:      Shigekatsu Tateno <shigekatsu.tateno@atmel.com>
9745 S:      Maintained
9746 F:      drivers/staging/ozwpan/
9747
9748 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9749 M:      Willy Tarreau <willy@meta-x.org>
9750 S:      Odd Fixes
9751 F:      drivers/staging/panel/
9752
9753 STAGING - REALTEK RTL8712U DRIVERS
9754 M:      Larry Finger <Larry.Finger@lwfinger.net>
9755 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9756 S:      Odd Fixes
9757 F:      drivers/staging/rtl8712/
9758
9759 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9760 M:      Larry Finger <Larry.Finger@lwfinger.net>
9761 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9762 L:      linux-wireless@vger.kernel.org
9763 S:      Maintained
9764 F:      drivers/staging/rtl8723au/
9765
9766 STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
9767 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9768 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9769 M:      Sudip Mukherjee <sudip@vectorindia.org>
9770 L:      linux-fbdev@vger.kernel.org
9771 S:      Maintained
9772 F:      drivers/staging/sm7xxfb/
9773
9774 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9775 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9776 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9777 M:      Sudip Mukherjee <sudip@vectorindia.org>
9778 L:      linux-fbdev@vger.kernel.org
9779 S:      Maintained
9780 F:      drivers/staging/sm750fb/
9781
9782 STAGING - SLICOSS
9783 M:      Lior Dotan <liodot@gmail.com>
9784 M:      Christopher Harrer <charrer@alacritech.com>
9785 S:      Odd Fixes
9786 F:      drivers/staging/slicoss/
9787
9788 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9789 M:      William Hubbs <w.d.hubbs@gmail.com>
9790 M:      Chris Brannon <chris@the-brannons.com>
9791 M:      Kirk Reiser <kirk@reisers.ca>
9792 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9793 L:      speakup@linux-speakup.org
9794 W:      http://www.linux-speakup.org/
9795 S:      Odd Fixes
9796 F:      drivers/staging/speakup/
9797
9798 STAGING - VIA VT665X DRIVERS
9799 M:      Forest Bond <forest@alittletooquiet.net>
9800 S:      Odd Fixes
9801 F:      drivers/staging/vt665?/
9802
9803 STAGING - WILC1000 WIFI DRIVER
9804 M:      Johnny Kim <johnny.kim@atmel.com>
9805 M:      Rachel Kim <rachel.kim@atmel.com>
9806 M:      Dean Lee <dean.lee@atmel.com>
9807 M:      Chris Park <chris.park@atmel.com>
9808 L:      linux-wireless@vger.kernel.org
9809 S:      Supported
9810 F:      drivers/staging/wilc1000/
9811
9812 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
9813 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
9814 S:      Odd Fixes
9815 F:      drivers/staging/xgifb/
9816
9817 STARFIRE/DURALAN NETWORK DRIVER
9818 M:      Ion Badulescu <ionut@badula.org>
9819 S:      Odd Fixes
9820 F:      drivers/net/ethernet/adaptec/starfire*
9821
9822 SUN3/3X
9823 M:      Sam Creasey <sammy@sammy.net>
9824 W:      http://sammy.net/sun3/
9825 S:      Maintained
9826 F:      arch/m68k/kernel/*sun3*
9827 F:      arch/m68k/sun3*/
9828 F:      arch/m68k/include/asm/sun3*
9829 F:      drivers/net/ethernet/i825xx/sun3*
9830
9831 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
9832 M:      Hans de Goede <hdegoede@redhat.com>
9833 L:      linux-input@vger.kernel.org
9834 S:      Maintained
9835 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
9836 F:      drivers/input/keyboard/sun4i-lradc-keys.c
9837
9838 SUNDANCE NETWORK DRIVER
9839 M:      Denis Kirjanov <kda@linux-powerpc.org>
9840 L:      netdev@vger.kernel.org
9841 S:      Maintained
9842 F:      drivers/net/ethernet/dlink/sundance.c
9843
9844 SUPERH
9845 L:      linux-sh@vger.kernel.org
9846 Q:      http://patchwork.kernel.org/project/linux-sh/list/
9847 S:      Orphan
9848 F:      Documentation/sh/
9849 F:      arch/sh/
9850 F:      drivers/sh/
9851
9852 SUSPEND TO RAM
9853 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9854 M:      Len Brown <len.brown@intel.com>
9855 M:      Pavel Machek <pavel@ucw.cz>
9856 L:      linux-pm@vger.kernel.org
9857 S:      Supported
9858 F:      Documentation/power/
9859 F:      arch/x86/kernel/acpi/
9860 F:      drivers/base/power/
9861 F:      kernel/power/
9862 F:      include/linux/suspend.h
9863 F:      include/linux/freezer.h
9864 F:      include/linux/pm.h
9865
9866 SVGA HANDLING
9867 M:      Martin Mares <mj@ucw.cz>
9868 L:      linux-video@atrey.karlin.mff.cuni.cz
9869 S:      Maintained
9870 F:      Documentation/svga.txt
9871 F:      arch/x86/boot/video*
9872
9873 SWIOTLB SUBSYSTEM
9874 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9875 L:      linux-kernel@vger.kernel.org
9876 S:      Supported
9877 F:      lib/swiotlb.c
9878 F:      arch/*/kernel/pci-swiotlb.c
9879 F:      include/linux/swiotlb.h
9880
9881 SWITCHDEV
9882 M:      Jiri Pirko <jiri@resnulli.us>
9883 L:      netdev@vger.kernel.org
9884 S:      Supported
9885 F:      net/switchdev/
9886 F:      include/net/switchdev.h
9887
9888 SYNOPSYS ARC ARCHITECTURE
9889 M:      Vineet Gupta <vgupta@synopsys.com>
9890 S:      Supported
9891 F:      arch/arc/
9892 F:      Documentation/devicetree/bindings/arc/
9893 F:      drivers/tty/serial/arc_uart.c
9894
9895 SYNOPSYS ARC SDP platform support
9896 M:      Alexey Brodkin <abrodkin@synopsys.com>
9897 S:      Supported
9898 F:      arch/arc/plat-axs10x
9899 F:      arch/arc/boot/dts/ax*
9900 F:      Documentation/devicetree/bindings/arc/axs10*
9901
9902 SYSTEM CONFIGURATION (SYSCON)
9903 M:      Lee Jones <lee.jones@linaro.org>
9904 M:      Arnd Bergmann <arnd@arndb.de>
9905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
9906 S:      Supported
9907 F:      drivers/mfd/syscon.c
9908
9909 SYSV FILESYSTEM
9910 M:      Christoph Hellwig <hch@infradead.org>
9911 S:      Maintained
9912 F:      Documentation/filesystems/sysv-fs.txt
9913 F:      fs/sysv/
9914 F:      include/linux/sysv_fs.h
9915
9916 TARGET SUBSYSTEM
9917 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
9918 L:      linux-scsi@vger.kernel.org
9919 L:      target-devel@vger.kernel.org
9920 W:      http://www.linux-iscsi.org
9921 W:      http://groups.google.com/group/linux-iscsi-target-dev
9922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9923 S:      Supported
9924 F:      drivers/target/
9925 F:      include/target/
9926 F:      Documentation/target/
9927
9928 TASKSTATS STATISTICS INTERFACE
9929 M:      Balbir Singh <bsingharora@gmail.com>
9930 S:      Maintained
9931 F:      Documentation/accounting/taskstats*
9932 F:      include/linux/taskstats*
9933 F:      kernel/taskstats.c
9934
9935 TC CLASSIFIER
9936 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9937 L:      netdev@vger.kernel.org
9938 S:      Maintained
9939 F:      include/net/pkt_cls.h
9940 F:      include/uapi/linux/pkt_cls.h
9941 F:      net/sched/
9942
9943 TCP LOW PRIORITY MODULE
9944 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
9945 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
9946 W:      http://tcp-lp-mod.sourceforge.net/
9947 S:      Maintained
9948 F:      net/ipv4/tcp_lp.c
9949
9950 TDA10071 MEDIA DRIVER
9951 M:      Antti Palosaari <crope@iki.fi>
9952 L:      linux-media@vger.kernel.org
9953 W:      http://linuxtv.org/
9954 W:      http://palosaari.fi/linux/
9955 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9956 T:      git git://linuxtv.org/anttip/media_tree.git
9957 S:      Maintained
9958 F:      drivers/media/dvb-frontends/tda10071*
9959
9960 TDA18212 MEDIA DRIVER
9961 M:      Antti Palosaari <crope@iki.fi>
9962 L:      linux-media@vger.kernel.org
9963 W:      http://linuxtv.org/
9964 W:      http://palosaari.fi/linux/
9965 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9966 T:      git git://linuxtv.org/anttip/media_tree.git
9967 S:      Maintained
9968 F:      drivers/media/tuners/tda18212*
9969
9970 TDA18218 MEDIA DRIVER
9971 M:      Antti Palosaari <crope@iki.fi>
9972 L:      linux-media@vger.kernel.org
9973 W:      http://linuxtv.org/
9974 W:      http://palosaari.fi/linux/
9975 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9976 T:      git git://linuxtv.org/anttip/media_tree.git
9977 S:      Maintained
9978 F:      drivers/media/tuners/tda18218*
9979
9980 TDA18271 MEDIA DRIVER
9981 M:      Michael Krufky <mkrufky@linuxtv.org>
9982 L:      linux-media@vger.kernel.org
9983 W:      http://linuxtv.org/
9984 W:      http://github.com/mkrufky
9985 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9986 T:      git git://linuxtv.org/mkrufky/tuners.git
9987 S:      Maintained
9988 F:      drivers/media/tuners/tda18271*
9989
9990 TDA827x MEDIA DRIVER
9991 M:      Michael Krufky <mkrufky@linuxtv.org>
9992 L:      linux-media@vger.kernel.org
9993 W:      http://linuxtv.org/
9994 W:      http://github.com/mkrufky
9995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9996 T:      git git://linuxtv.org/mkrufky/tuners.git
9997 S:      Maintained
9998 F:      drivers/media/tuners/tda8290.*
9999
10000 TDA8290 MEDIA DRIVER
10001 M:      Michael Krufky <mkrufky@linuxtv.org>
10002 L:      linux-media@vger.kernel.org
10003 W:      http://linuxtv.org/
10004 W:      http://github.com/mkrufky
10005 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10006 T:      git git://linuxtv.org/mkrufky/tuners.git
10007 S:      Maintained
10008 F:      drivers/media/tuners/tda8290.*
10009
10010 TDA9840 MEDIA DRIVER
10011 M:      Hans Verkuil <hverkuil@xs4all.nl>
10012 L:      linux-media@vger.kernel.org
10013 T:      git git://linuxtv.org/media_tree.git
10014 W:      http://linuxtv.org
10015 S:      Maintained
10016 F:      drivers/media/i2c/tda9840*
10017
10018 TEA5761 TUNER DRIVER
10019 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10020 L:      linux-media@vger.kernel.org
10021 W:      http://linuxtv.org
10022 T:      git git://linuxtv.org/media_tree.git
10023 S:      Odd fixes
10024 F:      drivers/media/tuners/tea5761.*
10025
10026 TEA5767 TUNER DRIVER
10027 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10028 L:      linux-media@vger.kernel.org
10029 W:      http://linuxtv.org
10030 T:      git git://linuxtv.org/media_tree.git
10031 S:      Maintained
10032 F:      drivers/media/tuners/tea5767.*
10033
10034 TEA6415C MEDIA DRIVER
10035 M:      Hans Verkuil <hverkuil@xs4all.nl>
10036 L:      linux-media@vger.kernel.org
10037 T:      git git://linuxtv.org/media_tree.git
10038 W:      http://linuxtv.org
10039 S:      Maintained
10040 F:      drivers/media/i2c/tea6415c*
10041
10042 TEA6420 MEDIA DRIVER
10043 M:      Hans Verkuil <hverkuil@xs4all.nl>
10044 L:      linux-media@vger.kernel.org
10045 T:      git git://linuxtv.org/media_tree.git
10046 W:      http://linuxtv.org
10047 S:      Maintained
10048 F:      drivers/media/i2c/tea6420*
10049
10050 TEAM DRIVER
10051 M:      Jiri Pirko <jiri@resnulli.us>
10052 L:      netdev@vger.kernel.org
10053 S:      Supported
10054 F:      drivers/net/team/
10055 F:      include/linux/if_team.h
10056 F:      include/uapi/linux/if_team.h
10057
10058 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10059 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10060 S:      Maintained
10061 F:      arch/x86/platform/ts5500/
10062
10063 TECHNOTREND USB IR RECEIVER
10064 M:      Sean Young <sean@mess.org>
10065 L:      linux-media@vger.kernel.org
10066 S:      Maintained
10067 F:      drivers/media/rc/ttusbir.c
10068
10069 TEGRA ARCHITECTURE SUPPORT
10070 M:      Stephen Warren <swarren@wwwdotorg.org>
10071 M:      Thierry Reding <thierry.reding@gmail.com>
10072 M:      Alexandre Courbot <gnurou@gmail.com>
10073 L:      linux-tegra@vger.kernel.org
10074 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10076 S:      Supported
10077 N:      [^a-z]tegra
10078
10079 TEGRA CLOCK DRIVER
10080 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10081 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10082 S:      Supported
10083 F:      drivers/clk/tegra/
10084
10085 TEGRA DMA DRIVER
10086 M:      Laxman Dewangan <ldewangan@nvidia.com>
10087 S:      Supported
10088 F:      drivers/dma/tegra20-apb-dma.c
10089
10090 TEGRA I2C DRIVER
10091 M:      Laxman Dewangan <ldewangan@nvidia.com>
10092 S:      Supported
10093 F:      drivers/i2c/busses/i2c-tegra.c
10094
10095 TEGRA IOMMU DRIVERS
10096 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10097 S:      Supported
10098 F:      drivers/iommu/tegra*
10099
10100 TEGRA KBC DRIVER
10101 M:      Rakesh Iyer <riyer@nvidia.com>
10102 M:      Laxman Dewangan <ldewangan@nvidia.com>
10103 S:      Supported
10104 F:      drivers/input/keyboard/tegra-kbc.c
10105
10106 TEGRA PWM DRIVER
10107 M:      Thierry Reding <thierry.reding@gmail.com>
10108 S:      Supported
10109 F:      drivers/pwm/pwm-tegra.c
10110
10111 TEGRA SERIAL DRIVER
10112 M:      Laxman Dewangan <ldewangan@nvidia.com>
10113 S:      Supported
10114 F:      drivers/tty/serial/serial-tegra.c
10115
10116 TEGRA SPI DRIVER
10117 M:      Laxman Dewangan <ldewangan@nvidia.com>
10118 S:      Supported
10119 F:      drivers/spi/spi-tegra*
10120
10121 TEHUTI ETHERNET DRIVER
10122 M:      Andy Gospodarek <andy@greyhouse.net>
10123 L:      netdev@vger.kernel.org
10124 S:      Supported
10125 F:      drivers/net/ethernet/tehuti/*
10126
10127 Telecom Clock Driver for MCPL0010
10128 M:      Mark Gross <mark.gross@intel.com>
10129 S:      Supported
10130 F:      drivers/char/tlclk.c
10131
10132 TENSILICA XTENSA PORT (xtensa)
10133 M:      Chris Zankel <chris@zankel.net>
10134 M:      Max Filippov <jcmvbkbc@gmail.com>
10135 L:      linux-xtensa@linux-xtensa.org
10136 S:      Maintained
10137 F:      arch/xtensa/
10138 F:      drivers/irqchip/irq-xtensa-*
10139
10140 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10141 M:      Hans Verkuil <hverkuil@xs4all.nl>
10142 L:      linux-media@vger.kernel.org
10143 T:      git git://linuxtv.org/media_tree.git
10144 W:      http://linuxtv.org
10145 S:      Maintained
10146 F:      drivers/media/radio/radio-raremono.c
10147
10148 THERMAL
10149 M:      Zhang Rui <rui.zhang@intel.com>
10150 M:      Eduardo Valentin <edubezval@gmail.com>
10151 L:      linux-pm@vger.kernel.org
10152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10154 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10155 S:      Supported
10156 F:      drivers/thermal/
10157 F:      include/linux/thermal.h
10158 F:      include/uapi/linux/thermal.h
10159 F:      include/linux/cpu_cooling.h
10160 F:      Documentation/devicetree/bindings/thermal/
10161
10162 THINGM BLINK(1) USB RGB LED DRIVER
10163 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10164 S:      Maintained
10165 F:      drivers/hid/hid-thingm.c
10166
10167 THINKPAD ACPI EXTRAS DRIVER
10168 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10169 L:      ibm-acpi-devel@lists.sourceforge.net
10170 L:      platform-driver-x86@vger.kernel.org
10171 W:      http://ibm-acpi.sourceforge.net
10172 W:      http://thinkwiki.org/wiki/Ibm-acpi
10173 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10174 S:      Maintained
10175 F:      drivers/platform/x86/thinkpad_acpi.c
10176
10177 TI BANDGAP AND THERMAL DRIVER
10178 M:      Eduardo Valentin <edubezval@gmail.com>
10179 L:      linux-pm@vger.kernel.org
10180 L:      linux-omap@vger.kernel.org
10181 S:      Maintained
10182 F:      drivers/thermal/ti-soc-thermal/
10183
10184 TI CDCE706 CLOCK DRIVER
10185 M:      Max Filippov <jcmvbkbc@gmail.com>
10186 S:      Maintained
10187 F:      drivers/clk/clk-cdce706.c
10188
10189 TI CLOCK DRIVER
10190 M:      Tero Kristo <t-kristo@ti.com>
10191 L:      linux-omap@vger.kernel.org
10192 S:      Maintained
10193 F:      drivers/clk/ti/
10194 F:      include/linux/clk/ti.h
10195
10196 TI FLASH MEDIA INTERFACE DRIVER
10197 M:      Alex Dubov <oakad@yahoo.com>
10198 S:      Maintained
10199 F:      drivers/misc/tifm*
10200 F:      drivers/mmc/host/tifm_sd.c
10201 F:      include/linux/tifm.h
10202
10203 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10204 M:      Santosh Shilimkar <ssantosh@kernel.org>
10205 L:      linux-kernel@vger.kernel.org
10206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10207 S:      Maintained
10208 F:      drivers/soc/ti/*
10209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10210
10211
10212 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10213 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10214 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10215 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10216 S:      Maintained
10217 F:      sound/soc/codecs/lm49453*
10218 F:      sound/soc/codecs/isabelle*
10219
10220 TI LP855x BACKLIGHT DRIVER
10221 M:      Milo Kim <milo.kim@ti.com>
10222 S:      Maintained
10223 F:      Documentation/backlight/lp855x-driver.txt
10224 F:      drivers/video/backlight/lp855x_bl.c
10225 F:      include/linux/platform_data/lp855x.h
10226
10227 TI LP8727 CHARGER DRIVER
10228 M:      Milo Kim <milo.kim@ti.com>
10229 S:      Maintained
10230 F:      drivers/power/lp8727_charger.c
10231 F:      include/linux/platform_data/lp8727.h
10232
10233 TI LP8788 MFD DRIVER
10234 M:      Milo Kim <milo.kim@ti.com>
10235 S:      Maintained
10236 F:      drivers/iio/adc/lp8788_adc.c
10237 F:      drivers/leds/leds-lp8788.c
10238 F:      drivers/mfd/lp8788*.c
10239 F:      drivers/power/lp8788-charger.c
10240 F:      drivers/regulator/lp8788-*.c
10241 F:      include/linux/mfd/lp8788*.h
10242
10243 TI NETCP ETHERNET DRIVER
10244 M:      Wingman Kwok <w-kwok2@ti.com>
10245 M:      Murali Karicheri <m-karicheri2@ti.com>
10246 L:      netdev@vger.kernel.org
10247 S:      Maintained
10248 F:      drivers/net/ethernet/ti/netcp*
10249
10250 TI TAS571X FAMILY ASoC CODEC DRIVER
10251 M:      Kevin Cernekee <cernekee@chromium.org>
10252 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10253 S:      Odd Fixes
10254 F:      sound/soc/codecs/tas571x*
10255
10256 TI TWL4030 SERIES SOC CODEC DRIVER
10257 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10258 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10259 S:      Maintained
10260 F:      sound/soc/codecs/twl4030*
10261
10262 TI WILINK WIRELESS DRIVERS
10263 L:      linux-wireless@vger.kernel.org
10264 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10265 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10267 S:      Orphan
10268 F:      drivers/net/wireless/ti/
10269 F:      include/linux/wl12xx.h
10270
10271 TIPC NETWORK LAYER
10272 M:      Jon Maloy <jon.maloy@ericsson.com>
10273 M:      Ying Xue <ying.xue@windriver.com>
10274 L:      netdev@vger.kernel.org (core kernel code)
10275 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10276 W:      http://tipc.sourceforge.net/
10277 S:      Maintained
10278 F:      include/uapi/linux/tipc*.h
10279 F:      net/tipc/
10280
10281 TILE ARCHITECTURE
10282 M:      Chris Metcalf <cmetcalf@ezchip.com>
10283 W:      http://www.ezchip.com/scm/
10284 S:      Supported
10285 F:      arch/tile/
10286 F:      drivers/char/tile-srom.c
10287 F:      drivers/edac/tile_edac.c
10288 F:      drivers/net/ethernet/tile/
10289 F:      drivers/rtc/rtc-tile.c
10290 F:      drivers/tty/hvc/hvc_tile.c
10291 F:      drivers/tty/serial/tilegx.c
10292 F:      drivers/usb/host/*-tilegx.c
10293 F:      include/linux/usb/tilegx.h
10294
10295 TLAN NETWORK DRIVER
10296 M:      Samuel Chessman <chessman@tux.org>
10297 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10298 W:      http://sourceforge.net/projects/tlan/
10299 S:      Maintained
10300 F:      Documentation/networking/tlan.txt
10301 F:      drivers/net/ethernet/ti/tlan.*
10302
10303 TOMOYO SECURITY MODULE
10304 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10305 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10306 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10307 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10308 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10309 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10310 W:      http://tomoyo.sourceforge.jp/
10311 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10312 S:      Maintained
10313 F:      security/tomoyo/
10314
10315 TOPSTAR LAPTOP EXTRAS DRIVER
10316 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10317 L:      platform-driver-x86@vger.kernel.org
10318 S:      Maintained
10319 F:      drivers/platform/x86/topstar-laptop.c
10320
10321 TOSHIBA ACPI EXTRAS DRIVER
10322 M:      Azael Avalos <coproscefalo@gmail.com>
10323 L:      platform-driver-x86@vger.kernel.org
10324 S:      Maintained
10325 F:      drivers/platform/x86/toshiba_acpi.c
10326
10327 TOSHIBA BLUETOOTH DRIVER
10328 M:      Azael Avalos <coproscefalo@gmail.com>
10329 L:      platform-driver-x86@vger.kernel.org
10330 S:      Maintained
10331 F:      drivers/platform/x86/toshiba_bluetooth.c
10332
10333 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10334 M:      Azael Avalos <coproscefalo@gmail.com>
10335 L:      platform-driver-x86@vger.kernel.org
10336 S:      Maintained
10337 F:      drivers/platform/x86/toshiba_haps.c
10338
10339 TOSHIBA SMM DRIVER
10340 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10341 L:      tlinux-users@tce.toshiba-dme.co.jp
10342 W:      http://www.buzzard.org.uk/toshiba/
10343 S:      Maintained
10344 F:      drivers/char/toshiba.c
10345 F:      include/linux/toshiba.h
10346 F:      include/uapi/linux/toshiba.h
10347
10348 TMIO MMC DRIVER
10349 M:      Ian Molton <ian@mnementh.co.uk>
10350 L:      linux-mmc@vger.kernel.org
10351 S:      Maintained
10352 F:      drivers/mmc/host/tmio_mmc*
10353 F:      drivers/mmc/host/sh_mobile_sdhi.c
10354 F:      include/linux/mmc/tmio.h
10355 F:      include/linux/mmc/sh_mobile_sdhi.h
10356
10357 TMP401 HARDWARE MONITOR DRIVER
10358 M:      Guenter Roeck <linux@roeck-us.net>
10359 L:      lm-sensors@lm-sensors.org
10360 S:      Maintained
10361 F:      Documentation/hwmon/tmp401
10362 F:      drivers/hwmon/tmp401.c
10363
10364 TMPFS (SHMEM FILESYSTEM)
10365 M:      Hugh Dickins <hughd@google.com>
10366 L:      linux-mm@kvack.org
10367 S:      Maintained
10368 F:      include/linux/shmem_fs.h
10369 F:      mm/shmem.c
10370
10371 TM6000 VIDEO4LINUX DRIVER
10372 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10373 L:      linux-media@vger.kernel.org
10374 W:      http://linuxtv.org
10375 T:      git git://linuxtv.org/media_tree.git
10376 S:      Odd fixes
10377 F:      drivers/media/usb/tm6000/
10378
10379 TW68 VIDEO4LINUX DRIVER
10380 M:      Hans Verkuil <hverkuil@xs4all.nl>
10381 L:      linux-media@vger.kernel.org
10382 T:      git git://linuxtv.org/media_tree.git
10383 W:      http://linuxtv.org
10384 S:      Odd Fixes
10385 F:      drivers/media/pci/tw68/
10386
10387 TPM DEVICE DRIVER
10388 M:      Peter Huewe <peterhuewe@gmx.de>
10389 M:      Marcel Selhorst <tpmdd@selhorst.net>
10390 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10391 W:      http://tpmdd.sourceforge.net
10392 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10393 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10394 T:      https://github.com/PeterHuewe/linux-tpmdd
10395 S:      Maintained
10396 F:      drivers/char/tpm/
10397
10398 TPM IBM_VTPM DEVICE DRIVER
10399 M:      Ashley Lai <ashleydlai@gmail.com>
10400 W:      http://tpmdd.sourceforge.net
10401 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10402 S:      Maintained
10403 F:      drivers/char/tpm/tpm_ibmvtpm*
10404
10405 TRACING
10406 M:      Steven Rostedt <rostedt@goodmis.org>
10407 M:      Ingo Molnar <mingo@redhat.com>
10408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10409 S:      Maintained
10410 F:      Documentation/trace/ftrace.txt
10411 F:      arch/*/*/*/ftrace.h
10412 F:      arch/*/kernel/ftrace.c
10413 F:      include/*/ftrace.h
10414 F:      include/linux/trace*.h
10415 F:      include/trace/
10416 F:      kernel/trace/
10417 F:      tools/testing/selftests/ftrace/
10418
10419 TRIVIAL PATCHES
10420 M:      Jiri Kosina <trivial@kernel.org>
10421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10422 S:      Maintained
10423 K:      ^Subject:.*(?i)trivial
10424
10425 TTY LAYER
10426 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10427 M:      Jiri Slaby <jslaby@suse.com>
10428 S:      Supported
10429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10430 F:      Documentation/serial/
10431 F:      drivers/tty/
10432 F:      drivers/tty/serial/serial_core.c
10433 F:      include/linux/serial_core.h
10434 F:      include/linux/serial.h
10435 F:      include/linux/tty.h
10436 F:      include/uapi/linux/serial_core.h
10437 F:      include/uapi/linux/serial.h
10438 F:      include/uapi/linux/tty.h
10439
10440 TUA9001 MEDIA DRIVER
10441 M:      Antti Palosaari <crope@iki.fi>
10442 L:      linux-media@vger.kernel.org
10443 W:      http://linuxtv.org/
10444 W:      http://palosaari.fi/linux/
10445 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10446 T:      git git://linuxtv.org/anttip/media_tree.git
10447 S:      Maintained
10448 F:      drivers/media/tuners/tua9001*
10449
10450 TULIP NETWORK DRIVERS
10451 M:      Grant Grundler <grundler@parisc-linux.org>
10452 L:      netdev@vger.kernel.org
10453 S:      Maintained
10454 F:      drivers/net/ethernet/dec/tulip/
10455
10456 TUN/TAP driver
10457 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10458 W:      http://vtun.sourceforge.net/tun
10459 S:      Maintained
10460 F:      Documentation/networking/tuntap.txt
10461 F:      arch/um/os-Linux/drivers/
10462
10463 TURBOCHANNEL SUBSYSTEM
10464 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10465 M:      Ralf Baechle <ralf@linux-mips.org>
10466 L:      linux-mips@linux-mips.org
10467 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10468 S:      Maintained
10469 F:      drivers/tc/
10470 F:      include/linux/tc.h
10471
10472 U14-34F SCSI DRIVER
10473 M:      Dario Ballabio <ballabio_dario@emc.com>
10474 L:      linux-scsi@vger.kernel.org
10475 S:      Maintained
10476 F:      drivers/scsi/u14-34f.c
10477
10478 UBI FILE SYSTEM (UBIFS)
10479 M:      Artem Bityutskiy <dedekind1@gmail.com>
10480 M:      Adrian Hunter <adrian.hunter@intel.com>
10481 L:      linux-mtd@lists.infradead.org
10482 T:      git git://git.infradead.org/ubifs-2.6.git
10483 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10484 S:      Maintained
10485 F:      Documentation/filesystems/ubifs.txt
10486 F:      fs/ubifs/
10487
10488 UCLINUX (M68KNOMMU AND COLDFIRE)
10489 M:      Greg Ungerer <gerg@uclinux.org>
10490 W:      http://www.uclinux.org/
10491 L:      linux-m68k@lists.linux-m68k.org
10492 L:      uclinux-dev@uclinux.org  (subscribers-only)
10493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10494 S:      Maintained
10495 F:      arch/m68k/coldfire/
10496 F:      arch/m68k/68*/
10497 F:      arch/m68k/*/*_no.*
10498 F:      arch/m68k/include/asm/*_no.*
10499
10500 UDF FILESYSTEM
10501 M:      Jan Kara <jack@suse.com>
10502 S:      Maintained
10503 F:      Documentation/filesystems/udf.txt
10504 F:      fs/udf/
10505
10506 UFS FILESYSTEM
10507 M:      Evgeniy Dushistov <dushistov@mail.ru>
10508 S:      Maintained
10509 F:      Documentation/filesystems/ufs.txt
10510 F:      fs/ufs/
10511
10512 UHID USERSPACE HID IO DRIVER:
10513 M:      David Herrmann <dh.herrmann@googlemail.com>
10514 L:      linux-input@vger.kernel.org
10515 S:      Maintained
10516 F:      drivers/hid/uhid.c
10517 F:      include/uapi/linux/uhid.h
10518
10519 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10520 L:      linux-usb@vger.kernel.org
10521 S:      Orphan
10522 F:      drivers/uwb/
10523 F:      include/linux/uwb.h
10524 F:      include/linux/uwb/
10525
10526 UNICORE32 ARCHITECTURE:
10527 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10528 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10529 S:      Maintained
10530 T:      git git://github.com/gxt/linux.git
10531 F:      arch/unicore32/
10532
10533 UNIFDEF
10534 M:      Tony Finch <dot@dotat.at>
10535 W:      http://dotat.at/prog/unifdef
10536 S:      Maintained
10537 F:      scripts/unifdef.c
10538
10539 UNIFORM CDROM DRIVER
10540 M:      Jens Axboe <axboe@kernel.dk>
10541 W:      http://www.kernel.dk
10542 S:      Maintained
10543 F:      Documentation/cdrom/
10544 F:      drivers/cdrom/cdrom.c
10545 F:      include/linux/cdrom.h
10546 F:      include/uapi/linux/cdrom.h
10547
10548 UNISYS S-PAR DRIVERS
10549 M:      Benjamin Romer <benjamin.romer@unisys.com>
10550 M:      David Kershner <david.kershner@unisys.com>
10551 L:      sparmaintainer@unisys.com (Unisys internal)
10552 S:      Supported
10553 F:      drivers/staging/unisys/
10554
10555 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10556 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10557 L:      linux-scsi@vger.kernel.org
10558 S:      Supported
10559 F:      Documentation/scsi/ufs.txt
10560 F:      drivers/scsi/ufs/
10561
10562 UNSORTED BLOCK IMAGES (UBI)
10563 M:      Artem Bityutskiy <dedekind1@gmail.com>
10564 M:      Richard Weinberger <richard@nod.at>
10565 W:      http://www.linux-mtd.infradead.org/
10566 L:      linux-mtd@lists.infradead.org
10567 T:      git git://git.infradead.org/ubifs-2.6.git
10568 S:      Supported
10569 F:      drivers/mtd/ubi/
10570 F:      include/linux/mtd/ubi.h
10571 F:      include/uapi/mtd/ubi-user.h
10572
10573 USB ACM DRIVER
10574 M:      Oliver Neukum <oliver@neukum.org>
10575 L:      linux-usb@vger.kernel.org
10576 S:      Maintained
10577 F:      Documentation/usb/acm.txt
10578 F:      drivers/usb/class/cdc-acm.*
10579
10580 USB AR5523 WIRELESS DRIVER
10581 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10582 L:      linux-wireless@vger.kernel.org
10583 S:      Maintained
10584 F:      drivers/net/wireless/ath/ar5523/
10585
10586 USB ATTACHED SCSI
10587 M:      Hans de Goede <hdegoede@redhat.com>
10588 M:      Gerd Hoffmann <kraxel@redhat.com>
10589 L:      linux-usb@vger.kernel.org
10590 L:      linux-scsi@vger.kernel.org
10591 S:      Maintained
10592 F:      drivers/usb/storage/uas.c
10593
10594 USB CDC ETHERNET DRIVER
10595 M:      Oliver Neukum <oliver@neukum.org>
10596 L:      linux-usb@vger.kernel.org
10597 S:      Maintained
10598 F:      drivers/net/usb/cdc_*.c
10599 F:      include/uapi/linux/usb/cdc.h
10600
10601 USB CHAOSKEY DRIVER
10602 M:      Keith Packard <keithp@keithp.com>
10603 L:      linux-usb@vger.kernel.org
10604 S:      Maintained
10605 F:      drivers/usb/misc/chaoskey.c
10606
10607 USB CYPRESS C67X00 DRIVER
10608 M:      Peter Korsgaard <jacmet@sunsite.dk>
10609 L:      linux-usb@vger.kernel.org
10610 S:      Maintained
10611 F:      drivers/usb/c67x00/
10612
10613 USB DAVICOM DM9601 DRIVER
10614 M:      Peter Korsgaard <jacmet@sunsite.dk>
10615 L:      netdev@vger.kernel.org
10616 W:      http://www.linux-usb.org/usbnet
10617 S:      Maintained
10618 F:      drivers/net/usb/dm9601.c
10619
10620 USB DIAMOND RIO500 DRIVER
10621 M:      Cesar Miquel <miquel@df.uba.ar>
10622 L:      rio500-users@lists.sourceforge.net
10623 W:      http://rio500.sourceforge.net
10624 S:      Maintained
10625 F:      drivers/usb/misc/rio500*
10626
10627 USB EHCI DRIVER
10628 M:      Alan Stern <stern@rowland.harvard.edu>
10629 L:      linux-usb@vger.kernel.org
10630 S:      Maintained
10631 F:      Documentation/usb/ehci.txt
10632 F:      drivers/usb/host/ehci*
10633
10634 USB GADGET/PERIPHERAL SUBSYSTEM
10635 M:      Felipe Balbi <balbi@ti.com>
10636 L:      linux-usb@vger.kernel.org
10637 W:      http://www.linux-usb.org/gadget
10638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10639 S:      Maintained
10640 F:      drivers/usb/gadget/
10641 F:      include/linux/usb/gadget*
10642
10643 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10644 M:      Jiri Kosina <jkosina@suse.com>
10645 L:      linux-usb@vger.kernel.org
10646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10647 S:      Maintained
10648 F:      Documentation/hid/hiddev.txt
10649 F:      drivers/hid/usbhid/
10650
10651 USB ISP116X DRIVER
10652 M:      Olav Kongas <ok@artecdesign.ee>
10653 L:      linux-usb@vger.kernel.org
10654 S:      Maintained
10655 F:      drivers/usb/host/isp116x*
10656 F:      include/linux/usb/isp116x.h
10657
10658 USB MASS STORAGE DRIVER
10659 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10660 L:      linux-usb@vger.kernel.org
10661 L:      usb-storage@lists.one-eyed-alien.net
10662 S:      Maintained
10663 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10664 F:      drivers/usb/storage/
10665
10666 USB MIDI DRIVER
10667 M:      Clemens Ladisch <clemens@ladisch.de>
10668 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10669 T:      git git://git.alsa-project.org/alsa-kernel.git
10670 S:      Maintained
10671 F:      sound/usb/midi.*
10672
10673 USB NETWORKING DRIVERS
10674 L:      linux-usb@vger.kernel.org
10675 S:      Odd Fixes
10676 F:      drivers/net/usb/
10677
10678 USB OHCI DRIVER
10679 M:      Alan Stern <stern@rowland.harvard.edu>
10680 L:      linux-usb@vger.kernel.org
10681 S:      Maintained
10682 F:      Documentation/usb/ohci.txt
10683 F:      drivers/usb/host/ohci*
10684
10685 USB OTG FSM (Finite State Machine)
10686 M:      Peter Chen <Peter.Chen@freescale.com>
10687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10688 L:      linux-usb@vger.kernel.org
10689 S:      Maintained
10690 F:      drivers/usb/common/usb-otg-fsm.c
10691
10692 USB OVER IP DRIVER
10693 M:      Valentina Manea <valentina.manea.m@gmail.com>
10694 M:      Shuah Khan <shuah.kh@samsung.com>
10695 L:      linux-usb@vger.kernel.org
10696 S:      Maintained
10697 F:      drivers/usb/usbip/
10698 F:      tools/usb/usbip/
10699
10700 USB PEGASUS DRIVER
10701 M:      Petko Manolov <petkan@nucleusys.com>
10702 L:      linux-usb@vger.kernel.org
10703 L:      netdev@vger.kernel.org
10704 T:      git git://github.com/petkan/pegasus.git
10705 W:      https://github.com/petkan/pegasus
10706 S:      Maintained
10707 F:      drivers/net/usb/pegasus.*
10708
10709 USB PHY LAYER
10710 M:      Felipe Balbi <balbi@ti.com>
10711 L:      linux-usb@vger.kernel.org
10712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10713 S:      Maintained
10714 F:      drivers/usb/phy/
10715
10716 USB PRINTER DRIVER (usblp)
10717 M:      Pete Zaitcev <zaitcev@redhat.com>
10718 L:      linux-usb@vger.kernel.org
10719 S:      Supported
10720 F:      drivers/usb/class/usblp.c
10721
10722 USB RTL8150 DRIVER
10723 M:      Petko Manolov <petkan@nucleusys.com>
10724 L:      linux-usb@vger.kernel.org
10725 L:      netdev@vger.kernel.org
10726 T:      git git://github.com/petkan/rtl8150.git
10727 W:      https://github.com/petkan/rtl8150
10728 S:      Maintained
10729 F:      drivers/net/usb/rtl8150.c
10730
10731 USB SERIAL SUBSYSTEM
10732 M:      Johan Hovold <johan@kernel.org>
10733 L:      linux-usb@vger.kernel.org
10734 S:      Maintained
10735 F:      Documentation/usb/usb-serial.txt
10736 F:      drivers/usb/serial/
10737 F:      include/linux/usb/serial.h
10738
10739 USB SMSC75XX ETHERNET DRIVER
10740 M:      Steve Glendinning <steve.glendinning@shawell.net>
10741 L:      netdev@vger.kernel.org
10742 S:      Maintained
10743 F:      drivers/net/usb/smsc75xx.*
10744
10745 USB SMSC95XX ETHERNET DRIVER
10746 M:      Steve Glendinning <steve.glendinning@shawell.net>
10747 L:      netdev@vger.kernel.org
10748 S:      Maintained
10749 F:      drivers/net/usb/smsc95xx.*
10750
10751 USB SUBSYSTEM
10752 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10753 L:      linux-usb@vger.kernel.org
10754 W:      http://www.linux-usb.org
10755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10756 S:      Supported
10757 F:      Documentation/usb/
10758 F:      drivers/usb/
10759 F:      include/linux/usb.h
10760 F:      include/linux/usb/
10761
10762 USB UHCI DRIVER
10763 M:      Alan Stern <stern@rowland.harvard.edu>
10764 L:      linux-usb@vger.kernel.org
10765 S:      Maintained
10766 F:      drivers/usb/host/uhci*
10767
10768 USB "USBNET" DRIVER FRAMEWORK
10769 M:      Oliver Neukum <oneukum@suse.com>
10770 L:      netdev@vger.kernel.org
10771 W:      http://www.linux-usb.org/usbnet
10772 S:      Maintained
10773 F:      drivers/net/usb/usbnet.c
10774 F:      include/linux/usb/usbnet.h
10775
10776 USB VIDEO CLASS
10777 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10778 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10779 L:      linux-media@vger.kernel.org
10780 T:      git git://linuxtv.org/media_tree.git
10781 W:      http://www.ideasonboard.org/uvc/
10782 S:      Maintained
10783 F:      drivers/media/usb/uvc/
10784 F:      include/uapi/linux/uvcvideo.h
10785
10786 USB VISION DRIVER
10787 M:      Hans Verkuil <hverkuil@xs4all.nl>
10788 L:      linux-media@vger.kernel.org
10789 T:      git git://linuxtv.org/media_tree.git
10790 W:      http://linuxtv.org
10791 S:      Odd Fixes
10792 F:      drivers/media/usb/usbvision/
10793
10794 USB WEBCAM GADGET
10795 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10796 L:      linux-usb@vger.kernel.org
10797 S:      Maintained
10798 F:      drivers/usb/gadget/function/*uvc*
10799 F:      drivers/usb/gadget/legacy/webcam.c
10800
10801 USB WIRELESS RNDIS DRIVER (rndis_wlan)
10802 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
10803 L:      linux-wireless@vger.kernel.org
10804 S:      Maintained
10805 F:      drivers/net/wireless/rndis_wlan.c
10806
10807 USB XHCI DRIVER
10808 M:      Mathias Nyman <mathias.nyman@intel.com>
10809 L:      linux-usb@vger.kernel.org
10810 S:      Supported
10811 F:      drivers/usb/host/xhci*
10812 F:      drivers/usb/host/pci-quirks*
10813
10814 USB ZD1201 DRIVER
10815 L:      linux-wireless@vger.kernel.org
10816 W:      http://linux-lc100020.sourceforge.net
10817 S:      Orphan
10818 F:      drivers/net/wireless/zd1201.*
10819
10820 USB ZR364XX DRIVER
10821 M:      Antoine Jacquet <royale@zerezo.com>
10822 L:      linux-usb@vger.kernel.org
10823 L:      linux-media@vger.kernel.org
10824 T:      git git://linuxtv.org/media_tree.git
10825 W:      http://royale.zerezo.com/zr364xx/
10826 S:      Maintained
10827 F:      Documentation/video4linux/zr364xx.txt
10828 F:      drivers/media/usb/zr364xx/
10829
10830 ULPI BUS
10831 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
10832 L:      linux-usb@vger.kernel.org
10833 S:      Maintained
10834 F:      drivers/usb/common/ulpi.c
10835 F:      include/linux/ulpi/
10836
10837 USER-MODE LINUX (UML)
10838 M:      Jeff Dike <jdike@addtoit.com>
10839 M:      Richard Weinberger <richard@nod.at>
10840 L:      user-mode-linux-devel@lists.sourceforge.net
10841 L:      user-mode-linux-user@lists.sourceforge.net
10842 W:      http://user-mode-linux.sourceforge.net
10843 S:      Maintained
10844 F:      Documentation/virtual/uml/
10845 F:      arch/um/
10846 F:      arch/x86/um/
10847 F:      fs/hostfs/
10848 F:      fs/hppfs/
10849
10850 USERSPACE I/O (UIO)
10851 M:      "Hans J. Koch" <hjk@hansjkoch.de>
10852 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10853 S:      Maintained
10854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
10855 F:      Documentation/DocBook/uio-howto.tmpl
10856 F:      drivers/uio/
10857 F:      include/linux/uio*.h
10858
10859 UTIL-LINUX PACKAGE
10860 M:      Karel Zak <kzak@redhat.com>
10861 L:      util-linux@vger.kernel.org
10862 W:      http://en.wikipedia.org/wiki/Util-linux
10863 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
10864 S:      Maintained
10865
10866 UVESAFB DRIVER
10867 M:      Michal Januszewski <spock@gentoo.org>
10868 L:      linux-fbdev@vger.kernel.org
10869 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
10870 S:      Maintained
10871 F:      Documentation/fb/uvesafb.txt
10872 F:      drivers/video/fbdev/uvesafb.*
10873
10874 VFAT/FAT/MSDOS FILESYSTEM
10875 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
10876 S:      Maintained
10877 F:      Documentation/filesystems/vfat.txt
10878 F:      fs/fat/
10879
10880 VFIO DRIVER
10881 M:      Alex Williamson <alex.williamson@redhat.com>
10882 L:      kvm@vger.kernel.org
10883 S:      Maintained
10884 F:      Documentation/vfio.txt
10885 F:      drivers/vfio/
10886 F:      include/linux/vfio.h
10887 F:      include/uapi/linux/vfio.h
10888
10889 VFIO PLATFORM DRIVER
10890 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
10891 L:      kvm@vger.kernel.org
10892 S:      Maintained
10893 F:      drivers/vfio/platform/
10894
10895 VIDEOBUF2 FRAMEWORK
10896 M:      Pawel Osciak <pawel@osciak.com>
10897 M:      Marek Szyprowski <m.szyprowski@samsung.com>
10898 M:      Kyungmin Park <kyungmin.park@samsung.com>
10899 L:      linux-media@vger.kernel.org
10900 S:      Maintained
10901 F:      drivers/media/v4l2-core/videobuf2-*
10902 F:      include/media/videobuf2-*
10903
10904 VIRTIO CONSOLE DRIVER
10905 M:      Amit Shah <amit.shah@redhat.com>
10906 L:      virtualization@lists.linux-foundation.org
10907 S:      Maintained
10908 F:      drivers/char/virtio_console.c
10909 F:      include/linux/virtio_console.h
10910 F:      include/uapi/linux/virtio_console.h
10911
10912 VIRTIO CORE, NET AND BLOCK DRIVERS
10913 M:      "Michael S. Tsirkin" <mst@redhat.com>
10914 L:      virtualization@lists.linux-foundation.org
10915 S:      Maintained
10916 F:      drivers/virtio/
10917 F:      tools/virtio/
10918 F:      drivers/net/virtio_net.c
10919 F:      drivers/block/virtio_blk.c
10920 F:      include/linux/virtio_*.h
10921 F:      include/uapi/linux/virtio_*.h
10922
10923 VIRTIO DRIVERS FOR S390
10924 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10925 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
10926 L:      linux-s390@vger.kernel.org
10927 L:      virtualization@lists.linux-foundation.org
10928 L:      kvm@vger.kernel.org
10929 S:      Supported
10930 F:      drivers/s390/virtio/
10931
10932 VIRTIO GPU DRIVER
10933 M:      David Airlie <airlied@linux.ie>
10934 M:      Gerd Hoffmann <kraxel@redhat.com>
10935 L:      dri-devel@lists.freedesktop.org
10936 L:      virtualization@lists.linux-foundation.org
10937 S:      Maintained
10938 F:      drivers/gpu/drm/virtio/
10939 F:      include/uapi/linux/virtio_gpu.h
10940
10941 VIRTIO HOST (VHOST)
10942 M:      "Michael S. Tsirkin" <mst@redhat.com>
10943 L:      kvm@vger.kernel.org
10944 L:      virtualization@lists.linux-foundation.org
10945 L:      netdev@vger.kernel.org
10946 S:      Maintained
10947 F:      drivers/vhost/
10948 F:      include/uapi/linux/vhost.h
10949
10950 VIRTIO INPUT DRIVER
10951 M:      Gerd Hoffmann <kraxel@redhat.com>
10952 S:      Maintained
10953 F:      drivers/virtio/virtio_input.c
10954 F:      include/uapi/linux/virtio_input.h
10955
10956 VIA RHINE NETWORK DRIVER
10957 S:      Orphan
10958 F:      drivers/net/ethernet/via/via-rhine.c
10959
10960 VIA SD/MMC CARD CONTROLLER DRIVER
10961 M:      Bruce Chang <brucechang@via.com.tw>
10962 M:      Harald Welte <HaraldWelte@viatech.com>
10963 S:      Maintained
10964 F:      drivers/mmc/host/via-sdmmc.c
10965
10966 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
10967 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
10968 L:      linux-fbdev@vger.kernel.org
10969 S:      Maintained
10970 F:      include/linux/via-core.h
10971 F:      include/linux/via-gpio.h
10972 F:      include/linux/via_i2c.h
10973 F:      drivers/video/fbdev/via/
10974
10975 VIA VELOCITY NETWORK DRIVER
10976 M:      Francois Romieu <romieu@fr.zoreil.com>
10977 L:      netdev@vger.kernel.org
10978 S:      Maintained
10979 F:      drivers/net/ethernet/via/via-velocity.*
10980
10981 VIVID VIRTUAL VIDEO DRIVER
10982 M:      Hans Verkuil <hverkuil@xs4all.nl>
10983 L:      linux-media@vger.kernel.org
10984 T:      git git://linuxtv.org/media_tree.git
10985 W:      http://linuxtv.org
10986 S:      Maintained
10987 F:      drivers/media/platform/vivid/*
10988
10989 VLAN (802.1Q)
10990 M:      Patrick McHardy <kaber@trash.net>
10991 L:      netdev@vger.kernel.org
10992 S:      Maintained
10993 F:      drivers/net/macvlan.c
10994 F:      include/linux/if_*vlan.h
10995 F:      net/8021q/
10996
10997 VLYNQ BUS
10998 M:      Florian Fainelli <florian@openwrt.org>
10999 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11000 S:      Maintained
11001 F:      drivers/vlynq/vlynq.c
11002 F:      include/linux/vlynq.h
11003
11004 VME SUBSYSTEM
11005 M:      Martyn Welch <martyn.welch@ge.com>
11006 M:      Manohar Vanga <manohar.vanga@gmail.com>
11007 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11008 L:      devel@driverdev.osuosl.org
11009 S:      Maintained
11010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11011 F:      Documentation/vme_api.txt
11012 F:      drivers/staging/vme/
11013 F:      drivers/vme/
11014 F:      include/linux/vme*
11015
11016 VMWARE HYPERVISOR INTERFACE
11017 M:      Alok Kataria <akataria@vmware.com>
11018 L:      virtualization@lists.linux-foundation.org
11019 S:      Supported
11020 F:      arch/x86/kernel/cpu/vmware.c
11021
11022 VMWARE BALLOON DRIVER
11023 M:      Xavier Deguillard <xdeguillard@vmware.com>
11024 M:      Philip Moltmann <moltmann@vmware.com>
11025 M:      "VMware, Inc." <pv-drivers@vmware.com>
11026 L:      linux-kernel@vger.kernel.org
11027 S:      Maintained
11028 F:      drivers/misc/vmw_balloon.c
11029
11030 VMWARE VMMOUSE SUBDRIVER
11031 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11032 M:      "VMware, Inc." <pv-drivers@vmware.com>
11033 L:      linux-input@vger.kernel.org
11034 S:      Maintained
11035 F:      drivers/input/mouse/vmmouse.c
11036 F:      drivers/input/mouse/vmmouse.h
11037
11038 VMWARE VMXNET3 ETHERNET DRIVER
11039 M:      Shreyas Bhatewara <sbhatewara@vmware.com>
11040 M:      "VMware, Inc." <pv-drivers@vmware.com>
11041 L:      netdev@vger.kernel.org
11042 S:      Maintained
11043 F:      drivers/net/vmxnet3/
11044
11045 VMware PVSCSI driver
11046 M:      Arvind Kumar <arvindkumar@vmware.com>
11047 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11048 L:      linux-scsi@vger.kernel.org
11049 S:      Maintained
11050 F:      drivers/scsi/vmw_pvscsi.c
11051 F:      drivers/scsi/vmw_pvscsi.h
11052
11053 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11054 M:      Liam Girdwood <lgirdwood@gmail.com>
11055 M:      Mark Brown <broonie@kernel.org>
11056 L:      linux-kernel@vger.kernel.org
11057 W:      http://opensource.wolfsonmicro.com/node/15
11058 W:      http://www.slimlogic.co.uk/?p=48
11059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11060 S:      Supported
11061 F:      drivers/regulator/
11062 F:      include/linux/regulator/
11063
11064 VT1211 HARDWARE MONITOR DRIVER
11065 M:      Juerg Haefliger <juergh@gmail.com>
11066 L:      lm-sensors@lm-sensors.org
11067 S:      Maintained
11068 F:      Documentation/hwmon/vt1211
11069 F:      drivers/hwmon/vt1211.c
11070
11071 VT8231 HARDWARE MONITOR DRIVER
11072 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11073 L:      lm-sensors@lm-sensors.org
11074 S:      Maintained
11075 F:      drivers/hwmon/vt8231.c
11076
11077 VUB300 USB to SDIO/SD/MMC bridge chip
11078 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11079 L:      linux-mmc@vger.kernel.org
11080 L:      linux-usb@vger.kernel.org
11081 S:      Supported
11082 F:      drivers/mmc/host/vub300.c
11083
11084 W1 DALLAS'S 1-WIRE BUS
11085 M:      Evgeniy Polyakov <zbr@ioremap.net>
11086 S:      Maintained
11087 F:      Documentation/w1/
11088 F:      drivers/w1/
11089
11090 W83791D HARDWARE MONITORING DRIVER
11091 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11092 L:      lm-sensors@lm-sensors.org
11093 S:      Maintained
11094 F:      Documentation/hwmon/w83791d
11095 F:      drivers/hwmon/w83791d.c
11096
11097 W83793 HARDWARE MONITORING DRIVER
11098 M:      Rudolf Marek <r.marek@assembler.cz>
11099 L:      lm-sensors@lm-sensors.org
11100 S:      Maintained
11101 F:      Documentation/hwmon/w83793
11102 F:      drivers/hwmon/w83793.c
11103
11104 W83795 HARDWARE MONITORING DRIVER
11105 M:      Jean Delvare <jdelvare@suse.com>
11106 L:      lm-sensors@lm-sensors.org
11107 S:      Maintained
11108 F:      drivers/hwmon/w83795.c
11109
11110 W83L51xD SD/MMC CARD INTERFACE DRIVER
11111 M:      Pierre Ossman <pierre@ossman.eu>
11112 S:      Maintained
11113 F:      drivers/mmc/host/wbsd.*
11114
11115 WACOM PROTOCOL 4 SERIAL TABLETS
11116 M:      Julian Squires <julian@cipht.net>
11117 M:      Hans de Goede <hdegoede@redhat.com>
11118 L:      linux-input@vger.kernel.org
11119 S:      Maintained
11120 F:      drivers/input/tablet/wacom_serial4.c
11121
11122 WATCHDOG DEVICE DRIVERS
11123 M:      Wim Van Sebroeck <wim@iguana.be>
11124 L:      linux-watchdog@vger.kernel.org
11125 W:      http://www.linux-watchdog.org/
11126 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11127 S:      Maintained
11128 F:      Documentation/watchdog/
11129 F:      drivers/watchdog/
11130 F:      include/linux/watchdog.h
11131 F:      include/uapi/linux/watchdog.h
11132
11133 WD7000 SCSI DRIVER
11134 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11135 L:      linux-scsi@vger.kernel.org
11136 S:      Maintained
11137 F:      drivers/scsi/wd7000.c
11138
11139 WIIMOTE HID DRIVER
11140 M:      David Herrmann <dh.herrmann@googlemail.com>
11141 L:      linux-input@vger.kernel.org
11142 S:      Maintained
11143 F:      drivers/hid/hid-wiimote*
11144
11145 WINBOND CIR DRIVER
11146 M:      David Härdeman <david@hardeman.nu>
11147 S:      Maintained
11148 F:      drivers/media/rc/winbond-cir.c
11149
11150 WIMAX STACK
11151 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11152 M:      linux-wimax@intel.com
11153 L:      wimax@linuxwimax.org (subscribers-only)
11154 S:      Supported
11155 W:      http://linuxwimax.org
11156 F:      Documentation/wimax/README.wimax
11157 F:      include/linux/wimax/debug.h
11158 F:      include/net/wimax.h
11159 F:      include/uapi/linux/wimax.h
11160 F:      net/wimax/
11161
11162 WISTRON LAPTOP BUTTON DRIVER
11163 M:      Miloslav Trmac <mitr@volny.cz>
11164 S:      Maintained
11165 F:      drivers/input/misc/wistron_btns.c
11166
11167 WL3501 WIRELESS PCMCIA CARD DRIVER
11168 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11169 L:      linux-wireless@vger.kernel.org
11170 W:      http://oops.ghostprotocols.net:81/blog
11171 S:      Maintained
11172 F:      drivers/net/wireless/wl3501*
11173
11174 WM97XX TOUCHSCREEN DRIVERS
11175 M:      Mark Brown <broonie@kernel.org>
11176 M:      Liam Girdwood <lrg@slimlogic.co.uk>
11177 L:      linux-input@vger.kernel.org
11178 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
11179 W:      http://opensource.wolfsonmicro.com/node/7
11180 S:      Supported
11181 F:      drivers/input/touchscreen/*wm97*
11182 F:      include/linux/wm97xx.h
11183
11184 WOLFSON MICROELECTRONICS DRIVERS
11185 L:      patches@opensource.wolfsonmicro.com
11186 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
11187 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
11188 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
11189 S:      Supported
11190 F:      Documentation/hwmon/wm83??
11191 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11192 F:      drivers/clk/clk-wm83*.c
11193 F:      drivers/extcon/extcon-arizona.c
11194 F:      drivers/leds/leds-wm83*.c
11195 F:      drivers/gpio/gpio-*wm*.c
11196 F:      drivers/gpio/gpio-arizona.c
11197 F:      drivers/hwmon/wm83??-hwmon.c
11198 F:      drivers/input/misc/wm831x-on.c
11199 F:      drivers/input/touchscreen/wm831x-ts.c
11200 F:      drivers/input/touchscreen/wm97*.c
11201 F:      drivers/mfd/arizona*
11202 F:      drivers/mfd/wm*.c
11203 F:      drivers/power/wm83*.c
11204 F:      drivers/rtc/rtc-wm83*.c
11205 F:      drivers/regulator/wm8*.c
11206 F:      drivers/video/backlight/wm83*_bl.c
11207 F:      drivers/watchdog/wm83*_wdt.c
11208 F:      include/linux/mfd/arizona/
11209 F:      include/linux/mfd/wm831x/
11210 F:      include/linux/mfd/wm8350/
11211 F:      include/linux/mfd/wm8400*
11212 F:      include/linux/wm97xx.h
11213 F:      include/sound/wm????.h
11214 F:      sound/soc/codecs/arizona.?
11215 F:      sound/soc/codecs/wm*
11216
11217 WORKQUEUE
11218 M:      Tejun Heo <tj@kernel.org>
11219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11220 S:      Maintained
11221 F:      include/linux/workqueue.h
11222 F:      kernel/workqueue.c
11223 F:      Documentation/workqueue.txt
11224
11225 X.25 NETWORK LAYER
11226 M:      Andrew Hendry <andrew.hendry@gmail.com>
11227 L:      linux-x25@vger.kernel.org
11228 S:      Odd Fixes
11229 F:      Documentation/networking/x25*
11230 F:      include/net/x25*
11231 F:      net/x25/
11232
11233 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11234 M:      Thomas Gleixner <tglx@linutronix.de>
11235 M:      Ingo Molnar <mingo@redhat.com>
11236 M:      "H. Peter Anvin" <hpa@zytor.com>
11237 M:      x86@kernel.org
11238 L:      linux-kernel@vger.kernel.org
11239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11240 S:      Maintained
11241 F:      Documentation/x86/
11242 F:      arch/x86/
11243
11244 X86 PLATFORM DRIVERS
11245 M:      Darren Hart <dvhart@infradead.org>
11246 L:      platform-driver-x86@vger.kernel.org
11247 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11248 S:      Maintained
11249 F:      drivers/platform/x86/
11250
11251 X86 MCE INFRASTRUCTURE
11252 M:      Tony Luck <tony.luck@intel.com>
11253 M:      Borislav Petkov <bp@alien8.de>
11254 L:      linux-edac@vger.kernel.org
11255 S:      Maintained
11256 F:      arch/x86/kernel/cpu/mcheck/*
11257
11258 X86 VDSO
11259 M:      Andy Lutomirski <luto@amacapital.net>
11260 L:      linux-kernel@vger.kernel.org
11261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11262 S:      Maintained
11263 F:      arch/x86/entry/vdso/
11264
11265 XC2028/3028 TUNER DRIVER
11266 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11267 L:      linux-media@vger.kernel.org
11268 W:      http://linuxtv.org
11269 T:      git git://linuxtv.org/media_tree.git
11270 S:      Maintained
11271 F:      drivers/media/tuners/tuner-xc2028.*
11272
11273 XEN HYPERVISOR INTERFACE
11274 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11275 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11276 M:      David Vrabel <david.vrabel@citrix.com>
11277 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11279 S:      Supported
11280 F:      arch/x86/xen/
11281 F:      drivers/*/xen-*front.c
11282 F:      drivers/xen/
11283 F:      arch/x86/include/asm/xen/
11284 F:      include/xen/
11285 F:      include/uapi/xen/
11286
11287 XEN HYPERVISOR ARM
11288 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11289 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11290 S:      Supported
11291 F:      arch/arm/xen/
11292 F:      arch/arm/include/asm/xen/
11293
11294 XEN HYPERVISOR ARM64
11295 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11296 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11297 S:      Supported
11298 F:      arch/arm64/xen/
11299 F:      arch/arm64/include/asm/xen/
11300
11301 XEN NETWORK BACKEND DRIVER
11302 M:      Ian Campbell <ian.campbell@citrix.com>
11303 M:      Wei Liu <wei.liu2@citrix.com>
11304 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11305 L:      netdev@vger.kernel.org
11306 S:      Supported
11307 F:      drivers/net/xen-netback/*
11308
11309 XEN PCI SUBSYSTEM
11310 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11311 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11312 S:      Supported
11313 F:      arch/x86/pci/*xen*
11314 F:      drivers/pci/*xen*
11315
11316 XEN BLOCK SUBSYSTEM
11317 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11318 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11319 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11320 S:      Supported
11321 F:      drivers/block/xen-blkback/*
11322 F:      drivers/block/xen*
11323
11324 XEN PVSCSI DRIVERS
11325 M:      Juergen Gross <jgross@suse.com>
11326 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11327 L:      linux-scsi@vger.kernel.org
11328 S:      Supported
11329 F:      drivers/scsi/xen-scsifront.c
11330 F:      drivers/xen/xen-scsiback.c
11331 F:      include/xen/interface/io/vscsiif.h
11332
11333 XEN SWIOTLB SUBSYSTEM
11334 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11335 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11336 S:      Supported
11337 F:      arch/x86/xen/*swiotlb*
11338 F:      drivers/xen/*swiotlb*
11339
11340 XFS FILESYSTEM
11341 P:      Silicon Graphics Inc
11342 M:      Dave Chinner <david@fromorbit.com>
11343 M:      xfs@oss.sgi.com
11344 L:      xfs@oss.sgi.com
11345 W:      http://oss.sgi.com/projects/xfs
11346 T:      git git://oss.sgi.com/xfs/xfs.git
11347 S:      Supported
11348 F:      Documentation/filesystems/xfs.txt
11349 F:      fs/xfs/
11350
11351 XILINX AXI ETHERNET DRIVER
11352 M:      Anirudha Sarangi <anirudh@xilinx.com>
11353 M:      John Linn <John.Linn@xilinx.com>
11354 S:      Maintained
11355 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11356
11357 XILINX UARTLITE SERIAL DRIVER
11358 M:      Peter Korsgaard <jacmet@sunsite.dk>
11359 L:      linux-serial@vger.kernel.org
11360 S:      Maintained
11361 F:      drivers/tty/serial/uartlite.c
11362
11363 XILINX VIDEO IP CORES
11364 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11365 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11366 L:      linux-media@vger.kernel.org
11367 T:      git git://linuxtv.org/media_tree.git
11368 S:      Supported
11369 F:      Documentation/devicetree/bindings/media/xilinx/
11370 F:      drivers/media/platform/xilinx/
11371 F:      include/uapi/linux/xilinx-v4l2-controls.h
11372
11373 XILLYBUS DRIVER
11374 M:      Eli Billauer <eli.billauer@gmail.com>
11375 L:      linux-kernel@vger.kernel.org
11376 S:      Supported
11377 F:      drivers/char/xillybus/
11378
11379 XTENSA XTFPGA PLATFORM SUPPORT
11380 M:      Max Filippov <jcmvbkbc@gmail.com>
11381 L:      linux-xtensa@linux-xtensa.org
11382 S:      Maintained
11383 F:      drivers/spi/spi-xtensa-xtfpga.c
11384 F:      sound/soc/xtensa/xtfpga-i2s.c
11385
11386 YAM DRIVER FOR AX.25
11387 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11388 L:      linux-hams@vger.kernel.org
11389 S:      Maintained
11390 F:      drivers/net/hamradio/yam*
11391 F:      include/linux/yam.h
11392
11393 YEALINK PHONE DRIVER
11394 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11395 L:      usbb2k-api-dev@nongnu.org
11396 S:      Maintained
11397 F:      Documentation/input/yealink.txt
11398 F:      drivers/input/misc/yealink.*
11399
11400 Z8530 DRIVER FOR AX.25
11401 M:      Joerg Reuter <jreuter@yaina.de>
11402 W:      http://yaina.de/jreuter/
11403 W:      http://www.qsl.net/dl1bke/
11404 L:      linux-hams@vger.kernel.org
11405 S:      Maintained
11406 F:      Documentation/networking/z8530drv.txt
11407 F:      drivers/net/hamradio/*scc.c
11408 F:      drivers/net/hamradio/z8530.h
11409
11410 ZBUD COMPRESSED PAGE ALLOCATOR
11411 M:      Seth Jennings <sjennings@variantweb.net>
11412 L:      linux-mm@kvack.org
11413 S:      Maintained
11414 F:      mm/zbud.c
11415 F:      include/linux/zbud.h
11416
11417 ZD1211RW WIRELESS DRIVER
11418 M:      Daniel Drake <dsd@gentoo.org>
11419 M:      Ulrich Kunitz <kune@deine-taler.de>
11420 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11421 L:      linux-wireless@vger.kernel.org
11422 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11423 S:      Maintained
11424 F:      drivers/net/wireless/zd1211rw/
11425
11426 ZPOOL COMPRESSED PAGE STORAGE API
11427 M:      Dan Streetman <ddstreet@ieee.org>
11428 L:      linux-mm@kvack.org
11429 S:      Maintained
11430 F:      mm/zpool.c
11431 F:      include/linux/zpool.h
11432
11433 ZR36067 VIDEO FOR LINUX DRIVER
11434 L:      mjpeg-users@lists.sourceforge.net
11435 L:      linux-media@vger.kernel.org
11436 W:      http://mjpeg.sourceforge.net/driver-zoran/
11437 T:      hg http://linuxtv.org/hg/v4l-dvb
11438 S:      Odd Fixes
11439 F:      drivers/media/pci/zoran/
11440
11441 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11442 M:      Minchan Kim <minchan@kernel.org>
11443 M:      Nitin Gupta <ngupta@vflare.org>
11444 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11445 L:      linux-kernel@vger.kernel.org
11446 S:      Maintained
11447 F:      drivers/block/zram/
11448 F:      Documentation/blockdev/zram.txt
11449
11450 ZS DECSTATION Z85C30 SERIAL DRIVER
11451 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11452 S:      Maintained
11453 F:      drivers/tty/serial/zs.*
11454
11455 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11456 M:      Minchan Kim <minchan@kernel.org>
11457 M:      Nitin Gupta <ngupta@vflare.org>
11458 L:      linux-mm@kvack.org
11459 S:      Maintained
11460 F:      mm/zsmalloc.c
11461 F:      include/linux/zsmalloc.h
11462 F:      Documentation/vm/zsmalloc.txt
11463
11464 ZSWAP COMPRESSED SWAP CACHING
11465 M:      Seth Jennings <sjennings@variantweb.net>
11466 L:      linux-mm@kvack.org
11467 S:      Maintained
11468 F:      mm/zswap.c
11469
11470 THE REST
11471 M:      Linus Torvalds <torvalds@linux-foundation.org>
11472 L:      linux-kernel@vger.kernel.org
11473 Q:      http://patchwork.kernel.org/project/LKML/list/
11474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11475 S:      Buried alive in reporters
11476 F:      *
11477 F:      */