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