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