OSDN Git Service

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