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