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