Merge tag 'pm+acpi-3.20-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael...
[linux-drm-fsl-dcu.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 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161
162 6PACK NETWORK DRIVER FOR AX.25
163 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
164 L:      linux-hams@vger.kernel.org
165 S:      Maintained
166 F:      drivers/net/hamradio/6pack.c
167
168 8169 10/100/1000 GIGABIT ETHERNET DRIVER
169 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
170 L:      netdev@vger.kernel.org
171 S:      Maintained
172 F:      drivers/net/ethernet/realtek/r8169.c
173
174 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
175 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
176 L:      linux-serial@vger.kernel.org
177 W:      http://serial.sourceforge.net
178 S:      Maintained
179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
180 F:      drivers/tty/serial/8250*
181 F:      include/linux/serial_8250.h
182
183 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
184 L:      netdev@vger.kernel.org
185 S:      Orphan / Obsolete
186 F:      drivers/net/ethernet/8390/
187
188 9P FILE SYSTEM
189 M:      Eric Van Hensbergen <ericvh@gmail.com>
190 M:      Ron Minnich <rminnich@sandia.gov>
191 M:      Latchesar Ionkov <lucho@ionkov.net>
192 L:      v9fs-developer@lists.sourceforge.net
193 W:      http://swik.net/v9fs
194 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
196 S:      Maintained
197 F:      Documentation/filesystems/9p.txt
198 F:      fs/9p/
199 F:      net/9p/
200 F:      include/net/9p/
201 F:      include/uapi/linux/virtio_9p.h
202 F:      include/trace/events/9p.h
203
204
205 A8293 MEDIA DRIVER
206 M:      Antti Palosaari <crope@iki.fi>
207 L:      linux-media@vger.kernel.org
208 W:      http://linuxtv.org/
209 W:      http://palosaari.fi/linux/
210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
211 T:      git git://linuxtv.org/anttip/media_tree.git
212 S:      Maintained
213 F:      drivers/media/dvb-frontends/a8293*
214
215 AACRAID SCSI RAID DRIVER
216 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
217 L:      linux-scsi@vger.kernel.org
218 W:      http://www.adaptec.com/
219 S:      Supported
220 F:      Documentation/scsi/aacraid.txt
221 F:      drivers/scsi/aacraid/
222
223 ABI/API
224 L:      linux-api@vger.kernel.org
225 F:      Documentation/ABI/
226 F:      include/linux/syscalls.h
227 F:      include/uapi/
228 F:      kernel/sys_ni.c
229
230 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
231 M:      Hans de Goede <hdegoede@redhat.com>
232 L:      lm-sensors@lm-sensors.org
233 S:      Maintained
234 F:      drivers/hwmon/abituguru.c
235
236 ABIT UGURU 3 HARDWARE MONITOR DRIVER
237 M:      Alistair John Strachan <alistair@devzero.co.uk>
238 L:      lm-sensors@lm-sensors.org
239 S:      Maintained
240 F:      drivers/hwmon/abituguru3.c
241
242 ACENIC DRIVER
243 M:      Jes Sorensen <jes@trained-monkey.org>
244 L:      linux-acenic@sunsite.dk
245 S:      Maintained
246 F:      drivers/net/ethernet/alteon/acenic*
247
248 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
249 M:      Peter Feuerer <peter@piie.net>
250 L:      platform-driver-x86@vger.kernel.org
251 W:      http://piie.net/?section=acerhdf
252 S:      Maintained
253 F:      drivers/platform/x86/acerhdf.c
254
255 ACER WMI LAPTOP EXTRAS
256 M:      "Lee, Chun-Yi" <jlee@suse.com>
257 L:      platform-driver-x86@vger.kernel.org
258 S:      Maintained
259 F:      drivers/platform/x86/acer-wmi.c
260
261 ACPI
262 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
263 M:      Len Brown <lenb@kernel.org>
264 L:      linux-acpi@vger.kernel.org
265 W:      https://01.org/linux-acpi
266 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
268 S:      Supported
269 F:      drivers/acpi/
270 F:      drivers/pnp/pnpacpi/
271 F:      include/linux/acpi.h
272 F:      include/acpi/
273 F:      Documentation/acpi/
274 F:      Documentation/ABI/testing/sysfs-bus-acpi
275 F:      drivers/pci/*acpi*
276 F:      drivers/pci/*/*acpi*
277 F:      drivers/pci/*/*/*acpi*
278 F:      tools/power/acpi/
279
280 ACPI COMPONENT ARCHITECTURE (ACPICA)
281 M:      Robert Moore <robert.moore@intel.com>
282 M:      Lv Zheng <lv.zheng@intel.com>
283 M:      Rafael J. Wysocki <rafael.j.wysocki@intel.com>
284 L:      linux-acpi@vger.kernel.org
285 L:      devel@acpica.org
286 W:      https://acpica.org/
287 W:      https://github.com/acpica/acpica/
288 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
290 S:      Supported
291 F:      drivers/acpi/acpica/
292 F:      include/acpi/
293 F:      tools/power/acpi/
294
295 ACPI FAN DRIVER
296 M:      Zhang Rui <rui.zhang@intel.com>
297 L:      linux-acpi@vger.kernel.org
298 W:      https://01.org/linux-acpi
299 S:      Supported
300 F:      drivers/acpi/fan.c
301
302 ACPI THERMAL DRIVER
303 M:      Zhang Rui <rui.zhang@intel.com>
304 L:      linux-acpi@vger.kernel.org
305 W:      https://01.org/linux-acpi
306 S:      Supported
307 F:      drivers/acpi/*thermal*
308
309 ACPI VIDEO DRIVER
310 M:      Zhang Rui <rui.zhang@intel.com>
311 L:      linux-acpi@vger.kernel.org
312 W:      https://01.org/linux-acpi
313 S:      Supported
314 F:      drivers/acpi/video.c
315
316 ACPI WMI DRIVER
317 L:      platform-driver-x86@vger.kernel.org
318 S:      Orphan
319 F:      drivers/platform/x86/wmi.c
320
321 AD1889 ALSA SOUND DRIVER
322 M:      Thibaut Varene <T-Bone@parisc-linux.org>
323 W:      http://wiki.parisc-linux.org/AD1889
324 L:      linux-parisc@vger.kernel.org
325 S:      Maintained
326 F:      sound/pci/ad1889.*
327
328 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
329 M:      Michael Hennerich <michael.hennerich@analog.com>
330 W:      http://wiki.analog.com/AD5254
331 W:      http://ez.analog.com/community/linux-device-drivers
332 S:      Supported
333 F:      drivers/misc/ad525x_dpot.c
334
335 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
336 M:      Michael Hennerich <michael.hennerich@analog.com>
337 W:      http://wiki.analog.com/AD5398
338 W:      http://ez.analog.com/community/linux-device-drivers
339 S:      Supported
340 F:      drivers/regulator/ad5398.c
341
342 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
343 M:      Michael Hennerich <michael.hennerich@analog.com>
344 W:      http://wiki.analog.com/AD7142
345 W:      http://ez.analog.com/community/linux-device-drivers
346 S:      Supported
347 F:      drivers/input/misc/ad714x.c
348
349 AD7877 TOUCHSCREEN DRIVER
350 M:      Michael Hennerich <michael.hennerich@analog.com>
351 W:      http://wiki.analog.com/AD7877
352 W:      http://ez.analog.com/community/linux-device-drivers
353 S:      Supported
354 F:      drivers/input/touchscreen/ad7877.c
355
356 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
357 M:      Michael Hennerich <michael.hennerich@analog.com>
358 W:      http://wiki.analog.com/AD7879
359 W:      http://ez.analog.com/community/linux-device-drivers
360 S:      Supported
361 F:      drivers/input/touchscreen/ad7879.c
362
363 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
364 M:      Jiri Kosina <jkosina@suse.cz>
365 S:      Maintained
366
367 ADM1025 HARDWARE MONITOR DRIVER
368 M:      Jean Delvare <jdelvare@suse.de>
369 L:      lm-sensors@lm-sensors.org
370 S:      Maintained
371 F:      Documentation/hwmon/adm1025
372 F:      drivers/hwmon/adm1025.c
373
374 ADM1029 HARDWARE MONITOR DRIVER
375 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
376 L:      lm-sensors@lm-sensors.org
377 S:      Maintained
378 F:      drivers/hwmon/adm1029.c
379
380 ADM8211 WIRELESS DRIVER
381 L:      linux-wireless@vger.kernel.org
382 W:      http://wireless.kernel.org/
383 S:      Orphan
384 F:      drivers/net/wireless/adm8211.*
385
386 ADP1653 FLASH CONTROLLER DRIVER
387 M:      Sakari Ailus <sakari.ailus@iki.fi>
388 L:      linux-media@vger.kernel.org
389 S:      Maintained
390 F:      drivers/media/i2c/adp1653.c
391 F:      include/media/adp1653.h
392
393 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
394 M:      Michael Hennerich <michael.hennerich@analog.com>
395 W:      http://wiki.analog.com/ADP5520
396 W:      http://ez.analog.com/community/linux-device-drivers
397 S:      Supported
398 F:      drivers/mfd/adp5520.c
399 F:      drivers/video/backlight/adp5520_bl.c
400 F:      drivers/leds/leds-adp5520.c
401 F:      drivers/gpio/gpio-adp5520.c
402 F:      drivers/input/keyboard/adp5520-keys.c
403
404 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
405 M:      Michael Hennerich <michael.hennerich@analog.com>
406 W:      http://wiki.analog.com/ADP5588
407 W:      http://ez.analog.com/community/linux-device-drivers
408 S:      Supported
409 F:      drivers/input/keyboard/adp5588-keys.c
410 F:      drivers/gpio/gpio-adp5588.c
411
412 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
413 M:      Michael Hennerich <michael.hennerich@analog.com>
414 W:      http://wiki.analog.com/ADP8860
415 W:      http://ez.analog.com/community/linux-device-drivers
416 S:      Supported
417 F:      drivers/video/backlight/adp8860_bl.c
418
419 ADS1015 HARDWARE MONITOR DRIVER
420 M:      Dirk Eibach <eibach@gdsys.de>
421 L:      lm-sensors@lm-sensors.org
422 S:      Maintained
423 F:      Documentation/hwmon/ads1015
424 F:      drivers/hwmon/ads1015.c
425 F:      include/linux/i2c/ads1015.h
426
427 ADT746X FAN DRIVER
428 M:      Colin Leroy <colin@colino.net>
429 S:      Maintained
430 F:      drivers/macintosh/therm_adt746x.c
431
432 ADT7475 HARDWARE MONITOR DRIVER
433 M:      Jean Delvare <jdelvare@suse.de>
434 L:      lm-sensors@lm-sensors.org
435 S:      Maintained
436 F:      Documentation/hwmon/adt7475
437 F:      drivers/hwmon/adt7475.c
438
439 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
440 M:      Michael Hennerich <michael.hennerich@analog.com>
441 W:      http://wiki.analog.com/ADXL345
442 W:      http://ez.analog.com/community/linux-device-drivers
443 S:      Supported
444 F:      drivers/input/misc/adxl34x.c
445
446 ADVANSYS SCSI DRIVER
447 M:      Matthew Wilcox <matthew@wil.cx>
448 L:      linux-scsi@vger.kernel.org
449 S:      Maintained
450 F:      Documentation/scsi/advansys.txt
451 F:      drivers/scsi/advansys.c
452
453 AEDSP16 DRIVER
454 M:      Riccardo Facchetti <fizban@tin.it>
455 S:      Maintained
456 F:      sound/oss/aedsp16.c
457
458 AF9013 MEDIA DRIVER
459 M:      Antti Palosaari <crope@iki.fi>
460 L:      linux-media@vger.kernel.org
461 W:      http://linuxtv.org/
462 W:      http://palosaari.fi/linux/
463 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
464 T:      git git://linuxtv.org/anttip/media_tree.git
465 S:      Maintained
466 F:      drivers/media/dvb-frontends/af9013*
467
468 AF9033 MEDIA DRIVER
469 M:      Antti Palosaari <crope@iki.fi>
470 L:      linux-media@vger.kernel.org
471 W:      http://linuxtv.org/
472 W:      http://palosaari.fi/linux/
473 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
474 T:      git git://linuxtv.org/anttip/media_tree.git
475 S:      Maintained
476 F:      drivers/media/dvb-frontends/af9033*
477
478 AFFS FILE SYSTEM
479 L:      linux-fsdevel@vger.kernel.org
480 S:      Orphan
481 F:      Documentation/filesystems/affs.txt
482 F:      fs/affs/
483
484 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
485 M:      David Howells <dhowells@redhat.com>
486 L:      linux-afs@lists.infradead.org
487 S:      Supported
488 F:      fs/afs/
489 F:      include/net/af_rxrpc.h
490 F:      net/rxrpc/af_rxrpc.c
491
492 AGPGART DRIVER
493 M:      David Airlie <airlied@linux.ie>
494 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
495 S:      Maintained
496 F:      drivers/char/agp/
497 F:      include/linux/agp*
498 F:      include/uapi/linux/agp*
499
500 AHA152X SCSI DRIVER
501 M:      "Juergen E. Fischer" <fischer@norbit.de>
502 L:      linux-scsi@vger.kernel.org
503 S:      Maintained
504 F:      drivers/scsi/aha152x*
505 F:      drivers/scsi/pcmcia/aha152x*
506
507 AIC7XXX / AIC79XX SCSI DRIVER
508 M:      Hannes Reinecke <hare@suse.de>
509 L:      linux-scsi@vger.kernel.org
510 S:      Maintained
511 F:      drivers/scsi/aic7xxx/
512
513 AIMSLAB FM RADIO RECEIVER DRIVER
514 M:      Hans Verkuil <hverkuil@xs4all.nl>
515 L:      linux-media@vger.kernel.org
516 T:      git git://linuxtv.org/media_tree.git
517 W:      http://linuxtv.org
518 S:      Maintained
519 F:      drivers/media/radio/radio-aimslab*
520
521 AIO
522 M:      Benjamin LaHaise <bcrl@kvack.org>
523 L:      linux-aio@kvack.org
524 S:      Supported
525 F:      fs/aio.c
526 F:      include/linux/*aio*.h
527
528 AIRSPY MEDIA DRIVER
529 M:      Antti Palosaari <crope@iki.fi>
530 L:      linux-media@vger.kernel.org
531 W:      http://linuxtv.org/
532 W:      http://palosaari.fi/linux/
533 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
534 T:      git git://linuxtv.org/anttip/media_tree.git
535 S:      Maintained
536 F:      drivers/media/usb/airspy/
537
538 ALCATEL SPEEDTOUCH USB DRIVER
539 M:      Duncan Sands <duncan.sands@free.fr>
540 L:      linux-usb@vger.kernel.org
541 W:      http://www.linux-usb.org/SpeedTouch/
542 S:      Maintained
543 F:      drivers/usb/atm/speedtch.c
544 F:      drivers/usb/atm/usbatm.c
545
546 ALCHEMY AU1XX0 MMC DRIVER
547 M:      Manuel Lauss <manuel.lauss@gmail.com>
548 S:      Maintained
549 F:      drivers/mmc/host/au1xmmc.c
550
551 ALI1563 I2C DRIVER
552 M:      Rudolf Marek <r.marek@assembler.cz>
553 L:      linux-i2c@vger.kernel.org
554 S:      Maintained
555 F:      Documentation/i2c/busses/i2c-ali1563
556 F:      drivers/i2c/busses/i2c-ali1563.c
557
558 ALPHA PORT
559 M:      Richard Henderson <rth@twiddle.net>
560 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
561 M:      Matt Turner <mattst88@gmail.com>
562 S:      Odd Fixes
563 L:      linux-alpha@vger.kernel.org
564 F:      arch/alpha/
565
566 ALTERA TRIPLE SPEED ETHERNET DRIVER
567 M:      Vince Bridgers <vbridger@opensource.altera.com>
568 L:      netdev@vger.kernel.org
569 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
570 S:      Maintained
571 F:      drivers/net/ethernet/altera/
572
573 ALTERA UART/JTAG UART SERIAL DRIVERS
574 M:      Tobias Klauser <tklauser@distanz.ch>
575 L:      linux-serial@vger.kernel.org
576 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
577 S:      Maintained
578 F:      drivers/tty/serial/altera_uart.c
579 F:      drivers/tty/serial/altera_jtaguart.c
580 F:      include/linux/altera_uart.h
581 F:      include/linux/altera_jtaguart.h
582
583 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
584 M:      Tom Lendacky <thomas.lendacky@amd.com>
585 L:      linux-crypto@vger.kernel.org
586 S:      Supported
587 F:      drivers/crypto/ccp/
588 F:      include/linux/ccp.h
589
590 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
591 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
592 L:      lm-sensors@lm-sensors.org
593 S:      Maintained
594 F:      Documentation/hwmon/fam15h_power
595 F:      drivers/hwmon/fam15h_power.c
596
597 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
598 M:      Thomas Dahlmann <dahlmann.thomas@arcor.de>
599 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
600 S:      Supported
601 F:      drivers/usb/gadget/udc/amd5536udc.*
602
603 AMD GEODE PROCESSOR/CHIPSET SUPPORT
604 P:      Andres Salomon <dilinger@queued.net>
605 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
606 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
607 S:      Supported
608 F:      drivers/char/hw_random/geode-rng.c
609 F:      drivers/crypto/geode*
610 F:      drivers/video/fbdev/geode/
611 F:      arch/x86/include/asm/geode.h
612
613 AMD IOMMU (AMD-VI)
614 M:      Joerg Roedel <joro@8bytes.org>
615 L:      iommu@lists.linux-foundation.org
616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
617 S:      Maintained
618 F:      drivers/iommu/amd_iommu*.[ch]
619 F:      include/linux/amd-iommu.h
620
621 AMD KFD
622 M:      Oded Gabbay <oded.gabbay@amd.com>
623 L:      dri-devel@lists.freedesktop.org
624 T:      git git://people.freedesktop.org/~gabbayo/linux.git
625 S:      Supported
626 F:      drivers/gpu/drm/amd/amdkfd/
627 F:      drivers/gpu/drm/radeon/radeon_kfd.c
628 F:      drivers/gpu/drm/radeon/radeon_kfd.h
629 F:      include/uapi/linux/kfd_ioctl.h
630
631 AMD MICROCODE UPDATE SUPPORT
632 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
633 L:      amd64-microcode@amd64.org
634 S:      Maintained
635 F:      arch/x86/kernel/cpu/microcode/amd*
636
637 AMD XGBE DRIVER
638 M:      Tom Lendacky <thomas.lendacky@amd.com>
639 L:      netdev@vger.kernel.org
640 S:      Supported
641 F:      drivers/net/ethernet/amd/xgbe/
642 F:      drivers/net/phy/amd-xgbe-phy.c
643
644 AMS (Apple Motion Sensor) DRIVER
645 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
646 S:      Supported
647 F:      drivers/macintosh/ams/
648
649 AMSO1100 RNIC DRIVER
650 M:      Tom Tucker <tom@opengridcomputing.com>
651 M:      Steve Wise <swise@opengridcomputing.com>
652 L:      linux-rdma@vger.kernel.org
653 S:      Maintained
654 F:      drivers/infiniband/hw/amso1100/
655
656 ANALOG DEVICES INC AD9389B DRIVER
657 M:      Hans Verkuil <hans.verkuil@cisco.com>
658 L:      linux-media@vger.kernel.org
659 S:      Maintained
660 F:      drivers/media/i2c/ad9389b*
661
662 ANALOG DEVICES INC ADV7511 DRIVER
663 M:      Hans Verkuil <hans.verkuil@cisco.com>
664 L:      linux-media@vger.kernel.org
665 S:      Maintained
666 F:      drivers/media/i2c/adv7511*
667
668 ANALOG DEVICES INC ADV7604 DRIVER
669 M:      Hans Verkuil <hans.verkuil@cisco.com>
670 L:      linux-media@vger.kernel.org
671 S:      Maintained
672 F:      drivers/media/i2c/adv7604*
673
674 ANALOG DEVICES INC ADV7842 DRIVER
675 M:      Hans Verkuil <hans.verkuil@cisco.com>
676 L:      linux-media@vger.kernel.org
677 S:      Maintained
678 F:      drivers/media/i2c/adv7842*
679
680 ANALOG DEVICES INC ASOC CODEC DRIVERS
681 M:      Lars-Peter Clausen <lars@metafoo.de>
682 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
683 W:      http://wiki.analog.com/
684 W:      http://ez.analog.com/community/linux-device-drivers
685 S:      Supported
686 F:      sound/soc/codecs/adau*
687 F:      sound/soc/codecs/adav*
688 F:      sound/soc/codecs/ad1*
689 F:      sound/soc/codecs/ad7*
690 F:      sound/soc/codecs/ssm*
691 F:      sound/soc/codecs/sigmadsp.*
692
693 ANALOG DEVICES INC ASOC DRIVERS
694 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
695 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
696 W:      http://blackfin.uclinux.org/
697 S:      Supported
698 F:      sound/soc/blackfin/*
699
700 ANALOG DEVICES INC IIO DRIVERS
701 M:      Lars-Peter Clausen <lars@metafoo.de>
702 M:      Michael Hennerich <Michael.Hennerich@analog.com>
703 W:      http://wiki.analog.com/
704 W:      http://ez.analog.com/community/linux-device-drivers
705 S:      Supported
706 F:      drivers/iio/*/ad*
707 X:      drivers/iio/*/adjd*
708 F:      drivers/staging/iio/*/ad*
709 F:      staging/iio/trigger/iio-trig-bfin-timer.c
710
711 ANDROID DRIVERS
712 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
713 M:      Arve HjønnevÃ¥g <arve@android.com>
714 M:      Riley Andrews <riandrews@android.com>
715 T:      git git://git.kernel.org/pub/scm/linux/kernel/gregkh/staging.git
716 L:      devel@driverdev.osuosl.org
717 S:      Supported
718 F:      drivers/android/
719 F:      drivers/staging/android/
720
721 AOA (Apple Onboard Audio) ALSA DRIVER
722 M:      Johannes Berg <johannes@sipsolutions.net>
723 L:      linuxppc-dev@lists.ozlabs.org
724 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
725 S:      Maintained
726 F:      sound/aoa/
727
728 APM DRIVER
729 M:      Jiri Kosina <jkosina@suse.cz>
730 S:      Odd fixes
731 F:      arch/x86/kernel/apm_32.c
732 F:      include/linux/apm_bios.h
733 F:      include/uapi/linux/apm_bios.h
734 F:      drivers/char/apm-emulation.c
735
736 APPLE BCM5974 MULTITOUCH DRIVER
737 M:      Henrik Rydberg <rydberg@bitmath.org>
738 L:      linux-input@vger.kernel.org
739 S:      Odd fixes
740 F:      drivers/input/mouse/bcm5974.c
741
742 APPLE SMC DRIVER
743 M:      Henrik Rydberg <rydberg@bitmath.org>
744 L:      lm-sensors@lm-sensors.org
745 S:      Odd fixes
746 F:      drivers/hwmon/applesmc.c
747
748 APPLETALK NETWORK LAYER
749 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
750 S:      Maintained
751 F:      drivers/net/appletalk/
752 F:      net/appletalk/
753
754 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
755 M:      Iyappan Subramanian <isubramanian@apm.com>
756 M:      Keyur Chudgar <kchudgar@apm.com>
757 S:      Supported
758 F:      drivers/net/ethernet/apm/xgene/
759 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
760
761 APTINA CAMERA SENSOR PLL
762 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
763 L:      linux-media@vger.kernel.org
764 S:      Maintained
765 F:      drivers/media/i2c/aptina-pll.*
766
767 ARC FRAMEBUFFER DRIVER
768 M:      Jaya Kumar <jayalk@intworks.biz>
769 S:      Maintained
770 F:      drivers/video/fbdev/arcfb.c
771 F:      drivers/video/fbdev/core/fb_defio.c
772
773 ARM MFM AND FLOPPY DRIVERS
774 M:      Ian Molton <spyro@f2s.com>
775 S:      Maintained
776 F:      arch/arm/lib/floppydma.S
777 F:      arch/arm/include/asm/floppy.h
778
779 ARM PMU PROFILING AND DEBUGGING
780 M:      Will Deacon <will.deacon@arm.com>
781 S:      Maintained
782 F:      arch/arm/kernel/perf_event*
783 F:      arch/arm/oprofile/common.c
784 F:      arch/arm/include/asm/pmu.h
785 F:      arch/arm/kernel/hw_breakpoint.c
786 F:      arch/arm/include/asm/hw_breakpoint.h
787
788 ARM PORT
789 M:      Russell King <linux@arm.linux.org.uk>
790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
791 W:      http://www.arm.linux.org.uk/
792 S:      Maintained
793 F:      arch/arm/
794
795 ARM SUB-ARCHITECTURES
796 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
797 S:      Maintained
798 F:      arch/arm/mach-*/
799 F:      arch/arm/plat-*/
800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
801
802 ARM PRIMECELL AACI PL041 DRIVER
803 M:      Russell King <linux@arm.linux.org.uk>
804 S:      Maintained
805 F:      sound/arm/aaci.*
806
807 ARM PRIMECELL CLCD PL110 DRIVER
808 M:      Russell King <linux@arm.linux.org.uk>
809 S:      Maintained
810 F:      drivers/video/fbdev/amba-clcd.*
811
812 ARM PRIMECELL KMI PL050 DRIVER
813 M:      Russell King <linux@arm.linux.org.uk>
814 S:      Maintained
815 F:      drivers/input/serio/ambakmi.*
816 F:      include/linux/amba/kmi.h
817
818 ARM PRIMECELL MMCI PL180/1 DRIVER
819 M:      Russell King <linux@arm.linux.org.uk>
820 S:      Maintained
821 F:      drivers/mmc/host/mmci.*
822 F:      include/linux/amba/mmci.h
823
824 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
825 M:      Russell King <linux@arm.linux.org.uk>
826 S:      Maintained
827 F:      drivers/tty/serial/amba-pl01*.c
828 F:      include/linux/amba/serial.h
829
830 ARM PRIMECELL BUS SUPPORT
831 M:      Russell King <linux@arm.linux.org.uk>
832 S:      Maintained
833 F:      drivers/amba/
834 F:      include/linux/amba/bus.h
835
836 ARM/ADS SPHERE MACHINE SUPPORT
837 M:      Lennert Buytenhek <kernel@wantstofly.org>
838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
839 S:      Maintained
840
841 ARM/AFEB9260 MACHINE SUPPORT
842 M:      Sergey Lapin <slapin@ossfans.org>
843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
844 S:      Maintained
845
846 ARM/AJECO 1ARM MACHINE SUPPORT
847 M:      Lennert Buytenhek <kernel@wantstofly.org>
848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
849 S:      Maintained
850
851 ARM/Allwinner A1X SoC support
852 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
853 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
854 S:      Maintained
855 N:      sun[x4567]i
856
857 ARM/Allwinner SoC Clock Support
858 M:      Emilio López <emilio@elopez.com.ar>
859 S:      Maintained
860 F:      drivers/clk/sunxi/
861
862 ARM/Amlogic MesonX SoC support
863 M:      Carlo Caione <carlo@caione.org>
864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
865 S:      Maintained
866 F:      drivers/media/rc/meson-ir.c
867 N:      meson[x68]
868
869 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
870 M:      Andrew Victor <linux@maxim.org.za>
871 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
872 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
874 W:      http://maxim.org.za/at91_26.html
875 W:      http://www.linux4sam.org
876 S:      Supported
877 F:      arch/arm/mach-at91/
878 F:      include/soc/at91/
879 F:      arch/arm/boot/dts/at91*.dts
880 F:      arch/arm/boot/dts/at91*.dtsi
881 F:      arch/arm/boot/dts/sama*.dts
882 F:      arch/arm/boot/dts/sama*.dtsi
883
884 ARM/ATMEL AT91 Clock Support
885 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
886 S:      Maintained
887 F:      drivers/clk/at91
888
889 ARM/CALXEDA HIGHBANK ARCHITECTURE
890 M:      Rob Herring <robh@kernel.org>
891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
892 S:      Maintained
893 F:      arch/arm/mach-highbank/
894
895 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
896 M:      Krzysztof Halasa <khalasa@piap.pl>
897 S:      Maintained
898 F:      arch/arm/mach-cns3xxx/
899
900 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
901 M:      Alexander Shiyan <shc_work@mail.ru>
902 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
903 S:      Odd Fixes
904 N:      clps711x
905
906 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
907 M:      Hartley Sweeten <hsweeten@visionengravers.com>
908 M:      Ryan Mallon <rmallon@gmail.com>
909 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
910 S:      Maintained
911 F:      arch/arm/mach-ep93xx/
912 F:      arch/arm/mach-ep93xx/include/mach/
913
914 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
915 M:      Lennert Buytenhek <kernel@wantstofly.org>
916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917 S:      Maintained
918
919 ARM/CLKDEV SUPPORT
920 M:      Russell King <linux@arm.linux.org.uk>
921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
922 S:      Maintained
923 F:      arch/arm/include/asm/clkdev.h
924 F:      drivers/clk/clkdev.c
925
926 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
927 M:      Mike Rapoport <mike@compulab.co.il>
928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
929 S:      Maintained
930
931 ARM/CONTEC MICRO9 MACHINE SUPPORT
932 M:      Hubert Feurstein <hubert.feurstein@contec.at>
933 S:      Maintained
934 F:      arch/arm/mach-ep93xx/micro9.c
935
936 ARM/CORESIGHT FRAMEWORK AND DRIVERS
937 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
939 S:      Maintained
940 F:      drivers/coresight/*
941 F:      Documentation/trace/coresight.txt
942 F:      Documentation/devicetree/bindings/arm/coresight.txt
943 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
944
945 ARM/CORGI MACHINE SUPPORT
946 M:      Richard Purdie <rpurdie@rpsys.net>
947 S:      Maintained
948
949 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
950 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
952 T:      git git://git.berlios.de/gemini-board
953 S:      Maintained
954 F:      arch/arm/mach-gemini/
955
956 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
957 M:      Barry Song <baohua@kernel.org>
958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
960 S:      Maintained
961 F:      arch/arm/mach-prima2/
962 F:      drivers/clk/sirf/
963 F:      drivers/clocksource/timer-prima2.c
964 F:      drivers/clocksource/timer-marco.c
965 N:      [^a-z]sirf
966
967 ARM/EBSA110 MACHINE SUPPORT
968 M:      Russell King <linux@arm.linux.org.uk>
969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
970 W:      http://www.arm.linux.org.uk/
971 S:      Maintained
972 F:      arch/arm/mach-ebsa110/
973 F:      drivers/net/ethernet/amd/am79c961a.*
974
975 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
976 M:      Uwe Kleine-König <kernel@pengutronix.de>
977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
978 S:      Maintained
979 N:      efm32
980
981 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
982 M:      Daniel Ribeiro <drwyrm@gmail.com>
983 M:      Stefan Schmidt <stefan@openezx.org>
984 M:      Harald Welte <laforge@openezx.org>
985 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
986 W:      http://www.openezx.org/
987 S:      Maintained
988 T:      topgit git://git.openezx.org/openezx.git
989 F:      arch/arm/mach-pxa/ezx.c
990
991 ARM/FARADAY FA526 PORT
992 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
994 S:      Maintained
995 T:      git git://git.berlios.de/gemini-board
996 F:      arch/arm/mm/*-fa*
997
998 ARM/FOOTBRIDGE ARCHITECTURE
999 M:      Russell King <linux@arm.linux.org.uk>
1000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1001 W:      http://www.arm.linux.org.uk/
1002 S:      Maintained
1003 F:      arch/arm/include/asm/hardware/dec21285.h
1004 F:      arch/arm/mach-footbridge/
1005
1006 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1007 M:      Shawn Guo <shawn.guo@linaro.org>
1008 M:      Sascha Hauer <kernel@pengutronix.de>
1009 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1010 S:      Maintained
1011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1012 F:      arch/arm/mach-imx/
1013 F:      arch/arm/mach-mxs/
1014 F:      arch/arm/boot/dts/imx*
1015 F:      arch/arm/configs/imx*_defconfig
1016
1017 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1018 M:      Lennert Buytenhek <kernel@wantstofly.org>
1019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1020 S:      Maintained
1021
1022 ARM/GUMSTIX MACHINE SUPPORT
1023 M:      Steve Sakoman <sakoman@gmail.com>
1024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1025 S:      Maintained
1026
1027 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1028 M:      Philipp Zabel <philipp.zabel@gmail.com>
1029 M:      Paul Parsons <lost.distance@yahoo.com>
1030 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1031 S:      Maintained
1032 F:      arch/arm/mach-pxa/hx4700.c
1033 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1034 F:      sound/soc/pxa/hx4700.c
1035
1036 ARM/HISILICON SOC SUPPORT
1037 M:      Wei Xu <xuwei5@hisilicon.com>
1038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1039 W:      http://www.hisilicon.com
1040 S:      Supported
1041 T:      git git://github.com/hisilicon/linux-hisi.git
1042 F:      arch/arm/mach-hisi/
1043
1044 ARM/HP JORNADA 7XX MACHINE SUPPORT
1045 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1046 W:      www.jlime.com
1047 S:      Maintained
1048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1049 F:      arch/arm/mach-sa1100/jornada720.c
1050 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1051
1052 ARM/IGEP MACHINE SUPPORT
1053 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1054 M:      Javier Martinez Canillas <javier@dowhile0.org>
1055 L:      linux-omap@vger.kernel.org
1056 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1057 S:      Maintained
1058 F:      arch/arm/boot/dts/omap3-igep*
1059
1060 ARM/INCOME PXA270 SUPPORT
1061 M:      Marek Vasut <marek.vasut@gmail.com>
1062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1063 S:      Maintained
1064 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1065
1066 ARM/INTEL IOP32X ARM ARCHITECTURE
1067 M:      Lennert Buytenhek <kernel@wantstofly.org>
1068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1069 S:      Maintained
1070
1071 ARM/INTEL IOP33X ARM ARCHITECTURE
1072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1073 S:      Orphan
1074
1075 ARM/INTEL IOP13XX ARM ARCHITECTURE
1076 M:      Lennert Buytenhek <kernel@wantstofly.org>
1077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1078 S:      Maintained
1079
1080 ARM/INTEL IQ81342EX MACHINE SUPPORT
1081 M:      Lennert Buytenhek <kernel@wantstofly.org>
1082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083 S:      Maintained
1084
1085 ARM/INTEL IXDP2850 MACHINE SUPPORT
1086 M:      Lennert Buytenhek <kernel@wantstofly.org>
1087 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1088 S:      Maintained
1089
1090 ARM/INTEL IXP4XX ARM ARCHITECTURE
1091 M:      Imre Kaloz <kaloz@openwrt.org>
1092 M:      Krzysztof Halasa <khalasa@piap.pl>
1093 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1094 S:      Maintained
1095 F:      arch/arm/mach-ixp4xx/
1096
1097 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1098 M:      Jonathan Cameron <jic23@cam.ac.uk>
1099 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1100 S:      Maintained
1101 F:      arch/arm/mach-pxa/stargate2.c
1102 F:      drivers/pcmcia/pxa2xx_stargate2.c
1103
1104 ARM/INTEL XSC3 (MANZANO) ARM CORE
1105 M:      Lennert Buytenhek <kernel@wantstofly.org>
1106 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1107 S:      Maintained
1108
1109 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1110 M:      Lennert Buytenhek <kernel@wantstofly.org>
1111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1112 S:      Maintained
1113
1114 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1115 M:      Santosh Shilimkar <ssantosh@kernel.org>
1116 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1117 S:      Maintained
1118 F:      arch/arm/mach-keystone/
1119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1120
1121 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1122 M:      Santosh Shilimkar <ssantosh@kernel.org>
1123 L:      linux-kernel@vger.kernel.org
1124 S:      Maintained
1125 F:      drivers/clk/keystone/
1126
1127 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1128 M:      Santosh Shilimkar <ssantosh@kernel.org>
1129 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1130 L:      linux-kernel@vger.kernel.org
1131 S:      Maintained
1132 F:      drivers/clocksource/timer-keystone.c
1133
1134 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1135 M:      Santosh Shilimkar <ssantosh@kernel.org>
1136 L:      linux-kernel@vger.kernel.org
1137 S:      Maintained
1138 F:      drivers/power/reset/keystone-reset.c
1139
1140 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1141 M:      Santosh Shilimkar <ssantosh@kernel.org>
1142 L:      linux-kernel@vger.kernel.org
1143 S:      Maintained
1144 F:      drivers/memory/*emif*
1145
1146 ARM/LOGICPD PXA270 MACHINE SUPPORT
1147 M:      Lennert Buytenhek <kernel@wantstofly.org>
1148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1149 S:      Maintained
1150
1151 ARM/MAGICIAN MACHINE SUPPORT
1152 M:      Philipp Zabel <philipp.zabel@gmail.com>
1153 S:      Maintained
1154
1155 ARM/Marvell Armada 370 and Armada XP SOC support
1156 M:      Jason Cooper <jason@lakedaemon.net>
1157 M:      Andrew Lunn <andrew@lunn.ch>
1158 M:      Gregory Clement <gregory.clement@free-electrons.com>
1159 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1160 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1161 S:      Maintained
1162 F:      arch/arm/mach-mvebu/
1163
1164 ARM/Marvell Berlin SoC support
1165 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1167 S:      Maintained
1168 F:      arch/arm/mach-berlin/
1169
1170 ARM/Marvell Dove/MV78xx0/Orion SOC support
1171 M:      Jason Cooper <jason@lakedaemon.net>
1172 M:      Andrew Lunn <andrew@lunn.ch>
1173 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1174 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1175 S:      Maintained
1176 F:      arch/arm/mach-dove/
1177 F:      arch/arm/mach-mv78xx0/
1178 F:      arch/arm/mach-orion5x/
1179 F:      arch/arm/plat-orion/
1180
1181 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1182 M:      Alexander Clouter <alex@digriz.org.uk>
1183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1184 W:      http://www.digriz.org.uk/ts78xx/kernel
1185 S:      Maintained
1186 F:      arch/arm/mach-orion5x/ts78xx-*
1187
1188 ARM/Mediatek SoC support
1189 M:      Matthias Brugger <matthias.bgg@gmail.com>
1190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1191 S:      Maintained
1192 F:      arch/arm/boot/dts/mt6*
1193 F:      arch/arm/boot/dts/mt8*
1194 F:      arch/arm/mach-mediatek/
1195 N:      mtk
1196 K:      mediatek
1197
1198 ARM/MICREL KS8695 ARCHITECTURE
1199 M:      Greg Ungerer <gerg@uclinux.org>
1200 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1201 F:      arch/arm/mach-ks8695/
1202 S:      Odd Fixes
1203
1204 ARM/MIOA701 MACHINE SUPPORT
1205 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1207 F:      arch/arm/mach-pxa/mioa701.c
1208 S:      Maintained
1209
1210 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1211 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1212 S:      Maintained
1213
1214 ARM/NOMADIK ARCHITECTURE
1215 M:      Alessandro Rubini <rubini@unipv.it>
1216 M:      Linus Walleij <linus.walleij@linaro.org>
1217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218 S:      Maintained
1219 F:      arch/arm/mach-nomadik/
1220 F:      drivers/pinctrl/nomadik/
1221 F:      drivers/i2c/busses/i2c-nomadik.c
1222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1223
1224 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1225 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1226 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1227 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1228 S:      Supported
1229
1230 ARM/QUALCOMM MSM MACHINE SUPPORT
1231 M:      David Brown <davidb@codeaurora.org>
1232 M:      Daniel Walker <dwalker@fifo99.com>
1233 M:      Bryan Huntsman <bryanh@codeaurora.org>
1234 L:      linux-arm-msm@vger.kernel.org
1235 F:      arch/arm/mach-msm/
1236 F:      drivers/video/fbdev/msm/
1237 F:      drivers/mmc/host/msm_sdcc.c
1238 F:      drivers/mmc/host/msm_sdcc.h
1239 F:      drivers/tty/serial/msm_serial.h
1240 F:      drivers/tty/serial/msm_serial.c
1241 F:      drivers/*/pm8???-*
1242 F:      drivers/mfd/ssbi.c
1243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
1244 S:      Maintained
1245
1246 ARM/TOSA MACHINE SUPPORT
1247 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1248 M:      Dirk Opfer <dirk@opfer-online.de>
1249 S:      Maintained
1250
1251 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1252 M:      Marek Vasut <marek.vasut@gmail.com>
1253 L:      linux-arm-kernel@lists.infradead.org
1254 W:      http://hackndev.com
1255 S:      Maintained
1256 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1257 F:      arch/arm/mach-pxa/palmtx.c
1258 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1259 F:      arch/arm/mach-pxa/palmt5.c
1260 F:      arch/arm/mach-pxa/include/mach/palmld.h
1261 F:      arch/arm/mach-pxa/palmld.c
1262 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1263 F:      arch/arm/mach-pxa/palmte2.c
1264 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1265 F:      arch/arm/mach-pxa/palmtc.c
1266
1267 ARM/PALM TREO SUPPORT
1268 M:      Tomas Cech <sleep_walker@suse.cz>
1269 L:      linux-arm-kernel@lists.infradead.org
1270 W:      http://hackndev.com
1271 S:      Maintained
1272 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1273 F:      arch/arm/mach-pxa/palmtreo.c
1274
1275 ARM/PALMZ72 SUPPORT
1276 M:      Sergey Lapin <slapin@ossfans.org>
1277 L:      linux-arm-kernel@lists.infradead.org
1278 W:      http://hackndev.com
1279 S:      Maintained
1280 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1281 F:      arch/arm/mach-pxa/palmz72.c
1282
1283 ARM/PLEB SUPPORT
1284 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1285 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1286 S:      Maintained
1287
1288 ARM/PT DIGITAL BOARD PORT
1289 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1291 W:      http://www.arm.linux.org.uk/
1292 S:      Maintained
1293
1294 ARM/QUALCOMM SUPPORT
1295 M:      Kumar Gala <galak@codeaurora.org>
1296 M:      David Brown <davidb@codeaurora.org>
1297 L:      linux-arm-msm@vger.kernel.org
1298 S:      Maintained
1299 F:      arch/arm/mach-qcom/
1300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1301
1302 ARM/RADISYS ENP2611 MACHINE SUPPORT
1303 M:      Lennert Buytenhek <kernel@wantstofly.org>
1304 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1305 S:      Maintained
1306
1307 ARM/RISCPC ARCHITECTURE
1308 M:      Russell King <linux@arm.linux.org.uk>
1309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1310 W:      http://www.arm.linux.org.uk/
1311 S:      Maintained
1312 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1313 F:      arch/arm/include/asm/hardware/ioc.h
1314 F:      arch/arm/include/asm/hardware/iomd.h
1315 F:      arch/arm/include/asm/hardware/memc.h
1316 F:      arch/arm/mach-rpc/
1317 F:      drivers/net/ethernet/8390/etherh.c
1318 F:      drivers/net/ethernet/i825xx/ether1*
1319 F:      drivers/net/ethernet/seeq/ether3*
1320 F:      drivers/scsi/arm/
1321
1322 ARM/Rockchip SoC support
1323 M:      Heiko Stuebner <heiko@sntech.de>
1324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1325 L:      linux-rockchip@lists.infradead.org
1326 S:      Maintained
1327 F:      arch/arm/boot/dts/rk3*
1328 F:      arch/arm/mach-rockchip/
1329 F:      drivers/clk/rockchip/
1330 F:      drivers/i2c/busses/i2c-rk3x.c
1331 F:      drivers/*/*rockchip*
1332 F:      drivers/*/*/*rockchip*
1333 F:      sound/soc/rockchip/
1334
1335 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1336 M:      Kukjin Kim <kgene@kernel.org>
1337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1338 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1339 S:      Maintained
1340 F:      arch/arm/boot/dts/s3c*
1341 F:      arch/arm/boot/dts/exynos*
1342 F:      arch/arm/plat-samsung/
1343 F:      arch/arm/mach-s3c24*/
1344 F:      arch/arm/mach-s3c64xx/
1345 F:      arch/arm/mach-s5p*/
1346 F:      arch/arm/mach-exynos*/
1347 F:      drivers/*/*s3c2410*
1348 F:      drivers/*/*/*s3c2410*
1349 F:      drivers/spi/spi-s3c*
1350 F:      sound/soc/samsung/*
1351 N:      exynos
1352
1353 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1354 M:      Kyungmin Park <kyungmin.park@samsung.com>
1355 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1356 S:      Maintained
1357 F:      arch/arm/mach-s5pv210/
1358
1359 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1360 M:      Kyungmin Park <kyungmin.park@samsung.com>
1361 M:      Kamil Debski <k.debski@samsung.com>
1362 L:      linux-arm-kernel@lists.infradead.org
1363 L:      linux-media@vger.kernel.org
1364 S:      Maintained
1365 F:      drivers/media/platform/s5p-g2d/
1366
1367 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1368 M:      Kyungmin Park <kyungmin.park@samsung.com>
1369 M:      Kamil Debski <k.debski@samsung.com>
1370 M:      Jeongtae Park <jtp.park@samsung.com>
1371 L:      linux-arm-kernel@lists.infradead.org
1372 L:      linux-media@vger.kernel.org
1373 S:      Maintained
1374 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1375 F:      drivers/media/platform/s5p-mfc/
1376
1377 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1378 M:      Kyungmin Park <kyungmin.park@samsung.com>
1379 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1380 L:      linux-arm-kernel@lists.infradead.org
1381 L:      linux-media@vger.kernel.org
1382 S:      Maintained
1383 F:      drivers/media/platform/s5p-tv/
1384
1385 ARM/SHMOBILE ARM ARCHITECTURE
1386 M:      Simon Horman <horms@verge.net.au>
1387 M:      Magnus Damm <magnus.damm@gmail.com>
1388 L:      linux-sh@vger.kernel.org
1389 W:      http://oss.renesas.com
1390 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1392 S:      Supported
1393 F:      arch/arm/boot/dts/emev2*
1394 F:      arch/arm/boot/dts/r7s*
1395 F:      arch/arm/boot/dts/r8a*
1396 F:      arch/arm/boot/dts/sh*
1397 F:      arch/arm/configs/ape6evm_defconfig
1398 F:      arch/arm/configs/armadillo800eva_defconfig
1399 F:      arch/arm/configs/bockw_defconfig
1400 F:      arch/arm/configs/kzm9g_defconfig
1401 F:      arch/arm/configs/lager_defconfig
1402 F:      arch/arm/configs/mackerel_defconfig
1403 F:      arch/arm/configs/marzen_defconfig
1404 F:      arch/arm/configs/shmobile_defconfig
1405 F:      arch/arm/include/debug/renesas-scif.S
1406 F:      arch/arm/mach-shmobile/
1407 F:      drivers/sh/
1408
1409 ARM/SOCFPGA ARCHITECTURE
1410 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1411 S:      Maintained
1412 F:      arch/arm/mach-socfpga/
1413 W:      http://www.rocketboards.org
1414 T:      git://git.rocketboards.org/linux-socfpga.git
1415 T:      git://git.rocketboards.org/linux-socfpga-next.git
1416
1417 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1418 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1419 S:      Maintained
1420 F:      drivers/clk/socfpga/
1421
1422 ARM/SOCFPGA EDAC SUPPORT
1423 M:      Thor Thayer <tthayer@opensource.altera.com>
1424 S:      Maintained
1425 F:      drivers/edac/altera_edac.
1426
1427 ARM/STI ARCHITECTURE
1428 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1429 M:      Maxime Coquelin <maxime.coquelin@st.com>
1430 M:      Patrice Chotard <patrice.chotard@st.com>
1431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1432 L:      kernel@stlinux.com
1433 W:      http://www.stlinux.com
1434 S:      Maintained
1435 F:      arch/arm/mach-sti/
1436 F:      arch/arm/boot/dts/sti*
1437 F:      drivers/clocksource/arm_global_timer.c
1438 F:      drivers/i2c/busses/i2c-st.c
1439 F:      drivers/media/rc/st_rc.c
1440 F:      drivers/mmc/host/sdhci-st.c
1441 F:      drivers/phy/phy-stih407-usb.c
1442 F:      drivers/phy/phy-stih41x-usb.c
1443 F:      drivers/pinctrl/pinctrl-st.c
1444 F:      drivers/reset/sti/
1445 F:      drivers/tty/serial/st-asc.c
1446 F:      drivers/usb/dwc3/dwc3-st.c
1447 F:      drivers/usb/host/ehci-st.c
1448 F:      drivers/usb/host/ohci-st.c
1449 F:      drivers/ata/ahci_st.c
1450
1451 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1452 M:      Lennert Buytenhek <kernel@wantstofly.org>
1453 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1454 S:      Maintained
1455
1456 ARM/TETON BGA MACHINE SUPPORT
1457 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1458 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1459 S:      Maintained
1460
1461 ARM/THECUS N2100 MACHINE SUPPORT
1462 M:      Lennert Buytenhek <kernel@wantstofly.org>
1463 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1464 S:      Maintained
1465
1466 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1467 M:      Wan ZongShun <mcuos.com@gmail.com>
1468 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1469 W:      http://www.mcuos.com
1470 S:      Maintained
1471 F:      arch/arm/mach-w90x900/
1472 F:      drivers/input/keyboard/w90p910_keypad.c
1473 F:      drivers/input/touchscreen/w90p910_ts.c
1474 F:      drivers/watchdog/nuc900_wdt.c
1475 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1476 F:      drivers/mtd/nand/nuc900_nand.c
1477 F:      drivers/rtc/rtc-nuc900.c
1478 F:      drivers/spi/spi-nuc900.c
1479 F:      drivers/usb/host/ehci-w90x900.c
1480 F:      drivers/video/fbdev/nuc900fb.c
1481
1482 ARM/U300 MACHINE SUPPORT
1483 M:      Linus Walleij <linus.walleij@linaro.org>
1484 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1485 S:      Supported
1486 F:      arch/arm/mach-u300/
1487 F:      drivers/clocksource/timer-u300.c
1488 F:      drivers/i2c/busses/i2c-stu300.c
1489 F:      drivers/rtc/rtc-coh901331.c
1490 F:      drivers/watchdog/coh901327_wdt.c
1491 F:      drivers/dma/coh901318*
1492 F:      drivers/mfd/ab3100*
1493 F:      drivers/rtc/rtc-ab3100.c
1494 F:      drivers/rtc/rtc-coh901331.c
1495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1496
1497 ARM/Ux500 ARM ARCHITECTURE
1498 M:      Linus Walleij <linus.walleij@linaro.org>
1499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1500 S:      Maintained
1501 F:      arch/arm/mach-ux500/
1502 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1503 F:      drivers/dma/ste_dma40*
1504 F:      drivers/hwspinlock/u8500_hsem.c
1505 F:      drivers/mfd/abx500*
1506 F:      drivers/mfd/ab8500*
1507 F:      drivers/mfd/dbx500*
1508 F:      drivers/mfd/db8500*
1509 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1510 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1511 F:      drivers/rtc/rtc-ab8500.c
1512 F:      drivers/rtc/rtc-pl031.c
1513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1514
1515 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1516 M:      Ulf Hansson <ulf.hansson@linaro.org>
1517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1518 T:      git git://git.linaro.org/people/ulfh/clk.git
1519 S:      Maintained
1520 F:      drivers/clk/ux500/
1521 F:      include/linux/platform_data/clk-ux500.h
1522
1523 ARM/VERSATILE EXPRESS PLATFORM
1524 M:      Liviu Dudau <liviu.dudau@arm.com>
1525 M:      Sudeep Holla <sudeep.holla@arm.com>
1526 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1528 S:      Maintained
1529 F:      arch/arm/boot/dts/vexpress*
1530 F:      arch/arm/mach-vexpress/
1531 F:      */*/vexpress*
1532 F:      */*/*/vexpress*
1533 F:      drivers/clk/versatile/clk-vexpress-osc.c
1534 F:      drivers/clocksource/versatile.c
1535
1536 ARM/VFP SUPPORT
1537 M:      Russell King <linux@arm.linux.org.uk>
1538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1539 W:      http://www.arm.linux.org.uk/
1540 S:      Maintained
1541 F:      arch/arm/vfp/
1542
1543 ARM/VOIPAC PXA270 SUPPORT
1544 M:      Marek Vasut <marek.vasut@gmail.com>
1545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1546 S:      Maintained
1547 F:      arch/arm/mach-pxa/vpac270.c
1548 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1549
1550 ARM/VT8500 ARM ARCHITECTURE
1551 M:      Tony Prisk <linux@prisktech.co.nz>
1552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 S:      Maintained
1554 F:      arch/arm/mach-vt8500/
1555 F:      drivers/clocksource/vt8500_timer.c
1556 F:      drivers/i2c/busses/i2c-wmt.c
1557 F:      drivers/mmc/host/wmt-sdmmc.c
1558 F:      drivers/pwm/pwm-vt8500.c
1559 F:      drivers/rtc/rtc-vt8500.c
1560 F:      drivers/tty/serial/vt8500_serial.c
1561 F:      drivers/usb/host/ehci-platform.c
1562 F:      drivers/usb/host/uhci-platform.c
1563 F:      drivers/video/fbdev/vt8500lcdfb.*
1564 F:      drivers/video/fbdev/wm8505fb*
1565 F:      drivers/video/fbdev/wmt_ge_rops.*
1566
1567 ARM/ZIPIT Z2 SUPPORT
1568 M:      Marek Vasut <marek.vasut@gmail.com>
1569 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1570 S:      Maintained
1571 F:      arch/arm/mach-pxa/z2.c
1572 F:      arch/arm/mach-pxa/include/mach/z2.h
1573
1574 ARM/ZYNQ ARCHITECTURE
1575 M:      Michal Simek <michal.simek@xilinx.com>
1576 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1577 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1578 W:      http://wiki.xilinx.com
1579 T:      git git://git.xilinx.com/linux-xlnx.git
1580 S:      Supported
1581 F:      arch/arm/mach-zynq/
1582 F:      drivers/cpuidle/cpuidle-zynq.c
1583 F:      drivers/block/xsysace.c
1584 N:      zynq
1585 N:      xilinx
1586 F:      drivers/clocksource/cadence_ttc_timer.c
1587 F:      drivers/i2c/busses/i2c-cadence.c
1588 F:      drivers/mmc/host/sdhci-of-arasan.c
1589 F:      drivers/edac/synopsys_edac.c
1590
1591 ARM SMMU DRIVER
1592 M:      Will Deacon <will.deacon@arm.com>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 S:      Maintained
1595 F:      drivers/iommu/arm-smmu.c
1596
1597 ARM64 PORT (AARCH64 ARCHITECTURE)
1598 M:      Catalin Marinas <catalin.marinas@arm.com>
1599 M:      Will Deacon <will.deacon@arm.com>
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 S:      Maintained
1602 F:      arch/arm64/
1603 F:      Documentation/arm64/
1604
1605 AS3645A LED FLASH CONTROLLER DRIVER
1606 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1607 L:      linux-media@vger.kernel.org
1608 T:      git git://linuxtv.org/media_tree.git
1609 S:      Maintained
1610 F:      drivers/media/i2c/as3645a.c
1611 F:      include/media/as3645a.h
1612
1613 ASC7621 HARDWARE MONITOR DRIVER
1614 M:      George Joseph <george.joseph@fairview5.com>
1615 L:      lm-sensors@lm-sensors.org
1616 S:      Maintained
1617 F:      Documentation/hwmon/asc7621
1618 F:      drivers/hwmon/asc7621.c
1619
1620 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1621 M:      Corentin Chary <corentin.chary@gmail.com>
1622 L:      acpi4asus-user@lists.sourceforge.net
1623 L:      platform-driver-x86@vger.kernel.org
1624 W:      http://acpi4asus.sf.net
1625 S:      Maintained
1626 F:      drivers/platform/x86/asus*.c
1627 F:      drivers/platform/x86/eeepc*.c
1628
1629 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1630 R:      Dan Williams <dan.j.williams@intel.com>
1631 W:      http://sourceforge.net/projects/xscaleiop
1632 S:      Odd fixes
1633 F:      Documentation/crypto/async-tx-api.txt
1634 F:      crypto/async_tx/
1635 F:      drivers/dma/
1636 F:      include/linux/dmaengine.h
1637 F:      include/linux/async_tx.h
1638
1639 AT24 EEPROM DRIVER
1640 M:      Wolfram Sang <wsa@the-dreams.de>
1641 L:      linux-i2c@vger.kernel.org
1642 S:      Maintained
1643 F:      drivers/misc/eeprom/at24.c
1644 F:      include/linux/platform_data/at24.h
1645
1646 ATA OVER ETHERNET (AOE) DRIVER
1647 M:      "Ed L. Cashin" <ecashin@coraid.com>
1648 W:      http://support.coraid.com/support/linux
1649 S:      Supported
1650 F:      Documentation/aoe/
1651 F:      drivers/block/aoe/
1652
1653 ATHEROS ATH GENERIC UTILITIES
1654 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1655 L:      linux-wireless@vger.kernel.org
1656 S:      Supported
1657 F:      drivers/net/wireless/ath/*
1658
1659 ATHEROS ATH5K WIRELESS DRIVER
1660 M:      Jiri Slaby <jirislaby@gmail.com>
1661 M:      Nick Kossifidis <mickflemm@gmail.com>
1662 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1663 L:      linux-wireless@vger.kernel.org
1664 L:      ath5k-devel@lists.ath5k.org
1665 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1666 S:      Maintained
1667 F:      drivers/net/wireless/ath/ath5k/
1668
1669 ATHEROS ATH6KL WIRELESS DRIVER
1670 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1671 L:      linux-wireless@vger.kernel.org
1672 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1673 T:      git git://github.com/kvalo/ath.git
1674 S:      Supported
1675 F:      drivers/net/wireless/ath/ath6kl/
1676
1677 WILOCITY WIL6210 WIRELESS DRIVER
1678 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1679 L:      linux-wireless@vger.kernel.org
1680 L:      wil6210@qca.qualcomm.com
1681 S:      Supported
1682 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1683 F:      drivers/net/wireless/ath/wil6210/
1684 F:      include/uapi/linux/wil6210_uapi.h
1685
1686 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1687 M:      Christian Lamparter <chunkeey@googlemail.com>
1688 L:      linux-wireless@vger.kernel.org
1689 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1690 S:      Maintained
1691 F:      drivers/net/wireless/ath/carl9170/
1692
1693 ATK0110 HWMON DRIVER
1694 M:      Luca Tettamanti <kronos.it@gmail.com>
1695 L:      lm-sensors@lm-sensors.org
1696 S:      Maintained
1697 F:      drivers/hwmon/asus_atk0110.c
1698
1699 ATI_REMOTE2 DRIVER
1700 M:      Ville Syrjala <syrjala@sci.fi>
1701 S:      Maintained
1702 F:      drivers/input/misc/ati_remote2.c
1703
1704 ATLX ETHERNET DRIVERS
1705 M:      Jay Cliburn <jcliburn@gmail.com>
1706 M:      Chris Snook <chris.snook@gmail.com>
1707 L:      netdev@vger.kernel.org
1708 W:      http://sourceforge.net/projects/atl1
1709 W:      http://atl1.sourceforge.net
1710 S:      Maintained
1711 F:      drivers/net/ethernet/atheros/
1712
1713 ATM
1714 M:      Chas Williams <chas@cmf.nrl.navy.mil>
1715 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1716 L:      netdev@vger.kernel.org
1717 W:      http://linux-atm.sourceforge.net
1718 S:      Maintained
1719 F:      drivers/atm/
1720 F:      include/linux/atm*
1721 F:      include/uapi/linux/atm*
1722
1723 ATMEL AT91 / AT32 MCI DRIVER
1724 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1725 S:      Maintained
1726 F:      drivers/mmc/host/atmel-mci.c
1727 F:      drivers/mmc/host/atmel-mci-regs.h
1728
1729 ATMEL AT91 / AT32 SERIAL DRIVER
1730 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1731 S:      Supported
1732 F:      drivers/tty/serial/atmel_serial.c
1733
1734 ATMEL Audio ALSA driver
1735 M:      Bo Shen <voice.shen@atmel.com>
1736 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1737 S:      Supported
1738 F:      sound/soc/atmel
1739
1740 ATMEL DMA DRIVER
1741 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1743 S:      Supported
1744 F:      drivers/dma/at_hdmac.c
1745 F:      drivers/dma/at_hdmac_regs.h
1746 F:      include/linux/platform_data/dma-atmel.h
1747
1748 ATMEL XDMA DRIVER
1749 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1750 L:      linux-arm-kernel@lists.infradead.org
1751 L:      dmaengine@vger.kernel.org
1752 S:      Supported
1753 F:      drivers/dma/at_xdmac.c
1754
1755 ATMEL I2C DRIVER
1756 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1757 L:      linux-i2c@vger.kernel.org
1758 S:      Supported
1759 F:      drivers/i2c/busses/i2c-at91.c
1760
1761 ATMEL ISI DRIVER
1762 M:      Josh Wu <josh.wu@atmel.com>
1763 L:      linux-media@vger.kernel.org
1764 S:      Supported
1765 F:      drivers/media/platform/soc_camera/atmel-isi.c
1766 F:      include/media/atmel-isi.h
1767
1768 ATMEL LCDFB DRIVER
1769 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1770 L:      linux-fbdev@vger.kernel.org
1771 S:      Maintained
1772 F:      drivers/video/fbdev/atmel_lcdfb.c
1773 F:      include/video/atmel_lcdc.h
1774
1775 ATMEL MACB ETHERNET DRIVER
1776 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1777 S:      Supported
1778 F:      drivers/net/ethernet/cadence/
1779
1780 ATMEL NAND DRIVER
1781 M:      Josh Wu <josh.wu@atmel.com>
1782 L:      linux-mtd@lists.infradead.org
1783 S:      Supported
1784 F:      drivers/mtd/nand/atmel_nand*
1785
1786 ATMEL SPI DRIVER
1787 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1788 S:      Supported
1789 F:      drivers/spi/spi-atmel.*
1790
1791 ATMEL SSC DRIVER
1792 M:      Bo Shen <voice.shen@atmel.com>
1793 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1794 S:      Supported
1795 F:      drivers/misc/atmel-ssc.c
1796 F:      include/linux/atmel-ssc.h
1797
1798 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1799 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1801 S:      Supported
1802 F:      drivers/misc/atmel_tclib.c
1803 F:      drivers/clocksource/tcb_clksrc.c
1804
1805 ATMEL USBA UDC DRIVER
1806 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1807 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1808 S:      Supported
1809 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1810
1811 ATMEL WIRELESS DRIVER
1812 M:      Simon Kelley <simon@thekelleys.org.uk>
1813 L:      linux-wireless@vger.kernel.org
1814 W:      http://www.thekelleys.org.uk/atmel
1815 W:      http://atmelwlandriver.sourceforge.net/
1816 S:      Maintained
1817 F:      drivers/net/wireless/atmel*
1818
1819 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1820 M:      Bradley Grove <linuxdrivers@attotech.com>
1821 L:      linux-scsi@vger.kernel.org
1822 W:      http://www.attotech.com
1823 S:      Supported
1824 F:      drivers/scsi/esas2r
1825
1826 AUDIT SUBSYSTEM
1827 M:      Paul Moore <paul@paul-moore.com>
1828 M:      Eric Paris <eparis@redhat.com>
1829 L:      linux-audit@redhat.com (moderated for non-subscribers)
1830 W:      http://people.redhat.com/sgrubb/audit/
1831 T:      git git://git.infradead.org/users/pcmoore/audit
1832 S:      Maintained
1833 F:      include/linux/audit.h
1834 F:      include/uapi/linux/audit.h
1835 F:      kernel/audit*
1836
1837 AUXILIARY DISPLAY DRIVERS
1838 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1839 W:      http://miguelojeda.es/auxdisplay.htm
1840 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1841 S:      Maintained
1842 F:      drivers/auxdisplay/
1843 F:      include/linux/cfag12864b.h
1844
1845 AVR32 ARCHITECTURE
1846 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1847 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1848 W:      http://www.atmel.com/products/AVR32/
1849 W:      http://mirror.egtvedt.no/avr32linux.org/
1850 W:      http://avrfreaks.net/
1851 S:      Maintained
1852 F:      arch/avr32/
1853
1854 AVR32/AT32AP MACHINE SUPPORT
1855 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1856 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1857 S:      Maintained
1858 F:      arch/avr32/mach-at32ap/
1859
1860 AX.25 NETWORK LAYER
1861 M:      Ralf Baechle <ralf@linux-mips.org>
1862 L:      linux-hams@vger.kernel.org
1863 W:      http://www.linux-ax25.org/
1864 S:      Maintained
1865 F:      include/uapi/linux/ax25.h
1866 F:      include/net/ax25.h
1867 F:      net/ax25/
1868
1869 AZ6007 DVB DRIVER
1870 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
1871 L:      linux-media@vger.kernel.org
1872 W:      http://linuxtv.org
1873 T:      git git://linuxtv.org/media_tree.git
1874 S:      Maintained
1875 F:      drivers/media/usb/dvb-usb-v2/az6007.c
1876
1877 AZTECH FM RADIO RECEIVER DRIVER
1878 M:      Hans Verkuil <hverkuil@xs4all.nl>
1879 L:      linux-media@vger.kernel.org
1880 T:      git git://linuxtv.org/media_tree.git
1881 W:      http://linuxtv.org
1882 S:      Maintained
1883 F:      drivers/media/radio/radio-aztech*
1884
1885 B43 WIRELESS DRIVER
1886 M:      Stefano Brivio <stefano.brivio@polimi.it>
1887 L:      linux-wireless@vger.kernel.org
1888 L:      b43-dev@lists.infradead.org
1889 W:      http://wireless.kernel.org/en/users/Drivers/b43
1890 S:      Maintained
1891 F:      drivers/net/wireless/b43/
1892
1893 B43LEGACY WIRELESS DRIVER
1894 M:      Larry Finger <Larry.Finger@lwfinger.net>
1895 M:      Stefano Brivio <stefano.brivio@polimi.it>
1896 L:      linux-wireless@vger.kernel.org
1897 L:      b43-dev@lists.infradead.org
1898 W:      http://wireless.kernel.org/en/users/Drivers/b43
1899 S:      Maintained
1900 F:      drivers/net/wireless/b43legacy/
1901
1902 BACKLIGHT CLASS/SUBSYSTEM
1903 M:      Jingoo Han <jg1.han@samsung.com>
1904 M:      Lee Jones <lee.jones@linaro.org>
1905 S:      Maintained
1906 F:      drivers/video/backlight/
1907 F:      include/linux/backlight.h
1908
1909 BATMAN ADVANCED
1910 M:      Marek Lindner <mareklindner@neomailbox.ch>
1911 M:      Simon Wunderlich <sw@simonwunderlich.de>
1912 M:      Antonio Quartulli <antonio@meshcoding.com>
1913 L:      b.a.t.m.a.n@lists.open-mesh.org
1914 W:      http://www.open-mesh.org/
1915 S:      Maintained
1916 F:      net/batman-adv/
1917
1918 BAYCOM/HDLCDRV DRIVERS FOR AX.25
1919 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
1920 L:      linux-hams@vger.kernel.org
1921 W:      http://www.baycom.org/~tom/ham/ham.html
1922 S:      Maintained
1923 F:      drivers/net/hamradio/baycom*
1924
1925 BCACHE (BLOCK LAYER CACHE)
1926 M:      Kent Overstreet <kmo@daterainc.com>
1927 L:      linux-bcache@vger.kernel.org
1928 W:      http://bcache.evilpiepirate.org
1929 S:      Maintained:
1930 F:      drivers/md/bcache/
1931
1932 BEFS FILE SYSTEM
1933 S:      Orphan
1934 F:      Documentation/filesystems/befs.txt
1935 F:      fs/befs/
1936
1937 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
1938 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
1939 L: netdev@vger.kernel.org
1940 S: Maintained
1941 F: drivers/net/ethernet/ec_bhf.c
1942
1943 BFS FILE SYSTEM
1944 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
1945 S:      Maintained
1946 F:      Documentation/filesystems/bfs.txt
1947 F:      fs/bfs/
1948 F:      include/uapi/linux/bfs_fs.h
1949
1950 BLACKFIN ARCHITECTURE
1951 M:      Steven Miao <realmz6@gmail.com>
1952 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1953 T:      git git://git.code.sf.net/p/adi-linux/code
1954 W:      http://blackfin.uclinux.org
1955 S:      Supported
1956 F:      arch/blackfin/
1957
1958 BLACKFIN EMAC DRIVER
1959 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1960 W:      http://blackfin.uclinux.org
1961 S:      Supported
1962 F:      drivers/net/ethernet/adi/
1963
1964 BLACKFIN RTC DRIVER
1965 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1966 W:      http://blackfin.uclinux.org
1967 S:      Supported
1968 F:      drivers/rtc/rtc-bfin.c
1969
1970 BLACKFIN SDH DRIVER
1971 M:      Sonic Zhang <sonic.zhang@analog.com>
1972 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1973 W:      http://blackfin.uclinux.org
1974 S:      Supported
1975 F:      drivers/mmc/host/bfin_sdh.c
1976
1977 BLACKFIN SERIAL DRIVER
1978 M:      Sonic Zhang <sonic.zhang@analog.com>
1979 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1980 W:      http://blackfin.uclinux.org
1981 S:      Supported
1982 F:      drivers/tty/serial/bfin_uart.c
1983
1984 BLACKFIN WATCHDOG DRIVER
1985 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1986 W:      http://blackfin.uclinux.org
1987 S:      Supported
1988 F:      drivers/watchdog/bfin_wdt.c
1989
1990 BLACKFIN I2C TWI DRIVER
1991 M:      Sonic Zhang <sonic.zhang@analog.com>
1992 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1993 W:      http://blackfin.uclinux.org/
1994 S:      Supported
1995 F:      drivers/i2c/busses/i2c-bfin-twi.c
1996
1997 BLACKFIN MEDIA DRIVER
1998 M:      Scott Jiang <scott.jiang.linux@gmail.com>
1999 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2000 W:      http://blackfin.uclinux.org/
2001 S:      Supported
2002 F:      drivers/media/platform/blackfin/
2003 F:      drivers/media/i2c/adv7183*
2004 F:      drivers/media/i2c/vs6624*
2005
2006 BLINKM RGB LED DRIVER
2007 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2008 S:      Maintained
2009 F:      drivers/leds/leds-blinkm.c
2010
2011 BLOCK LAYER
2012 M:      Jens Axboe <axboe@kernel.dk>
2013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2014 S:      Maintained
2015 F:      block/
2016
2017 BLOCK2MTD DRIVER
2018 M:      Joern Engel <joern@lazybastard.org>
2019 L:      linux-mtd@lists.infradead.org
2020 S:      Maintained
2021 F:      drivers/mtd/devices/block2mtd.c
2022
2023 BLUETOOTH DRIVERS
2024 M:      Marcel Holtmann <marcel@holtmann.org>
2025 M:      Gustavo Padovan <gustavo@padovan.org>
2026 M:      Johan Hedberg <johan.hedberg@gmail.com>
2027 L:      linux-bluetooth@vger.kernel.org
2028 W:      http://www.bluez.org/
2029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2031 S:      Maintained
2032 F:      drivers/bluetooth/
2033
2034 BLUETOOTH SUBSYSTEM
2035 M:      Marcel Holtmann <marcel@holtmann.org>
2036 M:      Gustavo Padovan <gustavo@padovan.org>
2037 M:      Johan Hedberg <johan.hedberg@gmail.com>
2038 L:      linux-bluetooth@vger.kernel.org
2039 W:      http://www.bluez.org/
2040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2042 S:      Maintained
2043 F:      net/bluetooth/
2044 F:      include/net/bluetooth/
2045
2046 BONDING DRIVER
2047 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2048 M:      Veaceslav Falico <vfalico@gmail.com>
2049 M:      Andy Gospodarek <andy@greyhouse.net>
2050 L:      netdev@vger.kernel.org
2051 W:      http://sourceforge.net/projects/bonding/
2052 S:      Supported
2053 F:      drivers/net/bonding/
2054 F:      include/uapi/linux/if_bonding.h
2055
2056 BPF (Safe dynamic programs and tools)
2057 M:      Alexei Starovoitov <ast@kernel.org>
2058 L:      netdev@vger.kernel.org
2059 L:      linux-kernel@vger.kernel.org
2060 S:      Supported
2061 F:      kernel/bpf/
2062
2063 BROADCOM B44 10/100 ETHERNET DRIVER
2064 M:      Gary Zambrano <zambrano@broadcom.com>
2065 L:      netdev@vger.kernel.org
2066 S:      Supported
2067 F:      drivers/net/ethernet/broadcom/b44.*
2068
2069 BROADCOM GENET ETHERNET DRIVER
2070 M:      Florian Fainelli <f.fainelli@gmail.com>
2071 L:      netdev@vger.kernel.org
2072 S:      Supported
2073 F:      drivers/net/ethernet/broadcom/genet/
2074
2075 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2076 M:      Sony Chacko <sony.chacko@qlogic.com>
2077 M:      Dept-HSGLinuxNICDev@qlogic.com
2078 L:      netdev@vger.kernel.org
2079 S:      Supported
2080 F:      drivers/net/ethernet/broadcom/bnx2.*
2081 F:      drivers/net/ethernet/broadcom/bnx2_*
2082
2083 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2084 M:      Ariel Elior <ariel.elior@qlogic.com>
2085 L:      netdev@vger.kernel.org
2086 S:      Supported
2087 F:      drivers/net/ethernet/broadcom/bnx2x/
2088
2089 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2090 M:      Christian Daudt <bcm@fixthebug.org>
2091 M:      Matt Porter <mporter@linaro.org>
2092 M:      Florian Fainelli <f.fainelli@gmail.com>
2093 L:      bcm-kernel-feedback-list@broadcom.com
2094 T:      git git://github.com/broadcom/mach-bcm
2095 S:      Maintained
2096 F:      arch/arm/mach-bcm/
2097 F:      arch/arm/boot/dts/bcm113*
2098 F:      arch/arm/boot/dts/bcm216*
2099 F:      arch/arm/boot/dts/bcm281*
2100 F:      arch/arm/configs/bcm_defconfig
2101 F:      drivers/mmc/host/sdhci-bcm-kona.c
2102 F:      drivers/clocksource/bcm_kona_timer.c
2103
2104 BROADCOM BCM2835 ARM ARCHITECTURE
2105 M:      Stephen Warren <swarren@wwwdotorg.org>
2106 M:      Lee Jones <lee@kernel.org>
2107 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2109 S:      Maintained
2110 N:      bcm2835
2111
2112 BROADCOM BCM33XX MIPS ARCHITECTURE
2113 M:      Kevin Cernekee <cernekee@gmail.com>
2114 L:      linux-mips@linux-mips.org
2115 S:      Maintained
2116 F:      arch/mips/bcm3384/*
2117 F:      arch/mips/include/asm/mach-bcm3384/*
2118 F:      arch/mips/kernel/*bmips*
2119
2120 BROADCOM BCM5301X ARM ARCHITECTURE
2121 M:      Hauke Mehrtens <hauke@hauke-m.de>
2122 L:      linux-arm-kernel@lists.infradead.org
2123 S:      Maintained
2124 F:      arch/arm/mach-bcm/bcm_5301x.c
2125 F:      arch/arm/boot/dts/bcm5301x.dtsi
2126 F:      arch/arm/boot/dts/bcm470*
2127
2128 BROADCOM BCM63XX ARM ARCHITECTURE
2129 M:      Florian Fainelli <f.fainelli@gmail.com>
2130 L:      linux-arm-kernel@lists.infradead.org
2131 T:      git git://git.github.com/brcm/linux.git
2132 S:      Maintained
2133 F:      arch/arm/mach-bcm/bcm63xx.c
2134 F:      arch/arm/include/debug/bcm63xx.S
2135
2136 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2137 M:      Kevin Cernekee <cernekee@gmail.com>
2138 L:      linux-usb@vger.kernel.org
2139 S:      Maintained
2140 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2141
2142 BROADCOM BCM7XXX ARM ARCHITECTURE
2143 M:      Marc Carino <marc.ceeeee@gmail.com>
2144 M:      Brian Norris <computersforpeace@gmail.com>
2145 M:      Gregory Fong <gregory.0xf0@gmail.com>
2146 M:      Florian Fainelli <f.fainelli@gmail.com>
2147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2148 S:      Maintained
2149 F:      arch/arm/mach-bcm/*brcmstb*
2150 F:      arch/arm/boot/dts/bcm7*.dts*
2151 F:      drivers/bus/brcmstb_gisb.c
2152
2153 BROADCOM BMIPS MIPS ARCHITECTURE
2154 M:      Kevin Cernekee <cernekee@gmail.com>
2155 M:      Florian Fainelli <f.fainelli@gmail.com>
2156 L:      linux-mips@linux-mips.org
2157 S:      Maintained
2158 F:      arch/mips/bmips/*
2159 F:      arch/mips/include/asm/mach-bmips/*
2160 F:      arch/mips/kernel/*bmips*
2161 F:      arch/mips/boot/dts/bcm*.dts*
2162 F:      drivers/irqchip/irq-bcm7*
2163 F:      drivers/irqchip/irq-brcmstb*
2164
2165 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2166 M:      Prashant Sreedharan <prashant@broadcom.com>
2167 M:      Michael Chan <mchan@broadcom.com>
2168 L:      netdev@vger.kernel.org
2169 S:      Supported
2170 F:      drivers/net/ethernet/broadcom/tg3.*
2171
2172 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2173 M:      Brett Rudley <brudley@broadcom.com>
2174 M:      Arend van Spriel <arend@broadcom.com>
2175 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2176 M:      Hante Meuleman <meuleman@broadcom.com>
2177 L:      linux-wireless@vger.kernel.org
2178 L:      brcm80211-dev-list@broadcom.com
2179 S:      Supported
2180 F:      drivers/net/wireless/brcm80211/
2181
2182 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2183 M:      QLogic-Storage-Upstream@qlogic.com
2184 L:      linux-scsi@vger.kernel.org
2185 S:      Supported
2186 F:      drivers/scsi/bnx2fc/
2187
2188 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2189 M:      QLogic-Storage-Upstream@qlogic.com
2190 L:      linux-scsi@vger.kernel.org
2191 S:      Supported
2192 F:      drivers/scsi/bnx2i/
2193
2194 BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2195 M:      Ray Jui <rjui@broadcom.com>
2196 M:      Scott Branden <sbranden@broadcom.com>
2197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2198 L:      bcm-kernel-feedback-list@broadcom.com
2199 T:      git git://git.github.com/brcm/linux.git
2200 S:      Maintained
2201 N:      iproc
2202 N:      cygnus
2203 N:      bcm9113*
2204 N:      bcm9583*
2205 N:      bcm583*
2206 N:      bcm113*
2207
2208 BROADCOM KONA GPIO DRIVER
2209 M:      Ray Jui <rjui@broadcom.com>
2210 L:      bcm-kernel-feedback-list@broadcom.com
2211 S:      Supported
2212 F:      drivers/gpio/gpio-bcm-kona.c
2213 F:      Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt
2214
2215 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2216 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2217 L:      linux-wireless@vger.kernel.org
2218 S:      Maintained
2219 F:      drivers/bcma/
2220 F:      include/linux/bcma/
2221
2222 BROADCOM SYSTEMPORT ETHERNET DRIVER
2223 M:      Florian Fainelli <f.fainelli@gmail.com>
2224 L:      netdev@vger.kernel.org
2225 S:      Supported
2226 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2227
2228 BROCADE BFA FC SCSI DRIVER
2229 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2230 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2231 L:      linux-scsi@vger.kernel.org
2232 S:      Supported
2233 F:      drivers/scsi/bfa/
2234
2235 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2236 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2237 L:      netdev@vger.kernel.org
2238 S:      Supported
2239 F:      drivers/net/ethernet/brocade/bna/
2240
2241 BSG (block layer generic sg v4 driver)
2242 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2243 L:      linux-scsi@vger.kernel.org
2244 S:      Supported
2245 F:      block/bsg.c
2246 F:      include/linux/bsg.h
2247 F:      include/uapi/linux/bsg.h
2248
2249 BT87X AUDIO DRIVER
2250 M:      Clemens Ladisch <clemens@ladisch.de>
2251 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2252 T:      git git://git.alsa-project.org/alsa-kernel.git
2253 S:      Maintained
2254 F:      Documentation/sound/alsa/Bt87x.txt
2255 F:      sound/pci/bt87x.c
2256
2257 BT8XXGPIO DRIVER
2258 M:      Michael Buesch <m@bues.ch>
2259 W:      http://bu3sch.de/btgpio.php
2260 S:      Maintained
2261 F:      drivers/gpio/gpio-bt8xx.c
2262
2263 BTRFS FILE SYSTEM
2264 M:      Chris Mason <clm@fb.com>
2265 M:      Josef Bacik <jbacik@fb.com>
2266 M:      David Sterba <dsterba@suse.cz>
2267 L:      linux-btrfs@vger.kernel.org
2268 W:      http://btrfs.wiki.kernel.org/
2269 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2271 S:      Maintained
2272 F:      Documentation/filesystems/btrfs.txt
2273 F:      fs/btrfs/
2274
2275 BTTV VIDEO4LINUX DRIVER
2276 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2277 L:      linux-media@vger.kernel.org
2278 W:      http://linuxtv.org
2279 T:      git git://linuxtv.org/media_tree.git
2280 S:      Odd fixes
2281 F:      Documentation/video4linux/bttv/
2282 F:      drivers/media/pci/bt8xx/bttv*
2283
2284 BUSLOGIC SCSI DRIVER
2285 M:      Khalid Aziz <khalid@gonehiking.org>
2286 L:      linux-scsi@vger.kernel.org
2287 S:      Maintained
2288 F:      drivers/scsi/BusLogic.*
2289 F:      drivers/scsi/FlashPoint.*
2290
2291 C-MEDIA CMI8788 DRIVER
2292 M:      Clemens Ladisch <clemens@ladisch.de>
2293 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2294 T:      git git://git.alsa-project.org/alsa-kernel.git
2295 S:      Maintained
2296 F:      sound/pci/oxygen/
2297
2298 C6X ARCHITECTURE
2299 M:      Mark Salter <msalter@redhat.com>
2300 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2301 L:      linux-c6x-dev@linux-c6x.org
2302 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2303 S:      Maintained
2304 F:      arch/c6x/
2305
2306 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2307 M:      David Howells <dhowells@redhat.com>
2308 L:      linux-cachefs@redhat.com
2309 S:      Supported
2310 F:      Documentation/filesystems/caching/cachefiles.txt
2311 F:      fs/cachefiles/
2312
2313 CADET FM/AM RADIO RECEIVER DRIVER
2314 M:      Hans Verkuil <hverkuil@xs4all.nl>
2315 L:      linux-media@vger.kernel.org
2316 T:      git git://linuxtv.org/media_tree.git
2317 W:      http://linuxtv.org
2318 S:      Maintained
2319 F:      drivers/media/radio/radio-cadet*
2320
2321 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2322 M:      Jonathan Corbet <corbet@lwn.net>
2323 L:      linux-media@vger.kernel.org
2324 T:      git git://linuxtv.org/media_tree.git
2325 S:      Maintained
2326 F:      Documentation/video4linux/cafe_ccic
2327 F:      drivers/media/platform/marvell-ccic/
2328
2329 CAIF NETWORK LAYER
2330 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2331 L:      netdev@vger.kernel.org
2332 S:      Supported
2333 F:      Documentation/networking/caif/
2334 F:      drivers/net/caif/
2335 F:      include/uapi/linux/caif/
2336 F:      include/net/caif/
2337 F:      net/caif/
2338
2339 CALGARY x86-64 IOMMU
2340 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2341 M:      "Jon D. Mason" <jdmason@kudzu.us>
2342 L:      discuss@x86-64.org
2343 S:      Maintained
2344 F:      arch/x86/kernel/pci-calgary_64.c
2345 F:      arch/x86/kernel/tce_64.c
2346 F:      arch/x86/include/asm/calgary.h
2347 F:      arch/x86/include/asm/tce.h
2348
2349 CAN NETWORK LAYER
2350 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2351 L:      linux-can@vger.kernel.org
2352 W:      http://gitorious.org/linux-can
2353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2355 S:      Maintained
2356 F:      Documentation/networking/can.txt
2357 F:      net/can/
2358 F:      include/linux/can/core.h
2359 F:      include/uapi/linux/can.h
2360 F:      include/uapi/linux/can/bcm.h
2361 F:      include/uapi/linux/can/raw.h
2362 F:      include/uapi/linux/can/gw.h
2363
2364 CAN NETWORK DRIVERS
2365 M:      Wolfgang Grandegger <wg@grandegger.com>
2366 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2367 L:      linux-can@vger.kernel.org
2368 W:      http://gitorious.org/linux-can
2369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2371 S:      Maintained
2372 F:      drivers/net/can/
2373 F:      include/linux/can/dev.h
2374 F:      include/linux/can/platform/
2375 F:      include/uapi/linux/can/error.h
2376 F:      include/uapi/linux/can/netlink.h
2377
2378 CAPABILITIES
2379 M:      Serge Hallyn <serge.hallyn@canonical.com>
2380 L:      linux-security-module@vger.kernel.org
2381 S:      Supported
2382 F:      include/linux/capability.h
2383 F:      include/uapi/linux/capability.h
2384 F:      security/capability.c
2385 F:      security/commoncap.c
2386 F:      kernel/capability.c
2387
2388 CC2520 IEEE-802.15.4 RADIO DRIVER
2389 M:      Varka Bhadram <varkabhadram@gmail.com>
2390 L:      linux-wpan@vger.kernel.org
2391 S:      Maintained
2392 F:      drivers/net/ieee802154/cc2520.c
2393 F:      include/linux/spi/cc2520.h
2394 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2395
2396 CELL BROADBAND ENGINE ARCHITECTURE
2397 M:      Arnd Bergmann <arnd@arndb.de>
2398 L:      linuxppc-dev@lists.ozlabs.org
2399 L:      cbe-oss-dev@lists.ozlabs.org
2400 W:      http://www.ibm.com/developerworks/power/cell/
2401 S:      Supported
2402 F:      arch/powerpc/include/asm/cell*.h
2403 F:      arch/powerpc/include/asm/spu*.h
2404 F:      arch/powerpc/include/uapi/asm/spu*.h
2405 F:      arch/powerpc/oprofile/*cell*
2406 F:      arch/powerpc/platforms/cell/
2407
2408 CEPH DISTRIBUTED FILE SYSTEM CLIENT
2409 M:      Sage Weil <sage@inktank.com>
2410 L:      ceph-devel@vger.kernel.org
2411 W:      http://ceph.com/
2412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2413 S:      Supported
2414 F:      Documentation/filesystems/ceph.txt
2415 F:      fs/ceph/
2416 F:      net/ceph/
2417 F:      include/linux/ceph/
2418 F:      include/linux/crush/
2419
2420 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2421 L:      linux-usb@vger.kernel.org
2422 S:      Orphan
2423 F:      Documentation/usb/WUSB-Design-overview.txt
2424 F:      Documentation/usb/wusb-cbaf
2425 F:      drivers/usb/host/hwa-hc.c
2426 F:      drivers/usb/host/whci/
2427 F:      drivers/usb/wusbcore/
2428 F:      include/linux/usb/wusb*
2429
2430 CFAG12864B LCD DRIVER
2431 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2432 W:      http://miguelojeda.es/auxdisplay.htm
2433 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2434 S:      Maintained
2435 F:      drivers/auxdisplay/cfag12864b.c
2436 F:      include/linux/cfag12864b.h
2437
2438 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2439 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2440 W:      http://miguelojeda.es/auxdisplay.htm
2441 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2442 S:      Maintained
2443 F:      drivers/auxdisplay/cfag12864bfb.c
2444 F:      include/linux/cfag12864b.h
2445
2446 CFG80211 and NL80211
2447 M:      Johannes Berg <johannes@sipsolutions.net>
2448 L:      linux-wireless@vger.kernel.org
2449 W:      http://wireless.kernel.org/
2450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2452 S:      Maintained
2453 F:      include/uapi/linux/nl80211.h
2454 F:      include/net/cfg80211.h
2455 F:      net/wireless/*
2456 X:      net/wireless/wext*
2457
2458 CHAR and MISC DRIVERS
2459 M:      Arnd Bergmann <arnd@arndb.de>
2460 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2462 S:      Supported
2463 F:      drivers/char/*
2464 F:      drivers/misc/*
2465 F:      include/linux/miscdevice.h
2466
2467 CHECKPATCH
2468 M:      Andy Whitcroft <apw@canonical.com>
2469 M:      Joe Perches <joe@perches.com>
2470 S:      Maintained
2471 F:      scripts/checkpatch.pl
2472
2473 CHINESE DOCUMENTATION
2474 M:      Harry Wei <harryxiyou@gmail.com>
2475 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2476 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2477 S:      Maintained
2478 F:      Documentation/zh_CN/
2479
2480 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2481 M:      Peter Chen <Peter.Chen@freescale.com>
2482 T:      git git://github.com/hzpeterchen/linux-usb.git
2483 L:      linux-usb@vger.kernel.org
2484 S:      Maintained
2485 F:      drivers/usb/chipidea/
2486
2487 CHROME HARDWARE PLATFORM SUPPORT
2488 M:      Olof Johansson <olof@lixom.net>
2489 S:      Maintained
2490 F:      drivers/platform/chrome/
2491
2492 CISCO VIC ETHERNET NIC DRIVER
2493 M:      Christian Benvenuti <benve@cisco.com>
2494 M:      Sujith Sankar <ssujith@cisco.com>
2495 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2496 M:      Neel Patel <neepatel@cisco.com>
2497 S:      Supported
2498 F:      drivers/net/ethernet/cisco/enic/
2499
2500 CISCO VIC LOW LATENCY NIC DRIVER
2501 M:      Upinder Malhi <umalhi@cisco.com>
2502 S:      Supported
2503 F:      drivers/infiniband/hw/usnic
2504
2505 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2506 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2507 L:      netdev@vger.kernel.org
2508 S:      Maintained
2509 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2510
2511 CIRRUS LOGIC AUDIO CODEC DRIVERS
2512 M:      Brian Austin <brian.austin@cirrus.com>
2513 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2514 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2515 S:      Maintained
2516 F:      sound/soc/codecs/cs*
2517
2518 CLEANCACHE API
2519 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2520 L:      linux-kernel@vger.kernel.org
2521 S:      Maintained
2522 F:      mm/cleancache.c
2523 F:      include/linux/cleancache.h
2524
2525 CLK API
2526 M:      Russell King <linux@arm.linux.org.uk>
2527 S:      Maintained
2528 F:      include/linux/clk.h
2529
2530 CLOCKSOURCE, CLOCKEVENT DRIVERS
2531 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2532 M:      Thomas Gleixner <tglx@linutronix.de>
2533 L:      linux-kernel@vger.kernel.org
2534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2535 S:      Supported
2536 F:      drivers/clocksource
2537
2538 CISCO FCOE HBA DRIVER
2539 M:      Hiral Patel <hiralpat@cisco.com>
2540 M:      Suma Ramars <sramars@cisco.com>
2541 M:      Brian Uchino <buchino@cisco.com>
2542 L:      linux-scsi@vger.kernel.org
2543 S:      Supported
2544 F:      drivers/scsi/fnic/
2545
2546 CMPC ACPI DRIVER
2547 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2548 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2549 L:      platform-driver-x86@vger.kernel.org
2550 S:      Supported
2551 F:      drivers/platform/x86/classmate-laptop.c
2552
2553 COCCINELLE/Semantic Patches (SmPL)
2554 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2555 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2556 M:      Nicolas Palix <nicolas.palix@imag.fr>
2557 M:      Michal Marek <mmarek@suse.cz>
2558 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2560 W:      http://coccinelle.lip6.fr/
2561 S:      Supported
2562 F:      Documentation/coccinelle.txt
2563 F:      scripts/coccinelle/
2564 F:      scripts/coccicheck
2565
2566 CODA FILE SYSTEM
2567 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2568 M:      coda@cs.cmu.edu
2569 L:      codalist@coda.cs.cmu.edu
2570 W:      http://www.coda.cs.cmu.edu/
2571 S:      Maintained
2572 F:      Documentation/filesystems/coda.txt
2573 F:      fs/coda/
2574 F:      include/linux/coda*.h
2575 F:      include/uapi/linux/coda*.h
2576
2577 CODA V4L2 MEM2MEM DRIVER
2578 M:      Philipp Zabel <p.zabel@pengutronix.de>
2579 L:      linux-media@vger.kernel.org
2580 S:      Maintained
2581 F:      Documentation/devicetree/bindings/media/coda.txt
2582 F:      drivers/media/platform/coda/
2583
2584 COMMON CLK FRAMEWORK
2585 M:      Mike Turquette <mturquette@linaro.org>
2586 M:      Stephen Boyd <sboyd@codeaurora.org>
2587 L:      linux-kernel@vger.kernel.org
2588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2589 S:      Maintained
2590 F:      drivers/clk/
2591 X:      drivers/clk/clkdev.c
2592 F:      include/linux/clk-pr*
2593 F:      include/linux/clk/
2594
2595 COMMON INTERNET FILE SYSTEM (CIFS)
2596 M:      Steve French <sfrench@samba.org>
2597 L:      linux-cifs@vger.kernel.org
2598 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2599 W:      http://linux-cifs.samba.org/
2600 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2601 S:      Supported
2602 F:      Documentation/filesystems/cifs/
2603 F:      fs/cifs/
2604
2605 COMPACTPCI HOTPLUG CORE
2606 M:      Scott Murray <scott@spiteful.org>
2607 L:      linux-pci@vger.kernel.org
2608 S:      Maintained
2609 F:      drivers/pci/hotplug/cpci_hotplug*
2610
2611 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2612 M:      Scott Murray <scott@spiteful.org>
2613 L:      linux-pci@vger.kernel.org
2614 S:      Maintained
2615 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2616
2617 COMPACTPCI HOTPLUG GENERIC DRIVER
2618 M:      Scott Murray <scott@spiteful.org>
2619 L:      linux-pci@vger.kernel.org
2620 S:      Maintained
2621 F:      drivers/pci/hotplug/cpcihp_generic.c
2622
2623 COMPAL LAPTOP SUPPORT
2624 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2625 L:      platform-driver-x86@vger.kernel.org
2626 S:      Maintained
2627 F:      drivers/platform/x86/compal-laptop.c
2628
2629 CONEXANT ACCESSRUNNER USB DRIVER
2630 M:      Simon Arlott <cxacru@fire.lp0.eu>
2631 L:      accessrunner-general@lists.sourceforge.net
2632 W:      http://accessrunner.sourceforge.net/
2633 S:      Maintained
2634 F:      drivers/usb/atm/cxacru.c
2635
2636 CONFIGFS
2637 M:      Joel Becker <jlbec@evilplan.org>
2638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2639 S:      Supported
2640 F:      fs/configfs/
2641 F:      include/linux/configfs.h
2642
2643 CONNECTOR
2644 M:      Evgeniy Polyakov <zbr@ioremap.net>
2645 L:      netdev@vger.kernel.org
2646 S:      Maintained
2647 F:      drivers/connector/
2648
2649 CONTROL GROUP (CGROUP)
2650 M:      Tejun Heo <tj@kernel.org>
2651 M:      Li Zefan <lizefan@huawei.com>
2652 L:      cgroups@vger.kernel.org
2653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2654 S:      Maintained
2655 F:      Documentation/cgroups/
2656 F:      include/linux/cgroup*
2657 F:      kernel/cgroup*
2658
2659 CONTROL GROUP - CPUSET
2660 M:      Li Zefan <lizefan@huawei.com>
2661 L:      cgroups@vger.kernel.org
2662 W:      http://www.bullopensource.org/cpuset/
2663 W:      http://oss.sgi.com/projects/cpusets/
2664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2665 S:      Maintained
2666 F:      Documentation/cgroups/cpusets.txt
2667 F:      include/linux/cpuset.h
2668 F:      kernel/cpuset.c
2669
2670 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2671 M:      Johannes Weiner <hannes@cmpxchg.org>
2672 M:      Michal Hocko <mhocko@suse.cz>
2673 L:      cgroups@vger.kernel.org
2674 L:      linux-mm@kvack.org
2675 S:      Maintained
2676 F:      mm/memcontrol.c
2677 F:      mm/swap_cgroup.c
2678
2679 CORETEMP HARDWARE MONITORING DRIVER
2680 M:      Fenghua Yu <fenghua.yu@intel.com>
2681 L:      lm-sensors@lm-sensors.org
2682 S:      Maintained
2683 F:      Documentation/hwmon/coretemp
2684 F:      drivers/hwmon/coretemp.c
2685
2686 COSA/SRP SYNC SERIAL DRIVER
2687 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2688 W:      http://www.fi.muni.cz/~kas/cosa/
2689 S:      Maintained
2690 F:      drivers/net/wan/cosa*
2691
2692 CPMAC ETHERNET DRIVER
2693 M:      Florian Fainelli <florian@openwrt.org>
2694 L:      netdev@vger.kernel.org
2695 S:      Maintained
2696 F:      drivers/net/ethernet/ti/cpmac.c
2697
2698 CPU FREQUENCY DRIVERS
2699 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
2700 M:      Viresh Kumar <viresh.kumar@linaro.org>
2701 L:      linux-pm@vger.kernel.org
2702 S:      Maintained
2703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2704 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2705 F:      drivers/cpufreq/
2706 F:      include/linux/cpufreq.h
2707
2708 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2709 M:      Viresh Kumar <viresh.kumar@linaro.org>
2710 M:      Sudeep Holla <sudeep.holla@arm.com>
2711 L:      linux-pm@vger.kernel.org
2712 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2713 S:      Maintained
2714 F:      drivers/cpufreq/arm_big_little.h
2715 F:      drivers/cpufreq/arm_big_little.c
2716 F:      drivers/cpufreq/arm_big_little_dt.c
2717
2718 CPUIDLE DRIVER - ARM BIG LITTLE
2719 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2720 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2721 L:      linux-pm@vger.kernel.org
2722 L:      linux-arm-kernel@lists.infradead.org
2723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2724 S:      Maintained
2725 F:      drivers/cpuidle/cpuidle-big_little.c
2726
2727 CPUIDLE DRIVER - ARM EXYNOS
2728 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2729 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2730 M:      Kukjin Kim <kgene@kernel.org>
2731 L:      linux-pm@vger.kernel.org
2732 L:      linux-samsung-soc@vger.kernel.org
2733 S:      Supported
2734 F:      drivers/cpuidle/cpuidle-exynos.c
2735 F:      arch/arm/mach-exynos/pm.c
2736
2737 CPUIDLE DRIVERS
2738 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
2739 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2740 L:      linux-pm@vger.kernel.org
2741 S:      Maintained
2742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2743 F:      drivers/cpuidle/*
2744 F:      include/linux/cpuidle.h
2745
2746 CPUID/MSR DRIVER
2747 M:      "H. Peter Anvin" <hpa@zytor.com>
2748 S:      Maintained
2749 F:      arch/x86/kernel/cpuid.c
2750 F:      arch/x86/kernel/msr.c
2751
2752 CPU POWER MONITORING SUBSYSTEM
2753 M:      Thomas Renninger <trenn@suse.de>
2754 L:      linux-pm@vger.kernel.org
2755 S:      Maintained
2756 F:      tools/power/cpupower/
2757
2758 CRAMFS FILESYSTEM
2759 W:      http://sourceforge.net/projects/cramfs/
2760 S:      Orphan / Obsolete
2761 F:      Documentation/filesystems/cramfs.txt
2762 F:      fs/cramfs/
2763
2764 CRIS PORT
2765 M:      Mikael Starvik <starvik@axis.com>
2766 M:      Jesper Nilsson <jesper.nilsson@axis.com>
2767 L:      linux-cris-kernel@axis.com
2768 W:      http://developer.axis.com
2769 S:      Maintained
2770 F:      arch/cris/
2771 F:      drivers/tty/serial/crisv10.*
2772
2773 CRYPTO API
2774 M:      Herbert Xu <herbert@gondor.apana.org.au>
2775 M:      "David S. Miller" <davem@davemloft.net>
2776 L:      linux-crypto@vger.kernel.org
2777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2778 S:      Maintained
2779 F:      Documentation/crypto/
2780 F:      arch/*/crypto/
2781 F:      crypto/
2782 F:      drivers/crypto/
2783 F:      include/crypto/
2784
2785 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2786 M:      Neil Horman <nhorman@tuxdriver.com>
2787 L:      linux-crypto@vger.kernel.org
2788 S:      Maintained
2789 F:      crypto/ansi_cprng.c
2790 F:      crypto/rng.c
2791
2792 CS5535 Audio ALSA driver
2793 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
2794 S:      Maintained
2795 F:      sound/pci/cs5535audio/
2796
2797 CW1200 WLAN driver
2798 M:      Solomon Peachy <pizza@shaftnet.org>
2799 S:      Maintained
2800 F:      drivers/net/wireless/cw1200/
2801
2802 CX18 VIDEO4LINUX DRIVER
2803 M:      Andy Walls <awalls@md.metrocast.net>
2804 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
2805 L:      linux-media@vger.kernel.org
2806 T:      git git://linuxtv.org/media_tree.git
2807 W:      http://linuxtv.org
2808 W:      http://www.ivtvdriver.org/index.php/Cx18
2809 S:      Maintained
2810 F:      Documentation/video4linux/cx18.txt
2811 F:      drivers/media/pci/cx18/
2812 F:      include/uapi/linux/ivtv*
2813
2814 CX2341X MPEG ENCODER HELPER MODULE
2815 M:      Hans Verkuil <hverkuil@xs4all.nl>
2816 L:      linux-media@vger.kernel.org
2817 T:      git git://linuxtv.org/media_tree.git
2818 W:      http://linuxtv.org
2819 S:      Maintained
2820 F:      drivers/media/common/cx2341x*
2821 F:      include/media/cx2341x*
2822
2823 CX88 VIDEO4LINUX DRIVER
2824 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2825 L:      linux-media@vger.kernel.org
2826 W:      http://linuxtv.org
2827 T:      git git://linuxtv.org/media_tree.git
2828 S:      Odd fixes
2829 F:      Documentation/video4linux/cx88/
2830 F:      drivers/media/pci/cx88/
2831
2832 CXD2820R MEDIA DRIVER
2833 M:      Antti Palosaari <crope@iki.fi>
2834 L:      linux-media@vger.kernel.org
2835 W:      http://linuxtv.org/
2836 W:      http://palosaari.fi/linux/
2837 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
2838 T:      git git://linuxtv.org/anttip/media_tree.git
2839 S:      Maintained
2840 F:      drivers/media/dvb-frontends/cxd2820r*
2841
2842 CXGB3 ETHERNET DRIVER (CXGB3)
2843 M:      Santosh Raspatur <santosh@chelsio.com>
2844 L:      netdev@vger.kernel.org
2845 W:      http://www.chelsio.com
2846 S:      Supported
2847 F:      drivers/net/ethernet/chelsio/cxgb3/
2848
2849 CXGB3 ISCSI DRIVER (CXGB3I)
2850 M:      Karen Xie <kxie@chelsio.com>
2851 L:      linux-scsi@vger.kernel.org
2852 W:      http://www.chelsio.com
2853 S:      Supported
2854 F:      drivers/scsi/cxgbi/cxgb3i
2855
2856 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
2857 M:      Steve Wise <swise@chelsio.com>
2858 L:      linux-rdma@vger.kernel.org
2859 W:      http://www.openfabrics.org
2860 S:      Supported
2861 F:      drivers/infiniband/hw/cxgb3/
2862
2863 CXGB4 ETHERNET DRIVER (CXGB4)
2864 M:      Hariprasad S <hariprasad@chelsio.com>
2865 L:      netdev@vger.kernel.org
2866 W:      http://www.chelsio.com
2867 S:      Supported
2868 F:      drivers/net/ethernet/chelsio/cxgb4/
2869
2870 CXGB4 ISCSI DRIVER (CXGB4I)
2871 M:      Karen Xie <kxie@chelsio.com>
2872 L:      linux-scsi@vger.kernel.org
2873 W:      http://www.chelsio.com
2874 S:      Supported
2875 F:      drivers/scsi/cxgbi/cxgb4i
2876
2877 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2878 M:      Steve Wise <swise@chelsio.com>
2879 L:      linux-rdma@vger.kernel.org
2880 W:      http://www.openfabrics.org
2881 S:      Supported
2882 F:      drivers/infiniband/hw/cxgb4/
2883
2884 CXGB4VF ETHERNET DRIVER (CXGB4VF)
2885 M:      Casey Leedom <leedom@chelsio.com>
2886 L:      netdev@vger.kernel.org
2887 W:      http://www.chelsio.com
2888 S:      Supported
2889 F:      drivers/net/ethernet/chelsio/cxgb4vf/
2890
2891 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
2892 M:      Ian Munsie <imunsie@au1.ibm.com>
2893 M:      Michael Neuling <mikey@neuling.org>
2894 L:      linuxppc-dev@lists.ozlabs.org
2895 S:      Supported
2896 F:      drivers/misc/cxl/
2897 F:      include/misc/cxl.h
2898 F:      include/uapi/misc/cxl.h
2899 F:      Documentation/powerpc/cxl.txt
2900 F:      Documentation/powerpc/cxl.txt
2901 F:      Documentation/ABI/testing/sysfs-class-cxl
2902
2903 STMMAC ETHERNET DRIVER
2904 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
2905 L:      netdev@vger.kernel.org
2906 W:      http://www.stlinux.com
2907 S:      Supported
2908 F:      drivers/net/ethernet/stmicro/stmmac/
2909
2910 CYBERPRO FB DRIVER
2911 M:      Russell King <linux@arm.linux.org.uk>
2912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2913 W:      http://www.arm.linux.org.uk/
2914 S:      Maintained
2915 F:      drivers/video/fbdev/cyber2000fb.*
2916
2917 CYCLADES ASYNC MUX DRIVER
2918 W:      http://www.cyclades.com/
2919 S:      Orphan
2920 F:      drivers/tty/cyclades.c
2921 F:      include/linux/cyclades.h
2922 F:      include/uapi/linux/cyclades.h
2923
2924 CYCLADES PC300 DRIVER
2925 W:      http://www.cyclades.com/
2926 S:      Orphan
2927 F:      drivers/net/wan/pc300*
2928
2929 CYPRESS_FIRMWARE MEDIA DRIVER
2930 M:      Antti Palosaari <crope@iki.fi>
2931 L:      linux-media@vger.kernel.org
2932 W:      http://linuxtv.org/
2933 W:      http://palosaari.fi/linux/
2934 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
2935 T:      git git://linuxtv.org/anttip/media_tree.git
2936 S:      Maintained
2937 F:      drivers/media/common/cypress_firmware*
2938
2939 CYTTSP TOUCHSCREEN DRIVER
2940 M:      Ferruh Yigit <fery@cypress.com>
2941 L:      linux-input@vger.kernel.org
2942 S:      Supported
2943 F:      drivers/input/touchscreen/cyttsp*
2944 F:      include/linux/input/cyttsp.h
2945
2946 DAMA SLAVE for AX.25
2947 M:      Joerg Reuter <jreuter@yaina.de>
2948 W:      http://yaina.de/jreuter/
2949 W:      http://www.qsl.net/dl1bke/
2950 L:      linux-hams@vger.kernel.org
2951 S:      Maintained
2952 F:      net/ax25/af_ax25.c
2953 F:      net/ax25/ax25_dev.c
2954 F:      net/ax25/ax25_ds_*
2955 F:      net/ax25/ax25_in.c
2956 F:      net/ax25/ax25_out.c
2957 F:      net/ax25/ax25_timer.c
2958 F:      net/ax25/sysctl_net_ax25.c
2959
2960 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
2961 L:      netdev@vger.kernel.org
2962 S:      Orphan
2963 F:      Documentation/networking/dmfe.txt
2964 F:      drivers/net/ethernet/dec/tulip/dmfe.c
2965
2966 DC390/AM53C974 SCSI driver
2967 M:      Hannes Reinecke <hare@suse.de>
2968 L:      linux-scsi@vger.kernel.org
2969 S:      Maintained
2970 F:      drivers/scsi/am53c974.c
2971
2972 DC395x SCSI driver
2973 M:      Oliver Neukum <oliver@neukum.org>
2974 M:      Ali Akcaagac <aliakc@web.de>
2975 M:      Jamie Lenehan <lenehan@twibble.org>
2976 L:      dc395x@twibble.org
2977 W:      http://twibble.org/dist/dc395x/
2978 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
2979 S:      Maintained
2980 F:      Documentation/scsi/dc395x.txt
2981 F:      drivers/scsi/dc395x.*
2982
2983 DCCP PROTOCOL
2984 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
2985 L:      dccp@vger.kernel.org
2986 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
2987 S:      Maintained
2988 F:      include/linux/dccp.h
2989 F:      include/uapi/linux/dccp.h
2990 F:      include/linux/tfrc.h
2991 F:      net/dccp/
2992
2993 DECnet NETWORK LAYER
2994 W:      http://linux-decnet.sourceforge.net
2995 L:      linux-decnet-user@lists.sourceforge.net
2996 S:      Orphan
2997 F:      Documentation/networking/decnet.txt
2998 F:      net/decnet/
2999
3000 DECSTATION PLATFORM SUPPORT
3001 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3002 L:      linux-mips@linux-mips.org
3003 W:      http://www.linux-mips.org/wiki/DECstation
3004 S:      Maintained
3005 F:      arch/mips/dec/
3006 F:      arch/mips/include/asm/dec/
3007 F:      arch/mips/include/asm/mach-dec/
3008
3009 DEFXX FDDI NETWORK DRIVER
3010 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3011 S:      Maintained
3012 F:      drivers/net/fddi/defxx.*
3013
3014 DELL LAPTOP DRIVER
3015 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3016 L:      platform-driver-x86@vger.kernel.org
3017 S:      Maintained
3018 F:      drivers/platform/x86/dell-laptop.c
3019
3020 DELL LAPTOP SMM DRIVER
3021 M:      Guenter Roeck <linux@roeck-us.net>
3022 F:      drivers/char/i8k.c
3023 F:      include/uapi/linux/i8k.h
3024
3025 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3026 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3027 S:      Maintained
3028 F:      Documentation/dcdbas.txt
3029 F:      drivers/firmware/dcdbas.*
3030
3031 DELL WMI EXTRAS DRIVER
3032 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3033 S:      Maintained
3034 F:      drivers/platform/x86/dell-wmi.c
3035
3036 DESIGNWARE USB2 DRD IP DRIVER
3037 M:      Paul Zimmerman <paulz@synopsys.com>
3038 L:      linux-usb@vger.kernel.org
3039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3040 S:      Maintained
3041 F:      drivers/usb/dwc2/
3042
3043 DESIGNWARE USB3 DRD IP DRIVER
3044 M:      Felipe Balbi <balbi@ti.com>
3045 L:      linux-usb@vger.kernel.org
3046 L:      linux-omap@vger.kernel.org
3047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3048 S:      Maintained
3049 F:      drivers/usb/dwc3/
3050
3051 DEVICE COREDUMP (DEV_COREDUMP)
3052 M:      Johannes Berg <johannes@sipsolutions.net>
3053 L:      linux-kernel@vger.kernel.org
3054 S:      Maintained
3055 F:      drivers/base/devcoredump.c
3056 F:      include/linux/devcoredump.h
3057
3058 DEVICE FREQUENCY (DEVFREQ)
3059 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3060 M:      Kyungmin Park <kyungmin.park@samsung.com>
3061 L:      linux-pm@vger.kernel.org
3062 S:      Maintained
3063 F:      drivers/devfreq/
3064
3065 DEVICE NUMBER REGISTRY
3066 M:      Torben Mathiasen <device@lanana.org>
3067 W:      http://lanana.org/docs/device-list/index.html
3068 S:      Maintained
3069
3070 DEVICE-MAPPER  (LVM)
3071 M:      Alasdair Kergon <agk@redhat.com>
3072 M:      Mike Snitzer <snitzer@redhat.com>
3073 M:      dm-devel@redhat.com
3074 L:      dm-devel@redhat.com
3075 W:      http://sources.redhat.com/dm
3076 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3078 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3079 S:      Maintained
3080 F:      Documentation/device-mapper/
3081 F:      drivers/md/dm*
3082 F:      drivers/md/persistent-data/
3083 F:      include/linux/device-mapper.h
3084 F:      include/linux/dm-*.h
3085 F:      include/uapi/linux/dm-*.h
3086
3087 DIALOG SEMICONDUCTOR DRIVERS
3088 M:      Support Opensource <support.opensource@diasemi.com>
3089 W:      http://www.dialog-semiconductor.com/products
3090 S:      Supported
3091 F:      Documentation/hwmon/da90??
3092 F:      drivers/gpio/gpio-da90??.c
3093 F:      drivers/hwmon/da90??-hwmon.c
3094 F:      drivers/input/misc/da90??_onkey.c
3095 F:      drivers/input/touchscreen/da9052_tsi.c
3096 F:      drivers/leds/leds-da90??.c
3097 F:      drivers/mfd/da903x.c
3098 F:      drivers/mfd/da90??-*.c
3099 F:      drivers/power/da9052-battery.c
3100 F:      drivers/regulator/da903x.c
3101 F:      drivers/regulator/da9???-regulator.[ch]
3102 F:      drivers/rtc/rtc-da90??.c
3103 F:      drivers/video/backlight/da90??_bl.c
3104 F:      drivers/watchdog/da90??_wdt.c
3105 F:      include/linux/mfd/da903x.h
3106 F:      include/linux/mfd/da9052/
3107 F:      include/linux/mfd/da9055/
3108 F:      include/linux/mfd/da9063/
3109 F:      include/sound/da[79]*.h
3110 F:      sound/soc/codecs/da[79]*.[ch]
3111
3112 DIGI NEO AND CLASSIC PCI PRODUCTS
3113 M:      Lidza Louina <lidza.louina@gmail.com>
3114 M:      Mark Hounschell <markh@compro.net>
3115 L:      driverdev-devel@linuxdriverproject.org
3116 S:      Maintained
3117 F:      drivers/staging/dgnc/
3118
3119 DIGI EPCA PCI PRODUCTS
3120 M:      Lidza Louina <lidza.louina@gmail.com>
3121 M:      Mark Hounschell <markh@compro.net>
3122 M:      Daeseok Youn <daeseok.youn@gmail.com>
3123 L:      driverdev-devel@linuxdriverproject.org
3124 S:      Maintained
3125 F:      drivers/staging/dgap/
3126
3127 DIOLAN U2C-12 I2C DRIVER
3128 M:      Guenter Roeck <linux@roeck-us.net>
3129 L:      linux-i2c@vger.kernel.org
3130 S:      Maintained
3131 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3132
3133 DIRECTORY NOTIFICATION (DNOTIFY)
3134 M:      Eric Paris <eparis@parisplace.org>
3135 S:      Maintained
3136 F:      Documentation/filesystems/dnotify.txt
3137 F:      fs/notify/dnotify/
3138 F:      include/linux/dnotify.h
3139
3140 DISK GEOMETRY AND PARTITION HANDLING
3141 M:      Andries Brouwer <aeb@cwi.nl>
3142 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3143 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3144 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3145 S:      Maintained
3146
3147 DISKQUOTA
3148 M:      Jan Kara <jack@suse.cz>
3149 S:      Maintained
3150 F:      Documentation/filesystems/quota.txt
3151 F:      fs/quota/
3152 F:      include/linux/quota*.h
3153 F:      include/uapi/linux/quota*.h
3154
3155 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3156 M:      Bernie Thompson <bernie@plugable.com>
3157 L:      linux-fbdev@vger.kernel.org
3158 S:      Maintained
3159 W:      http://plugable.com/category/projects/udlfb/
3160 F:      drivers/video/fbdev/udlfb.c
3161 F:      include/video/udlfb.h
3162 F:      Documentation/fb/udlfb.txt
3163
3164 DISTRIBUTED LOCK MANAGER (DLM)
3165 M:      Christine Caulfield <ccaulfie@redhat.com>
3166 M:      David Teigland <teigland@redhat.com>
3167 L:      cluster-devel@redhat.com
3168 W:      http://sources.redhat.com/cluster/
3169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3170 S:      Supported
3171 F:      fs/dlm/
3172
3173 DMA BUFFER SHARING FRAMEWORK
3174 M:      Sumit Semwal <sumit.semwal@linaro.org>
3175 S:      Maintained
3176 L:      linux-media@vger.kernel.org
3177 L:      dri-devel@lists.freedesktop.org
3178 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3179 F:      drivers/dma-buf/
3180 F:      include/linux/dma-buf*
3181 F:      include/linux/reservation.h
3182 F:      include/linux/*fence.h
3183 F:      Documentation/dma-buf-sharing.txt
3184 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3185
3186 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3187 M:      Vinod Koul <vinod.koul@intel.com>
3188 L:      dmaengine@vger.kernel.org
3189 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3190 S:      Maintained
3191 F:      drivers/dma/
3192 F:      include/linux/dmaengine.h
3193 F:      Documentation/dmaengine/
3194 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3195
3196 DME1737 HARDWARE MONITOR DRIVER
3197 M:      Juerg Haefliger <juergh@gmail.com>
3198 L:      lm-sensors@lm-sensors.org
3199 S:      Maintained
3200 F:      Documentation/hwmon/dme1737
3201 F:      drivers/hwmon/dme1737.c
3202
3203 DOCKING STATION DRIVER
3204 M:      Shaohua Li <shaohua.li@intel.com>
3205 L:      linux-acpi@vger.kernel.org
3206 S:      Supported
3207 F:      drivers/acpi/dock.c
3208
3209 DOCUMENTATION
3210 M:      Jonathan Corbet <corbet@lwn.net>
3211 L:      linux-doc@vger.kernel.org
3212 S:      Maintained
3213 F:      Documentation/
3214 X:      Documentation/ABI/
3215 X:      Documentation/devicetree/
3216 X:      Documentation/[a-z][a-z]_[A-Z][A-Z]/
3217
3218 DOUBLETALK DRIVER
3219 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3220 L:      blinux-list@redhat.com
3221 S:      Maintained
3222 F:      drivers/char/dtlk.c
3223 F:      include/linux/dtlk.h
3224
3225 DPT_I2O SCSI RAID DRIVER
3226 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3227 L:      linux-scsi@vger.kernel.org
3228 W:      http://www.adaptec.com/
3229 S:      Maintained
3230 F:      drivers/scsi/dpt*
3231 F:      drivers/scsi/dpt/
3232
3233 DRBD DRIVER
3234 P:      Philipp Reisner
3235 P:      Lars Ellenberg
3236 M:      drbd-dev@lists.linbit.com
3237 L:      drbd-user@lists.linbit.com
3238 W:      http://www.drbd.org
3239 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3240 T:      git git://git.drbd.org/drbd-8.3.git
3241 S:      Supported
3242 F:      drivers/block/drbd/
3243 F:      lib/lru_cache.c
3244 F:      Documentation/blockdev/drbd/
3245
3246 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
3247 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3249 S:      Supported
3250 F:      Documentation/kobject.txt
3251 F:      drivers/base/
3252 F:      fs/sysfs/
3253 F:      fs/debugfs/
3254 F:      include/linux/kobj*
3255 F:      include/linux/debugfs.h
3256 F:      lib/kobj*
3257
3258 DRM DRIVERS
3259 M:      David Airlie <airlied@linux.ie>
3260 L:      dri-devel@lists.freedesktop.org
3261 T:      git git://people.freedesktop.org/~airlied/linux
3262 S:      Maintained
3263 F:      drivers/gpu/drm/
3264 F:      drivers/gpu/vga/
3265 F:      include/drm/
3266 F:      include/uapi/drm/
3267
3268 RADEON DRM DRIVERS
3269 M:      Alex Deucher <alexander.deucher@amd.com>
3270 M:      Christian König <christian.koenig@amd.com>
3271 L:      dri-devel@lists.freedesktop.org
3272 T:      git git://people.freedesktop.org/~agd5f/linux
3273 S:      Supported
3274 F:      drivers/gpu/drm/radeon/
3275 F:      include/uapi/drm/radeon*
3276
3277 DRM PANEL DRIVERS
3278 M:      Thierry Reding <thierry.reding@gmail.com>
3279 L:      dri-devel@lists.freedesktop.org
3280 T:      git git://anongit.freedesktop.org/tegra/linux.git
3281 S:      Maintained
3282 F:      drivers/gpu/drm/drm_panel.c
3283 F:      drivers/gpu/drm/panel/
3284 F:      include/drm/drm_panel.h
3285 F:      Documentation/devicetree/bindings/panel/
3286
3287 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3288 M:      Daniel Vetter <daniel.vetter@intel.com>
3289 M:      Jani Nikula <jani.nikula@linux.intel.com>
3290 L:      intel-gfx@lists.freedesktop.org
3291 L:      dri-devel@lists.freedesktop.org
3292 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3293 T:      git git://anongit.freedesktop.org/drm-intel
3294 S:      Supported
3295 F:      drivers/gpu/drm/i915/
3296 F:      include/drm/i915*
3297 F:      include/uapi/drm/i915*
3298
3299 DRM DRIVERS FOR EXYNOS
3300 M:      Inki Dae <inki.dae@samsung.com>
3301 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3302 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3303 M:      Kyungmin Park <kyungmin.park@samsung.com>
3304 L:      dri-devel@lists.freedesktop.org
3305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3306 S:      Supported
3307 F:      drivers/gpu/drm/exynos/
3308 F:      include/drm/exynos*
3309 F:      include/uapi/drm/exynos*
3310
3311 DRM DRIVERS FOR FREESCALE IMX
3312 M:      Philipp Zabel <p.zabel@pengutronix.de>
3313 L:      dri-devel@lists.freedesktop.org
3314 S:      Maintained
3315 F:      drivers/gpu/drm/imx/
3316 F:      Documentation/devicetree/bindings/drm/imx/
3317
3318 DRM DRIVERS FOR NVIDIA TEGRA
3319 M:      Thierry Reding <thierry.reding@gmail.com>
3320 M:      Terje Bergström <tbergstrom@nvidia.com>
3321 L:      dri-devel@lists.freedesktop.org
3322 L:      linux-tegra@vger.kernel.org
3323 T:      git git://anongit.freedesktop.org/tegra/linux.git
3324 S:      Supported
3325 F:      drivers/gpu/drm/tegra/
3326 F:      drivers/gpu/host1x/
3327 F:      include/linux/host1x.h
3328 F:      include/uapi/drm/tegra_drm.h
3329 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3330
3331 DRM DRIVERS FOR RENESAS
3332 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3333 L:      dri-devel@lists.freedesktop.org
3334 L:      linux-sh@vger.kernel.org
3335 T:      git git://people.freedesktop.org/~airlied/linux
3336 S:      Supported
3337 F:      drivers/gpu/drm/rcar-du/
3338 F:      drivers/gpu/drm/shmobile/
3339 F:      include/linux/platform_data/rcar-du.h
3340 F:      include/linux/platform_data/shmob_drm.h
3341
3342 DSBR100 USB FM RADIO DRIVER
3343 M:      Alexey Klimov <klimov.linux@gmail.com>
3344 L:      linux-media@vger.kernel.org
3345 T:      git git://linuxtv.org/media_tree.git
3346 S:      Maintained
3347 F:      drivers/media/radio/dsbr100.c
3348
3349 DSCC4 DRIVER
3350 M:      Francois Romieu <romieu@fr.zoreil.com>
3351 L:      netdev@vger.kernel.org
3352 S:      Maintained
3353 F:      drivers/net/wan/dscc4.c
3354
3355 DVB_USB_AF9015 MEDIA DRIVER
3356 M:      Antti Palosaari <crope@iki.fi>
3357 L:      linux-media@vger.kernel.org
3358 W:      http://linuxtv.org/
3359 W:      http://palosaari.fi/linux/
3360 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3361 T:      git git://linuxtv.org/anttip/media_tree.git
3362 S:      Maintained
3363 F:      drivers/media/usb/dvb-usb-v2/af9015*
3364
3365 DVB_USB_AF9035 MEDIA DRIVER
3366 M:      Antti Palosaari <crope@iki.fi>
3367 L:      linux-media@vger.kernel.org
3368 W:      http://linuxtv.org/
3369 W:      http://palosaari.fi/linux/
3370 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3371 T:      git git://linuxtv.org/anttip/media_tree.git
3372 S:      Maintained
3373 F:      drivers/media/usb/dvb-usb-v2/af9035*
3374
3375 DVB_USB_ANYSEE MEDIA DRIVER
3376 M:      Antti Palosaari <crope@iki.fi>
3377 L:      linux-media@vger.kernel.org
3378 W:      http://linuxtv.org/
3379 W:      http://palosaari.fi/linux/
3380 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3381 T:      git git://linuxtv.org/anttip/media_tree.git
3382 S:      Maintained
3383 F:      drivers/media/usb/dvb-usb-v2/anysee*
3384
3385 DVB_USB_AU6610 MEDIA DRIVER
3386 M:      Antti Palosaari <crope@iki.fi>
3387 L:      linux-media@vger.kernel.org
3388 W:      http://linuxtv.org/
3389 W:      http://palosaari.fi/linux/
3390 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3391 T:      git git://linuxtv.org/anttip/media_tree.git
3392 S:      Maintained
3393 F:      drivers/media/usb/dvb-usb-v2/au6610*
3394
3395 DVB_USB_CE6230 MEDIA DRIVER
3396 M:      Antti Palosaari <crope@iki.fi>
3397 L:      linux-media@vger.kernel.org
3398 W:      http://linuxtv.org/
3399 W:      http://palosaari.fi/linux/
3400 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3401 T:      git git://linuxtv.org/anttip/media_tree.git
3402 S:      Maintained
3403 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3404
3405 DVB_USB_CXUSB MEDIA DRIVER
3406 M:      Michael Krufky <mkrufky@linuxtv.org>
3407 L:      linux-media@vger.kernel.org
3408 W:      http://linuxtv.org/
3409 W:      http://github.com/mkrufky
3410 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3411 T:      git git://linuxtv.org/media_tree.git
3412 S:      Maintained
3413 F:      drivers/media/usb/dvb-usb/cxusb*
3414
3415 DVB_USB_EC168 MEDIA DRIVER
3416 M:      Antti Palosaari <crope@iki.fi>
3417 L:      linux-media@vger.kernel.org
3418 W:      http://linuxtv.org/
3419 W:      http://palosaari.fi/linux/
3420 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3421 T:      git git://linuxtv.org/anttip/media_tree.git
3422 S:      Maintained
3423 F:      drivers/media/usb/dvb-usb-v2/ec168*
3424
3425 DVB_USB_GL861 MEDIA DRIVER
3426 M:      Antti Palosaari <crope@iki.fi>
3427 L:      linux-media@vger.kernel.org
3428 W:      http://linuxtv.org/
3429 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3430 T:      git git://linuxtv.org/anttip/media_tree.git
3431 S:      Maintained
3432 F:      drivers/media/usb/dvb-usb-v2/gl861*
3433
3434 DVB_USB_MXL111SF MEDIA DRIVER
3435 M:      Michael Krufky <mkrufky@linuxtv.org>
3436 L:      linux-media@vger.kernel.org
3437 W:      http://linuxtv.org/
3438 W:      http://github.com/mkrufky
3439 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3440 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3441 S:      Maintained
3442 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3443
3444 DVB_USB_RTL28XXU MEDIA DRIVER
3445 M:      Antti Palosaari <crope@iki.fi>
3446 L:      linux-media@vger.kernel.org
3447 W:      http://linuxtv.org/
3448 W:      http://palosaari.fi/linux/
3449 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3450 T:      git git://linuxtv.org/anttip/media_tree.git
3451 S:      Maintained
3452 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3453
3454 DVB_USB_V2 MEDIA DRIVER
3455 M:      Antti Palosaari <crope@iki.fi>
3456 L:      linux-media@vger.kernel.org
3457 W:      http://linuxtv.org/
3458 W:      http://palosaari.fi/linux/
3459 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3460 T:      git git://linuxtv.org/anttip/media_tree.git
3461 S:      Maintained
3462 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3463 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3464
3465 DYNAMIC DEBUG
3466 M:      Jason Baron <jbaron@akamai.com>
3467 S:      Maintained
3468 F:      lib/dynamic_debug.c
3469 F:      include/linux/dynamic_debug.h
3470
3471 DZ DECSTATION DZ11 SERIAL DRIVER
3472 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3473 S:      Maintained
3474 F:      drivers/tty/serial/dz.*
3475
3476 E4000 MEDIA DRIVER
3477 M:      Antti Palosaari <crope@iki.fi>
3478 L:      linux-media@vger.kernel.org
3479 W:      http://linuxtv.org/
3480 W:      http://palosaari.fi/linux/
3481 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3482 T:      git git://linuxtv.org/anttip/media_tree.git
3483 S:      Maintained
3484 F:      drivers/media/tuners/e4000*
3485
3486 EATA ISA/EISA/PCI SCSI DRIVER
3487 M:      Dario Ballabio <ballabio_dario@emc.com>
3488 L:      linux-scsi@vger.kernel.org
3489 S:      Maintained
3490 F:      drivers/scsi/eata.c
3491
3492 EC100 MEDIA DRIVER
3493 M:      Antti Palosaari <crope@iki.fi>
3494 L:      linux-media@vger.kernel.org
3495 W:      http://linuxtv.org/
3496 W:      http://palosaari.fi/linux/
3497 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3498 T:      git git://linuxtv.org/anttip/media_tree.git
3499 S:      Maintained
3500 F:      drivers/media/dvb-frontends/ec100*
3501
3502 ECRYPT FILE SYSTEM
3503 M:      Tyler Hicks <tyhicks@canonical.com>
3504 L:      ecryptfs@vger.kernel.org
3505 W:      http://ecryptfs.org
3506 W:      https://launchpad.net/ecryptfs
3507 S:      Supported
3508 F:      Documentation/filesystems/ecryptfs.txt
3509 F:      fs/ecryptfs/
3510
3511 EDAC-CORE
3512 M:      Doug Thompson <dougthompson@xmission.com>
3513 M:      Borislav Petkov <bp@alien8.de>
3514 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3515 L:      linux-edac@vger.kernel.org
3516 W:      bluesmoke.sourceforge.net
3517 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3518 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3519 S:      Supported
3520 F:      Documentation/edac.txt
3521 F:      drivers/edac/
3522 F:      include/linux/edac.h
3523
3524 EDAC-AMD64
3525 M:      Doug Thompson <dougthompson@xmission.com>
3526 M:      Borislav Petkov <bp@alien8.de>
3527 L:      linux-edac@vger.kernel.org
3528 W:      bluesmoke.sourceforge.net
3529 S:      Maintained
3530 F:      drivers/edac/amd64_edac*
3531
3532 EDAC-CALXEDA
3533 M:      Doug Thompson <dougthompson@xmission.com>
3534 M:      Robert Richter <rric@kernel.org>
3535 L:      linux-edac@vger.kernel.org
3536 W:      bluesmoke.sourceforge.net
3537 S:      Maintained
3538 F:      drivers/edac/highbank*
3539
3540 EDAC-CAVIUM
3541 M:      Ralf Baechle <ralf@linux-mips.org>
3542 M:      David Daney <david.daney@cavium.com>
3543 L:      linux-edac@vger.kernel.org
3544 L:      linux-mips@linux-mips.org
3545 W:      bluesmoke.sourceforge.net
3546 S:      Supported
3547 F:      drivers/edac/octeon_edac*
3548
3549 EDAC-E752X
3550 M:      Mark Gross <mark.gross@intel.com>
3551 M:      Doug Thompson <dougthompson@xmission.com>
3552 L:      linux-edac@vger.kernel.org
3553 W:      bluesmoke.sourceforge.net
3554 S:      Maintained
3555 F:      drivers/edac/e752x_edac.c
3556
3557 EDAC-E7XXX
3558 M:      Doug Thompson <dougthompson@xmission.com>
3559 L:      linux-edac@vger.kernel.org
3560 W:      bluesmoke.sourceforge.net
3561 S:      Maintained
3562 F:      drivers/edac/e7xxx_edac.c
3563
3564 EDAC-GHES
3565 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3566 L:      linux-edac@vger.kernel.org
3567 W:      bluesmoke.sourceforge.net
3568 S:      Maintained
3569 F:      drivers/edac/ghes_edac.c
3570
3571 EDAC-I82443BXGX
3572 M:      Tim Small <tim@buttersideup.com>
3573 L:      linux-edac@vger.kernel.org
3574 W:      bluesmoke.sourceforge.net
3575 S:      Maintained
3576 F:      drivers/edac/i82443bxgx_edac.c
3577
3578 EDAC-I3000
3579 M:      Jason Uhlenkott <juhlenko@akamai.com>
3580 L:      linux-edac@vger.kernel.org
3581 W:      bluesmoke.sourceforge.net
3582 S:      Maintained
3583 F:      drivers/edac/i3000_edac.c
3584
3585 EDAC-I5000
3586 M:      Doug Thompson <dougthompson@xmission.com>
3587 L:      linux-edac@vger.kernel.org
3588 W:      bluesmoke.sourceforge.net
3589 S:      Maintained
3590 F:      drivers/edac/i5000_edac.c
3591
3592 EDAC-I5400
3593 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3594 L:      linux-edac@vger.kernel.org
3595 W:      bluesmoke.sourceforge.net
3596 S:      Maintained
3597 F:      drivers/edac/i5400_edac.c
3598
3599 EDAC-I7300
3600 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3601 L:      linux-edac@vger.kernel.org
3602 W:      bluesmoke.sourceforge.net
3603 S:      Maintained
3604 F:      drivers/edac/i7300_edac.c
3605
3606 EDAC-I7CORE
3607 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3608 L:      linux-edac@vger.kernel.org
3609 W:      bluesmoke.sourceforge.net
3610 S:      Maintained
3611 F:      drivers/edac/i7core_edac.c
3612
3613 EDAC-I82975X
3614 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3615 M:      "Arvind R." <arvino55@gmail.com>
3616 L:      linux-edac@vger.kernel.org
3617 W:      bluesmoke.sourceforge.net
3618 S:      Maintained
3619 F:      drivers/edac/i82975x_edac.c
3620
3621 EDAC-IE31200
3622 M:      Jason Baron <jbaron@akamai.com>
3623 L:      linux-edac@vger.kernel.org
3624 W:      bluesmoke.sourceforge.net
3625 S:      Maintained
3626 F:      drivers/edac/ie31200_edac.c
3627
3628 EDAC-MPC85XX
3629 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
3630 L:      linux-edac@vger.kernel.org
3631 W:      bluesmoke.sourceforge.net
3632 S:      Maintained
3633 F:      drivers/edac/mpc85xx_edac.[ch]
3634
3635 EDAC-PASEMI
3636 M:      Egor Martovetsky <egor@pasemi.com>
3637 L:      linux-edac@vger.kernel.org
3638 W:      bluesmoke.sourceforge.net
3639 S:      Maintained
3640 F:      drivers/edac/pasemi_edac.c
3641
3642 EDAC-R82600
3643 M:      Tim Small <tim@buttersideup.com>
3644 L:      linux-edac@vger.kernel.org
3645 W:      bluesmoke.sourceforge.net
3646 S:      Maintained
3647 F:      drivers/edac/r82600_edac.c
3648
3649 EDAC-SBRIDGE
3650 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3651 L:      linux-edac@vger.kernel.org
3652 W:      bluesmoke.sourceforge.net
3653 S:      Maintained
3654 F:      drivers/edac/sb_edac.c
3655
3656 EDIROL UA-101/UA-1000 DRIVER
3657 M:      Clemens Ladisch <clemens@ladisch.de>
3658 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3659 T:      git git://git.alsa-project.org/alsa-kernel.git
3660 S:      Maintained
3661 F:      sound/usb/misc/ua101.c
3662
3663 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3664 M:      Matt Fleming <matt.fleming@intel.com>
3665 L:      linux-efi@vger.kernel.org
3666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3667 S:      Maintained
3668 F:      Documentation/efi-stub.txt
3669 F:      arch/ia64/kernel/efi.c
3670 F:      arch/x86/boot/compressed/eboot.[ch]
3671 F:      arch/x86/include/asm/efi.h
3672 F:      arch/x86/platform/efi/*
3673 F:      drivers/firmware/efi/*
3674 F:      include/linux/efi*.h
3675
3676 EFI VARIABLE FILESYSTEM
3677 M:      Matthew Garrett <matthew.garrett@nebula.com>
3678 M:      Jeremy Kerr <jk@ozlabs.org>
3679 M:      Matt Fleming <matt.fleming@intel.com>
3680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3681 L:      linux-efi@vger.kernel.org
3682 S:      Maintained
3683 F:      fs/efivarfs/
3684
3685 EFIFB FRAMEBUFFER DRIVER
3686 L:      linux-fbdev@vger.kernel.org
3687 M:      Peter Jones <pjones@redhat.com>
3688 S:      Maintained
3689 F:      drivers/video/fbdev/efifb.c
3690
3691 EFS FILESYSTEM
3692 W:      http://aeschi.ch.eu.org/efs/
3693 S:      Orphan
3694 F:      fs/efs/
3695
3696 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3697 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3698 M:      Christoph Raisch <raisch@de.ibm.com>
3699 L:      linux-rdma@vger.kernel.org
3700 S:      Supported
3701 F:      drivers/infiniband/hw/ehca/
3702
3703 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3704 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3705 L:      netdev@vger.kernel.org
3706 S:      Maintained
3707 F:      drivers/net/ethernet/ibm/ehea/
3708
3709 EM28XX VIDEO4LINUX DRIVER
3710 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3711 L:      linux-media@vger.kernel.org
3712 W:      http://linuxtv.org
3713 T:      git git://linuxtv.org/media_tree.git
3714 S:      Maintained
3715 F:      drivers/media/usb/em28xx/
3716
3717 EMBEDDED LINUX
3718 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
3719 M:      Matt Mackall <mpm@selenic.com>
3720 M:      David Woodhouse <dwmw2@infradead.org>
3721 L:      linux-embedded@vger.kernel.org
3722 S:      Maintained
3723
3724 EMULEX LPFC FC SCSI DRIVER
3725 M:      James Smart <james.smart@emulex.com>
3726 L:      linux-scsi@vger.kernel.org
3727 W:      http://sourceforge.net/projects/lpfcxxxx
3728 S:      Supported
3729 F:      drivers/scsi/lpfc/
3730
3731 ENE CB710 FLASH CARD READER DRIVER
3732 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
3733 S:      Maintained
3734 F:      drivers/misc/cb710/
3735 F:      drivers/mmc/host/cb710-mmc.*
3736 F:      include/linux/cb710.h
3737
3738 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3739 M:      Maxim Levitsky <maximlevitsky@gmail.com>
3740 S:      Maintained
3741 F:      drivers/media/rc/ene_ir.*
3742
3743 ENHANCED ERROR HANDLING (EEH)
3744 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
3745 L:      linuxppc-dev@lists.ozlabs.org
3746 S:      Supported
3747 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
3748 F:      arch/powerpc/kernel/eeh*.c
3749
3750 EPSON S1D13XXX FRAMEBUFFER DRIVER
3751 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
3752 S:      Maintained
3753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
3754 F:      drivers/video/fbdev/s1d13xxxfb.c
3755 F:      include/video/s1d13xxxfb.h
3756
3757 ET131X NETWORK DRIVER
3758 M:      Mark Einon <mark.einon@gmail.com>
3759 S:      Odd Fixes
3760 F:      drivers/net/ethernet/agere/
3761
3762 ETHERNET BRIDGE
3763 M:      Stephen Hemminger <stephen@networkplumber.org>
3764 L:      bridge@lists.linux-foundation.org
3765 L:      netdev@vger.kernel.org
3766 W:      http://www.linuxfoundation.org/en/Net:Bridge
3767 S:      Maintained
3768 F:      include/linux/netfilter_bridge/
3769 F:      net/bridge/
3770
3771 ETHERNET PHY LIBRARY
3772 M:      Florian Fainelli <f.fainelli@gmail.com>
3773 L:      netdev@vger.kernel.org
3774 S:      Maintained
3775 F:      include/linux/phy.h
3776 F:      include/linux/phy_fixed.h
3777 F:      drivers/net/phy/
3778 F:      Documentation/networking/phy.txt
3779 F:      drivers/of/of_mdio.c
3780 F:      drivers/of/of_net.c
3781
3782 EXT2 FILE SYSTEM
3783 M:      Jan Kara <jack@suse.cz>
3784 L:      linux-ext4@vger.kernel.org
3785 S:      Maintained
3786 F:      Documentation/filesystems/ext2.txt
3787 F:      fs/ext2/
3788 F:      include/linux/ext2*
3789
3790 EXT3 FILE SYSTEM
3791 M:      Jan Kara <jack@suse.cz>
3792 M:      Andrew Morton <akpm@linux-foundation.org>
3793 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3794 L:      linux-ext4@vger.kernel.org
3795 S:      Maintained
3796 F:      Documentation/filesystems/ext3.txt
3797 F:      fs/ext3/
3798
3799 EXT4 FILE SYSTEM
3800 M:      "Theodore Ts'o" <tytso@mit.edu>
3801 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3802 L:      linux-ext4@vger.kernel.org
3803 W:      http://ext4.wiki.kernel.org
3804 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
3805 S:      Maintained
3806 F:      Documentation/filesystems/ext4.txt
3807 F:      fs/ext4/
3808
3809 Extended Verification Module (EVM)
3810 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
3811 L:      linux-ima-devel@lists.sourceforge.net
3812 L:      linux-security-module@vger.kernel.org
3813 S:      Supported
3814 F:      security/integrity/evm/
3815
3816 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3817 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3818 M:      Chanwoo Choi <cw00.choi@samsung.com>
3819 L:      linux-kernel@vger.kernel.org
3820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
3821 S:      Maintained
3822 F:      drivers/extcon/
3823 F:      Documentation/extcon/
3824
3825 EXYNOS DP DRIVER
3826 M:      Jingoo Han <jg1.han@samsung.com>
3827 L:      dri-devel@lists.freedesktop.org
3828 S:      Maintained
3829 F:      drivers/gpu/drm/exynos/exynos_dp*
3830
3831 EXYNOS MIPI DISPLAY DRIVERS
3832 M:      Inki Dae <inki.dae@samsung.com>
3833 M:      Donghwa Lee <dh09.lee@samsung.com>
3834 M:      Kyungmin Park <kyungmin.park@samsung.com>
3835 L:      linux-fbdev@vger.kernel.org
3836 S:      Maintained
3837 F:      drivers/video/fbdev/exynos/exynos_mipi*
3838 F:      include/video/exynos_mipi*
3839
3840 F71805F HARDWARE MONITORING DRIVER
3841 M:      Jean Delvare <jdelvare@suse.de>
3842 L:      lm-sensors@lm-sensors.org
3843 S:      Maintained
3844 F:      Documentation/hwmon/f71805f
3845 F:      drivers/hwmon/f71805f.c
3846
3847 FC0011 TUNER DRIVER
3848 M:      Michael Buesch <m@bues.ch>
3849 L:      linux-media@vger.kernel.org
3850 S:      Maintained
3851 F:      drivers/media/tuners/fc0011.h
3852 F:      drivers/media/tuners/fc0011.c
3853
3854 FC2580 MEDIA DRIVER
3855 M:      Antti Palosaari <crope@iki.fi>
3856 L:      linux-media@vger.kernel.org
3857 W:      http://linuxtv.org/
3858 W:      http://palosaari.fi/linux/
3859 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3860 T:      git git://linuxtv.org/anttip/media_tree.git
3861 S:      Maintained
3862 F:      drivers/media/tuners/fc2580*
3863
3864 FANOTIFY
3865 M:      Eric Paris <eparis@redhat.com>
3866 S:      Maintained
3867 F:      fs/notify/fanotify/
3868 F:      include/linux/fanotify.h
3869 F:      include/uapi/linux/fanotify.h
3870
3871 FARSYNC SYNCHRONOUS DRIVER
3872 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
3873 W:      http://www.farsite.co.uk/
3874 S:      Supported
3875 F:      drivers/net/wan/farsync.*
3876
3877 FAULT INJECTION SUPPORT
3878 M:      Akinobu Mita <akinobu.mita@gmail.com>
3879 S:      Supported
3880 F:      Documentation/fault-injection/
3881 F:      lib/fault-inject.c
3882
3883 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3884 M:      Robert Love <robert.w.love@intel.com>
3885 L:      fcoe-devel@open-fcoe.org
3886 W:      www.Open-FCoE.org
3887 S:      Supported
3888 F:      drivers/scsi/libfc/
3889 F:      drivers/scsi/fcoe/
3890 F:      include/scsi/fc/
3891 F:      include/scsi/libfc.h
3892 F:      include/scsi/libfcoe.h
3893 F:      include/uapi/scsi/fc/
3894
3895 FILE LOCKING (flock() and fcntl()/lockf())
3896 M:      Jeff Layton <jlayton@poochiereds.net>
3897 M:      J. Bruce Fields <bfields@fieldses.org>
3898 L:      linux-fsdevel@vger.kernel.org
3899 S:      Maintained
3900 F:      include/linux/fcntl.h
3901 F:      include/linux/fs.h
3902 F:      include/uapi/linux/fcntl.h
3903 F:      include/uapi/linux/fs.h
3904 F:      fs/fcntl.c
3905 F:      fs/locks.c
3906
3907 FILESYSTEMS (VFS and infrastructure)
3908 M:      Alexander Viro <viro@zeniv.linux.org.uk>
3909 L:      linux-fsdevel@vger.kernel.org
3910 S:      Maintained
3911 F:      fs/*
3912
3913 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3914 M:      Riku Voipio <riku.voipio@iki.fi>
3915 L:      lm-sensors@lm-sensors.org
3916 S:      Maintained
3917 F:      drivers/hwmon/f75375s.c
3918 F:      include/linux/f75375s.h
3919
3920 FIREWIRE AUDIO DRIVERS
3921 M:      Clemens Ladisch <clemens@ladisch.de>
3922 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3923 T:      git git://git.alsa-project.org/alsa-kernel.git
3924 S:      Maintained
3925 F:      sound/firewire/
3926
3927 FIREWIRE MEDIA DRIVERS (firedtv)
3928 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
3929 L:      linux-media@vger.kernel.org
3930 L:      linux1394-devel@lists.sourceforge.net
3931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3932 S:      Maintained
3933 F:      drivers/media/firewire/
3934
3935 FIREWIRE SBP-2 TARGET
3936 M:      Chris Boot <bootc@bootc.net>
3937 L:      linux-scsi@vger.kernel.org
3938 L:      target-devel@vger.kernel.org
3939 L:      linux1394-devel@lists.sourceforge.net
3940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3941 S:      Maintained
3942 F:      drivers/target/sbp/
3943
3944 FIREWIRE SUBSYSTEM
3945 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
3946 L:      linux1394-devel@lists.sourceforge.net
3947 W:      http://ieee1394.wiki.kernel.org/
3948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
3949 S:      Maintained
3950 F:      drivers/firewire/
3951 F:      include/linux/firewire.h
3952 F:      include/uapi/linux/firewire*.h
3953 F:      tools/firewire/
3954
3955 FIRMWARE LOADER (request_firmware)
3956 M:      Ming Lei <ming.lei@canonical.com>
3957 L:      linux-kernel@vger.kernel.org
3958 S:      Maintained
3959 F:      Documentation/firmware_class/
3960 F:      drivers/base/firmware*.c
3961 F:      include/linux/firmware.h
3962
3963 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
3964 M:      Joshua Morris <josh.h.morris@us.ibm.com>
3965 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3966 S:      Maintained
3967 F:      drivers/block/rsxx/
3968
3969 FLOPPY DRIVER
3970 M:      Jiri Kosina <jkosina@suse.cz>
3971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3972 S:      Odd fixes
3973 F:      drivers/block/floppy.c
3974
3975 FMC SUBSYSTEM
3976 M:      Alessandro Rubini <rubini@gnudd.com>
3977 W:      http://www.ohwr.org/projects/fmc-bus
3978 S:      Supported
3979 F:      drivers/fmc/
3980 F:      include/linux/fmc*.h
3981 F:      include/linux/ipmi-fru.h
3982 K:      fmc_d.*register
3983
3984 FPU EMULATOR
3985 M:      Bill Metzenthen <billm@melbpc.org.au>
3986 W:      http://floatingpoint.sourceforge.net/emulator/index.html
3987 S:      Maintained
3988 F:      arch/x86/math-emu/
3989
3990 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
3991 L:      netdev@vger.kernel.org
3992 S:      Orphan
3993 F:      drivers/net/wan/dlci.c
3994 F:      drivers/net/wan/sdla.c
3995
3996 FRAMEBUFFER LAYER
3997 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
3998 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
3999 L:      linux-fbdev@vger.kernel.org
4000 W:      http://linux-fbdev.sourceforge.net/
4001 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4003 S:      Maintained
4004 F:      Documentation/fb/
4005 F:      Documentation/devicetree/bindings/fb/
4006 F:      drivers/video/
4007 F:      include/video/
4008 F:      include/linux/fb.h
4009 F:      include/uapi/video/
4010 F:      include/uapi/linux/fb.h
4011
4012 FREESCALE DIU FRAMEBUFFER DRIVER
4013 M:      Timur Tabi <timur@tabi.org>
4014 L:      linux-fbdev@vger.kernel.org
4015 S:      Maintained
4016 F:      drivers/video/fbdev/fsl-diu-fb.*
4017
4018 FREESCALE DMA DRIVER
4019 M:      Li Yang <leoli@freescale.com>
4020 M:      Zhang Wei <zw@zh-kernel.org>
4021 L:      linuxppc-dev@lists.ozlabs.org
4022 S:      Maintained
4023 F:      drivers/dma/fsldma.*
4024
4025 FREESCALE I2C CPM DRIVER
4026 M:      Jochen Friedrich <jochen@scram.de>
4027 L:      linuxppc-dev@lists.ozlabs.org
4028 L:      linux-i2c@vger.kernel.org
4029 S:      Maintained
4030 F:      drivers/i2c/busses/i2c-cpm.c
4031
4032 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4033 M:      Sascha Hauer <kernel@pengutronix.de>
4034 L:      linux-fbdev@vger.kernel.org
4035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4036 S:      Maintained
4037 F:      include/linux/platform_data/video-imxfb.h
4038 F:      drivers/video/fbdev/imxfb.c
4039
4040 FREESCALE SOC FS_ENET DRIVER
4041 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4042 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4043 L:      linuxppc-dev@lists.ozlabs.org
4044 L:      netdev@vger.kernel.org
4045 S:      Maintained
4046 F:      drivers/net/ethernet/freescale/fs_enet/
4047 F:      include/linux/fs_enet_pd.h
4048
4049 FREESCALE QUICC ENGINE LIBRARY
4050 L:      linuxppc-dev@lists.ozlabs.org
4051 S:      Orphan
4052 F:      arch/powerpc/sysdev/qe_lib/
4053 F:      arch/powerpc/include/asm/*qe.h
4054
4055 FREESCALE USB PERIPHERAL DRIVERS
4056 M:      Li Yang <leoli@freescale.com>
4057 L:      linux-usb@vger.kernel.org
4058 L:      linuxppc-dev@lists.ozlabs.org
4059 S:      Maintained
4060 F:      drivers/usb/gadget/udc/fsl*
4061
4062 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4063 M:      Li Yang <leoli@freescale.com>
4064 L:      netdev@vger.kernel.org
4065 L:      linuxppc-dev@lists.ozlabs.org
4066 S:      Maintained
4067 F:      drivers/net/ethernet/freescale/ucc_geth*
4068
4069 FREESCALE QUICC ENGINE UCC UART DRIVER
4070 M:      Timur Tabi <timur@tabi.org>
4071 L:      linuxppc-dev@lists.ozlabs.org
4072 S:      Maintained
4073 F:      drivers/tty/serial/ucc_uart.c
4074
4075 FREESCALE SOC SOUND DRIVERS
4076 M:      Timur Tabi <timur@tabi.org>
4077 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4078 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4079 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4080 L:      linuxppc-dev@lists.ozlabs.org
4081 S:      Maintained
4082 F:      sound/soc/fsl/fsl*
4083 F:      sound/soc/fsl/imx*
4084 F:      sound/soc/fsl/mpc8610_hpcd.c
4085
4086 FREEVXFS FILESYSTEM
4087 M:      Christoph Hellwig <hch@infradead.org>
4088 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4089 S:      Maintained
4090 F:      fs/freevxfs/
4091
4092 FREEZER
4093 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4094 M:      Pavel Machek <pavel@ucw.cz>
4095 L:      linux-pm@vger.kernel.org
4096 S:      Supported
4097 F:      Documentation/power/freezing-of-tasks.txt
4098 F:      include/linux/freezer.h
4099 F:      kernel/freezer.c
4100
4101 FRONTSWAP API
4102 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4103 L:      linux-kernel@vger.kernel.org
4104 S:      Maintained
4105 F:      mm/frontswap.c
4106 F:      include/linux/frontswap.h
4107
4108 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4109 M:      David Howells <dhowells@redhat.com>
4110 L:      linux-cachefs@redhat.com
4111 S:      Supported
4112 F:      Documentation/filesystems/caching/
4113 F:      fs/fscache/
4114 F:      include/linux/fscache*.h
4115
4116 F2FS FILE SYSTEM
4117 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4118 M:      Changman Lee <cm224.lee@samsung.com>
4119 L:      linux-f2fs-devel@lists.sourceforge.net
4120 W:      http://en.wikipedia.org/wiki/F2FS
4121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4122 S:      Maintained
4123 F:      Documentation/filesystems/f2fs.txt
4124 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4125 F:      fs/f2fs/
4126 F:      include/linux/f2fs_fs.h
4127
4128 FUJITSU FR-V (FRV) PORT
4129 M:      David Howells <dhowells@redhat.com>
4130 S:      Maintained
4131 F:      arch/frv/
4132
4133 FUJITSU LAPTOP EXTRAS
4134 M:      Jonathan Woithe <jwoithe@just42.net>
4135 L:      platform-driver-x86@vger.kernel.org
4136 S:      Maintained
4137 F:      drivers/platform/x86/fujitsu-laptop.c
4138
4139 FUJITSU M-5MO LS CAMERA ISP DRIVER
4140 M:      Kyungmin Park <kyungmin.park@samsung.com>
4141 M:      Heungjun Kim <riverful.kim@samsung.com>
4142 L:      linux-media@vger.kernel.org
4143 S:      Maintained
4144 F:      drivers/media/i2c/m5mols/
4145 F:      include/media/m5mols.h
4146
4147 FUJITSU TABLET EXTRAS
4148 M:      Robert Gerlach <khnz@gmx.de>
4149 L:      platform-driver-x86@vger.kernel.org
4150 S:      Maintained
4151 F:      drivers/platform/x86/fujitsu-tablet.c
4152
4153 FUSE: FILESYSTEM IN USERSPACE
4154 M:      Miklos Szeredi <miklos@szeredi.hu>
4155 L:      fuse-devel@lists.sourceforge.net
4156 W:      http://fuse.sourceforge.net/
4157 S:      Maintained
4158 F:      fs/fuse/
4159 F:      include/uapi/linux/fuse.h
4160
4161 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4162 M:      Rik Faith <faith@cs.unc.edu>
4163 L:      linux-scsi@vger.kernel.org
4164 S:      Odd Fixes (e.g., new signatures)
4165 F:      drivers/scsi/fdomain.*
4166
4167 GCOV BASED KERNEL PROFILING
4168 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4169 S:      Maintained
4170 F:      kernel/gcov/
4171 F:      Documentation/gcov.txt
4172
4173 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4174 M:      Achim Leubner <achim_leubner@adaptec.com>
4175 L:      linux-scsi@vger.kernel.org
4176 W:      http://www.icp-vortex.com/
4177 S:      Supported
4178 F:      drivers/scsi/gdt*
4179
4180 GEMTEK FM RADIO RECEIVER DRIVER
4181 M:      Hans Verkuil <hverkuil@xs4all.nl>
4182 L:      linux-media@vger.kernel.org
4183 T:      git git://linuxtv.org/media_tree.git
4184 W:      http://linuxtv.org
4185 S:      Maintained
4186 F:      drivers/media/radio/radio-gemtek*
4187
4188 GENERIC GPIO I2C DRIVER
4189 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4190 S:      Supported
4191 F:      drivers/i2c/busses/i2c-gpio.c
4192 F:      include/linux/i2c-gpio.h
4193
4194 GENERIC GPIO I2C MULTIPLEXER DRIVER
4195 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4196 L:      linux-i2c@vger.kernel.org
4197 S:      Supported
4198 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4199 F:      include/linux/i2c-mux-gpio.h
4200 F:      Documentation/i2c/muxes/i2c-mux-gpio
4201
4202 GENERIC HDLC (WAN) DRIVERS
4203 M:      Krzysztof Halasa <khc@pm.waw.pl>
4204 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4205 S:      Maintained
4206 F:      drivers/net/wan/c101.c
4207 F:      drivers/net/wan/hd6457*
4208 F:      drivers/net/wan/hdlc*
4209 F:      drivers/net/wan/n2.c
4210 F:      drivers/net/wan/pc300too.c
4211 F:      drivers/net/wan/pci200syn.c
4212 F:      drivers/net/wan/wanxl*
4213
4214 GENERIC INCLUDE/ASM HEADER FILES
4215 M:      Arnd Bergmann <arnd@arndb.de>
4216 L:      linux-arch@vger.kernel.org
4217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4218 S:      Maintained
4219 F:      include/asm-generic/
4220 F:      include/uapi/asm-generic/
4221
4222 GENERIC PHY FRAMEWORK
4223 M:      Kishon Vijay Abraham I <kishon@ti.com>
4224 L:      linux-kernel@vger.kernel.org
4225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4226 S:      Supported
4227 F:      drivers/phy/
4228 F:      include/linux/phy/
4229
4230 GENERIC UIO DRIVER FOR PCI DEVICES
4231 M:      "Michael S. Tsirkin" <mst@redhat.com>
4232 L:      kvm@vger.kernel.org
4233 S:      Supported
4234 F:      drivers/uio/uio_pci_generic.c
4235
4236 GET_MAINTAINER SCRIPT
4237 M:      Joe Perches <joe@perches.com>
4238 S:      Maintained
4239 F:      scripts/get_maintainer.pl
4240
4241 GFS2 FILE SYSTEM
4242 M:      Steven Whitehouse <swhiteho@redhat.com>
4243 L:      cluster-devel@redhat.com
4244 W:      http://sources.redhat.com/cluster/
4245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
4246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
4247 S:      Supported
4248 F:      Documentation/filesystems/gfs2*.txt
4249 F:      fs/gfs2/
4250 F:      include/uapi/linux/gfs2_ondisk.h
4251
4252 GIGASET ISDN DRIVERS
4253 M:      Hansjoerg Lipp <hjlipp@web.de>
4254 M:      Tilman Schmidt <tilman@imap.cc>
4255 L:      gigaset307x-common@lists.sourceforge.net
4256 W:      http://gigaset307x.sourceforge.net/
4257 S:      Maintained
4258 F:      Documentation/isdn/README.gigaset
4259 F:      drivers/isdn/gigaset/
4260 F:      include/uapi/linux/gigaset_dev.h
4261
4262 GO7007 MPEG CODEC
4263 M:      Hans Verkuil <hans.verkuil@cisco.com>
4264 L:      linux-media@vger.kernel.org
4265 S:      Maintained
4266 F:      drivers/media/usb/go7007/
4267
4268 GOODIX TOUCHSCREEN
4269 M:      Bastien Nocera <hadess@hadess.net>
4270 L:      linux-input@vger.kernel.org
4271 S:      Maintained
4272 F:      drivers/input/touchscreen/goodix.c
4273
4274 GPIO SUBSYSTEM
4275 M:      Linus Walleij <linus.walleij@linaro.org>
4276 M:      Alexandre Courbot <gnurou@gmail.com>
4277 L:      linux-gpio@vger.kernel.org
4278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4279 S:      Maintained
4280 F:      Documentation/gpio/
4281 F:      drivers/gpio/
4282 F:      include/linux/gpio/
4283 F:      include/linux/gpio.h
4284 F:      include/asm-generic/gpio.h
4285
4286 GRE DEMULTIPLEXER DRIVER
4287 M:      Dmitry Kozlov <xeb@mail.ru>
4288 L:      netdev@vger.kernel.org
4289 S:      Maintained
4290 F:      net/ipv4/gre_demux.c
4291 F:      net/ipv4/gre_offload.c
4292 F:      include/net/gre.h
4293
4294 GRETH 10/100/1G Ethernet MAC device driver
4295 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4296 L:      netdev@vger.kernel.org
4297 S:      Maintained
4298 F:      drivers/net/ethernet/aeroflex/
4299
4300 GSPCA FINEPIX SUBDRIVER
4301 M:      Frank Zago <frank@zago.net>
4302 L:      linux-media@vger.kernel.org
4303 T:      git git://linuxtv.org/media_tree.git
4304 S:      Maintained
4305 F:      drivers/media/usb/gspca/finepix.c
4306
4307 GSPCA GL860 SUBDRIVER
4308 M:      Olivier Lorin <o.lorin@laposte.net>
4309 L:      linux-media@vger.kernel.org
4310 T:      git git://linuxtv.org/media_tree.git
4311 S:      Maintained
4312 F:      drivers/media/usb/gspca/gl860/
4313
4314 GSPCA M5602 SUBDRIVER
4315 M:      Erik Andren <erik.andren@gmail.com>
4316 L:      linux-media@vger.kernel.org
4317 T:      git git://linuxtv.org/media_tree.git
4318 S:      Maintained
4319 F:      drivers/media/usb/gspca/m5602/
4320
4321 GSPCA PAC207 SONIXB SUBDRIVER
4322 M:      Hans de Goede <hdegoede@redhat.com>
4323 L:      linux-media@vger.kernel.org
4324 T:      git git://linuxtv.org/media_tree.git
4325 S:      Maintained
4326 F:      drivers/media/usb/gspca/pac207.c
4327
4328 GSPCA SN9C20X SUBDRIVER
4329 M:      Brian Johnson <brijohn@gmail.com>
4330 L:      linux-media@vger.kernel.org
4331 T:      git git://linuxtv.org/media_tree.git
4332 S:      Maintained
4333 F:      drivers/media/usb/gspca/sn9c20x.c
4334
4335 GSPCA T613 SUBDRIVER
4336 M:      Leandro Costantino <lcostantino@gmail.com>
4337 L:      linux-media@vger.kernel.org
4338 T:      git git://linuxtv.org/media_tree.git
4339 S:      Maintained
4340 F:      drivers/media/usb/gspca/t613.c
4341
4342 GSPCA USB WEBCAM DRIVER
4343 M:      Hans de Goede <hdegoede@redhat.com>
4344 L:      linux-media@vger.kernel.org
4345 T:      git git://linuxtv.org/media_tree.git
4346 S:      Maintained
4347 F:      drivers/media/usb/gspca/
4348
4349 GUID PARTITION TABLE (GPT)
4350 M:      Davidlohr Bueso <davidlohr@hp.com>
4351 L:      linux-efi@vger.kernel.org
4352 S:      Maintained
4353 F:      block/partitions/efi.*
4354
4355 STK1160 USB VIDEO CAPTURE DRIVER
4356 M:      Ezequiel Garcia <elezegarcia@gmail.com>
4357 L:      linux-media@vger.kernel.org
4358 T:      git git://linuxtv.org/media_tree.git
4359 S:      Maintained
4360 F:      drivers/media/usb/stk1160/
4361
4362 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4363 M:      Frank Seidel <frank@f-seidel.de>
4364 L:      platform-driver-x86@vger.kernel.org
4365 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4366 S:      Maintained
4367 F:      drivers/platform/x86/hdaps.c
4368
4369 HDPVR USB VIDEO ENCODER DRIVER
4370 M:      Hans Verkuil <hverkuil@xs4all.nl>
4371 L:      linux-media@vger.kernel.org
4372 T:      git git://linuxtv.org/media_tree.git
4373 W:      http://linuxtv.org
4374 S:      Odd Fixes
4375 F:      drivers/media/usb/hdpvr/
4376
4377 HWPOISON MEMORY FAILURE HANDLING
4378 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4379 L:      linux-mm@kvack.org
4380 S:      Maintained
4381 F:      mm/memory-failure.c
4382 F:      mm/hwpoison-inject.c
4383
4384 HYPERVISOR VIRTUAL CONSOLE DRIVER
4385 L:      linuxppc-dev@lists.ozlabs.org
4386 S:      Odd Fixes
4387 F:      drivers/tty/hvc/
4388
4389 HACKRF MEDIA DRIVER
4390 M:      Antti Palosaari <crope@iki.fi>
4391 L:      linux-media@vger.kernel.org
4392 W:      http://linuxtv.org/
4393 W:      http://palosaari.fi/linux/
4394 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4395 T:      git git://linuxtv.org/anttip/media_tree.git
4396 S:      Maintained
4397 F:      drivers/media/usb/hackrf/
4398
4399 HARDWARE MONITORING
4400 M:      Jean Delvare <jdelvare@suse.de>
4401 M:      Guenter Roeck <linux@roeck-us.net>
4402 L:      lm-sensors@lm-sensors.org
4403 W:      http://www.lm-sensors.org/
4404 T:      quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
4405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4406 S:      Maintained
4407 F:      Documentation/hwmon/
4408 F:      drivers/hwmon/
4409 F:      include/linux/hwmon*.h
4410
4411 HARDWARE RANDOM NUMBER GENERATOR CORE
4412 M:      Matt Mackall <mpm@selenic.com>
4413 M:      Herbert Xu <herbert@gondor.apana.org.au>
4414 S:      Odd fixes
4415 F:      Documentation/hw_random.txt
4416 F:      drivers/char/hw_random/
4417 F:      include/linux/hw_random.h
4418
4419 HARDWARE SPINLOCK CORE
4420 M:      Ohad Ben-Cohen <ohad@wizery.com>
4421 S:      Maintained
4422 F:      Documentation/hwspinlock.txt
4423 F:      drivers/hwspinlock/hwspinlock_*
4424 F:      include/linux/hwspinlock.h
4425
4426 HARMONY SOUND DRIVER
4427 L:      linux-parisc@vger.kernel.org
4428 S:      Maintained
4429 F:      sound/parisc/harmony.*
4430
4431 HD29L2 MEDIA DRIVER
4432 M:      Antti Palosaari <crope@iki.fi>
4433 L:      linux-media@vger.kernel.org
4434 W:      http://linuxtv.org/
4435 W:      http://palosaari.fi/linux/
4436 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4437 T:      git git://linuxtv.org/anttip/media_tree.git
4438 S:      Maintained
4439 F:      drivers/media/dvb-frontends/hd29l2*
4440
4441 HEWLETT-PACKARD SMART2 RAID DRIVER
4442 L:      iss_storagedev@hp.com
4443 S:      Orphan
4444 F:      Documentation/blockdev/cpqarray.txt
4445 F:      drivers/block/cpqarray.*
4446
4447 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4448 M:      Don Brace <don.brace@pmcs.com>
4449 L:      iss_storagedev@hp.com
4450 L:      storagedev@pmcs.com
4451 L:      linux-scsi@vger.kernel.org
4452 S:      Supported
4453 F:      Documentation/scsi/hpsa.txt
4454 F:      drivers/scsi/hpsa*.[ch]
4455 F:      include/linux/cciss*.h
4456 F:      include/uapi/linux/cciss*.h
4457
4458 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4459 M:      Don Brace <don.brace@pmcs.com>
4460 L:      iss_storagedev@hp.com
4461 L:      storagedev@pmcs.com
4462 L:      linux-scsi@vger.kernel.org
4463 S:      Supported
4464 F:      Documentation/blockdev/cciss.txt
4465 F:      drivers/block/cciss*
4466 F:      include/linux/cciss_ioctl.h
4467 F:      include/uapi/linux/cciss_ioctl.h
4468
4469 HFS FILESYSTEM
4470 L:      linux-fsdevel@vger.kernel.org
4471 S:      Orphan
4472 F:      Documentation/filesystems/hfs.txt
4473 F:      fs/hfs/
4474
4475 HFSPLUS FILESYSTEM
4476 L:      linux-fsdevel@vger.kernel.org
4477 S:      Orphan
4478 F:      Documentation/filesystems/hfsplus.txt
4479 F:      fs/hfsplus/
4480
4481 HGA FRAMEBUFFER DRIVER
4482 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4483 L:      linux-nvidia@lists.surfsouth.com
4484 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4485 S:      Maintained
4486 F:      drivers/video/fbdev/hgafb.c
4487
4488 HIBERNATION (aka Software Suspend, aka swsusp)
4489 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4490 M:      Pavel Machek <pavel@ucw.cz>
4491 L:      linux-pm@vger.kernel.org
4492 S:      Supported
4493 F:      arch/x86/power/
4494 F:      drivers/base/power/
4495 F:      kernel/power/
4496 F:      include/linux/suspend.h
4497 F:      include/linux/freezer.h
4498 F:      include/linux/pm.h
4499 F:      arch/*/include/asm/suspend*.h
4500
4501 HID CORE LAYER
4502 M:      Jiri Kosina <jkosina@suse.cz>
4503 L:      linux-input@vger.kernel.org
4504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4505 S:      Maintained
4506 F:      drivers/hid/
4507 F:      include/linux/hid*
4508 F:      include/uapi/linux/hid*
4509
4510 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4511 M:      Thomas Gleixner <tglx@linutronix.de>
4512 L:      linux-kernel@vger.kernel.org
4513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4514 S:      Maintained
4515 F:      Documentation/timers/
4516 F:      kernel/time/hrtimer.c
4517 F:      kernel/time/clockevents.c
4518 F:      kernel/time/tick*.*
4519 F:      kernel/time/timer_*.c
4520 F:      include/linux/clockchips.h
4521 F:      include/linux/hrtimer.h
4522
4523 HIGH-SPEED SCC DRIVER FOR AX.25
4524 L:      linux-hams@vger.kernel.org
4525 S:      Orphan
4526 F:      drivers/net/hamradio/dmascc.c
4527 F:      drivers/net/hamradio/scc.c
4528
4529 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4530 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4531 W:      http://www.highpoint-tech.com
4532 S:      Supported
4533 F:      Documentation/scsi/hptiop.txt
4534 F:      drivers/scsi/hptiop.c
4535
4536 HIPPI
4537 M:      Jes Sorensen <jes@trained-monkey.org>
4538 L:      linux-hippi@sunsite.dk
4539 S:      Maintained
4540 F:      include/linux/hippidevice.h
4541 F:      include/uapi/linux/if_hippi.h
4542 F:      net/802/hippi.c
4543 F:      drivers/net/hippi/
4544
4545 HOST AP DRIVER
4546 M:      Jouni Malinen <j@w1.fi>
4547 L:      hostap@shmoo.com (subscribers-only)
4548 L:      linux-wireless@vger.kernel.org
4549 W:      http://hostap.epitest.fi/
4550 S:      Maintained
4551 F:      drivers/net/wireless/hostap/
4552
4553 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4554 L:      platform-driver-x86@vger.kernel.org
4555 S:      Orphan
4556 F:      drivers/platform/x86/tc1100-wmi.c
4557
4558 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4559 M:      Jaroslav Kysela <perex@perex.cz>
4560 S:      Maintained
4561 F:      drivers/net/ethernet/hp/hp100.*
4562
4563 HPET:   High Precision Event Timers driver
4564 M:      Clemens Ladisch <clemens@ladisch.de>
4565 S:      Maintained
4566 F:      Documentation/timers/hpet.txt
4567 F:      drivers/char/hpet.c
4568 F:      include/linux/hpet.h
4569 F:      include/uapi/linux/hpet.h
4570
4571 HPET:   x86
4572 S:      Orphan
4573 F:      arch/x86/kernel/hpet.c
4574 F:      arch/x86/include/asm/hpet.h
4575
4576 HPFS FILESYSTEM
4577 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4578 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4579 S:      Maintained
4580 F:      fs/hpfs/
4581
4582 HSI SUBSYSTEM
4583 M:      Sebastian Reichel <sre@kernel.org>
4584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4585 S:      Maintained
4586 F:      Documentation/ABI/testing/sysfs-bus-hsi
4587 F:      Documentation/hsi.txt
4588 F:      drivers/hsi/
4589 F:      include/linux/hsi/
4590 F:      include/uapi/linux/hsi/
4591
4592 HSO 3G MODEM DRIVER
4593 M:      Jan Dumon <j.dumon@option.com>
4594 W:      http://www.pharscape.org
4595 S:      Maintained
4596 F:      drivers/net/usb/hso.c
4597
4598 HSR NETWORK PROTOCOL
4599 M:      Arvid Brodin <arvid.brodin@alten.se>
4600 L:      netdev@vger.kernel.org
4601 S:      Maintained
4602 F:      net/hsr/
4603
4604 HTCPEN TOUCHSCREEN DRIVER
4605 M:      Pau Oliva Fora <pof@eslack.org>
4606 L:      linux-input@vger.kernel.org
4607 S:      Maintained
4608 F:      drivers/input/touchscreen/htcpen.c
4609
4610 HUGETLB FILESYSTEM
4611 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
4612 S:      Maintained
4613 F:      fs/hugetlbfs/
4614
4615 Hyper-V CORE AND DRIVERS
4616 M:      K. Y. Srinivasan <kys@microsoft.com>
4617 M:      Haiyang Zhang <haiyangz@microsoft.com>
4618 L:      devel@linuxdriverproject.org
4619 S:      Maintained
4620 F:      arch/x86/include/asm/mshyperv.h
4621 F:      arch/x86/include/uapi/asm/hyperv.h
4622 F:      arch/x86/kernel/cpu/mshyperv.c
4623 F:      drivers/hid/hid-hyperv.c
4624 F:      drivers/hv/
4625 F:      drivers/input/serio/hyperv-keyboard.c
4626 F:      drivers/net/hyperv/
4627 F:      drivers/scsi/storvsc_drv.c
4628 F:      drivers/video/fbdev/hyperv_fb.c
4629 F:      include/linux/hyperv.h
4630 F:      tools/hv/
4631
4632 I2C OVER PARALLEL PORT
4633 M:      Jean Delvare <jdelvare@suse.de>
4634 L:      linux-i2c@vger.kernel.org
4635 S:      Maintained
4636 F:      Documentation/i2c/busses/i2c-parport
4637 F:      Documentation/i2c/busses/i2c-parport-light
4638 F:      drivers/i2c/busses/i2c-parport.c
4639 F:      drivers/i2c/busses/i2c-parport-light.c
4640
4641 I2C/SMBUS CONTROLLER DRIVERS FOR PC
4642 M:      Jean Delvare <jdelvare@suse.de>
4643 L:      linux-i2c@vger.kernel.org
4644 S:      Maintained
4645 F:      Documentation/i2c/busses/i2c-ali1535
4646 F:      Documentation/i2c/busses/i2c-ali1563
4647 F:      Documentation/i2c/busses/i2c-ali15x3
4648 F:      Documentation/i2c/busses/i2c-amd756
4649 F:      Documentation/i2c/busses/i2c-amd8111
4650 F:      Documentation/i2c/busses/i2c-i801
4651 F:      Documentation/i2c/busses/i2c-nforce2
4652 F:      Documentation/i2c/busses/i2c-piix4
4653 F:      Documentation/i2c/busses/i2c-sis5595
4654 F:      Documentation/i2c/busses/i2c-sis630
4655 F:      Documentation/i2c/busses/i2c-sis96x
4656 F:      Documentation/i2c/busses/i2c-via
4657 F:      Documentation/i2c/busses/i2c-viapro
4658 F:      drivers/i2c/busses/i2c-ali1535.c
4659 F:      drivers/i2c/busses/i2c-ali1563.c
4660 F:      drivers/i2c/busses/i2c-ali15x3.c
4661 F:      drivers/i2c/busses/i2c-amd756.c
4662 F:      drivers/i2c/busses/i2c-amd756-s4882.c
4663 F:      drivers/i2c/busses/i2c-amd8111.c
4664 F:      drivers/i2c/busses/i2c-i801.c
4665 F:      drivers/i2c/busses/i2c-isch.c
4666 F:      drivers/i2c/busses/i2c-nforce2.c
4667 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
4668 F:      drivers/i2c/busses/i2c-piix4.c
4669 F:      drivers/i2c/busses/i2c-sis5595.c
4670 F:      drivers/i2c/busses/i2c-sis630.c
4671 F:      drivers/i2c/busses/i2c-sis96x.c
4672 F:      drivers/i2c/busses/i2c-via.c
4673 F:      drivers/i2c/busses/i2c-viapro.c
4674
4675 I2C/SMBUS ISMT DRIVER
4676 M:      Seth Heasley <seth.heasley@intel.com>
4677 M:      Neil Horman <nhorman@tuxdriver.com>
4678 L:      linux-i2c@vger.kernel.org
4679 F:      drivers/i2c/busses/i2c-ismt.c
4680 F:      Documentation/i2c/busses/i2c-ismt
4681
4682 I2C/SMBUS STUB DRIVER
4683 M:      Jean Delvare <jdelvare@suse.de>
4684 L:      linux-i2c@vger.kernel.org
4685 S:      Maintained
4686 F:      drivers/i2c/i2c-stub.c
4687
4688 I2C SUBSYSTEM
4689 M:      Wolfram Sang <wsa@the-dreams.de>
4690 L:      linux-i2c@vger.kernel.org
4691 W:      https://i2c.wiki.kernel.org/
4692 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
4693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
4694 S:      Maintained
4695 F:      Documentation/devicetree/bindings/i2c/
4696 F:      Documentation/i2c/
4697 F:      drivers/i2c/
4698 F:      include/linux/i2c.h
4699 F:      include/linux/i2c-*.h
4700 F:      include/uapi/linux/i2c.h
4701 F:      include/uapi/linux/i2c-*.h
4702
4703 I2C ACPI SUPPORT
4704 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
4705 L:      linux-i2c@vger.kernel.org
4706 L:      linux-acpi@vger.kernel.org
4707 S:      Maintained
4708
4709 I2C-TAOS-EVM DRIVER
4710 M:      Jean Delvare <jdelvare@suse.de>
4711 L:      linux-i2c@vger.kernel.org
4712 S:      Maintained
4713 F:      Documentation/i2c/busses/i2c-taos-evm
4714 F:      drivers/i2c/busses/i2c-taos-evm.c
4715
4716 I2C-TINY-USB DRIVER
4717 M:      Till Harbaum <till@harbaum.org>
4718 L:      linux-i2c@vger.kernel.org
4719 W:      http://www.harbaum.org/till/i2c_tiny_usb
4720 S:      Maintained
4721 F:      drivers/i2c/busses/i2c-tiny-usb.c
4722
4723 i386 BOOT CODE
4724 M:      "H. Peter Anvin" <hpa@zytor.com>
4725 S:      Maintained
4726 F:      arch/x86/boot/
4727
4728 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
4729 M:      "H. Peter Anvin" <hpa@zytor.com>
4730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
4731 S:      Maintained
4732
4733 IA64 (Itanium) PLATFORM
4734 M:      Tony Luck <tony.luck@intel.com>
4735 M:      Fenghua Yu <fenghua.yu@intel.com>
4736 L:      linux-ia64@vger.kernel.org
4737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
4738 S:      Maintained
4739 F:      arch/ia64/
4740
4741 IBM Power in-Nest Crypto Acceleration
4742 M:      Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
4743 M:      Fionnuala Gunter <fin@linux.vnet.ibm.com>
4744 L:      linux-crypto@vger.kernel.org
4745 S:      Supported
4746 F:      drivers/crypto/nx/
4747
4748 IBM Power 842 compression accelerator
4749 M:      Dan Streetman <ddstreet@us.ibm.com>
4750 S:      Supported
4751 F:      drivers/crypto/nx/nx-842.c
4752 F:      include/linux/nx842.h
4753
4754 IBM Power Linux RAID adapter
4755 M:      Brian King <brking@us.ibm.com>
4756 S:      Supported
4757 F:      drivers/scsi/ipr.*
4758
4759 IBM Power Virtual Ethernet Device Driver
4760 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
4761 L:      netdev@vger.kernel.org
4762 S:      Supported
4763 F:      drivers/net/ethernet/ibm/ibmveth.*
4764
4765 IBM Power Virtual SCSI Device Drivers
4766 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
4767 L:      linux-scsi@vger.kernel.org
4768 S:      Supported
4769 F:      drivers/scsi/ibmvscsi/ibmvscsi*
4770 F:      drivers/scsi/ibmvscsi/viosrp.h
4771
4772 IBM Power Virtual FC Device Drivers
4773 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
4774 L:      linux-scsi@vger.kernel.org
4775 S:      Supported
4776 F:      drivers/scsi/ibmvscsi/ibmvfc*
4777
4778 IBM ServeRAID RAID DRIVER
4779 S:      Orphan
4780 F:      drivers/scsi/ips.*
4781
4782 ICH LPC AND GPIO DRIVER
4783 M:      Peter Tyser <ptyser@xes-inc.com>
4784 S:      Maintained
4785 F:      drivers/mfd/lpc_ich.c
4786 F:      drivers/gpio/gpio-ich.c
4787
4788 IDE SUBSYSTEM
4789 M:      "David S. Miller" <davem@davemloft.net>
4790 L:      linux-ide@vger.kernel.org
4791 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
4792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
4793 S:      Maintained
4794 F:      Documentation/ide/
4795 F:      drivers/ide/
4796 F:      include/linux/ide.h
4797
4798 IDEAPAD LAPTOP EXTRAS DRIVER
4799 M:      Ike Panhc <ike.pan@canonical.com>
4800 L:      platform-driver-x86@vger.kernel.org
4801 W:      http://launchpad.net/ideapad-laptop
4802 S:      Maintained
4803 F:      drivers/platform/x86/ideapad-laptop.c
4804
4805 IDEAPAD LAPTOP SLIDEBAR DRIVER
4806 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
4807 L:      linux-input@vger.kernel.org
4808 W:      https://github.com/o2genum/ideapad-slidebar
4809 S:      Maintained
4810 F:      drivers/input/misc/ideapad_slidebar.c
4811
4812 IDE/ATAPI DRIVERS
4813 M:      Borislav Petkov <bp@alien8.de>
4814 L:      linux-ide@vger.kernel.org
4815 S:      Maintained
4816 F:      Documentation/cdrom/ide-cd
4817 F:      drivers/ide/ide-cd*
4818
4819 IDLE-I7300
4820 M:      Andy Henroid <andrew.d.henroid@intel.com>
4821 L:      linux-pm@vger.kernel.org
4822 S:      Supported
4823 F:      drivers/idle/i7300_idle.c
4824
4825 IEEE 802.15.4 SUBSYSTEM
4826 M:      Alexander Aring <alex.aring@gmail.com>
4827 L:      linux-wpan@vger.kernel.org
4828 W:      https://github.com/linux-wpan
4829 T:      git git://github.com/linux-wpan/linux-wpan-next.git
4830 S:      Maintained
4831 F:      net/ieee802154/
4832 F:      net/mac802154/
4833 F:      drivers/net/ieee802154/
4834 F:      include/linux/nl802154.h
4835 F:      include/linux/ieee802154.h
4836 F:      include/net/nl802154.h
4837 F:      include/net/mac802154.h
4838 F:      include/net/af_ieee802154.h
4839 F:      include/net/cfg802154.h
4840 F:      include/net/ieee802154_netdev.h
4841 F:      Documentation/networking/ieee802154.txt
4842
4843 IGORPLUG-USB IR RECEIVER
4844 M:      Sean Young <sean@mess.org>
4845 L:      linux-media@vger.kernel.org
4846 S:      Maintained
4847 F:      drivers/media/rc/igorplugusb.c
4848
4849 IGUANAWORKS USB IR TRANSCEIVER
4850 M:      Sean Young <sean@mess.org>
4851 L:      linux-media@vger.kernel.org
4852 S:      Maintained
4853 F:      drivers/media/rc/iguanair.c
4854
4855 IIO SUBSYSTEM AND DRIVERS
4856 M:      Jonathan Cameron <jic23@kernel.org>
4857 R:      Hartmut Knaack <knaack.h@gmx.de>
4858 R:      Lars-Peter Clausen <lars@metafoo.de>
4859 R:      Peter Meerwald <pmeerw@pmeerw.net>
4860 L:      linux-iio@vger.kernel.org
4861 S:      Maintained
4862 F:      drivers/iio/
4863 F:      drivers/staging/iio/
4864 F:      include/linux/iio/
4865
4866 IKANOS/ADI EAGLE ADSL USB DRIVER
4867 M:      Matthieu Castet <castet.matthieu@free.fr>
4868 M:      Stanislaw Gruszka <stf_xl@wp.pl>
4869 S:      Maintained
4870 F:      drivers/usb/atm/ueagle-atm.c
4871
4872 INA209 HARDWARE MONITOR DRIVER
4873 M:      Guenter Roeck <linux@roeck-us.net>
4874 L:      lm-sensors@lm-sensors.org
4875 S:      Maintained
4876 F:      Documentation/hwmon/ina209
4877 F:      Documentation/devicetree/bindings/i2c/ina209.txt
4878 F:      drivers/hwmon/ina209.c
4879
4880 INA2XX HARDWARE MONITOR DRIVER
4881 M:      Guenter Roeck <linux@roeck-us.net>
4882 L:      lm-sensors@lm-sensors.org
4883 S:      Maintained
4884 F:      Documentation/hwmon/ina2xx
4885 F:      drivers/hwmon/ina2xx.c
4886 F:      include/linux/platform_data/ina2xx.h
4887
4888 INDUSTRY PACK SUBSYSTEM (IPACK)
4889 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4890 M:      Jens Taprogge <jens.taprogge@taprogge.org>
4891 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4892 L:      industrypack-devel@lists.sourceforge.net
4893 W:      http://industrypack.sourceforge.net
4894 S:      Maintained
4895 F:      drivers/ipack/
4896
4897 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
4898 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4899 M:      Dmitry Kasatkin <d.kasatkin@samsung.com>
4900 L:      linux-ima-devel@lists.sourceforge.net
4901 L:      linux-ima-user@lists.sourceforge.net
4902 L:      linux-security-module@vger.kernel.org
4903 S:      Supported
4904 F:      security/integrity/ima/
4905
4906 IMGTEC IR DECODER DRIVER
4907 M:      James Hogan <james.hogan@imgtec.com>
4908 S:      Maintained
4909 F:      drivers/media/rc/img-ir/
4910
4911 IMS TWINTURBO FRAMEBUFFER DRIVER
4912 L:      linux-fbdev@vger.kernel.org
4913 S:      Orphan
4914 F:      drivers/video/fbdev/imsttfb.c
4915
4916 INFINIBAND SUBSYSTEM
4917 M:      Roland Dreier <roland@kernel.org>
4918 M:      Sean Hefty <sean.hefty@intel.com>
4919 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
4920 L:      linux-rdma@vger.kernel.org
4921 W:      http://www.openfabrics.org/
4922 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
4923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
4924 S:      Supported
4925 F:      Documentation/infiniband/
4926 F:      drivers/infiniband/
4927 F:      include/uapi/linux/if_infiniband.h
4928
4929 INOTIFY
4930 M:      John McCutchan <john@johnmccutchan.com>
4931 M:      Robert Love <rlove@rlove.org>
4932 M:      Eric Paris <eparis@parisplace.org>
4933 S:      Maintained
4934 F:      Documentation/filesystems/inotify.txt
4935 F:      fs/notify/inotify/
4936 F:      include/linux/inotify.h
4937 F:      include/uapi/linux/inotify.h
4938
4939 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
4940 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
4941 L:      linux-input@vger.kernel.org
4942 Q:      http://patchwork.kernel.org/project/linux-input/list/
4943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
4944 S:      Maintained
4945 F:      drivers/input/
4946 F:      include/linux/input.h
4947 F:      include/uapi/linux/input.h
4948 F:      include/linux/input/
4949
4950 INPUT MULTITOUCH (MT) PROTOCOL
4951 M:      Henrik Rydberg <rydberg@bitmath.org>
4952 L:      linux-input@vger.kernel.org
4953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
4954 S:      Odd fixes
4955 F:      Documentation/input/multi-touch-protocol.txt
4956 F:      drivers/input/input-mt.c
4957 K:      \b(ABS|SYN)_MT_
4958
4959 INTEL ASoC BDW/HSW DRIVERS
4960 M:      Jie Yang <yang.jie@linux.intel.com>
4961 L:      alsa-devel@alsa-project.org
4962 S:      Supported
4963 F:      sound/soc/intel/sst-haswell*
4964 F:      sound/soc/intel/sst-dsp*
4965 F:      sound/soc/intel/sst-firmware.c
4966 F:      sound/soc/intel/broadwell.c
4967 F:      sound/soc/intel/haswell.c
4968
4969 INTEL C600 SERIES SAS CONTROLLER DRIVER
4970 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
4971 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
4972 L:      linux-scsi@vger.kernel.org
4973 T:      git git://git.code.sf.net/p/intel-sas/isci
4974 S:      Supported
4975 F:      drivers/scsi/isci/
4976
4977 INTEL IDLE DRIVER
4978 M:      Len Brown <lenb@kernel.org>
4979 L:      linux-pm@vger.kernel.org
4980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
4981 S:      Supported
4982 F:      drivers/idle/intel_idle.c
4983
4984 INTEL PSTATE DRIVER
4985 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
4986 L:      linux-pm@vger.kernel.org
4987 S:      Supported
4988 F:      drivers/cpufreq/intel_pstate.c
4989
4990 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
4991 M:      Maik Broemme <mbroemme@plusserver.de>
4992 L:      linux-fbdev@vger.kernel.org
4993 S:      Maintained
4994 F:      Documentation/fb/intelfb.txt
4995 F:      drivers/video/fbdev/intelfb/
4996
4997 INTEL 810/815 FRAMEBUFFER DRIVER
4998 M:      Antonino Daplas <adaplas@gmail.com>
4999 L:      linux-fbdev@vger.kernel.org
5000 S:      Maintained
5001 F:      drivers/video/fbdev/i810/
5002
5003 INTEL MENLOW THERMAL DRIVER
5004 M:      Sujith Thomas <sujith.thomas@intel.com>
5005 L:      platform-driver-x86@vger.kernel.org
5006 W:      https://01.org/linux-acpi
5007 S:      Supported
5008 F:      drivers/platform/x86/intel_menlow.c
5009
5010 INTEL IA32 MICROCODE UPDATE SUPPORT
5011 M:      Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
5012 S:      Maintained
5013 F:      arch/x86/kernel/cpu/microcode/core*
5014 F:      arch/x86/kernel/cpu/microcode/intel*
5015
5016 INTEL I/OAT DMA DRIVER
5017 M:      Dave Jiang <dave.jiang@intel.com>
5018 R:      Dan Williams <dan.j.williams@intel.com>
5019 L:      dmaengine@vger.kernel.org
5020 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5021 S:      Supported
5022 F:      drivers/dma/ioat*
5023
5024 INTEL IOMMU (VT-d)
5025 M:      David Woodhouse <dwmw2@infradead.org>
5026 L:      iommu@lists.linux-foundation.org
5027 T:      git git://git.infradead.org/iommu-2.6.git
5028 S:      Supported
5029 F:      drivers/iommu/intel-iommu.c
5030 F:      include/linux/intel-iommu.h
5031
5032 INTEL IOP-ADMA DMA DRIVER
5033 R:      Dan Williams <dan.j.williams@intel.com>
5034 S:      Odd fixes
5035 F:      drivers/dma/iop-adma.c
5036
5037 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5038 M:      Krzysztof Halasa <khalasa@piap.pl>
5039 S:      Maintained
5040 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5041 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5042 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5043 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5044 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5045 F:      drivers/net/wan/ixp4xx_hss.c
5046
5047 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5048 M:      Deepak Saxena <dsaxena@plexity.net>
5049 S:      Maintained
5050 F:      drivers/char/hw_random/ixp4xx-rng.c
5051
5052 INTEL ETHERNET DRIVERS (e100/e1000/e1000e/fm10k/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf)
5053 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5054 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5055 M:      Bruce Allan <bruce.w.allan@intel.com>
5056 M:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5057 M:      Don Skidmore <donald.c.skidmore@intel.com>
5058 M:      Greg Rose <gregory.v.rose@intel.com>
5059 M:      Matthew Vick <matthew.vick@intel.com>
5060 M:      John Ronciak <john.ronciak@intel.com>
5061 M:      Mitch Williams <mitch.a.williams@intel.com>
5062 M:      Linux NICS <linux.nics@intel.com>
5063 L:      e1000-devel@lists.sourceforge.net
5064 W:      http://www.intel.com/support/feedback.htm
5065 W:      http://e1000.sourceforge.net/
5066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
5067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
5068 S:      Supported
5069 F:      Documentation/networking/e100.txt
5070 F:      Documentation/networking/e1000.txt
5071 F:      Documentation/networking/e1000e.txt
5072 F:      Documentation/networking/igb.txt
5073 F:      Documentation/networking/igbvf.txt
5074 F:      Documentation/networking/ixgb.txt
5075 F:      Documentation/networking/ixgbe.txt
5076 F:      Documentation/networking/ixgbevf.txt
5077 F:      Documentation/networking/i40e.txt
5078 F:      Documentation/networking/i40evf.txt
5079 F:      drivers/net/ethernet/intel/
5080 F:      drivers/net/ethernet/intel/*/
5081
5082 INTEL-MID GPIO DRIVER
5083 M:      David Cohen <david.a.cohen@linux.intel.com>
5084 L:      linux-gpio@vger.kernel.org
5085 S:      Maintained
5086 F:      drivers/gpio/gpio-intel-mid.c
5087
5088 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5089 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5090 L:      linux-wireless@vger.kernel.org
5091 S:      Maintained
5092 F:      Documentation/networking/README.ipw2100
5093 F:      Documentation/networking/README.ipw2200
5094 F:      drivers/net/wireless/ipw2x00/
5095
5096 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5097 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5098 M:      Gang Wei <gang.wei@intel.com>
5099 M:      Shane Wang <shane.wang@intel.com>
5100 L:      tboot-devel@lists.sourceforge.net
5101 W:      http://tboot.sourceforge.net
5102 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5103 S:      Supported
5104 F:      Documentation/intel_txt.txt
5105 F:      include/linux/tboot.h
5106 F:      arch/x86/kernel/tboot.c
5107
5108 INTEL WIRELESS WIMAX CONNECTION 2400
5109 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5110 M:      linux-wimax@intel.com
5111 L:     wimax@linuxwimax.org (subscribers-only)
5112 S:      Supported
5113 W:      http://linuxwimax.org
5114 F:      Documentation/wimax/README.i2400m
5115 F:      drivers/net/wimax/i2400m/
5116 F:      include/uapi/linux/wimax/i2400m.h
5117
5118 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5119 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5120 L:      linux-wireless@vger.kernel.org
5121 S:      Supported
5122 F:      drivers/net/wireless/iwlegacy/
5123
5124 INTEL WIRELESS WIFI LINK (iwlwifi)
5125 M:      Johannes Berg <johannes.berg@intel.com>
5126 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5127 M:      Intel Linux Wireless <ilw@linux.intel.com>
5128 L:      linux-wireless@vger.kernel.org
5129 W:      http://intellinuxwireless.org
5130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5131 S:      Supported
5132 F:      drivers/net/wireless/iwlwifi/
5133
5134 INTEL MANAGEMENT ENGINE (mei)
5135 M:      Tomas Winkler <tomas.winkler@intel.com>
5136 L:      linux-kernel@vger.kernel.org
5137 S:      Supported
5138 F:      include/uapi/linux/mei.h
5139 F:      drivers/misc/mei/*
5140 F:      Documentation/misc-devices/mei/*
5141
5142 IOC3 ETHERNET DRIVER
5143 M:      Ralf Baechle <ralf@linux-mips.org>
5144 L:      linux-mips@linux-mips.org
5145 S:      Maintained
5146 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5147
5148 IOC3 SERIAL DRIVER
5149 M:      Pat Gefre <pfg@sgi.com>
5150 L:      linux-serial@vger.kernel.org
5151 S:      Maintained
5152 F:      drivers/tty/serial/ioc3_serial.c
5153
5154 IOMMU DRIVERS
5155 M:      Joerg Roedel <joro@8bytes.org>
5156 L:      iommu@lists.linux-foundation.org
5157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5158 S:      Maintained
5159 F:      drivers/iommu/
5160
5161 IP MASQUERADING
5162 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5163 S:      Maintained
5164 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5165
5166 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5167 M:      Francois Romieu <romieu@fr.zoreil.com>
5168 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5169 L:      netdev@vger.kernel.org
5170 S:      Maintained
5171 F:      drivers/net/ethernet/icplus/ipg.*
5172
5173 IPATH DRIVER
5174 M:      Mike Marciniszyn <infinipath@intel.com>
5175 L:      linux-rdma@vger.kernel.org
5176 S:      Maintained
5177 F:      drivers/infiniband/hw/ipath/
5178
5179 IPMI SUBSYSTEM
5180 M:      Corey Minyard <minyard@acm.org>
5181 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5182 W:      http://openipmi.sourceforge.net/
5183 S:      Supported
5184 F:      Documentation/IPMI.txt
5185 F:      drivers/char/ipmi/
5186 F:      include/linux/ipmi*
5187 F:      include/uapi/linux/ipmi*
5188
5189 IPS SCSI RAID DRIVER
5190 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5191 L:      linux-scsi@vger.kernel.org
5192 W:      http://www.adaptec.com/
5193 S:      Maintained
5194 F:      drivers/scsi/ips*
5195
5196 IPVS
5197 M:      Wensong Zhang <wensong@linux-vs.org>
5198 M:      Simon Horman <horms@verge.net.au>
5199 M:      Julian Anastasov <ja@ssi.bg>
5200 L:      netdev@vger.kernel.org
5201 L:      lvs-devel@vger.kernel.org
5202 S:      Maintained
5203 F:      Documentation/networking/ipvs-sysctl.txt
5204 F:      include/net/ip_vs.h
5205 F:      include/uapi/linux/ip_vs.h
5206 F:      net/netfilter/ipvs/
5207
5208 IPWIRELESS DRIVER
5209 M:      Jiri Kosina <jkosina@suse.cz>
5210 M:      David Sterba <dsterba@suse.cz>
5211 S:      Odd Fixes
5212 F:      drivers/tty/ipwireless/
5213
5214 IPX NETWORK LAYER
5215 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5216 L:      netdev@vger.kernel.org
5217 S:      Maintained
5218 F:      include/net/ipx.h
5219 F:      include/uapi/linux/ipx.h
5220 F:      net/ipx/
5221
5222 IRDA SUBSYSTEM
5223 M:      Samuel Ortiz <samuel@sortiz.org>
5224 L:      irda-users@lists.sourceforge.net (subscribers-only)
5225 L:      netdev@vger.kernel.org
5226 W:      http://irda.sourceforge.net/
5227 S:      Maintained
5228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5229 F:      Documentation/networking/irda.txt
5230 F:      drivers/net/irda/
5231 F:      include/net/irda/
5232 F:      net/irda/
5233
5234 IRQ SUBSYSTEM
5235 M:      Thomas Gleixner <tglx@linutronix.de>
5236 L:      linux-kernel@vger.kernel.org
5237 S:      Maintained
5238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5239 F:      kernel/irq/
5240
5241 IRQCHIP DRIVERS
5242 M:      Thomas Gleixner <tglx@linutronix.de>
5243 M:      Jason Cooper <jason@lakedaemon.net>
5244 L:      linux-kernel@vger.kernel.org
5245 S:      Maintained
5246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5247 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5248 F:      Documentation/devicetree/bindings/interrupt-controller/
5249 F:      drivers/irqchip/
5250
5251 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5252 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5253 S:      Maintained
5254 F:      Documentation/IRQ-domain.txt
5255 F:      include/linux/irqdomain.h
5256 F:      kernel/irq/irqdomain.c
5257
5258 ISAPNP
5259 M:      Jaroslav Kysela <perex@perex.cz>
5260 S:      Maintained
5261 F:      Documentation/isapnp.txt
5262 F:      drivers/pnp/isapnp/
5263 F:      include/linux/isapnp.h
5264
5265 ISA RADIO MODULE
5266 M:      Hans Verkuil <hverkuil@xs4all.nl>
5267 L:      linux-media@vger.kernel.org
5268 T:      git git://linuxtv.org/media_tree.git
5269 W:      http://linuxtv.org
5270 S:      Maintained
5271 F:      drivers/media/radio/radio-isa*
5272
5273 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5274 M:      Peter Jones <pjones@redhat.com>
5275 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5276 S:      Maintained
5277 F:      drivers/firmware/iscsi_ibft*
5278
5279 ISCSI
5280 M:      Mike Christie <michaelc@cs.wisc.edu>
5281 L:      open-iscsi@googlegroups.com
5282 W:      www.open-iscsi.org
5283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5284 S:      Maintained
5285 F:      drivers/scsi/*iscsi*
5286 F:      include/scsi/*iscsi*
5287
5288 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5289 M:      Or Gerlitz <ogerlitz@mellanox.com>
5290 M:      Sagi Grimberg <sagig@mellanox.com>
5291 M:      Roi Dayan <roid@mellanox.com>
5292 L:      linux-rdma@vger.kernel.org
5293 S:      Supported
5294 W:      http://www.openfabrics.org
5295 W:      www.open-iscsi.org
5296 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5297 F:      drivers/infiniband/ulp/iser/
5298
5299 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5300 M:      Sagi Grimberg <sagig@mellanox.com>
5301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5302 L:      linux-rdma@vger.kernel.org
5303 L:      target-devel@vger.kernel.org
5304 S:      Supported
5305 W:      http://www.linux-iscsi.org
5306 F:      drivers/infiniband/ulp/isert
5307
5308 ISDN SUBSYSTEM
5309 M:      Karsten Keil <isdn@linux-pingi.de>
5310 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5311 L:      netdev@vger.kernel.org
5312 W:      http://www.isdn4linux.de
5313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5314 S:      Maintained
5315 F:      Documentation/isdn/
5316 F:      drivers/isdn/
5317 F:      include/linux/isdn.h
5318 F:      include/linux/isdn/
5319 F:      include/uapi/linux/isdn.h
5320 F:      include/uapi/linux/isdn/
5321
5322 ISDN SUBSYSTEM (Eicon active card driver)
5323 M:      Armin Schindler <mac@melware.de>
5324 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5325 W:      http://www.melware.de
5326 S:      Maintained
5327 F:      drivers/isdn/hardware/eicon/
5328
5329 IT87 HARDWARE MONITORING DRIVER
5330 M:      Jean Delvare <jdelvare@suse.de>
5331 L:      lm-sensors@lm-sensors.org
5332 S:      Maintained
5333 F:      Documentation/hwmon/it87
5334 F:      drivers/hwmon/it87.c
5335
5336 IT913X MEDIA DRIVER
5337 M:      Antti Palosaari <crope@iki.fi>
5338 L:      linux-media@vger.kernel.org
5339 W:      http://linuxtv.org/
5340 W:      http://palosaari.fi/linux/
5341 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5342 T:      git git://linuxtv.org/anttip/media_tree.git
5343 S:      Maintained
5344 F:      drivers/media/tuners/it913x*
5345
5346 IVTV VIDEO4LINUX DRIVER
5347 M:      Andy Walls <awalls@md.metrocast.net>
5348 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5349 L:      linux-media@vger.kernel.org
5350 T:      git git://linuxtv.org/media_tree.git
5351 W:      http://www.ivtvdriver.org
5352 S:      Maintained
5353 F:      Documentation/video4linux/*.ivtv
5354 F:      drivers/media/pci/ivtv/
5355 F:      include/uapi/linux/ivtv*
5356
5357 IX2505V MEDIA DRIVER
5358 M:      Malcolm Priestley <tvboxspy@gmail.com>
5359 L:      linux-media@vger.kernel.org
5360 W:      http://linuxtv.org/
5361 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5362 S:      Maintained
5363 F:      drivers/media/dvb-frontends/ix2505v*
5364
5365 JC42.4 TEMPERATURE SENSOR DRIVER
5366 M:      Guenter Roeck <linux@roeck-us.net>
5367 L:      lm-sensors@lm-sensors.org
5368 S:      Maintained
5369 F:      drivers/hwmon/jc42.c
5370 F:      Documentation/hwmon/jc42
5371
5372 JFS FILESYSTEM
5373 M:      Dave Kleikamp <shaggy@kernel.org>
5374 L:      jfs-discussion@lists.sourceforge.net
5375 W:      http://jfs.sourceforge.net/
5376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5377 S:      Maintained
5378 F:      Documentation/filesystems/jfs.txt
5379 F:      fs/jfs/
5380
5381 JME NETWORK DRIVER
5382 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5383 L:      netdev@vger.kernel.org
5384 S:      Maintained
5385 F:      drivers/net/ethernet/jme.*
5386
5387 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5388 M:      David Woodhouse <dwmw2@infradead.org>
5389 L:      linux-mtd@lists.infradead.org
5390 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5391 S:      Maintained
5392 F:      fs/jffs2/
5393 F:      include/uapi/linux/jffs2.h
5394
5395 JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
5396 M:      Andrew Morton <akpm@linux-foundation.org>
5397 M:      Jan Kara <jack@suse.cz>
5398 L:      linux-ext4@vger.kernel.org
5399 S:      Maintained
5400 F:      fs/jbd/
5401 F:      include/linux/jbd.h
5402
5403 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5404 M:      "Theodore Ts'o" <tytso@mit.edu>
5405 L:      linux-ext4@vger.kernel.org
5406 S:      Maintained
5407 F:      fs/jbd2/
5408 F:      include/linux/jbd2.h
5409
5410 JSM Neo PCI based serial card
5411 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5412 L:      linux-serial@vger.kernel.org
5413 S:      Maintained
5414 F:      drivers/tty/serial/jsm/
5415
5416 K10TEMP HARDWARE MONITORING DRIVER
5417 M:      Clemens Ladisch <clemens@ladisch.de>
5418 L:      lm-sensors@lm-sensors.org
5419 S:      Maintained
5420 F:      Documentation/hwmon/k10temp
5421 F:      drivers/hwmon/k10temp.c
5422
5423 K8TEMP HARDWARE MONITORING DRIVER
5424 M:      Rudolf Marek <r.marek@assembler.cz>
5425 L:      lm-sensors@lm-sensors.org
5426 S:      Maintained
5427 F:      Documentation/hwmon/k8temp
5428 F:      drivers/hwmon/k8temp.c
5429
5430 KCONFIG
5431 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5432 L:      linux-kbuild@vger.kernel.org
5433 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5434 S:      Maintained
5435 F:      Documentation/kbuild/kconfig-language.txt
5436 F:      scripts/kconfig/
5437
5438 KDUMP
5439 M:      Vivek Goyal <vgoyal@redhat.com>
5440 M:      Haren Myneni <hbabu@us.ibm.com>
5441 L:      kexec@lists.infradead.org
5442 W:      http://lse.sourceforge.net/kdump/
5443 S:      Maintained
5444 F:      Documentation/kdump/
5445
5446 KEENE FM RADIO TRANSMITTER DRIVER
5447 M:      Hans Verkuil <hverkuil@xs4all.nl>
5448 L:      linux-media@vger.kernel.org
5449 T:      git git://linuxtv.org/media_tree.git
5450 W:      http://linuxtv.org
5451 S:      Maintained
5452 F:      drivers/media/radio/radio-keene*
5453
5454 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5455 M:      Ian Kent <raven@themaw.net>
5456 L:      autofs@vger.kernel.org
5457 S:      Maintained
5458 F:      fs/autofs4/
5459
5460 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5461 M:      Michal Marek <mmarek@suse.cz>
5462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5464 L:      linux-kbuild@vger.kernel.org
5465 S:      Maintained
5466 F:      Documentation/kbuild/
5467 F:      Makefile
5468 F:      scripts/Makefile.*
5469 F:      scripts/basic/
5470 F:      scripts/mk*
5471 F:      scripts/package/
5472
5473 KERNEL JANITORS
5474 L:      kernel-janitors@vger.kernel.org
5475 W:      http://kernelnewbies.org/KernelJanitors
5476 S:      Odd Fixes
5477
5478 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5479 M:      "J. Bruce Fields" <bfields@fieldses.org>
5480 L:      linux-nfs@vger.kernel.org
5481 W:      http://nfs.sourceforge.net/
5482 S:      Supported
5483 F:      fs/nfsd/
5484 F:      include/uapi/linux/nfsd/
5485 F:      fs/lockd/
5486 F:      fs/nfs_common/
5487 F:      net/sunrpc/
5488 F:      include/linux/lockd/
5489 F:      include/linux/sunrpc/
5490 F:      include/uapi/linux/sunrpc/
5491
5492 KERNEL SELFTEST FRAMEWORK
5493 M:      Shuah Khan <shuahkh@osg.samsung.com>
5494 L:      linux-api@vger.kernel.org
5495 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5496 S:      Maintained
5497 F:      tools/testing/selftests
5498
5499 KERNEL VIRTUAL MACHINE (KVM)
5500 M:      Gleb Natapov <gleb@kernel.org>
5501 M:      Paolo Bonzini <pbonzini@redhat.com>
5502 L:      kvm@vger.kernel.org
5503 W:      http://www.linux-kvm.org
5504 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5505 S:      Supported
5506 F:      Documentation/*/kvm*.txt
5507 F:      Documentation/virtual/kvm/
5508 F:      arch/*/kvm/
5509 F:      arch/*/include/asm/kvm*
5510 F:      include/linux/kvm*
5511 F:      include/uapi/linux/kvm*
5512 F:      virt/kvm/
5513
5514 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5515 M:      Joerg Roedel <joro@8bytes.org>
5516 L:      kvm@vger.kernel.org
5517 W:      http://kvm.qumranet.com
5518 S:      Maintained
5519 F:      arch/x86/include/asm/svm.h
5520 F:      arch/x86/kvm/svm.c
5521
5522 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5523 M:      Alexander Graf <agraf@suse.de>
5524 L:      kvm-ppc@vger.kernel.org
5525 W:      http://kvm.qumranet.com
5526 T:      git git://github.com/agraf/linux-2.6.git
5527 S:      Supported
5528 F:      arch/powerpc/include/asm/kvm*
5529 F:      arch/powerpc/kvm/
5530
5531 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5532 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5533 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5534 M:      linux390@de.ibm.com
5535 L:      linux-s390@vger.kernel.org
5536 W:      http://www.ibm.com/developerworks/linux/linux390/
5537 S:      Supported
5538 F:      Documentation/s390/kvm.txt
5539 F:      arch/s390/include/asm/kvm*
5540 F:      arch/s390/kvm/
5541 F:      drivers/s390/kvm/
5542
5543 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5544 M:      Christoffer Dall <christoffer.dall@linaro.org>
5545 M:      Marc Zyngier <marc.zyngier@arm.com>
5546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5547 L:      kvmarm@lists.cs.columbia.edu
5548 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5549 S:      Supported
5550 F:      arch/arm/include/uapi/asm/kvm*
5551 F:      arch/arm/include/asm/kvm*
5552 F:      arch/arm/kvm/
5553 F:      virt/kvm/arm/
5554 F:      include/kvm/arm_*
5555
5556 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5557 M:      Christoffer Dall <christoffer.dall@linaro.org>
5558 M:      Marc Zyngier <marc.zyngier@arm.com>
5559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5560 L:      kvmarm@lists.cs.columbia.edu
5561 S:      Maintained
5562 F:      arch/arm64/include/uapi/asm/kvm*
5563 F:      arch/arm64/include/asm/kvm*
5564 F:      arch/arm64/kvm/
5565
5566 KEXEC
5567 M:      Eric Biederman <ebiederm@xmission.com>
5568 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
5569 L:      kexec@lists.infradead.org
5570 S:      Maintained
5571 F:      include/linux/kexec.h
5572 F:      include/uapi/linux/kexec.h
5573 F:      kernel/kexec.c
5574
5575 KEYS/KEYRINGS:
5576 M:      David Howells <dhowells@redhat.com>
5577 L:      keyrings@linux-nfs.org
5578 S:      Maintained
5579 F:      Documentation/security/keys.txt
5580 F:      include/linux/key.h
5581 F:      include/linux/key-type.h
5582 F:      include/keys/
5583 F:      security/keys/
5584
5585 KEYS-TRUSTED
5586 M:      David Safford <safford@us.ibm.com>
5587 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5588 L:      linux-security-module@vger.kernel.org
5589 L:      keyrings@linux-nfs.org
5590 S:      Supported
5591 F:      Documentation/security/keys-trusted-encrypted.txt
5592 F:      include/keys/trusted-type.h
5593 F:      security/keys/trusted.c
5594 F:      security/keys/trusted.h
5595
5596 KEYS-ENCRYPTED
5597 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5598 M:      David Safford <safford@us.ibm.com>
5599 L:      linux-security-module@vger.kernel.org
5600 L:      keyrings@linux-nfs.org
5601 S:      Supported
5602 F:      Documentation/security/keys-trusted-encrypted.txt
5603 F:      include/keys/encrypted-type.h
5604 F:      security/keys/encrypted-keys/
5605
5606 KGDB / KDB /debug_core
5607 M:      Jason Wessel <jason.wessel@windriver.com>
5608 W:      http://kgdb.wiki.kernel.org/
5609 L:      kgdb-bugreport@lists.sourceforge.net
5610 S:      Maintained
5611 F:      Documentation/DocBook/kgdb.tmpl
5612 F:      drivers/misc/kgdbts.c
5613 F:      drivers/tty/serial/kgdboc.c
5614 F:      include/linux/kdb.h
5615 F:      include/linux/kgdb.h
5616 F:      kernel/debug/
5617
5618 KMEMCHECK
5619 M:      Vegard Nossum <vegardno@ifi.uio.no>
5620 M:      Pekka Enberg <penberg@kernel.org>
5621 S:      Maintained
5622 F:      Documentation/kmemcheck.txt
5623 F:      arch/x86/include/asm/kmemcheck.h
5624 F:      arch/x86/mm/kmemcheck/
5625 F:      include/linux/kmemcheck.h
5626 F:      mm/kmemcheck.c
5627
5628 KMEMLEAK
5629 M:      Catalin Marinas <catalin.marinas@arm.com>
5630 S:      Maintained
5631 F:      Documentation/kmemleak.txt
5632 F:      include/linux/kmemleak.h
5633 F:      mm/kmemleak.c
5634 F:      mm/kmemleak-test.c
5635
5636 KPROBES
5637 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
5638 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
5639 M:      "David S. Miller" <davem@davemloft.net>
5640 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
5641 S:      Maintained
5642 F:      Documentation/kprobes.txt
5643 F:      include/linux/kprobes.h
5644 F:      kernel/kprobes.c
5645
5646 KS0108 LCD CONTROLLER DRIVER
5647 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
5648 W:      http://miguelojeda.es/auxdisplay.htm
5649 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
5650 S:      Maintained
5651 F:      Documentation/auxdisplay/ks0108
5652 F:      drivers/auxdisplay/ks0108.c
5653 F:      include/linux/ks0108.h
5654
5655 LAPB module
5656 L:      linux-x25@vger.kernel.org
5657 S:      Orphan
5658 F:      Documentation/networking/lapb-module.txt
5659 F:      include/*/lapb.h
5660 F:      net/lapb/
5661
5662 LASI 53c700 driver for PARISC
5663 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
5664 L:      linux-scsi@vger.kernel.org
5665 S:      Maintained
5666 F:      Documentation/scsi/53c700.txt
5667 F:      drivers/scsi/53c700*
5668
5669 LED SUBSYSTEM
5670 M:      Bryan Wu <cooloney@gmail.com>
5671 M:      Richard Purdie <rpurdie@rpsys.net>
5672 L:      linux-leds@vger.kernel.org
5673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
5674 S:      Maintained
5675 F:      drivers/leds/
5676 F:      include/linux/leds.h
5677
5678 LEGACY EEPROM DRIVER
5679 M:      Jean Delvare <jdelvare@suse.de>
5680 S:      Maintained
5681 F:      Documentation/misc-devices/eeprom
5682 F:      drivers/misc/eeprom/eeprom.c
5683
5684 LEGO USB Tower driver
5685 M:      Juergen Stuber <starblue@users.sourceforge.net>
5686 L:      legousb-devel@lists.sourceforge.net
5687 W:      http://legousb.sourceforge.net/
5688 S:      Maintained
5689 F:      drivers/usb/misc/legousbtower.c
5690
5691 LG2160 MEDIA DRIVER
5692 M:      Michael Krufky <mkrufky@linuxtv.org>
5693 L:      linux-media@vger.kernel.org
5694 W:      http://linuxtv.org/
5695 W:      http://github.com/mkrufky
5696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5697 T:      git git://linuxtv.org/mkrufky/tuners.git
5698 S:      Maintained
5699 F:      drivers/media/dvb-frontends/lg2160.*
5700
5701 LGDT3305 MEDIA DRIVER
5702 M:      Michael Krufky <mkrufky@linuxtv.org>
5703 L:      linux-media@vger.kernel.org
5704 W:      http://linuxtv.org/
5705 W:      http://github.com/mkrufky
5706 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5707 T:      git git://linuxtv.org/mkrufky/tuners.git
5708 S:      Maintained
5709 F:      drivers/media/dvb-frontends/lgdt3305.*
5710
5711 LGUEST
5712 M:      Rusty Russell <rusty@rustcorp.com.au>
5713 L:      lguest@lists.ozlabs.org
5714 W:      http://lguest.ozlabs.org/
5715 S:      Odd Fixes
5716 F:      arch/x86/include/asm/lguest*.h
5717 F:      arch/x86/lguest/
5718 F:      drivers/lguest/
5719 F:      include/linux/lguest*.h
5720 F:      tools/lguest/
5721
5722 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
5723 M:      Tejun Heo <tj@kernel.org>
5724 L:      linux-ide@vger.kernel.org
5725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5726 S:      Maintained
5727 F:      drivers/ata/
5728 F:      include/linux/ata.h
5729 F:      include/linux/libata.h
5730
5731 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
5732 M:      Viresh Kumar <viresh.linux@gmail.com>
5733 L:      linux-ide@vger.kernel.org
5734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5735 S:      Maintained
5736 F:      include/linux/pata_arasan_cf_data.h
5737 F:      drivers/ata/pata_arasan_cf.c
5738
5739 LIBATA PATA DRIVERS
5740 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5741 M:      Tejun Heo <tj@kernel.org>
5742 L:      linux-ide@vger.kernel.org
5743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5744 S:      Maintained
5745 F:      drivers/ata/pata_*.c
5746 F:      drivers/ata/ata_generic.c
5747
5748 LIBATA SATA AHCI PLATFORM devices support
5749 M:      Hans de Goede <hdegoede@redhat.com>
5750 M:      Tejun Heo <tj@kernel.org>
5751 L:      linux-ide@vger.kernel.org
5752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5753 S:      Maintained
5754 F:      drivers/ata/ahci_platform.c
5755 F:      drivers/ata/libahci_platform.c
5756 F:      include/linux/ahci_platform.h
5757
5758 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
5759 M:      Mikael Pettersson <mikpelinux@gmail.com>
5760 L:      linux-ide@vger.kernel.org
5761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5762 S:      Maintained
5763 F:      drivers/ata/sata_promise.*
5764
5765 LIBLOCKDEP
5766 M:      Sasha Levin <sasha.levin@oracle.com>
5767 S:      Maintained
5768 F:      tools/lib/lockdep/
5769
5770 LINUX FOR IBM pSERIES (RS/6000)
5771 M:      Paul Mackerras <paulus@au.ibm.com>
5772 W:      http://www.ibm.com/linux/ltc/projects/ppc
5773 S:      Supported
5774 F:      arch/powerpc/boot/rs6000.h
5775
5776 LINUX FOR POWERPC (32-BIT AND 64-BIT)
5777 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5778 M:      Paul Mackerras <paulus@samba.org>
5779 M:      Michael Ellerman <mpe@ellerman.id.au>
5780 W:      http://www.penguinppc.org/
5781 L:      linuxppc-dev@lists.ozlabs.org
5782 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
5783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
5784 S:      Supported
5785 F:      Documentation/powerpc/
5786 F:      arch/powerpc/
5787
5788 LINUX FOR POWER MACINTOSH
5789 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5790 W:      http://www.penguinppc.org/
5791 L:      linuxppc-dev@lists.ozlabs.org
5792 S:      Maintained
5793 F:      arch/powerpc/platforms/powermac/
5794 F:      drivers/macintosh/
5795
5796 LINUX FOR POWERPC EMBEDDED MPC5XXX
5797 M:      Anatolij Gustschin <agust@denx.de>
5798 L:      linuxppc-dev@lists.ozlabs.org
5799 T:      git git://git.denx.de/linux-denx-agust.git
5800 S:      Maintained
5801 F:      arch/powerpc/platforms/512x/
5802 F:      arch/powerpc/platforms/52xx/
5803
5804 LINUX FOR POWERPC EMBEDDED PPC4XX
5805 M:  Alistair Popple <alistair@popple.id.au>
5806 M:      Matt Porter <mporter@kernel.crashing.org>
5807 W:      http://www.penguinppc.org/
5808 L:      linuxppc-dev@lists.ozlabs.org
5809 S:      Maintained
5810 F:      arch/powerpc/platforms/40x/
5811 F:      arch/powerpc/platforms/44x/
5812
5813 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
5814 L:      linuxppc-dev@lists.ozlabs.org
5815 S:      Orphan
5816 F:      arch/powerpc/*/*virtex*
5817 F:      arch/powerpc/*/*/*virtex*
5818
5819 LINUX FOR POWERPC EMBEDDED PPC8XX
5820 M:      Vitaly Bordug <vitb@kernel.crashing.org>
5821 W:      http://www.penguinppc.org/
5822 L:      linuxppc-dev@lists.ozlabs.org
5823 S:      Maintained
5824 F:      arch/powerpc/platforms/8xx/
5825
5826 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
5827 M:      Scott Wood <scottwood@freescale.com>
5828 M:      Kumar Gala <galak@kernel.crashing.org>
5829 W:      http://www.penguinppc.org/
5830 L:      linuxppc-dev@lists.ozlabs.org
5831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
5832 S:      Maintained
5833 F:      arch/powerpc/platforms/83xx/
5834 F:      arch/powerpc/platforms/85xx/
5835
5836 LINUX FOR POWERPC PA SEMI PWRFICIENT
5837 M:      Olof Johansson <olof@lixom.net>
5838 L:      linuxppc-dev@lists.ozlabs.org
5839 S:      Maintained
5840 F:      arch/powerpc/platforms/pasemi/
5841 F:      drivers/*/*pasemi*
5842 F:      drivers/*/*/*pasemi*
5843
5844 LINUX SECURITY MODULE (LSM) FRAMEWORK
5845 M:      Chris Wright <chrisw@sous-sol.org>
5846 L:      linux-security-module@vger.kernel.org
5847 S:      Supported
5848
5849 LIS3LV02D ACCELEROMETER DRIVER
5850 M:      Eric Piel <eric.piel@tremplin-utc.net>
5851 S:      Maintained
5852 F:      Documentation/misc-devices/lis3lv02d
5853 F:      drivers/misc/lis3lv02d/
5854 F:      drivers/platform/x86/hp_accel.c
5855
5856 LLC (802.2)
5857 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5858 S:      Maintained
5859 F:      include/linux/llc.h
5860 F:      include/uapi/linux/llc.h
5861 F:      include/net/llc*
5862 F:      net/llc/
5863
5864 LM73 HARDWARE MONITOR DRIVER
5865 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
5866 L:      lm-sensors@lm-sensors.org
5867 S:      Maintained
5868 F:      drivers/hwmon/lm73.c
5869
5870 LM78 HARDWARE MONITOR DRIVER
5871 M:      Jean Delvare <jdelvare@suse.de>
5872 L:      lm-sensors@lm-sensors.org
5873 S:      Maintained
5874 F:      Documentation/hwmon/lm78
5875 F:      drivers/hwmon/lm78.c
5876
5877 LM83 HARDWARE MONITOR DRIVER
5878 M:      Jean Delvare <jdelvare@suse.de>
5879 L:      lm-sensors@lm-sensors.org
5880 S:      Maintained
5881 F:      Documentation/hwmon/lm83
5882 F:      drivers/hwmon/lm83.c
5883
5884 LM90 HARDWARE MONITOR DRIVER
5885 M:      Jean Delvare <jdelvare@suse.de>
5886 L:      lm-sensors@lm-sensors.org
5887 S:      Maintained
5888 F:      Documentation/hwmon/lm90
5889 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
5890 F:      drivers/hwmon/lm90.c
5891
5892 LM95234 HARDWARE MONITOR DRIVER
5893 M:      Guenter Roeck <linux@roeck-us.net>
5894 L:      lm-sensors@lm-sensors.org
5895 S:      Maintained
5896 F:      Documentation/hwmon/lm95234
5897 F:      drivers/hwmon/lm95234.c
5898
5899 LME2510 MEDIA DRIVER
5900 M:      Malcolm Priestley <tvboxspy@gmail.com>
5901 L:      linux-media@vger.kernel.org
5902 W:      http://linuxtv.org/
5903 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5904 S:      Maintained
5905 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
5906
5907 LOCKDEP AND LOCKSTAT
5908 M:      Peter Zijlstra <peterz@infradead.org>
5909 M:      Ingo Molnar <mingo@redhat.com>
5910 L:      linux-kernel@vger.kernel.org
5911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
5912 S:      Maintained
5913 F:      Documentation/locking/lockdep*.txt
5914 F:      Documentation/locking/lockstat.txt
5915 F:      include/linux/lockdep.h
5916 F:      kernel/locking/
5917
5918 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
5919 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
5920 L:      linux-ntfs-dev@lists.sourceforge.net
5921 W:      http://www.linux-ntfs.org/content/view/19/37/
5922 S:      Maintained
5923 F:      Documentation/ldm.txt
5924 F:      block/partitions/ldm.*
5925
5926 LogFS
5927 M:      Joern Engel <joern@logfs.org>
5928 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
5929 L:      logfs@logfs.org
5930 W:      logfs.org
5931 S:      Maintained
5932 F:      fs/logfs/
5933
5934 LPC32XX MACHINE SUPPORT
5935 M:      Roland Stigge <stigge@antcom.de>
5936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5937 S:      Maintained
5938 F:      arch/arm/mach-lpc32xx/
5939
5940 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
5941 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
5942 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
5943 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
5944 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
5945 L:      MPT-FusionLinux.pdl@avagotech.com
5946 L:      linux-scsi@vger.kernel.org
5947 W:      http://www.lsilogic.com/support
5948 S:      Supported
5949 F:      drivers/message/fusion/
5950 F:      drivers/scsi/mpt2sas/
5951 F:      drivers/scsi/mpt3sas/
5952
5953 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
5954 M:      Matthew Wilcox <matthew@wil.cx>
5955 L:      linux-scsi@vger.kernel.org
5956 S:      Maintained
5957 F:      drivers/scsi/sym53c8xx_2/
5958
5959 LTC4261 HARDWARE MONITOR DRIVER
5960 M:      Guenter Roeck <linux@roeck-us.net>
5961 L:      lm-sensors@lm-sensors.org
5962 S:      Maintained
5963 F:      Documentation/hwmon/ltc4261
5964 F:      drivers/hwmon/ltc4261.c
5965
5966 LTP (Linux Test Project)
5967 M:      Mike Frysinger <vapier@gentoo.org>
5968 M:      Cyril Hrubis <chrubis@suse.cz>
5969 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
5970 M:      Jan Stancek <jstancek@redhat.com>
5971 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
5972 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
5973 L:      ltp-list@lists.sourceforge.net (subscribers-only)
5974 W:      http://linux-test-project.github.io/
5975 T:      git git://github.com/linux-test-project/ltp.git
5976 S:      Maintained
5977
5978 M32R ARCHITECTURE
5979 W:      http://www.linux-m32r.org/
5980 S:      Orphan
5981 F:      arch/m32r/
5982
5983 M68K ARCHITECTURE
5984 M:      Geert Uytterhoeven <geert@linux-m68k.org>
5985 L:      linux-m68k@lists.linux-m68k.org
5986 W:      http://www.linux-m68k.org/
5987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
5988 S:      Maintained
5989 F:      arch/m68k/
5990 F:      drivers/zorro/
5991
5992 M68K ON APPLE MACINTOSH
5993 M:      Joshua Thompson <funaho@jurai.org>
5994 W:      http://www.mac.linux-m68k.org/
5995 L:      linux-m68k@lists.linux-m68k.org
5996 S:      Maintained
5997 F:      arch/m68k/mac/
5998
5999 M68K ON HP9000/300
6000 M:      Philip Blundell <philb@gnu.org>
6001 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6002 S:      Maintained
6003 F:      arch/m68k/hp300/
6004
6005 M88DS3103 MEDIA DRIVER
6006 M:      Antti Palosaari <crope@iki.fi>
6007 L:      linux-media@vger.kernel.org
6008 W:      http://linuxtv.org/
6009 W:      http://palosaari.fi/linux/
6010 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6011 T:      git git://linuxtv.org/anttip/media_tree.git
6012 S:      Maintained
6013 F:      drivers/media/dvb-frontends/m88ds3103*
6014
6015 M88RS2000 MEDIA DRIVER
6016 M:      Malcolm Priestley <tvboxspy@gmail.com>
6017 L:      linux-media@vger.kernel.org
6018 W:      http://linuxtv.org/
6019 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6020 S:      Maintained
6021 F:      drivers/media/dvb-frontends/m88rs2000*
6022
6023 M88TS2022 MEDIA DRIVER
6024 M:      Antti Palosaari <crope@iki.fi>
6025 L:      linux-media@vger.kernel.org
6026 W:      http://linuxtv.org/
6027 W:      http://palosaari.fi/linux/
6028 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6029 T:      git git://linuxtv.org/anttip/media_tree.git
6030 S:      Maintained
6031 F:      drivers/media/tuners/m88ts2022*
6032
6033 MA901 MASTERKIT USB FM RADIO DRIVER
6034 M:      Alexey Klimov <klimov.linux@gmail.com>
6035 L:      linux-media@vger.kernel.org
6036 T:      git git://linuxtv.org/media_tree.git
6037 S:      Maintained
6038 F:      drivers/media/radio/radio-ma901.c
6039
6040 MAC80211
6041 M:      Johannes Berg <johannes@sipsolutions.net>
6042 L:      linux-wireless@vger.kernel.org
6043 W:      http://wireless.kernel.org/
6044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6046 S:      Maintained
6047 F:      Documentation/networking/mac80211-injection.txt
6048 F:      include/net/mac80211.h
6049 F:      net/mac80211/
6050
6051 MACVLAN DRIVER
6052 M:      Patrick McHardy <kaber@trash.net>
6053 L:      netdev@vger.kernel.org
6054 S:      Maintained
6055 F:      drivers/net/macvlan.c
6056 F:      include/linux/if_macvlan.h
6057
6058 MAILBOX API
6059 M:      Jassi Brar <jassisinghbrar@gmail.com>
6060 L:      linux-kernel@vger.kernel.org
6061 S:      Maintained
6062 F:      drivers/mailbox/
6063 F:      include/linux/mailbox_client.h
6064 F:      include/linux/mailbox_controller.h
6065
6066 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6067 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6068 W:      http://www.kernel.org/doc/man-pages
6069 L:      linux-man@vger.kernel.org
6070 S:      Maintained
6071
6072 MARVELL ARMADA DRM SUPPORT
6073 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6074 S:      Maintained
6075 F:      drivers/gpu/drm/armada/
6076
6077 MARVELL 88E6352 DSA support
6078 M:      Guenter Roeck <linux@roeck-us.net>
6079 S:      Maintained
6080 F:      drivers/net/dsa/mv88e6352.c
6081
6082 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6083 M:      Mirko Lindner <mlindner@marvell.com>
6084 M:      Stephen Hemminger <stephen@networkplumber.org>
6085 L:      netdev@vger.kernel.org
6086 S:      Maintained
6087 F:      drivers/net/ethernet/marvell/sk*
6088
6089 MARVELL LIBERTAS WIRELESS DRIVER
6090 L:      libertas-dev@lists.infradead.org
6091 S:      Orphan
6092 F:      drivers/net/wireless/libertas/
6093
6094 MARVELL MV643XX ETHERNET DRIVER
6095 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6096 L:      netdev@vger.kernel.org
6097 S:      Maintained
6098 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6099 F:      include/linux/mv643xx.h
6100
6101 MARVELL MVNETA ETHERNET DRIVER
6102 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6103 L:      netdev@vger.kernel.org
6104 S:      Maintained
6105 F:      drivers/net/ethernet/marvell/mvneta.*
6106
6107 MARVELL MWIFIEX WIRELESS DRIVER
6108 M:      Amitkumar Karwar <akarwar@marvell.com>
6109 M:      Avinash Patil <patila@marvell.com>
6110 L:      linux-wireless@vger.kernel.org
6111 S:      Maintained
6112 F:      drivers/net/wireless/mwifiex/
6113
6114 MARVELL MWL8K WIRELESS DRIVER
6115 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6116 L:      linux-wireless@vger.kernel.org
6117 S:      Odd Fixes
6118 F:      drivers/net/wireless/mwl8k.c
6119
6120 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6121 M:      Nicolas Pitre <nico@fluxnic.net>
6122 S:      Odd Fixes
6123 F:      drivers/mmc/host/mvsdio.*
6124
6125 MATROX FRAMEBUFFER DRIVER
6126 L:      linux-fbdev@vger.kernel.org
6127 S:      Orphan
6128 F:      drivers/video/fbdev/matrox/matroxfb_*
6129 F:      include/uapi/linux/matroxfb.h
6130
6131 MAX16065 HARDWARE MONITOR DRIVER
6132 M:      Guenter Roeck <linux@roeck-us.net>
6133 L:      lm-sensors@lm-sensors.org
6134 S:      Maintained
6135 F:      Documentation/hwmon/max16065
6136 F:      drivers/hwmon/max16065.c
6137
6138 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6139 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6140 L:      lm-sensors@lm-sensors.org
6141 S:      Maintained
6142 F:      Documentation/hwmon/max6650
6143 F:      drivers/hwmon/max6650.c
6144
6145 MAX6697 HARDWARE MONITOR DRIVER
6146 M:      Guenter Roeck <linux@roeck-us.net>
6147 L:      lm-sensors@lm-sensors.org
6148 S:      Maintained
6149 F:      Documentation/hwmon/max6697
6150 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6151 F:      drivers/hwmon/max6697.c
6152 F:      include/linux/platform_data/max6697.h
6153
6154 MAXIRADIO FM RADIO RECEIVER DRIVER
6155 M:      Hans Verkuil <hverkuil@xs4all.nl>
6156 L:      linux-media@vger.kernel.org
6157 T:      git git://linuxtv.org/media_tree.git
6158 W:      http://linuxtv.org
6159 S:      Maintained
6160 F:      drivers/media/radio/radio-maxiradio*
6161
6162 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6163 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6164 P:      LinuxTV.org Project
6165 L:      linux-media@vger.kernel.org
6166 W:      http://linuxtv.org
6167 Q:      http://patchwork.kernel.org/project/linux-media/list/
6168 T:      git git://linuxtv.org/media_tree.git
6169 S:      Maintained
6170 F:      Documentation/dvb/
6171 F:      Documentation/video4linux/
6172 F:      Documentation/DocBook/media/
6173 F:      drivers/media/
6174 F:      drivers/staging/media/
6175 F:      include/media/
6176 F:      include/uapi/linux/dvb/
6177 F:      include/uapi/linux/videodev2.h
6178 F:      include/uapi/linux/media.h
6179 F:      include/uapi/linux/v4l2-*
6180 F:      include/uapi/linux/meye.h
6181 F:      include/uapi/linux/ivtv*
6182 F:      include/uapi/linux/uvcvideo.h
6183
6184 MEDIAVISION PRO MOVIE STUDIO DRIVER
6185 M:      Hans Verkuil <hverkuil@xs4all.nl>
6186 L:      linux-media@vger.kernel.org
6187 T:      git git://linuxtv.org/media_tree.git
6188 W:      http://linuxtv.org
6189 S:      Odd Fixes
6190 F:      drivers/media/parport/pms*
6191
6192 MEGARAID SCSI/SAS DRIVERS
6193 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6194 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6195 M:      Uday Lingala <uday.lingala@avagotech.com>
6196 L:      megaraidlinux.pdl@avagotech.com
6197 L:      linux-scsi@vger.kernel.org
6198 W:      http://www.lsi.com
6199 S:      Maintained
6200 F:      Documentation/scsi/megaraid.txt
6201 F:      drivers/scsi/megaraid.*
6202 F:      drivers/scsi/megaraid/
6203
6204 MELLANOX ETHERNET DRIVER (mlx4_en)
6205 M:      Amir Vadai <amirv@mellanox.com>
6206 L:      netdev@vger.kernel.org
6207 S:      Supported
6208 W:      http://www.mellanox.com
6209 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6210 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6211
6212 MEMORY MANAGEMENT
6213 L:      linux-mm@kvack.org
6214 W:      http://www.linux-mm.org
6215 S:      Maintained
6216 F:      include/linux/mm.h
6217 F:      include/linux/gfp.h
6218 F:      include/linux/mmzone.h
6219 F:      include/linux/memory_hotplug.h
6220 F:      include/linux/vmalloc.h
6221 F:      mm/
6222
6223 MEMORY TECHNOLOGY DEVICES (MTD)
6224 M:      David Woodhouse <dwmw2@infradead.org>
6225 M:      Brian Norris <computersforpeace@gmail.com>
6226 L:      linux-mtd@lists.infradead.org
6227 W:      http://www.linux-mtd.infradead.org/
6228 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6229 T:      git git://git.infradead.org/linux-mtd.git
6230 T:      git git://git.infradead.org/l2-mtd.git
6231 S:      Maintained
6232 F:      drivers/mtd/
6233 F:      include/linux/mtd/
6234 F:      include/uapi/mtd/
6235
6236 MEN A21 WATCHDOG DRIVER
6237 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
6238 L:      linux-watchdog@vger.kernel.org
6239 S:      Supported
6240 F:      drivers/watchdog/mena21_wdt.c
6241
6242 MEN CHAMELEON BUS (mcb)
6243 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
6244 S:      Supported
6245 F:      drivers/mcb/
6246 F:      include/linux/mcb.h
6247
6248 MEN F21BMC (Board Management Controller)
6249 M:      Andreas Werner <andreas.werner@men.de>
6250 S:      Supported
6251 F:      drivers/mfd/menf21bmc.c
6252 F:      drivers/watchdog/menf21bmc_wdt.c
6253 F:      drivers/leds/leds-menf21bmc.c
6254 F:      drivers/hwmon/menf21bmc_hwmon.c
6255 F:      Documentation/hwmon/menf21bmc
6256
6257 METAG ARCHITECTURE
6258 M:      James Hogan <james.hogan@imgtec.com>
6259 L:      linux-metag@vger.kernel.org
6260 S:      Supported
6261 F:      arch/metag/
6262 F:      Documentation/metag/
6263 F:      Documentation/devicetree/bindings/metag/
6264 F:      drivers/clocksource/metag_generic.c
6265 F:      drivers/irqchip/irq-metag.c
6266 F:      drivers/irqchip/irq-metag-ext.c
6267 F:      drivers/tty/metag_da.c
6268
6269 MICROBLAZE ARCHITECTURE
6270 M:      Michal Simek <monstr@monstr.eu>
6271 W:      http://www.monstr.eu/fdt/
6272 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6273 S:      Supported
6274 F:      arch/microblaze/
6275
6276 MICROTEK X6 SCANNER
6277 M:      Oliver Neukum <oliver@neukum.org>
6278 S:      Maintained
6279 F:      drivers/usb/image/microtek.*
6280
6281 MIPS
6282 M:      Ralf Baechle <ralf@linux-mips.org>
6283 L:      linux-mips@linux-mips.org
6284 W:      http://www.linux-mips.org/
6285 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6286 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6287 S:      Supported
6288 F:      Documentation/mips/
6289 F:      arch/mips/
6290
6291 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6292 M:      Hans Verkuil <hverkuil@xs4all.nl>
6293 L:      linux-media@vger.kernel.org
6294 T:      git git://linuxtv.org/media_tree.git
6295 W:      http://linuxtv.org
6296 S:      Odd Fixes
6297 F:      drivers/media/radio/radio-miropcm20*
6298
6299 Mellanox MLX5 core VPI driver
6300 M:      Eli Cohen <eli@mellanox.com>
6301 L:      netdev@vger.kernel.org
6302 L:      linux-rdma@vger.kernel.org
6303 W:      http://www.mellanox.com
6304 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6305 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6306 T:      git git://openfabrics.org/~eli/connect-ib.git
6307 S:      Supported
6308 F:      drivers/net/ethernet/mellanox/mlx5/core/
6309 F:      include/linux/mlx5/
6310
6311 Mellanox MLX5 IB driver
6312 M:      Eli Cohen <eli@mellanox.com>
6313 L:      linux-rdma@vger.kernel.org
6314 W:      http://www.mellanox.com
6315 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6316 T:      git git://openfabrics.org/~eli/connect-ib.git
6317 S:      Supported
6318 F:      include/linux/mlx5/
6319 F:      drivers/infiniband/hw/mlx5/
6320
6321 MN88472 MEDIA DRIVER
6322 M:      Antti Palosaari <crope@iki.fi>
6323 L:      linux-media@vger.kernel.org
6324 W:      http://linuxtv.org/
6325 W:      http://palosaari.fi/linux/
6326 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6327 T:      git git://linuxtv.org/anttip/media_tree.git
6328 S:      Maintained
6329 F:      drivers/staging/media/mn88472/
6330 F:      drivers/media/dvb-frontends/mn88472.h
6331
6332 MN88473 MEDIA DRIVER
6333 M:      Antti Palosaari <crope@iki.fi>
6334 L:      linux-media@vger.kernel.org
6335 W:      http://linuxtv.org/
6336 W:      http://palosaari.fi/linux/
6337 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6338 T:      git git://linuxtv.org/anttip/media_tree.git
6339 S:      Maintained
6340 F:      drivers/staging/media/mn88473/
6341 F:      drivers/media/dvb-frontends/mn88473.h
6342
6343 MODULE SUPPORT
6344 M:      Rusty Russell <rusty@rustcorp.com.au>
6345 S:      Maintained
6346 F:      include/linux/module.h
6347 F:      kernel/module.c
6348
6349 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6350 W:      http://popies.net/meye/
6351 S:      Orphan
6352 F:      Documentation/video4linux/meye.txt
6353 F:      drivers/media/pci/meye/
6354 F:      include/uapi/linux/meye.h
6355
6356 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6357 M:      Jiri Slaby <jirislaby@gmail.com>
6358 S:      Maintained
6359 F:      Documentation/serial/moxa-smartio
6360 F:      drivers/tty/mxser.*
6361
6362 MR800 AVERMEDIA USB FM RADIO DRIVER
6363 M:      Alexey Klimov <klimov.linux@gmail.com>
6364 L:      linux-media@vger.kernel.org
6365 T:      git git://linuxtv.org/media_tree.git
6366 S:      Maintained
6367 F:      drivers/media/radio/radio-mr800.c
6368
6369 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6370 M:      Alan Ott <alan@signal11.us>
6371 L:      linux-wpan@vger.kernel.org
6372 S:      Maintained
6373 F:      drivers/net/ieee802154/mrf24j40.c
6374
6375 MSI LAPTOP SUPPORT
6376 M:      "Lee, Chun-Yi" <jlee@suse.com>
6377 L:      platform-driver-x86@vger.kernel.org
6378 S:      Maintained
6379 F:      drivers/platform/x86/msi-laptop.c
6380
6381 MSI WMI SUPPORT
6382 M:      Anisse Astier <anisse@astier.eu>
6383 L:      platform-driver-x86@vger.kernel.org
6384 S:      Supported
6385 F:      drivers/platform/x86/msi-wmi.c
6386
6387 MSI001 MEDIA DRIVER
6388 M:      Antti Palosaari <crope@iki.fi>
6389 L:      linux-media@vger.kernel.org
6390 W:      http://linuxtv.org/
6391 W:      http://palosaari.fi/linux/
6392 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6393 T:      git git://linuxtv.org/anttip/media_tree.git
6394 S:      Maintained
6395 F:      drivers/media/tuners/msi001*
6396
6397 MSI2500 MEDIA DRIVER
6398 M:      Antti Palosaari <crope@iki.fi>
6399 L:      linux-media@vger.kernel.org
6400 W:      http://linuxtv.org/
6401 W:      http://palosaari.fi/linux/
6402 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6403 T:      git git://linuxtv.org/anttip/media_tree.git
6404 S:      Maintained
6405 F:      drivers/media/usb/msi2500/
6406
6407 MT9M032 APTINA SENSOR DRIVER
6408 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6409 L:      linux-media@vger.kernel.org
6410 T:      git git://linuxtv.org/media_tree.git
6411 S:      Maintained
6412 F:      drivers/media/i2c/mt9m032.c
6413 F:      include/media/mt9m032.h
6414
6415 MT9P031 APTINA CAMERA SENSOR
6416 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6417 L:      linux-media@vger.kernel.org
6418 T:      git git://linuxtv.org/media_tree.git
6419 S:      Maintained
6420 F:      drivers/media/i2c/mt9p031.c
6421 F:      include/media/mt9p031.h
6422
6423 MT9T001 APTINA CAMERA SENSOR
6424 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6425 L:      linux-media@vger.kernel.org
6426 T:      git git://linuxtv.org/media_tree.git
6427 S:      Maintained
6428 F:      drivers/media/i2c/mt9t001.c
6429 F:      include/media/mt9t001.h
6430
6431 MT9V032 APTINA CAMERA SENSOR
6432 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6433 L:      linux-media@vger.kernel.org
6434 T:      git git://linuxtv.org/media_tree.git
6435 S:      Maintained
6436 F:      drivers/media/i2c/mt9v032.c
6437 F:      include/media/mt9v032.h
6438
6439 MULTIFUNCTION DEVICES (MFD)
6440 M:      Samuel Ortiz <sameo@linux.intel.com>
6441 M:      Lee Jones <lee.jones@linaro.org>
6442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
6443 S:      Supported
6444 F:      drivers/mfd/
6445 F:      include/linux/mfd/
6446
6447 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
6448 M:      Chris Ball <chris@printf.net>
6449 M:      Ulf Hansson <ulf.hansson@linaro.org>
6450 L:      linux-mmc@vger.kernel.org
6451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6452 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
6453 S:      Maintained
6454 F:      drivers/mmc/
6455 F:      include/linux/mmc/
6456 F:      include/uapi/linux/mmc/
6457
6458 MULTIMEDIA CARD (MMC) ETC. OVER SPI
6459 S:      Orphan
6460 F:      drivers/mmc/host/mmc_spi.c
6461 F:      include/linux/spi/mmc_spi.h
6462
6463 MULTISOUND SOUND DRIVER
6464 M:      Andrew Veliath <andrewtv@usa.net>
6465 S:      Maintained
6466 F:      Documentation/sound/oss/MultiSound
6467 F:      sound/oss/msnd*
6468
6469 MULTITECH MULTIPORT CARD (ISICOM)
6470 S:      Orphan
6471 F:      drivers/tty/isicom.c
6472 F:      include/linux/isicom.h
6473
6474 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
6475 M:      Felipe Balbi <balbi@ti.com>
6476 L:      linux-usb@vger.kernel.org
6477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6478 S:      Maintained
6479 F:      drivers/usb/musb/
6480
6481 MXL5007T MEDIA DRIVER
6482 M:      Michael Krufky <mkrufky@linuxtv.org>
6483 L:      linux-media@vger.kernel.org
6484 W:      http://linuxtv.org/
6485 W:      http://github.com/mkrufky
6486 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6487 T:      git git://linuxtv.org/mkrufky/tuners.git
6488 S:      Maintained
6489 F:      drivers/media/tuners/mxl5007t.*
6490
6491 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
6492 M:      Hyong-Youb Kim <hykim@myri.com>
6493 L:      netdev@vger.kernel.org
6494 W:      https://www.myricom.com/support/downloads/myri10ge.html
6495 S:      Supported
6496 F:      drivers/net/ethernet/myricom/myri10ge/
6497
6498 NATSEMI ETHERNET DRIVER (DP8381x)
6499 S:      Orphan
6500 F:      drivers/net/ethernet/natsemi/natsemi.c
6501
6502 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
6503 M:      Daniel Mack <zonque@gmail.com>
6504 S:      Maintained
6505 L:      alsa-devel@alsa-project.org
6506 W:      http://www.native-instruments.com
6507 F:      sound/usb/caiaq/
6508
6509 NCP FILESYSTEM
6510 M:      Petr Vandrovec <petr@vandrovec.name>
6511 S:      Odd Fixes
6512 F:      fs/ncpfs/
6513
6514 NCR 5380 SCSI DRIVERS
6515 M:      Finn Thain <fthain@telegraphics.com.au>
6516 M:      Michael Schmitz <schmitzmic@gmail.com>
6517 L:      linux-scsi@vger.kernel.org
6518 S:      Maintained
6519 F:      Documentation/scsi/g_NCR5380.txt
6520 F:      drivers/scsi/NCR5380.*
6521 F:      drivers/scsi/arm/cumana_1.c
6522 F:      drivers/scsi/arm/oak.c
6523 F:      drivers/scsi/atari_NCR5380.c
6524 F:      drivers/scsi/atari_scsi.*
6525 F:      drivers/scsi/dmx3191d.c
6526 F:      drivers/scsi/dtc.*
6527 F:      drivers/scsi/g_NCR5380.*
6528 F:      drivers/scsi/g_NCR5380_mmio.c
6529 F:      drivers/scsi/mac_scsi.*
6530 F:      drivers/scsi/pas16.*
6531 F:      drivers/scsi/sun3_scsi.*
6532 F:      drivers/scsi/sun3_scsi_vme.c
6533 F:      drivers/scsi/t128.*
6534
6535 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
6536 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6537 L:      linux-scsi@vger.kernel.org
6538 S:      Maintained
6539 F:      drivers/scsi/NCR_D700.*
6540
6541 NCT6775 HARDWARE MONITOR DRIVER
6542 M:      Guenter Roeck <linux@roeck-us.net>
6543 L:      lm-sensors@lm-sensors.org
6544 S:      Maintained
6545 F:      Documentation/hwmon/nct6775
6546 F:      drivers/hwmon/nct6775.c
6547
6548 NETEFFECT IWARP RNIC DRIVER (IW_NES)
6549 M:      Faisal Latif <faisal.latif@intel.com>
6550 L:      linux-rdma@vger.kernel.org
6551 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
6552 S:      Supported
6553 F:      drivers/infiniband/hw/nes/
6554
6555 NETEM NETWORK EMULATOR
6556 M:      Stephen Hemminger <stephen@networkplumber.org>
6557 L:      netem@lists.linux-foundation.org
6558 S:      Maintained
6559 F:      net/sched/sch_netem.c
6560
6561 NETERION 10GbE DRIVERS (s2io/vxge)
6562 M:      Jon Mason <jdmason@kudzu.us>
6563 L:      netdev@vger.kernel.org
6564 S:      Supported
6565 F:      Documentation/networking/s2io.txt
6566 F:      Documentation/networking/vxge.txt
6567 F:      drivers/net/ethernet/neterion/
6568
6569 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
6570 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6571 M:      Patrick McHardy <kaber@trash.net>
6572 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
6573 L:      netfilter-devel@vger.kernel.org
6574 L:      coreteam@netfilter.org
6575 W:      http://www.netfilter.org/
6576 W:      http://www.iptables.org/
6577 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
6578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
6579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
6580 S:      Supported
6581 F:      include/linux/netfilter*
6582 F:      include/linux/netfilter/
6583 F:      include/net/netfilter/
6584 F:      include/uapi/linux/netfilter*
6585 F:      include/uapi/linux/netfilter/
6586 F:      net/*/netfilter.c
6587 F:      net/*/netfilter/
6588 F:      net/netfilter/
6589
6590 NETLABEL
6591 M:      Paul Moore <paul@paul-moore.com>
6592 W:      http://netlabel.sf.net
6593 L:      netdev@vger.kernel.org
6594 S:      Maintained
6595 F:      Documentation/netlabel/
6596 F:      include/net/netlabel.h
6597 F:      net/netlabel/
6598
6599 NETROM NETWORK LAYER
6600 M:      Ralf Baechle <ralf@linux-mips.org>
6601 L:      linux-hams@vger.kernel.org
6602 W:      http://www.linux-ax25.org/
6603 S:      Maintained
6604 F:      include/net/netrom.h
6605 F:      include/uapi/linux/netrom.h
6606 F:      net/netrom/
6607
6608 NETWORK BLOCK DEVICE (NBD)
6609 M:      Paul Clements <Paul.Clements@steeleye.com>
6610 S:      Maintained
6611 L:      nbd-general@lists.sourceforge.net
6612 F:      Documentation/blockdev/nbd.txt
6613 F:      drivers/block/nbd.c
6614 F:      include/linux/nbd.h
6615 F:      include/uapi/linux/nbd.h
6616
6617 NETWORK DROP MONITOR
6618 M:      Neil Horman <nhorman@tuxdriver.com>
6619 L:      netdev@vger.kernel.org
6620 S:      Maintained
6621 W:      https://fedorahosted.org/dropwatch/
6622 F:      net/core/drop_monitor.c
6623
6624 NETWORKING [GENERAL]
6625 M:      "David S. Miller" <davem@davemloft.net>
6626 L:      netdev@vger.kernel.org
6627 W:      http://www.linuxfoundation.org/en/Net
6628 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6631 S:      Maintained
6632 F:      net/
6633 F:      include/net/
6634 F:      include/linux/in.h
6635 F:      include/linux/net.h
6636 F:      include/linux/netdevice.h
6637 F:      include/uapi/linux/in.h
6638 F:      include/uapi/linux/net.h
6639 F:      include/uapi/linux/netdevice.h
6640 F:      tools/net/
6641 F:      tools/testing/selftests/net/
6642 F:      lib/random32.c
6643 F:      lib/test_bpf.c
6644
6645 NETWORKING [IPv4/IPv6]
6646 M:      "David S. Miller" <davem@davemloft.net>
6647 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
6648 M:      James Morris <jmorris@namei.org>
6649 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
6650 M:      Patrick McHardy <kaber@trash.net>
6651 L:      netdev@vger.kernel.org
6652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6653 S:      Maintained
6654 F:      net/ipv4/
6655 F:      net/ipv6/
6656 F:      include/net/ip*
6657 F:      arch/x86/net/*
6658
6659 NETWORKING [IPSEC]
6660 M:      Steffen Klassert <steffen.klassert@secunet.com>
6661 M:      Herbert Xu <herbert@gondor.apana.org.au>
6662 M:      "David S. Miller" <davem@davemloft.net>
6663 L:      netdev@vger.kernel.org
6664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
6665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
6666 S:      Maintained
6667 F:      net/core/flow.c
6668 F:      net/xfrm/
6669 F:      net/key/
6670 F:      net/ipv4/xfrm*
6671 F:      net/ipv4/esp4.c
6672 F:      net/ipv4/ah4.c
6673 F:      net/ipv4/ipcomp.c
6674 F:      net/ipv4/ip_vti.c
6675 F:      net/ipv6/xfrm*
6676 F:      net/ipv6/esp6.c
6677 F:      net/ipv6/ah6.c
6678 F:      net/ipv6/ipcomp6.c
6679 F:      net/ipv6/ip6_vti.c
6680 F:      include/uapi/linux/xfrm.h
6681 F:      include/net/xfrm.h
6682
6683 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
6684 M:      Paul Moore <paul@paul-moore.com>
6685 L:      netdev@vger.kernel.org
6686 S:      Maintained
6687
6688 NETWORKING [WIRELESS]
6689 L:      linux-wireless@vger.kernel.org
6690 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
6691
6692 NETWORKING DRIVERS
6693 L:      netdev@vger.kernel.org
6694 W:      http://www.linuxfoundation.org/en/Net
6695 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6698 S:      Odd Fixes
6699 F:      drivers/net/
6700 F:      include/linux/if_*
6701 F:      include/linux/netdevice.h
6702 F:      include/linux/arcdevice.h
6703 F:      include/linux/etherdevice.h
6704 F:      include/linux/fcdevice.h
6705 F:      include/linux/fddidevice.h
6706 F:      include/linux/hippidevice.h
6707 F:      include/linux/inetdevice.h
6708 F:      include/uapi/linux/if_*
6709 F:      include/uapi/linux/netdevice.h
6710
6711 NETWORKING DRIVERS (WIRELESS)
6712 M:      Kalle Valo <kvalo@codeaurora.org>
6713 L:      linux-wireless@vger.kernel.org
6714 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
6715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
6716 S:      Maintained
6717 F:      drivers/net/wireless/
6718
6719 NETXEN (1/10) GbE SUPPORT
6720 M:      Manish Chopra <manish.chopra@qlogic.com>
6721 M:      Sony Chacko <sony.chacko@qlogic.com>
6722 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
6723 L:      netdev@vger.kernel.org
6724 W:      http://www.qlogic.com
6725 S:      Supported
6726 F:      drivers/net/ethernet/qlogic/netxen/
6727
6728 NFC SUBSYSTEM
6729 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6730 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
6731 M:      Samuel Ortiz <sameo@linux.intel.com>
6732 L:      linux-wireless@vger.kernel.org
6733 L:      linux-nfc@lists.01.org (subscribers-only)
6734 S:      Supported
6735 F:      net/nfc/
6736 F:      include/net/nfc/
6737 F:      include/uapi/linux/nfc.h
6738 F:      drivers/nfc/
6739 F:      include/linux/platform_data/pn544.h
6740 F:      Documentation/devicetree/bindings/net/nfc/
6741
6742 NFS, SUNRPC, AND LOCKD CLIENTS
6743 M:      Trond Myklebust <trond.myklebust@primarydata.com>
6744 L:      linux-nfs@vger.kernel.org
6745 W:      http://client.linux-nfs.org
6746 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
6747 S:      Maintained
6748 F:      fs/lockd/
6749 F:      fs/nfs/
6750 F:      fs/nfs_common/
6751 F:      net/sunrpc/
6752 F:      include/linux/lockd/
6753 F:      include/linux/nfs*
6754 F:      include/linux/sunrpc/
6755 F:      include/uapi/linux/nfs*
6756 F:      include/uapi/linux/sunrpc/
6757
6758 NILFS2 FILESYSTEM
6759 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
6760 L:      linux-nilfs@vger.kernel.org
6761 W:      http://nilfs.sourceforge.net/
6762 T:      git git://github.com/konis/nilfs2.git
6763 S:      Supported
6764 F:      Documentation/filesystems/nilfs2.txt
6765 F:      fs/nilfs2/
6766 F:      include/linux/nilfs2_fs.h
6767
6768 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
6769 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6770 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6771 S:      Maintained
6772 F:      Documentation/scsi/NinjaSCSI.txt
6773 F:      drivers/scsi/pcmcia/nsp_*
6774
6775 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
6776 M:      GOTO Masanori <gotom@debian.or.jp>
6777 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6778 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6779 S:      Maintained
6780 F:      Documentation/scsi/NinjaSCSI.txt
6781 F:      drivers/scsi/nsp32*
6782
6783 NIOS2 ARCHITECTURE
6784 M:      Ley Foon Tan <lftan@altera.com>
6785 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
6786 T:      git git://git.rocketboards.org/linux-socfpga.git
6787 S:      Maintained
6788 F:      arch/nios2/
6789
6790 NTB DRIVER
6791 M:      Jon Mason <jdmason@kudzu.us>
6792 M:      Dave Jiang <dave.jiang@intel.com>
6793 S:      Supported
6794 W:      https://github.com/jonmason/ntb/wiki
6795 T:      git git://github.com/jonmason/ntb.git
6796 F:      drivers/ntb/
6797 F:      drivers/net/ntb_netdev.c
6798 F:      include/linux/ntb.h
6799
6800 NTFS FILESYSTEM
6801 M:      Anton Altaparmakov <anton@tuxera.com>
6802 L:      linux-ntfs-dev@lists.sourceforge.net
6803 W:      http://www.tuxera.com/
6804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
6805 S:      Supported
6806 F:      Documentation/filesystems/ntfs.txt
6807 F:      fs/ntfs/
6808
6809 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
6810 M:      Antonino Daplas <adaplas@gmail.com>
6811 L:      linux-fbdev@vger.kernel.org
6812 S:      Maintained
6813 F:      drivers/video/fbdev/riva/
6814 F:      drivers/video/fbdev/nvidia/
6815
6816 NVM EXPRESS DRIVER
6817 M:      Matthew Wilcox <willy@linux.intel.com>
6818 L:      linux-nvme@lists.infradead.org
6819 T:      git git://git.infradead.org/users/willy/linux-nvme.git
6820 S:      Supported
6821 F:      drivers/block/nvme*
6822 F:      include/linux/nvme.h
6823
6824 NXP TDA998X DRM DRIVER
6825 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6826 S:      Supported
6827 F:      drivers/gpu/drm/i2c/tda998x_drv.c
6828 F:      include/drm/i2c/tda998x.h
6829
6830 NXP TFA9879 DRIVER
6831 M:      Peter Rosin <peda@axentia.se>
6832 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6833 S:      Maintained
6834 F:      sound/soc/codecs/tfa9879*
6835
6836 OMAP SUPPORT
6837 M:      Tony Lindgren <tony@atomide.com>
6838 L:      linux-omap@vger.kernel.org
6839 W:      http://www.muru.com/linux/omap/
6840 W:      http://linux.omap.com/
6841 Q:      http://patchwork.kernel.org/project/linux-omap/list/
6842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
6843 S:      Maintained
6844 F:      arch/arm/*omap*/
6845 F:      drivers/i2c/busses/i2c-omap.c
6846 F:      drivers/irqchip/irq-omap-intc.c
6847 F:      drivers/mfd/*omap*.c
6848 F:      drivers/mfd/menelaus.c
6849 F:      drivers/mfd/palmas.c
6850 F:      drivers/mfd/tps65217.c
6851 F:      drivers/mfd/tps65218.c
6852 F:      drivers/mfd/tps65910.c
6853 F:      drivers/mfd/twl-core.[ch]
6854 F:      drivers/mfd/twl4030*.c
6855 F:      drivers/mfd/twl6030*.c
6856 F:      drivers/mfd/twl6040*.c
6857 F:      drivers/regulator/palmas-regulator*.c
6858 F:      drivers/regulator/pbias-regulator.c
6859 F:      drivers/regulator/tps65217-regulator.c
6860 F:      drivers/regulator/tps65218-regulator.c
6861 F:      drivers/regulator/tps65910-regulator.c
6862 F:      drivers/regulator/twl-regulator.c
6863 F:      include/linux/i2c-omap.h
6864
6865 OMAP DEVICE TREE SUPPORT
6866 M:      Benoît Cousson <bcousson@baylibre.com>
6867 M:      Tony Lindgren <tony@atomide.com>
6868 L:      linux-omap@vger.kernel.org
6869 L:      devicetree@vger.kernel.org
6870 S:      Maintained
6871 F:      arch/arm/boot/dts/*omap*
6872 F:      arch/arm/boot/dts/*am3*
6873 F:      arch/arm/boot/dts/*am4*
6874 F:      arch/arm/boot/dts/*am5*
6875 F:      arch/arm/boot/dts/*dra7*
6876
6877 OMAP CLOCK FRAMEWORK SUPPORT
6878 M:      Paul Walmsley <paul@pwsan.com>
6879 L:      linux-omap@vger.kernel.org
6880 S:      Maintained
6881 F:      arch/arm/*omap*/*clock*
6882
6883 OMAP POWER MANAGEMENT SUPPORT
6884 M:      Kevin Hilman <khilman@deeprootsystems.com>
6885 L:      linux-omap@vger.kernel.org
6886 S:      Maintained
6887 F:      arch/arm/*omap*/*pm*
6888 F:      drivers/cpufreq/omap-cpufreq.c
6889
6890 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
6891 M:      Rajendra Nayak <rnayak@ti.com>
6892 M:      Paul Walmsley <paul@pwsan.com>
6893 L:      linux-omap@vger.kernel.org
6894 S:      Maintained
6895 F:      arch/arm/mach-omap2/prm*
6896
6897 OMAP AUDIO SUPPORT
6898 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
6899 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
6900 L:      alsa-devel@alsa-project.org (subscribers-only)
6901 L:      linux-omap@vger.kernel.org
6902 S:      Maintained
6903 F:      sound/soc/omap/
6904
6905 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
6906 M:      Roger Quadros <rogerq@ti.com>
6907 M:      Tony Lindgren <tony@atomide.com>
6908 L:      linux-omap@vger.kernel.org
6909 S:      Maintained
6910 F:      drivers/memory/omap-gpmc.c
6911 F:      arch/arm/mach-omap2/*gpmc*
6912
6913 OMAP FRAMEBUFFER SUPPORT
6914 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
6915 L:      linux-fbdev@vger.kernel.org
6916 L:      linux-omap@vger.kernel.org
6917 S:      Maintained
6918 F:      drivers/video/fbdev/omap/
6919
6920 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
6921 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
6922 L:      linux-omap@vger.kernel.org
6923 L:      linux-fbdev@vger.kernel.org
6924 S:      Maintained
6925 F:      drivers/video/fbdev/omap2/
6926 F:      Documentation/arm/OMAP/DSS
6927
6928 OMAP HARDWARE SPINLOCK SUPPORT
6929 M:      Ohad Ben-Cohen <ohad@wizery.com>
6930 L:      linux-omap@vger.kernel.org
6931 S:      Maintained
6932 F:      drivers/hwspinlock/omap_hwspinlock.c
6933 F:      arch/arm/mach-omap2/hwspinlock.c
6934
6935 OMAP MMC SUPPORT
6936 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
6937 L:      linux-omap@vger.kernel.org
6938 S:      Maintained
6939 F:      drivers/mmc/host/omap.c
6940
6941 OMAP HS MMC SUPPORT
6942 L:      linux-mmc@vger.kernel.org
6943 L:      linux-omap@vger.kernel.org
6944 S:      Orphan
6945 F:      drivers/mmc/host/omap_hsmmc.c
6946
6947 OMAP RANDOM NUMBER GENERATOR SUPPORT
6948 M:      Deepak Saxena <dsaxena@plexity.net>
6949 S:      Maintained
6950 F:      drivers/char/hw_random/omap-rng.c
6951
6952 OMAP HWMOD SUPPORT
6953 M:      Benoît Cousson <bcousson@baylibre.com>
6954 M:      Paul Walmsley <paul@pwsan.com>
6955 L:      linux-omap@vger.kernel.org
6956 S:      Maintained
6957 F:      arch/arm/mach-omap2/omap_hwmod.*
6958
6959 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
6960 M:      Benoît Cousson <bcousson@baylibre.com>
6961 L:      linux-omap@vger.kernel.org
6962 S:      Maintained
6963 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
6964
6965 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
6966 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6967 L:      linux-media@vger.kernel.org
6968 S:      Maintained
6969 F:      drivers/media/platform/omap3isp/
6970 F:      drivers/staging/media/omap4iss/
6971
6972 OMAP USB SUPPORT
6973 M:      Felipe Balbi <balbi@ti.com>
6974 L:      linux-usb@vger.kernel.org
6975 L:      linux-omap@vger.kernel.org
6976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6977 S:      Maintained
6978 F:      drivers/usb/*/*omap*
6979 F:      arch/arm/*omap*/usb*
6980
6981 OMAP GPIO DRIVER
6982 M:      Javier Martinez Canillas <javier@dowhile0.org>
6983 M:      Santosh Shilimkar <ssantosh@kernel.org>
6984 M:      Kevin Hilman <khilman@deeprootsystems.com>
6985 L:      linux-omap@vger.kernel.org
6986 S:      Maintained
6987 F:      drivers/gpio/gpio-omap.c
6988
6989 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
6990 M:      Mark Jackson <mpfj@newflow.co.uk>
6991 L:      linux-omap@vger.kernel.org
6992 S:      Maintained
6993 F:      arch/arm/boot/dts/am335x-nano.dts
6994
6995 OMFS FILESYSTEM
6996 M:      Bob Copeland <me@bobcopeland.com>
6997 L:      linux-karma-devel@lists.sourceforge.net
6998 S:      Maintained
6999 F:      Documentation/filesystems/omfs.txt
7000 F:      fs/omfs/
7001
7002 OMNIKEY CARDMAN 4000 DRIVER
7003 M:      Harald Welte <laforge@gnumonks.org>
7004 S:      Maintained
7005 F:      drivers/char/pcmcia/cm4000_cs.c
7006 F:      include/linux/cm4000_cs.h
7007 F:      include/uapi/linux/cm4000_cs.h
7008
7009 OMNIKEY CARDMAN 4040 DRIVER
7010 M:      Harald Welte <laforge@gnumonks.org>
7011 S:      Maintained
7012 F:      drivers/char/pcmcia/cm4040_cs.*
7013
7014 OMNIVISION OV7670 SENSOR DRIVER
7015 M:      Jonathan Corbet <corbet@lwn.net>
7016 L:      linux-media@vger.kernel.org
7017 T:      git git://linuxtv.org/media_tree.git
7018 S:      Maintained
7019 F:      drivers/media/i2c/ov7670.c
7020
7021 ONENAND FLASH DRIVER
7022 M:      Kyungmin Park <kyungmin.park@samsung.com>
7023 L:      linux-mtd@lists.infradead.org
7024 S:      Maintained
7025 F:      drivers/mtd/onenand/
7026 F:      include/linux/mtd/onenand*.h
7027
7028 ONSTREAM SCSI TAPE DRIVER
7029 M:      Willem Riede <osst@riede.org>
7030 L:      osst-users@lists.sourceforge.net
7031 L:      linux-scsi@vger.kernel.org
7032 S:      Maintained
7033 F:      Documentation/scsi/osst.txt
7034 F:      drivers/scsi/osst.*
7035 F:      drivers/scsi/osst_*.h
7036 F:      drivers/scsi/st.h
7037
7038 OPENCORES I2C BUS DRIVER
7039 M:      Peter Korsgaard <jacmet@sunsite.dk>
7040 L:      linux-i2c@vger.kernel.org
7041 S:      Maintained
7042 F:      Documentation/i2c/busses/i2c-ocores
7043 F:      drivers/i2c/busses/i2c-ocores.c
7044
7045 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7046 M:      Grant Likely <grant.likely@linaro.org>
7047 M:      Rob Herring <robh+dt@kernel.org>
7048 L:      devicetree@vger.kernel.org
7049 W:      http://www.devicetree.org/
7050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7051 S:      Maintained
7052 F:      drivers/of/
7053 F:      include/linux/of*.h
7054 F:      scripts/dtc/
7055
7056 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7057 M:      Rob Herring <robh+dt@kernel.org>
7058 M:      Pawel Moll <pawel.moll@arm.com>
7059 M:      Mark Rutland <mark.rutland@arm.com>
7060 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7061 M:      Kumar Gala <galak@codeaurora.org>
7062 L:      devicetree@vger.kernel.org
7063 S:      Maintained
7064 F:      Documentation/devicetree/
7065 F:      arch/*/boot/dts/
7066 F:      include/dt-bindings/
7067
7068 OPENRISC ARCHITECTURE
7069 M:      Jonas Bonn <jonas@southpole.se>
7070 W:      http://openrisc.net
7071 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7072 S:      Maintained
7073 T:      git git://openrisc.net/~jonas/linux
7074 F:      arch/openrisc/
7075
7076 OPENVSWITCH
7077 M:      Pravin Shelar <pshelar@nicira.com>
7078 L:      dev@openvswitch.org
7079 W:      http://openvswitch.org
7080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pshelar/openvswitch.git
7081 S:      Maintained
7082 F:      net/openvswitch/
7083
7084 OPL4 DRIVER
7085 M:      Clemens Ladisch <clemens@ladisch.de>
7086 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7087 T:      git git://git.alsa-project.org/alsa-kernel.git
7088 S:      Maintained
7089 F:      sound/drivers/opl4/
7090
7091 OPROFILE
7092 M:      Robert Richter <rric@kernel.org>
7093 L:      oprofile-list@lists.sf.net
7094 S:      Maintained
7095 F:      arch/*/include/asm/oprofile*.h
7096 F:      arch/*/oprofile/
7097 F:      drivers/oprofile/
7098 F:      include/linux/oprofile.h
7099
7100 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7101 M:      Mark Fasheh <mfasheh@suse.com>
7102 M:      Joel Becker <jlbec@evilplan.org>
7103 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7104 W:      http://oss.oracle.com/projects/ocfs2/
7105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
7106 S:      Supported
7107 F:      Documentation/filesystems/ocfs2.txt
7108 F:      Documentation/filesystems/dlmfs.txt
7109 F:      fs/ocfs2/
7110
7111 ORINOCO DRIVER
7112 L:      linux-wireless@vger.kernel.org
7113 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7114 W:      http://www.nongnu.org/orinoco/
7115 S:      Orphan
7116 F:      drivers/net/wireless/orinoco/
7117
7118 OSD LIBRARY and FILESYSTEM
7119 M:      Boaz Harrosh <ooo@electrozaur.com>
7120 M:      Benny Halevy <bhalevy@primarydata.com>
7121 L:      osd-dev@open-osd.org
7122 W:      http://open-osd.org
7123 T:      git git://git.open-osd.org/open-osd.git
7124 S:      Maintained
7125 F:      drivers/scsi/osd/
7126 F:      include/scsi/osd_*
7127 F:      fs/exofs/
7128
7129 OVERLAY FILESYSTEM
7130 M:      Miklos Szeredi <miklos@szeredi.hu>
7131 L:      linux-unionfs@vger.kernel.org
7132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7133 S:      Supported
7134 F:      fs/overlayfs/
7135 F:      Documentation/filesystems/overlayfs.txt
7136
7137 P54 WIRELESS DRIVER
7138 M:      Christian Lamparter <chunkeey@googlemail.com>
7139 L:      linux-wireless@vger.kernel.org
7140 W:      http://wireless.kernel.org/en/users/Drivers/p54
7141 S:      Maintained
7142 F:      drivers/net/wireless/p54/
7143
7144 PA SEMI ETHERNET DRIVER
7145 M:      Olof Johansson <olof@lixom.net>
7146 L:      netdev@vger.kernel.org
7147 S:      Maintained
7148 F:      drivers/net/ethernet/pasemi/*
7149
7150 PA SEMI SMBUS DRIVER
7151 M:      Olof Johansson <olof@lixom.net>
7152 L:      linux-i2c@vger.kernel.org
7153 S:      Maintained
7154 F:      drivers/i2c/busses/i2c-pasemi.c
7155
7156 PADATA PARALLEL EXECUTION MECHANISM
7157 M:      Steffen Klassert <steffen.klassert@secunet.com>
7158 L:      linux-crypto@vger.kernel.org
7159 S:      Maintained
7160 F:      kernel/padata.c
7161 F:      include/linux/padata.h
7162 F:      Documentation/padata.txt
7163
7164 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7165 M:      Harald Welte <laforge@gnumonks.org>
7166 L:      platform-driver-x86@vger.kernel.org
7167 S:      Maintained
7168 F:      drivers/platform/x86/panasonic-laptop.c
7169
7170 PANASONIC MN10300/AM33/AM34 PORT
7171 M:      David Howells <dhowells@redhat.com>
7172 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7173 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7174 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7175 S:      Maintained
7176 F:      Documentation/mn10300/
7177 F:      arch/mn10300/
7178
7179 PARALLEL PORT SUPPORT
7180 L:      linux-parport@lists.infradead.org (subscribers-only)
7181 S:      Orphan
7182 F:      drivers/parport/
7183 F:      include/linux/parport*.h
7184 F:      drivers/char/ppdev.c
7185 F:      include/uapi/linux/ppdev.h
7186
7187 PARAVIRT_OPS INTERFACE
7188 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7189 M:      Chris Wright <chrisw@sous-sol.org>
7190 M:      Alok Kataria <akataria@vmware.com>
7191 M:      Rusty Russell <rusty@rustcorp.com.au>
7192 L:      virtualization@lists.linux-foundation.org
7193 S:      Supported
7194 F:      Documentation/ia64/paravirt_ops.txt
7195 F:      arch/*/kernel/paravirt*
7196 F:      arch/*/include/asm/paravirt.h
7197
7198 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7199 M:      Tim Waugh <tim@cyberelk.net>
7200 L:      linux-parport@lists.infradead.org (subscribers-only)
7201 W:      http://www.torque.net/linux-pp.html
7202 S:      Maintained
7203 F:      Documentation/blockdev/paride.txt
7204 F:      drivers/block/paride/
7205
7206 PARISC ARCHITECTURE
7207 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7208 M:      Helge Deller <deller@gmx.de>
7209 L:      linux-parisc@vger.kernel.org
7210 W:      http://www.parisc-linux.org/
7211 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7214 S:      Maintained
7215 F:      arch/parisc/
7216 F:      Documentation/parisc/
7217 F:      drivers/parisc/
7218 F:      drivers/char/agp/parisc-agp.c
7219 F:      drivers/input/serio/gscps2.c
7220 F:      drivers/parport/parport_gsc.*
7221 F:      drivers/tty/serial/8250/8250_gsc.c
7222 F:      drivers/video/fbdev/sti*
7223 F:      drivers/video/console/sti*
7224 F:      drivers/video/logo/logo_parisc*
7225
7226 PC87360 HARDWARE MONITORING DRIVER
7227 M:      Jim Cromie <jim.cromie@gmail.com>
7228 L:      lm-sensors@lm-sensors.org
7229 S:      Maintained
7230 F:      Documentation/hwmon/pc87360
7231 F:      drivers/hwmon/pc87360.c
7232
7233 PC8736x GPIO DRIVER
7234 M:      Jim Cromie <jim.cromie@gmail.com>
7235 S:      Maintained
7236 F:      drivers/char/pc8736x_gpio.c
7237
7238 PC87427 HARDWARE MONITORING DRIVER
7239 M:      Jean Delvare <jdelvare@suse.de>
7240 L:      lm-sensors@lm-sensors.org
7241 S:      Maintained
7242 F:      Documentation/hwmon/pc87427
7243 F:      drivers/hwmon/pc87427.c
7244
7245 PCA9532 LED DRIVER
7246 M:      Riku Voipio <riku.voipio@iki.fi>
7247 S:      Maintained
7248 F:      drivers/leds/leds-pca9532.c
7249 F:      include/linux/leds-pca9532.h
7250
7251 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7252 M:      Guenter Roeck <linux@roeck-us.net>
7253 L:      linux-i2c@vger.kernel.org
7254 S:      Maintained
7255 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7256
7257 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7258 M:      Khalid Aziz <khalid@gonehiking.org>
7259 S:      Maintained
7260 F:      drivers/firmware/pcdp.*
7261
7262 PCI ERROR RECOVERY
7263 M:      Linas Vepstas <linasvepstas@gmail.com>
7264 L:      linux-pci@vger.kernel.org
7265 S:      Supported
7266 F:      Documentation/PCI/pci-error-recovery.txt
7267
7268 PCI SUBSYSTEM
7269 M:      Bjorn Helgaas <bhelgaas@google.com>
7270 L:      linux-pci@vger.kernel.org
7271 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7273 S:      Supported
7274 F:      Documentation/PCI/
7275 F:      drivers/pci/
7276 F:      include/linux/pci*
7277 F:      arch/x86/pci/
7278 F:      arch/x86/kernel/quirks.c
7279
7280 PCI DRIVER FOR ARM VERSATILE PLATFORM
7281 M:      Rob Herring <robh@kernel.org>
7282 L:      linux-pci@vger.kernel.org
7283 L:      linux-arm-kernel@lists.infradead.org
7284 S:      Maintained
7285 F:      Documentation/devicetree/bindings/pci/versatile.txt
7286 F:      drivers/pci/host/pci-versatile.c
7287
7288 PCI DRIVER FOR APPLIEDMICRO XGENE
7289 M:      Tanmay Inamdar <tinamdar@apm.com>
7290 L:      linux-pci@vger.kernel.org
7291 L:      linux-arm-kernel@lists.infradead.org
7292 S:      Maintained
7293 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7294 F:      drivers/pci/host/pci-xgene.c
7295
7296 PCI DRIVER FOR FREESCALE LAYERSCAPE
7297 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7298 M:      Mingkai Hu <mingkai.hu@freescale.com>
7299 M:      Roy Zang <tie-fei.zang@freescale.com>
7300 L:      linuxppc-dev@lists.ozlabs.org
7301 L:      linux-pci@vger.kernel.org
7302 L:      linux-arm-kernel@lists.infradead.org
7303 S:      Maintained
7304 F:      drivers/pci/host/*layerscape*
7305
7306 PCI DRIVER FOR IMX6
7307 M:      Richard Zhu <Richard.Zhu@freescale.com>
7308 M:      Lucas Stach <l.stach@pengutronix.de>
7309 L:      linux-pci@vger.kernel.org
7310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7311 S:      Maintained
7312 F:      drivers/pci/host/*imx6*
7313
7314 PCI DRIVER FOR TI KEYSTONE
7315 M:      Murali Karicheri <m-karicheri2@ti.com>
7316 L:      linux-pci@vger.kernel.org
7317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7318 S:      Maintained
7319 F:      drivers/pci/host/*keystone*
7320
7321 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7322 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7323 M:      Jason Cooper <jason@lakedaemon.net>
7324 L:      linux-pci@vger.kernel.org
7325 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7326 S:      Maintained
7327 F:      drivers/pci/host/*mvebu*
7328
7329 PCI DRIVER FOR NVIDIA TEGRA
7330 M:      Thierry Reding <thierry.reding@gmail.com>
7331 L:      linux-tegra@vger.kernel.org
7332 L:      linux-pci@vger.kernel.org
7333 S:      Supported
7334 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
7335 F:      drivers/pci/host/pci-tegra.c
7336
7337 PCI DRIVER FOR TI DRA7XX
7338 M:      Kishon Vijay Abraham I <kishon@ti.com>
7339 L:      linux-omap@vger.kernel.org
7340 L:      linux-pci@vger.kernel.org
7341 S:      Supported
7342 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
7343 F:      drivers/pci/host/pci-dra7xx.c
7344
7345 PCI DRIVER FOR RENESAS R-CAR
7346 M:      Simon Horman <horms@verge.net.au>
7347 L:      linux-pci@vger.kernel.org
7348 L:      linux-sh@vger.kernel.org
7349 S:      Maintained
7350 F:      drivers/pci/host/*rcar*
7351
7352 PCI DRIVER FOR SAMSUNG EXYNOS
7353 M:      Jingoo Han <jg1.han@samsung.com>
7354 L:      linux-pci@vger.kernel.org
7355 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7356 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7357 S:      Maintained
7358 F:      drivers/pci/host/pci-exynos.c
7359
7360 PCI DRIVER FOR SYNOPSIS DESIGNWARE
7361 M:      Mohit Kumar <mohit.kumar@st.com>
7362 M:      Jingoo Han <jg1.han@samsung.com>
7363 L:      linux-pci@vger.kernel.org
7364 S:      Maintained
7365 F:      drivers/pci/host/*designware*
7366
7367 PCI DRIVER FOR GENERIC OF HOSTS
7368 M:      Will Deacon <will.deacon@arm.com>
7369 L:      linux-pci@vger.kernel.org
7370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7371 S:      Maintained
7372 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
7373 F:      drivers/pci/host/pci-host-generic.c
7374
7375 PCIE DRIVER FOR ST SPEAR13XX
7376 M:      Mohit Kumar <mohit.kumar@st.com>
7377 L:      linux-pci@vger.kernel.org
7378 S:      Maintained
7379 F:      drivers/pci/host/*spear*
7380
7381 PCMCIA SUBSYSTEM
7382 P:      Linux PCMCIA Team
7383 L:      linux-pcmcia@lists.infradead.org
7384 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
7385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
7386 S:      Maintained
7387 F:      Documentation/pcmcia/
7388 F:      drivers/pcmcia/
7389 F:      include/pcmcia/
7390
7391 PCNET32 NETWORK DRIVER
7392 M:      Don Fry <pcnet32@frontier.com>
7393 L:      netdev@vger.kernel.org
7394 S:      Maintained
7395 F:      drivers/net/ethernet/amd/pcnet32.c
7396
7397 PCRYPT PARALLEL CRYPTO ENGINE
7398 M:      Steffen Klassert <steffen.klassert@secunet.com>
7399 L:      linux-crypto@vger.kernel.org
7400 S:      Maintained
7401 F:      crypto/pcrypt.c
7402 F:      include/crypto/pcrypt.h
7403
7404 PER-CPU MEMORY ALLOCATOR
7405 M:      Tejun Heo <tj@kernel.org>
7406 M:      Christoph Lameter <cl@linux-foundation.org>
7407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
7408 S:      Maintained
7409 F:      include/linux/percpu*.h
7410 F:      mm/percpu*.c
7411 F:      arch/*/include/asm/percpu.h
7412
7413 PER-TASK DELAY ACCOUNTING
7414 M:      Balbir Singh <bsingharora@gmail.com>
7415 S:      Maintained
7416 F:      include/linux/delayacct.h
7417 F:      kernel/delayacct.c
7418
7419 PERFORMANCE EVENTS SUBSYSTEM
7420 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
7421 M:      Paul Mackerras <paulus@samba.org>
7422 M:      Ingo Molnar <mingo@redhat.com>
7423 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
7424 L:      linux-kernel@vger.kernel.org
7425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
7426 S:      Supported
7427 F:      kernel/events/*
7428 F:      include/linux/perf_event.h
7429 F:      include/uapi/linux/perf_event.h
7430 F:      arch/*/kernel/perf_event*.c
7431 F:      arch/*/kernel/*/perf_event*.c
7432 F:      arch/*/kernel/*/*/perf_event*.c
7433 F:      arch/*/include/asm/perf_event.h
7434 F:      arch/*/kernel/perf_callchain.c
7435 F:      tools/perf/
7436
7437 PERSONALITY HANDLING
7438 M:      Christoph Hellwig <hch@infradead.org>
7439 L:      linux-abi-devel@lists.sourceforge.net
7440 S:      Maintained
7441 F:      include/linux/personality.h
7442 F:      include/uapi/linux/personality.h
7443
7444 PHONET PROTOCOL
7445 M:      Remi Denis-Courmont <courmisch@gmail.com>
7446 S:      Supported
7447 F:      Documentation/networking/phonet.txt
7448 F:      include/linux/phonet.h
7449 F:      include/net/phonet/
7450 F:      include/uapi/linux/phonet.h
7451 F:      net/phonet/
7452
7453 PHRAM MTD DRIVER
7454 M:      Joern Engel <joern@lazybastard.org>
7455 L:      linux-mtd@lists.infradead.org
7456 S:      Maintained
7457 F:      drivers/mtd/devices/phram.c
7458
7459 PICOLCD HID DRIVER
7460 M:      Bruno Prémont <bonbons@linux-vserver.org>
7461 L:      linux-input@vger.kernel.org
7462 S:      Maintained
7463 F:      drivers/hid/hid-picolcd*
7464
7465 PICOXCELL SUPPORT
7466 M:      Jamie Iles <jamie@jamieiles.com>
7467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7468 T:      git git://github.com/jamieiles/linux-2.6-ji.git
7469 S:      Supported
7470 F:      arch/arm/boot/dts/picoxcell*
7471 F:      arch/arm/mach-picoxcell/
7472 F:      drivers/crypto/picoxcell*
7473
7474 PIN CONTROL SUBSYSTEM
7475 M:      Linus Walleij <linus.walleij@linaro.org>
7476 L:      linux-gpio@vger.kernel.org
7477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
7478 S:      Maintained
7479 F:      drivers/pinctrl/
7480 F:      include/linux/pinctrl/
7481
7482 PIN CONTROLLER - ATMEL AT91
7483 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
7484 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7485 S:      Maintained
7486 F:      drivers/pinctrl/pinctrl-at91.*
7487
7488 PIN CONTROLLER - INTEL
7489 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7490 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
7491 S:      Maintained
7492 F:      drivers/pinctrl/intel/
7493
7494 PIN CONTROLLER - RENESAS
7495 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7496 L:      linux-sh@vger.kernel.org
7497 S:      Maintained
7498 F:      drivers/pinctrl/sh-pfc/
7499
7500 PIN CONTROLLER - SAMSUNG
7501 M:      Tomasz Figa <tomasz.figa@gmail.com>
7502 M:      Thomas Abraham <thomas.abraham@linaro.org>
7503 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7504 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7505 S:      Maintained
7506 F:      drivers/pinctrl/samsung/
7507
7508 PIN CONTROLLER - ST SPEAR
7509 M:      Viresh Kumar <viresh.linux@gmail.com>
7510 L:      spear-devel@list.st.com
7511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7512 W:      http://www.st.com/spear
7513 S:      Maintained
7514 F:      drivers/pinctrl/spear/
7515
7516 PKTCDVD DRIVER
7517 M:      Jiri Kosina <jkosina@suse.cz>
7518 S:      Maintained
7519 F:      drivers/block/pktcdvd.c
7520 F:      include/linux/pktcdvd.h
7521 F:      include/uapi/linux/pktcdvd.h
7522
7523 PKUNITY SOC DRIVERS
7524 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
7525 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
7526 S:      Maintained
7527 T:      git git://github.com/gxt/linux.git
7528 F:      drivers/input/serio/i8042-unicore32io.h
7529 F:      drivers/i2c/busses/i2c-puv3.c
7530 F:      drivers/video/fbdev/fb-puv3.c
7531 F:      drivers/rtc/rtc-puv3.c
7532
7533 PMBUS HARDWARE MONITORING DRIVERS
7534 M:      Guenter Roeck <linux@roeck-us.net>
7535 L:      lm-sensors@lm-sensors.org
7536 W:      http://www.lm-sensors.org/
7537 W:      http://www.roeck-us.net/linux/drivers/
7538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7539 S:      Maintained
7540 F:      Documentation/hwmon/pmbus
7541 F:      drivers/hwmon/pmbus/
7542 F:      include/linux/i2c/pmbus.h
7543
7544 PMC SIERRA MaxRAID DRIVER
7545 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
7546 L:      linux-scsi@vger.kernel.org
7547 W:      http://www.pmc-sierra.com/
7548 S:      Supported
7549 F:      drivers/scsi/pmcraid.*
7550
7551 PMC SIERRA PM8001 DRIVER
7552 M:      xjtuwjp@gmail.com
7553 M:      lindar_liu@usish.com
7554 L:      pmchba@pmcs.com
7555 L:      linux-scsi@vger.kernel.org
7556 S:      Supported
7557 F:      drivers/scsi/pm8001/
7558
7559 POSIX CLOCKS and TIMERS
7560 M:      Thomas Gleixner <tglx@linutronix.de>
7561 L:      linux-kernel@vger.kernel.org
7562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7563 S:      Maintained
7564 F:      fs/timerfd.c
7565 F:      include/linux/timer*
7566 F:      kernel/time/*timer*
7567
7568 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
7569 M:      Sebastian Reichel <sre@kernel.org>
7570 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
7571 M:      David Woodhouse <dwmw2@infradead.org>
7572 L:      linux-pm@vger.kernel.org
7573 T:      git git://git.infradead.org/battery-2.6.git
7574 S:      Maintained
7575 F:      include/linux/power_supply.h
7576 F:      drivers/power/
7577
7578 PNP SUPPORT
7579 M:      Rafael J. Wysocki <rafael.j.wysocki@intel.com>
7580 S:      Maintained
7581 F:      drivers/pnp/
7582
7583 PNXxxxx I2C DRIVER
7584 M:      Vitaly Wool <vitalywool@gmail.com>
7585 L:      linux-i2c@vger.kernel.org
7586 S:      Maintained
7587 F:      drivers/i2c/busses/i2c-pnx.c
7588
7589 PPP PROTOCOL DRIVERS AND COMPRESSORS
7590 M:      Paul Mackerras <paulus@samba.org>
7591 L:      linux-ppp@vger.kernel.org
7592 S:      Maintained
7593 F:      drivers/net/ppp/ppp_*
7594
7595 PPP OVER ATM (RFC 2364)
7596 M:      Mitchell Blank Jr <mitch@sfgoth.com>
7597 S:      Maintained
7598 F:      net/atm/pppoatm.c
7599 F:      include/uapi/linux/atmppp.h
7600
7601 PPP OVER ETHERNET
7602 M:      Michal Ostrowski <mostrows@earthlink.net>
7603 S:      Maintained
7604 F:      drivers/net/ppp/pppoe.c
7605 F:      drivers/net/ppp/pppox.c
7606
7607 PPP OVER L2TP
7608 M:      James Chapman <jchapman@katalix.com>
7609 S:      Maintained
7610 F:      net/l2tp/l2tp_ppp.c
7611 F:      include/linux/if_pppol2tp.h
7612 F:      include/uapi/linux/if_pppol2tp.h
7613
7614 PPS SUPPORT
7615 M:      Rodolfo Giometti <giometti@enneenne.com>
7616 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
7617 L:      linuxpps@ml.enneenne.com (subscribers-only)
7618 S:      Maintained
7619 F:      Documentation/pps/
7620 F:      drivers/pps/
7621 F:      include/linux/pps*.h
7622
7623 PPTP DRIVER
7624 M:      Dmitry Kozlov <xeb@mail.ru>
7625 L:      netdev@vger.kernel.org
7626 S:      Maintained
7627 F:      drivers/net/ppp/pptp.c
7628 W:      http://sourceforge.net/projects/accel-pptp
7629
7630 PREEMPTIBLE KERNEL
7631 M:      Robert Love <rml@tech9.net>
7632 L:      kpreempt-tech@lists.sourceforge.net
7633 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
7634 S:      Supported
7635 F:      Documentation/preempt-locking.txt
7636 F:      include/linux/preempt.h
7637
7638 PRISM54 WIRELESS DRIVER
7639 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
7640 L:      linux-wireless@vger.kernel.org
7641 W:      http://wireless.kernel.org/en/users/Drivers/p54
7642 S:      Obsolete
7643 F:      drivers/net/wireless/prism54/
7644
7645 PS3 NETWORK SUPPORT
7646 M:      Geoff Levand <geoff@infradead.org>
7647 L:      netdev@vger.kernel.org
7648 L:      cbe-oss-dev@lists.ozlabs.org
7649 S:      Maintained
7650 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
7651
7652 PS3 PLATFORM SUPPORT
7653 M:      Geoff Levand <geoff@infradead.org>
7654 L:      linuxppc-dev@lists.ozlabs.org
7655 L:      cbe-oss-dev@lists.ozlabs.org
7656 S:      Maintained
7657 F:      arch/powerpc/boot/ps3*
7658 F:      arch/powerpc/include/asm/lv1call.h
7659 F:      arch/powerpc/include/asm/ps3*.h
7660 F:      arch/powerpc/platforms/ps3/
7661 F:      drivers/*/ps3*
7662 F:      drivers/ps3/
7663 F:      drivers/rtc/rtc-ps3.c
7664 F:      drivers/usb/host/*ps3.c
7665 F:      sound/ppc/snd_ps3*
7666
7667 PS3VRAM DRIVER
7668 M:      Jim Paris <jim@jtan.com>
7669 L:      cbe-oss-dev@lists.ozlabs.org
7670 S:      Maintained
7671 F:      drivers/block/ps3vram.c
7672
7673 PSTORE FILESYSTEM
7674 M:      Anton Vorontsov <anton@enomsg.org>
7675 M:      Colin Cross <ccross@android.com>
7676 M:      Kees Cook <keescook@chromium.org>
7677 M:      Tony Luck <tony.luck@intel.com>
7678 S:      Maintained
7679 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
7680 F:      fs/pstore/
7681 F:      include/linux/pstore*
7682 F:      drivers/firmware/efi/efi-pstore.c
7683 F:      drivers/acpi/apei/erst.c
7684
7685 PTP HARDWARE CLOCK SUPPORT
7686 M:      Richard Cochran <richardcochran@gmail.com>
7687 L:      netdev@vger.kernel.org
7688 S:      Maintained
7689 W:      http://linuxptp.sourceforge.net/
7690 F:      Documentation/ABI/testing/sysfs-ptp
7691 F:      Documentation/ptp/*
7692 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
7693 F:      drivers/net/phy/dp83640*
7694 F:      drivers/ptp/*
7695 F:      include/linux/ptp_cl*
7696
7697 PTRACE SUPPORT
7698 M:      Roland McGrath <roland@hack.frob.com>
7699 M:      Oleg Nesterov <oleg@redhat.com>
7700 S:      Maintained
7701 F:      include/asm-generic/syscall.h
7702 F:      include/linux/ptrace.h
7703 F:      include/linux/regset.h
7704 F:      include/linux/tracehook.h
7705 F:      include/uapi/linux/ptrace.h
7706 F:      kernel/ptrace.c
7707
7708 PVRUSB2 VIDEO4LINUX DRIVER
7709 M:      Mike Isely <isely@pobox.com>
7710 L:      pvrusb2@isely.net       (subscribers-only)
7711 L:      linux-media@vger.kernel.org
7712 W:      http://www.isely.net/pvrusb2/
7713 T:      git git://linuxtv.org/media_tree.git
7714 S:      Maintained
7715 F:      Documentation/video4linux/README.pvrusb2
7716 F:      drivers/media/usb/pvrusb2/
7717
7718 PWC WEBCAM DRIVER
7719 M:      Hans de Goede <hdegoede@redhat.com>
7720 L:      linux-media@vger.kernel.org
7721 T:      git git://linuxtv.org/media_tree.git
7722 S:      Maintained
7723 F:      drivers/media/usb/pwc/*
7724
7725 PWM FAN DRIVER
7726 M:      Kamil Debski <k.debski@samsung.com>
7727 L:      lm-sensors@lm-sensors.org
7728 S:      Supported
7729 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
7730 F:      Documentation/hwmon/pwm-fan
7731 F:      drivers/hwmon/pwm-fan.c
7732
7733 PWM SUBSYSTEM
7734 M:      Thierry Reding <thierry.reding@gmail.com>
7735 L:      linux-pwm@vger.kernel.org
7736 S:      Maintained
7737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
7738 F:      Documentation/pwm.txt
7739 F:      Documentation/devicetree/bindings/pwm/
7740 F:      include/linux/pwm.h
7741 F:      drivers/pwm/
7742 F:      drivers/video/backlight/pwm_bl.c
7743 F:      include/linux/pwm_backlight.h
7744
7745 PXA2xx/PXA3xx SUPPORT
7746 M:      Daniel Mack <daniel@zonque.org>
7747 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7748 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7750 T:      git git://github.com/hzhuang1/linux.git
7751 T:      git git://github.com/rjarzmik/linux.git
7752 S:      Maintained
7753 F:      arch/arm/mach-pxa/
7754 F:      drivers/pcmcia/pxa2xx*
7755 F:      drivers/spi/spi-pxa2xx*
7756 F:      drivers/usb/gadget/udc/pxa2*
7757 F:      include/sound/pxa2xx-lib.h
7758 F:      sound/arm/pxa*
7759 F:      sound/soc/pxa/
7760
7761 PXA3xx NAND FLASH DRIVER
7762 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
7763 L:      linux-mtd@lists.infradead.org
7764 S:      Maintained
7765 F:      drivers/mtd/nand/pxa3xx_nand.c
7766
7767 MMP SUPPORT
7768 M:      Eric Miao <eric.y.miao@gmail.com>
7769 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7770 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7771 T:      git git://github.com/hzhuang1/linux.git
7772 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
7773 S:      Maintained
7774 F:      arch/arm/mach-mmp/
7775
7776 PXA MMCI DRIVER
7777 S:      Orphan
7778
7779 PXA RTC DRIVER
7780 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7781 L:      rtc-linux@googlegroups.com
7782 S:      Maintained
7783
7784 QAT DRIVER
7785 M:      Tadeusz Struk <tadeusz.struk@intel.com>
7786 L:      qat-linux@intel.com
7787 S:      Supported
7788 F:      drivers/crypto/qat/
7789
7790 QIB DRIVER
7791 M:      Mike Marciniszyn <infinipath@intel.com>
7792 L:      linux-rdma@vger.kernel.org
7793 S:      Supported
7794 F:      drivers/infiniband/hw/qib/
7795
7796 QLOGIC QLA1280 SCSI DRIVER
7797 M:      Michael Reed <mdr@sgi.com>
7798 L:      linux-scsi@vger.kernel.org
7799 S:      Maintained
7800 F:      drivers/scsi/qla1280.[ch]
7801
7802 QLOGIC QLA2XXX FC-SCSI DRIVER
7803 M:      qla2xxx-upstream@qlogic.com
7804 L:      linux-scsi@vger.kernel.org
7805 S:      Supported
7806 F:      Documentation/scsi/LICENSE.qla2xxx
7807 F:      drivers/scsi/qla2xxx/
7808
7809 QLOGIC QLA4XXX iSCSI DRIVER
7810 M:      QLogic-Storage-Upstream@qlogic.com
7811 L:      linux-scsi@vger.kernel.org
7812 S:      Supported
7813 F:      Documentation/scsi/LICENSE.qla4xxx
7814 F:      drivers/scsi/qla4xxx/
7815
7816 QLOGIC QLA3XXX NETWORK DRIVER
7817 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
7818 M:      Ron Mercer <ron.mercer@qlogic.com>
7819 M:      linux-driver@qlogic.com
7820 L:      netdev@vger.kernel.org
7821 S:      Supported
7822 F:      Documentation/networking/LICENSE.qla3xxx
7823 F:      drivers/net/ethernet/qlogic/qla3xxx.*
7824
7825 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
7826 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
7827 M:      Dept-GELinuxNICDev@qlogic.com
7828 L:      netdev@vger.kernel.org
7829 S:      Supported
7830 F:      drivers/net/ethernet/qlogic/qlcnic/
7831
7832 QLOGIC QLGE 10Gb ETHERNET DRIVER
7833 M:      Harish Patil <harish.patil@qlogic.com>
7834 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
7835 M:      Dept-GELinuxNICDev@qlogic.com
7836 M:      linux-driver@qlogic.com
7837 L:      netdev@vger.kernel.org
7838 S:      Supported
7839 F:      drivers/net/ethernet/qlogic/qlge/
7840
7841 QNX4 FILESYSTEM
7842 M:      Anders Larsen <al@alarsen.net>
7843 W:      http://www.alarsen.net/linux/qnx4fs/
7844 S:      Maintained
7845 F:      fs/qnx4/
7846 F:      include/uapi/linux/qnx4_fs.h
7847 F:      include/uapi/linux/qnxtypes.h
7848
7849 QT1010 MEDIA DRIVER
7850 M:      Antti Palosaari <crope@iki.fi>
7851 L:      linux-media@vger.kernel.org
7852 W:      http://linuxtv.org/
7853 W:      http://palosaari.fi/linux/
7854 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7855 T:      git git://linuxtv.org/anttip/media_tree.git
7856 S:      Maintained
7857 F:      drivers/media/tuners/qt1010*
7858
7859 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
7860 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
7861 L:      linux-wireless@vger.kernel.org
7862 L:      ath9k-devel@lists.ath9k.org
7863 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
7864 S:      Supported
7865 F:      drivers/net/wireless/ath/ath9k/
7866
7867 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
7868 M:      Kalle Valo <kvalo@qca.qualcomm.com>
7869 L:      ath10k@lists.infradead.org
7870 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
7871 T:      git git://github.com/kvalo/ath.git
7872 S:      Supported
7873 F:      drivers/net/wireless/ath/ath10k/
7874
7875 QUALCOMM HEXAGON ARCHITECTURE
7876 M:      Richard Kuo <rkuo@codeaurora.org>
7877 L:      linux-hexagon@vger.kernel.org
7878 S:      Supported
7879 F:      arch/hexagon/
7880
7881 QUALCOMM WCN36XX WIRELESS DRIVER
7882 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
7883 L:      wcn36xx@lists.infradead.org
7884 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
7885 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
7886 S:      Supported
7887 F:      drivers/net/wireless/ath/wcn36xx/
7888
7889 QUICKCAM PARALLEL PORT WEBCAMS
7890 M:      Hans Verkuil <hverkuil@xs4all.nl>
7891 L:      linux-media@vger.kernel.org
7892 T:      git git://linuxtv.org/media_tree.git
7893 W:      http://linuxtv.org
7894 S:      Odd Fixes
7895 F:      drivers/media/parport/*-qcam*
7896
7897 RADOS BLOCK DEVICE (RBD)
7898 M:      Yehuda Sadeh <yehuda@inktank.com>
7899 M:      Sage Weil <sage@inktank.com>
7900 M:      Alex Elder <elder@kernel.org>
7901 M:      ceph-devel@vger.kernel.org
7902 W:      http://ceph.com/
7903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
7904 S:      Supported
7905 F:      drivers/block/rbd.c
7906 F:      drivers/block/rbd_types.h
7907
7908 RADEON FRAMEBUFFER DISPLAY DRIVER
7909 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
7910 L:      linux-fbdev@vger.kernel.org
7911 S:      Maintained
7912 F:      drivers/video/fbdev/aty/radeon*
7913 F:      include/uapi/linux/radeonfb.h
7914
7915 RADIOSHARK RADIO DRIVER
7916 M:      Hans de Goede <hdegoede@redhat.com>
7917 L:      linux-media@vger.kernel.org
7918 T:      git git://linuxtv.org/media_tree.git
7919 S:      Maintained
7920 F:      drivers/media/radio/radio-shark.c
7921
7922 RADIOSHARK2 RADIO DRIVER
7923 M:      Hans de Goede <hdegoede@redhat.com>
7924 L:      linux-media@vger.kernel.org
7925 T:      git git://linuxtv.org/media_tree.git
7926 S:      Maintained
7927 F:      drivers/media/radio/radio-shark2.c
7928 F:      drivers/media/radio/radio-tea5777.c
7929
7930 RAGE128 FRAMEBUFFER DISPLAY DRIVER
7931 M:      Paul Mackerras <paulus@samba.org>
7932 L:      linux-fbdev@vger.kernel.org
7933 S:      Maintained
7934 F:      drivers/video/fbdev/aty/aty128fb.c
7935
7936 RALINK RT2X00 WIRELESS LAN DRIVER
7937 P:      rt2x00 project
7938 M:      Stanislaw Gruszka <sgruszka@redhat.com>
7939 M:      Helmut Schaa <helmut.schaa@googlemail.com>
7940 L:      linux-wireless@vger.kernel.org
7941 L:      users@rt2x00.serialmonkey.com (moderated for non-subscribers)
7942 W:      http://rt2x00.serialmonkey.com/
7943 S:      Maintained
7944 F:      drivers/net/wireless/rt2x00/
7945
7946 RAMDISK RAM BLOCK DEVICE DRIVER
7947 M:      Nick Piggin <npiggin@kernel.dk>
7948 S:      Maintained
7949 F:      Documentation/blockdev/ramdisk.txt
7950 F:      drivers/block/brd.c
7951
7952 RANDOM NUMBER DRIVER
7953 M:      "Theodore Ts'o" <tytso@mit.edu>
7954 S:      Maintained
7955 F:      drivers/char/random.c
7956
7957 RAPIDIO SUBSYSTEM
7958 M:      Matt Porter <mporter@kernel.crashing.org>
7959 M:      Alexandre Bounine <alexandre.bounine@idt.com>
7960 S:      Maintained
7961 F:      drivers/rapidio/
7962
7963 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
7964 L:      linux-wireless@vger.kernel.org
7965 S:      Orphan
7966 F:      drivers/net/wireless/ray*
7967
7968 RCUTORTURE MODULE
7969 M:      Josh Triplett <josh@joshtriplett.org>
7970 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7971 L:      linux-kernel@vger.kernel.org
7972 S:      Supported
7973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7974 F:      Documentation/RCU/torture.txt
7975 F:      kernel/rcu/rcutorture.c
7976
7977 RCUTORTURE TEST FRAMEWORK
7978 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7979 M:      Josh Triplett <josh@joshtriplett.org>
7980 R:      Steven Rostedt <rostedt@goodmis.org>
7981 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7982 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
7983 L:      linux-kernel@vger.kernel.org
7984 S:      Supported
7985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7986 F:      tools/testing/selftests/rcutorture
7987
7988 RDC R-321X SoC
7989 M:      Florian Fainelli <florian@openwrt.org>
7990 S:      Maintained
7991
7992 RDC R6040 FAST ETHERNET DRIVER
7993 M:      Florian Fainelli <florian@openwrt.org>
7994 L:      netdev@vger.kernel.org
7995 S:      Maintained
7996 F:      drivers/net/ethernet/rdc/r6040.c
7997
7998 RDS - RELIABLE DATAGRAM SOCKETS
7999 M:      Chien Yen <chien.yen@oracle.com>
8000 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8001 S:      Supported
8002 F:      net/rds/
8003
8004 READ-COPY UPDATE (RCU)
8005 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8006 M:      Josh Triplett <josh@joshtriplett.org>
8007 R:      Steven Rostedt <rostedt@goodmis.org>
8008 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8009 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
8010 L:      linux-kernel@vger.kernel.org
8011 W:      http://www.rdrop.com/users/paulmck/RCU/
8012 S:      Supported
8013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8014 F:      Documentation/RCU/
8015 X:      Documentation/RCU/torture.txt
8016 F:      include/linux/rcu*
8017 X:      include/linux/srcu.h
8018 F:      kernel/rcu/
8019 X:      kernel/torture.c
8020
8021 REAL TIME CLOCK (RTC) SUBSYSTEM
8022 M:      Alessandro Zummo <a.zummo@towertech.it>
8023 L:      rtc-linux@googlegroups.com
8024 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8025 S:      Maintained
8026 F:      Documentation/rtc.txt
8027 F:      drivers/rtc/
8028 F:      include/linux/rtc.h
8029 F:      include/uapi/linux/rtc.h
8030
8031 REALTEK AUDIO CODECS
8032 M:      Bard Liao <bardliao@realtek.com>
8033 M:      Oder Chiou <oder_chiou@realtek.com>
8034 S:      Maintained
8035 F:      sound/soc/codecs/rt*
8036 F:      include/sound/rt*.h
8037
8038 REISERFS FILE SYSTEM
8039 L:      reiserfs-devel@vger.kernel.org
8040 S:      Supported
8041 F:      fs/reiserfs/
8042
8043 REGISTER MAP ABSTRACTION
8044 M:      Mark Brown <broonie@kernel.org>
8045 L:      linux-kernel@vger.kernel.org
8046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8047 S:      Supported
8048 F:      drivers/base/regmap/
8049 F:      include/linux/regmap.h
8050
8051 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8052 M:      Ohad Ben-Cohen <ohad@wizery.com>
8053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8054 S:      Maintained
8055 F:      drivers/remoteproc/
8056 F:      Documentation/remoteproc.txt
8057 F:      include/linux/remoteproc.h
8058
8059 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8060 M:      Ohad Ben-Cohen <ohad@wizery.com>
8061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8062 S:      Maintained
8063 F:      drivers/rpmsg/
8064 F:      Documentation/rpmsg.txt
8065 F:      include/linux/rpmsg.h
8066
8067 RESET CONTROLLER FRAMEWORK
8068 M:      Philipp Zabel <p.zabel@pengutronix.de>
8069 S:      Maintained
8070 F:      drivers/reset/
8071 F:      Documentation/devicetree/bindings/reset/
8072 F:      include/linux/reset.h
8073 F:      include/linux/reset-controller.h
8074
8075 RFKILL
8076 M:      Johannes Berg <johannes@sipsolutions.net>
8077 L:      linux-wireless@vger.kernel.org
8078 W:      http://wireless.kernel.org/
8079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8081 S:      Maintained
8082 F:      Documentation/rfkill.txt
8083 F:      net/rfkill/
8084
8085 RICOH SMARTMEDIA/XD DRIVER
8086 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8087 S:      Maintained
8088 F:      drivers/mtd/nand/r852.c
8089 F:      drivers/mtd/nand/r852.h
8090
8091 RICOH R5C592 MEMORYSTICK DRIVER
8092 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8093 S:      Maintained
8094 F:      drivers/memstick/host/r592.*
8095
8096 ROCCAT DRIVERS
8097 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8098 W:      http://sourceforge.net/projects/roccat/
8099 S:      Maintained
8100 F:      drivers/hid/hid-roccat*
8101 F:      include/linux/hid-roccat*
8102 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8103
8104 ROCKER DRIVER
8105 M:      Jiri Pirko <jiri@resnulli.us>
8106 M:      Scott Feldman <sfeldma@gmail.com>
8107 L:      netdev@vger.kernel.org
8108 S:      Supported
8109 F:      drivers/net/ethernet/rocker/
8110
8111 ROCKETPORT DRIVER
8112 P:      Comtrol Corp.
8113 W:      http://www.comtrol.com
8114 S:      Maintained
8115 F:      Documentation/serial/rocket.txt
8116 F:      drivers/tty/rocket*
8117
8118 ROCKETPORT EXPRESS/INFINITY DRIVER
8119 M:      Kevin Cernekee <cernekee@gmail.com>
8120 L:      linux-serial@vger.kernel.org
8121 S:      Odd Fixes
8122 F:      drivers/tty/serial/rp2.*
8123
8124 ROSE NETWORK LAYER
8125 M:      Ralf Baechle <ralf@linux-mips.org>
8126 L:      linux-hams@vger.kernel.org
8127 W:      http://www.linux-ax25.org/
8128 S:      Maintained
8129 F:      include/net/rose.h
8130 F:      include/uapi/linux/rose.h
8131 F:      net/rose/
8132
8133 RTL2830 MEDIA DRIVER
8134 M:      Antti Palosaari <crope@iki.fi>
8135 L:      linux-media@vger.kernel.org
8136 W:      http://linuxtv.org/
8137 W:      http://palosaari.fi/linux/
8138 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8139 T:      git git://linuxtv.org/anttip/media_tree.git
8140 S:      Maintained
8141 F:      drivers/media/dvb-frontends/rtl2830*
8142
8143 RTL2832 MEDIA DRIVER
8144 M:      Antti Palosaari <crope@iki.fi>
8145 L:      linux-media@vger.kernel.org
8146 W:      http://linuxtv.org/
8147 W:      http://palosaari.fi/linux/
8148 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8149 T:      git git://linuxtv.org/anttip/media_tree.git
8150 S:      Maintained
8151 F:      drivers/media/dvb-frontends/rtl2832*
8152
8153 RTL2832_SDR MEDIA DRIVER
8154 M:      Antti Palosaari <crope@iki.fi>
8155 L:      linux-media@vger.kernel.org
8156 W:      http://linuxtv.org/
8157 W:      http://palosaari.fi/linux/
8158 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8159 T:      git git://linuxtv.org/anttip/media_tree.git
8160 S:      Maintained
8161 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8162
8163 RTL8180 WIRELESS DRIVER
8164 L:      linux-wireless@vger.kernel.org
8165 W:      http://wireless.kernel.org/
8166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8167 S:      Orphan
8168 F:      drivers/net/wireless/rtl818x/rtl8180/
8169
8170 RTL8187 WIRELESS DRIVER
8171 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8172 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8173 M:      Larry Finger <Larry.Finger@lwfinger.net>
8174 L:      linux-wireless@vger.kernel.org
8175 W:      http://wireless.kernel.org/
8176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8177 S:      Maintained
8178 F:      drivers/net/wireless/rtl818x/rtl8187/
8179
8180 RTL8192CE WIRELESS DRIVER
8181 M:      Larry Finger <Larry.Finger@lwfinger.net>
8182 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8183 L:      linux-wireless@vger.kernel.org
8184 W:      http://wireless.kernel.org/
8185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8186 S:      Maintained
8187 F:      drivers/net/wireless/rtlwifi/
8188 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8189
8190 S3 SAVAGE FRAMEBUFFER DRIVER
8191 M:      Antonino Daplas <adaplas@gmail.com>
8192 L:      linux-fbdev@vger.kernel.org
8193 S:      Maintained
8194 F:      drivers/video/fbdev/savage/
8195
8196 S390
8197 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8198 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8199 M:      linux390@de.ibm.com
8200 L:      linux-s390@vger.kernel.org
8201 W:      http://www.ibm.com/developerworks/linux/linux390/
8202 S:      Supported
8203 F:      arch/s390/
8204 F:      drivers/s390/
8205 F:      Documentation/s390/
8206 F:      Documentation/DocBook/s390*
8207
8208 S390 COMMON I/O LAYER
8209 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8210 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8211 L:      linux-s390@vger.kernel.org
8212 W:      http://www.ibm.com/developerworks/linux/linux390/
8213 S:      Supported
8214 F:      drivers/s390/cio/
8215
8216 S390 DASD DRIVER
8217 M:      Stefan Weinhuber <wein@de.ibm.com>
8218 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8219 L:      linux-s390@vger.kernel.org
8220 W:      http://www.ibm.com/developerworks/linux/linux390/
8221 S:      Supported
8222 F:      drivers/s390/block/dasd*
8223 F:      block/partitions/ibm.c
8224
8225 S390 NETWORK DRIVERS
8226 M:      Ursula Braun <ursula.braun@de.ibm.com>
8227 M:      Frank Blaschka <blaschka@linux.vnet.ibm.com>
8228 M:      linux390@de.ibm.com
8229 L:      linux-s390@vger.kernel.org
8230 W:      http://www.ibm.com/developerworks/linux/linux390/
8231 S:      Supported
8232 F:      drivers/s390/net/
8233
8234 S390 PCI SUBSYSTEM
8235 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8236 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8237 L:      linux-s390@vger.kernel.org
8238 W:      http://www.ibm.com/developerworks/linux/linux390/
8239 S:      Supported
8240 F:      arch/s390/pci/
8241 F:      drivers/pci/hotplug/s390_pci_hpc.c
8242
8243 S390 ZCRYPT DRIVER
8244 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8245 M:      linux390@de.ibm.com
8246 L:      linux-s390@vger.kernel.org
8247 W:      http://www.ibm.com/developerworks/linux/linux390/
8248 S:      Supported
8249 F:      drivers/s390/crypto/
8250
8251 S390 ZFCP DRIVER
8252 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8253 M:      linux390@de.ibm.com
8254 L:      linux-s390@vger.kernel.org
8255 W:      http://www.ibm.com/developerworks/linux/linux390/
8256 S:      Supported
8257 F:      drivers/s390/scsi/zfcp_*
8258
8259 S390 IUCV NETWORK LAYER
8260 M:      Ursula Braun <ursula.braun@de.ibm.com>
8261 M:      linux390@de.ibm.com
8262 L:      linux-s390@vger.kernel.org
8263 W:      http://www.ibm.com/developerworks/linux/linux390/
8264 S:      Supported
8265 F:      drivers/s390/net/*iucv*
8266 F:      include/net/iucv/
8267 F:      net/iucv/
8268
8269 S3C24XX SD/MMC Driver
8270 M:      Ben Dooks <ben-linux@fluff.org>
8271 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8272 S:      Supported
8273 F:      drivers/mmc/host/s3cmci.*
8274
8275 SAA6588 RDS RECEIVER DRIVER
8276 M:      Hans Verkuil <hverkuil@xs4all.nl>
8277 L:      linux-media@vger.kernel.org
8278 T:      git git://linuxtv.org/media_tree.git
8279 W:      http://linuxtv.org
8280 S:      Odd Fixes
8281 F:      drivers/media/i2c/saa6588*
8282
8283 SAA7134 VIDEO4LINUX DRIVER
8284 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8285 L:      linux-media@vger.kernel.org
8286 W:      http://linuxtv.org
8287 T:      git git://linuxtv.org/media_tree.git
8288 S:      Odd fixes
8289 F:      Documentation/video4linux/*.saa7134
8290 F:      drivers/media/pci/saa7134/
8291
8292 SAA7146 VIDEO4LINUX-2 DRIVER
8293 M:      Hans Verkuil <hverkuil@xs4all.nl>
8294 L:      linux-media@vger.kernel.org
8295 T:      git git://linuxtv.org/media_tree.git
8296 S:      Maintained
8297 F:      drivers/media/common/saa7146/
8298 F:      drivers/media/pci/saa7146/
8299 F:      include/media/saa7146*
8300
8301 SAMSUNG LAPTOP DRIVER
8302 M:      Corentin Chary <corentin.chary@gmail.com>
8303 L:      platform-driver-x86@vger.kernel.org
8304 S:      Maintained
8305 F:      drivers/platform/x86/samsung-laptop.c
8306
8307 SAMSUNG AUDIO (ASoC) DRIVERS
8308 M:      Sangbeom Kim <sbkim73@samsung.com>
8309 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8310 S:      Supported
8311 F:      sound/soc/samsung/
8312
8313 SAMSUNG FRAMEBUFFER DRIVER
8314 M:      Jingoo Han <jg1.han@samsung.com>
8315 L:      linux-fbdev@vger.kernel.org
8316 S:      Maintained
8317 F:      drivers/video/fbdev/s3c-fb.c
8318
8319 SAMSUNG MULTIFUNCTION DEVICE DRIVERS
8320 M:      Sangbeom Kim <sbkim73@samsung.com>
8321 L:      linux-kernel@vger.kernel.org
8322 S:      Supported
8323 F:      drivers/mfd/sec*.c
8324 F:      drivers/regulator/s2m*.c
8325 F:      drivers/regulator/s5m*.c
8326 F:      include/linux/mfd/samsung/
8327
8328 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
8329 M:      Kyungmin Park <kyungmin.park@samsung.com>
8330 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8331 L:      linux-media@vger.kernel.org
8332 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
8333 S:      Supported
8334 F:      drivers/media/platform/exynos4-is/
8335
8336 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
8337 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
8338 L:      linux-media@vger.kernel.org
8339 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8340 S:      Maintained
8341 F:      drivers/media/platform/s3c-camif/
8342 F:      include/media/s3c_camif.h
8343
8344 SAMSUNG S5C73M3 CAMERA DRIVER
8345 M:      Kyungmin Park <kyungmin.park@samsung.com>
8346 M:      Andrzej Hajda <a.hajda@samsung.com>
8347 L:      linux-media@vger.kernel.org
8348 S:      Supported
8349 F:      drivers/media/i2c/s5c73m3/*
8350
8351 SAMSUNG S5K5BAF CAMERA DRIVER
8352 M:      Kyungmin Park <kyungmin.park@samsung.com>
8353 M:      Andrzej Hajda <a.hajda@samsung.com>
8354 L:      linux-media@vger.kernel.org
8355 S:      Supported
8356 F:      drivers/media/i2c/s5k5baf.c
8357
8358 SAMSUNG SOC CLOCK DRIVERS
8359 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8360 M:      Tomasz Figa <tomasz.figa@gmail.com>
8361 S:      Supported
8362 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8363 F:      drivers/clk/samsung/
8364
8365 SAMSUNG SXGBE DRIVERS
8366 M:      Byungho An <bh74.an@samsung.com>
8367 M:      Girish K S <ks.giri@samsung.com>
8368 M:      Vipul Pandya <vipul.pandya@samsung.com>
8369 S:      Supported
8370 L:      netdev@vger.kernel.org
8371 F:      drivers/net/ethernet/samsung/sxgbe/
8372
8373 SAMSUNG USB2 PHY DRIVER
8374 M:      Kamil Debski <k.debski@samsung.com>
8375 L:      linux-kernel@vger.kernel.org
8376 S:      Supported
8377 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
8378 F:      Documentation/phy/samsung-usb2.txt
8379 F:      drivers/phy/phy-exynos4210-usb2.c
8380 F:      drivers/phy/phy-exynos4x12-usb2.c
8381 F:      drivers/phy/phy-exynos5250-usb2.c
8382 F:      drivers/phy/phy-s5pv210-usb2.c
8383 F:      drivers/phy/phy-samsung-usb2.c
8384 F:      drivers/phy/phy-samsung-usb2.h
8385
8386 SERIAL DRIVERS
8387 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8388 L:      linux-serial@vger.kernel.org
8389 S:      Maintained
8390 F:      drivers/tty/serial/
8391
8392 SYNOPSYS DESIGNWARE DMAC DRIVER
8393 M:      Viresh Kumar <viresh.linux@gmail.com>
8394 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8395 S:      Maintained
8396 F:      include/linux/platform_data/dma-dw.h
8397 F:      drivers/dma/dw/
8398
8399 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
8400 M:      Seungwon Jeon <tgih.jun@samsung.com>
8401 M:      Jaehoon Chung <jh80.chung@samsung.com>
8402 L:      linux-mmc@vger.kernel.org
8403 S:      Maintained
8404 F:      include/linux/mmc/dw_mmc.h
8405 F:      drivers/mmc/host/dw_mmc*
8406
8407 THUNDERBOLT DRIVER
8408 M:      Andreas Noever <andreas.noever@gmail.com>
8409 S:      Maintained
8410 F:      drivers/thunderbolt/
8411
8412 TIMEKEEPING, CLOCKSOURCE CORE, NTP
8413 M:      John Stultz <john.stultz@linaro.org>
8414 M:      Thomas Gleixner <tglx@linutronix.de>
8415 L:      linux-kernel@vger.kernel.org
8416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8417 S:      Supported
8418 F:      include/linux/clocksource.h
8419 F:      include/linux/time.h
8420 F:      include/linux/timex.h
8421 F:      include/uapi/linux/time.h
8422 F:      include/uapi/linux/timex.h
8423 F:      kernel/time/clocksource.c
8424 F:      kernel/time/time*.c
8425 F:      kernel/time/ntp.c
8426
8427 TLG2300 VIDEO4LINUX-2 DRIVER
8428 M:      Huang Shijie <shijie8@gmail.com>
8429 M:      Hans Verkuil <hverkuil@xs4all.nl>
8430 S:      Odd Fixes
8431 F:      drivers/media/usb/tlg2300/
8432
8433 SC1200 WDT DRIVER
8434 M:      Zwane Mwaikambo <zwanem@gmail.com>
8435 S:      Maintained
8436 F:      drivers/watchdog/sc1200wdt.c
8437
8438 SCHEDULER
8439 M:      Ingo Molnar <mingo@redhat.com>
8440 M:      Peter Zijlstra <peterz@infradead.org>
8441 L:      linux-kernel@vger.kernel.org
8442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
8443 S:      Maintained
8444 F:      kernel/sched/
8445 F:      include/linux/sched.h
8446 F:      include/uapi/linux/sched.h
8447 F:      include/linux/wait.h
8448
8449 SCORE ARCHITECTURE
8450 M:      Chen Liqin <liqin.linux@gmail.com>
8451 M:      Lennox Wu <lennox.wu@gmail.com>
8452 W:      http://www.sunplus.com
8453 S:      Supported
8454 F:      arch/score/
8455
8456 SCSI CDROM DRIVER
8457 M:      Jens Axboe <axboe@kernel.dk>
8458 L:      linux-scsi@vger.kernel.org
8459 W:      http://www.kernel.dk
8460 S:      Maintained
8461 F:      drivers/scsi/sr*
8462
8463 SCSI RDMA PROTOCOL (SRP) INITIATOR
8464 M:      Bart Van Assche <bvanassche@acm.org>
8465 L:      linux-rdma@vger.kernel.org
8466 S:      Supported
8467 W:      http://www.openfabrics.org
8468 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
8470 F:      drivers/infiniband/ulp/srp/
8471 F:      include/scsi/srp.h
8472
8473 SCSI SG DRIVER
8474 M:      Doug Gilbert <dgilbert@interlog.com>
8475 L:      linux-scsi@vger.kernel.org
8476 W:      http://sg.danny.cz/sg
8477 S:      Maintained
8478 F:      Documentation/scsi/scsi-generic.txt
8479 F:      drivers/scsi/sg.c
8480 F:      include/scsi/sg.h
8481
8482 SCSI SUBSYSTEM
8483 M:      "James E.J. Bottomley" <JBottomley@parallels.com>
8484 L:      linux-scsi@vger.kernel.org
8485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
8486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
8487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
8488 S:      Maintained
8489 F:      drivers/scsi/
8490 F:      include/scsi/
8491
8492 SCSI TAPE DRIVER
8493 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
8494 L:      linux-scsi@vger.kernel.org
8495 S:      Maintained
8496 F:      Documentation/scsi/st.txt
8497 F:      drivers/scsi/st.*
8498 F:      drivers/scsi/st_*.h
8499
8500 SCTP PROTOCOL
8501 M:      Vlad Yasevich <vyasevich@gmail.com>
8502 M:      Neil Horman <nhorman@tuxdriver.com>
8503 L:      linux-sctp@vger.kernel.org
8504 W:      http://lksctp.sourceforge.net
8505 S:      Maintained
8506 F:      Documentation/networking/sctp.txt
8507 F:      include/linux/sctp.h
8508 F:      include/uapi/linux/sctp.h
8509 F:      include/net/sctp/
8510 F:      net/sctp/
8511
8512 SCx200 CPU SUPPORT
8513 M:      Jim Cromie <jim.cromie@gmail.com>
8514 S:      Odd Fixes
8515 F:      Documentation/i2c/busses/scx200_acb
8516 F:      arch/x86/platform/scx200/
8517 F:      drivers/watchdog/scx200_wdt.c
8518 F:      drivers/i2c/busses/scx200*
8519 F:      drivers/mtd/maps/scx200_docflash.c
8520 F:      include/linux/scx200.h
8521
8522 SCx200 GPIO DRIVER
8523 M:      Jim Cromie <jim.cromie@gmail.com>
8524 S:      Maintained
8525 F:      drivers/char/scx200_gpio.c
8526 F:      include/linux/scx200_gpio.h
8527
8528 SCx200 HRT CLOCKSOURCE DRIVER
8529 M:      Jim Cromie <jim.cromie@gmail.com>
8530 S:      Maintained
8531 F:      drivers/clocksource/scx200_hrt.c
8532
8533 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
8534 M:      Sascha Sommer <saschasommer@freenet.de>
8535 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
8536 S:      Maintained
8537 F:      drivers/mmc/host/sdricoh_cs.c
8538
8539 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
8540 M:      Chris Ball <chris@printf.net>
8541 L:      linux-mmc@vger.kernel.org
8542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
8543 S:      Maintained
8544 F:      drivers/mmc/host/sdhci.*
8545 F:      drivers/mmc/host/sdhci-pltfm.[ch]
8546
8547 SECURE COMPUTING
8548 M:      Kees Cook <keescook@chromium.org>
8549 R:      Andy Lutomirski <luto@amacapital.net>
8550 R:      Will Drewry <wad@chromium.org>
8551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
8552 S:      Supported
8553 F:      kernel/seccomp.c
8554 F:      include/uapi/linux/seccomp.h
8555 F:      include/linux/seccomp.h
8556 K:      \bsecure_computing
8557 K:      \bTIF_SECCOMP\b
8558
8559 SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
8560 M:      Anton Vorontsov <anton@enomsg.org>
8561 L:      linuxppc-dev@lists.ozlabs.org
8562 L:      linux-mmc@vger.kernel.org
8563 S:      Maintained
8564 F:      drivers/mmc/host/sdhci-pltfm.[ch]
8565
8566 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
8567 M:      Ben Dooks <ben-linux@fluff.org>
8568 L:      linux-mmc@vger.kernel.org
8569 S:      Maintained
8570 F:      drivers/mmc/host/sdhci-s3c.c
8571
8572 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
8573 M:      Viresh Kumar <viresh.linux@gmail.com>
8574 L:      spear-devel@list.st.com
8575 L:      linux-mmc@vger.kernel.org
8576 S:      Maintained
8577 F:      drivers/mmc/host/sdhci-spear.c
8578
8579 SECURITY SUBSYSTEM
8580 M:      James Morris <james.l.morris@oracle.com>
8581 M:      Serge E. Hallyn <serge@hallyn.com>
8582 L:      linux-security-module@vger.kernel.org (suggested Cc:)
8583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
8584 W:      http://kernsec.org/
8585 S:      Supported
8586 F:      security/
8587
8588 SECURITY CONTACT
8589 M:      Security Officers <security@kernel.org>
8590 S:      Supported
8591
8592 SELINUX SECURITY MODULE
8593 M:      Paul Moore <paul@paul-moore.com>
8594 M:      Stephen Smalley <sds@tycho.nsa.gov>
8595 M:      Eric Paris <eparis@parisplace.org>
8596 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
8597 W:      http://selinuxproject.org
8598 T:      git git://git.infradead.org/users/pcmoore/selinux
8599 S:      Supported
8600 F:      include/linux/selinux*
8601 F:      security/selinux/
8602 F:      scripts/selinux/
8603
8604 APPARMOR SECURITY MODULE
8605 M:      John Johansen <john.johansen@canonical.com>
8606 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
8607 W:      apparmor.wiki.kernel.org
8608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
8609 S:      Supported
8610 F:      security/apparmor/
8611
8612 SENSABLE PHANTOM
8613 M:      Jiri Slaby <jirislaby@gmail.com>
8614 S:      Maintained
8615 F:      drivers/misc/phantom.c
8616 F:      include/uapi/linux/phantom.h
8617
8618 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
8619 M:      Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
8620 L:      linux-scsi@vger.kernel.org
8621 W:      http://www.emulex.com
8622 S:      Supported
8623 F:      drivers/scsi/be2iscsi/
8624
8625 SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
8626 M:      Sathya Perla <sathya.perla@emulex.com>
8627 M:      Subbu Seetharaman <subbu.seetharaman@emulex.com>
8628 M:      Ajit Khaparde <ajit.khaparde@emulex.com>
8629 L:      netdev@vger.kernel.org
8630 W:      http://www.emulex.com
8631 S:      Supported
8632 F:      drivers/net/ethernet/emulex/benet/
8633
8634 SFC NETWORK DRIVER
8635 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
8636 M:      Shradha Shah <sshah@solarflare.com>
8637 L:      netdev@vger.kernel.org
8638 S:      Supported
8639 F:      drivers/net/ethernet/sfc/
8640
8641 SGI GRU DRIVER
8642 M:      Dimitri Sivanich <sivanich@sgi.com>
8643 S:      Maintained
8644 F:      drivers/misc/sgi-gru/
8645
8646 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
8647 M:      Pat Gefre <pfg@sgi.com>
8648 L:      linux-ia64@vger.kernel.org
8649 S:      Supported
8650 F:      Documentation/ia64/serial.txt
8651 F:      drivers/tty/serial/ioc?_serial.c
8652 F:      include/linux/ioc?.h
8653
8654 SGI XP/XPC/XPNET DRIVER
8655 M:      Cliff Whickman <cpw@sgi.com>
8656 M:      Robin Holt <robinmholt@gmail.com>
8657 S:      Maintained
8658 F:      drivers/misc/sgi-xp/
8659
8660 SI2157 MEDIA DRIVER
8661 M:      Antti Palosaari <crope@iki.fi>
8662 L:      linux-media@vger.kernel.org
8663 W:      http://linuxtv.org/
8664 W:      http://palosaari.fi/linux/
8665 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8666 T:      git git://linuxtv.org/anttip/media_tree.git
8667 S:      Maintained
8668 F:      drivers/media/tuners/si2157*
8669
8670 SI2168 MEDIA DRIVER
8671 M:      Antti Palosaari <crope@iki.fi>
8672 L:      linux-media@vger.kernel.org
8673 W:      http://linuxtv.org/
8674 W:      http://palosaari.fi/linux/
8675 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8676 T:      git git://linuxtv.org/anttip/media_tree.git
8677 S:      Maintained
8678 F:      drivers/media/dvb-frontends/si2168*
8679
8680 SI470X FM RADIO RECEIVER I2C DRIVER
8681 M:      Hans Verkuil <hverkuil@xs4all.nl>
8682 L:      linux-media@vger.kernel.org
8683 T:      git git://linuxtv.org/media_tree.git
8684 W:      http://linuxtv.org
8685 S:      Odd Fixes
8686 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
8687
8688 SI470X FM RADIO RECEIVER USB DRIVER
8689 M:      Hans Verkuil <hverkuil@xs4all.nl>
8690 L:      linux-media@vger.kernel.org
8691 T:      git git://linuxtv.org/media_tree.git
8692 W:      http://linuxtv.org
8693 S:      Maintained
8694 F:      drivers/media/radio/si470x/radio-si470x-common.c
8695 F:      drivers/media/radio/si470x/radio-si470x.h
8696 F:      drivers/media/radio/si470x/radio-si470x-usb.c
8697
8698 SI4713 FM RADIO TRANSMITTER I2C DRIVER
8699 M:      Eduardo Valentin <edubezval@gmail.com>
8700 L:      linux-media@vger.kernel.org
8701 T:      git git://linuxtv.org/media_tree.git
8702 W:      http://linuxtv.org
8703 S:      Odd Fixes
8704 F:      drivers/media/radio/si4713/si4713.?
8705
8706 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
8707 M:      Eduardo Valentin <edubezval@gmail.com>
8708 L:      linux-media@vger.kernel.org
8709 T:      git git://linuxtv.org/media_tree.git
8710 W:      http://linuxtv.org
8711 S:      Odd Fixes
8712 F:      drivers/media/radio/si4713/radio-platform-si4713.c
8713
8714 SI4713 FM RADIO TRANSMITTER USB DRIVER
8715 M:      Hans Verkuil <hverkuil@xs4all.nl>
8716 L:      linux-media@vger.kernel.org
8717 T:      git git://linuxtv.org/media_tree.git
8718 W:      http://linuxtv.org
8719 S:      Maintained
8720 F:      drivers/media/radio/si4713/radio-usb-si4713.c
8721
8722 SIANO DVB DRIVER
8723 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8724 L:      linux-media@vger.kernel.org
8725 W:      http://linuxtv.org
8726 T:      git git://linuxtv.org/media_tree.git
8727 S:      Odd fixes
8728 F:      drivers/media/common/siano/
8729 F:      drivers/media/usb/siano/
8730 F:      drivers/media/usb/siano/
8731 F:      drivers/media/mmc/siano/
8732
8733 SIMPLEFB FB DRIVER
8734 M:      Hans de Goede <hdegoede@redhat.com>
8735 L:      linux-fbdev@vger.kernel.org
8736 S:      Maintained
8737 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
8738 F:      drivers/video/fbdev/simplefb.c
8739 F:      include/linux/platform_data/simplefb.h
8740
8741 SH_VEU V4L2 MEM2MEM DRIVER
8742 L:      linux-media@vger.kernel.org
8743 S:      Orphan
8744 F:      drivers/media/platform/sh_veu.c
8745
8746 SH_VOU V4L2 OUTPUT DRIVER
8747 L:      linux-media@vger.kernel.org
8748 S:      Orphan
8749 F:      drivers/media/platform/sh_vou.c
8750 F:      include/media/sh_vou.h
8751
8752 SIMPLE FIRMWARE INTERFACE (SFI)
8753 M:      Len Brown <lenb@kernel.org>
8754 L:      sfi-devel@simplefirmware.org
8755 W:      http://simplefirmware.org/
8756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
8757 S:      Supported
8758 F:      arch/x86/platform/sfi/
8759 F:      drivers/sfi/
8760 F:      include/linux/sfi*.h
8761
8762 SIMTEC EB110ATX (Chalice CATS)
8763 P:      Ben Dooks
8764 P:      Vincent Sanders <vince@simtec.co.uk>
8765 M:      Simtec Linux Team <linux@simtec.co.uk>
8766 W:      http://www.simtec.co.uk/products/EB110ATX/
8767 S:      Supported
8768
8769 SIMTEC EB2410ITX (BAST)
8770 P:      Ben Dooks
8771 P:      Vincent Sanders <vince@simtec.co.uk>
8772 M:      Simtec Linux Team <linux@simtec.co.uk>
8773 W:      http://www.simtec.co.uk/products/EB2410ITX/
8774 S:      Supported
8775 F:      arch/arm/mach-s3c24xx/mach-bast.c
8776 F:      arch/arm/mach-s3c24xx/bast-ide.c
8777 F:      arch/arm/mach-s3c24xx/bast-irq.c
8778
8779 TI DAVINCI MACHINE SUPPORT
8780 M:      Sekhar Nori <nsekhar@ti.com>
8781 M:      Kevin Hilman <khilman@deeprootsystems.com>
8782 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
8783 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
8784 S:      Supported
8785 F:      arch/arm/mach-davinci/
8786 F:      drivers/i2c/busses/i2c-davinci.c
8787
8788 TI DAVINCI SERIES MEDIA DRIVER
8789 M:      Lad, Prabhakar <prabhakar.csengg@gmail.com>
8790 L:      linux-media@vger.kernel.org
8791 W:      http://linuxtv.org/
8792 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8793 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
8794 S:      Maintained
8795 F:      drivers/media/platform/davinci/
8796 F:      include/media/davinci/
8797
8798 SIS 190 ETHERNET DRIVER
8799 M:      Francois Romieu <romieu@fr.zoreil.com>
8800 L:      netdev@vger.kernel.org
8801 S:      Maintained
8802 F:      drivers/net/ethernet/sis/sis190.c
8803
8804 SIS 900/7016 FAST ETHERNET DRIVER
8805 M:      Daniele Venzano <venza@brownhat.org>
8806 W:      http://www.brownhat.org/sis900.html
8807 L:      netdev@vger.kernel.org
8808 S:      Maintained
8809 F:      drivers/net/ethernet/sis/sis900.*
8810
8811 SIS FRAMEBUFFER DRIVER
8812 M:      Thomas Winischhofer <thomas@winischhofer.net>
8813 W:      http://www.winischhofer.net/linuxsisvga.shtml
8814 S:      Maintained
8815 F:      Documentation/fb/sisfb.txt
8816 F:      drivers/video/fbdev/sis/
8817 F:      include/video/sisfb.h
8818
8819 SIS USB2VGA DRIVER
8820 M:      Thomas Winischhofer <thomas@winischhofer.net>
8821 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
8822 S:      Maintained
8823 F:      drivers/usb/misc/sisusbvga/
8824
8825 SLAB ALLOCATOR
8826 M:      Christoph Lameter <cl@linux.com>
8827 M:      Pekka Enberg <penberg@kernel.org>
8828 M:      David Rientjes <rientjes@google.com>
8829 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
8830 M:      Andrew Morton <akpm@linux-foundation.org>
8831 L:      linux-mm@kvack.org
8832 S:      Maintained
8833 F:      include/linux/sl?b*.h
8834 F:      mm/sl?b*
8835
8836 SLEEPABLE READ-COPY UPDATE (SRCU)
8837 M:      Lai Jiangshan <laijs@cn.fujitsu.com>
8838 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8839 M:      Josh Triplett <josh@joshtriplett.org>
8840 R:      Steven Rostedt <rostedt@goodmis.org>
8841 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8842 L:      linux-kernel@vger.kernel.org
8843 W:      http://www.rdrop.com/users/paulmck/RCU/
8844 S:      Supported
8845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8846 F:      include/linux/srcu.h
8847 F:      kernel/rcu/srcu.c
8848
8849 SMACK SECURITY MODULE
8850 M:      Casey Schaufler <casey@schaufler-ca.com>
8851 L:      linux-security-module@vger.kernel.org
8852 W:      http://schaufler-ca.com
8853 T:      git git://git.gitorious.org/smack-next/kernel.git
8854 S:      Maintained
8855 F:      Documentation/security/Smack.txt
8856 F:      security/smack/
8857
8858 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
8859 M:      Kevin Hilman <khilman@kernel.org>
8860 M:      Nishanth Menon <nm@ti.com>
8861 S:      Maintained
8862 F:      drivers/power/avs/
8863 F:      include/linux/power/smartreflex.h
8864 L:      linux-pm@vger.kernel.org
8865
8866 SMC91x ETHERNET DRIVER
8867 M:      Nicolas Pitre <nico@fluxnic.net>
8868 S:      Odd Fixes
8869 F:      drivers/net/ethernet/smsc/smc91x.*
8870
8871 SMIA AND SMIA++ IMAGE SENSOR DRIVER
8872 M:      Sakari Ailus <sakari.ailus@iki.fi>
8873 L:      linux-media@vger.kernel.org
8874 S:      Maintained
8875 F:      drivers/media/i2c/smiapp/
8876 F:      include/media/smiapp.h
8877 F:      drivers/media/i2c/smiapp-pll.c
8878 F:      drivers/media/i2c/smiapp-pll.h
8879
8880 SMM665 HARDWARE MONITOR DRIVER
8881 M:      Guenter Roeck <linux@roeck-us.net>
8882 L:      lm-sensors@lm-sensors.org
8883 S:      Maintained
8884 F:      Documentation/hwmon/smm665
8885 F:      drivers/hwmon/smm665.c
8886
8887 SMSC EMC2103 HARDWARE MONITOR DRIVER
8888 M:      Steve Glendinning <steve.glendinning@shawell.net>
8889 L:      lm-sensors@lm-sensors.org
8890 S:      Maintained
8891 F:      Documentation/hwmon/emc2103
8892 F:      drivers/hwmon/emc2103.c
8893
8894 SMSC SCH5627 HARDWARE MONITOR DRIVER
8895 M:      Hans de Goede <hdegoede@redhat.com>
8896 L:      lm-sensors@lm-sensors.org
8897 S:      Supported
8898 F:      Documentation/hwmon/sch5627
8899 F:      drivers/hwmon/sch5627.c
8900
8901 SMSC47B397 HARDWARE MONITOR DRIVER
8902 M:      Jean Delvare <jdelvare@suse.de>
8903 L:      lm-sensors@lm-sensors.org
8904 S:      Maintained
8905 F:      Documentation/hwmon/smsc47b397
8906 F:      drivers/hwmon/smsc47b397.c
8907
8908 SMSC911x ETHERNET DRIVER
8909 M:      Steve Glendinning <steve.glendinning@shawell.net>
8910 L:      netdev@vger.kernel.org
8911 S:      Maintained
8912 F:      include/linux/smsc911x.h
8913 F:      drivers/net/ethernet/smsc/smsc911x.*
8914
8915 SMSC9420 PCI ETHERNET DRIVER
8916 M:      Steve Glendinning <steve.glendinning@shawell.net>
8917 L:      netdev@vger.kernel.org
8918 S:      Maintained
8919 F:      drivers/net/ethernet/smsc/smsc9420.*
8920
8921 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
8922 M:      Steve Glendinning <steve.glendinning@shawell.net>
8923 L:      linux-fbdev@vger.kernel.org
8924 S:      Maintained
8925 F:      drivers/video/fbdev/smscufx.c
8926
8927 SOC-CAMERA V4L2 SUBSYSTEM
8928 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
8929 L:      linux-media@vger.kernel.org
8930 T:      git git://linuxtv.org/media_tree.git
8931 S:      Maintained
8932 F:      include/media/soc*
8933 F:      drivers/media/i2c/soc_camera/
8934 F:      drivers/media/platform/soc_camera/
8935
8936 SOEKRIS NET48XX LED SUPPORT
8937 M:      Chris Boot <bootc@bootc.net>
8938 S:      Maintained
8939 F:      drivers/leds/leds-net48xx.c
8940
8941 SOFTLOGIC 6x10 MPEG CODEC
8942 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
8943 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
8944 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
8945 L:      linux-media@vger.kernel.org
8946 S:      Supported
8947 F:      drivers/media/pci/solo6x10/
8948
8949 SOFTWARE RAID (Multiple Disks) SUPPORT
8950 M:      Neil Brown <neilb@suse.de>
8951 L:      linux-raid@vger.kernel.org
8952 S:      Supported
8953 F:      drivers/md/
8954 F:      include/linux/raid/
8955 F:      include/uapi/linux/raid/
8956
8957 SONIC NETWORK DRIVER
8958 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
8959 L:      netdev@vger.kernel.org
8960 S:      Maintained
8961 F:      drivers/net/ethernet/natsemi/sonic.*
8962
8963 SONICS SILICON BACKPLANE DRIVER (SSB)
8964 M:      Michael Buesch <m@bues.ch>
8965 L:      netdev@vger.kernel.org
8966 S:      Maintained
8967 F:      drivers/ssb/
8968 F:      include/linux/ssb/
8969
8970 SONY VAIO CONTROL DEVICE DRIVER
8971 M:      Mattia Dongili <malattia@linux.it>
8972 L:      platform-driver-x86@vger.kernel.org
8973 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
8974 S:      Maintained
8975 F:      Documentation/laptops/sony-laptop.txt
8976 F:      drivers/char/sonypi.c
8977 F:      drivers/platform/x86/sony-laptop.c
8978 F:      include/linux/sony-laptop.h
8979
8980 SONY MEMORYSTICK CARD SUPPORT
8981 M:      Alex Dubov <oakad@yahoo.com>
8982 W:      http://tifmxx.berlios.de/
8983 S:      Maintained
8984 F:      drivers/memstick/host/tifm_ms.c
8985
8986 SONY MEMORYSTICK STANDARD SUPPORT
8987 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8988 S:      Maintained
8989 F:      drivers/memstick/core/ms_block.*
8990
8991 SOUND
8992 M:      Jaroslav Kysela <perex@perex.cz>
8993 M:      Takashi Iwai <tiwai@suse.de>
8994 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8995 W:      http://www.alsa-project.org/
8996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8997 T:      git git://git.alsa-project.org/alsa-kernel.git
8998 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
8999 S:      Maintained
9000 F:      Documentation/sound/
9001 F:      include/sound/
9002 F:      include/uapi/sound/
9003 F:      sound/
9004
9005 SOUND - COMPRESSED AUDIO
9006 M:      Vinod Koul <vinod.koul@intel.com>
9007 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9009 S:      Supported
9010 F:      Documentation/sound/alsa/compress_offload.txt
9011 F:      include/sound/compress_driver.h
9012 F:      include/uapi/sound/compress_*
9013 F:      sound/core/compress_offload.c
9014 F:      sound/soc/soc-compress.c
9015
9016 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9017 M:      Liam Girdwood <lgirdwood@gmail.com>
9018 M:      Mark Brown <broonie@kernel.org>
9019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9020 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9021 W:      http://alsa-project.org/main/index.php/ASoC
9022 S:      Supported
9023 F:      Documentation/sound/alsa/soc/
9024 F:      sound/soc/
9025 F:      include/sound/soc*
9026
9027 SOUND - DMAENGINE HELPERS
9028 M:      Lars-Peter Clausen <lars@metafoo.de>
9029 S:      Supported
9030 F:      include/sound/dmaengine_pcm.h
9031 F:      sound/core/pcm_dmaengine.c
9032 F:      sound/soc/soc-generic-dmaengine-pcm.c
9033
9034 SP2 MEDIA DRIVER
9035 M:      Olli Salonen <olli.salonen@iki.fi>
9036 L:      linux-media@vger.kernel.org
9037 W:      http://linuxtv.org/
9038 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9039 S:      Maintained
9040 F:      drivers/media/dvb-frontends/sp2*
9041
9042 SPARC + UltraSPARC (sparc/sparc64)
9043 M:      "David S. Miller" <davem@davemloft.net>
9044 L:      sparclinux@vger.kernel.org
9045 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9048 S:      Maintained
9049 F:      arch/sparc/
9050 F:      drivers/sbus/
9051
9052 SPARC SERIAL DRIVERS
9053 M:      "David S. Miller" <davem@davemloft.net>
9054 L:      sparclinux@vger.kernel.org
9055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9057 S:      Maintained
9058 F:      include/linux/sunserialcore.h
9059 F:      drivers/tty/serial/suncore.c
9060 F:      drivers/tty/serial/sunhv.c
9061 F:      drivers/tty/serial/sunsab.c
9062 F:      drivers/tty/serial/sunsab.h
9063 F:      drivers/tty/serial/sunsu.c
9064 F:      drivers/tty/serial/sunzilog.c
9065 F:      drivers/tty/serial/sunzilog.h
9066
9067 SPARSE CHECKER
9068 M:      "Christopher Li" <sparse@chrisli.org>
9069 L:      linux-sparse@vger.kernel.org
9070 W:      https://sparse.wiki.kernel.org/
9071 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9072 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9073 S:      Maintained
9074 F:      include/linux/compiler.h
9075
9076 SPEAR PLATFORM SUPPORT
9077 M:      Viresh Kumar <viresh.linux@gmail.com>
9078 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9079 L:      spear-devel@list.st.com
9080 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9081 W:      http://www.st.com/spear
9082 S:      Maintained
9083 F:      arch/arm/mach-spear/
9084
9085 SPEAR CLOCK FRAMEWORK SUPPORT
9086 M:      Viresh Kumar <viresh.linux@gmail.com>
9087 L:      spear-devel@list.st.com
9088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9089 W:      http://www.st.com/spear
9090 S:      Maintained
9091 F:      drivers/clk/spear/
9092
9093 SPI SUBSYSTEM
9094 M:      Mark Brown <broonie@kernel.org>
9095 L:      linux-spi@vger.kernel.org
9096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9097 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9098 S:      Maintained
9099 F:      Documentation/spi/
9100 F:      drivers/spi/
9101 F:      include/linux/spi/
9102 F:      include/uapi/linux/spi/
9103
9104 SPIDERNET NETWORK DRIVER for CELL
9105 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9106 M:      Jens Osterkamp <jens@de.ibm.com>
9107 L:      netdev@vger.kernel.org
9108 S:      Supported
9109 F:      Documentation/networking/spider_net.txt
9110 F:      drivers/net/ethernet/toshiba/spider_net*
9111
9112 SPU FILE SYSTEM
9113 M:      Jeremy Kerr <jk@ozlabs.org>
9114 L:      linuxppc-dev@lists.ozlabs.org
9115 L:      cbe-oss-dev@lists.ozlabs.org
9116 W:      http://www.ibm.com/developerworks/power/cell/
9117 S:      Supported
9118 F:      Documentation/filesystems/spufs.txt
9119 F:      arch/powerpc/platforms/cell/spufs/
9120
9121 SQUASHFS FILE SYSTEM
9122 M:      Phillip Lougher <phillip@squashfs.org.uk>
9123 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9124 W:      http://squashfs.org.uk
9125 S:      Maintained
9126 F:      Documentation/filesystems/squashfs.txt
9127 F:      fs/squashfs/
9128
9129 SRM (Alpha) environment access
9130 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9131 S:      Maintained
9132 F:      arch/alpha/kernel/srm_env.c
9133
9134 STABLE BRANCH
9135 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9136 L:      stable@vger.kernel.org
9137 S:      Supported
9138 F:      Documentation/stable_kernel_rules.txt
9139
9140 STAGING SUBSYSTEM
9141 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9143 L:      devel@driverdev.osuosl.org
9144 S:      Supported
9145 F:      drivers/staging/
9146
9147 STAGING - COMEDI
9148 M:      Ian Abbott <abbotti@mev.co.uk>
9149 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9150 S:      Odd Fixes
9151 F:      drivers/staging/comedi/
9152
9153 STAGING - FLARION FT1000 DRIVERS
9154 M:      Marek Belisko <marek.belisko@gmail.com>
9155 S:      Odd Fixes
9156 F:      drivers/staging/ft1000/
9157
9158 STAGING - INDUSTRIAL IO
9159 M:      Jonathan Cameron <jic23@kernel.org>
9160 L:      linux-iio@vger.kernel.org
9161 S:      Odd Fixes
9162 F:      drivers/staging/iio/
9163
9164 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9165 M:      Jarod Wilson <jarod@wilsonet.com>
9166 W:      http://www.lirc.org/
9167 S:      Odd Fixes
9168 F:      drivers/staging/media/lirc/
9169
9170 STAGING - LUSTRE PARALLEL FILESYSTEM
9171 M:      Oleg Drokin <oleg.drokin@intel.com>
9172 M:      Andreas Dilger <andreas.dilger@intel.com>
9173 L:      HPDD-discuss@lists.01.org (moderated for non-subscribers)
9174 W:      http://lustre.opensfs.org/
9175 S:      Maintained
9176 F:      drivers/staging/lustre
9177
9178 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9179 M:      Julian Andres Klode <jak@jak-linux.org>
9180 M:      Marc Dietrich <marvin24@gmx.de>
9181 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9182 L:      linux-tegra@vger.kernel.org
9183 S:      Maintained
9184 F:      drivers/staging/nvec/
9185
9186 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9187 M:      Jens Frederich <jfrederich@gmail.com>
9188 M:      Daniel Drake <dsd@laptop.org>
9189 M:      Jon Nettleton <jon.nettleton@gmail.com>
9190 W:      http://wiki.laptop.org/go/DCON
9191 S:      Maintained
9192 F:      drivers/staging/olpc_dcon/
9193
9194 STAGING - OZMO DEVICES USB OVER WIFI DRIVER
9195 M:      Shigekatsu Tateno <shigekatsu.tateno@atmel.com>
9196 S:      Maintained
9197 F:      drivers/staging/ozwpan/
9198
9199 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9200 M:      Willy Tarreau <willy@meta-x.org>
9201 S:      Odd Fixes
9202 F:      drivers/staging/panel/
9203
9204 STAGING - REALTEK RTL8712U DRIVERS
9205 M:      Larry Finger <Larry.Finger@lwfinger.net>
9206 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9207 S:      Odd Fixes
9208 F:      drivers/staging/rtl8712/
9209
9210 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9211 M:      Larry Finger <Larry.Finger@lwfinger.net>
9212 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9213 L:      linux-wireless@vger.kernel.org
9214 S:      Maintained
9215 F:      drivers/staging/rtl8723au/
9216
9217 STAGING - SLICOSS
9218 M:      Lior Dotan <liodot@gmail.com>
9219 M:      Christopher Harrer <charrer@alacritech.com>
9220 S:      Odd Fixes
9221 F:      drivers/staging/slicoss/
9222
9223 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9224 M:      William Hubbs <w.d.hubbs@gmail.com>
9225 M:      Chris Brannon <chris@the-brannons.com>
9226 M:      Kirk Reiser <kirk@reisers.ca>
9227 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9228 L:      speakup@linux-speakup.org
9229 W:      http://www.linux-speakup.org/
9230 S:      Odd Fixes
9231 F:      drivers/staging/speakup/
9232
9233 STAGING - VIA VT665X DRIVERS
9234 M:      Forest Bond <forest@alittletooquiet.net>
9235 S:      Odd Fixes
9236 F:      drivers/staging/vt665?/
9237
9238 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
9239 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
9240 S:      Odd Fixes
9241 F:      drivers/staging/xgifb/
9242
9243 STARFIRE/DURALAN NETWORK DRIVER
9244 M:      Ion Badulescu <ionut@badula.org>
9245 S:      Odd Fixes
9246 F:      drivers/net/ethernet/adaptec/starfire*
9247
9248 SUN3/3X
9249 M:      Sam Creasey <sammy@sammy.net>
9250 W:      http://sammy.net/sun3/
9251 S:      Maintained
9252 F:      arch/m68k/kernel/*sun3*
9253 F:      arch/m68k/sun3*/
9254 F:      arch/m68k/include/asm/sun3*
9255 F:      drivers/net/ethernet/i825xx/sun3*
9256
9257 SUNDANCE NETWORK DRIVER
9258 M:      Denis Kirjanov <kda@linux-powerpc.org>
9259 L:      netdev@vger.kernel.org
9260 S:      Maintained
9261 F:      drivers/net/ethernet/dlink/sundance.c
9262
9263 SUPERH
9264 L:      linux-sh@vger.kernel.org
9265 Q:      http://patchwork.kernel.org/project/linux-sh/list/
9266 S:      Orphan
9267 F:      Documentation/sh/
9268 F:      arch/sh/
9269 F:      drivers/sh/
9270
9271 SUSPEND TO RAM
9272 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9273 M:      Len Brown <len.brown@intel.com>
9274 M:      Pavel Machek <pavel@ucw.cz>
9275 L:      linux-pm@vger.kernel.org
9276 S:      Supported
9277 F:      Documentation/power/
9278 F:      arch/x86/kernel/acpi/
9279 F:      drivers/base/power/
9280 F:      kernel/power/
9281 F:      include/linux/suspend.h
9282 F:      include/linux/freezer.h
9283 F:      include/linux/pm.h
9284
9285 SVGA HANDLING
9286 M:      Martin Mares <mj@ucw.cz>
9287 L:      linux-video@atrey.karlin.mff.cuni.cz
9288 S:      Maintained
9289 F:      Documentation/svga.txt
9290 F:      arch/x86/boot/video*
9291
9292 SWIOTLB SUBSYSTEM
9293 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9294 L:      linux-kernel@vger.kernel.org
9295 S:      Supported
9296 F:      lib/swiotlb.c
9297 F:      arch/*/kernel/pci-swiotlb.c
9298 F:      include/linux/swiotlb.h
9299
9300 SWITCHDEV
9301 M:      Jiri Pirko <jiri@resnulli.us>
9302 L:      netdev@vger.kernel.org
9303 S:      Supported
9304 F:      net/switchdev/
9305 F:      include/net/switchdev.h
9306
9307 SYNOPSYS ARC ARCHITECTURE
9308 M:      Vineet Gupta <vgupta@synopsys.com>
9309 S:      Supported
9310 F:      arch/arc/
9311 F:      Documentation/devicetree/bindings/arc/
9312 F:      drivers/tty/serial/arc_uart.c
9313
9314 SYSV FILESYSTEM
9315 M:      Christoph Hellwig <hch@infradead.org>
9316 S:      Maintained
9317 F:      Documentation/filesystems/sysv-fs.txt
9318 F:      fs/sysv/
9319 F:      include/linux/sysv_fs.h
9320
9321 TARGET SUBSYSTEM
9322 M:      Nicholas A. Bellinger <nab@linux-iscsi.org>
9323 L:      linux-scsi@vger.kernel.org
9324 L:      target-devel@vger.kernel.org
9325 W:      http://www.linux-iscsi.org
9326 W:      http://groups.google.com/group/linux-iscsi-target-dev
9327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9328 S:      Supported
9329 F:      drivers/target/
9330 F:      include/target/
9331 F:      Documentation/target/
9332
9333 TASKSTATS STATISTICS INTERFACE
9334 M:      Balbir Singh <bsingharora@gmail.com>
9335 S:      Maintained
9336 F:      Documentation/accounting/taskstats*
9337 F:      include/linux/taskstats*
9338 F:      kernel/taskstats.c
9339
9340 TC CLASSIFIER
9341 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9342 L:      netdev@vger.kernel.org
9343 S:      Maintained
9344 F:      include/net/pkt_cls.h
9345 F:      include/uapi/linux/pkt_cls.h
9346 F:      net/sched/
9347
9348 TCP LOW PRIORITY MODULE
9349 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
9350 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
9351 W:      http://tcp-lp-mod.sourceforge.net/
9352 S:      Maintained
9353 F:      net/ipv4/tcp_lp.c
9354
9355 TDA10071 MEDIA DRIVER
9356 M:      Antti Palosaari <crope@iki.fi>
9357 L:      linux-media@vger.kernel.org
9358 W:      http://linuxtv.org/
9359 W:      http://palosaari.fi/linux/
9360 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9361 T:      git git://linuxtv.org/anttip/media_tree.git
9362 S:      Maintained
9363 F:      drivers/media/dvb-frontends/tda10071*
9364
9365 TDA18212 MEDIA DRIVER
9366 M:      Antti Palosaari <crope@iki.fi>
9367 L:      linux-media@vger.kernel.org
9368 W:      http://linuxtv.org/
9369 W:      http://palosaari.fi/linux/
9370 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9371 T:      git git://linuxtv.org/anttip/media_tree.git
9372 S:      Maintained
9373 F:      drivers/media/tuners/tda18212*
9374
9375 TDA18218 MEDIA DRIVER
9376 M:      Antti Palosaari <crope@iki.fi>
9377 L:      linux-media@vger.kernel.org
9378 W:      http://linuxtv.org/
9379 W:      http://palosaari.fi/linux/
9380 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9381 T:      git git://linuxtv.org/anttip/media_tree.git
9382 S:      Maintained
9383 F:      drivers/media/tuners/tda18218*
9384
9385 TDA18271 MEDIA DRIVER
9386 M:      Michael Krufky <mkrufky@linuxtv.org>
9387 L:      linux-media@vger.kernel.org
9388 W:      http://linuxtv.org/
9389 W:      http://github.com/mkrufky
9390 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9391 T:      git git://linuxtv.org/mkrufky/tuners.git
9392 S:      Maintained
9393 F:      drivers/media/tuners/tda18271*
9394
9395 TDA827x MEDIA DRIVER
9396 M:      Michael Krufky <mkrufky@linuxtv.org>
9397 L:      linux-media@vger.kernel.org
9398 W:      http://linuxtv.org/
9399 W:      http://github.com/mkrufky
9400 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9401 T:      git git://linuxtv.org/mkrufky/tuners.git
9402 S:      Maintained
9403 F:      drivers/media/tuners/tda8290.*
9404
9405 TDA8290 MEDIA DRIVER
9406 M:      Michael Krufky <mkrufky@linuxtv.org>
9407 L:      linux-media@vger.kernel.org
9408 W:      http://linuxtv.org/
9409 W:      http://github.com/mkrufky
9410 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9411 T:      git git://linuxtv.org/mkrufky/tuners.git
9412 S:      Maintained
9413 F:      drivers/media/tuners/tda8290.*
9414
9415 TDA9840 MEDIA DRIVER
9416 M:      Hans Verkuil <hverkuil@xs4all.nl>
9417 L:      linux-media@vger.kernel.org
9418 T:      git git://linuxtv.org/media_tree.git
9419 W:      http://linuxtv.org
9420 S:      Maintained
9421 F:      drivers/media/i2c/tda9840*
9422
9423 TEA5761 TUNER DRIVER
9424 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9425 L:      linux-media@vger.kernel.org
9426 W:      http://linuxtv.org
9427 T:      git git://linuxtv.org/media_tree.git
9428 S:      Odd fixes
9429 F:      drivers/media/tuners/tea5761.*
9430
9431 TEA5767 TUNER DRIVER
9432 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9433 L:      linux-media@vger.kernel.org
9434 W:      http://linuxtv.org
9435 T:      git git://linuxtv.org/media_tree.git
9436 S:      Maintained
9437 F:      drivers/media/tuners/tea5767.*
9438
9439 TEA6415C MEDIA DRIVER
9440 M:      Hans Verkuil <hverkuil@xs4all.nl>
9441 L:      linux-media@vger.kernel.org
9442 T:      git git://linuxtv.org/media_tree.git
9443 W:      http://linuxtv.org
9444 S:      Maintained
9445 F:      drivers/media/i2c/tea6415c*
9446
9447 TEA6420 MEDIA DRIVER
9448 M:      Hans Verkuil <hverkuil@xs4all.nl>
9449 L:      linux-media@vger.kernel.org
9450 T:      git git://linuxtv.org/media_tree.git
9451 W:      http://linuxtv.org
9452 S:      Maintained
9453 F:      drivers/media/i2c/tea6420*
9454
9455 TEAM DRIVER
9456 M:      Jiri Pirko <jiri@resnulli.us>
9457 L:      netdev@vger.kernel.org
9458 S:      Supported
9459 F:      drivers/net/team/
9460 F:      include/linux/if_team.h
9461 F:      include/uapi/linux/if_team.h
9462
9463 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
9464 M:      Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
9465 S:      Maintained
9466 F:      arch/x86/platform/ts5500/
9467
9468 TECHNOTREND USB IR RECEIVER
9469 M:      Sean Young <sean@mess.org>
9470 L:      linux-media@vger.kernel.org
9471 S:      Maintained
9472 F:      drivers/media/rc/ttusbir.c
9473
9474 TEGRA ARCHITECTURE SUPPORT
9475 M:      Stephen Warren <swarren@wwwdotorg.org>
9476 M:      Thierry Reding <thierry.reding@gmail.com>
9477 M:      Alexandre Courbot <gnurou@gmail.com>
9478 L:      linux-tegra@vger.kernel.org
9479 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
9480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
9481 S:      Supported
9482 N:      [^a-z]tegra
9483
9484 TEGRA CLOCK DRIVER
9485 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
9486 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
9487 S:      Supported
9488 F:      drivers/clk/tegra/
9489
9490 TEGRA DMA DRIVER
9491 M:      Laxman Dewangan <ldewangan@nvidia.com>
9492 S:      Supported
9493 F:      drivers/dma/tegra20-apb-dma.c
9494
9495 TEGRA I2C DRIVER
9496 M:      Laxman Dewangan <ldewangan@nvidia.com>
9497 S:      Supported
9498 F:      drivers/i2c/busses/i2c-tegra.c
9499
9500 TEGRA IOMMU DRIVERS
9501 M:      Hiroshi Doyu <hdoyu@nvidia.com>
9502 S:      Supported
9503 F:      drivers/iommu/tegra*
9504
9505 TEGRA KBC DRIVER
9506 M:      Rakesh Iyer <riyer@nvidia.com>
9507 M:      Laxman Dewangan <ldewangan@nvidia.com>
9508 S:      Supported
9509 F:      drivers/input/keyboard/tegra-kbc.c
9510
9511 TEGRA PWM DRIVER
9512 M:      Thierry Reding <thierry.reding@gmail.com>
9513 S:      Supported
9514 F:      drivers/pwm/pwm-tegra.c
9515
9516 TEGRA SERIAL DRIVER
9517 M:      Laxman Dewangan <ldewangan@nvidia.com>
9518 S:      Supported
9519 F:      drivers/tty/serial/serial-tegra.c
9520
9521 TEGRA SPI DRIVER
9522 M:      Laxman Dewangan <ldewangan@nvidia.com>
9523 S:      Supported
9524 F:      drivers/spi/spi-tegra*
9525
9526 TEHUTI ETHERNET DRIVER
9527 M:      Andy Gospodarek <andy@greyhouse.net>
9528 L:      netdev@vger.kernel.org
9529 S:      Supported
9530 F:      drivers/net/ethernet/tehuti/*
9531
9532 Telecom Clock Driver for MCPL0010
9533 M:      Mark Gross <mark.gross@intel.com>
9534 S:      Supported
9535 F:      drivers/char/tlclk.c
9536
9537 TENSILICA XTENSA PORT (xtensa)
9538 M:      Chris Zankel <chris@zankel.net>
9539 M:      Max Filippov <jcmvbkbc@gmail.com>
9540 L:      linux-xtensa@linux-xtensa.org
9541 S:      Maintained
9542 F:      arch/xtensa/
9543 F:      drivers/irqchip/irq-xtensa-*
9544
9545 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
9546 M:      Hans Verkuil <hverkuil@xs4all.nl>
9547 L:      linux-media@vger.kernel.org
9548 T:      git git://linuxtv.org/media_tree.git
9549 W:      http://linuxtv.org
9550 S:      Maintained
9551 F:      drivers/media/radio/radio-raremono.c
9552
9553 THERMAL
9554 M:      Zhang Rui <rui.zhang@intel.com>
9555 M:      Eduardo Valentin <edubezval@gmail.com>
9556 L:      linux-pm@vger.kernel.org
9557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
9558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
9559 Q:      https://patchwork.kernel.org/project/linux-pm/list/
9560 S:      Supported
9561 F:      drivers/thermal/
9562 F:      include/linux/thermal.h
9563 F:      include/uapi/linux/thermal.h
9564 F:      include/linux/cpu_cooling.h
9565 F:      Documentation/devicetree/bindings/thermal/
9566
9567 THINGM BLINK(1) USB RGB LED DRIVER
9568 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9569 S:      Maintained
9570 F:      drivers/hid/hid-thingm.c
9571
9572 THINKPAD ACPI EXTRAS DRIVER
9573 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
9574 L:      ibm-acpi-devel@lists.sourceforge.net
9575 L:      platform-driver-x86@vger.kernel.org
9576 W:      http://ibm-acpi.sourceforge.net
9577 W:      http://thinkwiki.org/wiki/Ibm-acpi
9578 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
9579 S:      Maintained
9580 F:      drivers/platform/x86/thinkpad_acpi.c
9581
9582 TI BANDGAP AND THERMAL DRIVER
9583 M:      Eduardo Valentin <edubezval@gmail.com>
9584 L:      linux-pm@vger.kernel.org
9585 L:      linux-omap@vger.kernel.org
9586 S:      Maintained
9587 F:      drivers/thermal/ti-soc-thermal/
9588
9589 TI CLOCK DRIVER
9590 M:      Tero Kristo <t-kristo@ti.com>
9591 L:      linux-omap@vger.kernel.org
9592 S:      Maintained
9593 F:      drivers/clk/ti/
9594 F:      include/linux/clk/ti.h
9595
9596 TI FLASH MEDIA INTERFACE DRIVER
9597 M:      Alex Dubov <oakad@yahoo.com>
9598 S:      Maintained
9599 F:      drivers/misc/tifm*
9600 F:      drivers/mmc/host/tifm_sd.c
9601 F:      include/linux/tifm.h
9602
9603 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
9604 M:      Santosh Shilimkar <ssantosh@kernel.org>
9605 L:      linux-kernel@vger.kernel.org
9606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9607 S:      Maintained
9608 F:      drivers/soc/ti/*
9609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
9610
9611
9612 TI LM49xxx FAMILY ASoC CODEC DRIVERS
9613 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
9614 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
9615 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9616 S:      Maintained
9617 F:      sound/soc/codecs/lm49453*
9618 F:      sound/soc/codecs/isabelle*
9619
9620 TI LP855x BACKLIGHT DRIVER
9621 M:      Milo Kim <milo.kim@ti.com>
9622 S:      Maintained
9623 F:      Documentation/backlight/lp855x-driver.txt
9624 F:      drivers/video/backlight/lp855x_bl.c
9625 F:      include/linux/platform_data/lp855x.h
9626
9627 TI LP8727 CHARGER DRIVER
9628 M:      Milo Kim <milo.kim@ti.com>
9629 S:      Maintained
9630 F:      drivers/power/lp8727_charger.c
9631 F:      include/linux/platform_data/lp8727.h
9632
9633 TI LP8788 MFD DRIVER
9634 M:      Milo Kim <milo.kim@ti.com>
9635 S:      Maintained
9636 F:      drivers/iio/adc/lp8788_adc.c
9637 F:      drivers/leds/leds-lp8788.c
9638 F:      drivers/mfd/lp8788*.c
9639 F:      drivers/power/lp8788-charger.c
9640 F:      drivers/regulator/lp8788-*.c
9641 F:      include/linux/mfd/lp8788*.h
9642
9643 TI TWL4030 SERIES SOC CODEC DRIVER
9644 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
9645 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9646 S:      Maintained
9647 F:      sound/soc/codecs/twl4030*
9648
9649 TI WILINK WIRELESS DRIVERS
9650 L:      linux-wireless@vger.kernel.org
9651 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
9652 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
9653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
9654 S:      Orphan
9655 F:      drivers/net/wireless/ti/
9656 F:      include/linux/wl12xx.h
9657
9658 TIPC NETWORK LAYER
9659 M:      Jon Maloy <jon.maloy@ericsson.com>
9660 M:      Allan Stephens <allan.stephens@windriver.com>
9661 L:      netdev@vger.kernel.org (core kernel code)
9662 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
9663 W:      http://tipc.sourceforge.net/
9664 S:      Maintained
9665 F:      include/uapi/linux/tipc*.h
9666 F:      net/tipc/
9667
9668 TILE ARCHITECTURE
9669 M:      Chris Metcalf <cmetcalf@ezchip.com>
9670 W:      http://www.tilera.com/scm/
9671 S:      Supported
9672 F:      arch/tile/
9673 F:      drivers/char/tile-srom.c
9674 F:      drivers/edac/tile_edac.c
9675 F:      drivers/net/ethernet/tile/
9676 F:      drivers/rtc/rtc-tile.c
9677 F:      drivers/tty/hvc/hvc_tile.c
9678 F:      drivers/tty/serial/tilegx.c
9679 F:      drivers/usb/host/*-tilegx.c
9680 F:      include/linux/usb/tilegx.h
9681
9682 TLAN NETWORK DRIVER
9683 M:      Samuel Chessman <chessman@tux.org>
9684 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
9685 W:      http://sourceforge.net/projects/tlan/
9686 S:      Maintained
9687 F:      Documentation/networking/tlan.txt
9688 F:      drivers/net/ethernet/ti/tlan.*
9689
9690 TOMOYO SECURITY MODULE
9691 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
9692 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
9693 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
9694 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
9695 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
9696 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
9697 W:      http://tomoyo.sourceforge.jp/
9698 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
9699 S:      Maintained
9700 F:      security/tomoyo/
9701
9702 TOPSTAR LAPTOP EXTRAS DRIVER
9703 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9704 L:      platform-driver-x86@vger.kernel.org
9705 S:      Maintained
9706 F:      drivers/platform/x86/topstar-laptop.c
9707
9708 TOSHIBA ACPI EXTRAS DRIVER
9709 L:      platform-driver-x86@vger.kernel.org
9710 S:      Orphan
9711 F:      drivers/platform/x86/toshiba_acpi.c
9712
9713 TOSHIBA SMM DRIVER
9714 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
9715 L:      tlinux-users@tce.toshiba-dme.co.jp
9716 W:      http://www.buzzard.org.uk/toshiba/
9717 S:      Maintained
9718 F:      drivers/char/toshiba.c
9719 F:      include/linux/toshiba.h
9720 F:      include/uapi/linux/toshiba.h
9721
9722 TMIO MMC DRIVER
9723 M:      Ian Molton <ian.molton@codethink.co.uk>
9724 L:      linux-mmc@vger.kernel.org
9725 S:      Maintained
9726 F:      drivers/mmc/host/tmio_mmc*
9727 F:      drivers/mmc/host/sh_mobile_sdhi.c
9728 F:      include/linux/mmc/tmio.h
9729 F:      include/linux/mmc/sh_mobile_sdhi.h
9730
9731 TMP401 HARDWARE MONITOR DRIVER
9732 M:      Guenter Roeck <linux@roeck-us.net>
9733 L:      lm-sensors@lm-sensors.org
9734 S:      Maintained
9735 F:      Documentation/hwmon/tmp401
9736 F:      drivers/hwmon/tmp401.c
9737
9738 TMPFS (SHMEM FILESYSTEM)
9739 M:      Hugh Dickins <hughd@google.com>
9740 L:      linux-mm@kvack.org
9741 S:      Maintained
9742 F:      include/linux/shmem_fs.h
9743 F:      mm/shmem.c
9744
9745 TM6000 VIDEO4LINUX DRIVER
9746 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9747 L:      linux-media@vger.kernel.org
9748 W:      http://linuxtv.org
9749 T:      git git://linuxtv.org/media_tree.git
9750 S:      Odd fixes
9751 F:      drivers/media/usb/tm6000/
9752
9753 TW68 VIDEO4LINUX DRIVER
9754 M:      Hans Verkuil <hverkuil@xs4all.nl>
9755 L:      linux-media@vger.kernel.org
9756 T:      git git://linuxtv.org/media_tree.git
9757 W:      http://linuxtv.org
9758 S:      Odd Fixes
9759 F:      drivers/media/pci/tw68/
9760
9761 TPM DEVICE DRIVER
9762 M:      Peter Huewe <peterhuewe@gmx.de>
9763 M:      Ashley Lai <ashley@ashleylai.com>
9764 M:      Marcel Selhorst <tpmdd@selhorst.net>
9765 W:      http://tpmdd.sourceforge.net
9766 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
9767 S:      Maintained
9768 F:      drivers/char/tpm/
9769
9770 TRACING
9771 M:      Steven Rostedt <rostedt@goodmis.org>
9772 M:      Ingo Molnar <mingo@redhat.com>
9773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
9774 S:      Maintained
9775 F:      Documentation/trace/ftrace.txt
9776 F:      arch/*/*/*/ftrace.h
9777 F:      arch/*/kernel/ftrace.c
9778 F:      include/*/ftrace.h
9779 F:      include/linux/trace*.h
9780 F:      include/trace/
9781 F:      kernel/trace/
9782 F:      tools/testing/selftests/ftrace/
9783
9784 TRIVIAL PATCHES
9785 M:      Jiri Kosina <trivial@kernel.org>
9786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
9787 S:      Maintained
9788 K:      ^Subject:.*(?i)trivial
9789
9790 TTY LAYER
9791 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9792 M:      Jiri Slaby <jslaby@suse.cz>
9793 S:      Supported
9794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
9795 F:      drivers/tty/
9796 F:      drivers/tty/serial/serial_core.c
9797 F:      include/linux/serial_core.h
9798 F:      include/linux/serial.h
9799 F:      include/linux/tty.h
9800 F:      include/uapi/linux/serial_core.h
9801 F:      include/uapi/linux/serial.h
9802 F:      include/uapi/linux/tty.h
9803
9804 TUA9001 MEDIA DRIVER
9805 M:      Antti Palosaari <crope@iki.fi>
9806 L:      linux-media@vger.kernel.org
9807 W:      http://linuxtv.org/
9808 W:      http://palosaari.fi/linux/
9809 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9810 T:      git git://linuxtv.org/anttip/media_tree.git
9811 S:      Maintained
9812 F:      drivers/media/tuners/tua9001*
9813
9814 TULIP NETWORK DRIVERS
9815 M:      Grant Grundler <grundler@parisc-linux.org>
9816 L:      netdev@vger.kernel.org
9817 S:      Maintained
9818 F:      drivers/net/ethernet/dec/tulip/
9819
9820 TUN/TAP driver
9821 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
9822 W:      http://vtun.sourceforge.net/tun
9823 S:      Maintained
9824 F:      Documentation/networking/tuntap.txt
9825 F:      arch/um/os-Linux/drivers/
9826
9827 TURBOCHANNEL SUBSYSTEM
9828 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
9829 M:      Ralf Baechle <ralf@linux-mips.org>
9830 L:      linux-mips@linux-mips.org
9831 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
9832 S:      Maintained
9833 F:      drivers/tc/
9834 F:      include/linux/tc.h
9835
9836 U14-34F SCSI DRIVER
9837 M:      Dario Ballabio <ballabio_dario@emc.com>
9838 L:      linux-scsi@vger.kernel.org
9839 S:      Maintained
9840 F:      drivers/scsi/u14-34f.c
9841
9842 UBI FILE SYSTEM (UBIFS)
9843 M:      Artem Bityutskiy <dedekind1@gmail.com>
9844 M:      Adrian Hunter <adrian.hunter@intel.com>
9845 L:      linux-mtd@lists.infradead.org
9846 T:      git git://git.infradead.org/ubifs-2.6.git
9847 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
9848 S:      Maintained
9849 F:      Documentation/filesystems/ubifs.txt
9850 F:      fs/ubifs/
9851
9852 UCLINUX (AND M68KNOMMU)
9853 M:      Greg Ungerer <gerg@uclinux.org>
9854 W:      http://www.uclinux.org/
9855 L:      uclinux-dev@uclinux.org  (subscribers-only)
9856 S:      Maintained
9857 F:      arch/m68k/*/*_no.*
9858 F:      arch/m68k/include/asm/*_no.*
9859
9860 UDF FILESYSTEM
9861 M:      Jan Kara <jack@suse.cz>
9862 S:      Maintained
9863 F:      Documentation/filesystems/udf.txt
9864 F:      fs/udf/
9865
9866 UFS FILESYSTEM
9867 M:      Evgeniy Dushistov <dushistov@mail.ru>
9868 S:      Maintained
9869 F:      Documentation/filesystems/ufs.txt
9870 F:      fs/ufs/
9871
9872 UHID USERSPACE HID IO DRIVER:
9873 M:      David Herrmann <dh.herrmann@googlemail.com>
9874 L:      linux-input@vger.kernel.org
9875 S:      Maintained
9876 F:      drivers/hid/uhid.c
9877 F:      include/uapi/linux/uhid.h
9878
9879 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
9880 L:      linux-usb@vger.kernel.org
9881 S:      Orphan
9882 F:      drivers/uwb/
9883 F:      include/linux/uwb.h
9884 F:      include/linux/uwb/
9885
9886 UNICORE32 ARCHITECTURE:
9887 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
9888 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
9889 S:      Maintained
9890 T:      git git://github.com/gxt/linux.git
9891 F:      arch/unicore32/
9892
9893 UNIFDEF
9894 M:      Tony Finch <dot@dotat.at>
9895 W:      http://dotat.at/prog/unifdef
9896 S:      Maintained
9897 F:      scripts/unifdef.c
9898
9899 UNIFORM CDROM DRIVER
9900 M:      Jens Axboe <axboe@kernel.dk>
9901 W:      http://www.kernel.dk
9902 S:      Maintained
9903 F:      Documentation/cdrom/
9904 F:      drivers/cdrom/cdrom.c
9905 F:      include/linux/cdrom.h
9906 F:      include/uapi/linux/cdrom.h
9907
9908 UNISYS S-PAR DRIVERS
9909 M:     Benjamin Romer <benjamin.romer@unisys.com>
9910 M:     David Kershner <david.kershner@unisys.com>
9911 L:     sparmaintainer@unisys.com (Unisys internal)
9912 S:     Supported
9913 F:     drivers/staging/unisys/
9914
9915 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
9916 M:      Vinayak Holikatti <vinholikatti@gmail.com>
9917 L:      linux-scsi@vger.kernel.org
9918 S:      Supported
9919 F:      Documentation/scsi/ufs.txt
9920 F:      drivers/scsi/ufs/
9921
9922 UNSORTED BLOCK IMAGES (UBI)
9923 M:      Artem Bityutskiy <dedekind1@gmail.com>
9924 W:      http://www.linux-mtd.infradead.org/
9925 L:      linux-mtd@lists.infradead.org
9926 T:      git git://git.infradead.org/ubifs-2.6.git
9927 S:      Maintained
9928 F:      drivers/mtd/ubi/
9929 F:      include/linux/mtd/ubi.h
9930 F:      include/uapi/mtd/ubi-user.h
9931
9932 UNSORTED BLOCK IMAGES (UBI) Fastmap
9933 M:      Richard Weinberger <richard@nod.at>
9934 L:      linux-mtd@lists.infradead.org
9935 S:      Maintained
9936 F:      drivers/mtd/ubi/fastmap.c
9937
9938 USB ACM DRIVER
9939 M:      Oliver Neukum <oliver@neukum.org>
9940 L:      linux-usb@vger.kernel.org
9941 S:      Maintained
9942 F:      Documentation/usb/acm.txt
9943 F:      drivers/usb/class/cdc-acm.*
9944
9945 USB AR5523 WIRELESS DRIVER
9946 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
9947 L:      linux-wireless@vger.kernel.org
9948 S:      Maintained
9949 F:      drivers/net/wireless/ath/ar5523/
9950
9951 USB ATTACHED SCSI
9952 M:      Hans de Goede <hdegoede@redhat.com>
9953 M:      Gerd Hoffmann <kraxel@redhat.com>
9954 L:      linux-usb@vger.kernel.org
9955 L:      linux-scsi@vger.kernel.org
9956 S:      Maintained
9957 F:      drivers/usb/storage/uas.c
9958
9959 USB CDC ETHERNET DRIVER
9960 M:      Oliver Neukum <oliver@neukum.org>
9961 L:      linux-usb@vger.kernel.org
9962 S:      Maintained
9963 F:      drivers/net/usb/cdc_*.c
9964 F:      include/uapi/linux/usb/cdc.h
9965
9966 USB CYPRESS C67X00 DRIVER
9967 M:      Peter Korsgaard <jacmet@sunsite.dk>
9968 L:      linux-usb@vger.kernel.org
9969 S:      Maintained
9970 F:      drivers/usb/c67x00/
9971
9972 USB DAVICOM DM9601 DRIVER
9973 M:      Peter Korsgaard <jacmet@sunsite.dk>
9974 L:      netdev@vger.kernel.org
9975 W:      http://www.linux-usb.org/usbnet
9976 S:      Maintained
9977 F:      drivers/net/usb/dm9601.c
9978
9979 USB DIAMOND RIO500 DRIVER
9980 M:      Cesar Miquel <miquel@df.uba.ar>
9981 L:      rio500-users@lists.sourceforge.net
9982 W:      http://rio500.sourceforge.net
9983 S:      Maintained
9984 F:      drivers/usb/misc/rio500*
9985
9986 USB EHCI DRIVER
9987 M:      Alan Stern <stern@rowland.harvard.edu>
9988 L:      linux-usb@vger.kernel.org
9989 S:      Maintained
9990 F:      Documentation/usb/ehci.txt
9991 F:      drivers/usb/host/ehci*
9992
9993 USB GADGET/PERIPHERAL SUBSYSTEM
9994 M:      Felipe Balbi <balbi@ti.com>
9995 L:      linux-usb@vger.kernel.org
9996 W:      http://www.linux-usb.org/gadget
9997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
9998 S:      Maintained
9999 F:      drivers/usb/gadget/
10000 F:      include/linux/usb/gadget*
10001
10002 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10003 M:      Jiri Kosina <jkosina@suse.cz>
10004 L:      linux-usb@vger.kernel.org
10005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10006 S:      Maintained
10007 F:      Documentation/hid/hiddev.txt
10008 F:      drivers/hid/usbhid/
10009
10010 USB ISP116X DRIVER
10011 M:      Olav Kongas <ok@artecdesign.ee>
10012 L:      linux-usb@vger.kernel.org
10013 S:      Maintained
10014 F:      drivers/usb/host/isp116x*
10015 F:      include/linux/usb/isp116x.h
10016
10017 USB MASS STORAGE DRIVER
10018 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10019 L:      linux-usb@vger.kernel.org
10020 L:      usb-storage@lists.one-eyed-alien.net
10021 S:      Maintained
10022 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10023 F:      drivers/usb/storage/
10024
10025 USB MIDI DRIVER
10026 M:      Clemens Ladisch <clemens@ladisch.de>
10027 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10028 T:      git git://git.alsa-project.org/alsa-kernel.git
10029 S:      Maintained
10030 F:      sound/usb/midi.*
10031
10032 USB NETWORKING DRIVERS
10033 L:      linux-usb@vger.kernel.org
10034 S:      Odd Fixes
10035 F:      drivers/net/usb/
10036
10037 USB OHCI DRIVER
10038 M:      Alan Stern <stern@rowland.harvard.edu>
10039 L:      linux-usb@vger.kernel.org
10040 S:      Maintained
10041 F:      Documentation/usb/ohci.txt
10042 F:      drivers/usb/host/ohci*
10043
10044 USB OVER IP DRIVER
10045 M:      Valentina Manea <valentina.manea.m@gmail.com>
10046 M:      Shuah Khan <shuah.kh@samsung.com>
10047 L:      linux-usb@vger.kernel.org
10048 S:      Maintained
10049 F:      drivers/usb/usbip/
10050 F:      tools/usb/usbip/
10051
10052 USB PEGASUS DRIVER
10053 M:      Petko Manolov <petkan@nucleusys.com>
10054 L:      linux-usb@vger.kernel.org
10055 L:      netdev@vger.kernel.org
10056 T:      git git://github.com/petkan/pegasus.git
10057 W:      https://github.com/petkan/pegasus
10058 S:      Maintained
10059 F:      drivers/net/usb/pegasus.*
10060
10061 USB PHY LAYER
10062 M:      Felipe Balbi <balbi@ti.com>
10063 L:      linux-usb@vger.kernel.org
10064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10065 S:      Maintained
10066 F:      drivers/usb/phy/
10067
10068 USB PRINTER DRIVER (usblp)
10069 M:      Pete Zaitcev <zaitcev@redhat.com>
10070 L:      linux-usb@vger.kernel.org
10071 S:      Supported
10072 F:      drivers/usb/class/usblp.c
10073
10074 USB RTL8150 DRIVER
10075 M:      Petko Manolov <petkan@nucleusys.com>
10076 L:      linux-usb@vger.kernel.org
10077 L:      netdev@vger.kernel.org
10078 T:      git git://github.com/petkan/rtl8150.git
10079 W:      https://github.com/petkan/rtl8150
10080 S:      Maintained
10081 F:      drivers/net/usb/rtl8150.c
10082
10083 USB SERIAL SUBSYSTEM
10084 M:      Johan Hovold <johan@kernel.org>
10085 L:      linux-usb@vger.kernel.org
10086 S:      Maintained
10087 F:      Documentation/usb/usb-serial.txt
10088 F:      drivers/usb/serial/
10089 F:      include/linux/usb/serial.h
10090
10091 USB SMSC75XX ETHERNET DRIVER
10092 M:      Steve Glendinning <steve.glendinning@shawell.net>
10093 L:      netdev@vger.kernel.org
10094 S:      Maintained
10095 F:      drivers/net/usb/smsc75xx.*
10096
10097 USB SMSC95XX ETHERNET DRIVER
10098 M:      Steve Glendinning <steve.glendinning@shawell.net>
10099 L:      netdev@vger.kernel.org
10100 S:      Maintained
10101 F:      drivers/net/usb/smsc95xx.*
10102
10103 USB SUBSYSTEM
10104 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10105 L:      linux-usb@vger.kernel.org
10106 W:      http://www.linux-usb.org
10107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10108 S:      Supported
10109 F:      Documentation/usb/
10110 F:      drivers/usb/
10111 F:      include/linux/usb.h
10112 F:      include/linux/usb/
10113
10114 USB UHCI DRIVER
10115 M:      Alan Stern <stern@rowland.harvard.edu>
10116 L:      linux-usb@vger.kernel.org
10117 S:      Maintained
10118 F:      drivers/usb/host/uhci*
10119
10120 USB "USBNET" DRIVER FRAMEWORK
10121 M:      Oliver Neukum <oneukum@suse.de>
10122 L:      netdev@vger.kernel.org
10123 W:      http://www.linux-usb.org/usbnet
10124 S:      Maintained
10125 F:      drivers/net/usb/usbnet.c
10126 F:      include/linux/usb/usbnet.h
10127
10128 USB VIDEO CLASS
10129 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10130 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10131 L:      linux-media@vger.kernel.org
10132 T:      git git://linuxtv.org/media_tree.git
10133 W:      http://www.ideasonboard.org/uvc/
10134 S:      Maintained
10135 F:      drivers/media/usb/uvc/
10136 F:      include/uapi/linux/uvcvideo.h
10137
10138 USB VISION DRIVER
10139 M:      Hans Verkuil <hverkuil@xs4all.nl>
10140 L:      linux-media@vger.kernel.org
10141 T:      git git://linuxtv.org/media_tree.git
10142 W:      http://linuxtv.org
10143 S:      Odd Fixes
10144 F:      drivers/media/usb/usbvision/
10145
10146 USB WEBCAM GADGET
10147 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10148 L:      linux-usb@vger.kernel.org
10149 S:      Maintained
10150 F:      drivers/usb/gadget/function/*uvc*
10151 F:      drivers/usb/gadget/legacy/webcam.c
10152
10153 USB WIRELESS RNDIS DRIVER (rndis_wlan)
10154 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
10155 L:      linux-wireless@vger.kernel.org
10156 S:      Maintained
10157 F:      drivers/net/wireless/rndis_wlan.c
10158
10159 USB XHCI DRIVER
10160 M:      Mathias Nyman <mathias.nyman@intel.com>
10161 L:      linux-usb@vger.kernel.org
10162 S:      Supported
10163 F:      drivers/usb/host/xhci*
10164 F:      drivers/usb/host/pci-quirks*
10165
10166 USB ZD1201 DRIVER
10167 L:      linux-wireless@vger.kernel.org
10168 W:      http://linux-lc100020.sourceforge.net
10169 S:      Orphan
10170 F:      drivers/net/wireless/zd1201.*
10171
10172 USB ZR364XX DRIVER
10173 M:      Antoine Jacquet <royale@zerezo.com>
10174 L:      linux-usb@vger.kernel.org
10175 L:      linux-media@vger.kernel.org
10176 T:      git git://linuxtv.org/media_tree.git
10177 W:      http://royale.zerezo.com/zr364xx/
10178 S:      Maintained
10179 F:      Documentation/video4linux/zr364xx.txt
10180 F:      drivers/media/usb/zr364xx/
10181
10182 USER-MODE LINUX (UML)
10183 M:      Jeff Dike <jdike@addtoit.com>
10184 M:      Richard Weinberger <richard@nod.at>
10185 L:      user-mode-linux-devel@lists.sourceforge.net
10186 L:      user-mode-linux-user@lists.sourceforge.net
10187 W:      http://user-mode-linux.sourceforge.net
10188 S:      Maintained
10189 F:      Documentation/virtual/uml/
10190 F:      arch/um/
10191 F:      arch/x86/um/
10192 F:      fs/hostfs/
10193 F:      fs/hppfs/
10194
10195 USERSPACE I/O (UIO)
10196 M:      "Hans J. Koch" <hjk@hansjkoch.de>
10197 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10198 S:      Maintained
10199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
10200 F:      Documentation/DocBook/uio-howto.tmpl
10201 F:      drivers/uio/
10202 F:      include/linux/uio*.h
10203
10204 UTIL-LINUX PACKAGE
10205 M:      Karel Zak <kzak@redhat.com>
10206 L:      util-linux@vger.kernel.org
10207 W:      http://en.wikipedia.org/wiki/Util-linux
10208 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
10209 S:      Maintained
10210
10211 UVESAFB DRIVER
10212 M:      Michal Januszewski <spock@gentoo.org>
10213 L:      linux-fbdev@vger.kernel.org
10214 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
10215 S:      Maintained
10216 F:      Documentation/fb/uvesafb.txt
10217 F:      drivers/video/fbdev/uvesafb.*
10218
10219 VFAT/FAT/MSDOS FILESYSTEM
10220 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
10221 S:      Maintained
10222 F:      Documentation/filesystems/vfat.txt
10223 F:      fs/fat/
10224
10225 VFIO DRIVER
10226 M:      Alex Williamson <alex.williamson@redhat.com>
10227 L:      kvm@vger.kernel.org
10228 S:      Maintained
10229 F:      Documentation/vfio.txt
10230 F:      drivers/vfio/
10231 F:      include/linux/vfio.h
10232 F:      include/uapi/linux/vfio.h
10233
10234 VIDEOBUF2 FRAMEWORK
10235 M:      Pawel Osciak <pawel@osciak.com>
10236 M:      Marek Szyprowski <m.szyprowski@samsung.com>
10237 M:      Kyungmin Park <kyungmin.park@samsung.com>
10238 L:      linux-media@vger.kernel.org
10239 S:      Maintained
10240 F:      drivers/media/v4l2-core/videobuf2-*
10241 F:      include/media/videobuf2-*
10242
10243 VIRTIO CONSOLE DRIVER
10244 M:      Amit Shah <amit.shah@redhat.com>
10245 L:      virtualization@lists.linux-foundation.org
10246 S:      Maintained
10247 F:      drivers/char/virtio_console.c
10248 F:      include/linux/virtio_console.h
10249 F:      include/uapi/linux/virtio_console.h
10250
10251 VIRTIO CORE, NET AND BLOCK DRIVERS
10252 M:      Rusty Russell <rusty@rustcorp.com.au>
10253 M:      "Michael S. Tsirkin" <mst@redhat.com>
10254 L:      virtualization@lists.linux-foundation.org
10255 S:      Maintained
10256 F:      drivers/virtio/
10257 F:      tools/virtio/
10258 F:      drivers/net/virtio_net.c
10259 F:      drivers/block/virtio_blk.c
10260 F:      include/linux/virtio_*.h
10261 F:      include/uapi/linux/virtio_*.h
10262
10263 VIRTIO HOST (VHOST)
10264 M:      "Michael S. Tsirkin" <mst@redhat.com>
10265 L:      kvm@vger.kernel.org
10266 L:      virtualization@lists.linux-foundation.org
10267 L:      netdev@vger.kernel.org
10268 S:      Maintained
10269 F:      drivers/vhost/
10270 F:      include/uapi/linux/vhost.h
10271
10272 VIA RHINE NETWORK DRIVER
10273 M:      Roger Luethi <rl@hellgate.ch>
10274 S:      Maintained
10275 F:      drivers/net/ethernet/via/via-rhine.c
10276
10277 VIA SD/MMC CARD CONTROLLER DRIVER
10278 M:      Bruce Chang <brucechang@via.com.tw>
10279 M:      Harald Welte <HaraldWelte@viatech.com>
10280 S:      Maintained
10281 F:      drivers/mmc/host/via-sdmmc.c
10282
10283 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
10284 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
10285 L:      linux-fbdev@vger.kernel.org
10286 S:      Maintained
10287 F:      include/linux/via-core.h
10288 F:      include/linux/via-gpio.h
10289 F:      include/linux/via_i2c.h
10290 F:      drivers/video/fbdev/via/
10291
10292 VIA VELOCITY NETWORK DRIVER
10293 M:      Francois Romieu <romieu@fr.zoreil.com>
10294 L:      netdev@vger.kernel.org
10295 S:      Maintained
10296 F:      drivers/net/ethernet/via/via-velocity.*
10297
10298 VIVID VIRTUAL VIDEO DRIVER
10299 M:      Hans Verkuil <hverkuil@xs4all.nl>
10300 L:      linux-media@vger.kernel.org
10301 T:      git git://linuxtv.org/media_tree.git
10302 W:      http://linuxtv.org
10303 S:      Maintained
10304 F:      drivers/media/platform/vivid/*
10305
10306 VLAN (802.1Q)
10307 M:      Patrick McHardy <kaber@trash.net>
10308 L:      netdev@vger.kernel.org
10309 S:      Maintained
10310 F:      drivers/net/macvlan.c
10311 F:      include/linux/if_*vlan.h
10312 F:      net/8021q/
10313
10314 VLYNQ BUS
10315 M:      Florian Fainelli <florian@openwrt.org>
10316 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
10317 S:      Maintained
10318 F:      drivers/vlynq/vlynq.c
10319 F:      include/linux/vlynq.h
10320
10321 VME SUBSYSTEM
10322 M:      Martyn Welch <martyn.welch@ge.com>
10323 M:      Manohar Vanga <manohar.vanga@gmail.com>
10324 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10325 L:      devel@driverdev.osuosl.org
10326 S:      Maintained
10327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10328 F:      Documentation/vme_api.txt
10329 F:      drivers/staging/vme/
10330 F:      drivers/vme/
10331 F:      include/linux/vme*
10332
10333 VMWARE HYPERVISOR INTERFACE
10334 M:      Alok Kataria <akataria@vmware.com>
10335 L:      virtualization@lists.linux-foundation.org
10336 S:      Supported
10337 F:      arch/x86/kernel/cpu/vmware.c
10338
10339 VMWARE BALLOON DRIVER
10340 M:      Xavier Deguillard <xdeguillard@vmware.com>
10341 M:      Philip Moltmann <moltmann@vmware.com>
10342 M:      "VMware, Inc." <pv-drivers@vmware.com>
10343 L:      linux-kernel@vger.kernel.org
10344 S:      Maintained
10345 F:      drivers/misc/vmw_balloon.c
10346
10347 VMWARE VMXNET3 ETHERNET DRIVER
10348 M:      Shreyas Bhatewara <sbhatewara@vmware.com>
10349 M:      "VMware, Inc." <pv-drivers@vmware.com>
10350 L:      netdev@vger.kernel.org
10351 S:      Maintained
10352 F:      drivers/net/vmxnet3/
10353
10354 VMware PVSCSI driver
10355 M:      Arvind Kumar <arvindkumar@vmware.com>
10356 M:      VMware PV-Drivers <pv-drivers@vmware.com>
10357 L:      linux-scsi@vger.kernel.org
10358 S:      Maintained
10359 F:      drivers/scsi/vmw_pvscsi.c
10360 F:      drivers/scsi/vmw_pvscsi.h
10361
10362 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
10363 M:      Liam Girdwood <lgirdwood@gmail.com>
10364 M:      Mark Brown <broonie@kernel.org>
10365 L:      linux-kernel@vger.kernel.org
10366 W:      http://opensource.wolfsonmicro.com/node/15
10367 W:      http://www.slimlogic.co.uk/?p=48
10368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
10369 S:      Supported
10370 F:      drivers/regulator/
10371 F:      include/linux/regulator/
10372
10373 VT1211 HARDWARE MONITOR DRIVER
10374 M:      Juerg Haefliger <juergh@gmail.com>
10375 L:      lm-sensors@lm-sensors.org
10376 S:      Maintained
10377 F:      Documentation/hwmon/vt1211
10378 F:      drivers/hwmon/vt1211.c
10379
10380 VT8231 HARDWARE MONITOR DRIVER
10381 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
10382 L:      lm-sensors@lm-sensors.org
10383 S:      Maintained
10384 F:      drivers/hwmon/vt8231.c
10385
10386 VUB300 USB to SDIO/SD/MMC bridge chip
10387 M:      Tony Olech <tony.olech@elandigitalsystems.com>
10388 L:      linux-mmc@vger.kernel.org
10389 L:      linux-usb@vger.kernel.org
10390 S:      Supported
10391 F:      drivers/mmc/host/vub300.c
10392
10393 W1 DALLAS'S 1-WIRE BUS
10394 M:      Evgeniy Polyakov <zbr@ioremap.net>
10395 S:      Maintained
10396 F:      Documentation/w1/
10397 F:      drivers/w1/
10398
10399 W83791D HARDWARE MONITORING DRIVER
10400 M:      Marc Hulsman <m.hulsman@tudelft.nl>
10401 L:      lm-sensors@lm-sensors.org
10402 S:      Maintained
10403 F:      Documentation/hwmon/w83791d
10404 F:      drivers/hwmon/w83791d.c
10405
10406 W83793 HARDWARE MONITORING DRIVER
10407 M:      Rudolf Marek <r.marek@assembler.cz>
10408 L:      lm-sensors@lm-sensors.org
10409 S:      Maintained
10410 F:      Documentation/hwmon/w83793
10411 F:      drivers/hwmon/w83793.c
10412
10413 W83795 HARDWARE MONITORING DRIVER
10414 M:      Jean Delvare <jdelvare@suse.de>
10415 L:      lm-sensors@lm-sensors.org
10416 S:      Maintained
10417 F:      drivers/hwmon/w83795.c
10418
10419 W83L51xD SD/MMC CARD INTERFACE DRIVER
10420 M:      Pierre Ossman <pierre@ossman.eu>
10421 S:      Maintained
10422 F:      drivers/mmc/host/wbsd.*
10423
10424 WACOM PROTOCOL 4 SERIAL TABLETS
10425 M:      Julian Squires <julian@cipht.net>
10426 M:      Hans de Goede <hdegoede@redhat.com>
10427 L:      linux-input@vger.kernel.org
10428 S:      Maintained
10429 F:      drivers/input/tablet/wacom_serial4.c
10430
10431 WATCHDOG DEVICE DRIVERS
10432 M:      Wim Van Sebroeck <wim@iguana.be>
10433 L:      linux-watchdog@vger.kernel.org
10434 W:      http://www.linux-watchdog.org/
10435 T:      git git://www.linux-watchdog.org/linux-watchdog.git
10436 S:      Maintained
10437 F:      Documentation/watchdog/
10438 F:      drivers/watchdog/
10439 F:      include/linux/watchdog.h
10440 F:      include/uapi/linux/watchdog.h
10441
10442 WD7000 SCSI DRIVER
10443 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
10444 L:      linux-scsi@vger.kernel.org
10445 S:      Maintained
10446 F:      drivers/scsi/wd7000.c
10447
10448 WIIMOTE HID DRIVER
10449 M:      David Herrmann <dh.herrmann@googlemail.com>
10450 L:      linux-input@vger.kernel.org
10451 S:      Maintained
10452 F:      drivers/hid/hid-wiimote*
10453
10454 WINBOND CIR DRIVER
10455 M:      David Härdeman <david@hardeman.nu>
10456 S:      Maintained
10457 F:      drivers/media/rc/winbond-cir.c
10458
10459 WIMAX STACK
10460 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
10461 M:      linux-wimax@intel.com
10462 L:     wimax@linuxwimax.org (subscribers-only)
10463 S:      Supported
10464 W:      http://linuxwimax.org
10465 F:      Documentation/wimax/README.wimax
10466 F:      include/linux/wimax/debug.h
10467 F:      include/net/wimax.h
10468 F:      include/uapi/linux/wimax.h
10469 F:      net/wimax/
10470
10471 WISTRON LAPTOP BUTTON DRIVER
10472 M:      Miloslav Trmac <mitr@volny.cz>
10473 S:      Maintained
10474 F:      drivers/input/misc/wistron_btns.c
10475
10476 WL3501 WIRELESS PCMCIA CARD DRIVER
10477 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
10478 L:      linux-wireless@vger.kernel.org
10479 W:      http://oops.ghostprotocols.net:81/blog
10480 S:      Maintained
10481 F:      drivers/net/wireless/wl3501*
10482
10483 WM97XX TOUCHSCREEN DRIVERS
10484 M:      Mark Brown <broonie@kernel.org>
10485 M:      Liam Girdwood <lrg@slimlogic.co.uk>
10486 L:      linux-input@vger.kernel.org
10487 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
10488 W:      http://opensource.wolfsonmicro.com/node/7
10489 S:      Supported
10490 F:      drivers/input/touchscreen/*wm97*
10491 F:      include/linux/wm97xx.h
10492
10493 WOLFSON MICROELECTRONICS DRIVERS
10494 L:      patches@opensource.wolfsonmicro.com
10495 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
10496 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
10497 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
10498 S:      Supported
10499 F:      Documentation/hwmon/wm83??
10500 F:      arch/arm/mach-s3c64xx/mach-crag6410*
10501 F:      drivers/clk/clk-wm83*.c
10502 F:      drivers/extcon/extcon-arizona.c
10503 F:      drivers/leds/leds-wm83*.c
10504 F:      drivers/gpio/gpio-*wm*.c
10505 F:      drivers/gpio/gpio-arizona.c
10506 F:      drivers/hwmon/wm83??-hwmon.c
10507 F:      drivers/input/misc/wm831x-on.c
10508 F:      drivers/input/touchscreen/wm831x-ts.c
10509 F:      drivers/input/touchscreen/wm97*.c
10510 F:      drivers/mfd/arizona*
10511 F:      drivers/mfd/wm*.c
10512 F:      drivers/power/wm83*.c
10513 F:      drivers/rtc/rtc-wm83*.c
10514 F:      drivers/regulator/wm8*.c
10515 F:      drivers/video/backlight/wm83*_bl.c
10516 F:      drivers/watchdog/wm83*_wdt.c
10517 F:      include/linux/mfd/arizona/
10518 F:      include/linux/mfd/wm831x/
10519 F:      include/linux/mfd/wm8350/
10520 F:      include/linux/mfd/wm8400*
10521 F:      include/linux/wm97xx.h
10522 F:      include/sound/wm????.h
10523 F:      sound/soc/codecs/arizona.?
10524 F:      sound/soc/codecs/wm*
10525
10526 WORKQUEUE
10527 M:      Tejun Heo <tj@kernel.org>
10528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
10529 S:      Maintained
10530 F:      include/linux/workqueue.h
10531 F:      kernel/workqueue.c
10532 F:      Documentation/workqueue.txt
10533
10534 X.25 NETWORK LAYER
10535 M:      Andrew Hendry <andrew.hendry@gmail.com>
10536 L:      linux-x25@vger.kernel.org
10537 S:      Odd Fixes
10538 F:      Documentation/networking/x25*
10539 F:      include/net/x25*
10540 F:      net/x25/
10541
10542 X86 ARCHITECTURE (32-BIT AND 64-BIT)
10543 M:      Thomas Gleixner <tglx@linutronix.de>
10544 M:      Ingo Molnar <mingo@redhat.com>
10545 M:      "H. Peter Anvin" <hpa@zytor.com>
10546 M:      x86@kernel.org
10547 L:      linux-kernel@vger.kernel.org
10548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
10549 S:      Maintained
10550 F:      Documentation/x86/
10551 F:      arch/x86/
10552
10553 X86 PLATFORM DRIVERS
10554 M:      Darren Hart <dvhart@infradead.org>
10555 L:      platform-driver-x86@vger.kernel.org
10556 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
10557 S:      Maintained
10558 F:      drivers/platform/x86/
10559
10560 X86 MCE INFRASTRUCTURE
10561 M:      Tony Luck <tony.luck@intel.com>
10562 M:      Borislav Petkov <bp@alien8.de>
10563 L:      linux-edac@vger.kernel.org
10564 S:      Maintained
10565 F:      arch/x86/kernel/cpu/mcheck/*
10566
10567 X86 VDSO
10568 M:      Andy Lutomirski <luto@amacapital.net>
10569 L:      linux-kernel@vger.kernel.org
10570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
10571 S:      Maintained
10572 F:      arch/x86/vdso/
10573
10574 XC2028/3028 TUNER DRIVER
10575 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10576 L:      linux-media@vger.kernel.org
10577 W:      http://linuxtv.org
10578 T:      git git://linuxtv.org/media_tree.git
10579 S:      Maintained
10580 F:      drivers/media/tuners/tuner-xc2028.*
10581
10582 XEN HYPERVISOR INTERFACE
10583 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10584 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
10585 M:      David Vrabel <david.vrabel@citrix.com>
10586 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
10588 S:      Supported
10589 F:      arch/x86/xen/
10590 F:      drivers/*/xen-*front.c
10591 F:      drivers/xen/
10592 F:      arch/x86/include/asm/xen/
10593 F:      include/xen/
10594 F:      include/uapi/xen/
10595
10596 XEN HYPERVISOR ARM
10597 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
10598 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10599 S:      Supported
10600 F:      arch/arm/xen/
10601 F:      arch/arm/include/asm/xen/
10602
10603 XEN HYPERVISOR ARM64
10604 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
10605 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10606 S:      Supported
10607 F:      arch/arm64/xen/
10608 F:      arch/arm64/include/asm/xen/
10609
10610 XEN NETWORK BACKEND DRIVER
10611 M:      Ian Campbell <ian.campbell@citrix.com>
10612 M:      Wei Liu <wei.liu2@citrix.com>
10613 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10614 L:      netdev@vger.kernel.org
10615 S:      Supported
10616 F:      drivers/net/xen-netback/*
10617
10618 XEN PCI SUBSYSTEM
10619 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10620 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10621 S:      Supported
10622 F:      arch/x86/pci/*xen*
10623 F:      drivers/pci/*xen*
10624
10625 XEN BLOCK SUBSYSTEM
10626 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10627 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10628 S:      Supported
10629 F:      drivers/block/xen-blkback/*
10630 F:      drivers/block/xen*
10631
10632 XEN PVSCSI DRIVERS
10633 M:      Juergen Gross <jgross@suse.com>
10634 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10635 L:      linux-scsi@vger.kernel.org
10636 S:      Supported
10637 F:      drivers/scsi/xen-scsifront.c
10638 F:      drivers/xen/xen-scsiback.c
10639 F:      include/xen/interface/io/vscsiif.h
10640
10641 XEN SWIOTLB SUBSYSTEM
10642 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10643 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10644 S:      Supported
10645 F:      arch/x86/xen/*swiotlb*
10646 F:      drivers/xen/*swiotlb*
10647
10648 XFS FILESYSTEM
10649 P:      Silicon Graphics Inc
10650 M:      Dave Chinner <david@fromorbit.com>
10651 M:      xfs@oss.sgi.com
10652 L:      xfs@oss.sgi.com
10653 W:      http://oss.sgi.com/projects/xfs
10654 T:      git git://oss.sgi.com/xfs/xfs.git
10655 S:      Supported
10656 F:      Documentation/filesystems/xfs.txt
10657 F:      fs/xfs/
10658
10659 XILINX AXI ETHERNET DRIVER
10660 M:      Anirudha Sarangi <anirudh@xilinx.com>
10661 M:      John Linn <John.Linn@xilinx.com>
10662 S:      Maintained
10663 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
10664
10665 XILINX UARTLITE SERIAL DRIVER
10666 M:      Peter Korsgaard <jacmet@sunsite.dk>
10667 L:      linux-serial@vger.kernel.org
10668 S:      Maintained
10669 F:      drivers/tty/serial/uartlite.c
10670
10671 XILLYBUS DRIVER
10672 M:      Eli Billauer <eli.billauer@gmail.com>
10673 L:      linux-kernel@vger.kernel.org
10674 S:      Supported
10675 F:      drivers/char/xillybus/
10676
10677 XTENSA XTFPGA PLATFORM SUPPORT
10678 M:      Max Filippov <jcmvbkbc@gmail.com>
10679 L:      linux-xtensa@linux-xtensa.org
10680 S:      Maintained
10681 F:      drivers/spi/spi-xtensa-xtfpga.c
10682
10683 YAM DRIVER FOR AX.25
10684 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
10685 L:      linux-hams@vger.kernel.org
10686 S:      Maintained
10687 F:      drivers/net/hamradio/yam*
10688 F:      include/linux/yam.h
10689
10690 YEALINK PHONE DRIVER
10691 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
10692 L:      usbb2k-api-dev@nongnu.org
10693 S:      Maintained
10694 F:      Documentation/input/yealink.txt
10695 F:      drivers/input/misc/yealink.*
10696
10697 Z8530 DRIVER FOR AX.25
10698 M:      Joerg Reuter <jreuter@yaina.de>
10699 W:      http://yaina.de/jreuter/
10700 W:      http://www.qsl.net/dl1bke/
10701 L:      linux-hams@vger.kernel.org
10702 S:      Maintained
10703 F:      Documentation/networking/z8530drv.txt
10704 F:      drivers/net/hamradio/*scc.c
10705 F:      drivers/net/hamradio/z8530.h
10706
10707 ZBUD COMPRESSED PAGE ALLOCATOR
10708 M:      Seth Jennings <sjennings@variantweb.net>
10709 L:      linux-mm@kvack.org
10710 S:      Maintained
10711 F:      mm/zbud.c
10712 F:      include/linux/zbud.h
10713
10714 ZD1211RW WIRELESS DRIVER
10715 M:      Daniel Drake <dsd@gentoo.org>
10716 M:      Ulrich Kunitz <kune@deine-taler.de>
10717 W:      http://zd1211.ath.cx/wiki/DriverRewrite
10718 L:      linux-wireless@vger.kernel.org
10719 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
10720 S:      Maintained
10721 F:      drivers/net/wireless/zd1211rw/
10722
10723 ZR36067 VIDEO FOR LINUX DRIVER
10724 L:      mjpeg-users@lists.sourceforge.net
10725 L:      linux-media@vger.kernel.org
10726 W:      http://mjpeg.sourceforge.net/driver-zoran/
10727 T:      hg http://linuxtv.org/hg/v4l-dvb
10728 S:      Odd Fixes
10729 F:      drivers/media/pci/zoran/
10730
10731 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
10732 M:      Minchan Kim <minchan@kernel.org>
10733 M:      Nitin Gupta <ngupta@vflare.org>
10734 L:      linux-kernel@vger.kernel.org
10735 S:      Maintained
10736 F:      drivers/block/zram/
10737 F:      Documentation/blockdev/zram.txt
10738
10739 ZS DECSTATION Z85C30 SERIAL DRIVER
10740 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10741 S:      Maintained
10742 F:      drivers/tty/serial/zs.*
10743
10744 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
10745 M:      Minchan Kim <minchan@kernel.org>
10746 M:      Nitin Gupta <ngupta@vflare.org>
10747 L:      linux-mm@kvack.org
10748 S:      Maintained
10749 F:      mm/zsmalloc.c
10750 F:      include/linux/zsmalloc.h
10751
10752 ZSWAP COMPRESSED SWAP CACHING
10753 M:      Seth Jennings <sjennings@variantweb.net>
10754 L:      linux-mm@kvack.org
10755 S:      Maintained
10756 F:      mm/zswap.c
10757
10758 THE REST
10759 M:      Linus Torvalds <torvalds@linux-foundation.org>
10760 L:      linux-kernel@vger.kernel.org
10761 Q:      http://patchwork.kernel.org/project/LKML/list/
10762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
10763 S:      Buried alive in reporters
10764 F:      *
10765 F:      */