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