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