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