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