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