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