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