Merge tag 'dmaengine-3.17' of git://git.kernel.org/pub/scm/linux/kernel/git/djbw...
[cascardo/linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trival style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the OSDL certificate of contribution and should include a
55         Signed-off-by: line.  The current version of this "Developer's
56         Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         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 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1029 S:      Maintained
1030
1031 ARM/INTEL IOP33X ARM ARCHITECTURE
1032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1033 S:      Orphan
1034
1035 ARM/INTEL IOP13XX ARM ARCHITECTURE
1036 M:      Lennert Buytenhek <kernel@wantstofly.org>
1037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1038 S:      Maintained
1039
1040 ARM/INTEL IQ81342EX MACHINE SUPPORT
1041 M:      Lennert Buytenhek <kernel@wantstofly.org>
1042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1043 S:      Maintained
1044
1045 ARM/INTEL IXDP2850 MACHINE SUPPORT
1046 M:      Lennert Buytenhek <kernel@wantstofly.org>
1047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1048 S:      Maintained
1049
1050 ARM/INTEL IXP4XX ARM ARCHITECTURE
1051 M:      Imre Kaloz <kaloz@openwrt.org>
1052 M:      Krzysztof Halasa <khc@pm.waw.pl>
1053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1054 S:      Maintained
1055 F:      arch/arm/mach-ixp4xx/
1056
1057 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1058 M:      Jonathan Cameron <jic23@cam.ac.uk>
1059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1060 S:      Maintained
1061 F:      arch/arm/mach-pxa/stargate2.c
1062 F:      drivers/pcmcia/pxa2xx_stargate2.c
1063
1064 ARM/INTEL XSC3 (MANZANO) ARM CORE
1065 M:      Lennert Buytenhek <kernel@wantstofly.org>
1066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 S:      Maintained
1068
1069 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1070 M:      Lennert Buytenhek <kernel@wantstofly.org>
1071 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1072 S:      Maintained
1073
1074 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1075 M:      Santosh Shilimkar <santosh.shilimkar@ti.com>
1076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1077 S:      Maintained
1078 F:      arch/arm/mach-keystone/
1079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1080
1081 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1082 M:      Santosh Shilimkar <santosh.shilimkar@ti.com>
1083 L:      linux-kernel@vger.kernel.org
1084 S:      Maintained
1085 F:      drivers/clk/keystone/
1086
1087 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1088 M:      Santosh Shilimkar <santosh.shilimkar@ti.com>
1089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090 L:      linux-kernel@vger.kernel.org
1091 S:      Maintained
1092 F:      drivers/clocksource/timer-keystone.c
1093
1094 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1095 M:      Santosh Shilimkar <santosh.shilimkar@ti.com>
1096 L:      linux-kernel@vger.kernel.org
1097 S:      Maintained
1098 F:      drivers/power/reset/keystone-reset.c
1099
1100 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1101 M:      Santosh Shilimkar <santosh.shilimkar@ti.com>
1102 L:      linux-kernel@vger.kernel.org
1103 S:      Maintained
1104 F:      drivers/memory/*emif*
1105
1106 ARM/LOGICPD PXA270 MACHINE SUPPORT
1107 M:      Lennert Buytenhek <kernel@wantstofly.org>
1108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1109 S:      Maintained
1110
1111 ARM/MAGICIAN MACHINE SUPPORT
1112 M:      Philipp Zabel <philipp.zabel@gmail.com>
1113 S:      Maintained
1114
1115 ARM/Marvell Armada 370 and Armada XP SOC support
1116 M:      Jason Cooper <jason@lakedaemon.net>
1117 M:      Andrew Lunn <andrew@lunn.ch>
1118 M:      Gregory Clement <gregory.clement@free-electrons.com>
1119 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1121 S:      Maintained
1122 F:      arch/arm/mach-mvebu/
1123
1124 ARM/Marvell Berlin SoC support
1125 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1126 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1127 S:      Maintained
1128 F:      arch/arm/mach-berlin/
1129
1130 ARM/Marvell Dove/MV78xx0/Orion SOC support
1131 M:      Jason Cooper <jason@lakedaemon.net>
1132 M:      Andrew Lunn <andrew@lunn.ch>
1133 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135 S:      Maintained
1136 F:      arch/arm/mach-dove/
1137 F:      arch/arm/mach-mv78xx0/
1138 F:      arch/arm/mach-orion5x/
1139 F:      arch/arm/plat-orion/
1140
1141 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1142 M:      Alexander Clouter <alex@digriz.org.uk>
1143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1144 W:      http://www.digriz.org.uk/ts78xx/kernel
1145 S:      Maintained
1146 F:      arch/arm/mach-orion5x/ts78xx-*
1147
1148 ARM/MICREL KS8695 ARCHITECTURE
1149 M:      Greg Ungerer <gerg@uclinux.org>
1150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1151 F:      arch/arm/mach-ks8695/
1152 S:      Odd Fixes
1153
1154 ARM/MIOA701 MACHINE SUPPORT
1155 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1156 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1157 F:      arch/arm/mach-pxa/mioa701.c
1158 S:      Maintained
1159
1160 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1161 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1162 S:      Maintained
1163
1164 ARM/NOMADIK ARCHITECTURE
1165 M:      Alessandro Rubini <rubini@unipv.it>
1166 M:      Linus Walleij <linus.walleij@linaro.org>
1167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1168 S:      Maintained
1169 F:      arch/arm/mach-nomadik/
1170 F:      drivers/pinctrl/nomadik/
1171 F:      drivers/i2c/busses/i2c-nomadik.c
1172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1173
1174 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1175 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1176 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1177 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1178 S:      Supported
1179
1180 ARM/QUALCOMM MSM MACHINE SUPPORT
1181 M:      David Brown <davidb@codeaurora.org>
1182 M:      Daniel Walker <dwalker@fifo99.com>
1183 M:      Bryan Huntsman <bryanh@codeaurora.org>
1184 L:      linux-arm-msm@vger.kernel.org
1185 F:      arch/arm/mach-msm/
1186 F:      drivers/video/fbdev/msm/
1187 F:      drivers/mmc/host/msm_sdcc.c
1188 F:      drivers/mmc/host/msm_sdcc.h
1189 F:      drivers/tty/serial/msm_serial.h
1190 F:      drivers/tty/serial/msm_serial.c
1191 F:      drivers/*/pm8???-*
1192 F:      drivers/mfd/ssbi.c
1193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
1194 S:      Maintained
1195
1196 ARM/TOSA MACHINE SUPPORT
1197 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1198 M:      Dirk Opfer <dirk@opfer-online.de>
1199 S:      Maintained
1200
1201 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1202 M:      Marek Vasut <marek.vasut@gmail.com>
1203 L:      linux-arm-kernel@lists.infradead.org
1204 W:      http://hackndev.com
1205 S:      Maintained
1206 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1207 F:      arch/arm/mach-pxa/palmtx.c
1208 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1209 F:      arch/arm/mach-pxa/palmt5.c
1210 F:      arch/arm/mach-pxa/include/mach/palmld.h
1211 F:      arch/arm/mach-pxa/palmld.c
1212 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1213 F:      arch/arm/mach-pxa/palmte2.c
1214 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1215 F:      arch/arm/mach-pxa/palmtc.c
1216
1217 ARM/PALM TREO SUPPORT
1218 M:      Tomas Cech <sleep_walker@suse.cz>
1219 L:      linux-arm-kernel@lists.infradead.org
1220 W:      http://hackndev.com
1221 S:      Maintained
1222 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1223 F:      arch/arm/mach-pxa/palmtreo.c
1224
1225 ARM/PALMZ72 SUPPORT
1226 M:      Sergey Lapin <slapin@ossfans.org>
1227 L:      linux-arm-kernel@lists.infradead.org
1228 W:      http://hackndev.com
1229 S:      Maintained
1230 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1231 F:      arch/arm/mach-pxa/palmz72.c
1232
1233 ARM/PLEB SUPPORT
1234 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1235 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1236 S:      Maintained
1237
1238 ARM/PT DIGITAL BOARD PORT
1239 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1240 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1241 W:      http://www.arm.linux.org.uk/
1242 S:      Maintained
1243
1244 ARM/QUALCOMM SUPPORT
1245 M:      Kumar Gala <galak@codeaurora.org>
1246 M:      David Brown <davidb@codeaurora.org>
1247 L:      linux-arm-msm@vger.kernel.org
1248 S:      Maintained
1249 F:      arch/arm/mach-qcom/
1250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1251
1252 ARM/RADISYS ENP2611 MACHINE SUPPORT
1253 M:      Lennert Buytenhek <kernel@wantstofly.org>
1254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1255 S:      Maintained
1256
1257 ARM/RISCPC ARCHITECTURE
1258 M:      Russell King <linux@arm.linux.org.uk>
1259 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1260 W:      http://www.arm.linux.org.uk/
1261 S:      Maintained
1262 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1263 F:      arch/arm/include/asm/hardware/ioc.h
1264 F:      arch/arm/include/asm/hardware/iomd.h
1265 F:      arch/arm/include/asm/hardware/memc.h
1266 F:      arch/arm/mach-rpc/
1267 F:      drivers/net/ethernet/8390/etherh.c
1268 F:      drivers/net/ethernet/i825xx/ether1*
1269 F:      drivers/net/ethernet/seeq/ether3*
1270 F:      drivers/scsi/arm/
1271
1272 ARM/Rockchip SoC support
1273 M:      Heiko Stuebner <heiko@sntech.de>
1274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1275 L:      linux-rockchip@lists.infradead.org
1276 S:      Maintained
1277 F:      arch/arm/boot/dts/rk3*
1278 F:      arch/arm/mach-rockchip/
1279 F:      drivers/clk/rockchip/
1280 F:      drivers/i2c/busses/i2c-rk3x.c
1281 F:      drivers/*/*rockchip*
1282 F:      drivers/*/*/*rockchip*
1283 F:      sound/soc/rockchip/
1284
1285 ARM/SAMSUNG ARM ARCHITECTURES
1286 M:      Ben Dooks <ben-linux@fluff.org>
1287 M:      Kukjin Kim <kgene.kim@samsung.com>
1288 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1289 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1290 W:      http://www.fluff.org/ben/linux/
1291 S:      Maintained
1292 F:      arch/arm/boot/dts/s3c*
1293 F:      arch/arm/boot/dts/exynos*
1294 F:      arch/arm/plat-samsung/
1295 F:      arch/arm/mach-s3c24*/
1296 F:      arch/arm/mach-s3c64xx/
1297 F:      drivers/*/*s3c2410*
1298 F:      drivers/*/*/*s3c2410*
1299 F:      drivers/spi/spi-s3c*
1300 F:      sound/soc/samsung/*
1301
1302 ARM/S5P EXYNOS ARM ARCHITECTURES
1303 M:      Kukjin Kim <kgene.kim@samsung.com>
1304 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1305 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1306 S:      Maintained
1307 F:      arch/arm/mach-s5p*/
1308 F:      arch/arm/mach-exynos*/
1309 N:      exynos
1310
1311 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1312 M:      Kyungmin Park <kyungmin.park@samsung.com>
1313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1314 S:      Maintained
1315 F:      arch/arm/mach-s5pv210/mach-aquila.c
1316 F:      arch/arm/mach-s5pv210/mach-goni.c
1317
1318 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1319 M:      Kyungmin Park <kyungmin.park@samsung.com>
1320 M:      Kamil Debski <k.debski@samsung.com>
1321 L:      linux-arm-kernel@lists.infradead.org
1322 L:      linux-media@vger.kernel.org
1323 S:      Maintained
1324 F:      drivers/media/platform/s5p-g2d/
1325
1326 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1327 M:      Kyungmin Park <kyungmin.park@samsung.com>
1328 M:      Kamil Debski <k.debski@samsung.com>
1329 M:      Jeongtae Park <jtp.park@samsung.com>
1330 L:      linux-arm-kernel@lists.infradead.org
1331 L:      linux-media@vger.kernel.org
1332 S:      Maintained
1333 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1334 F:      drivers/media/platform/s5p-mfc/
1335
1336 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1337 M:      Kyungmin Park <kyungmin.park@samsung.com>
1338 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1339 L:      linux-arm-kernel@lists.infradead.org
1340 L:      linux-media@vger.kernel.org
1341 S:      Maintained
1342 F:      drivers/media/platform/s5p-tv/
1343
1344 ARM/SHMOBILE ARM ARCHITECTURE
1345 M:      Simon Horman <horms@verge.net.au>
1346 M:      Magnus Damm <magnus.damm@gmail.com>
1347 L:      linux-sh@vger.kernel.org
1348 W:      http://oss.renesas.com
1349 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1351 S:      Supported
1352 F:      arch/arm/boot/dts/emev2*
1353 F:      arch/arm/boot/dts/r7s*
1354 F:      arch/arm/boot/dts/r8a*
1355 F:      arch/arm/boot/dts/sh*
1356 F:      arch/arm/configs/ape6evm_defconfig
1357 F:      arch/arm/configs/armadillo800eva_defconfig
1358 F:      arch/arm/configs/bockw_defconfig
1359 F:      arch/arm/configs/genmai_defconfig
1360 F:      arch/arm/configs/koelsch_defconfig
1361 F:      arch/arm/configs/kzm9g_defconfig
1362 F:      arch/arm/configs/lager_defconfig
1363 F:      arch/arm/configs/mackerel_defconfig
1364 F:      arch/arm/configs/marzen_defconfig
1365 F:      arch/arm/configs/shmobile_defconfig
1366 F:      arch/arm/mach-shmobile/
1367 F:      drivers/sh/
1368
1369 ARM/SOCFPGA ARCHITECTURE
1370 M:      Dinh Nguyen <dinguyen@altera.com>
1371 S:      Maintained
1372 F:      arch/arm/mach-socfpga/
1373
1374 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1375 M:      Dinh Nguyen <dinguyen@altera.com>
1376 S:      Maintained
1377 F:      drivers/clk/socfpga/
1378
1379 ARM/STI ARCHITECTURE
1380 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1381 M:      Maxime Coquelin <maxime.coquelin@st.com>
1382 M:      Patrice Chotard <patrice.chotard@st.com>
1383 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1384 L:      kernel@stlinux.com
1385 W:      http://www.stlinux.com
1386 S:      Maintained
1387 F:      arch/arm/mach-sti/
1388 F:      arch/arm/boot/dts/sti*
1389 F:      drivers/clocksource/arm_global_timer.c
1390 F:      drivers/reset/sti/
1391 F:      drivers/pinctrl/pinctrl-st.c
1392 F:      drivers/media/rc/st_rc.c
1393 F:      drivers/i2c/busses/i2c-st.c
1394 F:      drivers/tty/serial/st-asc.c
1395 F:      drivers/mmc/host/sdhci-st.c
1396
1397 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1398 M:      Lennert Buytenhek <kernel@wantstofly.org>
1399 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1400 S:      Maintained
1401
1402 ARM/TETON BGA MACHINE SUPPORT
1403 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1404 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1405 S:      Maintained
1406
1407 ARM/THECUS N2100 MACHINE SUPPORT
1408 M:      Lennert Buytenhek <kernel@wantstofly.org>
1409 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1410 S:      Maintained
1411
1412 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1413 M:      Wan ZongShun <mcuos.com@gmail.com>
1414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1415 W:      http://www.mcuos.com
1416 S:      Maintained
1417 F:      arch/arm/mach-w90x900/
1418 F:      drivers/input/keyboard/w90p910_keypad.c
1419 F:      drivers/input/touchscreen/w90p910_ts.c
1420 F:      drivers/watchdog/nuc900_wdt.c
1421 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1422 F:      drivers/mtd/nand/nuc900_nand.c
1423 F:      drivers/rtc/rtc-nuc900.c
1424 F:      drivers/spi/spi-nuc900.c
1425 F:      drivers/usb/host/ehci-w90x900.c
1426 F:      drivers/video/fbdev/nuc900fb.c
1427
1428 ARM/U300 MACHINE SUPPORT
1429 M:      Linus Walleij <linus.walleij@linaro.org>
1430 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1431 S:      Supported
1432 F:      arch/arm/mach-u300/
1433 F:      drivers/clocksource/timer-u300.c
1434 F:      drivers/i2c/busses/i2c-stu300.c
1435 F:      drivers/rtc/rtc-coh901331.c
1436 F:      drivers/watchdog/coh901327_wdt.c
1437 F:      drivers/dma/coh901318*
1438 F:      drivers/mfd/ab3100*
1439 F:      drivers/rtc/rtc-ab3100.c
1440 F:      drivers/rtc/rtc-coh901331.c
1441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1442
1443 ARM/Ux500 ARM ARCHITECTURE
1444 M:      Linus Walleij <linus.walleij@linaro.org>
1445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1446 S:      Maintained
1447 F:      arch/arm/mach-ux500/
1448 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1449 F:      drivers/dma/ste_dma40*
1450 F:      drivers/hwspinlock/u8500_hsem.c
1451 F:      drivers/mfd/abx500*
1452 F:      drivers/mfd/ab8500*
1453 F:      drivers/mfd/dbx500*
1454 F:      drivers/mfd/db8500*
1455 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1456 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1457 F:      drivers/rtc/rtc-ab8500.c
1458 F:      drivers/rtc/rtc-pl031.c
1459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1460
1461 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1462 M:      Ulf Hansson <ulf.hansson@linaro.org>
1463 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1464 T:      git git://git.linaro.org/people/ulfh/clk.git
1465 S:      Maintained
1466 F:      drivers/clk/ux500/
1467 F:      include/linux/platform_data/clk-ux500.h
1468
1469 ARM/VFP SUPPORT
1470 M:      Russell King <linux@arm.linux.org.uk>
1471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1472 W:      http://www.arm.linux.org.uk/
1473 S:      Maintained
1474 F:      arch/arm/vfp/
1475
1476 ARM/VOIPAC PXA270 SUPPORT
1477 M:      Marek Vasut <marek.vasut@gmail.com>
1478 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1479 S:      Maintained
1480 F:      arch/arm/mach-pxa/vpac270.c
1481 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1482
1483 ARM/VT8500 ARM ARCHITECTURE
1484 M:      Tony Prisk <linux@prisktech.co.nz>
1485 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1486 S:      Maintained
1487 F:      arch/arm/mach-vt8500/
1488 F:      drivers/clocksource/vt8500_timer.c
1489 F:      drivers/i2c/busses/i2c-wmt.c
1490 F:      drivers/mmc/host/wmt-sdmmc.c
1491 F:      drivers/pwm/pwm-vt8500.c
1492 F:      drivers/rtc/rtc-vt8500.c
1493 F:      drivers/tty/serial/vt8500_serial.c
1494 F:      drivers/usb/host/ehci-platform.c
1495 F:      drivers/usb/host/uhci-platform.c
1496 F:      drivers/video/fbdev/vt8500lcdfb.*
1497 F:      drivers/video/fbdev/wm8505fb*
1498 F:      drivers/video/fbdev/wmt_ge_rops.*
1499
1500 ARM/ZIPIT Z2 SUPPORT
1501 M:      Marek Vasut <marek.vasut@gmail.com>
1502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1503 S:      Maintained
1504 F:      arch/arm/mach-pxa/z2.c
1505 F:      arch/arm/mach-pxa/include/mach/z2.h
1506
1507 ARM/ZYNQ ARCHITECTURE
1508 M:      Michal Simek <michal.simek@xilinx.com>
1509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1510 W:      http://wiki.xilinx.com
1511 T:      git git://git.xilinx.com/linux-xlnx.git
1512 S:      Supported
1513 F:      arch/arm/mach-zynq/
1514 F:      drivers/cpuidle/cpuidle-zynq.c
1515 N:      zynq
1516 N:      xilinx
1517 F:      drivers/clocksource/cadence_ttc_timer.c
1518 F:      drivers/i2c/busses/i2c-cadence.c
1519 F:      drivers/mmc/host/sdhci-of-arasan.c
1520
1521 ARM SMMU DRIVER
1522 M:      Will Deacon <will.deacon@arm.com>
1523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1524 S:      Maintained
1525 F:      drivers/iommu/arm-smmu.c
1526
1527 ARM64 PORT (AARCH64 ARCHITECTURE)
1528 M:      Catalin Marinas <catalin.marinas@arm.com>
1529 M:      Will Deacon <will.deacon@arm.com>
1530 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1531 S:      Maintained
1532 F:      arch/arm64/
1533 F:      Documentation/arm64/
1534
1535 AS3645A LED FLASH CONTROLLER DRIVER
1536 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1537 L:      linux-media@vger.kernel.org
1538 T:      git git://linuxtv.org/media_tree.git
1539 S:      Maintained
1540 F:      drivers/media/i2c/as3645a.c
1541 F:      include/media/as3645a.h
1542
1543 ASC7621 HARDWARE MONITOR DRIVER
1544 M:      George Joseph <george.joseph@fairview5.com>
1545 L:      lm-sensors@lm-sensors.org
1546 S:      Maintained
1547 F:      Documentation/hwmon/asc7621
1548 F:      drivers/hwmon/asc7621.c
1549
1550 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1551 M:      Corentin Chary <corentin.chary@gmail.com>
1552 L:      acpi4asus-user@lists.sourceforge.net
1553 L:      platform-driver-x86@vger.kernel.org
1554 W:      http://acpi4asus.sf.net
1555 S:      Maintained
1556 F:      drivers/platform/x86/asus*.c
1557 F:      drivers/platform/x86/eeepc*.c
1558
1559 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1560 R:      Dan Williams <dan.j.williams@intel.com>
1561 W:      http://sourceforge.net/projects/xscaleiop
1562 S:      Odd fixes
1563 F:      Documentation/crypto/async-tx-api.txt
1564 F:      crypto/async_tx/
1565 F:      drivers/dma/
1566 F:      include/linux/dmaengine.h
1567 F:      include/linux/async_tx.h
1568
1569 AT24 EEPROM DRIVER
1570 M:      Wolfram Sang <wsa@the-dreams.de>
1571 L:      linux-i2c@vger.kernel.org
1572 S:      Maintained
1573 F:      drivers/misc/eeprom/at24.c
1574 F:      include/linux/platform_data/at24.h
1575
1576 ATA OVER ETHERNET (AOE) DRIVER
1577 M:      "Ed L. Cashin" <ecashin@coraid.com>
1578 W:      http://support.coraid.com/support/linux
1579 S:      Supported
1580 F:      Documentation/aoe/
1581 F:      drivers/block/aoe/
1582
1583 ATHEROS ATH GENERIC UTILITIES
1584 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1585 L:      linux-wireless@vger.kernel.org
1586 S:      Supported
1587 F:      drivers/net/wireless/ath/*
1588
1589 ATHEROS ATH5K WIRELESS DRIVER
1590 M:      Jiri Slaby <jirislaby@gmail.com>
1591 M:      Nick Kossifidis <mickflemm@gmail.com>
1592 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1593 L:      linux-wireless@vger.kernel.org
1594 L:      ath5k-devel@lists.ath5k.org
1595 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1596 S:      Maintained
1597 F:      drivers/net/wireless/ath/ath5k/
1598
1599 ATHEROS ATH6KL WIRELESS DRIVER
1600 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1601 L:      linux-wireless@vger.kernel.org
1602 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1603 T:      git git://github.com/kvalo/ath.git
1604 S:      Supported
1605 F:      drivers/net/wireless/ath/ath6kl/
1606
1607 WILOCITY WIL6210 WIRELESS DRIVER
1608 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1609 L:      linux-wireless@vger.kernel.org
1610 L:      wil6210@qca.qualcomm.com
1611 S:      Supported
1612 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1613 F:      drivers/net/wireless/ath/wil6210/
1614
1615 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1616 M:      Christian Lamparter <chunkeey@googlemail.com>
1617 L:      linux-wireless@vger.kernel.org
1618 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1619 S:      Maintained
1620 F:      drivers/net/wireless/ath/carl9170/
1621
1622 ATK0110 HWMON DRIVER
1623 M:      Luca Tettamanti <kronos.it@gmail.com>
1624 L:      lm-sensors@lm-sensors.org
1625 S:      Maintained
1626 F:      drivers/hwmon/asus_atk0110.c
1627
1628 ATI_REMOTE2 DRIVER
1629 M:      Ville Syrjala <syrjala@sci.fi>
1630 S:      Maintained
1631 F:      drivers/input/misc/ati_remote2.c
1632
1633 ATLX ETHERNET DRIVERS
1634 M:      Jay Cliburn <jcliburn@gmail.com>
1635 M:      Chris Snook <chris.snook@gmail.com>
1636 L:      netdev@vger.kernel.org
1637 W:      http://sourceforge.net/projects/atl1
1638 W:      http://atl1.sourceforge.net
1639 S:      Maintained
1640 F:      drivers/net/ethernet/atheros/
1641
1642 ATM
1643 M:      Chas Williams <chas@cmf.nrl.navy.mil>
1644 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1645 L:      netdev@vger.kernel.org
1646 W:      http://linux-atm.sourceforge.net
1647 S:      Maintained
1648 F:      drivers/atm/
1649 F:      include/linux/atm*
1650 F:      include/uapi/linux/atm*
1651
1652 ATMEL AT91 / AT32 MCI DRIVER
1653 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1654 S:      Maintained
1655 F:      drivers/mmc/host/atmel-mci.c
1656 F:      drivers/mmc/host/atmel-mci-regs.h
1657
1658 ATMEL AT91 / AT32 SERIAL DRIVER
1659 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1660 S:      Supported
1661 F:      drivers/tty/serial/atmel_serial.c
1662
1663 ATMEL Audio ALSA driver
1664 M:      Bo Shen <voice.shen@atmel.com>
1665 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1666 S:      Supported
1667 F:      sound/soc/atmel
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 <rasesh.mody@qlogic.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 L:      dmaengine@vger.kernel.org
2994 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
2995 S:      Maintained
2996 F:      drivers/dma/
2997 F:      include/linux/dma*
2998 T:      git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
2999
3000 DME1737 HARDWARE MONITOR DRIVER
3001 M:      Juerg Haefliger <juergh@gmail.com>
3002 L:      lm-sensors@lm-sensors.org
3003 S:      Maintained
3004 F:      Documentation/hwmon/dme1737
3005 F:      drivers/hwmon/dme1737.c
3006
3007 DOCKING STATION DRIVER
3008 M:      Shaohua Li <shaohua.li@intel.com>
3009 L:      linux-acpi@vger.kernel.org
3010 S:      Supported
3011 F:      drivers/acpi/dock.c
3012
3013 DOCUMENTATION
3014 M:      Jiri Kosina <jkosina@suse.cz>
3015 L:      linux-doc@vger.kernel.org
3016 S:      Maintained
3017 F:      Documentation/
3018 X:      Documentation/ABI/
3019 X:      Documentation/devicetree/
3020 X:      Documentation/[a-z][a-z]_[A-Z][A-Z]/
3021
3022 DOUBLETALK DRIVER
3023 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3024 L:      blinux-list@redhat.com
3025 S:      Maintained
3026 F:      drivers/char/dtlk.c
3027 F:      include/linux/dtlk.h
3028
3029 DPT_I2O SCSI RAID DRIVER
3030 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3031 L:      linux-scsi@vger.kernel.org
3032 W:      http://www.adaptec.com/
3033 S:      Maintained
3034 F:      drivers/scsi/dpt*
3035 F:      drivers/scsi/dpt/
3036
3037 DRBD DRIVER
3038 P:      Philipp Reisner
3039 P:      Lars Ellenberg
3040 M:      drbd-dev@lists.linbit.com
3041 L:      drbd-user@lists.linbit.com
3042 W:      http://www.drbd.org
3043 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3044 T:      git git://git.drbd.org/drbd-8.3.git
3045 S:      Supported
3046 F:      drivers/block/drbd/
3047 F:      lib/lru_cache.c
3048 F:      Documentation/blockdev/drbd/
3049
3050 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
3051 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3053 S:      Supported
3054 F:      Documentation/kobject.txt
3055 F:      drivers/base/
3056 F:      fs/sysfs/
3057 F:      fs/debugfs/
3058 F:      include/linux/kobj*
3059 F:      include/linux/debugfs.h
3060 F:      lib/kobj*
3061
3062 DRM DRIVERS
3063 M:      David Airlie <airlied@linux.ie>
3064 L:      dri-devel@lists.freedesktop.org
3065 T:      git git://people.freedesktop.org/~airlied/linux
3066 S:      Maintained
3067 F:      drivers/gpu/drm/
3068 F:      drivers/gpu/vga/
3069 F:      include/drm/
3070 F:      include/uapi/drm/
3071
3072 RADEON DRM DRIVERS
3073 M:      Alex Deucher <alexander.deucher@amd.com>
3074 M:      Christian König <christian.koenig@amd.com>
3075 L:      dri-devel@lists.freedesktop.org
3076 T:      git git://people.freedesktop.org/~agd5f/linux
3077 S:      Supported
3078 F:      drivers/gpu/drm/radeon/
3079 F:      include/uapi/drm/radeon*
3080
3081 DRM PANEL DRIVERS
3082 M:      Thierry Reding <thierry.reding@gmail.com>
3083 L:      dri-devel@lists.freedesktop.org
3084 T:      git git://anongit.freedesktop.org/tegra/linux.git
3085 S:      Maintained
3086 F:      drivers/gpu/drm/drm_panel.c
3087 F:      drivers/gpu/drm/panel/
3088 F:      include/drm/drm_panel.h
3089 F:      Documentation/devicetree/bindings/panel/
3090
3091 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3092 M:      Daniel Vetter <daniel.vetter@ffwll.ch>
3093 M:      Jani Nikula <jani.nikula@linux.intel.com>
3094 L:      intel-gfx@lists.freedesktop.org
3095 L:      dri-devel@lists.freedesktop.org
3096 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3097 T:      git git://anongit.freedesktop.org/drm-intel
3098 S:      Supported
3099 F:      drivers/gpu/drm/i915/
3100 F:      include/drm/i915*
3101 F:      include/uapi/drm/i915*
3102
3103 DRM DRIVERS FOR EXYNOS
3104 M:      Inki Dae <inki.dae@samsung.com>
3105 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3106 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3107 M:      Kyungmin Park <kyungmin.park@samsung.com>
3108 L:      dri-devel@lists.freedesktop.org
3109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3110 S:      Supported
3111 F:      drivers/gpu/drm/exynos/
3112 F:      include/drm/exynos*
3113 F:      include/uapi/drm/exynos*
3114
3115 DRM DRIVERS FOR NVIDIA TEGRA
3116 M:      Thierry Reding <thierry.reding@gmail.com>
3117 M:      Terje Bergström <tbergstrom@nvidia.com>
3118 L:      dri-devel@lists.freedesktop.org
3119 L:      linux-tegra@vger.kernel.org
3120 T:      git git://anongit.freedesktop.org/tegra/linux.git
3121 S:      Supported
3122 F:      drivers/gpu/drm/tegra/
3123 F:      drivers/gpu/host1x/
3124 F:      include/linux/host1x.h
3125 F:      include/uapi/drm/tegra_drm.h
3126 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3127
3128 DRM DRIVERS FOR RENESAS
3129 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3130 L:      dri-devel@lists.freedesktop.org
3131 L:      linux-sh@vger.kernel.org
3132 T:      git git://people.freedesktop.org/~airlied/linux
3133 S:      Supported
3134 F:      drivers/gpu/drm/rcar-du/
3135 F:      drivers/gpu/drm/shmobile/
3136 F:      include/linux/platform_data/rcar-du.h
3137 F:      include/linux/platform_data/shmob_drm.h
3138
3139 DSBR100 USB FM RADIO DRIVER
3140 M:      Alexey Klimov <klimov.linux@gmail.com>
3141 L:      linux-media@vger.kernel.org
3142 T:      git git://linuxtv.org/media_tree.git
3143 S:      Maintained
3144 F:      drivers/media/radio/dsbr100.c
3145
3146 DSCC4 DRIVER
3147 M:      Francois Romieu <romieu@fr.zoreil.com>
3148 L:      netdev@vger.kernel.org
3149 S:      Maintained
3150 F:      drivers/net/wan/dscc4.c
3151
3152 DVB_USB_AF9015 MEDIA DRIVER
3153 M:      Antti Palosaari <crope@iki.fi>
3154 L:      linux-media@vger.kernel.org
3155 W:      http://linuxtv.org/
3156 W:      http://palosaari.fi/linux/
3157 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3158 T:      git git://linuxtv.org/anttip/media_tree.git
3159 S:      Maintained
3160 F:      drivers/media/usb/dvb-usb-v2/af9015*
3161
3162 DVB_USB_AF9035 MEDIA DRIVER
3163 M:      Antti Palosaari <crope@iki.fi>
3164 L:      linux-media@vger.kernel.org
3165 W:      http://linuxtv.org/
3166 W:      http://palosaari.fi/linux/
3167 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3168 T:      git git://linuxtv.org/anttip/media_tree.git
3169 S:      Maintained
3170 F:      drivers/media/usb/dvb-usb-v2/af9035*
3171
3172 DVB_USB_ANYSEE MEDIA DRIVER
3173 M:      Antti Palosaari <crope@iki.fi>
3174 L:      linux-media@vger.kernel.org
3175 W:      http://linuxtv.org/
3176 W:      http://palosaari.fi/linux/
3177 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3178 T:      git git://linuxtv.org/anttip/media_tree.git
3179 S:      Maintained
3180 F:      drivers/media/usb/dvb-usb-v2/anysee*
3181
3182 DVB_USB_AU6610 MEDIA DRIVER
3183 M:      Antti Palosaari <crope@iki.fi>
3184 L:      linux-media@vger.kernel.org
3185 W:      http://linuxtv.org/
3186 W:      http://palosaari.fi/linux/
3187 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3188 T:      git git://linuxtv.org/anttip/media_tree.git
3189 S:      Maintained
3190 F:      drivers/media/usb/dvb-usb-v2/au6610*
3191
3192 DVB_USB_CE6230 MEDIA DRIVER
3193 M:      Antti Palosaari <crope@iki.fi>
3194 L:      linux-media@vger.kernel.org
3195 W:      http://linuxtv.org/
3196 W:      http://palosaari.fi/linux/
3197 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3198 T:      git git://linuxtv.org/anttip/media_tree.git
3199 S:      Maintained
3200 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3201
3202 DVB_USB_CXUSB MEDIA DRIVER
3203 M:      Michael Krufky <mkrufky@linuxtv.org>
3204 L:      linux-media@vger.kernel.org
3205 W:      http://linuxtv.org/
3206 W:      http://github.com/mkrufky
3207 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3208 T:      git git://linuxtv.org/media_tree.git
3209 S:      Maintained
3210 F:      drivers/media/usb/dvb-usb/cxusb*
3211
3212 DVB_USB_EC168 MEDIA DRIVER
3213 M:      Antti Palosaari <crope@iki.fi>
3214 L:      linux-media@vger.kernel.org
3215 W:      http://linuxtv.org/
3216 W:      http://palosaari.fi/linux/
3217 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3218 T:      git git://linuxtv.org/anttip/media_tree.git
3219 S:      Maintained
3220 F:      drivers/media/usb/dvb-usb-v2/ec168*
3221
3222 DVB_USB_GL861 MEDIA DRIVER
3223 M:      Antti Palosaari <crope@iki.fi>
3224 L:      linux-media@vger.kernel.org
3225 W:      http://linuxtv.org/
3226 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3227 T:      git git://linuxtv.org/anttip/media_tree.git
3228 S:      Maintained
3229 F:      drivers/media/usb/dvb-usb-v2/gl861*
3230
3231 DVB_USB_MXL111SF MEDIA DRIVER
3232 M:      Michael Krufky <mkrufky@linuxtv.org>
3233 L:      linux-media@vger.kernel.org
3234 W:      http://linuxtv.org/
3235 W:      http://github.com/mkrufky
3236 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3237 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3238 S:      Maintained
3239 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3240
3241 DVB_USB_RTL28XXU MEDIA DRIVER
3242 M:      Antti Palosaari <crope@iki.fi>
3243 L:      linux-media@vger.kernel.org
3244 W:      http://linuxtv.org/
3245 W:      http://palosaari.fi/linux/
3246 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3247 T:      git git://linuxtv.org/anttip/media_tree.git
3248 S:      Maintained
3249 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3250
3251 DVB_USB_V2 MEDIA DRIVER
3252 M:      Antti Palosaari <crope@iki.fi>
3253 L:      linux-media@vger.kernel.org
3254 W:      http://linuxtv.org/
3255 W:      http://palosaari.fi/linux/
3256 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3257 T:      git git://linuxtv.org/anttip/media_tree.git
3258 S:      Maintained
3259 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3260 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3261
3262 DYNAMIC DEBUG
3263 M:      Jason Baron <jbaron@akamai.com>
3264 S:      Maintained
3265 F:      lib/dynamic_debug.c
3266 F:      include/linux/dynamic_debug.h
3267
3268 DZ DECSTATION DZ11 SERIAL DRIVER
3269 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3270 S:      Maintained
3271 F:      drivers/tty/serial/dz.*
3272
3273 E4000 MEDIA DRIVER
3274 M:      Antti Palosaari <crope@iki.fi>
3275 L:      linux-media@vger.kernel.org
3276 W:      http://linuxtv.org/
3277 W:      http://palosaari.fi/linux/
3278 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3279 T:      git git://linuxtv.org/anttip/media_tree.git
3280 S:      Maintained
3281 F:      drivers/media/tuners/e4000*
3282
3283 EATA ISA/EISA/PCI SCSI DRIVER
3284 M:      Dario Ballabio <ballabio_dario@emc.com>
3285 L:      linux-scsi@vger.kernel.org
3286 S:      Maintained
3287 F:      drivers/scsi/eata.c
3288
3289 EC100 MEDIA DRIVER
3290 M:      Antti Palosaari <crope@iki.fi>
3291 L:      linux-media@vger.kernel.org
3292 W:      http://linuxtv.org/
3293 W:      http://palosaari.fi/linux/
3294 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3295 T:      git git://linuxtv.org/anttip/media_tree.git
3296 S:      Maintained
3297 F:      drivers/media/dvb-frontends/ec100*
3298
3299 ECRYPT FILE SYSTEM
3300 M:      Tyler Hicks <tyhicks@canonical.com>
3301 L:      ecryptfs@vger.kernel.org
3302 W:      http://ecryptfs.org
3303 W:      https://launchpad.net/ecryptfs
3304 S:      Supported
3305 F:      Documentation/filesystems/ecryptfs.txt
3306 F:      fs/ecryptfs/
3307
3308 EDAC-CORE
3309 M:      Doug Thompson <dougthompson@xmission.com>
3310 M:      Borislav Petkov <bp@alien8.de>
3311 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3312 L:      linux-edac@vger.kernel.org
3313 W:      bluesmoke.sourceforge.net
3314 S:      Supported
3315 F:      Documentation/edac.txt
3316 F:      drivers/edac/
3317 F:      include/linux/edac.h
3318
3319 EDAC-AMD64
3320 M:      Doug Thompson <dougthompson@xmission.com>
3321 M:      Borislav Petkov <bp@alien8.de>
3322 L:      linux-edac@vger.kernel.org
3323 W:      bluesmoke.sourceforge.net
3324 S:      Maintained
3325 F:      drivers/edac/amd64_edac*
3326
3327 EDAC-CALXEDA
3328 M:      Doug Thompson <dougthompson@xmission.com>
3329 M:      Robert Richter <rric@kernel.org>
3330 L:      linux-edac@vger.kernel.org
3331 W:      bluesmoke.sourceforge.net
3332 S:      Maintained
3333 F:      drivers/edac/highbank*
3334
3335 EDAC-CAVIUM
3336 M:      Ralf Baechle <ralf@linux-mips.org>
3337 M:      David Daney <david.daney@cavium.com>
3338 L:      linux-edac@vger.kernel.org
3339 L:      linux-mips@linux-mips.org
3340 W:      bluesmoke.sourceforge.net
3341 S:      Supported
3342 F:      drivers/edac/octeon_edac*
3343
3344 EDAC-E752X
3345 M:      Mark Gross <mark.gross@intel.com>
3346 M:      Doug Thompson <dougthompson@xmission.com>
3347 L:      linux-edac@vger.kernel.org
3348 W:      bluesmoke.sourceforge.net
3349 S:      Maintained
3350 F:      drivers/edac/e752x_edac.c
3351
3352 EDAC-E7XXX
3353 M:      Doug Thompson <dougthompson@xmission.com>
3354 L:      linux-edac@vger.kernel.org
3355 W:      bluesmoke.sourceforge.net
3356 S:      Maintained
3357 F:      drivers/edac/e7xxx_edac.c
3358
3359 EDAC-GHES
3360 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3361 L:      linux-edac@vger.kernel.org
3362 W:      bluesmoke.sourceforge.net
3363 S:      Maintained
3364 F:      drivers/edac/ghes_edac.c
3365
3366 EDAC-I82443BXGX
3367 M:      Tim Small <tim@buttersideup.com>
3368 L:      linux-edac@vger.kernel.org
3369 W:      bluesmoke.sourceforge.net
3370 S:      Maintained
3371 F:      drivers/edac/i82443bxgx_edac.c
3372
3373 EDAC-I3000
3374 M:      Jason Uhlenkott <juhlenko@akamai.com>
3375 L:      linux-edac@vger.kernel.org
3376 W:      bluesmoke.sourceforge.net
3377 S:      Maintained
3378 F:      drivers/edac/i3000_edac.c
3379
3380 EDAC-I5000
3381 M:      Doug Thompson <dougthompson@xmission.com>
3382 L:      linux-edac@vger.kernel.org
3383 W:      bluesmoke.sourceforge.net
3384 S:      Maintained
3385 F:      drivers/edac/i5000_edac.c
3386
3387 EDAC-I5400
3388 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3389 L:      linux-edac@vger.kernel.org
3390 W:      bluesmoke.sourceforge.net
3391 S:      Maintained
3392 F:      drivers/edac/i5400_edac.c
3393
3394 EDAC-I7300
3395 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3396 L:      linux-edac@vger.kernel.org
3397 W:      bluesmoke.sourceforge.net
3398 S:      Maintained
3399 F:      drivers/edac/i7300_edac.c
3400
3401 EDAC-I7CORE
3402 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3403 L:      linux-edac@vger.kernel.org
3404 W:      bluesmoke.sourceforge.net
3405 S:      Maintained
3406 F:      drivers/edac/i7core_edac.c
3407
3408 EDAC-I82975X
3409 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3410 M:      "Arvind R." <arvino55@gmail.com>
3411 L:      linux-edac@vger.kernel.org
3412 W:      bluesmoke.sourceforge.net
3413 S:      Maintained
3414 F:      drivers/edac/i82975x_edac.c
3415
3416 EDAC-IE31200
3417 M:      Jason Baron <jbaron@akamai.com>
3418 L:      linux-edac@vger.kernel.org
3419 W:      bluesmoke.sourceforge.net
3420 S:      Maintained
3421 F:      drivers/edac/ie31200_edac.c
3422
3423 EDAC-MPC85XX
3424 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
3425 L:      linux-edac@vger.kernel.org
3426 W:      bluesmoke.sourceforge.net
3427 S:      Maintained
3428 F:      drivers/edac/mpc85xx_edac.[ch]
3429
3430 EDAC-PASEMI
3431 M:      Egor Martovetsky <egor@pasemi.com>
3432 L:      linux-edac@vger.kernel.org
3433 W:      bluesmoke.sourceforge.net
3434 S:      Maintained
3435 F:      drivers/edac/pasemi_edac.c
3436
3437 EDAC-R82600
3438 M:      Tim Small <tim@buttersideup.com>
3439 L:      linux-edac@vger.kernel.org
3440 W:      bluesmoke.sourceforge.net
3441 S:      Maintained
3442 F:      drivers/edac/r82600_edac.c
3443
3444 EDAC-SBRIDGE
3445 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3446 L:      linux-edac@vger.kernel.org
3447 W:      bluesmoke.sourceforge.net
3448 S:      Maintained
3449 F:      drivers/edac/sb_edac.c
3450
3451 EDIROL UA-101/UA-1000 DRIVER
3452 M:      Clemens Ladisch <clemens@ladisch.de>
3453 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3454 T:      git git://git.alsa-project.org/alsa-kernel.git
3455 S:      Maintained
3456 F:      sound/usb/misc/ua101.c
3457
3458 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3459 M:      Matt Fleming <matt.fleming@intel.com>
3460 L:      linux-efi@vger.kernel.org
3461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3462 S:      Maintained
3463 F:      Documentation/efi-stub.txt
3464 F:      arch/ia64/kernel/efi.c
3465 F:      arch/x86/boot/compressed/eboot.[ch]
3466 F:      arch/x86/include/asm/efi.h
3467 F:      arch/x86/platform/efi/*
3468 F:      drivers/firmware/efi/*
3469 F:      include/linux/efi*.h
3470
3471 EFI VARIABLE FILESYSTEM
3472 M:      Matthew Garrett <matthew.garrett@nebula.com>
3473 M:      Jeremy Kerr <jk@ozlabs.org>
3474 M:      Matt Fleming <matt.fleming@intel.com>
3475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3476 L:      linux-efi@vger.kernel.org
3477 S:      Maintained
3478 F:      fs/efivarfs/
3479
3480 EFIFB FRAMEBUFFER DRIVER
3481 L:      linux-fbdev@vger.kernel.org
3482 M:      Peter Jones <pjones@redhat.com>
3483 S:      Maintained
3484 F:      drivers/video/fbdev/efifb.c
3485
3486 EFS FILESYSTEM
3487 W:      http://aeschi.ch.eu.org/efs/
3488 S:      Orphan
3489 F:      fs/efs/
3490
3491 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3492 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3493 M:      Christoph Raisch <raisch@de.ibm.com>
3494 L:      linux-rdma@vger.kernel.org
3495 S:      Supported
3496 F:      drivers/infiniband/hw/ehca/
3497
3498 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3499 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3500 L:      netdev@vger.kernel.org
3501 S:      Maintained
3502 F:      drivers/net/ethernet/ibm/ehea/
3503
3504 EM28XX VIDEO4LINUX DRIVER
3505 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3506 L:      linux-media@vger.kernel.org
3507 W:      http://linuxtv.org
3508 T:      git git://linuxtv.org/media_tree.git
3509 S:      Maintained
3510 F:      drivers/media/usb/em28xx/
3511
3512 EMBEDDED LINUX
3513 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
3514 M:      Matt Mackall <mpm@selenic.com>
3515 M:      David Woodhouse <dwmw2@infradead.org>
3516 L:      linux-embedded@vger.kernel.org
3517 S:      Maintained
3518
3519 EMULEX LPFC FC SCSI DRIVER
3520 M:      James Smart <james.smart@emulex.com>
3521 L:      linux-scsi@vger.kernel.org
3522 W:      http://sourceforge.net/projects/lpfcxxxx
3523 S:      Supported
3524 F:      drivers/scsi/lpfc/
3525
3526 ENE CB710 FLASH CARD READER DRIVER
3527 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
3528 S:      Maintained
3529 F:      drivers/misc/cb710/
3530 F:      drivers/mmc/host/cb710-mmc.*
3531 F:      include/linux/cb710.h
3532
3533 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3534 M:      Maxim Levitsky <maximlevitsky@gmail.com>
3535 S:      Maintained
3536 F:      drivers/media/rc/ene_ir.*
3537
3538 ENHANCED ERROR HANDLING (EEH)
3539 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
3540 L:      linuxppc-dev@lists.ozlabs.org
3541 S:      Supported
3542 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
3543 F:      arch/powerpc/kernel/eeh*.c
3544
3545 EPSON S1D13XXX FRAMEBUFFER DRIVER
3546 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
3547 S:      Maintained
3548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
3549 F:      drivers/video/fbdev/s1d13xxxfb.c
3550 F:      include/video/s1d13xxxfb.h
3551
3552 ETHERNET BRIDGE
3553 M:      Stephen Hemminger <stephen@networkplumber.org>
3554 L:      bridge@lists.linux-foundation.org
3555 L:      netdev@vger.kernel.org
3556 W:      http://www.linuxfoundation.org/en/Net:Bridge
3557 S:      Maintained
3558 F:      include/linux/netfilter_bridge/
3559 F:      net/bridge/
3560
3561 ETHERNET PHY LIBRARY
3562 M:      Florian Fainelli <f.fainelli@gmail.com>
3563 L:      netdev@vger.kernel.org
3564 S:      Maintained
3565 F:      include/linux/phy.h
3566 F:      include/linux/phy_fixed.h
3567 F:      drivers/net/phy/
3568 F:      Documentation/networking/phy.txt
3569 F:      drivers/of/of_mdio.c
3570 F:      drivers/of/of_net.c
3571
3572 EXT2 FILE SYSTEM
3573 M:      Jan Kara <jack@suse.cz>
3574 L:      linux-ext4@vger.kernel.org
3575 S:      Maintained
3576 F:      Documentation/filesystems/ext2.txt
3577 F:      fs/ext2/
3578 F:      include/linux/ext2*
3579
3580 EXT3 FILE SYSTEM
3581 M:      Jan Kara <jack@suse.cz>
3582 M:      Andrew Morton <akpm@linux-foundation.org>
3583 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3584 L:      linux-ext4@vger.kernel.org
3585 S:      Maintained
3586 F:      Documentation/filesystems/ext3.txt
3587 F:      fs/ext3/
3588
3589 EXT4 FILE SYSTEM
3590 M:      "Theodore Ts'o" <tytso@mit.edu>
3591 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3592 L:      linux-ext4@vger.kernel.org
3593 W:      http://ext4.wiki.kernel.org
3594 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
3595 S:      Maintained
3596 F:      Documentation/filesystems/ext4.txt
3597 F:      fs/ext4/
3598
3599 Extended Verification Module (EVM)
3600 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
3601 L:      linux-ima-devel@lists.sourceforge.net
3602 L:      linux-security-module@vger.kernel.org
3603 S:      Supported
3604 F:      security/integrity/evm/
3605
3606 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3607 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3608 M:      Chanwoo Choi <cw00.choi@samsung.com>
3609 L:      linux-kernel@vger.kernel.org
3610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
3611 S:      Maintained
3612 F:      drivers/extcon/
3613 F:      Documentation/extcon/
3614
3615 EXYNOS DP DRIVER
3616 M:      Jingoo Han <jg1.han@samsung.com>
3617 L:      dri-devel@lists.freedesktop.org
3618 S:      Maintained
3619 F:      drivers/gpu/drm/exynos/exynos_dp*
3620
3621 EXYNOS MIPI DISPLAY DRIVERS
3622 M:      Inki Dae <inki.dae@samsung.com>
3623 M:      Donghwa Lee <dh09.lee@samsung.com>
3624 M:      Kyungmin Park <kyungmin.park@samsung.com>
3625 L:      linux-fbdev@vger.kernel.org
3626 S:      Maintained
3627 F:      drivers/video/fbdev/exynos/exynos_mipi*
3628 F:      include/video/exynos_mipi*
3629
3630 F71805F HARDWARE MONITORING DRIVER
3631 M:      Jean Delvare <jdelvare@suse.de>
3632 L:      lm-sensors@lm-sensors.org
3633 S:      Maintained
3634 F:      Documentation/hwmon/f71805f
3635 F:      drivers/hwmon/f71805f.c
3636
3637 FC0011 TUNER DRIVER
3638 M:      Michael Buesch <m@bues.ch>
3639 L:      linux-media@vger.kernel.org
3640 S:      Maintained
3641 F:      drivers/media/tuners/fc0011.h
3642 F:      drivers/media/tuners/fc0011.c
3643
3644 FC2580 MEDIA DRIVER
3645 M:      Antti Palosaari <crope@iki.fi>
3646 L:      linux-media@vger.kernel.org
3647 W:      http://linuxtv.org/
3648 W:      http://palosaari.fi/linux/
3649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3650 T:      git git://linuxtv.org/anttip/media_tree.git
3651 S:      Maintained
3652 F:      drivers/media/tuners/fc2580*
3653
3654 FANOTIFY
3655 M:      Eric Paris <eparis@redhat.com>
3656 S:      Maintained
3657 F:      fs/notify/fanotify/
3658 F:      include/linux/fanotify.h
3659 F:      include/uapi/linux/fanotify.h
3660
3661 FARSYNC SYNCHRONOUS DRIVER
3662 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
3663 W:      http://www.farsite.co.uk/
3664 S:      Supported
3665 F:      drivers/net/wan/farsync.*
3666
3667 FAULT INJECTION SUPPORT
3668 M:      Akinobu Mita <akinobu.mita@gmail.com>
3669 S:      Supported
3670 F:      Documentation/fault-injection/
3671 F:      lib/fault-inject.c
3672
3673 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3674 M:      Robert Love <robert.w.love@intel.com>
3675 L:      fcoe-devel@open-fcoe.org
3676 W:      www.Open-FCoE.org
3677 S:      Supported
3678 F:      drivers/scsi/libfc/
3679 F:      drivers/scsi/fcoe/
3680 F:      include/scsi/fc/
3681 F:      include/scsi/libfc.h
3682 F:      include/scsi/libfcoe.h
3683 F:      include/uapi/scsi/fc/
3684
3685 FILE LOCKING (flock() and fcntl()/lockf())
3686 M:      Jeff Layton <jlayton@poochiereds.net>
3687 M:      J. Bruce Fields <bfields@fieldses.org>
3688 L:      linux-fsdevel@vger.kernel.org
3689 S:      Maintained
3690 F:      include/linux/fcntl.h
3691 F:      include/linux/fs.h
3692 F:      include/uapi/linux/fcntl.h
3693 F:      include/uapi/linux/fs.h
3694 F:      fs/fcntl.c
3695 F:      fs/locks.c
3696
3697 FILESYSTEMS (VFS and infrastructure)
3698 M:      Alexander Viro <viro@zeniv.linux.org.uk>
3699 L:      linux-fsdevel@vger.kernel.org
3700 S:      Maintained
3701 F:      fs/*
3702
3703 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3704 M:      Riku Voipio <riku.voipio@iki.fi>
3705 L:      lm-sensors@lm-sensors.org
3706 S:      Maintained
3707 F:      drivers/hwmon/f75375s.c
3708 F:      include/linux/f75375s.h
3709
3710 FIREWIRE AUDIO DRIVERS
3711 M:      Clemens Ladisch <clemens@ladisch.de>
3712 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3713 T:      git git://git.alsa-project.org/alsa-kernel.git
3714 S:      Maintained
3715 F:      sound/firewire/
3716
3717 FIREWIRE MEDIA DRIVERS (firedtv)
3718 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
3719 L:      linux-media@vger.kernel.org
3720 L:      linux1394-devel@lists.sourceforge.net
3721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3722 S:      Maintained
3723 F:      drivers/media/firewire/
3724
3725 FIREWIRE SBP-2 TARGET
3726 M:      Chris Boot <bootc@bootc.net>
3727 L:      linux-scsi@vger.kernel.org
3728 L:      target-devel@vger.kernel.org
3729 L:      linux1394-devel@lists.sourceforge.net
3730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3731 S:      Maintained
3732 F:      drivers/target/sbp/
3733
3734 FIREWIRE SUBSYSTEM
3735 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
3736 L:      linux1394-devel@lists.sourceforge.net
3737 W:      http://ieee1394.wiki.kernel.org/
3738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
3739 S:      Maintained
3740 F:      drivers/firewire/
3741 F:      include/linux/firewire.h
3742 F:      include/uapi/linux/firewire*.h
3743 F:      tools/firewire/
3744
3745 FIRMWARE LOADER (request_firmware)
3746 M:      Ming Lei <ming.lei@canonical.com>
3747 L:      linux-kernel@vger.kernel.org
3748 S:      Maintained
3749 F:      Documentation/firmware_class/
3750 F:      drivers/base/firmware*.c
3751 F:      include/linux/firmware.h
3752
3753 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
3754 M:      Joshua Morris <josh.h.morris@us.ibm.com>
3755 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3756 S:      Maintained
3757 F:      drivers/block/rsxx/
3758
3759 FLOPPY DRIVER
3760 M:      Jiri Kosina <jkosina@suse.cz>
3761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3762 S:      Odd fixes
3763 F:      drivers/block/floppy.c
3764
3765 FMC SUBSYSTEM
3766 M:      Alessandro Rubini <rubini@gnudd.com>
3767 W:      http://www.ohwr.org/projects/fmc-bus
3768 S:      Supported
3769 F:      drivers/fmc/
3770 F:      include/linux/fmc*.h
3771 F:      include/linux/ipmi-fru.h
3772 K:      fmc_d.*register
3773
3774 FPU EMULATOR
3775 M:      Bill Metzenthen <billm@melbpc.org.au>
3776 W:      http://floatingpoint.sourceforge.net/emulator/index.html
3777 S:      Maintained
3778 F:      arch/x86/math-emu/
3779
3780 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
3781 L:      netdev@vger.kernel.org
3782 S:      Orphan
3783 F:      drivers/net/wan/dlci.c
3784 F:      drivers/net/wan/sdla.c
3785
3786 FRAMEBUFFER LAYER
3787 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
3788 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
3789 L:      linux-fbdev@vger.kernel.org
3790 W:      http://linux-fbdev.sourceforge.net/
3791 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
3792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
3793 S:      Maintained
3794 F:      Documentation/fb/
3795 F:      Documentation/devicetree/bindings/fb/
3796 F:      drivers/video/
3797 F:      include/video/
3798 F:      include/linux/fb.h
3799 F:      include/uapi/video/
3800 F:      include/uapi/linux/fb.h
3801
3802 FREESCALE DIU FRAMEBUFFER DRIVER
3803 M:      Timur Tabi <timur@tabi.org>
3804 L:      linux-fbdev@vger.kernel.org
3805 S:      Maintained
3806 F:      drivers/video/fbdev/fsl-diu-fb.*
3807
3808 FREESCALE DMA DRIVER
3809 M:      Li Yang <leoli@freescale.com>
3810 M:      Zhang Wei <zw@zh-kernel.org>
3811 L:      linuxppc-dev@lists.ozlabs.org
3812 S:      Maintained
3813 F:      drivers/dma/fsldma.*
3814
3815 FREESCALE I2C CPM DRIVER
3816 M:      Jochen Friedrich <jochen@scram.de>
3817 L:      linuxppc-dev@lists.ozlabs.org
3818 L:      linux-i2c@vger.kernel.org
3819 S:      Maintained
3820 F:      drivers/i2c/busses/i2c-cpm.c
3821
3822 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
3823 M:      Sascha Hauer <kernel@pengutronix.de>
3824 L:      linux-fbdev@vger.kernel.org
3825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3826 S:      Maintained
3827 F:      include/linux/platform_data/video-imxfb.h
3828 F:      drivers/video/fbdev/imxfb.c
3829
3830 FREESCALE SOC FS_ENET DRIVER
3831 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
3832 M:      Vitaly Bordug <vbordug@ru.mvista.com>
3833 L:      linuxppc-dev@lists.ozlabs.org
3834 L:      netdev@vger.kernel.org
3835 S:      Maintained
3836 F:      drivers/net/ethernet/freescale/fs_enet/
3837 F:      include/linux/fs_enet_pd.h
3838
3839 FREESCALE QUICC ENGINE LIBRARY
3840 L:      linuxppc-dev@lists.ozlabs.org
3841 S:      Orphan
3842 F:      arch/powerpc/sysdev/qe_lib/
3843 F:      arch/powerpc/include/asm/*qe.h
3844
3845 FREESCALE USB PERIPHERAL DRIVERS
3846 M:      Li Yang <leoli@freescale.com>
3847 L:      linux-usb@vger.kernel.org
3848 L:      linuxppc-dev@lists.ozlabs.org
3849 S:      Maintained
3850 F:      drivers/usb/gadget/udc/fsl*
3851
3852 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
3853 M:      Li Yang <leoli@freescale.com>
3854 L:      netdev@vger.kernel.org
3855 L:      linuxppc-dev@lists.ozlabs.org
3856 S:      Maintained
3857 F:      drivers/net/ethernet/freescale/ucc_geth*
3858
3859 FREESCALE QUICC ENGINE UCC UART DRIVER
3860 M:      Timur Tabi <timur@tabi.org>
3861 L:      linuxppc-dev@lists.ozlabs.org
3862 S:      Maintained
3863 F:      drivers/tty/serial/ucc_uart.c
3864
3865 FREESCALE SOC SOUND DRIVERS
3866 M:      Timur Tabi <timur@tabi.org>
3867 M:      Nicolin Chen <nicoleotsuka@gmail.com>
3868 M:      Xiubo Li <Li.Xiubo@freescale.com>
3869 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3870 L:      linuxppc-dev@lists.ozlabs.org
3871 S:      Maintained
3872 F:      sound/soc/fsl/fsl*
3873 F:      sound/soc/fsl/imx*
3874 F:      sound/soc/fsl/mpc8610_hpcd.c
3875
3876 FREEVXFS FILESYSTEM
3877 M:      Christoph Hellwig <hch@infradead.org>
3878 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
3879 S:      Maintained
3880 F:      fs/freevxfs/
3881
3882 FREEZER
3883 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3884 M:      Pavel Machek <pavel@ucw.cz>
3885 L:      linux-pm@vger.kernel.org
3886 S:      Supported
3887 F:      Documentation/power/freezing-of-tasks.txt
3888 F:      include/linux/freezer.h
3889 F:      kernel/freezer.c
3890
3891 FRONTSWAP API
3892 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3893 L:      linux-kernel@vger.kernel.org
3894 S:      Maintained
3895 F:      mm/frontswap.c
3896 F:      include/linux/frontswap.h
3897
3898 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
3899 M:      David Howells <dhowells@redhat.com>
3900 L:      linux-cachefs@redhat.com
3901 S:      Supported
3902 F:      Documentation/filesystems/caching/
3903 F:      fs/fscache/
3904 F:      include/linux/fscache*.h
3905
3906 F2FS FILE SYSTEM
3907 M:      Jaegeuk Kim <jaegeuk@kernel.org>
3908 M:      Changman Lee <cm224.lee@samsung.com>
3909 L:      linux-f2fs-devel@lists.sourceforge.net
3910 W:      http://en.wikipedia.org/wiki/F2FS
3911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3912 S:      Maintained
3913 F:      Documentation/filesystems/f2fs.txt
3914 F:      Documentation/ABI/testing/sysfs-fs-f2fs
3915 F:      fs/f2fs/
3916 F:      include/linux/f2fs_fs.h
3917
3918 FUJITSU FR-V (FRV) PORT
3919 M:      David Howells <dhowells@redhat.com>
3920 S:      Maintained
3921 F:      arch/frv/
3922
3923 FUJITSU LAPTOP EXTRAS
3924 M:      Jonathan Woithe <jwoithe@just42.net>
3925 L:      platform-driver-x86@vger.kernel.org
3926 S:      Maintained
3927 F:      drivers/platform/x86/fujitsu-laptop.c
3928
3929 FUJITSU M-5MO LS CAMERA ISP DRIVER
3930 M:      Kyungmin Park <kyungmin.park@samsung.com>
3931 M:      Heungjun Kim <riverful.kim@samsung.com>
3932 L:      linux-media@vger.kernel.org
3933 S:      Maintained
3934 F:      drivers/media/i2c/m5mols/
3935 F:      include/media/m5mols.h
3936
3937 FUJITSU TABLET EXTRAS
3938 M:      Robert Gerlach <khnz@gmx.de>
3939 L:      platform-driver-x86@vger.kernel.org
3940 S:      Maintained
3941 F:      drivers/platform/x86/fujitsu-tablet.c
3942
3943 FUSE: FILESYSTEM IN USERSPACE
3944 M:      Miklos Szeredi <miklos@szeredi.hu>
3945 L:      fuse-devel@lists.sourceforge.net
3946 W:      http://fuse.sourceforge.net/
3947 S:      Maintained
3948 F:      fs/fuse/
3949 F:      include/uapi/linux/fuse.h
3950
3951 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
3952 M:      Rik Faith <faith@cs.unc.edu>
3953 L:      linux-scsi@vger.kernel.org
3954 S:      Odd Fixes (e.g., new signatures)
3955 F:      drivers/scsi/fdomain.*
3956
3957 GCOV BASED KERNEL PROFILING
3958 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
3959 S:      Maintained
3960 F:      kernel/gcov/
3961 F:      Documentation/gcov.txt
3962
3963 GDT SCSI DISK ARRAY CONTROLLER DRIVER
3964 M:      Achim Leubner <achim_leubner@adaptec.com>
3965 L:      linux-scsi@vger.kernel.org
3966 W:      http://www.icp-vortex.com/
3967 S:      Supported
3968 F:      drivers/scsi/gdt*
3969
3970 GEMTEK FM RADIO RECEIVER DRIVER
3971 M:      Hans Verkuil <hverkuil@xs4all.nl>
3972 L:      linux-media@vger.kernel.org
3973 T:      git git://linuxtv.org/media_tree.git
3974 W:      http://linuxtv.org
3975 S:      Maintained
3976 F:      drivers/media/radio/radio-gemtek*
3977
3978 GENERIC GPIO I2C DRIVER
3979 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
3980 S:      Supported
3981 F:      drivers/i2c/busses/i2c-gpio.c
3982 F:      include/linux/i2c-gpio.h
3983
3984 GENERIC GPIO I2C MULTIPLEXER DRIVER
3985 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3986 L:      linux-i2c@vger.kernel.org
3987 S:      Supported
3988 F:      drivers/i2c/muxes/i2c-mux-gpio.c
3989 F:      include/linux/i2c-mux-gpio.h
3990 F:      Documentation/i2c/muxes/i2c-mux-gpio
3991
3992 GENERIC HDLC (WAN) DRIVERS
3993 M:      Krzysztof Halasa <khc@pm.waw.pl>
3994 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
3995 S:      Maintained
3996 F:      drivers/net/wan/c101.c
3997 F:      drivers/net/wan/hd6457*
3998 F:      drivers/net/wan/hdlc*
3999 F:      drivers/net/wan/n2.c
4000 F:      drivers/net/wan/pc300too.c
4001 F:      drivers/net/wan/pci200syn.c
4002 F:      drivers/net/wan/wanxl*
4003
4004 GENERIC INCLUDE/ASM HEADER FILES
4005 M:      Arnd Bergmann <arnd@arndb.de>
4006 L:      linux-arch@vger.kernel.org
4007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4008 S:      Maintained
4009 F:      include/asm-generic/
4010 F:      include/uapi/asm-generic/
4011
4012 GENERIC PHY FRAMEWORK
4013 M:      Kishon Vijay Abraham I <kishon@ti.com>
4014 L:      linux-kernel@vger.kernel.org
4015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4016 S:      Supported
4017 F:      drivers/phy/
4018 F:      include/linux/phy/
4019
4020 GENERIC UIO DRIVER FOR PCI DEVICES
4021 M:      "Michael S. Tsirkin" <mst@redhat.com>
4022 L:      kvm@vger.kernel.org
4023 S:      Supported
4024 F:      drivers/uio/uio_pci_generic.c
4025
4026 GET_MAINTAINER SCRIPT
4027 M:      Joe Perches <joe@perches.com>
4028 S:      Maintained
4029 F:      scripts/get_maintainer.pl
4030
4031 GFS2 FILE SYSTEM
4032 M:      Steven Whitehouse <swhiteho@redhat.com>
4033 L:      cluster-devel@redhat.com
4034 W:      http://sources.redhat.com/cluster/
4035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
4036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
4037 S:      Supported
4038 F:      Documentation/filesystems/gfs2*.txt
4039 F:      fs/gfs2/
4040 F:      include/uapi/linux/gfs2_ondisk.h
4041
4042 GIGASET ISDN DRIVERS
4043 M:      Hansjoerg Lipp <hjlipp@web.de>
4044 M:      Tilman Schmidt <tilman@imap.cc>
4045 L:      gigaset307x-common@lists.sourceforge.net
4046 W:      http://gigaset307x.sourceforge.net/
4047 S:      Maintained
4048 F:      Documentation/isdn/README.gigaset
4049 F:      drivers/isdn/gigaset/
4050 F:      include/uapi/linux/gigaset_dev.h
4051
4052 GO7007 MPEG CODEC
4053 M:      Hans Verkuil <hans.verkuil@cisco.com>
4054 L:      linux-media@vger.kernel.org
4055 S:      Maintained
4056 F:      drivers/media/usb/go7007/
4057
4058 GPIO SUBSYSTEM
4059 M:      Linus Walleij <linus.walleij@linaro.org>
4060 M:      Alexandre Courbot <gnurou@gmail.com>
4061 L:      linux-gpio@vger.kernel.org
4062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4063 S:      Maintained
4064 F:      Documentation/gpio/
4065 F:      drivers/gpio/
4066 F:      include/linux/gpio/
4067 F:      include/linux/gpio.h
4068 F:      include/asm-generic/gpio.h
4069
4070 GRE DEMULTIPLEXER DRIVER
4071 M:      Dmitry Kozlov <xeb@mail.ru>
4072 L:      netdev@vger.kernel.org
4073 S:      Maintained
4074 F:      net/ipv4/gre_demux.c
4075 F:      net/ipv4/gre_offload.c
4076 F:      include/net/gre.h
4077
4078 GRETH 10/100/1G Ethernet MAC device driver
4079 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4080 L:      netdev@vger.kernel.org
4081 S:      Maintained
4082 F:      drivers/net/ethernet/aeroflex/
4083
4084 GSPCA FINEPIX SUBDRIVER
4085 M:      Frank Zago <frank@zago.net>
4086 L:      linux-media@vger.kernel.org
4087 T:      git git://linuxtv.org/media_tree.git
4088 S:      Maintained
4089 F:      drivers/media/usb/gspca/finepix.c
4090
4091 GSPCA GL860 SUBDRIVER
4092 M:      Olivier Lorin <o.lorin@laposte.net>
4093 L:      linux-media@vger.kernel.org
4094 T:      git git://linuxtv.org/media_tree.git
4095 S:      Maintained
4096 F:      drivers/media/usb/gspca/gl860/
4097
4098 GSPCA M5602 SUBDRIVER
4099 M:      Erik Andren <erik.andren@gmail.com>
4100 L:      linux-media@vger.kernel.org
4101 T:      git git://linuxtv.org/media_tree.git
4102 S:      Maintained
4103 F:      drivers/media/usb/gspca/m5602/
4104
4105 GSPCA PAC207 SONIXB SUBDRIVER
4106 M:      Hans de Goede <hdegoede@redhat.com>
4107 L:      linux-media@vger.kernel.org
4108 T:      git git://linuxtv.org/media_tree.git
4109 S:      Maintained
4110 F:      drivers/media/usb/gspca/pac207.c
4111
4112 GSPCA SN9C20X SUBDRIVER
4113 M:      Brian Johnson <brijohn@gmail.com>
4114 L:      linux-media@vger.kernel.org
4115 T:      git git://linuxtv.org/media_tree.git
4116 S:      Maintained
4117 F:      drivers/media/usb/gspca/sn9c20x.c
4118
4119 GSPCA T613 SUBDRIVER
4120 M:      Leandro Costantino <lcostantino@gmail.com>
4121 L:      linux-media@vger.kernel.org
4122 T:      git git://linuxtv.org/media_tree.git
4123 S:      Maintained
4124 F:      drivers/media/usb/gspca/t613.c
4125
4126 GSPCA USB WEBCAM DRIVER
4127 M:      Hans de Goede <hdegoede@redhat.com>
4128 L:      linux-media@vger.kernel.org
4129 T:      git git://linuxtv.org/media_tree.git
4130 S:      Maintained
4131 F:      drivers/media/usb/gspca/
4132
4133 GUID PARTITION TABLE (GPT)
4134 M:      Davidlohr Bueso <davidlohr@hp.com>
4135 L:      linux-efi@vger.kernel.org
4136 S:      Maintained
4137 F:      block/partitions/efi.*
4138
4139 STK1160 USB VIDEO CAPTURE DRIVER
4140 M:      Ezequiel Garcia <elezegarcia@gmail.com>
4141 L:      linux-media@vger.kernel.org
4142 T:      git git://linuxtv.org/media_tree.git
4143 S:      Maintained
4144 F:      drivers/media/usb/stk1160/
4145
4146 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4147 M:      Frank Seidel <frank@f-seidel.de>
4148 L:      platform-driver-x86@vger.kernel.org
4149 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4150 S:      Maintained
4151 F:      drivers/platform/x86/hdaps.c
4152
4153 HDPVR USB VIDEO ENCODER DRIVER
4154 M:      Hans Verkuil <hverkuil@xs4all.nl>
4155 L:      linux-media@vger.kernel.org
4156 T:      git git://linuxtv.org/media_tree.git
4157 W:      http://linuxtv.org
4158 S:      Odd Fixes
4159 F:      drivers/media/usb/hdpvr/
4160
4161 HWPOISON MEMORY FAILURE HANDLING
4162 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4163 L:      linux-mm@kvack.org
4164 S:      Maintained
4165 F:      mm/memory-failure.c
4166 F:      mm/hwpoison-inject.c
4167
4168 HYPERVISOR VIRTUAL CONSOLE DRIVER
4169 L:      linuxppc-dev@lists.ozlabs.org
4170 S:      Odd Fixes
4171 F:      drivers/tty/hvc/
4172
4173 HARDWARE MONITORING
4174 M:      Jean Delvare <jdelvare@suse.de>
4175 M:      Guenter Roeck <linux@roeck-us.net>
4176 L:      lm-sensors@lm-sensors.org
4177 W:      http://www.lm-sensors.org/
4178 T:      quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
4179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4180 S:      Maintained
4181 F:      Documentation/hwmon/
4182 F:      drivers/hwmon/
4183 F:      include/linux/hwmon*.h
4184
4185 HARDWARE RANDOM NUMBER GENERATOR CORE
4186 M:      Matt Mackall <mpm@selenic.com>
4187 M:      Herbert Xu <herbert@gondor.apana.org.au>
4188 S:      Odd fixes
4189 F:      Documentation/hw_random.txt
4190 F:      drivers/char/hw_random/
4191 F:      include/linux/hw_random.h
4192
4193 HARDWARE SPINLOCK CORE
4194 M:      Ohad Ben-Cohen <ohad@wizery.com>
4195 S:      Maintained
4196 F:      Documentation/hwspinlock.txt
4197 F:      drivers/hwspinlock/hwspinlock_*
4198 F:      include/linux/hwspinlock.h
4199
4200 HARMONY SOUND DRIVER
4201 L:      linux-parisc@vger.kernel.org
4202 S:      Maintained
4203 F:      sound/parisc/harmony.*
4204
4205 HD29L2 MEDIA DRIVER
4206 M:      Antti Palosaari <crope@iki.fi>
4207 L:      linux-media@vger.kernel.org
4208 W:      http://linuxtv.org/
4209 W:      http://palosaari.fi/linux/
4210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4211 T:      git git://linuxtv.org/anttip/media_tree.git
4212 S:      Maintained
4213 F:      drivers/media/dvb-frontends/hd29l2*
4214
4215 HEWLETT-PACKARD SMART2 RAID DRIVER
4216 M:      Chirag Kantharia <chirag.kantharia@hp.com>
4217 L:      iss_storagedev@hp.com
4218 S:      Maintained
4219 F:      Documentation/blockdev/cpqarray.txt
4220 F:      drivers/block/cpqarray.*
4221
4222 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4223 M:      "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
4224 L:      iss_storagedev@hp.com
4225 S:      Supported
4226 F:      Documentation/scsi/hpsa.txt
4227 F:      drivers/scsi/hpsa*.[ch]
4228 F:      include/linux/cciss*.h
4229 F:      include/uapi/linux/cciss*.h
4230
4231 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4232 M:      Mike Miller <mike.miller@hp.com>
4233 L:      iss_storagedev@hp.com
4234 S:      Supported
4235 F:      Documentation/blockdev/cciss.txt
4236 F:      drivers/block/cciss*
4237 F:      include/linux/cciss_ioctl.h
4238 F:      include/uapi/linux/cciss_ioctl.h
4239
4240 HFS FILESYSTEM
4241 L:      linux-fsdevel@vger.kernel.org
4242 S:      Orphan
4243 F:      Documentation/filesystems/hfs.txt
4244 F:      fs/hfs/
4245
4246 HFSPLUS FILESYSTEM
4247 L:      linux-fsdevel@vger.kernel.org
4248 S:      Orphan
4249 F:      Documentation/filesystems/hfsplus.txt
4250 F:      fs/hfsplus/
4251
4252 HGA FRAMEBUFFER DRIVER
4253 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4254 L:      linux-nvidia@lists.surfsouth.com
4255 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4256 S:      Maintained
4257 F:      drivers/video/fbdev/hgafb.c
4258
4259 HIBERNATION (aka Software Suspend, aka swsusp)
4260 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4261 M:      Pavel Machek <pavel@ucw.cz>
4262 L:      linux-pm@vger.kernel.org
4263 S:      Supported
4264 F:      arch/x86/power/
4265 F:      drivers/base/power/
4266 F:      kernel/power/
4267 F:      include/linux/suspend.h
4268 F:      include/linux/freezer.h
4269 F:      include/linux/pm.h
4270 F:      arch/*/include/asm/suspend*.h
4271
4272 HID CORE LAYER
4273 M:      Jiri Kosina <jkosina@suse.cz>
4274 L:      linux-input@vger.kernel.org
4275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4276 S:      Maintained
4277 F:      drivers/hid/
4278 F:      include/linux/hid*
4279 F:      include/uapi/linux/hid*
4280
4281 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4282 M:      Thomas Gleixner <tglx@linutronix.de>
4283 L:      linux-kernel@vger.kernel.org
4284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4285 S:      Maintained
4286 F:      Documentation/timers/
4287 F:      kernel/time/hrtimer.c
4288 F:      kernel/time/clockevents.c
4289 F:      kernel/time/tick*.*
4290 F:      kernel/time/timer_*.c
4291 F:      include/linux/clockchips.h
4292 F:      include/linux/hrtimer.h
4293
4294 HIGH-SPEED SCC DRIVER FOR AX.25
4295 L:      linux-hams@vger.kernel.org
4296 S:      Orphan
4297 F:      drivers/net/hamradio/dmascc.c
4298 F:      drivers/net/hamradio/scc.c
4299
4300 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4301 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4302 W:      http://www.highpoint-tech.com
4303 S:      Supported
4304 F:      Documentation/scsi/hptiop.txt
4305 F:      drivers/scsi/hptiop.c
4306
4307 HIPPI
4308 M:      Jes Sorensen <jes@trained-monkey.org>
4309 L:      linux-hippi@sunsite.dk
4310 S:      Maintained
4311 F:      include/linux/hippidevice.h
4312 F:      include/uapi/linux/if_hippi.h
4313 F:      net/802/hippi.c
4314 F:      drivers/net/hippi/
4315
4316 HOST AP DRIVER
4317 M:      Jouni Malinen <j@w1.fi>
4318 L:      hostap@shmoo.com (subscribers-only)
4319 L:      linux-wireless@vger.kernel.org
4320 W:      http://hostap.epitest.fi/
4321 S:      Maintained
4322 F:      drivers/net/wireless/hostap/
4323
4324 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4325 L:      platform-driver-x86@vger.kernel.org
4326 S:      Orphan
4327 F:      drivers/platform/x86/tc1100-wmi.c
4328
4329 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4330 M:      Jaroslav Kysela <perex@perex.cz>
4331 S:      Maintained
4332 F:      drivers/net/ethernet/hp/hp100.*
4333
4334 HPET:   High Precision Event Timers driver
4335 M:      Clemens Ladisch <clemens@ladisch.de>
4336 S:      Maintained
4337 F:      Documentation/timers/hpet.txt
4338 F:      drivers/char/hpet.c
4339 F:      include/linux/hpet.h
4340 F:      include/uapi/linux/hpet.h
4341
4342 HPET:   x86
4343 S:      Orphan
4344 F:      arch/x86/kernel/hpet.c
4345 F:      arch/x86/include/asm/hpet.h
4346
4347 HPFS FILESYSTEM
4348 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4349 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4350 S:      Maintained
4351 F:      fs/hpfs/
4352
4353 HSI SUBSYSTEM
4354 M:      Sebastian Reichel <sre@kernel.org>
4355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4356 S:      Maintained
4357 F:      Documentation/ABI/testing/sysfs-bus-hsi
4358 F:      Documentation/hsi.txt
4359 F:      drivers/hsi/
4360 F:      include/linux/hsi/
4361 F:      include/uapi/linux/hsi/
4362
4363 HSO 3G MODEM DRIVER
4364 M:      Jan Dumon <j.dumon@option.com>
4365 W:      http://www.pharscape.org
4366 S:      Maintained
4367 F:      drivers/net/usb/hso.c
4368
4369 HSR NETWORK PROTOCOL
4370 M:      Arvid Brodin <arvid.brodin@alten.se>
4371 L:      netdev@vger.kernel.org
4372 S:      Maintained
4373 F:      net/hsr/
4374
4375 HTCPEN TOUCHSCREEN DRIVER
4376 M:      Pau Oliva Fora <pof@eslack.org>
4377 L:      linux-input@vger.kernel.org
4378 S:      Maintained
4379 F:      drivers/input/touchscreen/htcpen.c
4380
4381 HUGETLB FILESYSTEM
4382 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
4383 S:      Maintained
4384 F:      fs/hugetlbfs/
4385
4386 Hyper-V CORE AND DRIVERS
4387 M:      K. Y. Srinivasan <kys@microsoft.com>
4388 M:      Haiyang Zhang <haiyangz@microsoft.com>
4389 L:      devel@linuxdriverproject.org
4390 S:      Maintained
4391 F:      arch/x86/include/asm/mshyperv.h
4392 F:      arch/x86/include/uapi/asm/hyperv.h
4393 F:      arch/x86/kernel/cpu/mshyperv.c
4394 F:      drivers/hid/hid-hyperv.c
4395 F:      drivers/hv/
4396 F:      drivers/input/serio/hyperv-keyboard.c
4397 F:      drivers/net/hyperv/
4398 F:      drivers/scsi/storvsc_drv.c
4399 F:      drivers/video/fbdev/hyperv_fb.c
4400 F:      include/linux/hyperv.h
4401 F:      tools/hv/
4402
4403 I2C OVER PARALLEL PORT
4404 M:      Jean Delvare <jdelvare@suse.de>
4405 L:      linux-i2c@vger.kernel.org
4406 S:      Maintained
4407 F:      Documentation/i2c/busses/i2c-parport
4408 F:      Documentation/i2c/busses/i2c-parport-light
4409 F:      drivers/i2c/busses/i2c-parport.c
4410 F:      drivers/i2c/busses/i2c-parport-light.c
4411
4412 I2C/SMBUS CONTROLLER DRIVERS FOR PC
4413 M:      Jean Delvare <jdelvare@suse.de>
4414 L:      linux-i2c@vger.kernel.org
4415 S:      Maintained
4416 F:      Documentation/i2c/busses/i2c-ali1535
4417 F:      Documentation/i2c/busses/i2c-ali1563
4418 F:      Documentation/i2c/busses/i2c-ali15x3
4419 F:      Documentation/i2c/busses/i2c-amd756
4420 F:      Documentation/i2c/busses/i2c-amd8111
4421 F:      Documentation/i2c/busses/i2c-i801
4422 F:      Documentation/i2c/busses/i2c-nforce2
4423 F:      Documentation/i2c/busses/i2c-piix4
4424 F:      Documentation/i2c/busses/i2c-sis5595
4425 F:      Documentation/i2c/busses/i2c-sis630
4426 F:      Documentation/i2c/busses/i2c-sis96x
4427 F:      Documentation/i2c/busses/i2c-via
4428 F:      Documentation/i2c/busses/i2c-viapro
4429 F:      drivers/i2c/busses/i2c-ali1535.c
4430 F:      drivers/i2c/busses/i2c-ali1563.c
4431 F:      drivers/i2c/busses/i2c-ali15x3.c
4432 F:      drivers/i2c/busses/i2c-amd756.c
4433 F:      drivers/i2c/busses/i2c-amd756-s4882.c
4434 F:      drivers/i2c/busses/i2c-amd8111.c
4435 F:      drivers/i2c/busses/i2c-i801.c
4436 F:      drivers/i2c/busses/i2c-isch.c
4437 F:      drivers/i2c/busses/i2c-nforce2.c
4438 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
4439 F:      drivers/i2c/busses/i2c-piix4.c
4440 F:      drivers/i2c/busses/i2c-sis5595.c
4441 F:      drivers/i2c/busses/i2c-sis630.c
4442 F:      drivers/i2c/busses/i2c-sis96x.c
4443 F:      drivers/i2c/busses/i2c-via.c
4444 F:      drivers/i2c/busses/i2c-viapro.c
4445
4446 I2C/SMBUS ISMT DRIVER
4447 M:      Seth Heasley <seth.heasley@intel.com>
4448 M:      Neil Horman <nhorman@tuxdriver.com>
4449 L:      linux-i2c@vger.kernel.org
4450 F:      drivers/i2c/busses/i2c-ismt.c
4451 F:      Documentation/i2c/busses/i2c-ismt
4452
4453 I2C/SMBUS STUB DRIVER
4454 M:      Jean Delvare <jdelvare@suse.de>
4455 L:      linux-i2c@vger.kernel.org
4456 S:      Maintained
4457 F:      drivers/i2c/i2c-stub.c
4458
4459 I2C SUBSYSTEM
4460 M:      Wolfram Sang <wsa@the-dreams.de>
4461 L:      linux-i2c@vger.kernel.org
4462 W:      https://i2c.wiki.kernel.org/
4463 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
4464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
4465 S:      Maintained
4466 F:      Documentation/i2c/
4467 F:      drivers/i2c/
4468 F:      include/linux/i2c.h
4469 F:      include/linux/i2c-*.h
4470 F:      include/uapi/linux/i2c.h
4471 F:      include/uapi/linux/i2c-*.h
4472
4473 I2C ACPI SUPPORT
4474 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
4475 L:      linux-i2c@vger.kernel.org
4476 L:      linux-acpi@vger.kernel.org
4477 S:      Maintained
4478
4479 I2C-TAOS-EVM DRIVER
4480 M:      Jean Delvare <jdelvare@suse.de>
4481 L:      linux-i2c@vger.kernel.org
4482 S:      Maintained
4483 F:      Documentation/i2c/busses/i2c-taos-evm
4484 F:      drivers/i2c/busses/i2c-taos-evm.c
4485
4486 I2C-TINY-USB DRIVER
4487 M:      Till Harbaum <till@harbaum.org>
4488 L:      linux-i2c@vger.kernel.org
4489 W:      http://www.harbaum.org/till/i2c_tiny_usb
4490 S:      Maintained
4491 F:      drivers/i2c/busses/i2c-tiny-usb.c
4492
4493 i386 BOOT CODE
4494 M:      "H. Peter Anvin" <hpa@zytor.com>
4495 S:      Maintained
4496 F:      arch/x86/boot/
4497
4498 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
4499 M:      "H. Peter Anvin" <hpa@zytor.com>
4500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
4501 S:      Maintained
4502
4503 IA64 (Itanium) PLATFORM
4504 M:      Tony Luck <tony.luck@intel.com>
4505 M:      Fenghua Yu <fenghua.yu@intel.com>
4506 L:      linux-ia64@vger.kernel.org
4507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
4508 S:      Maintained
4509 F:      arch/ia64/
4510
4511 IBM Power in-Nest Crypto Acceleration
4512 M:      Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
4513 M:      Fionnuala Gunter <fin@linux.vnet.ibm.com>
4514 L:      linux-crypto@vger.kernel.org
4515 S:      Supported
4516 F:      drivers/crypto/nx/
4517
4518 IBM Power 842 compression accelerator
4519 M:      Nathan Fontenot <nfont@linux.vnet.ibm.com>
4520 S:      Supported
4521 F:      drivers/crypto/nx/nx-842.c
4522 F:      include/linux/nx842.h
4523
4524 IBM Power Linux RAID adapter
4525 M:      Brian King <brking@us.ibm.com>
4526 S:      Supported
4527 F:      drivers/scsi/ipr.*
4528
4529 IBM Power Virtual Ethernet Device Driver
4530 M:      Santiago Leon <santil@linux.vnet.ibm.com>
4531 L:      netdev@vger.kernel.org
4532 S:      Supported
4533 F:      drivers/net/ethernet/ibm/ibmveth.*
4534
4535 IBM Power Virtual SCSI Device Drivers
4536 M:      Nathan Fontenot <nfont@linux.vnet.ibm.com>
4537 L:      linux-scsi@vger.kernel.org
4538 S:      Supported
4539 F:      drivers/scsi/ibmvscsi/ibmvscsi*
4540 F:      drivers/scsi/ibmvscsi/viosrp.h
4541
4542 IBM Power Virtual FC Device Drivers
4543 M:      Brian King <brking@linux.vnet.ibm.com>
4544 L:      linux-scsi@vger.kernel.org
4545 S:      Supported
4546 F:      drivers/scsi/ibmvscsi/ibmvfc*
4547
4548 IBM ServeRAID RAID DRIVER
4549 S:      Orphan
4550 F:      drivers/scsi/ips.*
4551
4552 ICH LPC AND GPIO DRIVER
4553 M:      Peter Tyser <ptyser@xes-inc.com>
4554 S:      Maintained
4555 F:      drivers/mfd/lpc_ich.c
4556 F:      drivers/gpio/gpio-ich.c
4557
4558 IDE SUBSYSTEM
4559 M:      "David S. Miller" <davem@davemloft.net>
4560 L:      linux-ide@vger.kernel.org
4561 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
4562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
4563 S:      Maintained
4564 F:      Documentation/ide/
4565 F:      drivers/ide/
4566 F:      include/linux/ide.h
4567
4568 IDEAPAD LAPTOP EXTRAS DRIVER
4569 M:      Ike Panhc <ike.pan@canonical.com>
4570 L:      platform-driver-x86@vger.kernel.org
4571 W:      http://launchpad.net/ideapad-laptop
4572 S:      Maintained
4573 F:      drivers/platform/x86/ideapad-laptop.c
4574
4575 IDEAPAD LAPTOP SLIDEBAR DRIVER
4576 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
4577 L:      linux-input@vger.kernel.org
4578 W:      https://github.com/o2genum/ideapad-slidebar
4579 S:      Maintained
4580 F:      drivers/input/misc/ideapad_slidebar.c
4581
4582 IDE/ATAPI DRIVERS
4583 M:      Borislav Petkov <bp@alien8.de>
4584 L:      linux-ide@vger.kernel.org
4585 S:      Maintained
4586 F:      Documentation/cdrom/ide-cd
4587 F:      drivers/ide/ide-cd*
4588
4589 IDLE-I7300
4590 M:      Andy Henroid <andrew.d.henroid@intel.com>
4591 L:      linux-pm@vger.kernel.org
4592 S:      Supported
4593 F:      drivers/idle/i7300_idle.c
4594
4595 IEEE 802.15.4 SUBSYSTEM
4596 M:      Alexander Aring <alex.aring@gmail.com>
4597 L:      linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
4598 W:      http://apps.sourceforge.net/trac/linux-zigbee
4599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
4600 S:      Maintained
4601 F:      net/ieee802154/
4602 F:      net/mac802154/
4603 F:      drivers/net/ieee802154/
4604
4605 IGUANAWORKS USB IR TRANSCEIVER
4606 M:      Sean Young <sean@mess.org>
4607 L:      linux-media@vger.kernel.org
4608 S:      Maintained
4609 F:      drivers/media/rc/iguanair.c
4610
4611 IIO SUBSYSTEM AND DRIVERS
4612 M:      Jonathan Cameron <jic23@kernel.org>
4613 L:      linux-iio@vger.kernel.org
4614 S:      Maintained
4615 F:      drivers/iio/
4616 F:      drivers/staging/iio/
4617
4618 IKANOS/ADI EAGLE ADSL USB DRIVER
4619 M:      Matthieu Castet <castet.matthieu@free.fr>
4620 M:      Stanislaw Gruszka <stf_xl@wp.pl>
4621 S:      Maintained
4622 F:      drivers/usb/atm/ueagle-atm.c
4623
4624 INA209 HARDWARE MONITOR DRIVER
4625 M:      Guenter Roeck <linux@roeck-us.net>
4626 L:      lm-sensors@lm-sensors.org
4627 S:      Maintained
4628 F:      Documentation/hwmon/ina209
4629 F:      Documentation/devicetree/bindings/i2c/ina209.txt
4630 F:      drivers/hwmon/ina209.c
4631
4632 INA2XX HARDWARE MONITOR DRIVER
4633 M:      Guenter Roeck <linux@roeck-us.net>
4634 L:      lm-sensors@lm-sensors.org
4635 S:      Maintained
4636 F:      Documentation/hwmon/ina2xx
4637 F:      drivers/hwmon/ina2xx.c
4638 F:      include/linux/platform_data/ina2xx.h
4639
4640 INDUSTRY PACK SUBSYSTEM (IPACK)
4641 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4642 M:      Jens Taprogge <jens.taprogge@taprogge.org>
4643 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4644 L:      industrypack-devel@lists.sourceforge.net
4645 W:      http://industrypack.sourceforge.net
4646 S:      Maintained
4647 F:      drivers/ipack/
4648
4649 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
4650 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4651 M:      Dmitry Kasatkin <d.kasatkin@samsung.com>
4652 L:      linux-ima-devel@lists.sourceforge.net
4653 L:      linux-ima-user@lists.sourceforge.net
4654 L:      linux-security-module@vger.kernel.org
4655 S:      Supported
4656 F:      security/integrity/ima/
4657
4658 IMS TWINTURBO FRAMEBUFFER DRIVER
4659 L:      linux-fbdev@vger.kernel.org
4660 S:      Orphan
4661 F:      drivers/video/fbdev/imsttfb.c
4662
4663 INFINIBAND SUBSYSTEM
4664 M:      Roland Dreier <roland@kernel.org>
4665 M:      Sean Hefty <sean.hefty@intel.com>
4666 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
4667 L:      linux-rdma@vger.kernel.org
4668 W:      http://www.openfabrics.org/
4669 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
4670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
4671 S:      Supported
4672 F:      Documentation/infiniband/
4673 F:      drivers/infiniband/
4674 F:      include/uapi/linux/if_infiniband.h
4675
4676 INOTIFY
4677 M:      John McCutchan <john@johnmccutchan.com>
4678 M:      Robert Love <rlove@rlove.org>
4679 M:      Eric Paris <eparis@parisplace.org>
4680 S:      Maintained
4681 F:      Documentation/filesystems/inotify.txt
4682 F:      fs/notify/inotify/
4683 F:      include/linux/inotify.h
4684 F:      include/uapi/linux/inotify.h
4685
4686 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
4687 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
4688 M:      Dmitry Torokhov <dtor@mail.ru>
4689 L:      linux-input@vger.kernel.org
4690 Q:      http://patchwork.kernel.org/project/linux-input/list/
4691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
4692 S:      Maintained
4693 F:      drivers/input/
4694 F:      include/linux/input.h
4695 F:      include/uapi/linux/input.h
4696 F:      include/linux/input/
4697
4698 INPUT MULTITOUCH (MT) PROTOCOL
4699 M:      Henrik Rydberg <rydberg@euromail.se>
4700 L:      linux-input@vger.kernel.org
4701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
4702 S:      Maintained
4703 F:      Documentation/input/multi-touch-protocol.txt
4704 F:      drivers/input/input-mt.c
4705 K:      \b(ABS|SYN)_MT_
4706
4707 INTEL C600 SERIES SAS CONTROLLER DRIVER
4708 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
4709 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
4710 M:      Dave Jiang <dave.jiang@intel.com>
4711 L:      linux-scsi@vger.kernel.org
4712 T:      git git://git.code.sf.net/p/intel-sas/isci
4713 S:      Supported
4714 F:      drivers/scsi/isci/
4715
4716 INTEL IDLE DRIVER
4717 M:      Len Brown <lenb@kernel.org>
4718 L:      linux-pm@vger.kernel.org
4719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
4720 S:      Supported
4721 F:      drivers/idle/intel_idle.c
4722
4723 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
4724 M:      Maik Broemme <mbroemme@plusserver.de>
4725 L:      linux-fbdev@vger.kernel.org
4726 S:      Maintained
4727 F:      Documentation/fb/intelfb.txt
4728 F:      drivers/video/fbdev/intelfb/
4729
4730 INTEL 810/815 FRAMEBUFFER DRIVER
4731 M:      Antonino Daplas <adaplas@gmail.com>
4732 L:      linux-fbdev@vger.kernel.org
4733 S:      Maintained
4734 F:      drivers/video/fbdev/i810/
4735
4736 INTEL MENLOW THERMAL DRIVER
4737 M:      Sujith Thomas <sujith.thomas@intel.com>
4738 L:      platform-driver-x86@vger.kernel.org
4739 W:      https://01.org/linux-acpi
4740 S:      Supported
4741 F:      drivers/platform/x86/intel_menlow.c
4742
4743 INTEL IA32 MICROCODE UPDATE SUPPORT
4744 M:      Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
4745 S:      Maintained
4746 F:      arch/x86/kernel/cpu/microcode/core*
4747 F:      arch/x86/kernel/cpu/microcode/intel*
4748
4749 INTEL I/OAT DMA DRIVER
4750 M:      Dave Jiang <dave.jiang@intel.com>
4751 R:      Dan Williams <dan.j.williams@intel.com>
4752 L:      dmaengine@vger.kernel.org
4753 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4754 S:      Supported
4755 F:      drivers/dma/ioat*
4756
4757 INTEL IOMMU (VT-d)
4758 M:      David Woodhouse <dwmw2@infradead.org>
4759 L:      iommu@lists.linux-foundation.org
4760 T:      git git://git.infradead.org/iommu-2.6.git
4761 S:      Supported
4762 F:      drivers/iommu/intel-iommu.c
4763 F:      include/linux/intel-iommu.h
4764
4765 INTEL IOP-ADMA DMA DRIVER
4766 R:      Dan Williams <dan.j.williams@intel.com>
4767 S:      Odd fixes
4768 F:      drivers/dma/iop-adma.c
4769
4770 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
4771 M:      Krzysztof Halasa <khc@pm.waw.pl>
4772 S:      Maintained
4773 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
4774 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
4775 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4776 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
4777 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
4778 F:      drivers/net/wan/ixp4xx_hss.c
4779
4780 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
4781 M:      Deepak Saxena <dsaxena@plexity.net>
4782 S:      Maintained
4783 F:      drivers/char/hw_random/ixp4xx-rng.c
4784
4785 INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf)
4786 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4787 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
4788 M:      Bruce Allan <bruce.w.allan@intel.com>
4789 M:      Carolyn Wyborny <carolyn.wyborny@intel.com>
4790 M:      Don Skidmore <donald.c.skidmore@intel.com>
4791 M:      Greg Rose <gregory.v.rose@intel.com>
4792 M:      Alex Duyck <alexander.h.duyck@intel.com>
4793 M:      John Ronciak <john.ronciak@intel.com>
4794 M:      Mitch Williams <mitch.a.williams@intel.com>
4795 M:      Linux NICS <linux.nics@intel.com>
4796 L:      e1000-devel@lists.sourceforge.net
4797 W:      http://www.intel.com/support/feedback.htm
4798 W:      http://e1000.sourceforge.net/
4799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
4801 S:      Supported
4802 F:      Documentation/networking/e100.txt
4803 F:      Documentation/networking/e1000.txt
4804 F:      Documentation/networking/e1000e.txt
4805 F:      Documentation/networking/igb.txt
4806 F:      Documentation/networking/igbvf.txt
4807 F:      Documentation/networking/ixgb.txt
4808 F:      Documentation/networking/ixgbe.txt
4809 F:      Documentation/networking/ixgbevf.txt
4810 F:      Documentation/networking/i40e.txt
4811 F:      Documentation/networking/i40evf.txt
4812 F:      drivers/net/ethernet/intel/
4813 F:      drivers/net/ethernet/intel/*/
4814
4815 INTEL-MID GPIO DRIVER
4816 M:      David Cohen <david.a.cohen@linux.intel.com>
4817 L:      linux-gpio@vger.kernel.org
4818 S:      Maintained
4819 F:      drivers/gpio/gpio-intel-mid.c
4820
4821 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4822 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
4823 L:      linux-wireless@vger.kernel.org
4824 S:      Maintained
4825 F:      Documentation/networking/README.ipw2100
4826 F:      Documentation/networking/README.ipw2200
4827 F:      drivers/net/wireless/ipw2x00/
4828
4829 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
4830 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
4831 M:      Gang Wei <gang.wei@intel.com>
4832 M:      Shane Wang <shane.wang@intel.com>
4833 L:      tboot-devel@lists.sourceforge.net
4834 W:      http://tboot.sourceforge.net
4835 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
4836 S:      Supported
4837 F:      Documentation/intel_txt.txt
4838 F:      include/linux/tboot.h
4839 F:      arch/x86/kernel/tboot.c
4840
4841 INTEL WIRELESS WIMAX CONNECTION 2400
4842 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
4843 M:      linux-wimax@intel.com
4844 L:     wimax@linuxwimax.org (subscribers-only)
4845 S:      Supported
4846 W:      http://linuxwimax.org
4847 F:      Documentation/wimax/README.i2400m
4848 F:      drivers/net/wimax/i2400m/
4849 F:      include/uapi/linux/wimax/i2400m.h
4850
4851 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4852 M:      Stanislaw Gruszka <sgruszka@redhat.com>
4853 L:      linux-wireless@vger.kernel.org
4854 S:      Supported
4855 F:      drivers/net/wireless/iwlegacy/
4856
4857 INTEL WIRELESS WIFI LINK (iwlwifi)
4858 M:      Johannes Berg <johannes.berg@intel.com>
4859 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
4860 M:      Intel Linux Wireless <ilw@linux.intel.com>
4861 L:      linux-wireless@vger.kernel.org
4862 W:      http://intellinuxwireless.org
4863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
4864 S:      Supported
4865 F:      drivers/net/wireless/iwlwifi/
4866
4867 INTEL MANAGEMENT ENGINE (mei)
4868 M:      Tomas Winkler <tomas.winkler@intel.com>
4869 L:      linux-kernel@vger.kernel.org
4870 S:      Supported
4871 F:      include/uapi/linux/mei.h
4872 F:      drivers/misc/mei/*
4873 F:      Documentation/misc-devices/mei/*
4874
4875 IOC3 ETHERNET DRIVER
4876 M:      Ralf Baechle <ralf@linux-mips.org>
4877 L:      linux-mips@linux-mips.org
4878 S:      Maintained
4879 F:      drivers/net/ethernet/sgi/ioc3-eth.c
4880
4881 IOC3 SERIAL DRIVER
4882 M:      Pat Gefre <pfg@sgi.com>
4883 L:      linux-serial@vger.kernel.org
4884 S:      Maintained
4885 F:      drivers/tty/serial/ioc3_serial.c
4886
4887 IOMMU DRIVERS
4888 M:      Joerg Roedel <joro@8bytes.org>
4889 L:      iommu@lists.linux-foundation.org
4890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
4891 S:      Maintained
4892 F:      drivers/iommu/
4893
4894 IP MASQUERADING
4895 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
4896 S:      Maintained
4897 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
4898
4899 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
4900 M:      Francois Romieu <romieu@fr.zoreil.com>
4901 M:      Sorbica Shieh <sorbica@icplus.com.tw>
4902 L:      netdev@vger.kernel.org
4903 S:      Maintained
4904 F:      drivers/net/ethernet/icplus/ipg.*
4905
4906 IPATH DRIVER
4907 M:      Mike Marciniszyn <infinipath@intel.com>
4908 L:      linux-rdma@vger.kernel.org
4909 S:      Maintained
4910 F:      drivers/infiniband/hw/ipath/
4911
4912 IPMI SUBSYSTEM
4913 M:      Corey Minyard <minyard@acm.org>
4914 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
4915 W:      http://openipmi.sourceforge.net/
4916 S:      Supported
4917 F:      Documentation/IPMI.txt
4918 F:      drivers/char/ipmi/
4919 F:      include/linux/ipmi*
4920 F:      include/uapi/linux/ipmi*
4921
4922 IPS SCSI RAID DRIVER
4923 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4924 L:      linux-scsi@vger.kernel.org
4925 W:      http://www.adaptec.com/
4926 S:      Maintained
4927 F:      drivers/scsi/ips*
4928
4929 IPVS
4930 M:      Wensong Zhang <wensong@linux-vs.org>
4931 M:      Simon Horman <horms@verge.net.au>
4932 M:      Julian Anastasov <ja@ssi.bg>
4933 L:      netdev@vger.kernel.org
4934 L:      lvs-devel@vger.kernel.org
4935 S:      Maintained
4936 F:      Documentation/networking/ipvs-sysctl.txt
4937 F:      include/net/ip_vs.h
4938 F:      include/uapi/linux/ip_vs.h
4939 F:      net/netfilter/ipvs/
4940
4941 IPWIRELESS DRIVER
4942 M:      Jiri Kosina <jkosina@suse.cz>
4943 M:      David Sterba <dsterba@suse.cz>
4944 S:      Odd Fixes
4945 F:      drivers/tty/ipwireless/
4946
4947 IPX NETWORK LAYER
4948 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
4949 L:      netdev@vger.kernel.org
4950 S:      Maintained
4951 F:      include/net/ipx.h
4952 F:      include/uapi/linux/ipx.h
4953 F:      net/ipx/
4954
4955 IRDA SUBSYSTEM
4956 M:      Samuel Ortiz <samuel@sortiz.org>
4957 L:      irda-users@lists.sourceforge.net (subscribers-only)
4958 L:      netdev@vger.kernel.org
4959 W:      http://irda.sourceforge.net/
4960 S:      Maintained
4961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
4962 F:      Documentation/networking/irda.txt
4963 F:      drivers/net/irda/
4964 F:      include/net/irda/
4965 F:      net/irda/
4966
4967 IRQ SUBSYSTEM
4968 M:      Thomas Gleixner <tglx@linutronix.de>
4969 L:      linux-kernel@vger.kernel.org
4970 S:      Maintained
4971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
4972 F:      kernel/irq/
4973
4974 IRQCHIP DRIVERS
4975 M:      Thomas Gleixner <tglx@linutronix.de>
4976 M:      Jason Cooper <jason@lakedaemon.net>
4977 L:      linux-kernel@vger.kernel.org
4978 S:      Maintained
4979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
4980 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
4981 F:      drivers/irqchip/
4982
4983 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4984 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
4985 S:      Maintained
4986 F:      Documentation/IRQ-domain.txt
4987 F:      include/linux/irqdomain.h
4988 F:      kernel/irq/irqdomain.c
4989
4990 ISAPNP
4991 M:      Jaroslav Kysela <perex@perex.cz>
4992 S:      Maintained
4993 F:      Documentation/isapnp.txt
4994 F:      drivers/pnp/isapnp/
4995 F:      include/linux/isapnp.h
4996
4997 ISA RADIO MODULE
4998 M:      Hans Verkuil <hverkuil@xs4all.nl>
4999 L:      linux-media@vger.kernel.org
5000 T:      git git://linuxtv.org/media_tree.git
5001 W:      http://linuxtv.org
5002 S:      Maintained
5003 F:      drivers/media/radio/radio-isa*
5004
5005 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5006 M:      Peter Jones <pjones@redhat.com>
5007 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5008 S:      Maintained
5009 F:      drivers/firmware/iscsi_ibft*
5010
5011 ISCSI
5012 M:      Mike Christie <michaelc@cs.wisc.edu>
5013 L:      open-iscsi@googlegroups.com
5014 W:      www.open-iscsi.org
5015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5016 S:      Maintained
5017 F:      drivers/scsi/*iscsi*
5018 F:      include/scsi/*iscsi*
5019
5020 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5021 M:      Or Gerlitz <ogerlitz@mellanox.com>
5022 M:      Roi Dayan <roid@mellanox.com>
5023 L:      linux-rdma@vger.kernel.org
5024 S:      Supported
5025 W:      http://www.openfabrics.org
5026 W:      www.open-iscsi.org
5027 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5028 F:      drivers/infiniband/ulp/iser/
5029
5030 ISDN SUBSYSTEM
5031 M:      Karsten Keil <isdn@linux-pingi.de>
5032 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5033 L:      netdev@vger.kernel.org
5034 W:      http://www.isdn4linux.de
5035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5036 S:      Maintained
5037 F:      Documentation/isdn/
5038 F:      drivers/isdn/
5039 F:      include/linux/isdn.h
5040 F:      include/linux/isdn/
5041 F:      include/uapi/linux/isdn.h
5042 F:      include/uapi/linux/isdn/
5043
5044 ISDN SUBSYSTEM (Eicon active card driver)
5045 M:      Armin Schindler <mac@melware.de>
5046 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5047 W:      http://www.melware.de
5048 S:      Maintained
5049 F:      drivers/isdn/hardware/eicon/
5050
5051 IT87 HARDWARE MONITORING DRIVER
5052 M:      Jean Delvare <jdelvare@suse.de>
5053 L:      lm-sensors@lm-sensors.org
5054 S:      Maintained
5055 F:      Documentation/hwmon/it87
5056 F:      drivers/hwmon/it87.c
5057
5058 IT913X MEDIA DRIVER
5059 M:      Antti Palosaari <crope@iki.fi>
5060 L:      linux-media@vger.kernel.org
5061 W:      http://linuxtv.org/
5062 W:      http://palosaari.fi/linux/
5063 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5064 T:      git git://linuxtv.org/anttip/media_tree.git
5065 S:      Maintained
5066 F:      drivers/media/tuners/tuner_it913x*
5067
5068 IVTV VIDEO4LINUX DRIVER
5069 M:      Andy Walls <awalls@md.metrocast.net>
5070 L:      ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
5071 L:      linux-media@vger.kernel.org
5072 T:      git git://linuxtv.org/media_tree.git
5073 W:      http://www.ivtvdriver.org
5074 S:      Maintained
5075 F:      Documentation/video4linux/*.ivtv
5076 F:      drivers/media/pci/ivtv/
5077 F:      include/uapi/linux/ivtv*
5078
5079 IX2505V MEDIA DRIVER
5080 M:      Malcolm Priestley <tvboxspy@gmail.com>
5081 L:      linux-media@vger.kernel.org
5082 W:      http://linuxtv.org/
5083 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5084 S:      Maintained
5085 F:      drivers/media/dvb-frontends/ix2505v*
5086
5087 JC42.4 TEMPERATURE SENSOR DRIVER
5088 M:      Guenter Roeck <linux@roeck-us.net>
5089 L:      lm-sensors@lm-sensors.org
5090 S:      Maintained
5091 F:      drivers/hwmon/jc42.c
5092 F:      Documentation/hwmon/jc42
5093
5094 JFS FILESYSTEM
5095 M:      Dave Kleikamp <shaggy@kernel.org>
5096 L:      jfs-discussion@lists.sourceforge.net
5097 W:      http://jfs.sourceforge.net/
5098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5099 S:      Maintained
5100 F:      Documentation/filesystems/jfs.txt
5101 F:      fs/jfs/
5102
5103 JME NETWORK DRIVER
5104 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5105 L:      netdev@vger.kernel.org
5106 S:      Maintained
5107 F:      drivers/net/ethernet/jme.*
5108
5109 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5110 M:      David Woodhouse <dwmw2@infradead.org>
5111 L:      linux-mtd@lists.infradead.org
5112 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5113 S:      Maintained
5114 F:      fs/jffs2/
5115 F:      include/uapi/linux/jffs2.h
5116
5117 JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
5118 M:      Andrew Morton <akpm@linux-foundation.org>
5119 M:      Jan Kara <jack@suse.cz>
5120 L:      linux-ext4@vger.kernel.org
5121 S:      Maintained
5122 F:      fs/jbd/
5123 F:      include/linux/jbd.h
5124
5125 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5126 M:      "Theodore Ts'o" <tytso@mit.edu>
5127 L:      linux-ext4@vger.kernel.org
5128 S:      Maintained
5129 F:      fs/jbd2/
5130 F:      include/linux/jbd2.h
5131
5132 JSM Neo PCI based serial card
5133 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5134 L:      linux-serial@vger.kernel.org
5135 S:      Maintained
5136 F:      drivers/tty/serial/jsm/
5137
5138 K10TEMP HARDWARE MONITORING DRIVER
5139 M:      Clemens Ladisch <clemens@ladisch.de>
5140 L:      lm-sensors@lm-sensors.org
5141 S:      Maintained
5142 F:      Documentation/hwmon/k10temp
5143 F:      drivers/hwmon/k10temp.c
5144
5145 K8TEMP HARDWARE MONITORING DRIVER
5146 M:      Rudolf Marek <r.marek@assembler.cz>
5147 L:      lm-sensors@lm-sensors.org
5148 S:      Maintained
5149 F:      Documentation/hwmon/k8temp
5150 F:      drivers/hwmon/k8temp.c
5151
5152 KCONFIG
5153 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5154 L:      linux-kbuild@vger.kernel.org
5155 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5156 S:      Maintained
5157 F:      Documentation/kbuild/kconfig-language.txt
5158 F:      scripts/kconfig/
5159
5160 KDUMP
5161 M:      Vivek Goyal <vgoyal@redhat.com>
5162 M:      Haren Myneni <hbabu@us.ibm.com>
5163 L:      kexec@lists.infradead.org
5164 W:      http://lse.sourceforge.net/kdump/
5165 S:      Maintained
5166 F:      Documentation/kdump/
5167
5168 KEENE FM RADIO TRANSMITTER DRIVER
5169 M:      Hans Verkuil <hverkuil@xs4all.nl>
5170 L:      linux-media@vger.kernel.org
5171 T:      git git://linuxtv.org/media_tree.git
5172 W:      http://linuxtv.org
5173 S:      Maintained
5174 F:      drivers/media/radio/radio-keene*
5175
5176 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5177 M:      Ian Kent <raven@themaw.net>
5178 L:      autofs@vger.kernel.org
5179 S:      Maintained
5180 F:      fs/autofs4/
5181
5182 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5183 M:      Michal Marek <mmarek@suse.cz>
5184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5186 L:      linux-kbuild@vger.kernel.org
5187 S:      Maintained
5188 F:      Documentation/kbuild/
5189 F:      Makefile
5190 F:      scripts/Makefile.*
5191 F:      scripts/basic/
5192 F:      scripts/mk*
5193 F:      scripts/package/
5194
5195 KERNEL JANITORS
5196 L:      kernel-janitors@vger.kernel.org
5197 W:      http://kernelnewbies.org/KernelJanitors
5198 S:      Odd Fixes
5199
5200 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5201 M:      "J. Bruce Fields" <bfields@fieldses.org>
5202 L:      linux-nfs@vger.kernel.org
5203 W:      http://nfs.sourceforge.net/
5204 S:      Supported
5205 F:      fs/nfsd/
5206 F:      include/uapi/linux/nfsd/
5207 F:      fs/lockd/
5208 F:      fs/nfs_common/
5209 F:      net/sunrpc/
5210 F:      include/linux/lockd/
5211 F:      include/linux/sunrpc/
5212 F:      include/uapi/linux/sunrpc/
5213
5214 KERNEL VIRTUAL MACHINE (KVM)
5215 M:      Gleb Natapov <gleb@kernel.org>
5216 M:      Paolo Bonzini <pbonzini@redhat.com>
5217 L:      kvm@vger.kernel.org
5218 W:      http://www.linux-kvm.org
5219 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5220 S:      Supported
5221 F:      Documentation/*/kvm*.txt
5222 F:      Documentation/virtual/kvm/
5223 F:      arch/*/kvm/
5224 F:      arch/*/include/asm/kvm*
5225 F:      include/linux/kvm*
5226 F:      include/uapi/linux/kvm*
5227 F:      virt/kvm/
5228
5229 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5230 M:      Joerg Roedel <joro@8bytes.org>
5231 L:      kvm@vger.kernel.org
5232 W:      http://kvm.qumranet.com
5233 S:      Maintained
5234 F:      arch/x86/include/asm/svm.h
5235 F:      arch/x86/kvm/svm.c
5236
5237 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5238 M:      Alexander Graf <agraf@suse.de>
5239 L:      kvm-ppc@vger.kernel.org
5240 W:      http://kvm.qumranet.com
5241 T:      git git://github.com/agraf/linux-2.6.git
5242 S:      Supported
5243 F:      arch/powerpc/include/asm/kvm*
5244 F:      arch/powerpc/kvm/
5245
5246 KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
5247 M:      Xiantao Zhang <xiantao.zhang@intel.com>
5248 L:      kvm-ia64@vger.kernel.org
5249 W:      http://kvm.qumranet.com
5250 S:      Supported
5251 F:      Documentation/ia64/kvm.txt
5252 F:      arch/ia64/include/asm/kvm*
5253 F:      arch/ia64/kvm/
5254
5255 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5256 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5257 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5258 M:      linux390@de.ibm.com
5259 L:      linux-s390@vger.kernel.org
5260 W:      http://www.ibm.com/developerworks/linux/linux390/
5261 S:      Supported
5262 F:      Documentation/s390/kvm.txt
5263 F:      arch/s390/include/asm/kvm*
5264 F:      arch/s390/kvm/
5265 F:      drivers/s390/kvm/
5266
5267 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5268 M:      Christoffer Dall <christoffer.dall@linaro.org>
5269 M:      Marc Zyngier <marc.zyngier@arm.com>
5270 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5271 L:      kvmarm@lists.cs.columbia.edu
5272 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5273 S:      Supported
5274 F:      arch/arm/include/uapi/asm/kvm*
5275 F:      arch/arm/include/asm/kvm*
5276 F:      arch/arm/kvm/
5277 F:      virt/kvm/arm/
5278 F:      include/kvm/arm_*
5279
5280 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5281 M:      Christoffer Dall <christoffer.dall@linaro.org>
5282 M:      Marc Zyngier <marc.zyngier@arm.com>
5283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5284 L:      kvmarm@lists.cs.columbia.edu
5285 S:      Maintained
5286 F:      arch/arm64/include/uapi/asm/kvm*
5287 F:      arch/arm64/include/asm/kvm*
5288 F:      arch/arm64/kvm/
5289
5290 KEXEC
5291 M:      Eric Biederman <ebiederm@xmission.com>
5292 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
5293 L:      kexec@lists.infradead.org
5294 S:      Maintained
5295 F:      include/linux/kexec.h
5296 F:      include/uapi/linux/kexec.h
5297 F:      kernel/kexec.c
5298
5299 KEYS/KEYRINGS:
5300 M:      David Howells <dhowells@redhat.com>
5301 L:      keyrings@linux-nfs.org
5302 S:      Maintained
5303 F:      Documentation/security/keys.txt
5304 F:      include/linux/key.h
5305 F:      include/linux/key-type.h
5306 F:      include/keys/
5307 F:      security/keys/
5308
5309 KEYS-TRUSTED
5310 M:      David Safford <safford@us.ibm.com>
5311 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5312 L:      linux-security-module@vger.kernel.org
5313 L:      keyrings@linux-nfs.org
5314 S:      Supported
5315 F:      Documentation/security/keys-trusted-encrypted.txt
5316 F:      include/keys/trusted-type.h
5317 F:      security/keys/trusted.c
5318 F:      security/keys/trusted.h
5319
5320 KEYS-ENCRYPTED
5321 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5322 M:      David Safford <safford@us.ibm.com>
5323 L:      linux-security-module@vger.kernel.org
5324 L:      keyrings@linux-nfs.org
5325 S:      Supported
5326 F:      Documentation/security/keys-trusted-encrypted.txt
5327 F:      include/keys/encrypted-type.h
5328 F:      security/keys/encrypted-keys/
5329
5330 KGDB / KDB /debug_core
5331 M:      Jason Wessel <jason.wessel@windriver.com>
5332 W:      http://kgdb.wiki.kernel.org/
5333 L:      kgdb-bugreport@lists.sourceforge.net
5334 S:      Maintained
5335 F:      Documentation/DocBook/kgdb.tmpl
5336 F:      drivers/misc/kgdbts.c
5337 F:      drivers/tty/serial/kgdboc.c
5338 F:      include/linux/kdb.h
5339 F:      include/linux/kgdb.h
5340 F:      kernel/debug/
5341
5342 KMEMCHECK
5343 M:      Vegard Nossum <vegardno@ifi.uio.no>
5344 M:      Pekka Enberg <penberg@kernel.org>
5345 S:      Maintained
5346 F:      Documentation/kmemcheck.txt
5347 F:      arch/x86/include/asm/kmemcheck.h
5348 F:      arch/x86/mm/kmemcheck/
5349 F:      include/linux/kmemcheck.h
5350 F:      mm/kmemcheck.c
5351
5352 KMEMLEAK
5353 M:      Catalin Marinas <catalin.marinas@arm.com>
5354 S:      Maintained
5355 F:      Documentation/kmemleak.txt
5356 F:      include/linux/kmemleak.h
5357 F:      mm/kmemleak.c
5358 F:      mm/kmemleak-test.c
5359
5360 KPROBES
5361 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
5362 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
5363 M:      "David S. Miller" <davem@davemloft.net>
5364 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
5365 S:      Maintained
5366 F:      Documentation/kprobes.txt
5367 F:      include/linux/kprobes.h
5368 F:      kernel/kprobes.c
5369
5370 KS0108 LCD CONTROLLER DRIVER
5371 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
5372 W:      http://miguelojeda.es/auxdisplay.htm
5373 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
5374 S:      Maintained
5375 F:      Documentation/auxdisplay/ks0108
5376 F:      drivers/auxdisplay/ks0108.c
5377 F:      include/linux/ks0108.h
5378
5379 LAPB module
5380 L:      linux-x25@vger.kernel.org
5381 S:      Orphan
5382 F:      Documentation/networking/lapb-module.txt
5383 F:      include/*/lapb.h
5384 F:      net/lapb/
5385
5386 LASI 53c700 driver for PARISC
5387 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
5388 L:      linux-scsi@vger.kernel.org
5389 S:      Maintained
5390 F:      Documentation/scsi/53c700.txt
5391 F:      drivers/scsi/53c700*
5392
5393 LED SUBSYSTEM
5394 M:      Bryan Wu <cooloney@gmail.com>
5395 M:      Richard Purdie <rpurdie@rpsys.net>
5396 L:      linux-leds@vger.kernel.org
5397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
5398 S:      Maintained
5399 F:      drivers/leds/
5400 F:      include/linux/leds.h
5401
5402 LEGACY EEPROM DRIVER
5403 M:      Jean Delvare <jdelvare@suse.de>
5404 S:      Maintained
5405 F:      Documentation/misc-devices/eeprom
5406 F:      drivers/misc/eeprom/eeprom.c
5407
5408 LEGO USB Tower driver
5409 M:      Juergen Stuber <starblue@users.sourceforge.net>
5410 L:      legousb-devel@lists.sourceforge.net
5411 W:      http://legousb.sourceforge.net/
5412 S:      Maintained
5413 F:      drivers/usb/misc/legousbtower.c
5414
5415 LG2160 MEDIA DRIVER
5416 M:      Michael Krufky <mkrufky@linuxtv.org>
5417 L:      linux-media@vger.kernel.org
5418 W:      http://linuxtv.org/
5419 W:      http://github.com/mkrufky
5420 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5421 T:      git git://linuxtv.org/mkrufky/tuners.git
5422 S:      Maintained
5423 F:      drivers/media/dvb-frontends/lg2160.*
5424
5425 LGDT3305 MEDIA DRIVER
5426 M:      Michael Krufky <mkrufky@linuxtv.org>
5427 L:      linux-media@vger.kernel.org
5428 W:      http://linuxtv.org/
5429 W:      http://github.com/mkrufky
5430 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5431 T:      git git://linuxtv.org/mkrufky/tuners.git
5432 S:      Maintained
5433 F:      drivers/media/dvb-frontends/lgdt3305.*
5434
5435 LGUEST
5436 M:      Rusty Russell <rusty@rustcorp.com.au>
5437 L:      lguest@lists.ozlabs.org
5438 W:      http://lguest.ozlabs.org/
5439 S:      Odd Fixes
5440 F:      arch/x86/include/asm/lguest*.h
5441 F:      arch/x86/lguest/
5442 F:      drivers/lguest/
5443 F:      include/linux/lguest*.h
5444 F:      tools/lguest/
5445
5446 LIBLOCKDEP
5447 M:      Sasha Levin <sasha.levin@oracle.com>
5448 S:      Maintained
5449 F:      tools/lib/lockdep/
5450
5451 LINUX FOR IBM pSERIES (RS/6000)
5452 M:      Paul Mackerras <paulus@au.ibm.com>
5453 W:      http://www.ibm.com/linux/ltc/projects/ppc
5454 S:      Supported
5455 F:      arch/powerpc/boot/rs6000.h
5456
5457 LINUX FOR POWERPC (32-BIT AND 64-BIT)
5458 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5459 M:      Paul Mackerras <paulus@samba.org>
5460 M:      Michael Ellerman <mpe@ellerman.id.au>
5461 W:      http://www.penguinppc.org/
5462 L:      linuxppc-dev@lists.ozlabs.org
5463 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
5464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
5465 S:      Supported
5466 F:      Documentation/powerpc/
5467 F:      arch/powerpc/
5468
5469 LINUX FOR POWER MACINTOSH
5470 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5471 W:      http://www.penguinppc.org/
5472 L:      linuxppc-dev@lists.ozlabs.org
5473 S:      Maintained
5474 F:      arch/powerpc/platforms/powermac/
5475 F:      drivers/macintosh/
5476
5477 LINUX FOR POWERPC EMBEDDED MPC5XXX
5478 M:      Anatolij Gustschin <agust@denx.de>
5479 L:      linuxppc-dev@lists.ozlabs.org
5480 T:      git git://git.denx.de/linux-denx-agust.git
5481 S:      Maintained
5482 F:      arch/powerpc/platforms/512x/
5483 F:      arch/powerpc/platforms/52xx/
5484
5485 LINUX FOR POWERPC EMBEDDED PPC4XX
5486 M:  Alistair Popple <alistair@popple.id.au>
5487 M:      Matt Porter <mporter@kernel.crashing.org>
5488 W:      http://www.penguinppc.org/
5489 L:      linuxppc-dev@lists.ozlabs.org
5490 S:      Maintained
5491 F:      arch/powerpc/platforms/40x/
5492 F:      arch/powerpc/platforms/44x/
5493
5494 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
5495 L:      linuxppc-dev@lists.ozlabs.org
5496 S:      Orphan
5497 F:      arch/powerpc/*/*virtex*
5498 F:      arch/powerpc/*/*/*virtex*
5499
5500 LINUX FOR POWERPC EMBEDDED PPC8XX
5501 M:      Vitaly Bordug <vitb@kernel.crashing.org>
5502 W:      http://www.penguinppc.org/
5503 L:      linuxppc-dev@lists.ozlabs.org
5504 S:      Maintained
5505 F:      arch/powerpc/platforms/8xx/
5506
5507 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
5508 M:      Scott Wood <scottwood@freescale.com>
5509 M:      Kumar Gala <galak@kernel.crashing.org>
5510 W:      http://www.penguinppc.org/
5511 L:      linuxppc-dev@lists.ozlabs.org
5512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
5513 S:      Maintained
5514 F:      arch/powerpc/platforms/83xx/
5515 F:      arch/powerpc/platforms/85xx/
5516
5517 LINUX FOR POWERPC PA SEMI PWRFICIENT
5518 M:      Olof Johansson <olof@lixom.net>
5519 L:      linuxppc-dev@lists.ozlabs.org
5520 S:      Maintained
5521 F:      arch/powerpc/platforms/pasemi/
5522 F:      drivers/*/*pasemi*
5523 F:      drivers/*/*/*pasemi*
5524
5525 LINUX SECURITY MODULE (LSM) FRAMEWORK
5526 M:      Chris Wright <chrisw@sous-sol.org>
5527 L:      linux-security-module@vger.kernel.org
5528 S:      Supported
5529
5530 LIS3LV02D ACCELEROMETER DRIVER
5531 M:      Eric Piel <eric.piel@tremplin-utc.net>
5532 S:      Maintained
5533 F:      Documentation/misc-devices/lis3lv02d
5534 F:      drivers/misc/lis3lv02d/
5535 F:      drivers/platform/x86/hp_accel.c
5536
5537 LLC (802.2)
5538 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5539 S:      Maintained
5540 F:      include/linux/llc.h
5541 F:      include/uapi/linux/llc.h
5542 F:      include/net/llc*
5543 F:      net/llc/
5544
5545 LM73 HARDWARE MONITOR DRIVER
5546 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
5547 L:      lm-sensors@lm-sensors.org
5548 S:      Maintained
5549 F:      drivers/hwmon/lm73.c
5550
5551 LM78 HARDWARE MONITOR DRIVER
5552 M:      Jean Delvare <jdelvare@suse.de>
5553 L:      lm-sensors@lm-sensors.org
5554 S:      Maintained
5555 F:      Documentation/hwmon/lm78
5556 F:      drivers/hwmon/lm78.c
5557
5558 LM83 HARDWARE MONITOR DRIVER
5559 M:      Jean Delvare <jdelvare@suse.de>
5560 L:      lm-sensors@lm-sensors.org
5561 S:      Maintained
5562 F:      Documentation/hwmon/lm83
5563 F:      drivers/hwmon/lm83.c
5564
5565 LM90 HARDWARE MONITOR DRIVER
5566 M:      Jean Delvare <jdelvare@suse.de>
5567 L:      lm-sensors@lm-sensors.org
5568 S:      Maintained
5569 F:      Documentation/hwmon/lm90
5570 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
5571 F:      drivers/hwmon/lm90.c
5572
5573 LM95234 HARDWARE MONITOR DRIVER
5574 M:      Guenter Roeck <linux@roeck-us.net>
5575 L:      lm-sensors@lm-sensors.org
5576 S:      Maintained
5577 F:      Documentation/hwmon/lm95234
5578 F:      drivers/hwmon/lm95234.c
5579
5580 LME2510 MEDIA DRIVER
5581 M:      Malcolm Priestley <tvboxspy@gmail.com>
5582 L:      linux-media@vger.kernel.org
5583 W:      http://linuxtv.org/
5584 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5585 S:      Maintained
5586 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
5587
5588 LOCKDEP AND LOCKSTAT
5589 M:      Peter Zijlstra <peterz@infradead.org>
5590 M:      Ingo Molnar <mingo@redhat.com>
5591 L:      linux-kernel@vger.kernel.org
5592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
5593 S:      Maintained
5594 F:      Documentation/lockdep*.txt
5595 F:      Documentation/lockstat.txt
5596 F:      include/linux/lockdep.h
5597 F:      kernel/locking/
5598
5599 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
5600 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
5601 L:      linux-ntfs-dev@lists.sourceforge.net
5602 W:      http://www.linux-ntfs.org/content/view/19/37/
5603 S:      Maintained
5604 F:      Documentation/ldm.txt
5605 F:      block/partitions/ldm.*
5606
5607 LogFS
5608 M:      Joern Engel <joern@logfs.org>
5609 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
5610 L:      logfs@logfs.org
5611 W:      logfs.org
5612 S:      Maintained
5613 F:      fs/logfs/
5614
5615 LPC32XX MACHINE SUPPORT
5616 M:      Roland Stigge <stigge@antcom.de>
5617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5618 S:      Maintained
5619 F:      arch/arm/mach-lpc32xx/
5620
5621 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
5622 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
5623 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
5624 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
5625 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
5626 L:      MPT-FusionLinux.pdl@avagotech.com
5627 L:      linux-scsi@vger.kernel.org
5628 W:      http://www.lsilogic.com/support
5629 S:      Supported
5630 F:      drivers/message/fusion/
5631 F:      drivers/scsi/mpt2sas/
5632 F:      drivers/scsi/mpt3sas/
5633
5634 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
5635 M:      Matthew Wilcox <matthew@wil.cx>
5636 L:      linux-scsi@vger.kernel.org
5637 S:      Maintained
5638 F:      drivers/scsi/sym53c8xx_2/
5639
5640 LTC4261 HARDWARE MONITOR DRIVER
5641 M:      Guenter Roeck <linux@roeck-us.net>
5642 L:      lm-sensors@lm-sensors.org
5643 S:      Maintained
5644 F:      Documentation/hwmon/ltc4261
5645 F:      drivers/hwmon/ltc4261.c
5646
5647 LTP (Linux Test Project)
5648 M:      Mike Frysinger <vapier@gentoo.org>
5649 M:      Cyril Hrubis <chrubis@suse.cz>
5650 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
5651 M:      Jan Stancek <jstancek@redhat.com>
5652 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
5653 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
5654 L:      ltp-list@lists.sourceforge.net (subscribers-only)
5655 W:      http://linux-test-project.github.io/
5656 T:      git git://github.com/linux-test-project/ltp.git
5657 S:      Maintained
5658
5659 M32R ARCHITECTURE
5660 M:      Hirokazu Takata <takata@linux-m32r.org>
5661 L:      linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
5662 L:      linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5663 W:      http://www.linux-m32r.org/
5664 S:      Maintained
5665 F:      arch/m32r/
5666
5667 M68K ARCHITECTURE
5668 M:      Geert Uytterhoeven <geert@linux-m68k.org>
5669 L:      linux-m68k@lists.linux-m68k.org
5670 W:      http://www.linux-m68k.org/
5671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
5672 S:      Maintained
5673 F:      arch/m68k/
5674 F:      drivers/zorro/
5675
5676 M68K ON APPLE MACINTOSH
5677 M:      Joshua Thompson <funaho@jurai.org>
5678 W:      http://www.mac.linux-m68k.org/
5679 L:      linux-m68k@lists.linux-m68k.org
5680 S:      Maintained
5681 F:      arch/m68k/mac/
5682
5683 M68K ON HP9000/300
5684 M:      Philip Blundell <philb@gnu.org>
5685 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
5686 S:      Maintained
5687 F:      arch/m68k/hp300/
5688
5689 M88DS3103 MEDIA DRIVER
5690 M:      Antti Palosaari <crope@iki.fi>
5691 L:      linux-media@vger.kernel.org
5692 W:      http://linuxtv.org/
5693 W:      http://palosaari.fi/linux/
5694 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5695 T:      git git://linuxtv.org/anttip/media_tree.git
5696 S:      Maintained
5697 F:      drivers/media/dvb-frontends/m88ds3103*
5698
5699 M88RS2000 MEDIA DRIVER
5700 M:      Malcolm Priestley <tvboxspy@gmail.com>
5701 L:      linux-media@vger.kernel.org
5702 W:      http://linuxtv.org/
5703 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5704 S:      Maintained
5705 F:      drivers/media/dvb-frontends/m88rs2000*
5706
5707 M88TS2022 MEDIA DRIVER
5708 M:      Antti Palosaari <crope@iki.fi>
5709 L:      linux-media@vger.kernel.org
5710 W:      http://linuxtv.org/
5711 W:      http://palosaari.fi/linux/
5712 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5713 T:      git git://linuxtv.org/anttip/media_tree.git
5714 S:      Maintained
5715 F:      drivers/media/tuners/m88ts2022*
5716
5717 MA901 MASTERKIT USB FM RADIO DRIVER
5718 M:      Alexey Klimov <klimov.linux@gmail.com>
5719 L:      linux-media@vger.kernel.org
5720 T:      git git://linuxtv.org/media_tree.git
5721 S:      Maintained
5722 F:      drivers/media/radio/radio-ma901.c
5723
5724 MAC80211
5725 M:      Johannes Berg <johannes@sipsolutions.net>
5726 L:      linux-wireless@vger.kernel.org
5727 W:      http://wireless.kernel.org/
5728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
5730 S:      Maintained
5731 F:      Documentation/networking/mac80211-injection.txt
5732 F:      include/net/mac80211.h
5733 F:      net/mac80211/
5734
5735 MACVLAN DRIVER
5736 M:      Patrick McHardy <kaber@trash.net>
5737 L:      netdev@vger.kernel.org
5738 S:      Maintained
5739 F:      drivers/net/macvlan.c
5740 F:      include/linux/if_macvlan.h
5741
5742 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
5743 M:      Michael Kerrisk <mtk.manpages@gmail.com>
5744 W:      http://www.kernel.org/doc/man-pages
5745 L:      linux-man@vger.kernel.org
5746 S:      Maintained
5747
5748 MARVELL ARMADA DRM SUPPORT
5749 M:      Russell King <rmk+kernel@arm.linux.org.uk>
5750 S:      Maintained
5751 F:      drivers/gpu/drm/armada/
5752
5753 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5754 M:      Mirko Lindner <mlindner@marvell.com>
5755 M:      Stephen Hemminger <stephen@networkplumber.org>
5756 L:      netdev@vger.kernel.org
5757 S:      Maintained
5758 F:      drivers/net/ethernet/marvell/sk*
5759
5760 MARVELL LIBERTAS WIRELESS DRIVER
5761 L:      libertas-dev@lists.infradead.org
5762 S:      Orphan
5763 F:      drivers/net/wireless/libertas/
5764
5765 MARVELL MV643XX ETHERNET DRIVER
5766 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
5767 L:      netdev@vger.kernel.org
5768 S:      Maintained
5769 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
5770 F:      include/linux/mv643xx.h
5771
5772 MARVELL MVNETA ETHERNET DRIVER
5773 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5774 L:      netdev@vger.kernel.org
5775 S:      Maintained
5776 F:      drivers/net/ethernet/marvell/mvneta.*
5777
5778 MARVELL MWIFIEX WIRELESS DRIVER
5779 M:      Amitkumar Karwar <akarwar@marvell.com>
5780 M:      Avinash Patil <patila@marvell.com>
5781 L:      linux-wireless@vger.kernel.org
5782 S:      Maintained
5783 F:      drivers/net/wireless/mwifiex/
5784
5785 MARVELL MWL8K WIRELESS DRIVER
5786 M:      Lennert Buytenhek <buytenh@wantstofly.org>
5787 L:      linux-wireless@vger.kernel.org
5788 S:      Odd Fixes
5789 F:      drivers/net/wireless/mwl8k.c
5790
5791 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
5792 M:      Nicolas Pitre <nico@fluxnic.net>
5793 S:      Odd Fixes
5794 F:      drivers/mmc/host/mvsdio.*
5795
5796 MATROX FRAMEBUFFER DRIVER
5797 L:      linux-fbdev@vger.kernel.org
5798 S:      Orphan
5799 F:      drivers/video/fbdev/matrox/matroxfb_*
5800 F:      include/uapi/linux/matroxfb.h
5801
5802 MAX16065 HARDWARE MONITOR DRIVER
5803 M:      Guenter Roeck <linux@roeck-us.net>
5804 L:      lm-sensors@lm-sensors.org
5805 S:      Maintained
5806 F:      Documentation/hwmon/max16065
5807 F:      drivers/hwmon/max16065.c
5808
5809 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5810 M:      "Hans J. Koch" <hjk@hansjkoch.de>
5811 L:      lm-sensors@lm-sensors.org
5812 S:      Maintained
5813 F:      Documentation/hwmon/max6650
5814 F:      drivers/hwmon/max6650.c
5815
5816 MAX6697 HARDWARE MONITOR DRIVER
5817 M:      Guenter Roeck <linux@roeck-us.net>
5818 L:      lm-sensors@lm-sensors.org
5819 S:      Maintained
5820 F:      Documentation/hwmon/max6697
5821 F:      Documentation/devicetree/bindings/i2c/max6697.txt
5822 F:      drivers/hwmon/max6697.c
5823 F:      include/linux/platform_data/max6697.h
5824
5825 MAXIRADIO FM RADIO RECEIVER DRIVER
5826 M:      Hans Verkuil <hverkuil@xs4all.nl>
5827 L:      linux-media@vger.kernel.org
5828 T:      git git://linuxtv.org/media_tree.git
5829 W:      http://linuxtv.org
5830 S:      Maintained
5831 F:      drivers/media/radio/radio-maxiradio*
5832
5833 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
5834 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
5835 P:      LinuxTV.org Project
5836 L:      linux-media@vger.kernel.org
5837 W:      http://linuxtv.org
5838 Q:      http://patchwork.kernel.org/project/linux-media/list/
5839 T:      git git://linuxtv.org/media_tree.git
5840 S:      Maintained
5841 F:      Documentation/dvb/
5842 F:      Documentation/video4linux/
5843 F:      Documentation/DocBook/media/
5844 F:      drivers/media/
5845 F:      drivers/staging/media/
5846 F:      include/media/
5847 F:      include/uapi/linux/dvb/
5848 F:      include/uapi/linux/videodev2.h
5849 F:      include/uapi/linux/media.h
5850 F:      include/uapi/linux/v4l2-*
5851 F:      include/uapi/linux/meye.h
5852 F:      include/uapi/linux/ivtv*
5853 F:      include/uapi/linux/uvcvideo.h
5854
5855 MEDIAVISION PRO MOVIE STUDIO DRIVER
5856 M:      Hans Verkuil <hverkuil@xs4all.nl>
5857 L:      linux-media@vger.kernel.org
5858 T:      git git://linuxtv.org/media_tree.git
5859 W:      http://linuxtv.org
5860 S:      Odd Fixes
5861 F:      drivers/media/parport/pms*
5862
5863 MEGARAID SCSI DRIVERS
5864 M:      Neela Syam Kolli <megaraidlinux@lsi.com>
5865 L:      linux-scsi@vger.kernel.org
5866 W:      http://megaraid.lsilogic.com
5867 S:      Maintained
5868 F:      Documentation/scsi/megaraid.txt
5869 F:      drivers/scsi/megaraid.*
5870 F:      drivers/scsi/megaraid/
5871
5872 MELLANOX ETHERNET DRIVER (mlx4_en)
5873 M:      Amir Vadai <amirv@mellanox.com>
5874 L:      netdev@vger.kernel.org
5875 S:      Supported
5876 W:      http://www.mellanox.com
5877 Q:      http://patchwork.ozlabs.org/project/netdev/list/
5878 F:      drivers/net/ethernet/mellanox/mlx4/en_*
5879
5880 MEMORY MANAGEMENT
5881 L:      linux-mm@kvack.org
5882 W:      http://www.linux-mm.org
5883 S:      Maintained
5884 F:      include/linux/mm.h
5885 F:      include/linux/gfp.h
5886 F:      include/linux/mmzone.h
5887 F:      include/linux/memory_hotplug.h
5888 F:      include/linux/vmalloc.h
5889 F:      mm/
5890
5891 MEMORY TECHNOLOGY DEVICES (MTD)
5892 M:      David Woodhouse <dwmw2@infradead.org>
5893 M:      Brian Norris <computersforpeace@gmail.com>
5894 L:      linux-mtd@lists.infradead.org
5895 W:      http://www.linux-mtd.infradead.org/
5896 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
5897 T:      git git://git.infradead.org/linux-mtd.git
5898 S:      Maintained
5899 F:      drivers/mtd/
5900 F:      include/linux/mtd/
5901 F:      include/uapi/mtd/
5902
5903 MEN A21 WATCHDOG DRIVER
5904 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
5905 L:      linux-watchdog@vger.kernel.org
5906 S:      Supported
5907 F:      drivers/watchdog/mena21_wdt.c
5908
5909 MEN CHAMELEON BUS (mcb)
5910 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
5911 S:      Supported
5912 F:      drivers/mcb/
5913 F:      include/linux/mcb.h
5914
5915 METAG ARCHITECTURE
5916 M:      James Hogan <james.hogan@imgtec.com>
5917 L:      linux-metag@vger.kernel.org
5918 S:      Supported
5919 F:      arch/metag/
5920 F:      Documentation/metag/
5921 F:      Documentation/devicetree/bindings/metag/
5922 F:      drivers/clocksource/metag_generic.c
5923 F:      drivers/irqchip/irq-metag.c
5924 F:      drivers/irqchip/irq-metag-ext.c
5925 F:      drivers/tty/metag_da.c
5926
5927 MICROBLAZE ARCHITECTURE
5928 M:      Michal Simek <monstr@monstr.eu>
5929 W:      http://www.monstr.eu/fdt/
5930 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
5931 S:      Supported
5932 F:      arch/microblaze/
5933
5934 MICROTEK X6 SCANNER
5935 M:      Oliver Neukum <oliver@neukum.org>
5936 S:      Maintained
5937 F:      drivers/usb/image/microtek.*
5938
5939 MIPS
5940 M:      Ralf Baechle <ralf@linux-mips.org>
5941 L:      linux-mips@linux-mips.org
5942 W:      http://www.linux-mips.org/
5943 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
5944 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
5945 S:      Supported
5946 F:      Documentation/mips/
5947 F:      arch/mips/
5948
5949 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5950 M:      Hans Verkuil <hverkuil@xs4all.nl>
5951 L:      linux-media@vger.kernel.org
5952 T:      git git://linuxtv.org/media_tree.git
5953 W:      http://linuxtv.org
5954 S:      Odd Fixes
5955 F:      drivers/media/radio/radio-miropcm20*
5956
5957 Mellanox MLX5 core VPI driver
5958 M:      Eli Cohen <eli@mellanox.com>
5959 L:      netdev@vger.kernel.org
5960 L:      linux-rdma@vger.kernel.org
5961 W:      http://www.mellanox.com
5962 Q:      http://patchwork.ozlabs.org/project/netdev/list/
5963 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5964 T:      git git://openfabrics.org/~eli/connect-ib.git
5965 S:      Supported
5966 F:      drivers/net/ethernet/mellanox/mlx5/core/
5967 F:      include/linux/mlx5/
5968
5969 Mellanox MLX5 IB driver
5970 M:      Eli Cohen <eli@mellanox.com>
5971 L:      linux-rdma@vger.kernel.org
5972 W:      http://www.mellanox.com
5973 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5974 T:      git git://openfabrics.org/~eli/connect-ib.git
5975 S:      Supported
5976 F:      include/linux/mlx5/
5977 F:      drivers/infiniband/hw/mlx5/
5978
5979 MODULE SUPPORT
5980 M:      Rusty Russell <rusty@rustcorp.com.au>
5981 S:      Maintained
5982 F:      include/linux/module.h
5983 F:      kernel/module.c
5984
5985 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
5986 W:      http://popies.net/meye/
5987 S:      Orphan
5988 F:      Documentation/video4linux/meye.txt
5989 F:      drivers/media/pci/meye/
5990 F:      include/uapi/linux/meye.h
5991
5992 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
5993 M:      Jiri Slaby <jirislaby@gmail.com>
5994 S:      Maintained
5995 F:      Documentation/serial/moxa-smartio
5996 F:      drivers/tty/mxser.*
5997
5998 MR800 AVERMEDIA USB FM RADIO DRIVER
5999 M:      Alexey Klimov <klimov.linux@gmail.com>
6000 L:      linux-media@vger.kernel.org
6001 T:      git git://linuxtv.org/media_tree.git
6002 S:      Maintained
6003 F:      drivers/media/radio/radio-mr800.c
6004
6005 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6006 M:      Alan Ott <alan@signal11.us>
6007 L:      linux-wpan@vger.kernel.org
6008 S:      Maintained
6009 F:      drivers/net/ieee802154/mrf24j40.c
6010
6011 MSI LAPTOP SUPPORT
6012 M:      "Lee, Chun-Yi" <jlee@suse.com>
6013 L:      platform-driver-x86@vger.kernel.org
6014 S:      Maintained
6015 F:      drivers/platform/x86/msi-laptop.c
6016
6017 MSI WMI SUPPORT
6018 M:      Anisse Astier <anisse@astier.eu>
6019 L:      platform-driver-x86@vger.kernel.org
6020 S:      Supported
6021 F:      drivers/platform/x86/msi-wmi.c
6022
6023 MSI001 MEDIA DRIVER
6024 M:      Antti Palosaari <crope@iki.fi>
6025 L:      linux-media@vger.kernel.org
6026 W:      http://linuxtv.org/
6027 W:      http://palosaari.fi/linux/
6028 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6029 T:      git git://linuxtv.org/anttip/media_tree.git
6030 S:      Maintained
6031 F:      drivers/media/tuners/msi001*
6032
6033 MSI2500 MEDIA DRIVER
6034 M:      Antti Palosaari <crope@iki.fi>
6035 L:      linux-media@vger.kernel.org
6036 W:      http://linuxtv.org/
6037 W:      http://palosaari.fi/linux/
6038 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6039 T:      git git://linuxtv.org/anttip/media_tree.git
6040 S:      Maintained
6041 F:      drivers/media/usb/msi2500/
6042
6043 MT9M032 APTINA SENSOR DRIVER
6044 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6045 L:      linux-media@vger.kernel.org
6046 T:      git git://linuxtv.org/media_tree.git
6047 S:      Maintained
6048 F:      drivers/media/i2c/mt9m032.c
6049 F:      include/media/mt9m032.h
6050
6051 MT9P031 APTINA CAMERA SENSOR
6052 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6053 L:      linux-media@vger.kernel.org
6054 T:      git git://linuxtv.org/media_tree.git
6055 S:      Maintained
6056 F:      drivers/media/i2c/mt9p031.c
6057 F:      include/media/mt9p031.h
6058
6059 MT9T001 APTINA CAMERA SENSOR
6060 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6061 L:      linux-media@vger.kernel.org
6062 T:      git git://linuxtv.org/media_tree.git
6063 S:      Maintained
6064 F:      drivers/media/i2c/mt9t001.c
6065 F:      include/media/mt9t001.h
6066
6067 MT9V032 APTINA CAMERA SENSOR
6068 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6069 L:      linux-media@vger.kernel.org
6070 T:      git git://linuxtv.org/media_tree.git
6071 S:      Maintained
6072 F:      drivers/media/i2c/mt9v032.c
6073 F:      include/media/mt9v032.h
6074
6075 MULTIFUNCTION DEVICES (MFD)
6076 M:      Samuel Ortiz <sameo@linux.intel.com>
6077 M:      Lee Jones <lee.jones@linaro.org>
6078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
6079 S:      Supported
6080 F:      drivers/mfd/
6081 F:      include/linux/mfd/
6082
6083 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
6084 M:      Chris Ball <chris@printf.net>
6085 M:      Ulf Hansson <ulf.hansson@linaro.org>
6086 L:      linux-mmc@vger.kernel.org
6087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6088 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
6089 S:      Maintained
6090 F:      drivers/mmc/
6091 F:      include/linux/mmc/
6092 F:      include/uapi/linux/mmc/
6093
6094 MULTIMEDIA CARD (MMC) ETC. OVER SPI
6095 S:      Orphan
6096 F:      drivers/mmc/host/mmc_spi.c
6097 F:      include/linux/spi/mmc_spi.h
6098
6099 MULTISOUND SOUND DRIVER
6100 M:      Andrew Veliath <andrewtv@usa.net>
6101 S:      Maintained
6102 F:      Documentation/sound/oss/MultiSound
6103 F:      sound/oss/msnd*
6104
6105 MULTITECH MULTIPORT CARD (ISICOM)
6106 S:      Orphan
6107 F:      drivers/tty/isicom.c
6108 F:      include/linux/isicom.h
6109
6110 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
6111 M:      Felipe Balbi <balbi@ti.com>
6112 L:      linux-usb@vger.kernel.org
6113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6114 S:      Maintained
6115 F:      drivers/usb/musb/
6116
6117 MXL5007T MEDIA DRIVER
6118 M:      Michael Krufky <mkrufky@linuxtv.org>
6119 L:      linux-media@vger.kernel.org
6120 W:      http://linuxtv.org/
6121 W:      http://github.com/mkrufky
6122 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6123 T:      git git://linuxtv.org/mkrufky/tuners.git
6124 S:      Maintained
6125 F:      drivers/media/tuners/mxl5007t.*
6126
6127 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
6128 M:      Hyong-Youb Kim <hykim@myri.com>
6129 L:      netdev@vger.kernel.org
6130 W:      https://www.myricom.com/support/downloads/myri10ge.html
6131 S:      Supported
6132 F:      drivers/net/ethernet/myricom/myri10ge/
6133
6134 NATSEMI ETHERNET DRIVER (DP8381x)
6135 S:      Orphan
6136 F:      drivers/net/ethernet/natsemi/natsemi.c
6137
6138 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
6139 M:      Daniel Mack <zonque@gmail.com>
6140 S:      Maintained
6141 L:      alsa-devel@alsa-project.org
6142 W:      http://www.native-instruments.com
6143 F:      sound/usb/caiaq/
6144
6145 NCP FILESYSTEM
6146 M:      Petr Vandrovec <petr@vandrovec.name>
6147 S:      Odd Fixes
6148 F:      fs/ncpfs/
6149
6150 NCR 5380 SCSI DRIVERS
6151 M:      Finn Thain <fthain@telegraphics.com.au>
6152 M:      Michael Schmitz <schmitzmic@gmail.com>
6153 L:      linux-scsi@vger.kernel.org
6154 S:      Maintained
6155 F:      Documentation/scsi/g_NCR5380.txt
6156 F:      drivers/scsi/NCR5380.*
6157 F:      drivers/scsi/arm/cumana_1.c
6158 F:      drivers/scsi/arm/oak.c
6159 F:      drivers/scsi/atari_NCR5380.c
6160 F:      drivers/scsi/atari_scsi.*
6161 F:      drivers/scsi/dmx3191d.c
6162 F:      drivers/scsi/dtc.*
6163 F:      drivers/scsi/g_NCR5380.*
6164 F:      drivers/scsi/g_NCR5380_mmio.c
6165 F:      drivers/scsi/mac_scsi.*
6166 F:      drivers/scsi/pas16.*
6167 F:      drivers/scsi/sun3_NCR5380.c
6168 F:      drivers/scsi/sun3_scsi.*
6169 F:      drivers/scsi/sun3_scsi_vme.c
6170 F:      drivers/scsi/t128.*
6171
6172 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
6173 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6174 L:      linux-scsi@vger.kernel.org
6175 S:      Maintained
6176 F:      drivers/scsi/NCR_D700.*
6177
6178 NCT6775 HARDWARE MONITOR DRIVER
6179 M:      Guenter Roeck <linux@roeck-us.net>
6180 L:      lm-sensors@lm-sensors.org
6181 S:      Maintained
6182 F:      Documentation/hwmon/nct6775
6183 F:      drivers/hwmon/nct6775.c
6184
6185 NETEFFECT IWARP RNIC DRIVER (IW_NES)
6186 M:      Faisal Latif <faisal.latif@intel.com>
6187 L:      linux-rdma@vger.kernel.org
6188 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
6189 S:      Supported
6190 F:      drivers/infiniband/hw/nes/
6191
6192 NETEM NETWORK EMULATOR
6193 M:      Stephen Hemminger <stephen@networkplumber.org>
6194 L:      netem@lists.linux-foundation.org
6195 S:      Maintained
6196 F:      net/sched/sch_netem.c
6197
6198 NETERION 10GbE DRIVERS (s2io/vxge)
6199 M:      Jon Mason <jdmason@kudzu.us>
6200 L:      netdev@vger.kernel.org
6201 S:      Supported
6202 F:      Documentation/networking/s2io.txt
6203 F:      Documentation/networking/vxge.txt
6204 F:      drivers/net/ethernet/neterion/
6205
6206 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
6207 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6208 M:      Patrick McHardy <kaber@trash.net>
6209 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
6210 L:      netfilter-devel@vger.kernel.org
6211 L:      coreteam@netfilter.org
6212 W:      http://www.netfilter.org/
6213 W:      http://www.iptables.org/
6214 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
6215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
6216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
6217 S:      Supported
6218 F:      include/linux/netfilter*
6219 F:      include/linux/netfilter/
6220 F:      include/net/netfilter/
6221 F:      include/uapi/linux/netfilter*
6222 F:      include/uapi/linux/netfilter/
6223 F:      net/*/netfilter.c
6224 F:      net/*/netfilter/
6225 F:      net/netfilter/
6226
6227 NETLABEL
6228 M:      Paul Moore <paul@paul-moore.com>
6229 W:      http://netlabel.sf.net
6230 L:      netdev@vger.kernel.org
6231 S:      Maintained
6232 F:      Documentation/netlabel/
6233 F:      include/net/netlabel.h
6234 F:      net/netlabel/
6235
6236 NETROM NETWORK LAYER
6237 M:      Ralf Baechle <ralf@linux-mips.org>
6238 L:      linux-hams@vger.kernel.org
6239 W:      http://www.linux-ax25.org/
6240 S:      Maintained
6241 F:      include/net/netrom.h
6242 F:      include/uapi/linux/netrom.h
6243 F:      net/netrom/
6244
6245 NETWORK BLOCK DEVICE (NBD)
6246 M:      Paul Clements <Paul.Clements@steeleye.com>
6247 S:      Maintained
6248 L:      nbd-general@lists.sourceforge.net
6249 F:      Documentation/blockdev/nbd.txt
6250 F:      drivers/block/nbd.c
6251 F:      include/linux/nbd.h
6252 F:      include/uapi/linux/nbd.h
6253
6254 NETWORK DROP MONITOR
6255 M:      Neil Horman <nhorman@tuxdriver.com>
6256 L:      netdev@vger.kernel.org
6257 S:      Maintained
6258 W:      https://fedorahosted.org/dropwatch/
6259 F:      net/core/drop_monitor.c
6260
6261 NETWORKING [GENERAL]
6262 M:      "David S. Miller" <davem@davemloft.net>
6263 L:      netdev@vger.kernel.org
6264 W:      http://www.linuxfoundation.org/en/Net
6265 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6268 S:      Maintained
6269 F:      net/
6270 F:      include/net/
6271 F:      include/linux/in.h
6272 F:      include/linux/net.h
6273 F:      include/linux/netdevice.h
6274 F:      include/uapi/linux/in.h
6275 F:      include/uapi/linux/net.h
6276 F:      include/uapi/linux/netdevice.h
6277 F:      tools/net/
6278 F:      tools/testing/selftests/net/
6279 F:      lib/random32.c
6280 F:      lib/test_bpf.c
6281
6282 NETWORKING [IPv4/IPv6]
6283 M:      "David S. Miller" <davem@davemloft.net>
6284 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
6285 M:      James Morris <jmorris@namei.org>
6286 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
6287 M:      Patrick McHardy <kaber@trash.net>
6288 L:      netdev@vger.kernel.org
6289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6290 S:      Maintained
6291 F:      net/ipv4/
6292 F:      net/ipv6/
6293 F:      include/net/ip*
6294 F:      arch/x86/net/*
6295
6296 NETWORKING [IPSEC]
6297 M:      Steffen Klassert <steffen.klassert@secunet.com>
6298 M:      Herbert Xu <herbert@gondor.apana.org.au>
6299 M:      "David S. Miller" <davem@davemloft.net>
6300 L:      netdev@vger.kernel.org
6301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
6302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
6303 S:      Maintained
6304 F:      net/core/flow.c
6305 F:      net/xfrm/
6306 F:      net/key/
6307 F:      net/ipv4/xfrm*
6308 F:      net/ipv4/esp4.c
6309 F:      net/ipv4/ah4.c
6310 F:      net/ipv4/ipcomp.c
6311 F:      net/ipv4/ip_vti.c
6312 F:      net/ipv6/xfrm*
6313 F:      net/ipv6/esp6.c
6314 F:      net/ipv6/ah6.c
6315 F:      net/ipv6/ipcomp6.c
6316 F:      net/ipv6/ip6_vti.c
6317 F:      include/uapi/linux/xfrm.h
6318 F:      include/net/xfrm.h
6319
6320 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
6321 M:      Paul Moore <paul@paul-moore.com>
6322 L:      netdev@vger.kernel.org
6323 S:      Maintained
6324
6325 NETWORKING [WIRELESS]
6326 M:      "John W. Linville" <linville@tuxdriver.com>
6327 L:      linux-wireless@vger.kernel.org
6328 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
6329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
6330 S:      Maintained
6331 F:      net/mac80211/
6332 F:      net/rfkill/
6333 F:      net/wireless/
6334 F:      include/net/ieee80211*
6335 F:      include/linux/wireless.h
6336 F:      include/uapi/linux/wireless.h
6337 F:      include/net/iw_handler.h
6338 F:      drivers/net/wireless/
6339
6340 NETWORKING DRIVERS
6341 L:      netdev@vger.kernel.org
6342 W:      http://www.linuxfoundation.org/en/Net
6343 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6346 S:      Odd Fixes
6347 F:      drivers/net/
6348 F:      include/linux/if_*
6349 F:      include/linux/netdevice.h
6350 F:      include/linux/arcdevice.h
6351 F:      include/linux/etherdevice.h
6352 F:      include/linux/fcdevice.h
6353 F:      include/linux/fddidevice.h
6354 F:      include/linux/hippidevice.h
6355 F:      include/linux/inetdevice.h
6356 F:      include/uapi/linux/if_*
6357 F:      include/uapi/linux/netdevice.h
6358
6359 NETXEN (1/10) GbE SUPPORT
6360 M:      Manish Chopra <manish.chopra@qlogic.com>
6361 M:      Sony Chacko <sony.chacko@qlogic.com>
6362 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
6363 L:      netdev@vger.kernel.org
6364 W:      http://www.qlogic.com
6365 S:      Supported
6366 F:      drivers/net/ethernet/qlogic/netxen/
6367
6368 NFC SUBSYSTEM
6369 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6370 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
6371 M:      Samuel Ortiz <sameo@linux.intel.com>
6372 L:      linux-wireless@vger.kernel.org
6373 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
6374 S:      Supported
6375 F:      net/nfc/
6376 F:      include/net/nfc/
6377 F:      include/uapi/linux/nfc.h
6378 F:      drivers/nfc/
6379 F:      include/linux/platform_data/pn544.h
6380 F:      Documentation/devicetree/bindings/net/nfc/
6381
6382 NFS, SUNRPC, AND LOCKD CLIENTS
6383 M:      Trond Myklebust <trond.myklebust@primarydata.com>
6384 L:      linux-nfs@vger.kernel.org
6385 W:      http://client.linux-nfs.org
6386 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
6387 S:      Maintained
6388 F:      fs/lockd/
6389 F:      fs/nfs/
6390 F:      fs/nfs_common/
6391 F:      net/sunrpc/
6392 F:      include/linux/lockd/
6393 F:      include/linux/nfs*
6394 F:      include/linux/sunrpc/
6395 F:      include/uapi/linux/nfs*
6396 F:      include/uapi/linux/sunrpc/
6397
6398 NILFS2 FILESYSTEM
6399 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
6400 L:      linux-nilfs@vger.kernel.org
6401 W:      http://nilfs.sourceforge.net/
6402 T:      git git://github.com/konis/nilfs2.git
6403 S:      Supported
6404 F:      Documentation/filesystems/nilfs2.txt
6405 F:      fs/nilfs2/
6406 F:      include/linux/nilfs2_fs.h
6407
6408 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
6409 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6410 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6411 S:      Maintained
6412 F:      Documentation/scsi/NinjaSCSI.txt
6413 F:      drivers/scsi/pcmcia/nsp_*
6414
6415 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
6416 M:      GOTO Masanori <gotom@debian.or.jp>
6417 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6418 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6419 S:      Maintained
6420 F:      Documentation/scsi/NinjaSCSI.txt
6421 F:      drivers/scsi/nsp32*
6422
6423 NTB DRIVER
6424 M:      Jon Mason <jdmason@kudzu.us>
6425 M:      Dave Jiang <dave.jiang@intel.com>
6426 S:      Supported
6427 W:      https://github.com/jonmason/ntb/wiki
6428 T:      git git://github.com/jonmason/ntb.git
6429 F:      drivers/ntb/
6430 F:      drivers/net/ntb_netdev.c
6431 F:      include/linux/ntb.h
6432
6433 NTFS FILESYSTEM
6434 M:      Anton Altaparmakov <anton@tuxera.com>
6435 L:      linux-ntfs-dev@lists.sourceforge.net
6436 W:      http://www.tuxera.com/
6437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
6438 S:      Supported
6439 F:      Documentation/filesystems/ntfs.txt
6440 F:      fs/ntfs/
6441
6442 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
6443 M:      Antonino Daplas <adaplas@gmail.com>
6444 L:      linux-fbdev@vger.kernel.org
6445 S:      Maintained
6446 F:      drivers/video/fbdev/riva/
6447 F:      drivers/video/fbdev/nvidia/
6448
6449 NVM EXPRESS DRIVER
6450 M:      Matthew Wilcox <willy@linux.intel.com>
6451 L:      linux-nvme@lists.infradead.org
6452 T:      git git://git.infradead.org/users/willy/linux-nvme.git
6453 S:      Supported
6454 F:      drivers/block/nvme*
6455 F:      include/linux/nvme.h
6456
6457 NXP TDA998X DRM DRIVER
6458 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6459 S:      Supported
6460 F:      drivers/gpu/drm/i2c/tda998x_drv.c
6461 F:      include/drm/i2c/tda998x.h
6462
6463 OMAP SUPPORT
6464 M:      Tony Lindgren <tony@atomide.com>
6465 L:      linux-omap@vger.kernel.org
6466 W:      http://www.muru.com/linux/omap/
6467 W:      http://linux.omap.com/
6468 Q:      http://patchwork.kernel.org/project/linux-omap/list/
6469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
6470 S:      Maintained
6471 F:      arch/arm/*omap*/
6472 F:      drivers/i2c/busses/i2c-omap.c
6473 F:      include/linux/i2c-omap.h
6474
6475 OMAP DEVICE TREE SUPPORT
6476 M:      Benoît Cousson <bcousson@baylibre.com>
6477 M:      Tony Lindgren <tony@atomide.com>
6478 L:      linux-omap@vger.kernel.org
6479 L:      devicetree@vger.kernel.org
6480 S:      Maintained
6481 F:      arch/arm/boot/dts/*omap*
6482 F:      arch/arm/boot/dts/*am3*
6483
6484 OMAP CLOCK FRAMEWORK SUPPORT
6485 M:      Paul Walmsley <paul@pwsan.com>
6486 L:      linux-omap@vger.kernel.org
6487 S:      Maintained
6488 F:      arch/arm/*omap*/*clock*
6489
6490 OMAP POWER MANAGEMENT SUPPORT
6491 M:      Kevin Hilman <khilman@deeprootsystems.com>
6492 L:      linux-omap@vger.kernel.org
6493 S:      Maintained
6494 F:      arch/arm/*omap*/*pm*
6495 F:      drivers/cpufreq/omap-cpufreq.c
6496
6497 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
6498 M:      Rajendra Nayak <rnayak@ti.com>
6499 M:      Paul Walmsley <paul@pwsan.com>
6500 L:      linux-omap@vger.kernel.org
6501 S:      Maintained
6502 F:      arch/arm/mach-omap2/prm*
6503
6504 OMAP AUDIO SUPPORT
6505 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
6506 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
6507 L:      alsa-devel@alsa-project.org (subscribers-only)
6508 L:      linux-omap@vger.kernel.org
6509 S:      Maintained
6510 F:      sound/soc/omap/
6511
6512 OMAP FRAMEBUFFER SUPPORT
6513 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
6514 L:      linux-fbdev@vger.kernel.org
6515 L:      linux-omap@vger.kernel.org
6516 S:      Maintained
6517 F:      drivers/video/fbdev/omap/
6518
6519 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
6520 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
6521 L:      linux-omap@vger.kernel.org
6522 L:      linux-fbdev@vger.kernel.org
6523 S:      Maintained
6524 F:      drivers/video/fbdev/omap2/
6525 F:      Documentation/arm/OMAP/DSS
6526
6527 OMAP HARDWARE SPINLOCK SUPPORT
6528 M:      Ohad Ben-Cohen <ohad@wizery.com>
6529 L:      linux-omap@vger.kernel.org
6530 S:      Maintained
6531 F:      drivers/hwspinlock/omap_hwspinlock.c
6532 F:      arch/arm/mach-omap2/hwspinlock.c
6533
6534 OMAP MMC SUPPORT
6535 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
6536 L:      linux-omap@vger.kernel.org
6537 S:      Maintained
6538 F:      drivers/mmc/host/omap.c
6539
6540 OMAP HS MMC SUPPORT
6541 M:      Balaji T K <balajitk@ti.com>
6542 L:      linux-mmc@vger.kernel.org
6543 L:      linux-omap@vger.kernel.org
6544 S:      Maintained
6545 F:      drivers/mmc/host/omap_hsmmc.c
6546
6547 OMAP RANDOM NUMBER GENERATOR SUPPORT
6548 M:      Deepak Saxena <dsaxena@plexity.net>
6549 S:      Maintained
6550 F:      drivers/char/hw_random/omap-rng.c
6551
6552 OMAP HWMOD SUPPORT
6553 M:      Benoît Cousson <bcousson@baylibre.com>
6554 M:      Paul Walmsley <paul@pwsan.com>
6555 L:      linux-omap@vger.kernel.org
6556 S:      Maintained
6557 F:      arch/arm/mach-omap2/omap_hwmod.*
6558
6559 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
6560 M:      Benoît Cousson <bcousson@baylibre.com>
6561 L:      linux-omap@vger.kernel.org
6562 S:      Maintained
6563 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
6564
6565 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
6566 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6567 L:      linux-media@vger.kernel.org
6568 S:      Maintained
6569 F:      drivers/media/platform/omap3isp/
6570 F:      drivers/staging/media/omap4iss/
6571
6572 OMAP USB SUPPORT
6573 M:      Felipe Balbi <balbi@ti.com>
6574 L:      linux-usb@vger.kernel.org
6575 L:      linux-omap@vger.kernel.org
6576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6577 S:      Maintained
6578 F:      drivers/usb/*/*omap*
6579 F:      arch/arm/*omap*/usb*
6580
6581 OMAP GPIO DRIVER
6582 M:      Javier Martinez Canillas <javier@dowhile0.org>
6583 M:      Santosh Shilimkar <santosh.shilimkar@ti.com>
6584 M:      Kevin Hilman <khilman@deeprootsystems.com>
6585 L:      linux-omap@vger.kernel.org
6586 S:      Maintained
6587 F:      drivers/gpio/gpio-omap.c
6588
6589 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
6590 M:      Mark Jackson <mpfj@newflow.co.uk>
6591 L:      linux-omap@vger.kernel.org
6592 S:      Maintained
6593 F:      arch/arm/boot/dts/am335x-nano.dts
6594
6595 OMFS FILESYSTEM
6596 M:      Bob Copeland <me@bobcopeland.com>
6597 L:      linux-karma-devel@lists.sourceforge.net
6598 S:      Maintained
6599 F:      Documentation/filesystems/omfs.txt
6600 F:      fs/omfs/
6601
6602 OMNIKEY CARDMAN 4000 DRIVER
6603 M:      Harald Welte <laforge@gnumonks.org>
6604 S:      Maintained
6605 F:      drivers/char/pcmcia/cm4000_cs.c
6606 F:      include/linux/cm4000_cs.h
6607 F:      include/uapi/linux/cm4000_cs.h
6608
6609 OMNIKEY CARDMAN 4040 DRIVER
6610 M:      Harald Welte <laforge@gnumonks.org>
6611 S:      Maintained
6612 F:      drivers/char/pcmcia/cm4040_cs.*
6613
6614 OMNIVISION OV7670 SENSOR DRIVER
6615 M:      Jonathan Corbet <corbet@lwn.net>
6616 L:      linux-media@vger.kernel.org
6617 T:      git git://linuxtv.org/media_tree.git
6618 S:      Maintained
6619 F:      drivers/media/i2c/ov7670.c
6620
6621 ONENAND FLASH DRIVER
6622 M:      Kyungmin Park <kyungmin.park@samsung.com>
6623 L:      linux-mtd@lists.infradead.org
6624 S:      Maintained
6625 F:      drivers/mtd/onenand/
6626 F:      include/linux/mtd/onenand*.h
6627
6628 ONSTREAM SCSI TAPE DRIVER
6629 M:      Willem Riede <osst@riede.org>
6630 L:      osst-users@lists.sourceforge.net
6631 L:      linux-scsi@vger.kernel.org
6632 S:      Maintained
6633 F:      Documentation/scsi/osst.txt
6634 F:      drivers/scsi/osst.*
6635 F:      drivers/scsi/osst_*.h
6636 F:      drivers/scsi/st.h
6637
6638 OPENCORES I2C BUS DRIVER
6639 M:      Peter Korsgaard <jacmet@sunsite.dk>
6640 L:      linux-i2c@vger.kernel.org
6641 S:      Maintained
6642 F:      Documentation/i2c/busses/i2c-ocores
6643 F:      drivers/i2c/busses/i2c-ocores.c
6644
6645 OPEN FIRMWARE AND FLATTENED DEVICE TREE
6646 M:      Grant Likely <grant.likely@linaro.org>
6647 M:      Rob Herring <robh+dt@kernel.org>
6648 L:      devicetree@vger.kernel.org
6649 W:      http://fdt.secretlab.ca
6650 T:      git git://git.secretlab.ca/git/linux-2.6.git
6651 S:      Maintained
6652 F:      drivers/of/
6653 F:      include/linux/of*.h
6654 F:      scripts/dtc/
6655 K:      of_get_property
6656 K:      of_match_table
6657
6658 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
6659 M:      Rob Herring <robh+dt@kernel.org>
6660 M:      Pawel Moll <pawel.moll@arm.com>
6661 M:      Mark Rutland <mark.rutland@arm.com>
6662 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
6663 M:      Kumar Gala <galak@codeaurora.org>
6664 L:      devicetree@vger.kernel.org
6665 S:      Maintained
6666 F:      Documentation/devicetree/
6667 F:      arch/*/boot/dts/
6668 F:      include/dt-bindings/
6669
6670 OPENRISC ARCHITECTURE
6671 M:      Jonas Bonn <jonas@southpole.se>
6672 W:      http://openrisc.net
6673 L:      linux@lists.openrisc.net (moderated for non-subscribers)
6674 S:      Maintained
6675 T:      git git://openrisc.net/~jonas/linux
6676 F:      arch/openrisc/
6677
6678 OPENVSWITCH
6679 M:      Pravin Shelar <pshelar@nicira.com>
6680 L:      dev@openvswitch.org
6681 W:      http://openvswitch.org
6682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pshelar/openvswitch.git
6683 S:      Maintained
6684 F:      net/openvswitch/
6685
6686 OPL4 DRIVER
6687 M:      Clemens Ladisch <clemens@ladisch.de>
6688 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6689 T:      git git://git.alsa-project.org/alsa-kernel.git
6690 S:      Maintained
6691 F:      sound/drivers/opl4/
6692
6693 OPROFILE
6694 M:      Robert Richter <rric@kernel.org>
6695 L:      oprofile-list@lists.sf.net
6696 S:      Maintained
6697 F:      arch/*/include/asm/oprofile*.h
6698 F:      arch/*/oprofile/
6699 F:      drivers/oprofile/
6700 F:      include/linux/oprofile.h
6701
6702 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
6703 M:      Mark Fasheh <mfasheh@suse.com>
6704 M:      Joel Becker <jlbec@evilplan.org>
6705 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
6706 W:      http://oss.oracle.com/projects/ocfs2/
6707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
6708 S:      Supported
6709 F:      Documentation/filesystems/ocfs2.txt
6710 F:      Documentation/filesystems/dlmfs.txt
6711 F:      fs/ocfs2/
6712
6713 ORINOCO DRIVER
6714 L:      linux-wireless@vger.kernel.org
6715 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
6716 W:      http://www.nongnu.org/orinoco/
6717 S:      Orphan
6718 F:      drivers/net/wireless/orinoco/
6719
6720 OSD LIBRARY and FILESYSTEM
6721 M:      Boaz Harrosh <bharrosh@panasas.com>
6722 M:      Benny Halevy <bhalevy@primarydata.com>
6723 L:      osd-dev@open-osd.org
6724 W:      http://open-osd.org
6725 T:      git git://git.open-osd.org/open-osd.git
6726 S:      Maintained
6727 F:      drivers/scsi/osd/
6728 F:      include/scsi/osd_*
6729 F:      fs/exofs/
6730
6731 P54 WIRELESS DRIVER
6732 M:      Christian Lamparter <chunkeey@googlemail.com>
6733 L:      linux-wireless@vger.kernel.org
6734 W:      http://wireless.kernel.org/en/users/Drivers/p54
6735 S:      Maintained
6736 F:      drivers/net/wireless/p54/
6737
6738 PA SEMI ETHERNET DRIVER
6739 M:      Olof Johansson <olof@lixom.net>
6740 L:      netdev@vger.kernel.org
6741 S:      Maintained
6742 F:      drivers/net/ethernet/pasemi/*
6743
6744 PA SEMI SMBUS DRIVER
6745 M:      Olof Johansson <olof@lixom.net>
6746 L:      linux-i2c@vger.kernel.org
6747 S:      Maintained
6748 F:      drivers/i2c/busses/i2c-pasemi.c
6749
6750 PADATA PARALLEL EXECUTION MECHANISM
6751 M:      Steffen Klassert <steffen.klassert@secunet.com>
6752 L:      linux-crypto@vger.kernel.org
6753 S:      Maintained
6754 F:      kernel/padata.c
6755 F:      include/linux/padata.h
6756 F:      Documentation/padata.txt
6757
6758 PANASONIC LAPTOP ACPI EXTRAS DRIVER
6759 M:      Harald Welte <laforge@gnumonks.org>
6760 L:      platform-driver-x86@vger.kernel.org
6761 S:      Maintained
6762 F:      drivers/platform/x86/panasonic-laptop.c
6763
6764 PANASONIC MN10300/AM33/AM34 PORT
6765 M:      David Howells <dhowells@redhat.com>
6766 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
6767 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
6768 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6769 S:      Maintained
6770 F:      Documentation/mn10300/
6771 F:      arch/mn10300/
6772
6773 PARALLEL PORT SUPPORT
6774 L:      linux-parport@lists.infradead.org (subscribers-only)
6775 S:      Orphan
6776 F:      drivers/parport/
6777 F:      include/linux/parport*.h
6778 F:      drivers/char/ppdev.c
6779 F:      include/uapi/linux/ppdev.h
6780
6781 PARAVIRT_OPS INTERFACE
6782 M:      Jeremy Fitzhardinge <jeremy@goop.org>
6783 M:      Chris Wright <chrisw@sous-sol.org>
6784 M:      Alok Kataria <akataria@vmware.com>
6785 M:      Rusty Russell <rusty@rustcorp.com.au>
6786 L:      virtualization@lists.linux-foundation.org
6787 S:      Supported
6788 F:      Documentation/ia64/paravirt_ops.txt
6789 F:      arch/*/kernel/paravirt*
6790 F:      arch/*/include/asm/paravirt.h
6791
6792 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
6793 M:      Tim Waugh <tim@cyberelk.net>
6794 L:      linux-parport@lists.infradead.org (subscribers-only)
6795 W:      http://www.torque.net/linux-pp.html
6796 S:      Maintained
6797 F:      Documentation/blockdev/paride.txt
6798 F:      drivers/block/paride/
6799
6800 PARISC ARCHITECTURE
6801 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
6802 M:      Helge Deller <deller@gmx.de>
6803 L:      linux-parisc@vger.kernel.org
6804 W:      http://www.parisc-linux.org/
6805 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
6806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
6807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
6808 S:      Maintained
6809 F:      arch/parisc/
6810 F:      Documentation/parisc/
6811 F:      drivers/parisc/
6812 F:      drivers/char/agp/parisc-agp.c
6813 F:      drivers/input/serio/gscps2.c
6814 F:      drivers/parport/parport_gsc.*
6815 F:      drivers/tty/serial/8250/8250_gsc.c
6816 F:      drivers/video/fbdev/sti*
6817 F:      drivers/video/console/sti*
6818 F:      drivers/video/logo/logo_parisc*
6819
6820 PC87360 HARDWARE MONITORING DRIVER
6821 M:      Jim Cromie <jim.cromie@gmail.com>
6822 L:      lm-sensors@lm-sensors.org
6823 S:      Maintained
6824 F:      Documentation/hwmon/pc87360
6825 F:      drivers/hwmon/pc87360.c
6826
6827 PC8736x GPIO DRIVER
6828 M:      Jim Cromie <jim.cromie@gmail.com>
6829 S:      Maintained
6830 F:      drivers/char/pc8736x_gpio.c
6831
6832 PC87427 HARDWARE MONITORING DRIVER
6833 M:      Jean Delvare <jdelvare@suse.de>
6834 L:      lm-sensors@lm-sensors.org
6835 S:      Maintained
6836 F:      Documentation/hwmon/pc87427
6837 F:      drivers/hwmon/pc87427.c
6838
6839 PCA9532 LED DRIVER
6840 M:      Riku Voipio <riku.voipio@iki.fi>
6841 S:      Maintained
6842 F:      drivers/leds/leds-pca9532.c
6843 F:      include/linux/leds-pca9532.h
6844
6845 PCA9541 I2C BUS MASTER SELECTOR DRIVER
6846 M:      Guenter Roeck <linux@roeck-us.net>
6847 L:      linux-i2c@vger.kernel.org
6848 S:      Maintained
6849 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
6850
6851 PCDP - PRIMARY CONSOLE AND DEBUG PORT
6852 M:      Khalid Aziz <khalid@gonehiking.org>
6853 S:      Maintained
6854 F:      drivers/firmware/pcdp.*
6855
6856 PCI ERROR RECOVERY
6857 M:      Linas Vepstas <linasvepstas@gmail.com>
6858 L:      linux-pci@vger.kernel.org
6859 S:      Supported
6860 F:      Documentation/PCI/pci-error-recovery.txt
6861
6862 PCI SUBSYSTEM
6863 M:      Bjorn Helgaas <bhelgaas@google.com>
6864 L:      linux-pci@vger.kernel.org
6865 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
6866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
6867 S:      Supported
6868 F:      Documentation/PCI/
6869 F:      drivers/pci/
6870 F:      include/linux/pci*
6871 F:      arch/x86/pci/
6872 F:      arch/x86/kernel/quirks.c
6873
6874 PCI DRIVER FOR IMX6
6875 M:      Richard Zhu <r65037@freescale.com>
6876 M:      Lucas Stach <l.stach@pengutronix.de>
6877 L:      linux-pci@vger.kernel.org
6878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6879 S:      Maintained
6880 F:      drivers/pci/host/*imx6*
6881
6882 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
6883 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6884 M:      Jason Cooper <jason@lakedaemon.net>
6885 L:      linux-pci@vger.kernel.org
6886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6887 S:      Maintained
6888 F:      drivers/pci/host/*mvebu*
6889
6890 PCI DRIVER FOR NVIDIA TEGRA
6891 M:      Thierry Reding <thierry.reding@gmail.com>
6892 L:      linux-tegra@vger.kernel.org
6893 L:      linux-pci@vger.kernel.org
6894 S:      Supported
6895 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
6896 F:      drivers/pci/host/pci-tegra.c
6897
6898 PCI DRIVER FOR TI DRA7XX
6899 M:      Kishon Vijay Abraham I <kishon@ti.com>
6900 L:      linux-omap@vger.kernel.org
6901 L:      linux-pci@vger.kernel.org
6902 S:      Supported
6903 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
6904 F:      drivers/pci/host/pci-dra7xx.c
6905
6906 PCI DRIVER FOR RENESAS R-CAR
6907 M:      Simon Horman <horms@verge.net.au>
6908 L:      linux-pci@vger.kernel.org
6909 L:      linux-sh@vger.kernel.org
6910 S:      Maintained
6911 F:      drivers/pci/host/*rcar*
6912
6913 PCI DRIVER FOR SAMSUNG EXYNOS
6914 M:      Jingoo Han <jg1.han@samsung.com>
6915 L:      linux-pci@vger.kernel.org
6916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6917 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6918 S:      Maintained
6919 F:      drivers/pci/host/pci-exynos.c
6920
6921 PCI DRIVER FOR SYNOPSIS DESIGNWARE
6922 M:      Mohit Kumar <mohit.kumar@st.com>
6923 M:      Jingoo Han <jg1.han@samsung.com>
6924 L:      linux-pci@vger.kernel.org
6925 S:      Maintained
6926 F:      drivers/pci/host/*designware*
6927
6928 PCI DRIVER FOR GENERIC OF HOSTS
6929 M:      Will Deacon <will.deacon@arm.com>
6930 L:      linux-pci@vger.kernel.org
6931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6932 S:      Maintained
6933 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
6934 F:      drivers/pci/host/pci-host-generic.c
6935
6936 PCIE DRIVER FOR ST SPEAR13XX
6937 M:      Mohit Kumar <mohit.kumar@st.com>
6938 L:      linux-pci@vger.kernel.org
6939 S:      Maintained
6940 F:      drivers/pci/host/*spear*
6941
6942 PCMCIA SUBSYSTEM
6943 P:      Linux PCMCIA Team
6944 L:      linux-pcmcia@lists.infradead.org
6945 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
6946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
6947 S:      Maintained
6948 F:      Documentation/pcmcia/
6949 F:      drivers/pcmcia/
6950 F:      include/pcmcia/
6951
6952 PCNET32 NETWORK DRIVER
6953 M:      Don Fry <pcnet32@frontier.com>
6954 L:      netdev@vger.kernel.org
6955 S:      Maintained
6956 F:      drivers/net/ethernet/amd/pcnet32.c
6957
6958 PCRYPT PARALLEL CRYPTO ENGINE
6959 M:      Steffen Klassert <steffen.klassert@secunet.com>
6960 L:      linux-crypto@vger.kernel.org
6961 S:      Maintained
6962 F:      crypto/pcrypt.c
6963 F:      include/crypto/pcrypt.h
6964
6965 PER-CPU MEMORY ALLOCATOR
6966 M:      Tejun Heo <tj@kernel.org>
6967 M:      Christoph Lameter <cl@linux-foundation.org>
6968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6969 S:      Maintained
6970 F:      include/linux/percpu*.h
6971 F:      mm/percpu*.c
6972 F:      arch/*/include/asm/percpu.h
6973
6974 PER-TASK DELAY ACCOUNTING
6975 M:      Balbir Singh <bsingharora@gmail.com>
6976 S:      Maintained
6977 F:      include/linux/delayacct.h
6978 F:      kernel/delayacct.c
6979
6980 PERFORMANCE EVENTS SUBSYSTEM
6981 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
6982 M:      Paul Mackerras <paulus@samba.org>
6983 M:      Ingo Molnar <mingo@redhat.com>
6984 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
6985 L:      linux-kernel@vger.kernel.org
6986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
6987 S:      Supported
6988 F:      kernel/events/*
6989 F:      include/linux/perf_event.h
6990 F:      include/uapi/linux/perf_event.h
6991 F:      arch/*/kernel/perf_event*.c
6992 F:      arch/*/kernel/*/perf_event*.c
6993 F:      arch/*/kernel/*/*/perf_event*.c
6994 F:      arch/*/include/asm/perf_event.h
6995 F:      arch/*/kernel/perf_callchain.c
6996 F:      tools/perf/
6997
6998 PERSONALITY HANDLING
6999 M:      Christoph Hellwig <hch@infradead.org>
7000 L:      linux-abi-devel@lists.sourceforge.net
7001 S:      Maintained
7002 F:      include/linux/personality.h
7003 F:      include/uapi/linux/personality.h
7004
7005 PHONET PROTOCOL
7006 M:      Remi Denis-Courmont <courmisch@gmail.com>
7007 S:      Supported
7008 F:      Documentation/networking/phonet.txt
7009 F:      include/linux/phonet.h
7010 F:      include/net/phonet/
7011 F:      include/uapi/linux/phonet.h
7012 F:      net/phonet/
7013
7014 PHRAM MTD DRIVER
7015 M:      Joern Engel <joern@lazybastard.org>
7016 L:      linux-mtd@lists.infradead.org
7017 S:      Maintained
7018 F:      drivers/mtd/devices/phram.c
7019
7020 PICOLCD HID DRIVER
7021 M:      Bruno Prémont <bonbons@linux-vserver.org>
7022 L:      linux-input@vger.kernel.org
7023 S:      Maintained
7024 F:      drivers/hid/hid-picolcd*
7025
7026 PICOXCELL SUPPORT
7027 M:      Jamie Iles <jamie@jamieiles.com>
7028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7029 T:      git git://github.com/jamieiles/linux-2.6-ji.git
7030 S:      Supported
7031 F:      arch/arm/boot/dts/picoxcell*
7032 F:      arch/arm/mach-picoxcell/
7033 F:      drivers/crypto/picoxcell*
7034
7035 PIN CONTROL SUBSYSTEM
7036 M:      Linus Walleij <linus.walleij@linaro.org>
7037 S:      Maintained
7038 F:      drivers/pinctrl/
7039 F:      include/linux/pinctrl/
7040
7041 PIN CONTROLLER - ATMEL AT91
7042 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
7043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7044 S:      Maintained
7045 F:      drivers/pinctrl/pinctrl-at91.c
7046
7047 PIN CONTROLLER - RENESAS
7048 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7049 L:      linux-sh@vger.kernel.org
7050 S:      Maintained
7051 F:      drivers/pinctrl/sh-pfc/
7052
7053 PIN CONTROLLER - SAMSUNG
7054 M:      Tomasz Figa <tomasz.figa@gmail.com>
7055 M:      Thomas Abraham <thomas.abraham@linaro.org>
7056 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7057 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7058 S:      Maintained
7059 F:      drivers/pinctrl/samsung/
7060
7061 PIN CONTROLLER - ST SPEAR
7062 M:      Viresh Kumar <viresh.linux@gmail.com>
7063 L:      spear-devel@list.st.com
7064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7065 W:      http://www.st.com/spear
7066 S:      Maintained
7067 F:      drivers/pinctrl/spear/
7068
7069 PKTCDVD DRIVER
7070 M:      Jiri Kosina <jkosina@suse.cz>
7071 S:      Maintained
7072 F:      drivers/block/pktcdvd.c
7073 F:      include/linux/pktcdvd.h
7074 F:      include/uapi/linux/pktcdvd.h
7075
7076 PKUNITY SOC DRIVERS
7077 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
7078 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
7079 S:      Maintained
7080 T:      git git://github.com/gxt/linux.git
7081 F:      drivers/input/serio/i8042-unicore32io.h
7082 F:      drivers/i2c/busses/i2c-puv3.c
7083 F:      drivers/video/fbdev/fb-puv3.c
7084 F:      drivers/rtc/rtc-puv3.c
7085
7086 PMBUS HARDWARE MONITORING DRIVERS
7087 M:      Guenter Roeck <linux@roeck-us.net>
7088 L:      lm-sensors@lm-sensors.org
7089 W:      http://www.lm-sensors.org/
7090 W:      http://www.roeck-us.net/linux/drivers/
7091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7092 S:      Maintained
7093 F:      Documentation/hwmon/pmbus
7094 F:      drivers/hwmon/pmbus/
7095 F:      include/linux/i2c/pmbus.h
7096
7097 PMC SIERRA MaxRAID DRIVER
7098 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
7099 L:      linux-scsi@vger.kernel.org
7100 W:      http://www.pmc-sierra.com/
7101 S:      Supported
7102 F:      drivers/scsi/pmcraid.*
7103
7104 PMC SIERRA PM8001 DRIVER
7105 M:      xjtuwjp@gmail.com
7106 M:      lindar_liu@usish.com
7107 L:      pmchba@pmcs.com
7108 L:      linux-scsi@vger.kernel.org
7109 S:      Supported
7110 F:      drivers/scsi/pm8001/
7111
7112 POSIX CLOCKS and TIMERS
7113 M:      Thomas Gleixner <tglx@linutronix.de>
7114 L:      linux-kernel@vger.kernel.org
7115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7116 S:      Maintained
7117 F:      fs/timerfd.c
7118 F:      include/linux/timer*
7119 F:      kernel/time/*timer*
7120
7121 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
7122 M:      Sebastian Reichel <sre@kernel.org>
7123 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
7124 M:      David Woodhouse <dwmw2@infradead.org>
7125 L:      linux-pm@vger.kernel.org
7126 T:      git git://git.infradead.org/battery-2.6.git
7127 S:      Maintained
7128 F:      include/linux/power_supply.h
7129 F:      drivers/power/
7130
7131 PNP SUPPORT
7132 M:      Rafael J. Wysocki <rafael.j.wysocki@intel.com>
7133 S:      Maintained
7134 F:      drivers/pnp/
7135
7136 PNXxxxx I2C DRIVER
7137 M:      Vitaly Wool <vitalywool@gmail.com>
7138 L:      linux-i2c@vger.kernel.org
7139 S:      Maintained
7140 F:      drivers/i2c/busses/i2c-pnx.c
7141
7142 PPP PROTOCOL DRIVERS AND COMPRESSORS
7143 M:      Paul Mackerras <paulus@samba.org>
7144 L:      linux-ppp@vger.kernel.org
7145 S:      Maintained
7146 F:      drivers/net/ppp/ppp_*
7147
7148 PPP OVER ATM (RFC 2364)
7149 M:      Mitchell Blank Jr <mitch@sfgoth.com>
7150 S:      Maintained
7151 F:      net/atm/pppoatm.c
7152 F:      include/uapi/linux/atmppp.h
7153
7154 PPP OVER ETHERNET
7155 M:      Michal Ostrowski <mostrows@earthlink.net>
7156 S:      Maintained
7157 F:      drivers/net/ppp/pppoe.c
7158 F:      drivers/net/ppp/pppox.c
7159
7160 PPP OVER L2TP
7161 M:      James Chapman <jchapman@katalix.com>
7162 S:      Maintained
7163 F:      net/l2tp/l2tp_ppp.c
7164 F:      include/linux/if_pppol2tp.h
7165 F:      include/uapi/linux/if_pppol2tp.h
7166
7167 PPS SUPPORT
7168 M:      Rodolfo Giometti <giometti@enneenne.com>
7169 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
7170 L:      linuxpps@ml.enneenne.com (subscribers-only)
7171 S:      Maintained
7172 F:      Documentation/pps/
7173 F:      drivers/pps/
7174 F:      include/linux/pps*.h
7175
7176 PPTP DRIVER
7177 M:      Dmitry Kozlov <xeb@mail.ru>
7178 L:      netdev@vger.kernel.org
7179 S:      Maintained
7180 F:      drivers/net/ppp/pptp.c
7181 W:      http://sourceforge.net/projects/accel-pptp
7182
7183 PREEMPTIBLE KERNEL
7184 M:      Robert Love <rml@tech9.net>
7185 L:      kpreempt-tech@lists.sourceforge.net
7186 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
7187 S:      Supported
7188 F:      Documentation/preempt-locking.txt
7189 F:      include/linux/preempt.h
7190
7191 PRISM54 WIRELESS DRIVER
7192 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
7193 L:      linux-wireless@vger.kernel.org
7194 W:      http://wireless.kernel.org/en/users/Drivers/p54
7195 S:      Obsolete
7196 F:      drivers/net/wireless/prism54/
7197
7198 PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
7199 M:      Mikael Pettersson <mikpelinux@gmail.com>
7200 L:      linux-ide@vger.kernel.org
7201 S:      Maintained
7202 F:      drivers/ata/sata_promise.*
7203
7204 PS3 NETWORK SUPPORT
7205 M:      Geoff Levand <geoff@infradead.org>
7206 L:      netdev@vger.kernel.org
7207 L:      cbe-oss-dev@lists.ozlabs.org
7208 S:      Maintained
7209 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
7210
7211 PS3 PLATFORM SUPPORT
7212 M:      Geoff Levand <geoff@infradead.org>
7213 L:      linuxppc-dev@lists.ozlabs.org
7214 L:      cbe-oss-dev@lists.ozlabs.org
7215 S:      Maintained
7216 F:      arch/powerpc/boot/ps3*
7217 F:      arch/powerpc/include/asm/lv1call.h
7218 F:      arch/powerpc/include/asm/ps3*.h
7219 F:      arch/powerpc/platforms/ps3/
7220 F:      drivers/*/ps3*
7221 F:      drivers/ps3/
7222 F:      drivers/rtc/rtc-ps3.c
7223 F:      drivers/usb/host/*ps3.c
7224 F:      sound/ppc/snd_ps3*
7225
7226 PS3VRAM DRIVER
7227 M:      Jim Paris <jim@jtan.com>
7228 L:      cbe-oss-dev@lists.ozlabs.org
7229 S:      Maintained
7230 F:      drivers/block/ps3vram.c
7231
7232 PSTORE FILESYSTEM
7233 M:      Anton Vorontsov <anton@enomsg.org>
7234 M:      Colin Cross <ccross@android.com>
7235 M:      Kees Cook <keescook@chromium.org>
7236 M:      Tony Luck <tony.luck@intel.com>
7237 S:      Maintained
7238 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
7239 F:      fs/pstore/
7240 F:      include/linux/pstore*
7241 F:      drivers/firmware/efi/efi-pstore.c
7242 F:      drivers/acpi/apei/erst.c
7243
7244 PTP HARDWARE CLOCK SUPPORT
7245 M:      Richard Cochran <richardcochran@gmail.com>
7246 L:      netdev@vger.kernel.org
7247 S:      Maintained
7248 W:      http://linuxptp.sourceforge.net/
7249 F:      Documentation/ABI/testing/sysfs-ptp
7250 F:      Documentation/ptp/*
7251 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
7252 F:      drivers/net/phy/dp83640*
7253 F:      drivers/ptp/*
7254 F:      include/linux/ptp_cl*
7255
7256 PTRACE SUPPORT
7257 M:      Roland McGrath <roland@hack.frob.com>
7258 M:      Oleg Nesterov <oleg@redhat.com>
7259 S:      Maintained
7260 F:      include/asm-generic/syscall.h
7261 F:      include/linux/ptrace.h
7262 F:      include/linux/regset.h
7263 F:      include/linux/tracehook.h
7264 F:      include/uapi/linux/ptrace.h
7265 F:      kernel/ptrace.c
7266
7267 PVRUSB2 VIDEO4LINUX DRIVER
7268 M:      Mike Isely <isely@pobox.com>
7269 L:      pvrusb2@isely.net       (subscribers-only)
7270 L:      linux-media@vger.kernel.org
7271 W:      http://www.isely.net/pvrusb2/
7272 T:      git git://linuxtv.org/media_tree.git
7273 S:      Maintained
7274 F:      Documentation/video4linux/README.pvrusb2
7275 F:      drivers/media/usb/pvrusb2/
7276
7277 PWC WEBCAM DRIVER
7278 M:      Hans de Goede <hdegoede@redhat.com>
7279 L:      linux-media@vger.kernel.org
7280 T:      git git://linuxtv.org/media_tree.git
7281 S:      Maintained
7282 F:      drivers/media/usb/pwc/*
7283
7284 PWM SUBSYSTEM
7285 M:      Thierry Reding <thierry.reding@gmail.com>
7286 L:      linux-pwm@vger.kernel.org
7287 S:      Maintained
7288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
7289 F:      Documentation/pwm.txt
7290 F:      Documentation/devicetree/bindings/pwm/
7291 F:      include/linux/pwm.h
7292 F:      drivers/pwm/
7293 F:      drivers/video/backlight/pwm_bl.c
7294 F:      include/linux/pwm_backlight.h
7295
7296 PXA2xx/PXA3xx SUPPORT
7297 M:      Eric Miao <eric.y.miao@gmail.com>
7298 M:      Russell King <linux@arm.linux.org.uk>
7299 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7301 T:      git git://github.com/hzhuang1/linux.git
7302 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
7303 S:      Maintained
7304 F:      arch/arm/mach-pxa/
7305 F:      drivers/pcmcia/pxa2xx*
7306 F:      drivers/spi/spi-pxa2xx*
7307 F:      drivers/usb/gadget/udc/pxa2*
7308 F:      include/sound/pxa2xx-lib.h
7309 F:      sound/arm/pxa*
7310 F:      sound/soc/pxa/
7311
7312 PXA3xx NAND FLASH DRIVER
7313 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
7314 L:      linux-mtd@lists.infradead.org
7315 S:      Maintained
7316 F:      drivers/mtd/nand/pxa3xx_nand.c
7317
7318 MMP SUPPORT
7319 M:      Eric Miao <eric.y.miao@gmail.com>
7320 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7322 T:      git git://github.com/hzhuang1/linux.git
7323 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
7324 S:      Maintained
7325 F:      arch/arm/mach-mmp/
7326
7327 PXA MMCI DRIVER
7328 S:      Orphan
7329
7330 PXA RTC DRIVER
7331 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7332 L:      rtc-linux@googlegroups.com
7333 S:      Maintained
7334
7335 QAT DRIVER
7336 M:      Tadeusz Struk <tadeusz.struk@intel.com>
7337 L:      qat-linux@intel.com
7338 S:      Supported
7339 F:      drivers/crypto/qat/
7340
7341 QIB DRIVER
7342 M:      Mike Marciniszyn <infinipath@intel.com>
7343 L:      linux-rdma@vger.kernel.org
7344 S:      Supported
7345 F:      drivers/infiniband/hw/qib/
7346
7347 QLOGIC QLA1280 SCSI DRIVER
7348 M:      Michael Reed <mdr@sgi.com>
7349 L:      linux-scsi@vger.kernel.org
7350 S:      Maintained
7351 F:      drivers/scsi/qla1280.[ch]
7352
7353 QLOGIC QLA2XXX FC-SCSI DRIVER
7354 M:      qla2xxx-upstream@qlogic.com
7355 L:      linux-scsi@vger.kernel.org
7356 S:      Supported
7357 F:      Documentation/scsi/LICENSE.qla2xxx
7358 F:      drivers/scsi/qla2xxx/
7359
7360 QLOGIC QLA4XXX iSCSI DRIVER
7361 M:      Vikas Chaudhary <vikas.chaudhary@qlogic.com>
7362 M:      iscsi-driver@qlogic.com
7363 L:      linux-scsi@vger.kernel.org
7364 S:      Supported
7365 F:      Documentation/scsi/LICENSE.qla4xxx
7366 F:      drivers/scsi/qla4xxx/
7367
7368 QLOGIC QLA3XXX NETWORK DRIVER
7369 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
7370 M:      Ron Mercer <ron.mercer@qlogic.com>
7371 M:      linux-driver@qlogic.com
7372 L:      netdev@vger.kernel.org
7373 S:      Supported
7374 F:      Documentation/networking/LICENSE.qla3xxx
7375 F:      drivers/net/ethernet/qlogic/qla3xxx.*
7376
7377 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
7378 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
7379 M:      Dept-HSGLinuxNICDev@qlogic.com
7380 L:      netdev@vger.kernel.org
7381 S:      Supported
7382 F:      drivers/net/ethernet/qlogic/qlcnic/
7383
7384 QLOGIC QLGE 10Gb ETHERNET DRIVER
7385 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
7386 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
7387 M:      Ron Mercer <ron.mercer@qlogic.com>
7388 M:      linux-driver@qlogic.com
7389 L:      netdev@vger.kernel.org
7390 S:      Supported
7391 F:      drivers/net/ethernet/qlogic/qlge/
7392
7393 QNX4 FILESYSTEM
7394 M:      Anders Larsen <al@alarsen.net>
7395 W:      http://www.alarsen.net/linux/qnx4fs/
7396 S:      Maintained
7397 F:      fs/qnx4/
7398 F:      include/uapi/linux/qnx4_fs.h
7399 F:      include/uapi/linux/qnxtypes.h
7400
7401 QT1010 MEDIA DRIVER
7402 M:      Antti Palosaari <crope@iki.fi>
7403 L:      linux-media@vger.kernel.org
7404 W:      http://linuxtv.org/
7405 W:      http://palosaari.fi/linux/
7406 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7407 T:      git git://linuxtv.org/anttip/media_tree.git
7408 S:      Maintained
7409 F:      drivers/media/tuners/qt1010*
7410
7411 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
7412 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
7413 L:      linux-wireless@vger.kernel.org
7414 L:      ath9k-devel@lists.ath9k.org
7415 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
7416 S:      Supported
7417 F:      drivers/net/wireless/ath/ath9k/
7418
7419 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
7420 M:      Kalle Valo <kvalo@qca.qualcomm.com>
7421 L:      ath10k@lists.infradead.org
7422 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
7423 T:      git git://github.com/kvalo/ath.git
7424 S:      Supported
7425 F:      drivers/net/wireless/ath/ath10k/
7426
7427 QUALCOMM HEXAGON ARCHITECTURE
7428 M:      Richard Kuo <rkuo@codeaurora.org>
7429 L:      linux-hexagon@vger.kernel.org
7430 S:      Supported
7431 F:      arch/hexagon/
7432
7433 QUALCOMM WCN36XX WIRELESS DRIVER
7434 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
7435 L:      wcn36xx@lists.infradead.org
7436 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
7437 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
7438 S:      Supported
7439 F:      drivers/net/wireless/ath/wcn36xx/
7440
7441 QUICKCAM PARALLEL PORT WEBCAMS
7442 M:      Hans Verkuil <hverkuil@xs4all.nl>
7443 L:      linux-media@vger.kernel.org
7444 T:      git git://linuxtv.org/media_tree.git
7445 W:      http://linuxtv.org
7446 S:      Odd Fixes
7447 F:      drivers/media/parport/*-qcam*
7448
7449 RADOS BLOCK DEVICE (RBD)
7450 M:      Yehuda Sadeh <yehuda@inktank.com>
7451 M:      Sage Weil <sage@inktank.com>
7452 M:      Alex Elder <elder@kernel.org>
7453 M:      ceph-devel@vger.kernel.org
7454 W:      http://ceph.com/
7455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
7456 S:      Supported
7457 F:      drivers/block/rbd.c
7458 F:      drivers/block/rbd_types.h
7459
7460 RADEON FRAMEBUFFER DISPLAY DRIVER
7461 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
7462 L:      linux-fbdev@vger.kernel.org
7463 S:      Maintained
7464 F:      drivers/video/fbdev/aty/radeon*
7465 F:      include/uapi/linux/radeonfb.h
7466
7467 RADIOSHARK RADIO DRIVER
7468 M:      Hans de Goede <hdegoede@redhat.com>
7469 L:      linux-media@vger.kernel.org
7470 T:      git git://linuxtv.org/media_tree.git
7471 S:      Maintained
7472 F:      drivers/media/radio/radio-shark.c
7473
7474 RADIOSHARK2 RADIO DRIVER
7475 M:      Hans de Goede <hdegoede@redhat.com>
7476 L:      linux-media@vger.kernel.org
7477 T:      git git://linuxtv.org/media_tree.git
7478 S:      Maintained
7479 F:      drivers/media/radio/radio-shark2.c
7480 F:      drivers/media/radio/radio-tea5777.c
7481
7482 RAGE128 FRAMEBUFFER DISPLAY DRIVER
7483 M:      Paul Mackerras <paulus@samba.org>
7484 L:      linux-fbdev@vger.kernel.org
7485 S:      Maintained
7486 F:      drivers/video/fbdev/aty/aty128fb.c
7487
7488 RALINK RT2X00 WIRELESS LAN DRIVER
7489 P:      rt2x00 project
7490 M:      Ivo van Doorn <IvDoorn@gmail.com>
7491 M:      Helmut Schaa <helmut.schaa@googlemail.com>
7492 L:      linux-wireless@vger.kernel.org
7493 L:      users@rt2x00.serialmonkey.com (moderated for non-subscribers)
7494 W:      http://rt2x00.serialmonkey.com/
7495 S:      Maintained
7496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
7497 F:      drivers/net/wireless/rt2x00/
7498
7499 RAMDISK RAM BLOCK DEVICE DRIVER
7500 M:      Nick Piggin <npiggin@kernel.dk>
7501 S:      Maintained
7502 F:      Documentation/blockdev/ramdisk.txt
7503 F:      drivers/block/brd.c
7504
7505 RANDOM NUMBER DRIVER
7506 M:      "Theodore Ts'o" <tytso@mit.edu>
7507 S:      Maintained
7508 F:      drivers/char/random.c
7509
7510 RAPIDIO SUBSYSTEM
7511 M:      Matt Porter <mporter@kernel.crashing.org>
7512 M:      Alexandre Bounine <alexandre.bounine@idt.com>
7513 S:      Maintained
7514 F:      drivers/rapidio/
7515
7516 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
7517 L:      linux-wireless@vger.kernel.org
7518 S:      Orphan
7519 F:      drivers/net/wireless/ray*
7520
7521 RCUTORTURE MODULE
7522 M:      Josh Triplett <josh@joshtriplett.org>
7523 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7524 L:      linux-kernel@vger.kernel.org
7525 S:      Supported
7526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7527 F:      Documentation/RCU/torture.txt
7528 F:      kernel/rcu/rcutorture.c
7529
7530 RCUTORTURE TEST FRAMEWORK
7531 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7532 M:      Josh Triplett <josh@joshtriplett.org>
7533 R:      Steven Rostedt <rostedt@goodmis.org>
7534 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7535 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
7536 L:      linux-kernel@vger.kernel.org
7537 S:      Supported
7538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7539 F:      tools/testing/selftests/rcutorture
7540
7541 RDC R-321X SoC
7542 M:      Florian Fainelli <florian@openwrt.org>
7543 S:      Maintained
7544
7545 RDC R6040 FAST ETHERNET DRIVER
7546 M:      Florian Fainelli <florian@openwrt.org>
7547 L:      netdev@vger.kernel.org
7548 S:      Maintained
7549 F:      drivers/net/ethernet/rdc/r6040.c
7550
7551 RDS - RELIABLE DATAGRAM SOCKETS
7552 M:      Chien Yen <chien.yen@oracle.com>
7553 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
7554 S:      Supported
7555 F:      net/rds/
7556
7557 READ-COPY UPDATE (RCU)
7558 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7559 M:      Josh Triplett <josh@joshtriplett.org>
7560 R:      Steven Rostedt <rostedt@goodmis.org>
7561 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7562 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
7563 L:      linux-kernel@vger.kernel.org
7564 W:      http://www.rdrop.com/users/paulmck/RCU/
7565 S:      Supported
7566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7567 F:      Documentation/RCU/
7568 X:      Documentation/RCU/torture.txt
7569 F:      include/linux/rcu*
7570 X:      include/linux/srcu.h
7571 F:      kernel/rcu/
7572 X:      kernel/torture.c
7573
7574 REAL TIME CLOCK (RTC) SUBSYSTEM
7575 M:      Alessandro Zummo <a.zummo@towertech.it>
7576 L:      rtc-linux@googlegroups.com
7577 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
7578 S:      Maintained
7579 F:      Documentation/rtc.txt
7580 F:      drivers/rtc/
7581 F:      include/linux/rtc.h
7582 F:      include/uapi/linux/rtc.h
7583
7584 REALTEK AUDIO CODECS
7585 M:      Bard Liao <bardliao@realtek.com>
7586 M:      Oder Chiou <oder_chiou@realtek.com>
7587 S:      Maintained
7588 F:      sound/soc/codecs/rt*
7589 F:      include/sound/rt*.h
7590
7591 REISERFS FILE SYSTEM
7592 L:      reiserfs-devel@vger.kernel.org
7593 S:      Supported
7594 F:      fs/reiserfs/
7595
7596 REGISTER MAP ABSTRACTION
7597 M:      Mark Brown <broonie@kernel.org>
7598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
7599 S:      Supported
7600 F:      drivers/base/regmap/
7601 F:      include/linux/regmap.h
7602
7603 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
7604 M:      Ohad Ben-Cohen <ohad@wizery.com>
7605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
7606 S:      Maintained
7607 F:      drivers/remoteproc/
7608 F:      Documentation/remoteproc.txt
7609 F:      include/linux/remoteproc.h
7610
7611 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
7612 M:      Ohad Ben-Cohen <ohad@wizery.com>
7613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
7614 S:      Maintained
7615 F:      drivers/rpmsg/
7616 F:      Documentation/rpmsg.txt
7617 F:      include/linux/rpmsg.h
7618
7619 RESET CONTROLLER FRAMEWORK
7620 M:      Philipp Zabel <p.zabel@pengutronix.de>
7621 S:      Maintained
7622 F:      drivers/reset/
7623 F:      Documentation/devicetree/bindings/reset/
7624 F:      include/linux/reset.h
7625 F:      include/linux/reset-controller.h
7626
7627 RFKILL
7628 M:      Johannes Berg <johannes@sipsolutions.net>
7629 L:      linux-wireless@vger.kernel.org
7630 W:      http://wireless.kernel.org/
7631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
7632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
7633 S:      Maintained
7634 F:      Documentation/rfkill.txt
7635 F:      net/rfkill/
7636
7637 RICOH SMARTMEDIA/XD DRIVER
7638 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7639 S:      Maintained
7640 F:      drivers/mtd/nand/r852.c
7641 F:      drivers/mtd/nand/r852.h
7642
7643 RICOH R5C592 MEMORYSTICK DRIVER
7644 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7645 S:      Maintained
7646 F:      drivers/memstick/host/r592.*
7647
7648 ROCCAT DRIVERS
7649 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
7650 W:      http://sourceforge.net/projects/roccat/
7651 S:      Maintained
7652 F:      drivers/hid/hid-roccat*
7653 F:      include/linux/hid-roccat*
7654 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
7655
7656 ROCKETPORT DRIVER
7657 P:      Comtrol Corp.
7658 W:      http://www.comtrol.com
7659 S:      Maintained
7660 F:      Documentation/serial/rocket.txt
7661 F:      drivers/tty/rocket*
7662
7663 ROSE NETWORK LAYER
7664 M:      Ralf Baechle <ralf@linux-mips.org>
7665 L:      linux-hams@vger.kernel.org
7666 W:      http://www.linux-ax25.org/
7667 S:      Maintained
7668 F:      include/net/rose.h
7669 F:      include/uapi/linux/rose.h
7670 F:      net/rose/
7671
7672 RTL2830 MEDIA DRIVER
7673 M:      Antti Palosaari <crope@iki.fi>
7674 L:      linux-media@vger.kernel.org
7675 W:      http://linuxtv.org/
7676 W:      http://palosaari.fi/linux/
7677 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7678 T:      git git://linuxtv.org/anttip/media_tree.git
7679 S:      Maintained
7680 F:      drivers/media/dvb-frontends/rtl2830*
7681
7682 RTL2832 MEDIA DRIVER
7683 M:      Antti Palosaari <crope@iki.fi>
7684 L:      linux-media@vger.kernel.org
7685 W:      http://linuxtv.org/
7686 W:      http://palosaari.fi/linux/
7687 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7688 T:      git git://linuxtv.org/anttip/media_tree.git
7689 S:      Maintained
7690 F:      drivers/media/dvb-frontends/rtl2832*
7691
7692 RTL2832_SDR MEDIA DRIVER
7693 M:      Antti Palosaari <crope@iki.fi>
7694 L:      linux-media@vger.kernel.org
7695 W:      http://linuxtv.org/
7696 W:      http://palosaari.fi/linux/
7697 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7698 T:      git git://linuxtv.org/anttip/media_tree.git
7699 S:      Maintained
7700 F:      drivers/media/dvb-frontends/rtl2832_sdr*
7701
7702 RTL8180 WIRELESS DRIVER
7703 M:      "John W. Linville" <linville@tuxdriver.com>
7704 L:      linux-wireless@vger.kernel.org
7705 W:      http://wireless.kernel.org/
7706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
7707 S:      Maintained
7708 F:      drivers/net/wireless/rtl818x/rtl8180/
7709
7710 RTL8187 WIRELESS DRIVER
7711 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
7712 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
7713 M:      Larry Finger <Larry.Finger@lwfinger.net>
7714 L:      linux-wireless@vger.kernel.org
7715 W:      http://wireless.kernel.org/
7716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
7717 S:      Maintained
7718 F:      drivers/net/wireless/rtl818x/rtl8187/
7719
7720 RTL8192CE WIRELESS DRIVER
7721 M:      Larry Finger <Larry.Finger@lwfinger.net>
7722 M:      Chaoming Li <chaoming_li@realsil.com.cn>
7723 L:      linux-wireless@vger.kernel.org
7724 W:      http://wireless.kernel.org/
7725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
7726 S:      Maintained
7727 F:      drivers/net/wireless/rtlwifi/
7728 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
7729
7730 S3 SAVAGE FRAMEBUFFER DRIVER
7731 M:      Antonino Daplas <adaplas@gmail.com>
7732 L:      linux-fbdev@vger.kernel.org
7733 S:      Maintained
7734 F:      drivers/video/fbdev/savage/
7735
7736 S390
7737 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
7738 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
7739 M:      linux390@de.ibm.com
7740 L:      linux-s390@vger.kernel.org
7741 W:      http://www.ibm.com/developerworks/linux/linux390/
7742 S:      Supported
7743 F:      arch/s390/
7744 F:      drivers/s390/
7745 F:      Documentation/s390/
7746 F:      Documentation/DocBook/s390*
7747
7748 S390 COMMON I/O LAYER
7749 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
7750 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
7751 L:      linux-s390@vger.kernel.org
7752 W:      http://www.ibm.com/developerworks/linux/linux390/
7753 S:      Supported
7754 F:      drivers/s390/cio/
7755
7756 S390 DASD DRIVER
7757 M:      Stefan Weinhuber <wein@de.ibm.com>
7758 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
7759 L:      linux-s390@vger.kernel.org
7760 W:      http://www.ibm.com/developerworks/linux/linux390/
7761 S:      Supported
7762 F:      drivers/s390/block/dasd*
7763 F:      block/partitions/ibm.c
7764
7765 S390 NETWORK DRIVERS
7766 M:      Ursula Braun <ursula.braun@de.ibm.com>
7767 M:      Frank Blaschka <blaschka@linux.vnet.ibm.com>
7768 M:      linux390@de.ibm.com
7769 L:      linux-s390@vger.kernel.org
7770 W:      http://www.ibm.com/developerworks/linux/linux390/
7771 S:      Supported
7772 F:      drivers/s390/net/
7773
7774 S390 PCI SUBSYSTEM
7775 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
7776 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
7777 L:      linux-s390@vger.kernel.org
7778 W:      http://www.ibm.com/developerworks/linux/linux390/
7779 S:      Supported
7780 F:      arch/s390/pci/
7781 F:      drivers/pci/hotplug/s390_pci_hpc.c
7782
7783 S390 ZCRYPT DRIVER
7784 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
7785 M:      linux390@de.ibm.com
7786 L:      linux-s390@vger.kernel.org
7787 W:      http://www.ibm.com/developerworks/linux/linux390/
7788 S:      Supported
7789 F:      drivers/s390/crypto/
7790
7791 S390 ZFCP DRIVER
7792 M:      Steffen Maier <maier@linux.vnet.ibm.com>
7793 M:      linux390@de.ibm.com
7794 L:      linux-s390@vger.kernel.org
7795 W:      http://www.ibm.com/developerworks/linux/linux390/
7796 S:      Supported
7797 F:      drivers/s390/scsi/zfcp_*
7798
7799 S390 IUCV NETWORK LAYER
7800 M:      Ursula Braun <ursula.braun@de.ibm.com>
7801 M:      linux390@de.ibm.com
7802 L:      linux-s390@vger.kernel.org
7803 W:      http://www.ibm.com/developerworks/linux/linux390/
7804 S:      Supported
7805 F:      drivers/s390/net/*iucv*
7806 F:      include/net/iucv/
7807 F:      net/iucv/
7808
7809 S3C24XX SD/MMC Driver
7810 M:      Ben Dooks <ben-linux@fluff.org>
7811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7812 S:      Supported
7813 F:      drivers/mmc/host/s3cmci.*
7814
7815 SAA6588 RDS RECEIVER DRIVER
7816 M:      Hans Verkuil <hverkuil@xs4all.nl>
7817 L:      linux-media@vger.kernel.org
7818 T:      git git://linuxtv.org/media_tree.git
7819 W:      http://linuxtv.org
7820 S:      Odd Fixes
7821 F:      drivers/media/i2c/saa6588*
7822
7823 SAA7134 VIDEO4LINUX DRIVER
7824 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
7825 L:      linux-media@vger.kernel.org
7826 W:      http://linuxtv.org
7827 T:      git git://linuxtv.org/media_tree.git
7828 S:      Odd fixes
7829 F:      Documentation/video4linux/*.saa7134
7830 F:      drivers/media/pci/saa7134/
7831
7832 SAA7146 VIDEO4LINUX-2 DRIVER
7833 M:      Hans Verkuil <hverkuil@xs4all.nl>
7834 L:      linux-media@vger.kernel.org
7835 T:      git git://linuxtv.org/media_tree.git
7836 S:      Maintained
7837 F:      drivers/media/common/saa7146/
7838 F:      drivers/media/pci/saa7146/
7839 F:      include/media/saa7146*
7840
7841 SAMSUNG LAPTOP DRIVER
7842 M:      Corentin Chary <corentin.chary@gmail.com>
7843 L:      platform-driver-x86@vger.kernel.org
7844 S:      Maintained
7845 F:      drivers/platform/x86/samsung-laptop.c
7846
7847 SAMSUNG AUDIO (ASoC) DRIVERS
7848 M:      Sangbeom Kim <sbkim73@samsung.com>
7849 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7850 S:      Supported
7851 F:      sound/soc/samsung/
7852
7853 SAMSUNG FRAMEBUFFER DRIVER
7854 M:      Jingoo Han <jg1.han@samsung.com>
7855 L:      linux-fbdev@vger.kernel.org
7856 S:      Maintained
7857 F:      drivers/video/fbdev/s3c-fb.c
7858
7859 SAMSUNG MULTIFUNCTION DEVICE DRIVERS
7860 M:      Sangbeom Kim <sbkim73@samsung.com>
7861 L:      linux-kernel@vger.kernel.org
7862 S:      Supported
7863 F:      drivers/mfd/sec*.c
7864 F:      drivers/regulator/s2m*.c
7865 F:      drivers/regulator/s5m*.c
7866 F:      drivers/rtc/rtc-sec.c
7867 F:      include/linux/mfd/samsung/
7868
7869 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
7870 M:      Kyungmin Park <kyungmin.park@samsung.com>
7871 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
7872 L:      linux-media@vger.kernel.org
7873 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
7874 S:      Supported
7875 F:      drivers/media/platform/exynos4-is/
7876
7877 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
7878 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
7879 L:      linux-media@vger.kernel.org
7880 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7881 S:      Maintained
7882 F:      drivers/media/platform/s3c-camif/
7883 F:      include/media/s3c_camif.h
7884
7885 SAMSUNG S5C73M3 CAMERA DRIVER
7886 M:      Kyungmin Park <kyungmin.park@samsung.com>
7887 M:      Andrzej Hajda <a.hajda@samsung.com>
7888 L:      linux-media@vger.kernel.org
7889 S:      Supported
7890 F:      drivers/media/i2c/s5c73m3/*
7891
7892 SAMSUNG S5K5BAF CAMERA DRIVER
7893 M:      Kyungmin Park <kyungmin.park@samsung.com>
7894 M:      Andrzej Hajda <a.hajda@samsung.com>
7895 L:      linux-media@vger.kernel.org
7896 S:      Supported
7897 F:      drivers/media/i2c/s5k5baf.c
7898
7899 SAMSUNG SOC CLOCK DRIVERS
7900 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
7901 M:      Tomasz Figa <tomasz.figa@gmail.com>
7902 S:      Supported
7903 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7904 F:      drivers/clk/samsung/
7905
7906 SAMSUNG SXGBE DRIVERS
7907 M:      Byungho An <bh74.an@samsung.com>
7908 M:      Girish K S <ks.giri@samsung.com>
7909 M:      Vipul Pandya <vipul.pandya@samsung.com>
7910 S:      Supported
7911 L:      netdev@vger.kernel.org
7912 F:      drivers/net/ethernet/samsung/sxgbe/
7913
7914 SAMSUNG USB2 PHY DRIVER
7915 M:      Kamil Debski <k.debski@samsung.com>
7916 L:      linux-kernel@vger.kernel.org
7917 S:      Supported
7918 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
7919 F:      Documentation/phy/samsung-usb2.txt
7920 F:      drivers/phy/phy-exynos4210-usb2.c
7921 F:      drivers/phy/phy-exynos4x12-usb2.c
7922 F:      drivers/phy/phy-exynos5250-usb2.c
7923 F:      drivers/phy/phy-s5pv210-usb2.c
7924 F:      drivers/phy/phy-samsung-usb2.c
7925 F:      drivers/phy/phy-samsung-usb2.h
7926
7927 SERIAL DRIVERS
7928 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7929 L:      linux-serial@vger.kernel.org
7930 S:      Maintained
7931 F:      drivers/tty/serial/
7932
7933 SYNOPSYS DESIGNWARE DMAC DRIVER
7934 M:      Viresh Kumar <viresh.linux@gmail.com>
7935 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7936 S:      Maintained
7937 F:      include/linux/dw_dmac.h
7938 F:      drivers/dma/dw/
7939
7940 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
7941 M:      Seungwon Jeon <tgih.jun@samsung.com>
7942 M:      Jaehoon Chung <jh80.chung@samsung.com>
7943 L:      linux-mmc@vger.kernel.org
7944 S:      Maintained
7945 F:      include/linux/mmc/dw_mmc.h
7946 F:      drivers/mmc/host/dw_mmc*
7947
7948 THUNDERBOLT DRIVER
7949 M:      Andreas Noever <andreas.noever@gmail.com>
7950 S:      Maintained
7951 F:      drivers/thunderbolt/
7952
7953 TIMEKEEPING, CLOCKSOURCE CORE, NTP
7954 M:      John Stultz <john.stultz@linaro.org>
7955 M:      Thomas Gleixner <tglx@linutronix.de>
7956 L:      linux-kernel@vger.kernel.org
7957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7958 S:      Supported
7959 F:      include/linux/clocksource.h
7960 F:      include/linux/time.h
7961 F:      include/linux/timex.h
7962 F:      include/uapi/linux/time.h
7963 F:      include/uapi/linux/timex.h
7964 F:      kernel/time/clocksource.c
7965 F:      kernel/time/time*.c
7966 F:      kernel/time/ntp.c
7967
7968 TLG2300 VIDEO4LINUX-2 DRIVER
7969 M:      Huang Shijie <shijie8@gmail.com>
7970 M:      Hans Verkuil <hverkuil@xs4all.nl>
7971 S:      Odd Fixes
7972 F:      drivers/media/usb/tlg2300/
7973
7974 SC1200 WDT DRIVER
7975 M:      Zwane Mwaikambo <zwanem@gmail.com>
7976 S:      Maintained
7977 F:      drivers/watchdog/sc1200wdt.c
7978
7979 SCHEDULER
7980 M:      Ingo Molnar <mingo@redhat.com>
7981 M:      Peter Zijlstra <peterz@infradead.org>
7982 L:      linux-kernel@vger.kernel.org
7983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
7984 S:      Maintained
7985 F:      kernel/sched/
7986 F:      include/linux/sched.h
7987 F:      include/uapi/linux/sched.h
7988 F:      include/linux/wait.h
7989
7990 SCORE ARCHITECTURE
7991 M:      Chen Liqin <liqin.linux@gmail.com>
7992 M:      Lennox Wu <lennox.wu@gmail.com>
7993 W:      http://www.sunplus.com
7994 S:      Supported
7995 F:      arch/score/
7996
7997 SCSI CDROM DRIVER
7998 M:      Jens Axboe <axboe@kernel.dk>
7999 L:      linux-scsi@vger.kernel.org
8000 W:      http://www.kernel.dk
8001 S:      Maintained
8002 F:      drivers/scsi/sr*
8003
8004 SCSI RDMA PROTOCOL (SRP) INITIATOR
8005 M:      Bart Van Assche <bvanassche@acm.org>
8006 L:      linux-rdma@vger.kernel.org
8007 S:      Supported
8008 W:      http://www.openfabrics.org
8009 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
8011 F:      drivers/infiniband/ulp/srp/
8012 F:      include/scsi/srp.h
8013
8014 SCSI SG DRIVER
8015 M:      Doug Gilbert <dgilbert@interlog.com>
8016 L:      linux-scsi@vger.kernel.org
8017 W:      http://sg.danny.cz/sg
8018 S:      Maintained
8019 F:      Documentation/scsi/scsi-generic.txt
8020 F:      drivers/scsi/sg.c
8021 F:      include/scsi/sg.h
8022
8023 SCSI SUBSYSTEM
8024 M:      "James E.J. Bottomley" <JBottomley@parallels.com>
8025 L:      linux-scsi@vger.kernel.org
8026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
8027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
8028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
8029 S:      Maintained
8030 F:      drivers/scsi/
8031 F:      include/scsi/
8032
8033 SCSI TAPE DRIVER
8034 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
8035 L:      linux-scsi@vger.kernel.org
8036 S:      Maintained
8037 F:      Documentation/scsi/st.txt
8038 F:      drivers/scsi/st.*
8039 F:      drivers/scsi/st_*.h
8040
8041 SCTP PROTOCOL
8042 M:      Vlad Yasevich <vyasevich@gmail.com>
8043 M:      Neil Horman <nhorman@tuxdriver.com>
8044 L:      linux-sctp@vger.kernel.org
8045 W:      http://lksctp.sourceforge.net
8046 S:      Maintained
8047 F:      Documentation/networking/sctp.txt
8048 F:      include/linux/sctp.h
8049 F:      include/uapi/linux/sctp.h
8050 F:      include/net/sctp/
8051 F:      net/sctp/
8052
8053 SCx200 CPU SUPPORT
8054 M:      Jim Cromie <jim.cromie@gmail.com>
8055 S:      Odd Fixes
8056 F:      Documentation/i2c/busses/scx200_acb
8057 F:      arch/x86/platform/scx200/
8058 F:      drivers/watchdog/scx200_wdt.c
8059 F:      drivers/i2c/busses/scx200*
8060 F:      drivers/mtd/maps/scx200_docflash.c
8061 F:      include/linux/scx200.h
8062
8063 SCx200 GPIO DRIVER
8064 M:      Jim Cromie <jim.cromie@gmail.com>
8065 S:      Maintained
8066 F:      drivers/char/scx200_gpio.c
8067 F:      include/linux/scx200_gpio.h
8068
8069 SCx200 HRT CLOCKSOURCE DRIVER
8070 M:      Jim Cromie <jim.cromie@gmail.com>
8071 S:      Maintained
8072 F:      drivers/clocksource/scx200_hrt.c
8073
8074 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
8075 M:      Sascha Sommer <saschasommer@freenet.de>
8076 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
8077 S:      Maintained
8078 F:      drivers/mmc/host/sdricoh_cs.c
8079
8080 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
8081 M:      Chris Ball <chris@printf.net>
8082 L:      linux-mmc@vger.kernel.org
8083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
8084 S:      Maintained
8085 F:      drivers/mmc/host/sdhci.*
8086 F:      drivers/mmc/host/sdhci-pltfm.[ch]
8087
8088 SECURE COMPUTING
8089 M:      Kees Cook <keescook@chromium.org>
8090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
8091 S:      Supported
8092 F:      kernel/seccomp.c
8093 F:      include/uapi/linux/seccomp.h
8094 F:      include/linux/seccomp.h
8095 K:      \bsecure_computing
8096 K:      \bTIF_SECCOMP\b
8097
8098 SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
8099 M:      Anton Vorontsov <anton@enomsg.org>
8100 L:      linuxppc-dev@lists.ozlabs.org
8101 L:      linux-mmc@vger.kernel.org
8102 S:      Maintained
8103 F:      drivers/mmc/host/sdhci-pltfm.[ch]
8104
8105 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
8106 M:      Ben Dooks <ben-linux@fluff.org>
8107 L:      linux-mmc@vger.kernel.org
8108 S:      Maintained
8109 F:      drivers/mmc/host/sdhci-s3c.c
8110
8111 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
8112 M:      Viresh Kumar <viresh.linux@gmail.com>
8113 L:      spear-devel@list.st.com
8114 L:      linux-mmc@vger.kernel.org
8115 S:      Maintained
8116 F:      drivers/mmc/host/sdhci-spear.c
8117
8118 SECURITY SUBSYSTEM
8119 M:      James Morris <james.l.morris@oracle.com>
8120 M:      Serge E. Hallyn <serge@hallyn.com>
8121 L:      linux-security-module@vger.kernel.org (suggested Cc:)
8122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
8123 W:      http://kernsec.org/
8124 S:      Supported
8125 F:      security/
8126
8127 SECURITY CONTACT
8128 M:      Security Officers <security@kernel.org>
8129 S:      Supported
8130
8131 SELINUX SECURITY MODULE
8132 M:      Paul Moore <paul@paul-moore.com>
8133 M:      Stephen Smalley <sds@tycho.nsa.gov>
8134 M:      Eric Paris <eparis@parisplace.org>
8135 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
8136 W:      http://selinuxproject.org
8137 T:      git git://git.infradead.org/users/pcmoore/selinux
8138 S:      Supported
8139 F:      include/linux/selinux*
8140 F:      security/selinux/
8141 F:      scripts/selinux/
8142
8143 APPARMOR SECURITY MODULE
8144 M:      John Johansen <john.johansen@canonical.com>
8145 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
8146 W:      apparmor.wiki.kernel.org
8147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
8148 S:      Supported
8149 F:      security/apparmor/
8150
8151 SENSABLE PHANTOM
8152 M:      Jiri Slaby <jirislaby@gmail.com>
8153 S:      Maintained
8154 F:      drivers/misc/phantom.c
8155 F:      include/uapi/linux/phantom.h
8156
8157 SERIAL ATA (SATA) SUBSYSTEM
8158 M:      Tejun Heo <tj@kernel.org>
8159 L:      linux-ide@vger.kernel.org
8160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
8161 S:      Supported
8162 F:      drivers/ata/
8163 F:      include/linux/ata.h
8164 F:      include/linux/libata.h
8165
8166 SERIAL ATA AHCI PLATFORM devices support
8167 M:      Hans de Goede <hdegoede@redhat.com>
8168 M:      Tejun Heo <tj@kernel.org>
8169 L:      linux-ide@vger.kernel.org
8170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
8171 S:      Supported
8172 F:      drivers/ata/ahci_platform.c
8173 F:      drivers/ata/libahci_platform.c
8174 F:      include/linux/ahci_platform.h
8175
8176 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
8177 M:      Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
8178 L:      linux-scsi@vger.kernel.org
8179 W:      http://www.emulex.com
8180 S:      Supported
8181 F:      drivers/scsi/be2iscsi/
8182
8183 SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
8184 M:      Sathya Perla <sathya.perla@emulex.com>
8185 M:      Subbu Seetharaman <subbu.seetharaman@emulex.com>
8186 M:      Ajit Khaparde <ajit.khaparde@emulex.com>
8187 L:      netdev@vger.kernel.org
8188 W:      http://www.emulex.com
8189 S:      Supported
8190 F:      drivers/net/ethernet/emulex/benet/
8191
8192 SFC NETWORK DRIVER
8193 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
8194 M:      Shradha Shah <sshah@solarflare.com>
8195 L:      netdev@vger.kernel.org
8196 S:      Supported
8197 F:      drivers/net/ethernet/sfc/
8198
8199 SGI GRU DRIVER
8200 M:      Dimitri Sivanich <sivanich@sgi.com>
8201 S:      Maintained
8202 F:      drivers/misc/sgi-gru/
8203
8204 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
8205 M:      Pat Gefre <pfg@sgi.com>
8206 L:      linux-ia64@vger.kernel.org
8207 S:      Supported
8208 F:      Documentation/ia64/serial.txt
8209 F:      drivers/tty/serial/ioc?_serial.c
8210 F:      include/linux/ioc?.h
8211
8212 SGI XP/XPC/XPNET DRIVER
8213 M:      Cliff Whickman <cpw@sgi.com>
8214 M:      Robin Holt <robinmholt@gmail.com>
8215 S:      Maintained
8216 F:      drivers/misc/sgi-xp/
8217
8218 SI2157 MEDIA DRIVER
8219 M:      Antti Palosaari <crope@iki.fi>
8220 L:      linux-media@vger.kernel.org
8221 W:      http://linuxtv.org/
8222 W:      http://palosaari.fi/linux/
8223 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8224 T:      git git://linuxtv.org/anttip/media_tree.git
8225 S:      Maintained
8226 F:      drivers/media/tuners/si2157*
8227
8228 SI2168 MEDIA DRIVER
8229 M:      Antti Palosaari <crope@iki.fi>
8230 L:      linux-media@vger.kernel.org
8231 W:      http://linuxtv.org/
8232 W:      http://palosaari.fi/linux/
8233 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8234 T:      git git://linuxtv.org/anttip/media_tree.git
8235 S:      Maintained
8236 F:      drivers/media/dvb-frontends/si2168*
8237
8238 SI470X FM RADIO RECEIVER I2C DRIVER
8239 M:      Hans Verkuil <hverkuil@xs4all.nl>
8240 L:      linux-media@vger.kernel.org
8241 T:      git git://linuxtv.org/media_tree.git
8242 W:      http://linuxtv.org
8243 S:      Odd Fixes
8244 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
8245
8246 SI470X FM RADIO RECEIVER USB DRIVER
8247 M:      Hans Verkuil <hverkuil@xs4all.nl>
8248 L:      linux-media@vger.kernel.org
8249 T:      git git://linuxtv.org/media_tree.git
8250 W:      http://linuxtv.org
8251 S:      Maintained
8252 F:      drivers/media/radio/si470x/radio-si470x-common.c
8253 F:      drivers/media/radio/si470x/radio-si470x.h
8254 F:      drivers/media/radio/si470x/radio-si470x-usb.c
8255
8256 SI4713 FM RADIO TRANSMITTER I2C DRIVER
8257 M:      Eduardo Valentin <edubezval@gmail.com>
8258 L:      linux-media@vger.kernel.org
8259 T:      git git://linuxtv.org/media_tree.git
8260 W:      http://linuxtv.org
8261 S:      Odd Fixes
8262 F:      drivers/media/radio/si4713/si4713.?
8263
8264 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
8265 M:      Eduardo Valentin <edubezval@gmail.com>
8266 L:      linux-media@vger.kernel.org
8267 T:      git git://linuxtv.org/media_tree.git
8268 W:      http://linuxtv.org
8269 S:      Odd Fixes
8270 F:      drivers/media/radio/si4713/radio-platform-si4713.c
8271
8272 SI4713 FM RADIO TRANSMITTER USB DRIVER
8273 M:      Hans Verkuil <hverkuil@xs4all.nl>
8274 L:      linux-media@vger.kernel.org
8275 T:      git git://linuxtv.org/media_tree.git
8276 W:      http://linuxtv.org
8277 S:      Maintained
8278 F:      drivers/media/radio/si4713/radio-usb-si4713.c
8279
8280 SIANO DVB DRIVER
8281 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
8282 L:      linux-media@vger.kernel.org
8283 W:      http://linuxtv.org
8284 T:      git git://linuxtv.org/media_tree.git
8285 S:      Odd fixes
8286 F:      drivers/media/common/siano/
8287 F:      drivers/media/usb/siano/
8288 F:      drivers/media/usb/siano/
8289 F:      drivers/media/mmc/siano/
8290
8291 SH_VEU V4L2 MEM2MEM DRIVER
8292 L:      linux-media@vger.kernel.org
8293 S:      Orphan
8294 F:      drivers/media/platform/sh_veu.c
8295
8296 SH_VOU V4L2 OUTPUT DRIVER
8297 L:      linux-media@vger.kernel.org
8298 S:      Orphan
8299 F:      drivers/media/platform/sh_vou.c
8300 F:      include/media/sh_vou.h
8301
8302 SIMPLE FIRMWARE INTERFACE (SFI)
8303 M:      Len Brown <lenb@kernel.org>
8304 L:      sfi-devel@simplefirmware.org
8305 W:      http://simplefirmware.org/
8306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
8307 S:      Supported
8308 F:      arch/x86/platform/sfi/
8309 F:      drivers/sfi/
8310 F:      include/linux/sfi*.h
8311
8312 SIMTEC EB110ATX (Chalice CATS)
8313 P:      Ben Dooks
8314 P:      Vincent Sanders <vince@simtec.co.uk>
8315 M:      Simtec Linux Team <linux@simtec.co.uk>
8316 W:      http://www.simtec.co.uk/products/EB110ATX/
8317 S:      Supported
8318
8319 SIMTEC EB2410ITX (BAST)
8320 P:      Ben Dooks
8321 P:      Vincent Sanders <vince@simtec.co.uk>
8322 M:      Simtec Linux Team <linux@simtec.co.uk>
8323 W:      http://www.simtec.co.uk/products/EB2410ITX/
8324 S:      Supported
8325 F:      arch/arm/mach-s3c24xx/mach-bast.c
8326 F:      arch/arm/mach-s3c24xx/bast-ide.c
8327 F:      arch/arm/mach-s3c24xx/bast-irq.c
8328
8329 TI DAVINCI MACHINE SUPPORT
8330 M:      Sekhar Nori <nsekhar@ti.com>
8331 M:      Kevin Hilman <khilman@deeprootsystems.com>
8332 L:      davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
8333 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
8334 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
8335 S:      Supported
8336 F:      arch/arm/mach-davinci/
8337 F:      drivers/i2c/busses/i2c-davinci.c
8338
8339 TI DAVINCI SERIES MEDIA DRIVER
8340 M:      Lad, Prabhakar <prabhakar.csengg@gmail.com>
8341 L:      linux-media@vger.kernel.org
8342 L:      davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
8343 W:      http://linuxtv.org/
8344 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8345 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
8346 S:      Maintained
8347 F:      drivers/media/platform/davinci/
8348 F:      include/media/davinci/
8349
8350 SIS 190 ETHERNET DRIVER
8351 M:      Francois Romieu <romieu@fr.zoreil.com>
8352 L:      netdev@vger.kernel.org
8353 S:      Maintained
8354 F:      drivers/net/ethernet/sis/sis190.c
8355
8356 SIS 900/7016 FAST ETHERNET DRIVER
8357 M:      Daniele Venzano <venza@brownhat.org>
8358 W:      http://www.brownhat.org/sis900.html
8359 L:      netdev@vger.kernel.org
8360 S:      Maintained
8361 F:      drivers/net/ethernet/sis/sis900.*
8362
8363 SIS FRAMEBUFFER DRIVER
8364 M:      Thomas Winischhofer <thomas@winischhofer.net>
8365 W:      http://www.winischhofer.net/linuxsisvga.shtml
8366 S:      Maintained
8367 F:      Documentation/fb/sisfb.txt
8368 F:      drivers/video/fbdev/sis/
8369 F:      include/video/sisfb.h
8370
8371 SIS USB2VGA DRIVER
8372 M:      Thomas Winischhofer <thomas@winischhofer.net>
8373 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
8374 S:      Maintained
8375 F:      drivers/usb/misc/sisusbvga/
8376
8377 SLAB ALLOCATOR
8378 M:      Christoph Lameter <cl@linux.com>
8379 M:      Pekka Enberg <penberg@kernel.org>
8380 M:      David Rientjes <rientjes@google.com>
8381 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
8382 M:      Andrew Morton <akpm@linux-foundation.org>
8383 L:      linux-mm@kvack.org
8384 S:      Maintained
8385 F:      include/linux/sl?b*.h
8386 F:      mm/sl?b*
8387
8388 SLEEPABLE READ-COPY UPDATE (SRCU)
8389 M:      Lai Jiangshan <laijs@cn.fujitsu.com>
8390 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8391 M:      Josh Triplett <josh@joshtriplett.org>
8392 R:      Steven Rostedt <rostedt@goodmis.org>
8393 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8394 L:      linux-kernel@vger.kernel.org
8395 W:      http://www.rdrop.com/users/paulmck/RCU/
8396 S:      Supported
8397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8398 F:      include/linux/srcu.h
8399 F:      kernel/rcu/srcu.c
8400
8401 SMACK SECURITY MODULE
8402 M:      Casey Schaufler <casey@schaufler-ca.com>
8403 L:      linux-security-module@vger.kernel.org
8404 W:      http://schaufler-ca.com
8405 T:      git git://git.gitorious.org/smack-next/kernel.git
8406 S:      Maintained
8407 F:      Documentation/security/Smack.txt
8408 F:      security/smack/
8409
8410 SMARTREFLEX DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
8411 M:      Kevin Hilman <khilman@kernel.org>
8412 M:      Nishanth Menon <nm@ti.com>
8413 S:      Maintained
8414 F:      drivers/power/avs/smartreflex.c
8415 F:      include/linux/power/smartreflex.h
8416 L:      linux-pm@vger.kernel.org
8417
8418 SMC91x ETHERNET DRIVER
8419 M:      Nicolas Pitre <nico@fluxnic.net>
8420 S:      Odd Fixes
8421 F:      drivers/net/ethernet/smsc/smc91x.*
8422
8423 SMIA AND SMIA++ IMAGE SENSOR DRIVER
8424 M:      Sakari Ailus <sakari.ailus@iki.fi>
8425 L:      linux-media@vger.kernel.org
8426 S:      Maintained
8427 F:      drivers/media/i2c/smiapp/
8428 F:      include/media/smiapp.h
8429 F:      drivers/media/i2c/smiapp-pll.c
8430 F:      drivers/media/i2c/smiapp-pll.h
8431
8432 SMM665 HARDWARE MONITOR DRIVER
8433 M:      Guenter Roeck <linux@roeck-us.net>
8434 L:      lm-sensors@lm-sensors.org
8435 S:      Maintained
8436 F:      Documentation/hwmon/smm665
8437 F:      drivers/hwmon/smm665.c
8438
8439 SMSC EMC2103 HARDWARE MONITOR DRIVER
8440 M:      Steve Glendinning <steve.glendinning@shawell.net>
8441 L:      lm-sensors@lm-sensors.org
8442 S:      Maintained
8443 F:      Documentation/hwmon/emc2103
8444 F:      drivers/hwmon/emc2103.c
8445
8446 SMSC SCH5627 HARDWARE MONITOR DRIVER
8447 M:      Hans de Goede <hdegoede@redhat.com>
8448 L:      lm-sensors@lm-sensors.org
8449 S:      Supported
8450 F:      Documentation/hwmon/sch5627
8451 F:      drivers/hwmon/sch5627.c
8452
8453 SMSC47B397 HARDWARE MONITOR DRIVER
8454 M:      Jean Delvare <jdelvare@suse.de>
8455 L:      lm-sensors@lm-sensors.org
8456 S:      Maintained
8457 F:      Documentation/hwmon/smsc47b397
8458 F:      drivers/hwmon/smsc47b397.c
8459
8460 SMSC911x ETHERNET DRIVER
8461 M:      Steve Glendinning <steve.glendinning@shawell.net>
8462 L:      netdev@vger.kernel.org
8463 S:      Maintained
8464 F:      include/linux/smsc911x.h
8465 F:      drivers/net/ethernet/smsc/smsc911x.*
8466
8467 SMSC9420 PCI ETHERNET DRIVER
8468 M:      Steve Glendinning <steve.glendinning@shawell.net>
8469 L:      netdev@vger.kernel.org
8470 S:      Maintained
8471 F:      drivers/net/ethernet/smsc/smsc9420.*
8472
8473 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
8474 M:      Steve Glendinning <steve.glendinning@shawell.net>
8475 L:      linux-fbdev@vger.kernel.org
8476 S:      Maintained
8477 F:      drivers/video/fbdev/smscufx.c
8478
8479 SOC-CAMERA V4L2 SUBSYSTEM
8480 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
8481 L:      linux-media@vger.kernel.org
8482 T:      git git://linuxtv.org/media_tree.git
8483 S:      Maintained
8484 F:      include/media/soc*
8485 F:      drivers/media/i2c/soc_camera/
8486 F:      drivers/media/platform/soc_camera/
8487
8488 SOEKRIS NET48XX LED SUPPORT
8489 M:      Chris Boot <bootc@bootc.net>
8490 S:      Maintained
8491 F:      drivers/leds/leds-net48xx.c
8492
8493 SOFTLOGIC 6x10 MPEG CODEC
8494 M:      Ismael Luceno <ismael.luceno@corp.bluecherry.net>
8495 L:      linux-media@vger.kernel.org
8496 S:      Supported
8497 F:      drivers/media/pci/solo6x10/
8498
8499 SOFTWARE RAID (Multiple Disks) SUPPORT
8500 M:      Neil Brown <neilb@suse.de>
8501 L:      linux-raid@vger.kernel.org
8502 S:      Supported
8503 F:      drivers/md/
8504 F:      include/linux/raid/
8505 F:      include/uapi/linux/raid/
8506
8507 SONIC NETWORK DRIVER
8508 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
8509 L:      netdev@vger.kernel.org
8510 S:      Maintained
8511 F:      drivers/net/ethernet/natsemi/sonic.*
8512
8513 SONICS SILICON BACKPLANE DRIVER (SSB)
8514 M:      Michael Buesch <m@bues.ch>
8515 L:      netdev@vger.kernel.org
8516 S:      Maintained
8517 F:      drivers/ssb/
8518 F:      include/linux/ssb/
8519
8520 SONY VAIO CONTROL DEVICE DRIVER
8521 M:      Mattia Dongili <malattia@linux.it>
8522 L:      platform-driver-x86@vger.kernel.org
8523 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
8524 S:      Maintained
8525 F:      Documentation/laptops/sony-laptop.txt
8526 F:      drivers/char/sonypi.c
8527 F:      drivers/platform/x86/sony-laptop.c
8528 F:      include/linux/sony-laptop.h
8529
8530 SONY MEMORYSTICK CARD SUPPORT
8531 M:      Alex Dubov <oakad@yahoo.com>
8532 W:      http://tifmxx.berlios.de/
8533 S:      Maintained
8534 F:      drivers/memstick/host/tifm_ms.c
8535
8536 SONY MEMORYSTICK STANDARD SUPPORT
8537 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8538 S:      Maintained
8539 F:      drivers/memstick/core/ms_block.*
8540
8541 SOUND
8542 M:      Jaroslav Kysela <perex@perex.cz>
8543 M:      Takashi Iwai <tiwai@suse.de>
8544 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8545 W:      http://www.alsa-project.org/
8546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8547 T:      git git://git.alsa-project.org/alsa-kernel.git
8548 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
8549 S:      Maintained
8550 F:      Documentation/sound/
8551 F:      include/sound/
8552 F:      include/uapi/sound/
8553 F:      sound/
8554
8555 SOUND - COMPRESSED AUDIO
8556 M:      Vinod Koul <vinod.koul@intel.com>
8557 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8559 S:      Supported
8560 F:      Documentation/sound/alsa/compress_offload.txt
8561 F:      include/sound/compress_driver.h
8562 F:      include/uapi/sound/compress_*
8563 F:      sound/core/compress_offload.c
8564 F:      sound/soc/soc-compress.c
8565
8566 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
8567 M:      Liam Girdwood <lgirdwood@gmail.com>
8568 M:      Mark Brown <broonie@kernel.org>
8569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
8570 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8571 W:      http://alsa-project.org/main/index.php/ASoC
8572 S:      Supported
8573 F:      Documentation/sound/alsa/soc/
8574 F:      sound/soc/
8575 F:      include/sound/soc*
8576
8577 SOUND - DMAENGINE HELPERS
8578 M:      Lars-Peter Clausen <lars@metafoo.de>
8579 S:      Supported
8580 F:      include/sound/dmaengine_pcm.h
8581 F:      sound/core/pcm_dmaengine.c
8582 F:      sound/soc/soc-generic-dmaengine-pcm.c
8583
8584 SPARC + UltraSPARC (sparc/sparc64)
8585 M:      "David S. Miller" <davem@davemloft.net>
8586 L:      sparclinux@vger.kernel.org
8587 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
8588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
8589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
8590 S:      Maintained
8591 F:      arch/sparc/
8592 F:      drivers/sbus/
8593
8594 SPARC SERIAL DRIVERS
8595 M:      "David S. Miller" <davem@davemloft.net>
8596 L:      sparclinux@vger.kernel.org
8597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
8598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
8599 S:      Maintained
8600 F:      include/linux/sunserialcore.h
8601 F:      drivers/tty/serial/suncore.c
8602 F:      drivers/tty/serial/sunhv.c
8603 F:      drivers/tty/serial/sunsab.c
8604 F:      drivers/tty/serial/sunsab.h
8605 F:      drivers/tty/serial/sunsu.c
8606 F:      drivers/tty/serial/sunzilog.c
8607 F:      drivers/tty/serial/sunzilog.h
8608
8609 SPARSE CHECKER
8610 M:      "Christopher Li" <sparse@chrisli.org>
8611 L:      linux-sparse@vger.kernel.org
8612 W:      https://sparse.wiki.kernel.org/
8613 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
8614 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
8615 S:      Maintained
8616 F:      include/linux/compiler.h
8617
8618 SPEAR PLATFORM SUPPORT
8619 M:      Viresh Kumar <viresh.linux@gmail.com>
8620 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
8621 L:      spear-devel@list.st.com
8622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8623 W:      http://www.st.com/spear
8624 S:      Maintained
8625 F:      arch/arm/mach-spear/
8626
8627 SPEAR CLOCK FRAMEWORK SUPPORT
8628 M:      Viresh Kumar <viresh.linux@gmail.com>
8629 L:      spear-devel@list.st.com
8630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8631 W:      http://www.st.com/spear
8632 S:      Maintained
8633 F:      drivers/clk/spear/
8634
8635 SPI SUBSYSTEM
8636 M:      Mark Brown <broonie@kernel.org>
8637 L:      linux-spi@vger.kernel.org
8638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
8639 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
8640 S:      Maintained
8641 F:      Documentation/spi/
8642 F:      drivers/spi/
8643 F:      include/linux/spi/
8644 F:      include/uapi/linux/spi/
8645
8646 SPIDERNET NETWORK DRIVER for CELL
8647 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
8648 M:      Jens Osterkamp <jens@de.ibm.com>
8649 L:      netdev@vger.kernel.org
8650 S:      Supported
8651 F:      Documentation/networking/spider_net.txt
8652 F:      drivers/net/ethernet/toshiba/spider_net*
8653
8654 SPU FILE SYSTEM
8655 M:      Jeremy Kerr <jk@ozlabs.org>
8656 L:      linuxppc-dev@lists.ozlabs.org
8657 L:      cbe-oss-dev@lists.ozlabs.org
8658 W:      http://www.ibm.com/developerworks/power/cell/
8659 S:      Supported
8660 F:      Documentation/filesystems/spufs.txt
8661 F:      arch/powerpc/platforms/cell/spufs/
8662
8663 SQUASHFS FILE SYSTEM
8664 M:      Phillip Lougher <phillip@squashfs.org.uk>
8665 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
8666 W:      http://squashfs.org.uk
8667 S:      Maintained
8668 F:      Documentation/filesystems/squashfs.txt
8669 F:      fs/squashfs/
8670
8671 SRM (Alpha) environment access
8672 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
8673 S:      Maintained
8674 F:      arch/alpha/kernel/srm_env.c
8675
8676 STABLE BRANCH
8677 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8678 L:      stable@vger.kernel.org
8679 S:      Supported
8680 F:      Documentation/stable_kernel_rules.txt
8681
8682 STAGING SUBSYSTEM
8683 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
8685 L:      devel@driverdev.osuosl.org
8686 S:      Supported
8687 F:      drivers/staging/
8688
8689 STAGING - COMEDI
8690 M:      Ian Abbott <abbotti@mev.co.uk>
8691 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
8692 S:      Odd Fixes
8693 F:      drivers/staging/comedi/
8694
8695 STAGING - ET131X NETWORK DRIVER
8696 M:      Mark Einon <mark.einon@gmail.com>
8697 S:      Odd Fixes
8698 F:      drivers/staging/et131x/
8699
8700 STAGING - FLARION FT1000 DRIVERS
8701 M:      Marek Belisko <marek.belisko@gmail.com>
8702 S:      Odd Fixes
8703 F:      drivers/staging/ft1000/
8704
8705 STAGING - INDUSTRIAL IO
8706 M:      Jonathan Cameron <jic23@kernel.org>
8707 L:      linux-iio@vger.kernel.org
8708 S:      Odd Fixes
8709 F:      drivers/staging/iio/
8710
8711 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
8712 M:      Jarod Wilson <jarod@wilsonet.com>
8713 W:      http://www.lirc.org/
8714 S:      Odd Fixes
8715 F:      drivers/staging/media/lirc/
8716
8717 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
8718 M:      Julian Andres Klode <jak@jak-linux.org>
8719 M:      Marc Dietrich <marvin24@gmx.de>
8720 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
8721 L:      linux-tegra@vger.kernel.org
8722 S:      Maintained
8723 F:      drivers/staging/nvec/
8724
8725 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
8726 M:      Jens Frederich <jfrederich@gmail.com>
8727 M:      Daniel Drake <dsd@laptop.org>
8728 M:      Jon Nettleton <jon.nettleton@gmail.com>
8729 W:      http://wiki.laptop.org/go/DCON
8730 S:      Maintained
8731 F:      drivers/staging/olpc_dcon/
8732
8733 STAGING - OZMO DEVICES USB OVER WIFI DRIVER
8734 M:      Shigekatsu Tateno <shigekatsu.tateno@atmel.com>
8735 S:      Maintained
8736 F:      drivers/staging/ozwpan/
8737
8738 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
8739 M:      Willy Tarreau <willy@meta-x.org>
8740 S:      Odd Fixes
8741 F:      drivers/staging/panel/
8742
8743 STAGING - REALTEK RTL8712U DRIVERS
8744 M:      Larry Finger <Larry.Finger@lwfinger.net>
8745 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
8746 S:      Odd Fixes
8747 F:      drivers/staging/rtl8712/
8748
8749 STAGING - REALTEK RTL8723U WIRELESS DRIVER
8750 M:      Larry Finger <Larry.Finger@lwfinger.net>
8751 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
8752 L:      linux-wireless@vger.kernel.org
8753 S:      Maintained
8754 F:      drivers/staging/rtl8723au/
8755
8756 STAGING - SLICOSS
8757 M:      Lior Dotan <liodot@gmail.com>
8758 M:      Christopher Harrer <charrer@alacritech.com>
8759 S:      Odd Fixes
8760 F:      drivers/staging/slicoss/
8761
8762 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
8763 M:      William Hubbs <w.d.hubbs@gmail.com>
8764 M:      Chris Brannon <chris@the-brannons.com>
8765 M:      Kirk Reiser <kirk@reisers.ca>
8766 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
8767 L:      speakup@linux-speakup.org
8768 W:      http://www.linux-speakup.org/
8769 S:      Odd Fixes
8770 F:      drivers/staging/speakup/
8771
8772 STAGING - VIA VT665X DRIVERS
8773 M:      Forest Bond <forest@alittletooquiet.net>
8774 S:      Odd Fixes
8775 F:      drivers/staging/vt665?/
8776
8777 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
8778 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
8779 S:      Odd Fixes
8780 F:      drivers/staging/xgifb/
8781
8782 STARFIRE/DURALAN NETWORK DRIVER
8783 M:      Ion Badulescu <ionut@badula.org>
8784 S:      Odd Fixes
8785 F:      drivers/net/ethernet/adaptec/starfire*
8786
8787 SUN3/3X
8788 M:      Sam Creasey <sammy@sammy.net>
8789 W:      http://sammy.net/sun3/
8790 S:      Maintained
8791 F:      arch/m68k/kernel/*sun3*
8792 F:      arch/m68k/sun3*/
8793 F:      arch/m68k/include/asm/sun3*
8794 F:      drivers/net/ethernet/i825xx/sun3*
8795
8796 SUNDANCE NETWORK DRIVER
8797 M:      Denis Kirjanov <kda@linux-powerpc.org>
8798 L:      netdev@vger.kernel.org
8799 S:      Maintained
8800 F:      drivers/net/ethernet/dlink/sundance.c
8801
8802 SUPERH
8803 L:      linux-sh@vger.kernel.org
8804 W:      http://www.linux-sh.org
8805 Q:      http://patchwork.kernel.org/project/linux-sh/list/
8806 S:      Orphan
8807 F:      Documentation/sh/
8808 F:      arch/sh/
8809 F:      drivers/sh/
8810
8811 SUSPEND TO RAM
8812 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8813 M:      Len Brown <len.brown@intel.com>
8814 M:      Pavel Machek <pavel@ucw.cz>
8815 L:      linux-pm@vger.kernel.org
8816 S:      Supported
8817 F:      Documentation/power/
8818 F:      arch/x86/kernel/acpi/
8819 F:      drivers/base/power/
8820 F:      kernel/power/
8821 F:      include/linux/suspend.h
8822 F:      include/linux/freezer.h
8823 F:      include/linux/pm.h
8824
8825 SVGA HANDLING
8826 M:      Martin Mares <mj@ucw.cz>
8827 L:      linux-video@atrey.karlin.mff.cuni.cz
8828 S:      Maintained
8829 F:      Documentation/svga.txt
8830 F:      arch/x86/boot/video*
8831
8832 SWIOTLB SUBSYSTEM
8833 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8834 L:      linux-kernel@vger.kernel.org
8835 S:      Supported
8836 F:      lib/swiotlb.c
8837 F:      arch/*/kernel/pci-swiotlb.c
8838 F:      include/linux/swiotlb.h
8839
8840 SYNOPSYS ARC ARCHITECTURE
8841 M:      Vineet Gupta <vgupta@synopsys.com>
8842 S:      Supported
8843 F:      arch/arc/
8844 F:      Documentation/devicetree/bindings/arc/
8845 F:      drivers/tty/serial/arc_uart.c
8846
8847 SYSV FILESYSTEM
8848 M:      Christoph Hellwig <hch@infradead.org>
8849 S:      Maintained
8850 F:      Documentation/filesystems/sysv-fs.txt
8851 F:      fs/sysv/
8852 F:      include/linux/sysv_fs.h
8853
8854 TARGET SUBSYSTEM
8855 M:      Nicholas A. Bellinger <nab@linux-iscsi.org>
8856 L:      linux-scsi@vger.kernel.org
8857 L:      target-devel@vger.kernel.org
8858 W:      http://www.linux-iscsi.org
8859 W:      http://groups.google.com/group/linux-iscsi-target-dev
8860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
8861 S:      Supported
8862 F:      drivers/target/
8863 F:      include/target/
8864 F:      Documentation/target/
8865
8866 TASKSTATS STATISTICS INTERFACE
8867 M:      Balbir Singh <bsingharora@gmail.com>
8868 S:      Maintained
8869 F:      Documentation/accounting/taskstats*
8870 F:      include/linux/taskstats*
8871 F:      kernel/taskstats.c
8872
8873 TC CLASSIFIER
8874 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8875 L:      netdev@vger.kernel.org
8876 S:      Maintained
8877 F:      include/net/pkt_cls.h
8878 F:      include/uapi/linux/pkt_cls.h
8879 F:      net/sched/
8880
8881 TCP LOW PRIORITY MODULE
8882 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
8883 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
8884 W:      http://tcp-lp-mod.sourceforge.net/
8885 S:      Maintained
8886 F:      net/ipv4/tcp_lp.c
8887
8888 TDA10071 MEDIA DRIVER
8889 M:      Antti Palosaari <crope@iki.fi>
8890 L:      linux-media@vger.kernel.org
8891 W:      http://linuxtv.org/
8892 W:      http://palosaari.fi/linux/
8893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8894 T:      git git://linuxtv.org/anttip/media_tree.git
8895 S:      Maintained
8896 F:      drivers/media/dvb-frontends/tda10071*
8897
8898 TDA18212 MEDIA DRIVER
8899 M:      Antti Palosaari <crope@iki.fi>
8900 L:      linux-media@vger.kernel.org
8901 W:      http://linuxtv.org/
8902 W:      http://palosaari.fi/linux/
8903 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8904 T:      git git://linuxtv.org/anttip/media_tree.git
8905 S:      Maintained
8906 F:      drivers/media/tuners/tda18212*
8907
8908 TDA18218 MEDIA DRIVER
8909 M:      Antti Palosaari <crope@iki.fi>
8910 L:      linux-media@vger.kernel.org
8911 W:      http://linuxtv.org/
8912 W:      http://palosaari.fi/linux/
8913 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8914 T:      git git://linuxtv.org/anttip/media_tree.git
8915 S:      Maintained
8916 F:      drivers/media/tuners/tda18218*
8917
8918 TDA18271 MEDIA DRIVER
8919 M:      Michael Krufky <mkrufky@linuxtv.org>
8920 L:      linux-media@vger.kernel.org
8921 W:      http://linuxtv.org/
8922 W:      http://github.com/mkrufky
8923 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8924 T:      git git://linuxtv.org/mkrufky/tuners.git
8925 S:      Maintained
8926 F:      drivers/media/tuners/tda18271*
8927
8928 TDA827x MEDIA DRIVER
8929 M:      Michael Krufky <mkrufky@linuxtv.org>
8930 L:      linux-media@vger.kernel.org
8931 W:      http://linuxtv.org/
8932 W:      http://github.com/mkrufky
8933 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8934 T:      git git://linuxtv.org/mkrufky/tuners.git
8935 S:      Maintained
8936 F:      drivers/media/tuners/tda8290.*
8937
8938 TDA8290 MEDIA DRIVER
8939 M:      Michael Krufky <mkrufky@linuxtv.org>
8940 L:      linux-media@vger.kernel.org
8941 W:      http://linuxtv.org/
8942 W:      http://github.com/mkrufky
8943 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8944 T:      git git://linuxtv.org/mkrufky/tuners.git
8945 S:      Maintained
8946 F:      drivers/media/tuners/tda8290.*
8947
8948 TDA9840 MEDIA DRIVER
8949 M:      Hans Verkuil <hverkuil@xs4all.nl>
8950 L:      linux-media@vger.kernel.org
8951 T:      git git://linuxtv.org/media_tree.git
8952 W:      http://linuxtv.org
8953 S:      Maintained
8954 F:      drivers/media/i2c/tda9840*
8955
8956 TEA5761 TUNER DRIVER
8957 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
8958 L:      linux-media@vger.kernel.org
8959 W:      http://linuxtv.org
8960 T:      git git://linuxtv.org/media_tree.git
8961 S:      Odd fixes
8962 F:      drivers/media/tuners/tea5761.*
8963
8964 TEA5767 TUNER DRIVER
8965 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
8966 L:      linux-media@vger.kernel.org
8967 W:      http://linuxtv.org
8968 T:      git git://linuxtv.org/media_tree.git
8969 S:      Maintained
8970 F:      drivers/media/tuners/tea5767.*
8971
8972 TEA6415C MEDIA DRIVER
8973 M:      Hans Verkuil <hverkuil@xs4all.nl>
8974 L:      linux-media@vger.kernel.org
8975 T:      git git://linuxtv.org/media_tree.git
8976 W:      http://linuxtv.org
8977 S:      Maintained
8978 F:      drivers/media/i2c/tea6415c*
8979
8980 TEA6420 MEDIA DRIVER
8981 M:      Hans Verkuil <hverkuil@xs4all.nl>
8982 L:      linux-media@vger.kernel.org
8983 T:      git git://linuxtv.org/media_tree.git
8984 W:      http://linuxtv.org
8985 S:      Maintained
8986 F:      drivers/media/i2c/tea6420*
8987
8988 TEAM DRIVER
8989 M:      Jiri Pirko <jiri@resnulli.us>
8990 L:      netdev@vger.kernel.org
8991 S:      Supported
8992 F:      drivers/net/team/
8993 F:      include/linux/if_team.h
8994 F:      include/uapi/linux/if_team.h
8995
8996 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
8997 M:      Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
8998 S:      Maintained
8999 F:      arch/x86/platform/ts5500/
9000
9001 TECHNOTREND USB IR RECEIVER
9002 M:      Sean Young <sean@mess.org>
9003 L:      linux-media@vger.kernel.org
9004 S:      Maintained
9005 F:      drivers/media/rc/ttusbir.c
9006
9007 TEGRA ARCHITECTURE SUPPORT
9008 M:      Stephen Warren <swarren@wwwdotorg.org>
9009 M:      Thierry Reding <thierry.reding@gmail.com>
9010 L:      linux-tegra@vger.kernel.org
9011 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
9012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
9013 S:      Supported
9014 N:      [^a-z]tegra
9015
9016 TEGRA ASOC DRIVER
9017 M:      Stephen Warren <swarren@wwwdotorg.org>
9018 S:      Supported
9019 F:      sound/soc/tegra/
9020
9021 TEGRA CLOCK DRIVER
9022 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
9023 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
9024 S:      Supported
9025 F:      drivers/clk/tegra/
9026
9027 TEGRA DMA DRIVER
9028 M:      Laxman Dewangan <ldewangan@nvidia.com>
9029 S:      Supported
9030 F:      drivers/dma/tegra20-apb-dma.c
9031
9032 TEGRA GPIO DRIVER
9033 M:      Stephen Warren <swarren@wwwdotorg.org>
9034 S:      Supported
9035 F:      drivers/gpio/gpio-tegra.c
9036
9037 TEGRA I2C DRIVER
9038 M:      Laxman Dewangan <ldewangan@nvidia.com>
9039 S:      Supported
9040 F:      drivers/i2c/busses/i2c-tegra.c
9041
9042 TEGRA IOMMU DRIVERS
9043 M:      Hiroshi Doyu <hdoyu@nvidia.com>
9044 S:      Supported
9045 F:      drivers/iommu/tegra*
9046
9047 TEGRA KBC DRIVER
9048 M:      Rakesh Iyer <riyer@nvidia.com>
9049 M:      Laxman Dewangan <ldewangan@nvidia.com>
9050 S:      Supported
9051 F:      drivers/input/keyboard/tegra-kbc.c
9052
9053 TEGRA PINCTRL DRIVER
9054 M:      Stephen Warren <swarren@wwwdotorg.org>
9055 S:      Supported
9056 F:      drivers/pinctrl/pinctrl-tegra*
9057
9058 TEGRA PWM DRIVER
9059 M:      Thierry Reding <thierry.reding@gmail.com>
9060 S:      Supported
9061 F:      drivers/pwm/pwm-tegra.c
9062
9063 TEGRA SERIAL DRIVER
9064 M:      Laxman Dewangan <ldewangan@nvidia.com>
9065 S:      Supported
9066 F:      drivers/tty/serial/serial-tegra.c
9067
9068 TEGRA SPI DRIVER
9069 M:      Laxman Dewangan <ldewangan@nvidia.com>
9070 S:      Supported
9071 F:      drivers/spi/spi-tegra*
9072
9073 TEHUTI ETHERNET DRIVER
9074 M:      Andy Gospodarek <andy@greyhouse.net>
9075 L:      netdev@vger.kernel.org
9076 S:      Supported
9077 F:      drivers/net/ethernet/tehuti/*
9078
9079 Telecom Clock Driver for MCPL0010
9080 M:      Mark Gross <mark.gross@intel.com>
9081 S:      Supported
9082 F:      drivers/char/tlclk.c
9083
9084 TENSILICA XTENSA PORT (xtensa)
9085 M:      Chris Zankel <chris@zankel.net>
9086 M:      Max Filippov <jcmvbkbc@gmail.com>
9087 L:      linux-xtensa@linux-xtensa.org
9088 S:      Maintained
9089 F:      arch/xtensa/
9090 F:      drivers/irqchip/irq-xtensa-*
9091
9092 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
9093 M:      Hans Verkuil <hverkuil@xs4all.nl>
9094 L:      linux-media@vger.kernel.org
9095 T:      git git://linuxtv.org/media_tree.git
9096 W:      http://linuxtv.org
9097 S:      Maintained
9098 F:      drivers/media/radio/radio-raremono.c
9099
9100 THERMAL
9101 M:      Zhang Rui <rui.zhang@intel.com>
9102 M:      Eduardo Valentin <edubezval@gmail.com>
9103 L:      linux-pm@vger.kernel.org
9104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
9105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
9106 Q:      https://patchwork.kernel.org/project/linux-pm/list/
9107 S:      Supported
9108 F:      drivers/thermal/
9109 F:      include/linux/thermal.h
9110 F:      include/linux/cpu_cooling.h
9111 F:      Documentation/devicetree/bindings/thermal/
9112
9113 THINGM BLINK(1) USB RGB LED DRIVER
9114 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9115 S:      Maintained
9116 F:      drivers/hid/hid-thingm.c
9117
9118 THINKPAD ACPI EXTRAS DRIVER
9119 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
9120 L:      ibm-acpi-devel@lists.sourceforge.net
9121 L:      platform-driver-x86@vger.kernel.org
9122 W:      http://ibm-acpi.sourceforge.net
9123 W:      http://thinkwiki.org/wiki/Ibm-acpi
9124 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
9125 S:      Maintained
9126 F:      drivers/platform/x86/thinkpad_acpi.c
9127
9128 TI BANDGAP AND THERMAL DRIVER
9129 M:      Eduardo Valentin <edubezval@gmail.com>
9130 L:      linux-pm@vger.kernel.org
9131 S:      Supported
9132 F:      drivers/thermal/ti-soc-thermal/
9133
9134 TI CLOCK DRIVER
9135 M:      Tero Kristo <t-kristo@ti.com>
9136 L:      linux-omap@vger.kernel.org
9137 S:      Maintained
9138 F:      drivers/clk/ti/
9139 F:      include/linux/clk/ti.h
9140
9141 TI FLASH MEDIA INTERFACE DRIVER
9142 M:      Alex Dubov <oakad@yahoo.com>
9143 S:      Maintained
9144 F:      drivers/misc/tifm*
9145 F:      drivers/mmc/host/tifm_sd.c
9146 F:      include/linux/tifm.h
9147
9148 TI LM49xxx FAMILY ASoC CODEC DRIVERS
9149 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
9150 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
9151 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9152 S:      Maintained
9153 F:      sound/soc/codecs/lm49453*
9154 F:      sound/soc/codecs/isabelle*
9155
9156 TI LP855x BACKLIGHT DRIVER
9157 M:      Milo Kim <milo.kim@ti.com>
9158 S:      Maintained
9159 F:      Documentation/backlight/lp855x-driver.txt
9160 F:      drivers/video/backlight/lp855x_bl.c
9161 F:      include/linux/platform_data/lp855x.h
9162
9163 TI LP8727 CHARGER DRIVER
9164 M:      Milo Kim <milo.kim@ti.com>
9165 S:      Maintained
9166 F:      drivers/power/lp8727_charger.c
9167 F:      include/linux/platform_data/lp8727.h
9168
9169 TI LP8788 MFD DRIVER
9170 M:      Milo Kim <milo.kim@ti.com>
9171 S:      Maintained
9172 F:      drivers/iio/adc/lp8788_adc.c
9173 F:      drivers/leds/leds-lp8788.c
9174 F:      drivers/mfd/lp8788*.c
9175 F:      drivers/power/lp8788-charger.c
9176 F:      drivers/regulator/lp8788-*.c
9177 F:      include/linux/mfd/lp8788*.h
9178
9179 TI TWL4030 SERIES SOC CODEC DRIVER
9180 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
9181 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9182 S:      Maintained
9183 F:      sound/soc/codecs/twl4030*
9184
9185 TI WILINK WIRELESS DRIVERS
9186 L:      linux-wireless@vger.kernel.org
9187 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
9188 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
9189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
9190 S:      Orphan
9191 F:      drivers/net/wireless/ti/
9192 F:      include/linux/wl12xx.h
9193
9194 TIPC NETWORK LAYER
9195 M:      Jon Maloy <jon.maloy@ericsson.com>
9196 M:      Allan Stephens <allan.stephens@windriver.com>
9197 L:      netdev@vger.kernel.org (core kernel code)
9198 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
9199 W:      http://tipc.sourceforge.net/
9200 S:      Maintained
9201 F:      include/uapi/linux/tipc*.h
9202 F:      net/tipc/
9203
9204 TILE ARCHITECTURE
9205 M:      Chris Metcalf <cmetcalf@tilera.com>
9206 W:      http://www.tilera.com/scm/
9207 S:      Supported
9208 F:      arch/tile/
9209 F:      drivers/char/tile-srom.c
9210 F:      drivers/edac/tile_edac.c
9211 F:      drivers/net/ethernet/tile/
9212 F:      drivers/rtc/rtc-tile.c
9213 F:      drivers/tty/hvc/hvc_tile.c
9214 F:      drivers/tty/serial/tilegx.c
9215 F:      drivers/usb/host/*-tilegx.c
9216 F:      include/linux/usb/tilegx.h
9217
9218 TLAN NETWORK DRIVER
9219 M:      Samuel Chessman <chessman@tux.org>
9220 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
9221 W:      http://sourceforge.net/projects/tlan/
9222 S:      Maintained
9223 F:      Documentation/networking/tlan.txt
9224 F:      drivers/net/ethernet/ti/tlan.*
9225
9226 TOMOYO SECURITY MODULE
9227 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
9228 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
9229 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
9230 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
9231 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
9232 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
9233 W:      http://tomoyo.sourceforge.jp/
9234 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
9235 S:      Maintained
9236 F:      security/tomoyo/
9237
9238 TOPSTAR LAPTOP EXTRAS DRIVER
9239 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9240 L:      platform-driver-x86@vger.kernel.org
9241 S:      Maintained
9242 F:      drivers/platform/x86/topstar-laptop.c
9243
9244 TOSHIBA ACPI EXTRAS DRIVER
9245 L:      platform-driver-x86@vger.kernel.org
9246 S:      Orphan
9247 F:      drivers/platform/x86/toshiba_acpi.c
9248
9249 TOSHIBA SMM DRIVER
9250 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
9251 L:      tlinux-users@tce.toshiba-dme.co.jp
9252 W:      http://www.buzzard.org.uk/toshiba/
9253 S:      Maintained
9254 F:      drivers/char/toshiba.c
9255 F:      include/linux/toshiba.h
9256 F:      include/uapi/linux/toshiba.h
9257
9258 TMIO MMC DRIVER
9259 M:      Ian Molton <ian.molton@codethink.co.uk>
9260 L:      linux-mmc@vger.kernel.org
9261 S:      Maintained
9262 F:      drivers/mmc/host/tmio_mmc*
9263 F:      drivers/mmc/host/sh_mobile_sdhi.c
9264 F:      include/linux/mmc/tmio.h
9265 F:      include/linux/mmc/sh_mobile_sdhi.h
9266
9267 TMP401 HARDWARE MONITOR DRIVER
9268 M:      Guenter Roeck <linux@roeck-us.net>
9269 L:      lm-sensors@lm-sensors.org
9270 S:      Maintained
9271 F:      Documentation/hwmon/tmp401
9272 F:      drivers/hwmon/tmp401.c
9273
9274 TMPFS (SHMEM FILESYSTEM)
9275 M:      Hugh Dickins <hughd@google.com>
9276 L:      linux-mm@kvack.org
9277 S:      Maintained
9278 F:      include/linux/shmem_fs.h
9279 F:      mm/shmem.c
9280
9281 TM6000 VIDEO4LINUX DRIVER
9282 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
9283 L:      linux-media@vger.kernel.org
9284 W:      http://linuxtv.org
9285 T:      git git://linuxtv.org/media_tree.git
9286 S:      Odd fixes
9287 F:      drivers/media/usb/tm6000/
9288
9289 TPM DEVICE DRIVER
9290 M:      Peter Huewe <peterhuewe@gmx.de>
9291 M:      Ashley Lai <ashley@ashleylai.com>
9292 M:      Marcel Selhorst <tpmdd@selhorst.net>
9293 W:      http://tpmdd.sourceforge.net
9294 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
9295 S:      Maintained
9296 F:      drivers/char/tpm/
9297
9298 TRACING
9299 M:      Steven Rostedt <rostedt@goodmis.org>
9300 M:      Ingo Molnar <mingo@redhat.com>
9301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
9302 S:      Maintained
9303 F:      Documentation/trace/ftrace.txt
9304 F:      arch/*/*/*/ftrace.h
9305 F:      arch/*/kernel/ftrace.c
9306 F:      include/*/ftrace.h
9307 F:      include/linux/trace*.h
9308 F:      include/trace/
9309 F:      kernel/trace/
9310
9311 TRIVIAL PATCHES
9312 M:      Jiri Kosina <trivial@kernel.org>
9313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
9314 S:      Maintained
9315 K:      ^Subject:.*(?i)trivial
9316
9317 TTY LAYER
9318 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9319 M:      Jiri Slaby <jslaby@suse.cz>
9320 S:      Supported
9321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
9322 F:      drivers/tty/
9323 F:      drivers/tty/serial/serial_core.c
9324 F:      include/linux/serial_core.h
9325 F:      include/linux/serial.h
9326 F:      include/linux/tty.h
9327 F:      include/uapi/linux/serial_core.h
9328 F:      include/uapi/linux/serial.h
9329 F:      include/uapi/linux/tty.h
9330
9331 TUA9001 MEDIA DRIVER
9332 M:      Antti Palosaari <crope@iki.fi>
9333 L:      linux-media@vger.kernel.org
9334 W:      http://linuxtv.org/
9335 W:      http://palosaari.fi/linux/
9336 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9337 T:      git git://linuxtv.org/anttip/media_tree.git
9338 S:      Maintained
9339 F:      drivers/media/tuners/tua9001*
9340
9341 TULIP NETWORK DRIVERS
9342 M:      Grant Grundler <grundler@parisc-linux.org>
9343 L:      netdev@vger.kernel.org
9344 S:      Maintained
9345 F:      drivers/net/ethernet/dec/tulip/
9346
9347 TUN/TAP driver
9348 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
9349 W:      http://vtun.sourceforge.net/tun
9350 S:      Maintained
9351 F:      Documentation/networking/tuntap.txt
9352 F:      arch/um/os-Linux/drivers/
9353
9354 TURBOCHANNEL SUBSYSTEM
9355 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
9356 M:      Ralf Baechle <ralf@linux-mips.org>
9357 L:      linux-mips@linux-mips.org
9358 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
9359 S:      Maintained
9360 F:      drivers/tc/
9361 F:      include/linux/tc.h
9362
9363 U14-34F SCSI DRIVER
9364 M:      Dario Ballabio <ballabio_dario@emc.com>
9365 L:      linux-scsi@vger.kernel.org
9366 S:      Maintained
9367 F:      drivers/scsi/u14-34f.c
9368
9369 UBI FILE SYSTEM (UBIFS)
9370 M:      Artem Bityutskiy <dedekind1@gmail.com>
9371 M:      Adrian Hunter <adrian.hunter@intel.com>
9372 L:      linux-mtd@lists.infradead.org
9373 T:      git git://git.infradead.org/ubifs-2.6.git
9374 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
9375 S:      Maintained
9376 F:      Documentation/filesystems/ubifs.txt
9377 F:      fs/ubifs/
9378
9379 UCLINUX (AND M68KNOMMU)
9380 M:      Greg Ungerer <gerg@uclinux.org>
9381 W:      http://www.uclinux.org/
9382 L:      uclinux-dev@uclinux.org  (subscribers-only)
9383 S:      Maintained
9384 F:      arch/m68k/*/*_no.*
9385 F:      arch/m68k/include/asm/*_no.*
9386
9387 UDF FILESYSTEM
9388 M:      Jan Kara <jack@suse.cz>
9389 S:      Maintained
9390 F:      Documentation/filesystems/udf.txt
9391 F:      fs/udf/
9392
9393 UFS FILESYSTEM
9394 M:      Evgeniy Dushistov <dushistov@mail.ru>
9395 S:      Maintained
9396 F:      Documentation/filesystems/ufs.txt
9397 F:      fs/ufs/
9398
9399 UHID USERSPACE HID IO DRIVER:
9400 M:      David Herrmann <dh.herrmann@googlemail.com>
9401 L:      linux-input@vger.kernel.org
9402 S:      Maintained
9403 F:      drivers/hid/uhid.c
9404 F:      include/uapi/linux/uhid.h
9405
9406 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
9407 L:      linux-usb@vger.kernel.org
9408 S:      Orphan
9409 F:      drivers/uwb/
9410 F:      include/linux/uwb.h
9411 F:      include/linux/uwb/
9412
9413 UNICORE32 ARCHITECTURE:
9414 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
9415 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
9416 S:      Maintained
9417 T:      git git://github.com/gxt/linux.git
9418 F:      arch/unicore32/
9419
9420 UNIFDEF
9421 M:      Tony Finch <dot@dotat.at>
9422 W:      http://dotat.at/prog/unifdef
9423 S:      Maintained
9424 F:      scripts/unifdef.c
9425
9426 UNIFORM CDROM DRIVER
9427 M:      Jens Axboe <axboe@kernel.dk>
9428 W:      http://www.kernel.dk
9429 S:      Maintained
9430 F:      Documentation/cdrom/
9431 F:      drivers/cdrom/cdrom.c
9432 F:      include/linux/cdrom.h
9433 F:      include/uapi/linux/cdrom.h
9434
9435 UNISYS S-PAR DRIVERS
9436 M:     Benjamin Romer <benjamin.romer@unisys.com>
9437 M:     David Kershner <david.kershner@unisys.com>
9438 L:     sparmaintainer@unisys.com (Unisys internal)
9439 S:     Supported
9440 F:     drivers/staging/unisys/
9441
9442 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
9443 M:      Vinayak Holikatti <vinholikatti@gmail.com>
9444 M:      Santosh Y <santoshsy@gmail.com>
9445 L:      linux-scsi@vger.kernel.org
9446 S:      Supported
9447 F:      Documentation/scsi/ufs.txt
9448 F:      drivers/scsi/ufs/
9449
9450 UNSORTED BLOCK IMAGES (UBI)
9451 M:      Artem Bityutskiy <dedekind1@gmail.com>
9452 W:      http://www.linux-mtd.infradead.org/
9453 L:      linux-mtd@lists.infradead.org
9454 T:      git git://git.infradead.org/ubifs-2.6.git
9455 S:      Maintained
9456 F:      drivers/mtd/ubi/
9457 F:      include/linux/mtd/ubi.h
9458 F:      include/uapi/mtd/ubi-user.h
9459
9460 UNSORTED BLOCK IMAGES (UBI) Fastmap
9461 M:      Richard Weinberger <richard@nod.at>
9462 L:      linux-mtd@lists.infradead.org
9463 S:      Maintained
9464 F:      drivers/mtd/ubi/fastmap.c
9465
9466 USB ACM DRIVER
9467 M:      Oliver Neukum <oliver@neukum.org>
9468 L:      linux-usb@vger.kernel.org
9469 S:      Maintained
9470 F:      Documentation/usb/acm.txt
9471 F:      drivers/usb/class/cdc-acm.*
9472
9473 USB AR5523 WIRELESS DRIVER
9474 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
9475 L:      linux-wireless@vger.kernel.org
9476 S:      Maintained
9477 F:      drivers/net/wireless/ath/ar5523/
9478
9479 USB ATTACHED SCSI
9480 M:      Hans de Goede <hdegoede@redhat.com>
9481 M:      Gerd Hoffmann <kraxel@redhat.com>
9482 L:      linux-usb@vger.kernel.org
9483 L:      linux-scsi@vger.kernel.org
9484 S:      Maintained
9485 F:      drivers/usb/storage/uas.c
9486
9487 USB CDC ETHERNET DRIVER
9488 M:      Oliver Neukum <oliver@neukum.org>
9489 L:      linux-usb@vger.kernel.org
9490 S:      Maintained
9491 F:      drivers/net/usb/cdc_*.c
9492 F:      include/uapi/linux/usb/cdc.h
9493
9494 USB CYPRESS C67X00 DRIVER
9495 M:      Peter Korsgaard <jacmet@sunsite.dk>
9496 L:      linux-usb@vger.kernel.org
9497 S:      Maintained
9498 F:      drivers/usb/c67x00/
9499
9500 USB DAVICOM DM9601 DRIVER
9501 M:      Peter Korsgaard <jacmet@sunsite.dk>
9502 L:      netdev@vger.kernel.org
9503 W:      http://www.linux-usb.org/usbnet
9504 S:      Maintained
9505 F:      drivers/net/usb/dm9601.c
9506
9507 USB DIAMOND RIO500 DRIVER
9508 M:      Cesar Miquel <miquel@df.uba.ar>
9509 L:      rio500-users@lists.sourceforge.net
9510 W:      http://rio500.sourceforge.net
9511 S:      Maintained
9512 F:      drivers/usb/misc/rio500*
9513
9514 USB EHCI DRIVER
9515 M:      Alan Stern <stern@rowland.harvard.edu>
9516 L:      linux-usb@vger.kernel.org
9517 S:      Maintained
9518 F:      Documentation/usb/ehci.txt
9519 F:      drivers/usb/host/ehci*
9520
9521 USB GADGET/PERIPHERAL SUBSYSTEM
9522 M:      Felipe Balbi <balbi@ti.com>
9523 L:      linux-usb@vger.kernel.org
9524 W:      http://www.linux-usb.org/gadget
9525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
9526 S:      Maintained
9527 F:      drivers/usb/gadget/
9528 F:      include/linux/usb/gadget*
9529
9530 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
9531 M:      Jiri Kosina <jkosina@suse.cz>
9532 L:      linux-usb@vger.kernel.org
9533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
9534 S:      Maintained
9535 F:      Documentation/hid/hiddev.txt
9536 F:      drivers/hid/usbhid/
9537
9538 USB/IP DRIVERS
9539 L:      linux-usb@vger.kernel.org
9540 S:      Orphan
9541 F:      drivers/staging/usbip/
9542
9543 USB ISP116X DRIVER
9544 M:      Olav Kongas <ok@artecdesign.ee>
9545 L:      linux-usb@vger.kernel.org
9546 S:      Maintained
9547 F:      drivers/usb/host/isp116x*
9548 F:      include/linux/usb/isp116x.h
9549
9550 USB MASS STORAGE DRIVER
9551 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
9552 L:      linux-usb@vger.kernel.org
9553 L:      usb-storage@lists.one-eyed-alien.net
9554 S:      Maintained
9555 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
9556 F:      drivers/usb/storage/
9557
9558 USB MIDI DRIVER
9559 M:      Clemens Ladisch <clemens@ladisch.de>
9560 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9561 T:      git git://git.alsa-project.org/alsa-kernel.git
9562 S:      Maintained
9563 F:      sound/usb/midi.*
9564
9565 USB NETWORKING DRIVERS
9566 L:      linux-usb@vger.kernel.org
9567 S:      Odd Fixes
9568 F:      drivers/net/usb/
9569
9570 USB OHCI DRIVER
9571 M:      Alan Stern <stern@rowland.harvard.edu>
9572 L:      linux-usb@vger.kernel.org
9573 S:      Maintained
9574 F:      Documentation/usb/ohci.txt
9575 F:      drivers/usb/host/ohci*
9576
9577 USB OVER IP DRIVER
9578 M:      Valentina Manea <valentina.manea.m@gmail.com>
9579 M:      Shuah Khan <shuah.kh@samsung.com>
9580 L:      linux-usb@vger.kernel.org
9581 S:      Maintained
9582 F:      drivers/usb/usbip/
9583 F:      tools/usb/usbip/
9584
9585 USB PEGASUS DRIVER
9586 M:      Petko Manolov <petkan@nucleusys.com>
9587 L:      linux-usb@vger.kernel.org
9588 L:      netdev@vger.kernel.org
9589 T:      git git://github.com/petkan/pegasus.git
9590 W:      https://github.com/petkan/pegasus
9591 S:      Maintained
9592 F:      drivers/net/usb/pegasus.*
9593
9594 USB PHY LAYER
9595 M:      Felipe Balbi <balbi@ti.com>
9596 L:      linux-usb@vger.kernel.org
9597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
9598 S:      Maintained
9599 F:      drivers/usb/phy/
9600
9601 USB PRINTER DRIVER (usblp)
9602 M:      Pete Zaitcev <zaitcev@redhat.com>
9603 L:      linux-usb@vger.kernel.org
9604 S:      Supported
9605 F:      drivers/usb/class/usblp.c
9606
9607 USB RTL8150 DRIVER
9608 M:      Petko Manolov <petkan@nucleusys.com>
9609 L:      linux-usb@vger.kernel.org
9610 L:      netdev@vger.kernel.org
9611 T:      git git://github.com/petkan/rtl8150.git
9612 W:      https://github.com/petkan/rtl8150
9613 S:      Maintained
9614 F:      drivers/net/usb/rtl8150.c
9615
9616 USB SERIAL SUBSYSTEM
9617 M:      Johan Hovold <johan@kernel.org>
9618 L:      linux-usb@vger.kernel.org
9619 S:      Maintained
9620 F:      Documentation/usb/usb-serial.txt
9621 F:      drivers/usb/serial/
9622 F:      include/linux/usb/serial.h
9623
9624 USB SMSC75XX ETHERNET DRIVER
9625 M:      Steve Glendinning <steve.glendinning@shawell.net>
9626 L:      netdev@vger.kernel.org
9627 S:      Maintained
9628 F:      drivers/net/usb/smsc75xx.*
9629
9630 USB SMSC95XX ETHERNET DRIVER
9631 M:      Steve Glendinning <steve.glendinning@shawell.net>
9632 L:      netdev@vger.kernel.org
9633 S:      Maintained
9634 F:      drivers/net/usb/smsc95xx.*
9635
9636 USB SUBSYSTEM
9637 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9638 L:      linux-usb@vger.kernel.org
9639 W:      http://www.linux-usb.org
9640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
9641 S:      Supported
9642 F:      Documentation/usb/
9643 F:      drivers/usb/
9644 F:      include/linux/usb.h
9645 F:      include/linux/usb/
9646
9647 USB UHCI DRIVER
9648 M:      Alan Stern <stern@rowland.harvard.edu>
9649 L:      linux-usb@vger.kernel.org
9650 S:      Maintained
9651 F:      drivers/usb/host/uhci*
9652
9653 USB "USBNET" DRIVER FRAMEWORK
9654 M:      Oliver Neukum <oneukum@suse.de>
9655 L:      netdev@vger.kernel.org
9656 W:      http://www.linux-usb.org/usbnet
9657 S:      Maintained
9658 F:      drivers/net/usb/usbnet.c
9659 F:      include/linux/usb/usbnet.h
9660
9661 USB VIDEO CLASS
9662 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9663 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
9664 L:      linux-media@vger.kernel.org
9665 T:      git git://linuxtv.org/media_tree.git
9666 W:      http://www.ideasonboard.org/uvc/
9667 S:      Maintained
9668 F:      drivers/media/usb/uvc/
9669 F:      include/uapi/linux/uvcvideo.h
9670
9671 USB VISION DRIVER
9672 M:      Hans Verkuil <hverkuil@xs4all.nl>
9673 L:      linux-media@vger.kernel.org
9674 T:      git git://linuxtv.org/media_tree.git
9675 W:      http://linuxtv.org
9676 S:      Odd Fixes
9677 F:      drivers/media/usb/usbvision/
9678
9679 USB WEBCAM GADGET
9680 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9681 L:      linux-usb@vger.kernel.org
9682 S:      Maintained
9683 F:      drivers/usb/gadget/function/*uvc*.c
9684 F:      drivers/usb/gadget/legacy/webcam.c
9685
9686 USB WIRELESS RNDIS DRIVER (rndis_wlan)
9687 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
9688 L:      linux-wireless@vger.kernel.org
9689 S:      Maintained
9690 F:      drivers/net/wireless/rndis_wlan.c
9691
9692 USB XHCI DRIVER
9693 M:      Mathias Nyman <mathias.nyman@intel.com>
9694 L:      linux-usb@vger.kernel.org
9695 S:      Supported
9696 F:      drivers/usb/host/xhci*
9697 F:      drivers/usb/host/pci-quirks*
9698
9699 USB ZD1201 DRIVER
9700 L:      linux-wireless@vger.kernel.org
9701 W:      http://linux-lc100020.sourceforge.net
9702 S:      Orphan
9703 F:      drivers/net/wireless/zd1201.*
9704
9705 USB ZR364XX DRIVER
9706 M:      Antoine Jacquet <royale@zerezo.com>
9707 L:      linux-usb@vger.kernel.org
9708 L:      linux-media@vger.kernel.org
9709 T:      git git://linuxtv.org/media_tree.git
9710 W:      http://royale.zerezo.com/zr364xx/
9711 S:      Maintained
9712 F:      Documentation/video4linux/zr364xx.txt
9713 F:      drivers/media/usb/zr364xx/
9714
9715 USER-MODE LINUX (UML)
9716 M:      Jeff Dike <jdike@addtoit.com>
9717 M:      Richard Weinberger <richard@nod.at>
9718 L:      user-mode-linux-devel@lists.sourceforge.net
9719 L:      user-mode-linux-user@lists.sourceforge.net
9720 W:      http://user-mode-linux.sourceforge.net
9721 S:      Maintained
9722 F:      Documentation/virtual/uml/
9723 F:      arch/um/
9724 F:      arch/x86/um/
9725 F:      fs/hostfs/
9726 F:      fs/hppfs/
9727
9728 USERSPACE I/O (UIO)
9729 M:      "Hans J. Koch" <hjk@hansjkoch.de>
9730 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9731 S:      Maintained
9732 F:      Documentation/DocBook/uio-howto.tmpl
9733 F:      drivers/uio/
9734 F:      include/linux/uio*.h
9735
9736 UTIL-LINUX PACKAGE
9737 M:      Karel Zak <kzak@redhat.com>
9738 L:      util-linux@vger.kernel.org
9739 W:      http://en.wikipedia.org/wiki/Util-linux
9740 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
9741 S:      Maintained
9742
9743 UVESAFB DRIVER
9744 M:      Michal Januszewski <spock@gentoo.org>
9745 L:      linux-fbdev@vger.kernel.org
9746 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
9747 S:      Maintained
9748 F:      Documentation/fb/uvesafb.txt
9749 F:      drivers/video/fbdev/uvesafb.*
9750
9751 VFAT/FAT/MSDOS FILESYSTEM
9752 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
9753 S:      Maintained
9754 F:      Documentation/filesystems/vfat.txt
9755 F:      fs/fat/
9756
9757 VFIO DRIVER
9758 M:      Alex Williamson <alex.williamson@redhat.com>
9759 L:      kvm@vger.kernel.org
9760 S:      Maintained
9761 F:      Documentation/vfio.txt
9762 F:      drivers/vfio/
9763 F:      include/linux/vfio.h
9764 F:      include/uapi/linux/vfio.h
9765
9766 VIDEOBUF2 FRAMEWORK
9767 M:      Pawel Osciak <pawel@osciak.com>
9768 M:      Marek Szyprowski <m.szyprowski@samsung.com>
9769 M:      Kyungmin Park <kyungmin.park@samsung.com>
9770 L:      linux-media@vger.kernel.org
9771 S:      Maintained
9772 F:      drivers/media/v4l2-core/videobuf2-*
9773 F:      include/media/videobuf2-*
9774
9775 VIRTIO CONSOLE DRIVER
9776 M:      Amit Shah <amit.shah@redhat.com>
9777 L:      virtualization@lists.linux-foundation.org
9778 S:      Maintained
9779 F:      drivers/char/virtio_console.c
9780 F:      include/linux/virtio_console.h
9781 F:      include/uapi/linux/virtio_console.h
9782
9783 VIRTIO CORE, NET AND BLOCK DRIVERS
9784 M:      Rusty Russell <rusty@rustcorp.com.au>
9785 M:      "Michael S. Tsirkin" <mst@redhat.com>
9786 L:      virtualization@lists.linux-foundation.org
9787 S:      Maintained
9788 F:      drivers/virtio/
9789 F:      tools/virtio/
9790 F:      drivers/net/virtio_net.c
9791 F:      drivers/block/virtio_blk.c
9792 F:      include/linux/virtio_*.h
9793 F:      include/uapi/linux/virtio_*.h
9794
9795 VIRTIO HOST (VHOST)
9796 M:      "Michael S. Tsirkin" <mst@redhat.com>
9797 L:      kvm@vger.kernel.org
9798 L:      virtualization@lists.linux-foundation.org
9799 L:      netdev@vger.kernel.org
9800 S:      Maintained
9801 F:      drivers/vhost/
9802 F:      include/uapi/linux/vhost.h
9803
9804 VIA RHINE NETWORK DRIVER
9805 M:      Roger Luethi <rl@hellgate.ch>
9806 S:      Maintained
9807 F:      drivers/net/ethernet/via/via-rhine.c
9808
9809 VIA SD/MMC CARD CONTROLLER DRIVER
9810 M:      Bruce Chang <brucechang@via.com.tw>
9811 M:      Harald Welte <HaraldWelte@viatech.com>
9812 S:      Maintained
9813 F:      drivers/mmc/host/via-sdmmc.c
9814
9815 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
9816 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
9817 L:      linux-fbdev@vger.kernel.org
9818 S:      Maintained
9819 F:      include/linux/via-core.h
9820 F:      include/linux/via-gpio.h
9821 F:      include/linux/via_i2c.h
9822 F:      drivers/video/fbdev/via/
9823
9824 VIA VELOCITY NETWORK DRIVER
9825 M:      Francois Romieu <romieu@fr.zoreil.com>
9826 L:      netdev@vger.kernel.org
9827 S:      Maintained
9828 F:      drivers/net/ethernet/via/via-velocity.*
9829
9830 VIVI VIRTUAL VIDEO DRIVER
9831 M:      Hans Verkuil <hverkuil@xs4all.nl>
9832 L:      linux-media@vger.kernel.org
9833 T:      git git://linuxtv.org/media_tree.git
9834 W:      http://linuxtv.org
9835 S:      Maintained
9836 F:      drivers/media/platform/vivi*
9837
9838 VLAN (802.1Q)
9839 M:      Patrick McHardy <kaber@trash.net>
9840 L:      netdev@vger.kernel.org
9841 S:      Maintained
9842 F:      drivers/net/macvlan.c
9843 F:      include/linux/if_*vlan.h
9844 F:      net/8021q/
9845
9846 VLYNQ BUS
9847 M:      Florian Fainelli <florian@openwrt.org>
9848 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
9849 S:      Maintained
9850 F:      drivers/vlynq/vlynq.c
9851 F:      include/linux/vlynq.h
9852
9853 VME SUBSYSTEM
9854 M:      Martyn Welch <martyn.welch@ge.com>
9855 M:      Manohar Vanga <manohar.vanga@gmail.com>
9856 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9857 L:      devel@driverdev.osuosl.org
9858 S:      Maintained
9859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9860 F:      Documentation/vme_api.txt
9861 F:      drivers/staging/vme/
9862 F:      drivers/vme/
9863 F:      include/linux/vme*
9864
9865 VMWARE HYPERVISOR INTERFACE
9866 M:      Alok Kataria <akataria@vmware.com>
9867 L:      virtualization@lists.linux-foundation.org
9868 S:      Supported
9869 F:      arch/x86/kernel/cpu/vmware.c
9870
9871 VMWARE BALLOON DRIVER
9872 M:      Xavier Deguillard <xdeguillard@vmware.com>
9873 M:      Philip Moltmann <moltmann@vmware.com>
9874 M:      "VMware, Inc." <pv-drivers@vmware.com>
9875 L:      linux-kernel@vger.kernel.org
9876 S:      Maintained
9877 F:      drivers/misc/vmw_balloon.c
9878
9879 VMWARE VMXNET3 ETHERNET DRIVER
9880 M:      Shreyas Bhatewara <sbhatewara@vmware.com>
9881 M:      "VMware, Inc." <pv-drivers@vmware.com>
9882 L:      netdev@vger.kernel.org
9883 S:      Maintained
9884 F:      drivers/net/vmxnet3/
9885
9886 VMware PVSCSI driver
9887 M:      Arvind Kumar <arvindkumar@vmware.com>
9888 M:      VMware PV-Drivers <pv-drivers@vmware.com>
9889 L:      linux-scsi@vger.kernel.org
9890 S:      Maintained
9891 F:      drivers/scsi/vmw_pvscsi.c
9892 F:      drivers/scsi/vmw_pvscsi.h
9893
9894 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
9895 M:      Liam Girdwood <lgirdwood@gmail.com>
9896 M:      Mark Brown <broonie@kernel.org>
9897 W:      http://opensource.wolfsonmicro.com/node/15
9898 W:      http://www.slimlogic.co.uk/?p=48
9899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
9900 S:      Supported
9901 F:      drivers/regulator/
9902 F:      include/linux/regulator/
9903
9904 VT1211 HARDWARE MONITOR DRIVER
9905 M:      Juerg Haefliger <juergh@gmail.com>
9906 L:      lm-sensors@lm-sensors.org
9907 S:      Maintained
9908 F:      Documentation/hwmon/vt1211
9909 F:      drivers/hwmon/vt1211.c
9910
9911 VT8231 HARDWARE MONITOR DRIVER
9912 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
9913 L:      lm-sensors@lm-sensors.org
9914 S:      Maintained
9915 F:      drivers/hwmon/vt8231.c
9916
9917 VUB300 USB to SDIO/SD/MMC bridge chip
9918 M:      Tony Olech <tony.olech@elandigitalsystems.com>
9919 L:      linux-mmc@vger.kernel.org
9920 L:      linux-usb@vger.kernel.org
9921 S:      Supported
9922 F:      drivers/mmc/host/vub300.c
9923
9924 W1 DALLAS'S 1-WIRE BUS
9925 M:      Evgeniy Polyakov <zbr@ioremap.net>
9926 S:      Maintained
9927 F:      Documentation/w1/
9928 F:      drivers/w1/
9929
9930 W83791D HARDWARE MONITORING DRIVER
9931 M:      Marc Hulsman <m.hulsman@tudelft.nl>
9932 L:      lm-sensors@lm-sensors.org
9933 S:      Maintained
9934 F:      Documentation/hwmon/w83791d
9935 F:      drivers/hwmon/w83791d.c
9936
9937 W83793 HARDWARE MONITORING DRIVER
9938 M:      Rudolf Marek <r.marek@assembler.cz>
9939 L:      lm-sensors@lm-sensors.org
9940 S:      Maintained
9941 F:      Documentation/hwmon/w83793
9942 F:      drivers/hwmon/w83793.c
9943
9944 W83795 HARDWARE MONITORING DRIVER
9945 M:      Jean Delvare <jdelvare@suse.de>
9946 L:      lm-sensors@lm-sensors.org
9947 S:      Maintained
9948 F:      drivers/hwmon/w83795.c
9949
9950 W83L51xD SD/MMC CARD INTERFACE DRIVER
9951 M:      Pierre Ossman <pierre@ossman.eu>
9952 S:      Maintained
9953 F:      drivers/mmc/host/wbsd.*
9954
9955 WACOM PROTOCOL 4 SERIAL TABLETS
9956 M:      Julian Squires <julian@cipht.net>
9957 M:      Hans de Goede <hdegoede@redhat.com>
9958 L:      linux-input@vger.kernel.org
9959 S:      Maintained
9960 F:      drivers/input/tablet/wacom_serial4.c
9961
9962 WATCHDOG DEVICE DRIVERS
9963 M:      Wim Van Sebroeck <wim@iguana.be>
9964 L:      linux-watchdog@vger.kernel.org
9965 W:      http://www.linux-watchdog.org/
9966 T:      git git://www.linux-watchdog.org/linux-watchdog.git
9967 S:      Maintained
9968 F:      Documentation/watchdog/
9969 F:      drivers/watchdog/
9970 F:      include/linux/watchdog.h
9971 F:      include/uapi/linux/watchdog.h
9972
9973 WD7000 SCSI DRIVER
9974 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
9975 L:      linux-scsi@vger.kernel.org
9976 S:      Maintained
9977 F:      drivers/scsi/wd7000.c
9978
9979 WIIMOTE HID DRIVER
9980 M:      David Herrmann <dh.herrmann@googlemail.com>
9981 L:      linux-input@vger.kernel.org
9982 S:      Maintained
9983 F:      drivers/hid/hid-wiimote*
9984
9985 WINBOND CIR DRIVER
9986 M:      David Härdeman <david@hardeman.nu>
9987 S:      Maintained
9988 F:      drivers/media/rc/winbond-cir.c
9989
9990 WIMAX STACK
9991 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
9992 M:      linux-wimax@intel.com
9993 L:     wimax@linuxwimax.org (subscribers-only)
9994 S:      Supported
9995 W:      http://linuxwimax.org
9996 F:      Documentation/wimax/README.wimax
9997 F:      include/linux/wimax/debug.h
9998 F:      include/net/wimax.h
9999 F:      include/uapi/linux/wimax.h
10000 F:      net/wimax/
10001
10002 WISTRON LAPTOP BUTTON DRIVER
10003 M:      Miloslav Trmac <mitr@volny.cz>
10004 S:      Maintained
10005 F:      drivers/input/misc/wistron_btns.c
10006
10007 WL3501 WIRELESS PCMCIA CARD DRIVER
10008 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
10009 L:      linux-wireless@vger.kernel.org
10010 W:      http://oops.ghostprotocols.net:81/blog
10011 S:      Maintained
10012 F:      drivers/net/wireless/wl3501*
10013
10014 WM97XX TOUCHSCREEN DRIVERS
10015 M:      Mark Brown <broonie@kernel.org>
10016 M:      Liam Girdwood <lrg@slimlogic.co.uk>
10017 L:      linux-input@vger.kernel.org
10018 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
10019 W:      http://opensource.wolfsonmicro.com/node/7
10020 S:      Supported
10021 F:      drivers/input/touchscreen/*wm97*
10022 F:      include/linux/wm97xx.h
10023
10024 WOLFSON MICROELECTRONICS DRIVERS
10025 L:      patches@opensource.wolfsonmicro.com
10026 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
10027 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
10028 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
10029 S:      Supported
10030 F:      Documentation/hwmon/wm83??
10031 F:      arch/arm/mach-s3c64xx/mach-crag6410*
10032 F:      drivers/clk/clk-wm83*.c
10033 F:      drivers/extcon/extcon-arizona.c
10034 F:      drivers/leds/leds-wm83*.c
10035 F:      drivers/gpio/gpio-*wm*.c
10036 F:      drivers/gpio/gpio-arizona.c
10037 F:      drivers/hwmon/wm83??-hwmon.c
10038 F:      drivers/input/misc/wm831x-on.c
10039 F:      drivers/input/touchscreen/wm831x-ts.c
10040 F:      drivers/input/touchscreen/wm97*.c
10041 F:      drivers/mfd/arizona*
10042 F:      drivers/mfd/wm*.c
10043 F:      drivers/power/wm83*.c
10044 F:      drivers/rtc/rtc-wm83*.c
10045 F:      drivers/regulator/wm8*.c
10046 F:      drivers/video/backlight/wm83*_bl.c
10047 F:      drivers/watchdog/wm83*_wdt.c
10048 F:      include/linux/mfd/arizona/
10049 F:      include/linux/mfd/wm831x/
10050 F:      include/linux/mfd/wm8350/
10051 F:      include/linux/mfd/wm8400*
10052 F:      include/linux/wm97xx.h
10053 F:      include/sound/wm????.h
10054 F:      sound/soc/codecs/arizona.?
10055 F:      sound/soc/codecs/wm*
10056
10057 WORKQUEUE
10058 M:      Tejun Heo <tj@kernel.org>
10059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
10060 S:      Maintained
10061 F:      include/linux/workqueue.h
10062 F:      kernel/workqueue.c
10063 F:      Documentation/workqueue.txt
10064
10065 X.25 NETWORK LAYER
10066 M:      Andrew Hendry <andrew.hendry@gmail.com>
10067 L:      linux-x25@vger.kernel.org
10068 S:      Odd Fixes
10069 F:      Documentation/networking/x25*
10070 F:      include/net/x25*
10071 F:      net/x25/
10072
10073 X86 ARCHITECTURE (32-BIT AND 64-BIT)
10074 M:      Thomas Gleixner <tglx@linutronix.de>
10075 M:      Ingo Molnar <mingo@redhat.com>
10076 M:      "H. Peter Anvin" <hpa@zytor.com>
10077 M:      x86@kernel.org
10078 L:      linux-kernel@vger.kernel.org
10079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
10080 S:      Maintained
10081 F:      Documentation/x86/
10082 F:      arch/x86/
10083
10084 X86 PLATFORM DRIVERS
10085 M:      Darren Hart <dvhart@infradead.org>
10086 L:      platform-driver-x86@vger.kernel.org
10087 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
10088 S:      Maintained
10089 F:      drivers/platform/x86/
10090
10091 X86 MCE INFRASTRUCTURE
10092 M:      Tony Luck <tony.luck@intel.com>
10093 M:      Borislav Petkov <bp@alien8.de>
10094 L:      linux-edac@vger.kernel.org
10095 S:      Maintained
10096 F:      arch/x86/kernel/cpu/mcheck/*
10097
10098 XC2028/3028 TUNER DRIVER
10099 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
10100 L:      linux-media@vger.kernel.org
10101 W:      http://linuxtv.org
10102 T:      git git://linuxtv.org/media_tree.git
10103 S:      Maintained
10104 F:      drivers/media/tuners/tuner-xc2028.*
10105
10106 XEN HYPERVISOR INTERFACE
10107 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10108 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
10109 M:      David Vrabel <david.vrabel@citrix.com>
10110 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
10112 S:      Supported
10113 F:      arch/x86/xen/
10114 F:      drivers/*/xen-*front.c
10115 F:      drivers/xen/
10116 F:      arch/x86/include/asm/xen/
10117 F:      include/xen/
10118 F:      include/uapi/xen/
10119
10120 XEN HYPERVISOR ARM
10121 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
10122 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10123 S:      Supported
10124 F:      arch/arm/xen/
10125 F:      arch/arm/include/asm/xen/
10126
10127 XEN HYPERVISOR ARM64
10128 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
10129 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10130 S:      Supported
10131 F:      arch/arm64/xen/
10132 F:      arch/arm64/include/asm/xen/
10133
10134 XEN NETWORK BACKEND DRIVER
10135 M:      Ian Campbell <ian.campbell@citrix.com>
10136 M:      Wei Liu <wei.liu2@citrix.com>
10137 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10138 L:      netdev@vger.kernel.org
10139 S:      Supported
10140 F:      drivers/net/xen-netback/*
10141
10142 XEN PCI SUBSYSTEM
10143 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10144 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10145 S:      Supported
10146 F:      arch/x86/pci/*xen*
10147 F:      drivers/pci/*xen*
10148
10149 XEN BLOCK SUBSYSTEM
10150 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10151 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10152 S:      Supported
10153 F:      drivers/block/xen-blkback/*
10154 F:      drivers/block/xen*
10155
10156 XEN SWIOTLB SUBSYSTEM
10157 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10158 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10159 S:      Supported
10160 F:      arch/x86/xen/*swiotlb*
10161 F:      drivers/xen/*swiotlb*
10162
10163 XFS FILESYSTEM
10164 P:      Silicon Graphics Inc
10165 M:      Dave Chinner <david@fromorbit.com>
10166 M:      xfs@oss.sgi.com
10167 L:      xfs@oss.sgi.com
10168 W:      http://oss.sgi.com/projects/xfs
10169 T:      git git://oss.sgi.com/xfs/xfs.git
10170 S:      Supported
10171 F:      Documentation/filesystems/xfs.txt
10172 F:      fs/xfs/
10173
10174 XILINX AXI ETHERNET DRIVER
10175 M:      Anirudha Sarangi <anirudh@xilinx.com>
10176 M:      John Linn <John.Linn@xilinx.com>
10177 S:      Maintained
10178 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
10179
10180 XILINX SYSTEMACE DRIVER
10181 S:      Orphan
10182 F:      drivers/block/xsysace.c
10183
10184 XILINX UARTLITE SERIAL DRIVER
10185 M:      Peter Korsgaard <jacmet@sunsite.dk>
10186 L:      linux-serial@vger.kernel.org
10187 S:      Maintained
10188 F:      drivers/tty/serial/uartlite.c
10189
10190 XTENSA XTFPGA PLATFORM SUPPORT
10191 M:      Max Filippov <jcmvbkbc@gmail.com>
10192 L:      linux-xtensa@linux-xtensa.org
10193 S:      Maintained
10194 F:      drivers/spi/spi-xtensa-xtfpga.c
10195
10196 YAM DRIVER FOR AX.25
10197 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
10198 L:      linux-hams@vger.kernel.org
10199 S:      Maintained
10200 F:      drivers/net/hamradio/yam*
10201 F:      include/linux/yam.h
10202
10203 YEALINK PHONE DRIVER
10204 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
10205 L:      usbb2k-api-dev@nongnu.org
10206 S:      Maintained
10207 F:      Documentation/input/yealink.txt
10208 F:      drivers/input/misc/yealink.*
10209
10210 Z8530 DRIVER FOR AX.25
10211 M:      Joerg Reuter <jreuter@yaina.de>
10212 W:      http://yaina.de/jreuter/
10213 W:      http://www.qsl.net/dl1bke/
10214 L:      linux-hams@vger.kernel.org
10215 S:      Maintained
10216 F:      Documentation/networking/z8530drv.txt
10217 F:      drivers/net/hamradio/*scc.c
10218 F:      drivers/net/hamradio/z8530.h
10219
10220 ZBUD COMPRESSED PAGE ALLOCATOR
10221 M:      Seth Jennings <sjennings@variantweb.net>
10222 L:      linux-mm@kvack.org
10223 S:      Maintained
10224 F:      mm/zbud.c
10225 F:      include/linux/zbud.h
10226
10227 ZD1211RW WIRELESS DRIVER
10228 M:      Daniel Drake <dsd@gentoo.org>
10229 M:      Ulrich Kunitz <kune@deine-taler.de>
10230 W:      http://zd1211.ath.cx/wiki/DriverRewrite
10231 L:      linux-wireless@vger.kernel.org
10232 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
10233 S:      Maintained
10234 F:      drivers/net/wireless/zd1211rw/
10235
10236 ZR36067 VIDEO FOR LINUX DRIVER
10237 L:      mjpeg-users@lists.sourceforge.net
10238 L:      linux-media@vger.kernel.org
10239 W:      http://mjpeg.sourceforge.net/driver-zoran/
10240 T:      hg http://linuxtv.org/hg/v4l-dvb
10241 S:      Odd Fixes
10242 F:      drivers/media/pci/zoran/
10243
10244 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
10245 M:      Minchan Kim <minchan@kernel.org>
10246 M:      Nitin Gupta <ngupta@vflare.org>
10247 L:      linux-kernel@vger.kernel.org
10248 S:      Maintained
10249 F:      drivers/block/zram/
10250 F:      Documentation/blockdev/zram.txt
10251
10252 ZS DECSTATION Z85C30 SERIAL DRIVER
10253 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10254 S:      Maintained
10255 F:      drivers/tty/serial/zs.*
10256
10257 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
10258 M:      Minchan Kim <minchan@kernel.org>
10259 M:      Nitin Gupta <ngupta@vflare.org>
10260 L:      linux-mm@kvack.org
10261 S:      Maintained
10262 F:      mm/zsmalloc.c
10263 F:      include/linux/zsmalloc.h
10264
10265 ZSWAP COMPRESSED SWAP CACHING
10266 M:      Seth Jennings <sjennings@variantweb.net>
10267 L:      linux-mm@kvack.org
10268 S:      Maintained
10269 F:      mm/zswap.c
10270
10271 THE REST
10272 M:      Linus Torvalds <torvalds@linux-foundation.org>
10273 L:      linux-kernel@vger.kernel.org
10274 Q:      http://patchwork.kernel.org/project/LKML/list/
10275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
10276 S:      Buried alive in reporters
10277 F:      *
10278 F:      */