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