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