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