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