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