Merge tag 'char-misc-3.20-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregk...
[linux-drm-fsl-dcu.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trival style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the OSDL certificate of contribution and should include a
55         Signed-off-by: line.  The current version of this "Developer's
56         Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161
162 6PACK NETWORK DRIVER FOR AX.25
163 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
164 L:      linux-hams@vger.kernel.org
165 S:      Maintained
166 F:      drivers/net/hamradio/6pack.c
167
168 8169 10/100/1000 GIGABIT ETHERNET DRIVER
169 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
170 L:      netdev@vger.kernel.org
171 S:      Maintained
172 F:      drivers/net/ethernet/realtek/r8169.c
173
174 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
175 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
176 L:      linux-serial@vger.kernel.org
177 W:      http://serial.sourceforge.net
178 S:      Maintained
179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
180 F:      drivers/tty/serial/8250*
181 F:      include/linux/serial_8250.h
182
183 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
184 L:      netdev@vger.kernel.org
185 S:      Orphan / Obsolete
186 F:      drivers/net/ethernet/8390/
187
188 9P FILE SYSTEM
189 M:      Eric Van Hensbergen <ericvh@gmail.com>
190 M:      Ron Minnich <rminnich@sandia.gov>
191 M:      Latchesar Ionkov <lucho@ionkov.net>
192 L:      v9fs-developer@lists.sourceforge.net
193 W:      http://swik.net/v9fs
194 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
196 S:      Maintained
197 F:      Documentation/filesystems/9p.txt
198 F:      fs/9p/
199 F:      net/9p/
200 F:      include/net/9p/
201 F:      include/uapi/linux/virtio_9p.h
202 F:      include/trace/events/9p.h
203
204
205 A8293 MEDIA DRIVER
206 M:      Antti Palosaari <crope@iki.fi>
207 L:      linux-media@vger.kernel.org
208 W:      http://linuxtv.org/
209 W:      http://palosaari.fi/linux/
210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
211 T:      git git://linuxtv.org/anttip/media_tree.git
212 S:      Maintained
213 F:      drivers/media/dvb-frontends/a8293*
214
215 AACRAID SCSI RAID DRIVER
216 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
217 L:      linux-scsi@vger.kernel.org
218 W:      http://www.adaptec.com/
219 S:      Supported
220 F:      Documentation/scsi/aacraid.txt
221 F:      drivers/scsi/aacraid/
222
223 ABI/API
224 L:      linux-api@vger.kernel.org
225 F:      Documentation/ABI/
226 F:      include/linux/syscalls.h
227 F:      include/uapi/
228 F:      kernel/sys_ni.c
229
230 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
231 M:      Hans de Goede <hdegoede@redhat.com>
232 L:      lm-sensors@lm-sensors.org
233 S:      Maintained
234 F:      drivers/hwmon/abituguru.c
235
236 ABIT UGURU 3 HARDWARE MONITOR DRIVER
237 M:      Alistair John Strachan <alistair@devzero.co.uk>
238 L:      lm-sensors@lm-sensors.org
239 S:      Maintained
240 F:      drivers/hwmon/abituguru3.c
241
242 ACENIC DRIVER
243 M:      Jes Sorensen <jes@trained-monkey.org>
244 L:      linux-acenic@sunsite.dk
245 S:      Maintained
246 F:      drivers/net/ethernet/alteon/acenic*
247
248 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
249 M:      Peter Feuerer <peter@piie.net>
250 L:      platform-driver-x86@vger.kernel.org
251 W:      http://piie.net/?section=acerhdf
252 S:      Maintained
253 F:      drivers/platform/x86/acerhdf.c
254
255 ACER WMI LAPTOP EXTRAS
256 M:      "Lee, Chun-Yi" <jlee@suse.com>
257 L:      platform-driver-x86@vger.kernel.org
258 S:      Maintained
259 F:      drivers/platform/x86/acer-wmi.c
260
261 ACPI
262 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
263 M:      Len Brown <lenb@kernel.org>
264 L:      linux-acpi@vger.kernel.org
265 W:      https://01.org/linux-acpi
266 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
268 S:      Supported
269 F:      drivers/acpi/
270 F:      drivers/pnp/pnpacpi/
271 F:      include/linux/acpi.h
272 F:      include/acpi/
273 F:      Documentation/acpi/
274 F:      Documentation/ABI/testing/sysfs-bus-acpi
275 F:      drivers/pci/*acpi*
276 F:      drivers/pci/*/*acpi*
277 F:      drivers/pci/*/*/*acpi*
278 F:      tools/power/acpi/
279
280 ACPI COMPONENT ARCHITECTURE (ACPICA)
281 M:      Robert Moore <robert.moore@intel.com>
282 M:      Lv Zheng <lv.zheng@intel.com>
283 M:      Rafael J. Wysocki <rafael.j.wysocki@intel.com>
284 L:      linux-acpi@vger.kernel.org
285 L:      devel@acpica.org
286 W:      https://acpica.org/
287 W:      https://github.com/acpica/acpica/
288 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
290 S:      Supported
291 F:      drivers/acpi/acpica/
292 F:      include/acpi/
293 F:      tools/power/acpi/
294
295 ACPI FAN DRIVER
296 M:      Zhang Rui <rui.zhang@intel.com>
297 L:      linux-acpi@vger.kernel.org
298 W:      https://01.org/linux-acpi
299 S:      Supported
300 F:      drivers/acpi/fan.c
301
302 ACPI THERMAL DRIVER
303 M:      Zhang Rui <rui.zhang@intel.com>
304 L:      linux-acpi@vger.kernel.org
305 W:      https://01.org/linux-acpi
306 S:      Supported
307 F:      drivers/acpi/*thermal*
308
309 ACPI VIDEO DRIVER
310 M:      Zhang Rui <rui.zhang@intel.com>
311 L:      linux-acpi@vger.kernel.org
312 W:      https://01.org/linux-acpi
313 S:      Supported
314 F:      drivers/acpi/video.c
315
316 ACPI WMI DRIVER
317 L:      platform-driver-x86@vger.kernel.org
318 S:      Orphan
319 F:      drivers/platform/x86/wmi.c
320
321 AD1889 ALSA SOUND DRIVER
322 M:      Thibaut Varene <T-Bone@parisc-linux.org>
323 W:      http://wiki.parisc-linux.org/AD1889
324 L:      linux-parisc@vger.kernel.org
325 S:      Maintained
326 F:      sound/pci/ad1889.*
327
328 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
329 M:      Michael Hennerich <michael.hennerich@analog.com>
330 W:      http://wiki.analog.com/AD5254
331 W:      http://ez.analog.com/community/linux-device-drivers
332 S:      Supported
333 F:      drivers/misc/ad525x_dpot.c
334
335 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
336 M:      Michael Hennerich <michael.hennerich@analog.com>
337 W:      http://wiki.analog.com/AD5398
338 W:      http://ez.analog.com/community/linux-device-drivers
339 S:      Supported
340 F:      drivers/regulator/ad5398.c
341
342 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
343 M:      Michael Hennerich <michael.hennerich@analog.com>
344 W:      http://wiki.analog.com/AD7142
345 W:      http://ez.analog.com/community/linux-device-drivers
346 S:      Supported
347 F:      drivers/input/misc/ad714x.c
348
349 AD7877 TOUCHSCREEN DRIVER
350 M:      Michael Hennerich <michael.hennerich@analog.com>
351 W:      http://wiki.analog.com/AD7877
352 W:      http://ez.analog.com/community/linux-device-drivers
353 S:      Supported
354 F:      drivers/input/touchscreen/ad7877.c
355
356 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
357 M:      Michael Hennerich <michael.hennerich@analog.com>
358 W:      http://wiki.analog.com/AD7879
359 W:      http://ez.analog.com/community/linux-device-drivers
360 S:      Supported
361 F:      drivers/input/touchscreen/ad7879.c
362
363 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
364 M:      Jiri Kosina <jkosina@suse.cz>
365 S:      Maintained
366
367 ADM1025 HARDWARE MONITOR DRIVER
368 M:      Jean Delvare <jdelvare@suse.de>
369 L:      lm-sensors@lm-sensors.org
370 S:      Maintained
371 F:      Documentation/hwmon/adm1025
372 F:      drivers/hwmon/adm1025.c
373
374 ADM1029 HARDWARE MONITOR DRIVER
375 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
376 L:      lm-sensors@lm-sensors.org
377 S:      Maintained
378 F:      drivers/hwmon/adm1029.c
379
380 ADM8211 WIRELESS DRIVER
381 L:      linux-wireless@vger.kernel.org
382 W:      http://wireless.kernel.org/
383 S:      Orphan
384 F:      drivers/net/wireless/adm8211.*
385
386 ADP1653 FLASH CONTROLLER DRIVER
387 M:      Sakari Ailus <sakari.ailus@iki.fi>
388 L:      linux-media@vger.kernel.org
389 S:      Maintained
390 F:      drivers/media/i2c/adp1653.c
391 F:      include/media/adp1653.h
392
393 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
394 M:      Michael Hennerich <michael.hennerich@analog.com>
395 W:      http://wiki.analog.com/ADP5520
396 W:      http://ez.analog.com/community/linux-device-drivers
397 S:      Supported
398 F:      drivers/mfd/adp5520.c
399 F:      drivers/video/backlight/adp5520_bl.c
400 F:      drivers/leds/leds-adp5520.c
401 F:      drivers/gpio/gpio-adp5520.c
402 F:      drivers/input/keyboard/adp5520-keys.c
403
404 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
405 M:      Michael Hennerich <michael.hennerich@analog.com>
406 W:      http://wiki.analog.com/ADP5588
407 W:      http://ez.analog.com/community/linux-device-drivers
408 S:      Supported
409 F:      drivers/input/keyboard/adp5588-keys.c
410 F:      drivers/gpio/gpio-adp5588.c
411
412 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
413 M:      Michael Hennerich <michael.hennerich@analog.com>
414 W:      http://wiki.analog.com/ADP8860
415 W:      http://ez.analog.com/community/linux-device-drivers
416 S:      Supported
417 F:      drivers/video/backlight/adp8860_bl.c
418
419 ADS1015 HARDWARE MONITOR DRIVER
420 M:      Dirk Eibach <eibach@gdsys.de>
421 L:      lm-sensors@lm-sensors.org
422 S:      Maintained
423 F:      Documentation/hwmon/ads1015
424 F:      drivers/hwmon/ads1015.c
425 F:      include/linux/i2c/ads1015.h
426
427 ADT746X FAN DRIVER
428 M:      Colin Leroy <colin@colino.net>
429 S:      Maintained
430 F:      drivers/macintosh/therm_adt746x.c
431
432 ADT7475 HARDWARE MONITOR DRIVER
433 M:      Jean Delvare <jdelvare@suse.de>
434 L:      lm-sensors@lm-sensors.org
435 S:      Maintained
436 F:      Documentation/hwmon/adt7475
437 F:      drivers/hwmon/adt7475.c
438
439 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
440 M:      Michael Hennerich <michael.hennerich@analog.com>
441 W:      http://wiki.analog.com/ADXL345
442 W:      http://ez.analog.com/community/linux-device-drivers
443 S:      Supported
444 F:      drivers/input/misc/adxl34x.c
445
446 ADVANSYS SCSI DRIVER
447 M:      Matthew Wilcox <matthew@wil.cx>
448 L:      linux-scsi@vger.kernel.org
449 S:      Maintained
450 F:      Documentation/scsi/advansys.txt
451 F:      drivers/scsi/advansys.c
452
453 AEDSP16 DRIVER
454 M:      Riccardo Facchetti <fizban@tin.it>
455 S:      Maintained
456 F:      sound/oss/aedsp16.c
457
458 AF9013 MEDIA DRIVER
459 M:      Antti Palosaari <crope@iki.fi>
460 L:      linux-media@vger.kernel.org
461 W:      http://linuxtv.org/
462 W:      http://palosaari.fi/linux/
463 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
464 T:      git git://linuxtv.org/anttip/media_tree.git
465 S:      Maintained
466 F:      drivers/media/dvb-frontends/af9013*
467
468 AF9033 MEDIA DRIVER
469 M:      Antti Palosaari <crope@iki.fi>
470 L:      linux-media@vger.kernel.org
471 W:      http://linuxtv.org/
472 W:      http://palosaari.fi/linux/
473 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
474 T:      git git://linuxtv.org/anttip/media_tree.git
475 S:      Maintained
476 F:      drivers/media/dvb-frontends/af9033*
477
478 AFFS FILE SYSTEM
479 L:      linux-fsdevel@vger.kernel.org
480 S:      Orphan
481 F:      Documentation/filesystems/affs.txt
482 F:      fs/affs/
483
484 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
485 M:      David Howells <dhowells@redhat.com>
486 L:      linux-afs@lists.infradead.org
487 S:      Supported
488 F:      fs/afs/
489 F:      include/net/af_rxrpc.h
490 F:      net/rxrpc/af_rxrpc.c
491
492 AGPGART DRIVER
493 M:      David Airlie <airlied@linux.ie>
494 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
495 S:      Maintained
496 F:      drivers/char/agp/
497 F:      include/linux/agp*
498 F:      include/uapi/linux/agp*
499
500 AHA152X SCSI DRIVER
501 M:      "Juergen E. Fischer" <fischer@norbit.de>
502 L:      linux-scsi@vger.kernel.org
503 S:      Maintained
504 F:      drivers/scsi/aha152x*
505 F:      drivers/scsi/pcmcia/aha152x*
506
507 AIC7XXX / AIC79XX SCSI DRIVER
508 M:      Hannes Reinecke <hare@suse.de>
509 L:      linux-scsi@vger.kernel.org
510 S:      Maintained
511 F:      drivers/scsi/aic7xxx/
512
513 AIMSLAB FM RADIO RECEIVER DRIVER
514 M:      Hans Verkuil <hverkuil@xs4all.nl>
515 L:      linux-media@vger.kernel.org
516 T:      git git://linuxtv.org/media_tree.git
517 W:      http://linuxtv.org
518 S:      Maintained
519 F:      drivers/media/radio/radio-aimslab*
520
521 AIO
522 M:      Benjamin LaHaise <bcrl@kvack.org>
523 L:      linux-aio@kvack.org
524 S:      Supported
525 F:      fs/aio.c
526 F:      include/linux/*aio*.h
527
528 AIRSPY MEDIA DRIVER
529 M:      Antti Palosaari <crope@iki.fi>
530 L:      linux-media@vger.kernel.org
531 W:      http://linuxtv.org/
532 W:      http://palosaari.fi/linux/
533 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
534 T:      git git://linuxtv.org/anttip/media_tree.git
535 S:      Maintained
536 F:      drivers/media/usb/airspy/
537
538 ALCATEL SPEEDTOUCH USB DRIVER
539 M:      Duncan Sands <duncan.sands@free.fr>
540 L:      linux-usb@vger.kernel.org
541 W:      http://www.linux-usb.org/SpeedTouch/
542 S:      Maintained
543 F:      drivers/usb/atm/speedtch.c
544 F:      drivers/usb/atm/usbatm.c
545
546 ALCHEMY AU1XX0 MMC DRIVER
547 M:      Manuel Lauss <manuel.lauss@gmail.com>
548 S:      Maintained
549 F:      drivers/mmc/host/au1xmmc.c
550
551 ALI1563 I2C DRIVER
552 M:      Rudolf Marek <r.marek@assembler.cz>
553 L:      linux-i2c@vger.kernel.org
554 S:      Maintained
555 F:      Documentation/i2c/busses/i2c-ali1563
556 F:      drivers/i2c/busses/i2c-ali1563.c
557
558 ALPHA PORT
559 M:      Richard Henderson <rth@twiddle.net>
560 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
561 M:      Matt Turner <mattst88@gmail.com>
562 S:      Odd Fixes
563 L:      linux-alpha@vger.kernel.org
564 F:      arch/alpha/
565
566 ALTERA 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/radeon/radeon_kfd.c
634 F:      drivers/gpu/drm/radeon/radeon_kfd.h
635 F:      include/uapi/linux/kfd_ioctl.h
636
637 AMD MICROCODE UPDATE SUPPORT
638 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
639 L:      amd64-microcode@amd64.org
640 S:      Maintained
641 F:      arch/x86/kernel/cpu/microcode/amd*
642
643 AMD XGBE DRIVER
644 M:      Tom Lendacky <thomas.lendacky@amd.com>
645 L:      netdev@vger.kernel.org
646 S:      Supported
647 F:      drivers/net/ethernet/amd/xgbe/
648 F:      drivers/net/phy/amd-xgbe-phy.c
649
650 AMS (Apple Motion Sensor) DRIVER
651 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
652 S:      Supported
653 F:      drivers/macintosh/ams/
654
655 AMSO1100 RNIC DRIVER
656 M:      Tom Tucker <tom@opengridcomputing.com>
657 M:      Steve Wise <swise@opengridcomputing.com>
658 L:      linux-rdma@vger.kernel.org
659 S:      Maintained
660 F:      drivers/infiniband/hw/amso1100/
661
662 ANALOG DEVICES INC AD9389B DRIVER
663 M:      Hans Verkuil <hans.verkuil@cisco.com>
664 L:      linux-media@vger.kernel.org
665 S:      Maintained
666 F:      drivers/media/i2c/ad9389b*
667
668 ANALOG DEVICES INC ADV7180 DRIVER
669 M:      Lars-Peter Clausen <lars@metafoo.de>
670 L:      linux-media@vger.kernel.org
671 W:      http://ez.analog.com/community/linux-device-drivers
672 S:      Supported
673 F:      drivers/media/i2c/adv7180.c
674
675 ANALOG DEVICES INC ADV7511 DRIVER
676 M:      Hans Verkuil <hans.verkuil@cisco.com>
677 L:      linux-media@vger.kernel.org
678 S:      Maintained
679 F:      drivers/media/i2c/adv7511*
680
681 ANALOG DEVICES INC ADV7604 DRIVER
682 M:      Hans Verkuil <hans.verkuil@cisco.com>
683 L:      linux-media@vger.kernel.org
684 S:      Maintained
685 F:      drivers/media/i2c/adv7604*
686
687 ANALOG DEVICES INC ADV7842 DRIVER
688 M:      Hans Verkuil <hans.verkuil@cisco.com>
689 L:      linux-media@vger.kernel.org
690 S:      Maintained
691 F:      drivers/media/i2c/adv7842*
692
693 ANALOG DEVICES INC ASOC CODEC DRIVERS
694 M:      Lars-Peter Clausen <lars@metafoo.de>
695 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
696 W:      http://wiki.analog.com/
697 W:      http://ez.analog.com/community/linux-device-drivers
698 S:      Supported
699 F:      sound/soc/codecs/adau*
700 F:      sound/soc/codecs/adav*
701 F:      sound/soc/codecs/ad1*
702 F:      sound/soc/codecs/ad7*
703 F:      sound/soc/codecs/ssm*
704 F:      sound/soc/codecs/sigmadsp.*
705
706 ANALOG DEVICES INC ASOC DRIVERS
707 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
708 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
709 W:      http://blackfin.uclinux.org/
710 S:      Supported
711 F:      sound/soc/blackfin/*
712
713 ANALOG DEVICES INC IIO DRIVERS
714 M:      Lars-Peter Clausen <lars@metafoo.de>
715 M:      Michael Hennerich <Michael.Hennerich@analog.com>
716 W:      http://wiki.analog.com/
717 W:      http://ez.analog.com/community/linux-device-drivers
718 S:      Supported
719 F:      drivers/iio/*/ad*
720 X:      drivers/iio/*/adjd*
721 F:      drivers/staging/iio/*/ad*
722 F:      staging/iio/trigger/iio-trig-bfin-timer.c
723
724 ANDROID DRIVERS
725 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
726 M:      Arve HjønnevĂ¥g <arve@android.com>
727 M:      Riley Andrews <riandrews@android.com>
728 T:      git git://git.kernel.org/pub/scm/linux/kernel/gregkh/staging.git
729 L:      devel@driverdev.osuosl.org
730 S:      Supported
731 F:      drivers/android/
732 F:      drivers/staging/android/
733
734 AOA (Apple Onboard Audio) ALSA DRIVER
735 M:      Johannes Berg <johannes@sipsolutions.net>
736 L:      linuxppc-dev@lists.ozlabs.org
737 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
738 S:      Maintained
739 F:      sound/aoa/
740
741 APM DRIVER
742 M:      Jiri Kosina <jkosina@suse.cz>
743 S:      Odd fixes
744 F:      arch/x86/kernel/apm_32.c
745 F:      include/linux/apm_bios.h
746 F:      include/uapi/linux/apm_bios.h
747 F:      drivers/char/apm-emulation.c
748
749 APPLE BCM5974 MULTITOUCH DRIVER
750 M:      Henrik Rydberg <rydberg@bitmath.org>
751 L:      linux-input@vger.kernel.org
752 S:      Odd fixes
753 F:      drivers/input/mouse/bcm5974.c
754
755 APPLE SMC DRIVER
756 M:      Henrik Rydberg <rydberg@bitmath.org>
757 L:      lm-sensors@lm-sensors.org
758 S:      Odd fixes
759 F:      drivers/hwmon/applesmc.c
760
761 APPLETALK NETWORK LAYER
762 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
763 S:      Maintained
764 F:      drivers/net/appletalk/
765 F:      net/appletalk/
766
767 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
768 M:      Iyappan Subramanian <isubramanian@apm.com>
769 M:      Keyur Chudgar <kchudgar@apm.com>
770 S:      Supported
771 F:      drivers/net/ethernet/apm/xgene/
772 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
773
774 APTINA CAMERA SENSOR PLL
775 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
776 L:      linux-media@vger.kernel.org
777 S:      Maintained
778 F:      drivers/media/i2c/aptina-pll.*
779
780 ARC FRAMEBUFFER DRIVER
781 M:      Jaya Kumar <jayalk@intworks.biz>
782 S:      Maintained
783 F:      drivers/video/fbdev/arcfb.c
784 F:      drivers/video/fbdev/core/fb_defio.c
785
786 ARM MFM AND FLOPPY DRIVERS
787 M:      Ian Molton <spyro@f2s.com>
788 S:      Maintained
789 F:      arch/arm/lib/floppydma.S
790 F:      arch/arm/include/asm/floppy.h
791
792 ARM PMU PROFILING AND DEBUGGING
793 M:      Will Deacon <will.deacon@arm.com>
794 S:      Maintained
795 F:      arch/arm/kernel/perf_event*
796 F:      arch/arm/oprofile/common.c
797 F:      arch/arm/include/asm/pmu.h
798 F:      arch/arm/kernel/hw_breakpoint.c
799 F:      arch/arm/include/asm/hw_breakpoint.h
800
801 ARM PORT
802 M:      Russell King <linux@arm.linux.org.uk>
803 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
804 W:      http://www.arm.linux.org.uk/
805 S:      Maintained
806 F:      arch/arm/
807
808 ARM SUB-ARCHITECTURES
809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
810 S:      Maintained
811 F:      arch/arm/mach-*/
812 F:      arch/arm/plat-*/
813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
814
815 ARM PRIMECELL AACI PL041 DRIVER
816 M:      Russell King <linux@arm.linux.org.uk>
817 S:      Maintained
818 F:      sound/arm/aaci.*
819
820 ARM PRIMECELL CLCD PL110 DRIVER
821 M:      Russell King <linux@arm.linux.org.uk>
822 S:      Maintained
823 F:      drivers/video/fbdev/amba-clcd.*
824
825 ARM PRIMECELL KMI PL050 DRIVER
826 M:      Russell King <linux@arm.linux.org.uk>
827 S:      Maintained
828 F:      drivers/input/serio/ambakmi.*
829 F:      include/linux/amba/kmi.h
830
831 ARM PRIMECELL MMCI PL180/1 DRIVER
832 M:      Russell King <linux@arm.linux.org.uk>
833 S:      Maintained
834 F:      drivers/mmc/host/mmci.*
835 F:      include/linux/amba/mmci.h
836
837 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
838 M:      Russell King <linux@arm.linux.org.uk>
839 S:      Maintained
840 F:      drivers/tty/serial/amba-pl01*.c
841 F:      include/linux/amba/serial.h
842
843 ARM PRIMECELL BUS SUPPORT
844 M:      Russell King <linux@arm.linux.org.uk>
845 S:      Maintained
846 F:      drivers/amba/
847 F:      include/linux/amba/bus.h
848
849 ARM/ADS SPHERE MACHINE SUPPORT
850 M:      Lennert Buytenhek <kernel@wantstofly.org>
851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
852 S:      Maintained
853
854 ARM/AFEB9260 MACHINE SUPPORT
855 M:      Sergey Lapin <slapin@ossfans.org>
856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
857 S:      Maintained
858
859 ARM/AJECO 1ARM MACHINE SUPPORT
860 M:      Lennert Buytenhek <kernel@wantstofly.org>
861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
862 S:      Maintained
863
864 ARM/Allwinner A1X SoC support
865 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
867 S:      Maintained
868 N:      sun[x4567]i
869
870 ARM/Allwinner SoC Clock Support
871 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
872 S:      Maintained
873 F:      drivers/clk/sunxi/
874
875 ARM/Amlogic MesonX SoC support
876 M:      Carlo Caione <carlo@caione.org>
877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
878 S:      Maintained
879 F:      drivers/media/rc/meson-ir.c
880 N:      meson[x68]
881
882 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
883 M:      Andrew Victor <linux@maxim.org.za>
884 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
885 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
887 W:      http://maxim.org.za/at91_26.html
888 W:      http://www.linux4sam.org
889 S:      Supported
890 F:      arch/arm/mach-at91/
891 F:      include/soc/at91/
892 F:      arch/arm/boot/dts/at91*.dts
893 F:      arch/arm/boot/dts/at91*.dtsi
894 F:      arch/arm/boot/dts/sama*.dts
895 F:      arch/arm/boot/dts/sama*.dtsi
896
897 ARM/ATMEL AT91 Clock Support
898 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
899 S:      Maintained
900 F:      drivers/clk/at91
901
902 ARM/CALXEDA HIGHBANK ARCHITECTURE
903 M:      Rob Herring <robh@kernel.org>
904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
905 S:      Maintained
906 F:      arch/arm/mach-highbank/
907
908 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
909 M:      Krzysztof Halasa <khalasa@piap.pl>
910 S:      Maintained
911 F:      arch/arm/mach-cns3xxx/
912
913 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
914 M:      Alexander Shiyan <shc_work@mail.ru>
915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
916 S:      Odd Fixes
917 N:      clps711x
918
919 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
920 M:      Hartley Sweeten <hsweeten@visionengravers.com>
921 M:      Ryan Mallon <rmallon@gmail.com>
922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
923 S:      Maintained
924 F:      arch/arm/mach-ep93xx/
925 F:      arch/arm/mach-ep93xx/include/mach/
926
927 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
928 M:      Lennert Buytenhek <kernel@wantstofly.org>
929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
930 S:      Maintained
931
932 ARM/CLKDEV SUPPORT
933 M:      Russell King <linux@arm.linux.org.uk>
934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
935 S:      Maintained
936 F:      arch/arm/include/asm/clkdev.h
937 F:      drivers/clk/clkdev.c
938
939 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
940 M:      Mike Rapoport <mike@compulab.co.il>
941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
942 S:      Maintained
943
944 ARM/CONTEC MICRO9 MACHINE SUPPORT
945 M:      Hubert Feurstein <hubert.feurstein@contec.at>
946 S:      Maintained
947 F:      arch/arm/mach-ep93xx/micro9.c
948
949 ARM/CORESIGHT FRAMEWORK AND DRIVERS
950 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
952 S:      Maintained
953 F:      drivers/coresight/*
954 F:      Documentation/trace/coresight.txt
955 F:      Documentation/devicetree/bindings/arm/coresight.txt
956 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
957
958 ARM/CORGI MACHINE SUPPORT
959 M:      Richard Purdie <rpurdie@rpsys.net>
960 S:      Maintained
961
962 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
963 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
965 T:      git git://git.berlios.de/gemini-board
966 S:      Maintained
967 F:      arch/arm/mach-gemini/
968
969 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
970 M:      Barry Song <baohua@kernel.org>
971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
973 S:      Maintained
974 F:      arch/arm/mach-prima2/
975 F:      drivers/clk/sirf/
976 F:      drivers/clocksource/timer-prima2.c
977 F:      drivers/clocksource/timer-marco.c
978 N:      [^a-z]sirf
979
980 ARM/EBSA110 MACHINE SUPPORT
981 M:      Russell King <linux@arm.linux.org.uk>
982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
983 W:      http://www.arm.linux.org.uk/
984 S:      Maintained
985 F:      arch/arm/mach-ebsa110/
986 F:      drivers/net/ethernet/amd/am79c961a.*
987
988 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
989 M:      Uwe Kleine-König <kernel@pengutronix.de>
990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
991 S:      Maintained
992 N:      efm32
993
994 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
995 M:      Daniel Ribeiro <drwyrm@gmail.com>
996 M:      Stefan Schmidt <stefan@openezx.org>
997 M:      Harald Welte <laforge@openezx.org>
998 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
999 W:      http://www.openezx.org/
1000 S:      Maintained
1001 T:      topgit git://git.openezx.org/openezx.git
1002 F:      arch/arm/mach-pxa/ezx.c
1003
1004 ARM/FARADAY FA526 PORT
1005 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1007 S:      Maintained
1008 T:      git git://git.berlios.de/gemini-board
1009 F:      arch/arm/mm/*-fa*
1010
1011 ARM/FOOTBRIDGE ARCHITECTURE
1012 M:      Russell King <linux@arm.linux.org.uk>
1013 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1014 W:      http://www.arm.linux.org.uk/
1015 S:      Maintained
1016 F:      arch/arm/include/asm/hardware/dec21285.h
1017 F:      arch/arm/mach-footbridge/
1018
1019 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1020 M:      Shawn Guo <shawn.guo@linaro.org>
1021 M:      Sascha Hauer <kernel@pengutronix.de>
1022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1023 S:      Maintained
1024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1025 F:      arch/arm/mach-imx/
1026 F:      arch/arm/mach-mxs/
1027 F:      arch/arm/boot/dts/imx*
1028 F:      arch/arm/configs/imx*_defconfig
1029
1030 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1031 M:      Lennert Buytenhek <kernel@wantstofly.org>
1032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1033 S:      Maintained
1034
1035 ARM/GUMSTIX MACHINE SUPPORT
1036 M:      Steve Sakoman <sakoman@gmail.com>
1037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1038 S:      Maintained
1039
1040 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1041 M:      Philipp Zabel <philipp.zabel@gmail.com>
1042 M:      Paul Parsons <lost.distance@yahoo.com>
1043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1044 S:      Maintained
1045 F:      arch/arm/mach-pxa/hx4700.c
1046 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1047 F:      sound/soc/pxa/hx4700.c
1048
1049 ARM/HISILICON SOC SUPPORT
1050 M:      Wei Xu <xuwei5@hisilicon.com>
1051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1052 W:      http://www.hisilicon.com
1053 S:      Supported
1054 T:      git git://github.com/hisilicon/linux-hisi.git
1055 F:      arch/arm/mach-hisi/
1056
1057 ARM/HP JORNADA 7XX MACHINE SUPPORT
1058 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1059 W:      www.jlime.com
1060 S:      Maintained
1061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1062 F:      arch/arm/mach-sa1100/jornada720.c
1063 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1064
1065 ARM/IGEP MACHINE SUPPORT
1066 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1067 M:      Javier Martinez Canillas <javier@dowhile0.org>
1068 L:      linux-omap@vger.kernel.org
1069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1070 S:      Maintained
1071 F:      arch/arm/boot/dts/omap3-igep*
1072
1073 ARM/INCOME PXA270 SUPPORT
1074 M:      Marek Vasut <marek.vasut@gmail.com>
1075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1076 S:      Maintained
1077 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1078
1079 ARM/INTEL IOP32X ARM ARCHITECTURE
1080 M:      Lennert Buytenhek <kernel@wantstofly.org>
1081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1082 S:      Maintained
1083
1084 ARM/INTEL IOP33X ARM ARCHITECTURE
1085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1086 S:      Orphan
1087
1088 ARM/INTEL IOP13XX ARM ARCHITECTURE
1089 M:      Lennert Buytenhek <kernel@wantstofly.org>
1090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1091 S:      Maintained
1092
1093 ARM/INTEL IQ81342EX MACHINE SUPPORT
1094 M:      Lennert Buytenhek <kernel@wantstofly.org>
1095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1096 S:      Maintained
1097
1098 ARM/INTEL IXDP2850 MACHINE SUPPORT
1099 M:      Lennert Buytenhek <kernel@wantstofly.org>
1100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1101 S:      Maintained
1102
1103 ARM/INTEL IXP4XX ARM ARCHITECTURE
1104 M:      Imre Kaloz <kaloz@openwrt.org>
1105 M:      Krzysztof Halasa <khalasa@piap.pl>
1106 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1107 S:      Maintained
1108 F:      arch/arm/mach-ixp4xx/
1109
1110 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1111 M:      Jonathan Cameron <jic23@cam.ac.uk>
1112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1113 S:      Maintained
1114 F:      arch/arm/mach-pxa/stargate2.c
1115 F:      drivers/pcmcia/pxa2xx_stargate2.c
1116
1117 ARM/INTEL XSC3 (MANZANO) ARM CORE
1118 M:      Lennert Buytenhek <kernel@wantstofly.org>
1119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1120 S:      Maintained
1121
1122 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1123 M:      Lennert Buytenhek <kernel@wantstofly.org>
1124 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1125 S:      Maintained
1126
1127 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1128 M:      Santosh Shilimkar <ssantosh@kernel.org>
1129 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1130 S:      Maintained
1131 F:      arch/arm/mach-keystone/
1132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1133
1134 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1135 M:      Santosh Shilimkar <ssantosh@kernel.org>
1136 L:      linux-kernel@vger.kernel.org
1137 S:      Maintained
1138 F:      drivers/clk/keystone/
1139
1140 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1141 M:      Santosh Shilimkar <ssantosh@kernel.org>
1142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1143 L:      linux-kernel@vger.kernel.org
1144 S:      Maintained
1145 F:      drivers/clocksource/timer-keystone.c
1146
1147 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1148 M:      Santosh Shilimkar <ssantosh@kernel.org>
1149 L:      linux-kernel@vger.kernel.org
1150 S:      Maintained
1151 F:      drivers/power/reset/keystone-reset.c
1152
1153 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1154 M:      Santosh Shilimkar <ssantosh@kernel.org>
1155 L:      linux-kernel@vger.kernel.org
1156 S:      Maintained
1157 F:      drivers/memory/*emif*
1158
1159 ARM/LOGICPD PXA270 MACHINE SUPPORT
1160 M:      Lennert Buytenhek <kernel@wantstofly.org>
1161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1162 S:      Maintained
1163
1164 ARM/MAGICIAN MACHINE SUPPORT
1165 M:      Philipp Zabel <philipp.zabel@gmail.com>
1166 S:      Maintained
1167
1168 ARM/Marvell Armada 370 and Armada XP SOC support
1169 M:      Jason Cooper <jason@lakedaemon.net>
1170 M:      Andrew Lunn <andrew@lunn.ch>
1171 M:      Gregory Clement <gregory.clement@free-electrons.com>
1172 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1174 S:      Maintained
1175 F:      arch/arm/mach-mvebu/
1176 F:      drivers/rtc/armada38x-rtc
1177
1178 ARM/Marvell Berlin SoC support
1179 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1180 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1181 S:      Maintained
1182 F:      arch/arm/mach-berlin/
1183
1184 ARM/Marvell Dove/MV78xx0/Orion SOC support
1185 M:      Jason Cooper <jason@lakedaemon.net>
1186 M:      Andrew Lunn <andrew@lunn.ch>
1187 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189 S:      Maintained
1190 F:      arch/arm/mach-dove/
1191 F:      arch/arm/mach-mv78xx0/
1192 F:      arch/arm/mach-orion5x/
1193 F:      arch/arm/plat-orion/
1194
1195 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1196 M:      Alexander Clouter <alex@digriz.org.uk>
1197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1198 W:      http://www.digriz.org.uk/ts78xx/kernel
1199 S:      Maintained
1200 F:      arch/arm/mach-orion5x/ts78xx-*
1201
1202 ARM/Mediatek SoC support
1203 M:      Matthias Brugger <matthias.bgg@gmail.com>
1204 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1205 S:      Maintained
1206 F:      arch/arm/boot/dts/mt6*
1207 F:      arch/arm/boot/dts/mt8*
1208 F:      arch/arm/mach-mediatek/
1209 N:      mtk
1210 K:      mediatek
1211
1212 ARM/MICREL KS8695 ARCHITECTURE
1213 M:      Greg Ungerer <gerg@uclinux.org>
1214 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1215 F:      arch/arm/mach-ks8695/
1216 S:      Odd Fixes
1217
1218 ARM/MIOA701 MACHINE SUPPORT
1219 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1221 F:      arch/arm/mach-pxa/mioa701.c
1222 S:      Maintained
1223
1224 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1225 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1226 S:      Maintained
1227
1228 ARM/NOMADIK ARCHITECTURE
1229 M:      Alessandro Rubini <rubini@unipv.it>
1230 M:      Linus Walleij <linus.walleij@linaro.org>
1231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1232 S:      Maintained
1233 F:      arch/arm/mach-nomadik/
1234 F:      drivers/pinctrl/nomadik/
1235 F:      drivers/i2c/busses/i2c-nomadik.c
1236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1237
1238 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1239 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1240 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1241 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1242 S:      Supported
1243
1244 ARM/QUALCOMM MSM MACHINE SUPPORT
1245 M:      David Brown <davidb@codeaurora.org>
1246 M:      Daniel Walker <dwalker@fifo99.com>
1247 M:      Bryan Huntsman <bryanh@codeaurora.org>
1248 L:      linux-arm-msm@vger.kernel.org
1249 F:      arch/arm/mach-msm/
1250 F:      drivers/video/fbdev/msm/
1251 F:      drivers/mmc/host/msm_sdcc.c
1252 F:      drivers/mmc/host/msm_sdcc.h
1253 F:      drivers/tty/serial/msm_serial.h
1254 F:      drivers/tty/serial/msm_serial.c
1255 F:      drivers/*/pm8???-*
1256 F:      drivers/mfd/ssbi.c
1257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
1258 S:      Maintained
1259
1260 ARM/TOSA MACHINE SUPPORT
1261 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1262 M:      Dirk Opfer <dirk@opfer-online.de>
1263 S:      Maintained
1264
1265 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1266 M:      Marek Vasut <marek.vasut@gmail.com>
1267 L:      linux-arm-kernel@lists.infradead.org
1268 W:      http://hackndev.com
1269 S:      Maintained
1270 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1271 F:      arch/arm/mach-pxa/palmtx.c
1272 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1273 F:      arch/arm/mach-pxa/palmt5.c
1274 F:      arch/arm/mach-pxa/include/mach/palmld.h
1275 F:      arch/arm/mach-pxa/palmld.c
1276 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1277 F:      arch/arm/mach-pxa/palmte2.c
1278 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1279 F:      arch/arm/mach-pxa/palmtc.c
1280
1281 ARM/PALM TREO SUPPORT
1282 M:      Tomas Cech <sleep_walker@suse.cz>
1283 L:      linux-arm-kernel@lists.infradead.org
1284 W:      http://hackndev.com
1285 S:      Maintained
1286 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1287 F:      arch/arm/mach-pxa/palmtreo.c
1288
1289 ARM/PALMZ72 SUPPORT
1290 M:      Sergey Lapin <slapin@ossfans.org>
1291 L:      linux-arm-kernel@lists.infradead.org
1292 W:      http://hackndev.com
1293 S:      Maintained
1294 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1295 F:      arch/arm/mach-pxa/palmz72.c
1296
1297 ARM/PLEB SUPPORT
1298 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1299 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1300 S:      Maintained
1301
1302 ARM/PT DIGITAL BOARD PORT
1303 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1304 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1305 W:      http://www.arm.linux.org.uk/
1306 S:      Maintained
1307
1308 ARM/QUALCOMM SUPPORT
1309 M:      Kumar Gala <galak@codeaurora.org>
1310 M:      David Brown <davidb@codeaurora.org>
1311 L:      linux-arm-msm@vger.kernel.org
1312 S:      Maintained
1313 F:      arch/arm/mach-qcom/
1314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1315
1316 ARM/RADISYS ENP2611 MACHINE SUPPORT
1317 M:      Lennert Buytenhek <kernel@wantstofly.org>
1318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1319 S:      Maintained
1320
1321 ARM/RISCPC ARCHITECTURE
1322 M:      Russell King <linux@arm.linux.org.uk>
1323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324 W:      http://www.arm.linux.org.uk/
1325 S:      Maintained
1326 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1327 F:      arch/arm/include/asm/hardware/ioc.h
1328 F:      arch/arm/include/asm/hardware/iomd.h
1329 F:      arch/arm/include/asm/hardware/memc.h
1330 F:      arch/arm/mach-rpc/
1331 F:      drivers/net/ethernet/8390/etherh.c
1332 F:      drivers/net/ethernet/i825xx/ether1*
1333 F:      drivers/net/ethernet/seeq/ether3*
1334 F:      drivers/scsi/arm/
1335
1336 ARM/Rockchip SoC support
1337 M:      Heiko Stuebner <heiko@sntech.de>
1338 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1339 L:      linux-rockchip@lists.infradead.org
1340 S:      Maintained
1341 F:      arch/arm/boot/dts/rk3*
1342 F:      arch/arm/mach-rockchip/
1343 F:      drivers/clk/rockchip/
1344 F:      drivers/i2c/busses/i2c-rk3x.c
1345 F:      drivers/*/*rockchip*
1346 F:      drivers/*/*/*rockchip*
1347 F:      sound/soc/rockchip/
1348
1349 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1350 M:      Kukjin Kim <kgene@kernel.org>
1351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1352 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1353 S:      Maintained
1354 F:      arch/arm/boot/dts/s3c*
1355 F:      arch/arm/boot/dts/exynos*
1356 F:      arch/arm/plat-samsung/
1357 F:      arch/arm/mach-s3c24*/
1358 F:      arch/arm/mach-s3c64xx/
1359 F:      arch/arm/mach-s5p*/
1360 F:      arch/arm/mach-exynos*/
1361 F:      drivers/*/*s3c2410*
1362 F:      drivers/*/*/*s3c2410*
1363 F:      drivers/spi/spi-s3c*
1364 F:      sound/soc/samsung/*
1365 N:      exynos
1366
1367 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1368 M:      Kyungmin Park <kyungmin.park@samsung.com>
1369 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1370 S:      Maintained
1371 F:      arch/arm/mach-s5pv210/
1372
1373 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1374 M:      Kyungmin Park <kyungmin.park@samsung.com>
1375 M:      Kamil Debski <k.debski@samsung.com>
1376 L:      linux-arm-kernel@lists.infradead.org
1377 L:      linux-media@vger.kernel.org
1378 S:      Maintained
1379 F:      drivers/media/platform/s5p-g2d/
1380
1381 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1382 M:      Kyungmin Park <kyungmin.park@samsung.com>
1383 M:      Kamil Debski <k.debski@samsung.com>
1384 M:      Jeongtae Park <jtp.park@samsung.com>
1385 L:      linux-arm-kernel@lists.infradead.org
1386 L:      linux-media@vger.kernel.org
1387 S:      Maintained
1388 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1389 F:      drivers/media/platform/s5p-mfc/
1390
1391 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1392 M:      Kyungmin Park <kyungmin.park@samsung.com>
1393 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1394 L:      linux-arm-kernel@lists.infradead.org
1395 L:      linux-media@vger.kernel.org
1396 S:      Maintained
1397 F:      drivers/media/platform/s5p-tv/
1398
1399 ARM/SHMOBILE ARM ARCHITECTURE
1400 M:      Simon Horman <horms@verge.net.au>
1401 M:      Magnus Damm <magnus.damm@gmail.com>
1402 L:      linux-sh@vger.kernel.org
1403 W:      http://oss.renesas.com
1404 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1406 S:      Supported
1407 F:      arch/arm/boot/dts/emev2*
1408 F:      arch/arm/boot/dts/r7s*
1409 F:      arch/arm/boot/dts/r8a*
1410 F:      arch/arm/boot/dts/sh*
1411 F:      arch/arm/configs/ape6evm_defconfig
1412 F:      arch/arm/configs/armadillo800eva_defconfig
1413 F:      arch/arm/configs/bockw_defconfig
1414 F:      arch/arm/configs/kzm9g_defconfig
1415 F:      arch/arm/configs/lager_defconfig
1416 F:      arch/arm/configs/mackerel_defconfig
1417 F:      arch/arm/configs/marzen_defconfig
1418 F:      arch/arm/configs/shmobile_defconfig
1419 F:      arch/arm/include/debug/renesas-scif.S
1420 F:      arch/arm/mach-shmobile/
1421 F:      drivers/sh/
1422
1423 ARM/SOCFPGA ARCHITECTURE
1424 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1425 S:      Maintained
1426 F:      arch/arm/mach-socfpga/
1427 W:      http://www.rocketboards.org
1428 T:      git://git.rocketboards.org/linux-socfpga.git
1429 T:      git://git.rocketboards.org/linux-socfpga-next.git
1430
1431 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1432 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1433 S:      Maintained
1434 F:      drivers/clk/socfpga/
1435
1436 ARM/SOCFPGA EDAC SUPPORT
1437 M:      Thor Thayer <tthayer@opensource.altera.com>
1438 S:      Maintained
1439 F:      drivers/edac/altera_edac.
1440
1441 ARM/STI ARCHITECTURE
1442 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1443 M:      Maxime Coquelin <maxime.coquelin@st.com>
1444 M:      Patrice Chotard <patrice.chotard@st.com>
1445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1446 L:      kernel@stlinux.com
1447 W:      http://www.stlinux.com
1448 S:      Maintained
1449 F:      arch/arm/mach-sti/
1450 F:      arch/arm/boot/dts/sti*
1451 F:      drivers/clocksource/arm_global_timer.c
1452 F:      drivers/i2c/busses/i2c-st.c
1453 F:      drivers/media/rc/st_rc.c
1454 F:      drivers/mmc/host/sdhci-st.c
1455 F:      drivers/phy/phy-stih407-usb.c
1456 F:      drivers/phy/phy-stih41x-usb.c
1457 F:      drivers/pinctrl/pinctrl-st.c
1458 F:      drivers/reset/sti/
1459 F:      drivers/tty/serial/st-asc.c
1460 F:      drivers/usb/dwc3/dwc3-st.c
1461 F:      drivers/usb/host/ehci-st.c
1462 F:      drivers/usb/host/ohci-st.c
1463 F:      drivers/ata/ahci_st.c
1464
1465 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1466 M:      Lennert Buytenhek <kernel@wantstofly.org>
1467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1468 S:      Maintained
1469
1470 ARM/TETON BGA MACHINE SUPPORT
1471 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1473 S:      Maintained
1474
1475 ARM/THECUS N2100 MACHINE SUPPORT
1476 M:      Lennert Buytenhek <kernel@wantstofly.org>
1477 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1478 S:      Maintained
1479
1480 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1481 M:      Wan ZongShun <mcuos.com@gmail.com>
1482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1483 W:      http://www.mcuos.com
1484 S:      Maintained
1485 F:      arch/arm/mach-w90x900/
1486 F:      drivers/input/keyboard/w90p910_keypad.c
1487 F:      drivers/input/touchscreen/w90p910_ts.c
1488 F:      drivers/watchdog/nuc900_wdt.c
1489 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1490 F:      drivers/mtd/nand/nuc900_nand.c
1491 F:      drivers/rtc/rtc-nuc900.c
1492 F:      drivers/spi/spi-nuc900.c
1493 F:      drivers/usb/host/ehci-w90x900.c
1494 F:      drivers/video/fbdev/nuc900fb.c
1495
1496 ARM/U300 MACHINE SUPPORT
1497 M:      Linus Walleij <linus.walleij@linaro.org>
1498 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1499 S:      Supported
1500 F:      arch/arm/mach-u300/
1501 F:      drivers/clocksource/timer-u300.c
1502 F:      drivers/i2c/busses/i2c-stu300.c
1503 F:      drivers/rtc/rtc-coh901331.c
1504 F:      drivers/watchdog/coh901327_wdt.c
1505 F:      drivers/dma/coh901318*
1506 F:      drivers/mfd/ab3100*
1507 F:      drivers/rtc/rtc-ab3100.c
1508 F:      drivers/rtc/rtc-coh901331.c
1509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1510
1511 ARM/Ux500 ARM ARCHITECTURE
1512 M:      Linus Walleij <linus.walleij@linaro.org>
1513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1514 S:      Maintained
1515 F:      arch/arm/mach-ux500/
1516 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1517 F:      drivers/dma/ste_dma40*
1518 F:      drivers/hwspinlock/u8500_hsem.c
1519 F:      drivers/mfd/abx500*
1520 F:      drivers/mfd/ab8500*
1521 F:      drivers/mfd/dbx500*
1522 F:      drivers/mfd/db8500*
1523 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1524 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1525 F:      drivers/rtc/rtc-ab8500.c
1526 F:      drivers/rtc/rtc-pl031.c
1527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1528
1529 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1530 M:      Ulf Hansson <ulf.hansson@linaro.org>
1531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1532 T:      git git://git.linaro.org/people/ulfh/clk.git
1533 S:      Maintained
1534 F:      drivers/clk/ux500/
1535 F:      include/linux/platform_data/clk-ux500.h
1536
1537 ARM/VERSATILE EXPRESS PLATFORM
1538 M:      Liviu Dudau <liviu.dudau@arm.com>
1539 M:      Sudeep Holla <sudeep.holla@arm.com>
1540 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1542 S:      Maintained
1543 F:      arch/arm/boot/dts/vexpress*
1544 F:      arch/arm/mach-vexpress/
1545 F:      */*/vexpress*
1546 F:      */*/*/vexpress*
1547 F:      drivers/clk/versatile/clk-vexpress-osc.c
1548 F:      drivers/clocksource/versatile.c
1549
1550 ARM/VFP SUPPORT
1551 M:      Russell King <linux@arm.linux.org.uk>
1552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 W:      http://www.arm.linux.org.uk/
1554 S:      Maintained
1555 F:      arch/arm/vfp/
1556
1557 ARM/VOIPAC PXA270 SUPPORT
1558 M:      Marek Vasut <marek.vasut@gmail.com>
1559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1560 S:      Maintained
1561 F:      arch/arm/mach-pxa/vpac270.c
1562 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1563
1564 ARM/VT8500 ARM ARCHITECTURE
1565 M:      Tony Prisk <linux@prisktech.co.nz>
1566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1567 S:      Maintained
1568 F:      arch/arm/mach-vt8500/
1569 F:      drivers/clocksource/vt8500_timer.c
1570 F:      drivers/i2c/busses/i2c-wmt.c
1571 F:      drivers/mmc/host/wmt-sdmmc.c
1572 F:      drivers/pwm/pwm-vt8500.c
1573 F:      drivers/rtc/rtc-vt8500.c
1574 F:      drivers/tty/serial/vt8500_serial.c
1575 F:      drivers/usb/host/ehci-platform.c
1576 F:      drivers/usb/host/uhci-platform.c
1577 F:      drivers/video/fbdev/vt8500lcdfb.*
1578 F:      drivers/video/fbdev/wm8505fb*
1579 F:      drivers/video/fbdev/wmt_ge_rops.*
1580
1581 ARM/ZIPIT Z2 SUPPORT
1582 M:      Marek Vasut <marek.vasut@gmail.com>
1583 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1584 S:      Maintained
1585 F:      arch/arm/mach-pxa/z2.c
1586 F:      arch/arm/mach-pxa/include/mach/z2.h
1587
1588 ARM/ZYNQ ARCHITECTURE
1589 M:      Michal Simek <michal.simek@xilinx.com>
1590 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1592 W:      http://wiki.xilinx.com
1593 T:      git git://git.xilinx.com/linux-xlnx.git
1594 S:      Supported
1595 F:      arch/arm/mach-zynq/
1596 F:      drivers/cpuidle/cpuidle-zynq.c
1597 F:      drivers/block/xsysace.c
1598 N:      zynq
1599 N:      xilinx
1600 F:      drivers/clocksource/cadence_ttc_timer.c
1601 F:      drivers/i2c/busses/i2c-cadence.c
1602 F:      drivers/mmc/host/sdhci-of-arasan.c
1603 F:      drivers/edac/synopsys_edac.c
1604
1605 ARM SMMU DRIVER
1606 M:      Will Deacon <will.deacon@arm.com>
1607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1608 S:      Maintained
1609 F:      drivers/iommu/arm-smmu.c
1610 F:      drivers/iommu/io-pgtable-arm.c
1611
1612 ARM64 PORT (AARCH64 ARCHITECTURE)
1613 M:      Catalin Marinas <catalin.marinas@arm.com>
1614 M:      Will Deacon <will.deacon@arm.com>
1615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1616 S:      Maintained
1617 F:      arch/arm64/
1618 F:      Documentation/arm64/
1619
1620 AS3645A LED FLASH CONTROLLER DRIVER
1621 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1622 L:      linux-media@vger.kernel.org
1623 T:      git git://linuxtv.org/media_tree.git
1624 S:      Maintained
1625 F:      drivers/media/i2c/as3645a.c
1626 F:      include/media/as3645a.h
1627
1628 ASC7621 HARDWARE MONITOR DRIVER
1629 M:      George Joseph <george.joseph@fairview5.com>
1630 L:      lm-sensors@lm-sensors.org
1631 S:      Maintained
1632 F:      Documentation/hwmon/asc7621
1633 F:      drivers/hwmon/asc7621.c
1634
1635 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1636 M:      Corentin Chary <corentin.chary@gmail.com>
1637 L:      acpi4asus-user@lists.sourceforge.net
1638 L:      platform-driver-x86@vger.kernel.org
1639 W:      http://acpi4asus.sf.net
1640 S:      Maintained
1641 F:      drivers/platform/x86/asus*.c
1642 F:      drivers/platform/x86/eeepc*.c
1643
1644 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1645 R:      Dan Williams <dan.j.williams@intel.com>
1646 W:      http://sourceforge.net/projects/xscaleiop
1647 S:      Odd fixes
1648 F:      Documentation/crypto/async-tx-api.txt
1649 F:      crypto/async_tx/
1650 F:      drivers/dma/
1651 F:      include/linux/dmaengine.h
1652 F:      include/linux/async_tx.h
1653
1654 AT24 EEPROM DRIVER
1655 M:      Wolfram Sang <wsa@the-dreams.de>
1656 L:      linux-i2c@vger.kernel.org
1657 S:      Maintained
1658 F:      drivers/misc/eeprom/at24.c
1659 F:      include/linux/platform_data/at24.h
1660
1661 ATA OVER ETHERNET (AOE) DRIVER
1662 M:      "Ed L. Cashin" <ecashin@coraid.com>
1663 W:      http://support.coraid.com/support/linux
1664 S:      Supported
1665 F:      Documentation/aoe/
1666 F:      drivers/block/aoe/
1667
1668 ATHEROS ATH GENERIC UTILITIES
1669 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1670 L:      linux-wireless@vger.kernel.org
1671 S:      Supported
1672 F:      drivers/net/wireless/ath/*
1673
1674 ATHEROS ATH5K WIRELESS DRIVER
1675 M:      Jiri Slaby <jirislaby@gmail.com>
1676 M:      Nick Kossifidis <mickflemm@gmail.com>
1677 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1678 L:      linux-wireless@vger.kernel.org
1679 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1680 S:      Maintained
1681 F:      drivers/net/wireless/ath/ath5k/
1682
1683 ATHEROS ATH6KL WIRELESS DRIVER
1684 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1685 L:      linux-wireless@vger.kernel.org
1686 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1687 T:      git git://github.com/kvalo/ath.git
1688 S:      Supported
1689 F:      drivers/net/wireless/ath/ath6kl/
1690
1691 WILOCITY WIL6210 WIRELESS DRIVER
1692 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1693 L:      linux-wireless@vger.kernel.org
1694 L:      wil6210@qca.qualcomm.com
1695 S:      Supported
1696 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1697 F:      drivers/net/wireless/ath/wil6210/
1698 F:      include/uapi/linux/wil6210_uapi.h
1699
1700 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1701 M:      Christian Lamparter <chunkeey@googlemail.com>
1702 L:      linux-wireless@vger.kernel.org
1703 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1704 S:      Maintained
1705 F:      drivers/net/wireless/ath/carl9170/
1706
1707 ATK0110 HWMON DRIVER
1708 M:      Luca Tettamanti <kronos.it@gmail.com>
1709 L:      lm-sensors@lm-sensors.org
1710 S:      Maintained
1711 F:      drivers/hwmon/asus_atk0110.c
1712
1713 ATI_REMOTE2 DRIVER
1714 M:      Ville Syrjala <syrjala@sci.fi>
1715 S:      Maintained
1716 F:      drivers/input/misc/ati_remote2.c
1717
1718 ATLX ETHERNET DRIVERS
1719 M:      Jay Cliburn <jcliburn@gmail.com>
1720 M:      Chris Snook <chris.snook@gmail.com>
1721 L:      netdev@vger.kernel.org
1722 W:      http://sourceforge.net/projects/atl1
1723 W:      http://atl1.sourceforge.net
1724 S:      Maintained
1725 F:      drivers/net/ethernet/atheros/
1726
1727 ATM
1728 M:      Chas Williams <chas@cmf.nrl.navy.mil>
1729 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1730 L:      netdev@vger.kernel.org
1731 W:      http://linux-atm.sourceforge.net
1732 S:      Maintained
1733 F:      drivers/atm/
1734 F:      include/linux/atm*
1735 F:      include/uapi/linux/atm*
1736
1737 ATMEL AT91 / AT32 MCI DRIVER
1738 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1739 S:      Maintained
1740 F:      drivers/mmc/host/atmel-mci.c
1741 F:      drivers/mmc/host/atmel-mci-regs.h
1742
1743 ATMEL AT91 / AT32 SERIAL DRIVER
1744 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1745 S:      Supported
1746 F:      drivers/tty/serial/atmel_serial.c
1747
1748 ATMEL Audio ALSA driver
1749 M:      Bo Shen <voice.shen@atmel.com>
1750 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1751 S:      Supported
1752 F:      sound/soc/atmel
1753
1754 ATMEL DMA DRIVER
1755 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1757 S:      Supported
1758 F:      drivers/dma/at_hdmac.c
1759 F:      drivers/dma/at_hdmac_regs.h
1760 F:      include/linux/platform_data/dma-atmel.h
1761
1762 ATMEL XDMA DRIVER
1763 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1764 L:      linux-arm-kernel@lists.infradead.org
1765 L:      dmaengine@vger.kernel.org
1766 S:      Supported
1767 F:      drivers/dma/at_xdmac.c
1768
1769 ATMEL I2C DRIVER
1770 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1771 L:      linux-i2c@vger.kernel.org
1772 S:      Supported
1773 F:      drivers/i2c/busses/i2c-at91.c
1774
1775 ATMEL ISI DRIVER
1776 M:      Josh Wu <josh.wu@atmel.com>
1777 L:      linux-media@vger.kernel.org
1778 S:      Supported
1779 F:      drivers/media/platform/soc_camera/atmel-isi.c
1780 F:      include/media/atmel-isi.h
1781
1782 ATMEL LCDFB DRIVER
1783 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1784 L:      linux-fbdev@vger.kernel.org
1785 S:      Maintained
1786 F:      drivers/video/fbdev/atmel_lcdfb.c
1787 F:      include/video/atmel_lcdc.h
1788
1789 ATMEL MACB ETHERNET DRIVER
1790 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1791 S:      Supported
1792 F:      drivers/net/ethernet/cadence/
1793
1794 ATMEL NAND DRIVER
1795 M:      Josh Wu <josh.wu@atmel.com>
1796 L:      linux-mtd@lists.infradead.org
1797 S:      Supported
1798 F:      drivers/mtd/nand/atmel_nand*
1799
1800 ATMEL SPI DRIVER
1801 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1802 S:      Supported
1803 F:      drivers/spi/spi-atmel.*
1804
1805 ATMEL SSC DRIVER
1806 M:      Bo Shen <voice.shen@atmel.com>
1807 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1808 S:      Supported
1809 F:      drivers/misc/atmel-ssc.c
1810 F:      include/linux/atmel-ssc.h
1811
1812 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1813 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 S:      Supported
1816 F:      drivers/misc/atmel_tclib.c
1817 F:      drivers/clocksource/tcb_clksrc.c
1818
1819 ATMEL USBA UDC DRIVER
1820 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1822 S:      Supported
1823 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1824
1825 ATMEL WIRELESS DRIVER
1826 M:      Simon Kelley <simon@thekelleys.org.uk>
1827 L:      linux-wireless@vger.kernel.org
1828 W:      http://www.thekelleys.org.uk/atmel
1829 W:      http://atmelwlandriver.sourceforge.net/
1830 S:      Maintained
1831 F:      drivers/net/wireless/atmel*
1832
1833 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1834 M:      Bradley Grove <linuxdrivers@attotech.com>
1835 L:      linux-scsi@vger.kernel.org
1836 W:      http://www.attotech.com
1837 S:      Supported
1838 F:      drivers/scsi/esas2r
1839
1840 AUDIT SUBSYSTEM
1841 M:      Paul Moore <paul@paul-moore.com>
1842 M:      Eric Paris <eparis@redhat.com>
1843 L:      linux-audit@redhat.com (moderated for non-subscribers)
1844 W:      http://people.redhat.com/sgrubb/audit/
1845 T:      git git://git.infradead.org/users/pcmoore/audit
1846 S:      Maintained
1847 F:      include/linux/audit.h
1848 F:      include/uapi/linux/audit.h
1849 F:      kernel/audit*
1850
1851 AUXILIARY DISPLAY DRIVERS
1852 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1853 W:      http://miguelojeda.es/auxdisplay.htm
1854 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1855 S:      Maintained
1856 F:      drivers/auxdisplay/
1857 F:      include/linux/cfag12864b.h
1858
1859 AVR32 ARCHITECTURE
1860 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1861 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1862 W:      http://www.atmel.com/products/AVR32/
1863 W:      http://mirror.egtvedt.no/avr32linux.org/
1864 W:      http://avrfreaks.net/
1865 S:      Maintained
1866 F:      arch/avr32/
1867
1868 AVR32/AT32AP MACHINE SUPPORT
1869 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1870 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1871 S:      Maintained
1872 F:      arch/avr32/mach-at32ap/
1873
1874 AX.25 NETWORK LAYER
1875 M:      Ralf Baechle <ralf@linux-mips.org>
1876 L:      linux-hams@vger.kernel.org
1877 W:      http://www.linux-ax25.org/
1878 S:      Maintained
1879 F:      include/uapi/linux/ax25.h
1880 F:      include/net/ax25.h
1881 F:      net/ax25/
1882
1883 AZ6007 DVB DRIVER
1884 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
1885 L:      linux-media@vger.kernel.org
1886 W:      http://linuxtv.org
1887 T:      git git://linuxtv.org/media_tree.git
1888 S:      Maintained
1889 F:      drivers/media/usb/dvb-usb-v2/az6007.c
1890
1891 AZTECH FM RADIO RECEIVER DRIVER
1892 M:      Hans Verkuil <hverkuil@xs4all.nl>
1893 L:      linux-media@vger.kernel.org
1894 T:      git git://linuxtv.org/media_tree.git
1895 W:      http://linuxtv.org
1896 S:      Maintained
1897 F:      drivers/media/radio/radio-aztech*
1898
1899 B43 WIRELESS DRIVER
1900 M:      Stefano Brivio <stefano.brivio@polimi.it>
1901 L:      linux-wireless@vger.kernel.org
1902 L:      b43-dev@lists.infradead.org
1903 W:      http://wireless.kernel.org/en/users/Drivers/b43
1904 S:      Maintained
1905 F:      drivers/net/wireless/b43/
1906
1907 B43LEGACY WIRELESS DRIVER
1908 M:      Larry Finger <Larry.Finger@lwfinger.net>
1909 M:      Stefano Brivio <stefano.brivio@polimi.it>
1910 L:      linux-wireless@vger.kernel.org
1911 L:      b43-dev@lists.infradead.org
1912 W:      http://wireless.kernel.org/en/users/Drivers/b43
1913 S:      Maintained
1914 F:      drivers/net/wireless/b43legacy/
1915
1916 BACKLIGHT CLASS/SUBSYSTEM
1917 M:      Jingoo Han <jg1.han@samsung.com>
1918 M:      Lee Jones <lee.jones@linaro.org>
1919 S:      Maintained
1920 F:      drivers/video/backlight/
1921 F:      include/linux/backlight.h
1922
1923 BATMAN ADVANCED
1924 M:      Marek Lindner <mareklindner@neomailbox.ch>
1925 M:      Simon Wunderlich <sw@simonwunderlich.de>
1926 M:      Antonio Quartulli <antonio@meshcoding.com>
1927 L:      b.a.t.m.a.n@lists.open-mesh.org
1928 W:      http://www.open-mesh.org/
1929 S:      Maintained
1930 F:      net/batman-adv/
1931
1932 BAYCOM/HDLCDRV DRIVERS FOR AX.25
1933 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
1934 L:      linux-hams@vger.kernel.org
1935 W:      http://www.baycom.org/~tom/ham/ham.html
1936 S:      Maintained
1937 F:      drivers/net/hamradio/baycom*
1938
1939 BCACHE (BLOCK LAYER CACHE)
1940 M:      Kent Overstreet <kmo@daterainc.com>
1941 L:      linux-bcache@vger.kernel.org
1942 W:      http://bcache.evilpiepirate.org
1943 S:      Maintained:
1944 F:      drivers/md/bcache/
1945
1946 BEFS FILE SYSTEM
1947 S:      Orphan
1948 F:      Documentation/filesystems/befs.txt
1949 F:      fs/befs/
1950
1951 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
1952 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
1953 L: netdev@vger.kernel.org
1954 S: Maintained
1955 F: drivers/net/ethernet/ec_bhf.c
1956
1957 BFS FILE SYSTEM
1958 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
1959 S:      Maintained
1960 F:      Documentation/filesystems/bfs.txt
1961 F:      fs/bfs/
1962 F:      include/uapi/linux/bfs_fs.h
1963
1964 BLACKFIN ARCHITECTURE
1965 M:      Steven Miao <realmz6@gmail.com>
1966 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1967 T:      git git://git.code.sf.net/p/adi-linux/code
1968 W:      http://blackfin.uclinux.org
1969 S:      Supported
1970 F:      arch/blackfin/
1971
1972 BLACKFIN EMAC DRIVER
1973 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1974 W:      http://blackfin.uclinux.org
1975 S:      Supported
1976 F:      drivers/net/ethernet/adi/
1977
1978 BLACKFIN RTC DRIVER
1979 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1980 W:      http://blackfin.uclinux.org
1981 S:      Supported
1982 F:      drivers/rtc/rtc-bfin.c
1983
1984 BLACKFIN SDH DRIVER
1985 M:      Sonic Zhang <sonic.zhang@analog.com>
1986 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1987 W:      http://blackfin.uclinux.org
1988 S:      Supported
1989 F:      drivers/mmc/host/bfin_sdh.c
1990
1991 BLACKFIN SERIAL DRIVER
1992 M:      Sonic Zhang <sonic.zhang@analog.com>
1993 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1994 W:      http://blackfin.uclinux.org
1995 S:      Supported
1996 F:      drivers/tty/serial/bfin_uart.c
1997
1998 BLACKFIN WATCHDOG DRIVER
1999 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2000 W:      http://blackfin.uclinux.org
2001 S:      Supported
2002 F:      drivers/watchdog/bfin_wdt.c
2003
2004 BLACKFIN I2C TWI DRIVER
2005 M:      Sonic Zhang <sonic.zhang@analog.com>
2006 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2007 W:      http://blackfin.uclinux.org/
2008 S:      Supported
2009 F:      drivers/i2c/busses/i2c-bfin-twi.c
2010
2011 BLACKFIN MEDIA DRIVER
2012 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2013 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2014 W:      http://blackfin.uclinux.org/
2015 S:      Supported
2016 F:      drivers/media/platform/blackfin/
2017 F:      drivers/media/i2c/adv7183*
2018 F:      drivers/media/i2c/vs6624*
2019
2020 BLINKM RGB LED DRIVER
2021 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2022 S:      Maintained
2023 F:      drivers/leds/leds-blinkm.c
2024
2025 BLOCK LAYER
2026 M:      Jens Axboe <axboe@kernel.dk>
2027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2028 S:      Maintained
2029 F:      block/
2030
2031 BLOCK2MTD DRIVER
2032 M:      Joern Engel <joern@lazybastard.org>
2033 L:      linux-mtd@lists.infradead.org
2034 S:      Maintained
2035 F:      drivers/mtd/devices/block2mtd.c
2036
2037 BLUETOOTH DRIVERS
2038 M:      Marcel Holtmann <marcel@holtmann.org>
2039 M:      Gustavo Padovan <gustavo@padovan.org>
2040 M:      Johan Hedberg <johan.hedberg@gmail.com>
2041 L:      linux-bluetooth@vger.kernel.org
2042 W:      http://www.bluez.org/
2043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2045 S:      Maintained
2046 F:      drivers/bluetooth/
2047
2048 BLUETOOTH SUBSYSTEM
2049 M:      Marcel Holtmann <marcel@holtmann.org>
2050 M:      Gustavo Padovan <gustavo@padovan.org>
2051 M:      Johan Hedberg <johan.hedberg@gmail.com>
2052 L:      linux-bluetooth@vger.kernel.org
2053 W:      http://www.bluez.org/
2054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2056 S:      Maintained
2057 F:      net/bluetooth/
2058 F:      include/net/bluetooth/
2059
2060 BONDING DRIVER
2061 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2062 M:      Veaceslav Falico <vfalico@gmail.com>
2063 M:      Andy Gospodarek <andy@greyhouse.net>
2064 L:      netdev@vger.kernel.org
2065 W:      http://sourceforge.net/projects/bonding/
2066 S:      Supported
2067 F:      drivers/net/bonding/
2068 F:      include/uapi/linux/if_bonding.h
2069
2070 BPF (Safe dynamic programs and tools)
2071 M:      Alexei Starovoitov <ast@kernel.org>
2072 L:      netdev@vger.kernel.org
2073 L:      linux-kernel@vger.kernel.org
2074 S:      Supported
2075 F:      kernel/bpf/
2076
2077 BROADCOM B44 10/100 ETHERNET DRIVER
2078 M:      Gary Zambrano <zambrano@broadcom.com>
2079 L:      netdev@vger.kernel.org
2080 S:      Supported
2081 F:      drivers/net/ethernet/broadcom/b44.*
2082
2083 BROADCOM GENET ETHERNET DRIVER
2084 M:      Florian Fainelli <f.fainelli@gmail.com>
2085 L:      netdev@vger.kernel.org
2086 S:      Supported
2087 F:      drivers/net/ethernet/broadcom/genet/
2088
2089 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2090 M:      Sony Chacko <sony.chacko@qlogic.com>
2091 M:      Dept-HSGLinuxNICDev@qlogic.com
2092 L:      netdev@vger.kernel.org
2093 S:      Supported
2094 F:      drivers/net/ethernet/broadcom/bnx2.*
2095 F:      drivers/net/ethernet/broadcom/bnx2_*
2096
2097 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2098 M:      Ariel Elior <ariel.elior@qlogic.com>
2099 L:      netdev@vger.kernel.org
2100 S:      Supported
2101 F:      drivers/net/ethernet/broadcom/bnx2x/
2102
2103 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2104 M:      Christian Daudt <bcm@fixthebug.org>
2105 M:      Matt Porter <mporter@linaro.org>
2106 M:      Florian Fainelli <f.fainelli@gmail.com>
2107 L:      bcm-kernel-feedback-list@broadcom.com
2108 T:      git git://github.com/broadcom/mach-bcm
2109 S:      Maintained
2110 F:      arch/arm/mach-bcm/
2111 F:      arch/arm/boot/dts/bcm113*
2112 F:      arch/arm/boot/dts/bcm216*
2113 F:      arch/arm/boot/dts/bcm281*
2114 F:      arch/arm/configs/bcm_defconfig
2115 F:      drivers/mmc/host/sdhci-bcm-kona.c
2116 F:      drivers/clocksource/bcm_kona_timer.c
2117
2118 BROADCOM BCM2835 ARM ARCHITECTURE
2119 M:      Stephen Warren <swarren@wwwdotorg.org>
2120 M:      Lee Jones <lee@kernel.org>
2121 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2123 S:      Maintained
2124 N:      bcm2835
2125
2126 BROADCOM BCM33XX MIPS ARCHITECTURE
2127 M:      Kevin Cernekee <cernekee@gmail.com>
2128 L:      linux-mips@linux-mips.org
2129 S:      Maintained
2130 F:      arch/mips/bcm3384/*
2131 F:      arch/mips/include/asm/mach-bcm3384/*
2132 F:      arch/mips/kernel/*bmips*
2133
2134 BROADCOM BCM5301X ARM ARCHITECTURE
2135 M:      Hauke Mehrtens <hauke@hauke-m.de>
2136 L:      linux-arm-kernel@lists.infradead.org
2137 S:      Maintained
2138 F:      arch/arm/mach-bcm/bcm_5301x.c
2139 F:      arch/arm/boot/dts/bcm5301x.dtsi
2140 F:      arch/arm/boot/dts/bcm470*
2141
2142 BROADCOM BCM63XX ARM ARCHITECTURE
2143 M:      Florian Fainelli <f.fainelli@gmail.com>
2144 L:      linux-arm-kernel@lists.infradead.org
2145 T:      git git://git.github.com/brcm/linux.git
2146 S:      Maintained
2147 F:      arch/arm/mach-bcm/bcm63xx.c
2148 F:      arch/arm/include/debug/bcm63xx.S
2149
2150 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2151 M:      Kevin Cernekee <cernekee@gmail.com>
2152 L:      linux-usb@vger.kernel.org
2153 S:      Maintained
2154 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2155
2156 BROADCOM BCM7XXX ARM ARCHITECTURE
2157 M:      Marc Carino <marc.ceeeee@gmail.com>
2158 M:      Brian Norris <computersforpeace@gmail.com>
2159 M:      Gregory Fong <gregory.0xf0@gmail.com>
2160 M:      Florian Fainelli <f.fainelli@gmail.com>
2161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2162 S:      Maintained
2163 F:      arch/arm/mach-bcm/*brcmstb*
2164 F:      arch/arm/boot/dts/bcm7*.dts*
2165 F:      drivers/bus/brcmstb_gisb.c
2166
2167 BROADCOM BMIPS MIPS ARCHITECTURE
2168 M:      Kevin Cernekee <cernekee@gmail.com>
2169 M:      Florian Fainelli <f.fainelli@gmail.com>
2170 L:      linux-mips@linux-mips.org
2171 S:      Maintained
2172 F:      arch/mips/bmips/*
2173 F:      arch/mips/include/asm/mach-bmips/*
2174 F:      arch/mips/kernel/*bmips*
2175 F:      arch/mips/boot/dts/bcm*.dts*
2176 F:      drivers/irqchip/irq-bcm7*
2177 F:      drivers/irqchip/irq-brcmstb*
2178
2179 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2180 M:      Prashant Sreedharan <prashant@broadcom.com>
2181 M:      Michael Chan <mchan@broadcom.com>
2182 L:      netdev@vger.kernel.org
2183 S:      Supported
2184 F:      drivers/net/ethernet/broadcom/tg3.*
2185
2186 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2187 M:      Brett Rudley <brudley@broadcom.com>
2188 M:      Arend van Spriel <arend@broadcom.com>
2189 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2190 M:      Hante Meuleman <meuleman@broadcom.com>
2191 L:      linux-wireless@vger.kernel.org
2192 L:      brcm80211-dev-list@broadcom.com
2193 S:      Supported
2194 F:      drivers/net/wireless/brcm80211/
2195
2196 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2197 M:      QLogic-Storage-Upstream@qlogic.com
2198 L:      linux-scsi@vger.kernel.org
2199 S:      Supported
2200 F:      drivers/scsi/bnx2fc/
2201
2202 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2203 M:      QLogic-Storage-Upstream@qlogic.com
2204 L:      linux-scsi@vger.kernel.org
2205 S:      Supported
2206 F:      drivers/scsi/bnx2i/
2207
2208 BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2209 M:      Ray Jui <rjui@broadcom.com>
2210 M:      Scott Branden <sbranden@broadcom.com>
2211 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2212 L:      bcm-kernel-feedback-list@broadcom.com
2213 T:      git git://git.github.com/brcm/linux.git
2214 S:      Maintained
2215 N:      iproc
2216 N:      cygnus
2217 N:      bcm9113*
2218 N:      bcm9583*
2219 N:      bcm583*
2220 N:      bcm113*
2221
2222 BROADCOM KONA GPIO DRIVER
2223 M:      Ray Jui <rjui@broadcom.com>
2224 L:      bcm-kernel-feedback-list@broadcom.com
2225 S:      Supported
2226 F:      drivers/gpio/gpio-bcm-kona.c
2227 F:      Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt
2228
2229 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2230 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2231 L:      linux-wireless@vger.kernel.org
2232 S:      Maintained
2233 F:      drivers/bcma/
2234 F:      include/linux/bcma/
2235
2236 BROADCOM SYSTEMPORT ETHERNET DRIVER
2237 M:      Florian Fainelli <f.fainelli@gmail.com>
2238 L:      netdev@vger.kernel.org
2239 S:      Supported
2240 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2241
2242 BROCADE BFA FC SCSI DRIVER
2243 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2244 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2245 L:      linux-scsi@vger.kernel.org
2246 S:      Supported
2247 F:      drivers/scsi/bfa/
2248
2249 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2250 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2251 L:      netdev@vger.kernel.org
2252 S:      Supported
2253 F:      drivers/net/ethernet/brocade/bna/
2254
2255 BSG (block layer generic sg v4 driver)
2256 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2257 L:      linux-scsi@vger.kernel.org
2258 S:      Supported
2259 F:      block/bsg.c
2260 F:      include/linux/bsg.h
2261 F:      include/uapi/linux/bsg.h
2262
2263 BT87X AUDIO DRIVER
2264 M:      Clemens Ladisch <clemens@ladisch.de>
2265 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2266 T:      git git://git.alsa-project.org/alsa-kernel.git
2267 S:      Maintained
2268 F:      Documentation/sound/alsa/Bt87x.txt
2269 F:      sound/pci/bt87x.c
2270
2271 BT8XXGPIO DRIVER
2272 M:      Michael Buesch <m@bues.ch>
2273 W:      http://bu3sch.de/btgpio.php
2274 S:      Maintained
2275 F:      drivers/gpio/gpio-bt8xx.c
2276
2277 BTRFS FILE SYSTEM
2278 M:      Chris Mason <clm@fb.com>
2279 M:      Josef Bacik <jbacik@fb.com>
2280 M:      David Sterba <dsterba@suse.cz>
2281 L:      linux-btrfs@vger.kernel.org
2282 W:      http://btrfs.wiki.kernel.org/
2283 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2285 S:      Maintained
2286 F:      Documentation/filesystems/btrfs.txt
2287 F:      fs/btrfs/
2288
2289 BTTV VIDEO4LINUX DRIVER
2290 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2291 L:      linux-media@vger.kernel.org
2292 W:      http://linuxtv.org
2293 T:      git git://linuxtv.org/media_tree.git
2294 S:      Odd fixes
2295 F:      Documentation/video4linux/bttv/
2296 F:      drivers/media/pci/bt8xx/bttv*
2297
2298 BUSLOGIC SCSI DRIVER
2299 M:      Khalid Aziz <khalid@gonehiking.org>
2300 L:      linux-scsi@vger.kernel.org
2301 S:      Maintained
2302 F:      drivers/scsi/BusLogic.*
2303 F:      drivers/scsi/FlashPoint.*
2304
2305 C-MEDIA CMI8788 DRIVER
2306 M:      Clemens Ladisch <clemens@ladisch.de>
2307 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2308 T:      git git://git.alsa-project.org/alsa-kernel.git
2309 S:      Maintained
2310 F:      sound/pci/oxygen/
2311
2312 C6X ARCHITECTURE
2313 M:      Mark Salter <msalter@redhat.com>
2314 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2315 L:      linux-c6x-dev@linux-c6x.org
2316 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2317 S:      Maintained
2318 F:      arch/c6x/
2319
2320 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2321 M:      David Howells <dhowells@redhat.com>
2322 L:      linux-cachefs@redhat.com
2323 S:      Supported
2324 F:      Documentation/filesystems/caching/cachefiles.txt
2325 F:      fs/cachefiles/
2326
2327 CADET FM/AM RADIO RECEIVER DRIVER
2328 M:      Hans Verkuil <hverkuil@xs4all.nl>
2329 L:      linux-media@vger.kernel.org
2330 T:      git git://linuxtv.org/media_tree.git
2331 W:      http://linuxtv.org
2332 S:      Maintained
2333 F:      drivers/media/radio/radio-cadet*
2334
2335 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2336 M:      Jonathan Corbet <corbet@lwn.net>
2337 L:      linux-media@vger.kernel.org
2338 T:      git git://linuxtv.org/media_tree.git
2339 S:      Maintained
2340 F:      Documentation/video4linux/cafe_ccic
2341 F:      drivers/media/platform/marvell-ccic/
2342
2343 CAIF NETWORK LAYER
2344 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2345 L:      netdev@vger.kernel.org
2346 S:      Supported
2347 F:      Documentation/networking/caif/
2348 F:      drivers/net/caif/
2349 F:      include/uapi/linux/caif/
2350 F:      include/net/caif/
2351 F:      net/caif/
2352
2353 CALGARY x86-64 IOMMU
2354 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2355 M:      "Jon D. Mason" <jdmason@kudzu.us>
2356 L:      discuss@x86-64.org
2357 S:      Maintained
2358 F:      arch/x86/kernel/pci-calgary_64.c
2359 F:      arch/x86/kernel/tce_64.c
2360 F:      arch/x86/include/asm/calgary.h
2361 F:      arch/x86/include/asm/tce.h
2362
2363 CAN NETWORK LAYER
2364 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2365 L:      linux-can@vger.kernel.org
2366 W:      http://gitorious.org/linux-can
2367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2369 S:      Maintained
2370 F:      Documentation/networking/can.txt
2371 F:      net/can/
2372 F:      include/linux/can/core.h
2373 F:      include/uapi/linux/can.h
2374 F:      include/uapi/linux/can/bcm.h
2375 F:      include/uapi/linux/can/raw.h
2376 F:      include/uapi/linux/can/gw.h
2377
2378 CAN NETWORK DRIVERS
2379 M:      Wolfgang Grandegger <wg@grandegger.com>
2380 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2381 L:      linux-can@vger.kernel.org
2382 W:      http://gitorious.org/linux-can
2383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2385 S:      Maintained
2386 F:      drivers/net/can/
2387 F:      include/linux/can/dev.h
2388 F:      include/linux/can/platform/
2389 F:      include/uapi/linux/can/error.h
2390 F:      include/uapi/linux/can/netlink.h
2391
2392 CAPABILITIES
2393 M:      Serge Hallyn <serge.hallyn@canonical.com>
2394 L:      linux-security-module@vger.kernel.org
2395 S:      Supported
2396 F:      include/linux/capability.h
2397 F:      include/uapi/linux/capability.h
2398 F:      security/capability.c
2399 F:      security/commoncap.c
2400 F:      kernel/capability.c
2401
2402 CC2520 IEEE-802.15.4 RADIO DRIVER
2403 M:      Varka Bhadram <varkabhadram@gmail.com>
2404 L:      linux-wpan@vger.kernel.org
2405 S:      Maintained
2406 F:      drivers/net/ieee802154/cc2520.c
2407 F:      include/linux/spi/cc2520.h
2408 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2409
2410 CELL BROADBAND ENGINE ARCHITECTURE
2411 M:      Arnd Bergmann <arnd@arndb.de>
2412 L:      linuxppc-dev@lists.ozlabs.org
2413 L:      cbe-oss-dev@lists.ozlabs.org
2414 W:      http://www.ibm.com/developerworks/power/cell/
2415 S:      Supported
2416 F:      arch/powerpc/include/asm/cell*.h
2417 F:      arch/powerpc/include/asm/spu*.h
2418 F:      arch/powerpc/include/uapi/asm/spu*.h
2419 F:      arch/powerpc/oprofile/*cell*
2420 F:      arch/powerpc/platforms/cell/
2421
2422 CEPH DISTRIBUTED FILE SYSTEM CLIENT
2423 M:      Sage Weil <sage@inktank.com>
2424 L:      ceph-devel@vger.kernel.org
2425 W:      http://ceph.com/
2426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2427 S:      Supported
2428 F:      Documentation/filesystems/ceph.txt
2429 F:      fs/ceph/
2430 F:      net/ceph/
2431 F:      include/linux/ceph/
2432 F:      include/linux/crush/
2433
2434 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2435 L:      linux-usb@vger.kernel.org
2436 S:      Orphan
2437 F:      Documentation/usb/WUSB-Design-overview.txt
2438 F:      Documentation/usb/wusb-cbaf
2439 F:      drivers/usb/host/hwa-hc.c
2440 F:      drivers/usb/host/whci/
2441 F:      drivers/usb/wusbcore/
2442 F:      include/linux/usb/wusb*
2443
2444 CFAG12864B LCD DRIVER
2445 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2446 W:      http://miguelojeda.es/auxdisplay.htm
2447 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2448 S:      Maintained
2449 F:      drivers/auxdisplay/cfag12864b.c
2450 F:      include/linux/cfag12864b.h
2451
2452 CFAG12864BFB LCD FRAMEBUFFER 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/cfag12864bfb.c
2458 F:      include/linux/cfag12864b.h
2459
2460 CFG80211 and NL80211
2461 M:      Johannes Berg <johannes@sipsolutions.net>
2462 L:      linux-wireless@vger.kernel.org
2463 W:      http://wireless.kernel.org/
2464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2466 S:      Maintained
2467 F:      include/uapi/linux/nl80211.h
2468 F:      include/net/cfg80211.h
2469 F:      net/wireless/*
2470 X:      net/wireless/wext*
2471
2472 CHAR and MISC DRIVERS
2473 M:      Arnd Bergmann <arnd@arndb.de>
2474 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2476 S:      Supported
2477 F:      drivers/char/*
2478 F:      drivers/misc/*
2479 F:      include/linux/miscdevice.h
2480
2481 CHECKPATCH
2482 M:      Andy Whitcroft <apw@canonical.com>
2483 M:      Joe Perches <joe@perches.com>
2484 S:      Maintained
2485 F:      scripts/checkpatch.pl
2486
2487 CHINESE DOCUMENTATION
2488 M:      Harry Wei <harryxiyou@gmail.com>
2489 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2490 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2491 S:      Maintained
2492 F:      Documentation/zh_CN/
2493
2494 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2495 M:      Peter Chen <Peter.Chen@freescale.com>
2496 T:      git git://github.com/hzpeterchen/linux-usb.git
2497 L:      linux-usb@vger.kernel.org
2498 S:      Maintained
2499 F:      drivers/usb/chipidea/
2500
2501 CHROME HARDWARE PLATFORM SUPPORT
2502 M:      Olof Johansson <olof@lixom.net>
2503 S:      Maintained
2504 F:      drivers/platform/chrome/
2505
2506 CISCO VIC ETHERNET NIC DRIVER
2507 M:      Christian Benvenuti <benve@cisco.com>
2508 M:      Sujith Sankar <ssujith@cisco.com>
2509 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2510 M:      Neel Patel <neepatel@cisco.com>
2511 S:      Supported
2512 F:      drivers/net/ethernet/cisco/enic/
2513
2514 CISCO VIC LOW LATENCY NIC DRIVER
2515 M:      Upinder Malhi <umalhi@cisco.com>
2516 S:      Supported
2517 F:      drivers/infiniband/hw/usnic
2518
2519 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2520 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2521 L:      netdev@vger.kernel.org
2522 S:      Maintained
2523 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2524
2525 CIRRUS LOGIC AUDIO CODEC DRIVERS
2526 M:      Brian Austin <brian.austin@cirrus.com>
2527 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2528 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2529 S:      Maintained
2530 F:      sound/soc/codecs/cs*
2531
2532 CLEANCACHE API
2533 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2534 L:      linux-kernel@vger.kernel.org
2535 S:      Maintained
2536 F:      mm/cleancache.c
2537 F:      include/linux/cleancache.h
2538
2539 CLK API
2540 M:      Russell King <linux@arm.linux.org.uk>
2541 S:      Maintained
2542 F:      include/linux/clk.h
2543
2544 CLOCKSOURCE, CLOCKEVENT DRIVERS
2545 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2546 M:      Thomas Gleixner <tglx@linutronix.de>
2547 L:      linux-kernel@vger.kernel.org
2548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2549 S:      Supported
2550 F:      drivers/clocksource
2551
2552 CISCO FCOE HBA DRIVER
2553 M:      Hiral Patel <hiralpat@cisco.com>
2554 M:      Suma Ramars <sramars@cisco.com>
2555 M:      Brian Uchino <buchino@cisco.com>
2556 L:      linux-scsi@vger.kernel.org
2557 S:      Supported
2558 F:      drivers/scsi/fnic/
2559
2560 CMPC ACPI DRIVER
2561 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2562 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2563 L:      platform-driver-x86@vger.kernel.org
2564 S:      Supported
2565 F:      drivers/platform/x86/classmate-laptop.c
2566
2567 COCCINELLE/Semantic Patches (SmPL)
2568 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2569 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2570 M:      Nicolas Palix <nicolas.palix@imag.fr>
2571 M:      Michal Marek <mmarek@suse.cz>
2572 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2574 W:      http://coccinelle.lip6.fr/
2575 S:      Supported
2576 F:      Documentation/coccinelle.txt
2577 F:      scripts/coccinelle/
2578 F:      scripts/coccicheck
2579
2580 CODA FILE SYSTEM
2581 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2582 M:      coda@cs.cmu.edu
2583 L:      codalist@coda.cs.cmu.edu
2584 W:      http://www.coda.cs.cmu.edu/
2585 S:      Maintained
2586 F:      Documentation/filesystems/coda.txt
2587 F:      fs/coda/
2588 F:      include/linux/coda*.h
2589 F:      include/uapi/linux/coda*.h
2590
2591 CODA V4L2 MEM2MEM DRIVER
2592 M:      Philipp Zabel <p.zabel@pengutronix.de>
2593 L:      linux-media@vger.kernel.org
2594 S:      Maintained
2595 F:      Documentation/devicetree/bindings/media/coda.txt
2596 F:      drivers/media/platform/coda/
2597
2598 COMMON CLK FRAMEWORK
2599 M:      Mike Turquette <mturquette@linaro.org>
2600 M:      Stephen Boyd <sboyd@codeaurora.org>
2601 L:      linux-kernel@vger.kernel.org
2602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2603 S:      Maintained
2604 F:      drivers/clk/
2605 X:      drivers/clk/clkdev.c
2606 F:      include/linux/clk-pr*
2607 F:      include/linux/clk/
2608
2609 COMMON INTERNET FILE SYSTEM (CIFS)
2610 M:      Steve French <sfrench@samba.org>
2611 L:      linux-cifs@vger.kernel.org
2612 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2613 W:      http://linux-cifs.samba.org/
2614 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2615 S:      Supported
2616 F:      Documentation/filesystems/cifs/
2617 F:      fs/cifs/
2618
2619 COMPACTPCI HOTPLUG CORE
2620 M:      Scott Murray <scott@spiteful.org>
2621 L:      linux-pci@vger.kernel.org
2622 S:      Maintained
2623 F:      drivers/pci/hotplug/cpci_hotplug*
2624
2625 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2626 M:      Scott Murray <scott@spiteful.org>
2627 L:      linux-pci@vger.kernel.org
2628 S:      Maintained
2629 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2630
2631 COMPACTPCI HOTPLUG GENERIC DRIVER
2632 M:      Scott Murray <scott@spiteful.org>
2633 L:      linux-pci@vger.kernel.org
2634 S:      Maintained
2635 F:      drivers/pci/hotplug/cpcihp_generic.c
2636
2637 COMPAL LAPTOP SUPPORT
2638 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2639 L:      platform-driver-x86@vger.kernel.org
2640 S:      Maintained
2641 F:      drivers/platform/x86/compal-laptop.c
2642
2643 CONEXANT ACCESSRUNNER USB DRIVER
2644 M:      Simon Arlott <cxacru@fire.lp0.eu>
2645 L:      accessrunner-general@lists.sourceforge.net
2646 W:      http://accessrunner.sourceforge.net/
2647 S:      Maintained
2648 F:      drivers/usb/atm/cxacru.c
2649
2650 CONFIGFS
2651 M:      Joel Becker <jlbec@evilplan.org>
2652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2653 S:      Supported
2654 F:      fs/configfs/
2655 F:      include/linux/configfs.h
2656
2657 CONNECTOR
2658 M:      Evgeniy Polyakov <zbr@ioremap.net>
2659 L:      netdev@vger.kernel.org
2660 S:      Maintained
2661 F:      drivers/connector/
2662
2663 CONTROL GROUP (CGROUP)
2664 M:      Tejun Heo <tj@kernel.org>
2665 M:      Li Zefan <lizefan@huawei.com>
2666 L:      cgroups@vger.kernel.org
2667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2668 S:      Maintained
2669 F:      Documentation/cgroups/
2670 F:      include/linux/cgroup*
2671 F:      kernel/cgroup*
2672
2673 CONTROL GROUP - CPUSET
2674 M:      Li Zefan <lizefan@huawei.com>
2675 L:      cgroups@vger.kernel.org
2676 W:      http://www.bullopensource.org/cpuset/
2677 W:      http://oss.sgi.com/projects/cpusets/
2678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2679 S:      Maintained
2680 F:      Documentation/cgroups/cpusets.txt
2681 F:      include/linux/cpuset.h
2682 F:      kernel/cpuset.c
2683
2684 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2685 M:      Johannes Weiner <hannes@cmpxchg.org>
2686 M:      Michal Hocko <mhocko@suse.cz>
2687 L:      cgroups@vger.kernel.org
2688 L:      linux-mm@kvack.org
2689 S:      Maintained
2690 F:      mm/memcontrol.c
2691 F:      mm/swap_cgroup.c
2692
2693 CORETEMP HARDWARE MONITORING DRIVER
2694 M:      Fenghua Yu <fenghua.yu@intel.com>
2695 L:      lm-sensors@lm-sensors.org
2696 S:      Maintained
2697 F:      Documentation/hwmon/coretemp
2698 F:      drivers/hwmon/coretemp.c
2699
2700 COSA/SRP SYNC SERIAL DRIVER
2701 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2702 W:      http://www.fi.muni.cz/~kas/cosa/
2703 S:      Maintained
2704 F:      drivers/net/wan/cosa*
2705
2706 CPMAC ETHERNET DRIVER
2707 M:      Florian Fainelli <florian@openwrt.org>
2708 L:      netdev@vger.kernel.org
2709 S:      Maintained
2710 F:      drivers/net/ethernet/ti/cpmac.c
2711
2712 CPU FREQUENCY DRIVERS
2713 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
2714 M:      Viresh Kumar <viresh.kumar@linaro.org>
2715 L:      linux-pm@vger.kernel.org
2716 S:      Maintained
2717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2718 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2719 F:      drivers/cpufreq/
2720 F:      include/linux/cpufreq.h
2721
2722 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2723 M:      Viresh Kumar <viresh.kumar@linaro.org>
2724 M:      Sudeep Holla <sudeep.holla@arm.com>
2725 L:      linux-pm@vger.kernel.org
2726 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2727 S:      Maintained
2728 F:      drivers/cpufreq/arm_big_little.h
2729 F:      drivers/cpufreq/arm_big_little.c
2730 F:      drivers/cpufreq/arm_big_little_dt.c
2731
2732 CPUIDLE DRIVER - ARM BIG LITTLE
2733 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2734 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2735 L:      linux-pm@vger.kernel.org
2736 L:      linux-arm-kernel@lists.infradead.org
2737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2738 S:      Maintained
2739 F:      drivers/cpuidle/cpuidle-big_little.c
2740
2741 CPUIDLE DRIVER - ARM EXYNOS
2742 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2743 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2744 M:      Kukjin Kim <kgene@kernel.org>
2745 L:      linux-pm@vger.kernel.org
2746 L:      linux-samsung-soc@vger.kernel.org
2747 S:      Supported
2748 F:      drivers/cpuidle/cpuidle-exynos.c
2749 F:      arch/arm/mach-exynos/pm.c
2750
2751 CPUIDLE DRIVERS
2752 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
2753 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2754 L:      linux-pm@vger.kernel.org
2755 S:      Maintained
2756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2757 F:      drivers/cpuidle/*
2758 F:      include/linux/cpuidle.h
2759
2760 CPUID/MSR DRIVER
2761 M:      "H. Peter Anvin" <hpa@zytor.com>
2762 S:      Maintained
2763 F:      arch/x86/kernel/cpuid.c
2764 F:      arch/x86/kernel/msr.c
2765
2766 CPU POWER MONITORING SUBSYSTEM
2767 M:      Thomas Renninger <trenn@suse.de>
2768 L:      linux-pm@vger.kernel.org
2769 S:      Maintained
2770 F:      tools/power/cpupower/
2771
2772 CRAMFS FILESYSTEM
2773 W:      http://sourceforge.net/projects/cramfs/
2774 S:      Orphan / Obsolete
2775 F:      Documentation/filesystems/cramfs.txt
2776 F:      fs/cramfs/
2777
2778 CRIS PORT
2779 M:      Mikael Starvik <starvik@axis.com>
2780 M:      Jesper Nilsson <jesper.nilsson@axis.com>
2781 L:      linux-cris-kernel@axis.com
2782 W:      http://developer.axis.com
2783 S:      Maintained
2784 F:      arch/cris/
2785 F:      drivers/tty/serial/crisv10.*
2786
2787 CRYPTO API
2788 M:      Herbert Xu <herbert@gondor.apana.org.au>
2789 M:      "David S. Miller" <davem@davemloft.net>
2790 L:      linux-crypto@vger.kernel.org
2791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2792 S:      Maintained
2793 F:      Documentation/crypto/
2794 F:      arch/*/crypto/
2795 F:      crypto/
2796 F:      drivers/crypto/
2797 F:      include/crypto/
2798
2799 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2800 M:      Neil Horman <nhorman@tuxdriver.com>
2801 L:      linux-crypto@vger.kernel.org
2802 S:      Maintained
2803 F:      crypto/ansi_cprng.c
2804 F:      crypto/rng.c
2805
2806 CS5535 Audio ALSA driver
2807 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
2808 S:      Maintained
2809 F:      sound/pci/cs5535audio/
2810
2811 CW1200 WLAN driver
2812 M:      Solomon Peachy <pizza@shaftnet.org>
2813 S:      Maintained
2814 F:      drivers/net/wireless/cw1200/
2815
2816 CX18 VIDEO4LINUX DRIVER
2817 M:      Andy Walls <awalls@md.metrocast.net>
2818 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
2819 L:      linux-media@vger.kernel.org
2820 T:      git git://linuxtv.org/media_tree.git
2821 W:      http://linuxtv.org
2822 W:      http://www.ivtvdriver.org/index.php/Cx18
2823 S:      Maintained
2824 F:      Documentation/video4linux/cx18.txt
2825 F:      drivers/media/pci/cx18/
2826 F:      include/uapi/linux/ivtv*
2827
2828 CX2341X MPEG ENCODER HELPER MODULE
2829 M:      Hans Verkuil <hverkuil@xs4all.nl>
2830 L:      linux-media@vger.kernel.org
2831 T:      git git://linuxtv.org/media_tree.git
2832 W:      http://linuxtv.org
2833 S:      Maintained
2834 F:      drivers/media/common/cx2341x*
2835 F:      include/media/cx2341x*
2836
2837 CX88 VIDEO4LINUX DRIVER
2838 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2839 L:      linux-media@vger.kernel.org
2840 W:      http://linuxtv.org
2841 T:      git git://linuxtv.org/media_tree.git
2842 S:      Odd fixes
2843 F:      Documentation/video4linux/cx88/
2844 F:      drivers/media/pci/cx88/
2845
2846 CXD2820R MEDIA DRIVER
2847 M:      Antti Palosaari <crope@iki.fi>
2848 L:      linux-media@vger.kernel.org
2849 W:      http://linuxtv.org/
2850 W:      http://palosaari.fi/linux/
2851 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
2852 T:      git git://linuxtv.org/anttip/media_tree.git
2853 S:      Maintained
2854 F:      drivers/media/dvb-frontends/cxd2820r*
2855
2856 CXGB3 ETHERNET DRIVER (CXGB3)
2857 M:      Santosh Raspatur <santosh@chelsio.com>
2858 L:      netdev@vger.kernel.org
2859 W:      http://www.chelsio.com
2860 S:      Supported
2861 F:      drivers/net/ethernet/chelsio/cxgb3/
2862
2863 CXGB3 ISCSI DRIVER (CXGB3I)
2864 M:      Karen Xie <kxie@chelsio.com>
2865 L:      linux-scsi@vger.kernel.org
2866 W:      http://www.chelsio.com
2867 S:      Supported
2868 F:      drivers/scsi/cxgbi/cxgb3i
2869
2870 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
2871 M:      Steve Wise <swise@chelsio.com>
2872 L:      linux-rdma@vger.kernel.org
2873 W:      http://www.openfabrics.org
2874 S:      Supported
2875 F:      drivers/infiniband/hw/cxgb3/
2876
2877 CXGB4 ETHERNET DRIVER (CXGB4)
2878 M:      Hariprasad S <hariprasad@chelsio.com>
2879 L:      netdev@vger.kernel.org
2880 W:      http://www.chelsio.com
2881 S:      Supported
2882 F:      drivers/net/ethernet/chelsio/cxgb4/
2883
2884 CXGB4 ISCSI DRIVER (CXGB4I)
2885 M:      Karen Xie <kxie@chelsio.com>
2886 L:      linux-scsi@vger.kernel.org
2887 W:      http://www.chelsio.com
2888 S:      Supported
2889 F:      drivers/scsi/cxgbi/cxgb4i
2890
2891 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2892 M:      Steve Wise <swise@chelsio.com>
2893 L:      linux-rdma@vger.kernel.org
2894 W:      http://www.openfabrics.org
2895 S:      Supported
2896 F:      drivers/infiniband/hw/cxgb4/
2897
2898 CXGB4VF ETHERNET DRIVER (CXGB4VF)
2899 M:      Casey Leedom <leedom@chelsio.com>
2900 L:      netdev@vger.kernel.org
2901 W:      http://www.chelsio.com
2902 S:      Supported
2903 F:      drivers/net/ethernet/chelsio/cxgb4vf/
2904
2905 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
2906 M:      Ian Munsie <imunsie@au1.ibm.com>
2907 M:      Michael Neuling <mikey@neuling.org>
2908 L:      linuxppc-dev@lists.ozlabs.org
2909 S:      Supported
2910 F:      drivers/misc/cxl/
2911 F:      include/misc/cxl.h
2912 F:      include/uapi/misc/cxl.h
2913 F:      Documentation/powerpc/cxl.txt
2914 F:      Documentation/powerpc/cxl.txt
2915 F:      Documentation/ABI/testing/sysfs-class-cxl
2916
2917 STMMAC ETHERNET DRIVER
2918 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
2919 L:      netdev@vger.kernel.org
2920 W:      http://www.stlinux.com
2921 S:      Supported
2922 F:      drivers/net/ethernet/stmicro/stmmac/
2923
2924 CYBERPRO FB DRIVER
2925 M:      Russell King <linux@arm.linux.org.uk>
2926 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2927 W:      http://www.arm.linux.org.uk/
2928 S:      Maintained
2929 F:      drivers/video/fbdev/cyber2000fb.*
2930
2931 CYCLADES ASYNC MUX DRIVER
2932 W:      http://www.cyclades.com/
2933 S:      Orphan
2934 F:      drivers/tty/cyclades.c
2935 F:      include/linux/cyclades.h
2936 F:      include/uapi/linux/cyclades.h
2937
2938 CYCLADES PC300 DRIVER
2939 W:      http://www.cyclades.com/
2940 S:      Orphan
2941 F:      drivers/net/wan/pc300*
2942
2943 CYPRESS_FIRMWARE MEDIA DRIVER
2944 M:      Antti Palosaari <crope@iki.fi>
2945 L:      linux-media@vger.kernel.org
2946 W:      http://linuxtv.org/
2947 W:      http://palosaari.fi/linux/
2948 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
2949 T:      git git://linuxtv.org/anttip/media_tree.git
2950 S:      Maintained
2951 F:      drivers/media/common/cypress_firmware*
2952
2953 CYTTSP TOUCHSCREEN DRIVER
2954 M:      Ferruh Yigit <fery@cypress.com>
2955 L:      linux-input@vger.kernel.org
2956 S:      Supported
2957 F:      drivers/input/touchscreen/cyttsp*
2958 F:      include/linux/input/cyttsp.h
2959
2960 DAMA SLAVE for AX.25
2961 M:      Joerg Reuter <jreuter@yaina.de>
2962 W:      http://yaina.de/jreuter/
2963 W:      http://www.qsl.net/dl1bke/
2964 L:      linux-hams@vger.kernel.org
2965 S:      Maintained
2966 F:      net/ax25/af_ax25.c
2967 F:      net/ax25/ax25_dev.c
2968 F:      net/ax25/ax25_ds_*
2969 F:      net/ax25/ax25_in.c
2970 F:      net/ax25/ax25_out.c
2971 F:      net/ax25/ax25_timer.c
2972 F:      net/ax25/sysctl_net_ax25.c
2973
2974 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
2975 L:      netdev@vger.kernel.org
2976 S:      Orphan
2977 F:      Documentation/networking/dmfe.txt
2978 F:      drivers/net/ethernet/dec/tulip/dmfe.c
2979
2980 DC390/AM53C974 SCSI driver
2981 M:      Hannes Reinecke <hare@suse.de>
2982 L:      linux-scsi@vger.kernel.org
2983 S:      Maintained
2984 F:      drivers/scsi/am53c974.c
2985
2986 DC395x SCSI driver
2987 M:      Oliver Neukum <oliver@neukum.org>
2988 M:      Ali Akcaagac <aliakc@web.de>
2989 M:      Jamie Lenehan <lenehan@twibble.org>
2990 L:      dc395x@twibble.org
2991 W:      http://twibble.org/dist/dc395x/
2992 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
2993 S:      Maintained
2994 F:      Documentation/scsi/dc395x.txt
2995 F:      drivers/scsi/dc395x.*
2996
2997 DCCP PROTOCOL
2998 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
2999 L:      dccp@vger.kernel.org
3000 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3001 S:      Maintained
3002 F:      include/linux/dccp.h
3003 F:      include/uapi/linux/dccp.h
3004 F:      include/linux/tfrc.h
3005 F:      net/dccp/
3006
3007 DECnet NETWORK LAYER
3008 W:      http://linux-decnet.sourceforge.net
3009 L:      linux-decnet-user@lists.sourceforge.net
3010 S:      Orphan
3011 F:      Documentation/networking/decnet.txt
3012 F:      net/decnet/
3013
3014 DECSTATION PLATFORM SUPPORT
3015 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3016 L:      linux-mips@linux-mips.org
3017 W:      http://www.linux-mips.org/wiki/DECstation
3018 S:      Maintained
3019 F:      arch/mips/dec/
3020 F:      arch/mips/include/asm/dec/
3021 F:      arch/mips/include/asm/mach-dec/
3022
3023 DEFXX FDDI NETWORK DRIVER
3024 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3025 S:      Maintained
3026 F:      drivers/net/fddi/defxx.*
3027
3028 DELL LAPTOP DRIVER
3029 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3030 L:      platform-driver-x86@vger.kernel.org
3031 S:      Maintained
3032 F:      drivers/platform/x86/dell-laptop.c
3033
3034 DELL LAPTOP SMM DRIVER
3035 M:      Guenter Roeck <linux@roeck-us.net>
3036 S:      Maintained
3037 F:      drivers/char/i8k.c
3038 F:      include/uapi/linux/i8k.h
3039
3040 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3041 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3042 S:      Maintained
3043 F:      Documentation/dcdbas.txt
3044 F:      drivers/firmware/dcdbas.*
3045
3046 DELL WMI EXTRAS DRIVER
3047 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3048 S:      Maintained
3049 F:      drivers/platform/x86/dell-wmi.c
3050
3051 DESIGNWARE USB2 DRD IP DRIVER
3052 M:      John Youn <johnyoun@synopsys.com>
3053 L:      linux-usb@vger.kernel.org
3054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3055 S:      Maintained
3056 F:      drivers/usb/dwc2/
3057
3058 DESIGNWARE USB3 DRD IP DRIVER
3059 M:      Felipe Balbi <balbi@ti.com>
3060 L:      linux-usb@vger.kernel.org
3061 L:      linux-omap@vger.kernel.org
3062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3063 S:      Maintained
3064 F:      drivers/usb/dwc3/
3065
3066 DEVICE COREDUMP (DEV_COREDUMP)
3067 M:      Johannes Berg <johannes@sipsolutions.net>
3068 L:      linux-kernel@vger.kernel.org
3069 S:      Maintained
3070 F:      drivers/base/devcoredump.c
3071 F:      include/linux/devcoredump.h
3072
3073 DEVICE FREQUENCY (DEVFREQ)
3074 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3075 M:      Kyungmin Park <kyungmin.park@samsung.com>
3076 L:      linux-pm@vger.kernel.org
3077 S:      Maintained
3078 F:      drivers/devfreq/
3079
3080 DEVICE NUMBER REGISTRY
3081 M:      Torben Mathiasen <device@lanana.org>
3082 W:      http://lanana.org/docs/device-list/index.html
3083 S:      Maintained
3084
3085 DEVICE-MAPPER  (LVM)
3086 M:      Alasdair Kergon <agk@redhat.com>
3087 M:      Mike Snitzer <snitzer@redhat.com>
3088 M:      dm-devel@redhat.com
3089 L:      dm-devel@redhat.com
3090 W:      http://sources.redhat.com/dm
3091 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3093 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3094 S:      Maintained
3095 F:      Documentation/device-mapper/
3096 F:      drivers/md/dm*
3097 F:      drivers/md/persistent-data/
3098 F:      include/linux/device-mapper.h
3099 F:      include/linux/dm-*.h
3100 F:      include/uapi/linux/dm-*.h
3101
3102 DIALOG SEMICONDUCTOR DRIVERS
3103 M:      Support Opensource <support.opensource@diasemi.com>
3104 W:      http://www.dialog-semiconductor.com/products
3105 S:      Supported
3106 F:      Documentation/hwmon/da90??
3107 F:      drivers/gpio/gpio-da90??.c
3108 F:      drivers/hwmon/da90??-hwmon.c
3109 F:      drivers/input/misc/da90??_onkey.c
3110 F:      drivers/input/touchscreen/da9052_tsi.c
3111 F:      drivers/leds/leds-da90??.c
3112 F:      drivers/mfd/da903x.c
3113 F:      drivers/mfd/da90??-*.c
3114 F:      drivers/power/da9052-battery.c
3115 F:      drivers/regulator/da903x.c
3116 F:      drivers/regulator/da9???-regulator.[ch]
3117 F:      drivers/rtc/rtc-da90??.c
3118 F:      drivers/video/backlight/da90??_bl.c
3119 F:      drivers/watchdog/da90??_wdt.c
3120 F:      include/linux/mfd/da903x.h
3121 F:      include/linux/mfd/da9052/
3122 F:      include/linux/mfd/da9055/
3123 F:      include/linux/mfd/da9063/
3124 F:      include/sound/da[79]*.h
3125 F:      sound/soc/codecs/da[79]*.[ch]
3126
3127 DIGI NEO AND CLASSIC PCI PRODUCTS
3128 M:      Lidza Louina <lidza.louina@gmail.com>
3129 M:      Mark Hounschell <markh@compro.net>
3130 L:      driverdev-devel@linuxdriverproject.org
3131 S:      Maintained
3132 F:      drivers/staging/dgnc/
3133
3134 DIGI EPCA PCI PRODUCTS
3135 M:      Lidza Louina <lidza.louina@gmail.com>
3136 M:      Mark Hounschell <markh@compro.net>
3137 M:      Daeseok Youn <daeseok.youn@gmail.com>
3138 L:      driverdev-devel@linuxdriverproject.org
3139 S:      Maintained
3140 F:      drivers/staging/dgap/
3141
3142 DIOLAN U2C-12 I2C DRIVER
3143 M:      Guenter Roeck <linux@roeck-us.net>
3144 L:      linux-i2c@vger.kernel.org
3145 S:      Maintained
3146 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3147
3148 DIRECTORY NOTIFICATION (DNOTIFY)
3149 M:      Eric Paris <eparis@parisplace.org>
3150 S:      Maintained
3151 F:      Documentation/filesystems/dnotify.txt
3152 F:      fs/notify/dnotify/
3153 F:      include/linux/dnotify.h
3154
3155 DISK GEOMETRY AND PARTITION HANDLING
3156 M:      Andries Brouwer <aeb@cwi.nl>
3157 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3158 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3159 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3160 S:      Maintained
3161
3162 DISKQUOTA
3163 M:      Jan Kara <jack@suse.cz>
3164 S:      Maintained
3165 F:      Documentation/filesystems/quota.txt
3166 F:      fs/quota/
3167 F:      include/linux/quota*.h
3168 F:      include/uapi/linux/quota*.h
3169
3170 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3171 M:      Bernie Thompson <bernie@plugable.com>
3172 L:      linux-fbdev@vger.kernel.org
3173 S:      Maintained
3174 W:      http://plugable.com/category/projects/udlfb/
3175 F:      drivers/video/fbdev/udlfb.c
3176 F:      include/video/udlfb.h
3177 F:      Documentation/fb/udlfb.txt
3178
3179 DISTRIBUTED LOCK MANAGER (DLM)
3180 M:      Christine Caulfield <ccaulfie@redhat.com>
3181 M:      David Teigland <teigland@redhat.com>
3182 L:      cluster-devel@redhat.com
3183 W:      http://sources.redhat.com/cluster/
3184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3185 S:      Supported
3186 F:      fs/dlm/
3187
3188 DMA BUFFER SHARING FRAMEWORK
3189 M:      Sumit Semwal <sumit.semwal@linaro.org>
3190 S:      Maintained
3191 L:      linux-media@vger.kernel.org
3192 L:      dri-devel@lists.freedesktop.org
3193 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3194 F:      drivers/dma-buf/
3195 F:      include/linux/dma-buf*
3196 F:      include/linux/reservation.h
3197 F:      include/linux/*fence.h
3198 F:      Documentation/dma-buf-sharing.txt
3199 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3200
3201 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3202 M:      Vinod Koul <vinod.koul@intel.com>
3203 L:      dmaengine@vger.kernel.org
3204 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3205 S:      Maintained
3206 F:      drivers/dma/
3207 F:      include/linux/dmaengine.h
3208 F:      Documentation/dmaengine/
3209 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3210
3211 DME1737 HARDWARE MONITOR DRIVER
3212 M:      Juerg Haefliger <juergh@gmail.com>
3213 L:      lm-sensors@lm-sensors.org
3214 S:      Maintained
3215 F:      Documentation/hwmon/dme1737
3216 F:      drivers/hwmon/dme1737.c
3217
3218 DOCKING STATION DRIVER
3219 M:      Shaohua Li <shaohua.li@intel.com>
3220 L:      linux-acpi@vger.kernel.org
3221 S:      Supported
3222 F:      drivers/acpi/dock.c
3223
3224 DOCUMENTATION
3225 M:      Jonathan Corbet <corbet@lwn.net>
3226 L:      linux-doc@vger.kernel.org
3227 S:      Maintained
3228 F:      Documentation/
3229 X:      Documentation/ABI/
3230 X:      Documentation/devicetree/
3231 X:      Documentation/[a-z][a-z]_[A-Z][A-Z]/
3232 T:      git git://git.lwn.net/linux-2.6.git docs-next
3233
3234 DOUBLETALK DRIVER
3235 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3236 L:      blinux-list@redhat.com
3237 S:      Maintained
3238 F:      drivers/char/dtlk.c
3239 F:      include/linux/dtlk.h
3240
3241 DPT_I2O SCSI RAID DRIVER
3242 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3243 L:      linux-scsi@vger.kernel.org
3244 W:      http://www.adaptec.com/
3245 S:      Maintained
3246 F:      drivers/scsi/dpt*
3247 F:      drivers/scsi/dpt/
3248
3249 DRBD DRIVER
3250 P:      Philipp Reisner
3251 P:      Lars Ellenberg
3252 M:      drbd-dev@lists.linbit.com
3253 L:      drbd-user@lists.linbit.com
3254 W:      http://www.drbd.org
3255 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3256 T:      git git://git.drbd.org/drbd-8.3.git
3257 S:      Supported
3258 F:      drivers/block/drbd/
3259 F:      lib/lru_cache.c
3260 F:      Documentation/blockdev/drbd/
3261
3262 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
3263 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3265 S:      Supported
3266 F:      Documentation/kobject.txt
3267 F:      drivers/base/
3268 F:      fs/sysfs/
3269 F:      fs/debugfs/
3270 F:      include/linux/kobj*
3271 F:      include/linux/debugfs.h
3272 F:      lib/kobj*
3273
3274 DRM DRIVERS
3275 M:      David Airlie <airlied@linux.ie>
3276 L:      dri-devel@lists.freedesktop.org
3277 T:      git git://people.freedesktop.org/~airlied/linux
3278 S:      Maintained
3279 F:      drivers/gpu/drm/
3280 F:      drivers/gpu/vga/
3281 F:      include/drm/
3282 F:      include/uapi/drm/
3283
3284 RADEON DRM DRIVERS
3285 M:      Alex Deucher <alexander.deucher@amd.com>
3286 M:      Christian König <christian.koenig@amd.com>
3287 L:      dri-devel@lists.freedesktop.org
3288 T:      git git://people.freedesktop.org/~agd5f/linux
3289 S:      Supported
3290 F:      drivers/gpu/drm/radeon/
3291 F:      include/uapi/drm/radeon*
3292
3293 DRM PANEL DRIVERS
3294 M:      Thierry Reding <thierry.reding@gmail.com>
3295 L:      dri-devel@lists.freedesktop.org
3296 T:      git git://anongit.freedesktop.org/tegra/linux.git
3297 S:      Maintained
3298 F:      drivers/gpu/drm/drm_panel.c
3299 F:      drivers/gpu/drm/panel/
3300 F:      include/drm/drm_panel.h
3301 F:      Documentation/devicetree/bindings/panel/
3302
3303 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3304 M:      Daniel Vetter <daniel.vetter@intel.com>
3305 M:      Jani Nikula <jani.nikula@linux.intel.com>
3306 L:      intel-gfx@lists.freedesktop.org
3307 L:      dri-devel@lists.freedesktop.org
3308 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3309 T:      git git://anongit.freedesktop.org/drm-intel
3310 S:      Supported
3311 F:      drivers/gpu/drm/i915/
3312 F:      include/drm/i915*
3313 F:      include/uapi/drm/i915*
3314
3315 DRM DRIVERS FOR EXYNOS
3316 M:      Inki Dae <inki.dae@samsung.com>
3317 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3318 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3319 M:      Kyungmin Park <kyungmin.park@samsung.com>
3320 L:      dri-devel@lists.freedesktop.org
3321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3322 S:      Supported
3323 F:      drivers/gpu/drm/exynos/
3324 F:      include/drm/exynos*
3325 F:      include/uapi/drm/exynos*
3326
3327 DRM DRIVERS FOR FREESCALE IMX
3328 M:      Philipp Zabel <p.zabel@pengutronix.de>
3329 L:      dri-devel@lists.freedesktop.org
3330 S:      Maintained
3331 F:      drivers/gpu/drm/imx/
3332 F:      Documentation/devicetree/bindings/drm/imx/
3333
3334 DRM DRIVERS FOR NVIDIA TEGRA
3335 M:      Thierry Reding <thierry.reding@gmail.com>
3336 M:      Terje Bergström <tbergstrom@nvidia.com>
3337 L:      dri-devel@lists.freedesktop.org
3338 L:      linux-tegra@vger.kernel.org
3339 T:      git git://anongit.freedesktop.org/tegra/linux.git
3340 S:      Supported
3341 F:      drivers/gpu/drm/tegra/
3342 F:      drivers/gpu/host1x/
3343 F:      include/linux/host1x.h
3344 F:      include/uapi/drm/tegra_drm.h
3345 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3346
3347 DRM DRIVERS FOR RENESAS
3348 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3349 L:      dri-devel@lists.freedesktop.org
3350 L:      linux-sh@vger.kernel.org
3351 T:      git git://people.freedesktop.org/~airlied/linux
3352 S:      Supported
3353 F:      drivers/gpu/drm/rcar-du/
3354 F:      drivers/gpu/drm/shmobile/
3355 F:      include/linux/platform_data/rcar-du.h
3356 F:      include/linux/platform_data/shmob_drm.h
3357
3358 DSBR100 USB FM RADIO DRIVER
3359 M:      Alexey Klimov <klimov.linux@gmail.com>
3360 L:      linux-media@vger.kernel.org
3361 T:      git git://linuxtv.org/media_tree.git
3362 S:      Maintained
3363 F:      drivers/media/radio/dsbr100.c
3364
3365 DSCC4 DRIVER
3366 M:      Francois Romieu <romieu@fr.zoreil.com>
3367 L:      netdev@vger.kernel.org
3368 S:      Maintained
3369 F:      drivers/net/wan/dscc4.c
3370
3371 DVB_USB_AF9015 MEDIA DRIVER
3372 M:      Antti Palosaari <crope@iki.fi>
3373 L:      linux-media@vger.kernel.org
3374 W:      http://linuxtv.org/
3375 W:      http://palosaari.fi/linux/
3376 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3377 T:      git git://linuxtv.org/anttip/media_tree.git
3378 S:      Maintained
3379 F:      drivers/media/usb/dvb-usb-v2/af9015*
3380
3381 DVB_USB_AF9035 MEDIA DRIVER
3382 M:      Antti Palosaari <crope@iki.fi>
3383 L:      linux-media@vger.kernel.org
3384 W:      http://linuxtv.org/
3385 W:      http://palosaari.fi/linux/
3386 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3387 T:      git git://linuxtv.org/anttip/media_tree.git
3388 S:      Maintained
3389 F:      drivers/media/usb/dvb-usb-v2/af9035*
3390
3391 DVB_USB_ANYSEE 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/anysee*
3400
3401 DVB_USB_AU6610 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/au6610*
3410
3411 DVB_USB_CE6230 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/ce6230*
3420
3421 DVB_USB_CXUSB MEDIA DRIVER
3422 M:      Michael Krufky <mkrufky@linuxtv.org>
3423 L:      linux-media@vger.kernel.org
3424 W:      http://linuxtv.org/
3425 W:      http://github.com/mkrufky
3426 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3427 T:      git git://linuxtv.org/media_tree.git
3428 S:      Maintained
3429 F:      drivers/media/usb/dvb-usb/cxusb*
3430
3431 DVB_USB_EC168 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/ec168*
3440
3441 DVB_USB_GL861 MEDIA DRIVER
3442 M:      Antti Palosaari <crope@iki.fi>
3443 L:      linux-media@vger.kernel.org
3444 W:      http://linuxtv.org/
3445 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3446 T:      git git://linuxtv.org/anttip/media_tree.git
3447 S:      Maintained
3448 F:      drivers/media/usb/dvb-usb-v2/gl861*
3449
3450 DVB_USB_MXL111SF MEDIA DRIVER
3451 M:      Michael Krufky <mkrufky@linuxtv.org>
3452 L:      linux-media@vger.kernel.org
3453 W:      http://linuxtv.org/
3454 W:      http://github.com/mkrufky
3455 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3456 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3457 S:      Maintained
3458 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3459
3460 DVB_USB_RTL28XXU MEDIA DRIVER
3461 M:      Antti Palosaari <crope@iki.fi>
3462 L:      linux-media@vger.kernel.org
3463 W:      http://linuxtv.org/
3464 W:      http://palosaari.fi/linux/
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/rtl28xxu*
3469
3470 DVB_USB_V2 MEDIA DRIVER
3471 M:      Antti Palosaari <crope@iki.fi>
3472 L:      linux-media@vger.kernel.org
3473 W:      http://linuxtv.org/
3474 W:      http://palosaari.fi/linux/
3475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3476 T:      git git://linuxtv.org/anttip/media_tree.git
3477 S:      Maintained
3478 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3479 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3480
3481 DYNAMIC DEBUG
3482 M:      Jason Baron <jbaron@akamai.com>
3483 S:      Maintained
3484 F:      lib/dynamic_debug.c
3485 F:      include/linux/dynamic_debug.h
3486
3487 DZ DECSTATION DZ11 SERIAL DRIVER
3488 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3489 S:      Maintained
3490 F:      drivers/tty/serial/dz.*
3491
3492 E3X0 POWER BUTTON DRIVER
3493 M:      Moritz Fischer <moritz.fischer@ettus.com>
3494 L:      usrp-users@lists.ettus.com
3495 W:      http://www.ettus.com
3496 S:      Supported
3497 F:      drivers/input/misc/e3x0-button.c
3498 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3499
3500 E4000 MEDIA DRIVER
3501 M:      Antti Palosaari <crope@iki.fi>
3502 L:      linux-media@vger.kernel.org
3503 W:      http://linuxtv.org/
3504 W:      http://palosaari.fi/linux/
3505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3506 T:      git git://linuxtv.org/anttip/media_tree.git
3507 S:      Maintained
3508 F:      drivers/media/tuners/e4000*
3509
3510 EATA ISA/EISA/PCI SCSI DRIVER
3511 M:      Dario Ballabio <ballabio_dario@emc.com>
3512 L:      linux-scsi@vger.kernel.org
3513 S:      Maintained
3514 F:      drivers/scsi/eata.c
3515
3516 EC100 MEDIA DRIVER
3517 M:      Antti Palosaari <crope@iki.fi>
3518 L:      linux-media@vger.kernel.org
3519 W:      http://linuxtv.org/
3520 W:      http://palosaari.fi/linux/
3521 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3522 T:      git git://linuxtv.org/anttip/media_tree.git
3523 S:      Maintained
3524 F:      drivers/media/dvb-frontends/ec100*
3525
3526 ECRYPT FILE SYSTEM
3527 M:      Tyler Hicks <tyhicks@canonical.com>
3528 L:      ecryptfs@vger.kernel.org
3529 W:      http://ecryptfs.org
3530 W:      https://launchpad.net/ecryptfs
3531 S:      Supported
3532 F:      Documentation/filesystems/ecryptfs.txt
3533 F:      fs/ecryptfs/
3534
3535 EDAC-CORE
3536 M:      Doug Thompson <dougthompson@xmission.com>
3537 M:      Borislav Petkov <bp@alien8.de>
3538 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3539 L:      linux-edac@vger.kernel.org
3540 W:      bluesmoke.sourceforge.net
3541 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3542 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3543 S:      Supported
3544 F:      Documentation/edac.txt
3545 F:      drivers/edac/
3546 F:      include/linux/edac.h
3547
3548 EDAC-AMD64
3549 M:      Doug Thompson <dougthompson@xmission.com>
3550 M:      Borislav Petkov <bp@alien8.de>
3551 L:      linux-edac@vger.kernel.org
3552 W:      bluesmoke.sourceforge.net
3553 S:      Maintained
3554 F:      drivers/edac/amd64_edac*
3555
3556 EDAC-CALXEDA
3557 M:      Doug Thompson <dougthompson@xmission.com>
3558 M:      Robert Richter <rric@kernel.org>
3559 L:      linux-edac@vger.kernel.org
3560 W:      bluesmoke.sourceforge.net
3561 S:      Maintained
3562 F:      drivers/edac/highbank*
3563
3564 EDAC-CAVIUM
3565 M:      Ralf Baechle <ralf@linux-mips.org>
3566 M:      David Daney <david.daney@cavium.com>
3567 L:      linux-edac@vger.kernel.org
3568 L:      linux-mips@linux-mips.org
3569 W:      bluesmoke.sourceforge.net
3570 S:      Supported
3571 F:      drivers/edac/octeon_edac*
3572
3573 EDAC-E752X
3574 M:      Mark Gross <mark.gross@intel.com>
3575 M:      Doug Thompson <dougthompson@xmission.com>
3576 L:      linux-edac@vger.kernel.org
3577 W:      bluesmoke.sourceforge.net
3578 S:      Maintained
3579 F:      drivers/edac/e752x_edac.c
3580
3581 EDAC-E7XXX
3582 M:      Doug Thompson <dougthompson@xmission.com>
3583 L:      linux-edac@vger.kernel.org
3584 W:      bluesmoke.sourceforge.net
3585 S:      Maintained
3586 F:      drivers/edac/e7xxx_edac.c
3587
3588 EDAC-GHES
3589 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3590 L:      linux-edac@vger.kernel.org
3591 W:      bluesmoke.sourceforge.net
3592 S:      Maintained
3593 F:      drivers/edac/ghes_edac.c
3594
3595 EDAC-I82443BXGX
3596 M:      Tim Small <tim@buttersideup.com>
3597 L:      linux-edac@vger.kernel.org
3598 W:      bluesmoke.sourceforge.net
3599 S:      Maintained
3600 F:      drivers/edac/i82443bxgx_edac.c
3601
3602 EDAC-I3000
3603 M:      Jason Uhlenkott <juhlenko@akamai.com>
3604 L:      linux-edac@vger.kernel.org
3605 W:      bluesmoke.sourceforge.net
3606 S:      Maintained
3607 F:      drivers/edac/i3000_edac.c
3608
3609 EDAC-I5000
3610 M:      Doug Thompson <dougthompson@xmission.com>
3611 L:      linux-edac@vger.kernel.org
3612 W:      bluesmoke.sourceforge.net
3613 S:      Maintained
3614 F:      drivers/edac/i5000_edac.c
3615
3616 EDAC-I5400
3617 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3618 L:      linux-edac@vger.kernel.org
3619 W:      bluesmoke.sourceforge.net
3620 S:      Maintained
3621 F:      drivers/edac/i5400_edac.c
3622
3623 EDAC-I7300
3624 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3625 L:      linux-edac@vger.kernel.org
3626 W:      bluesmoke.sourceforge.net
3627 S:      Maintained
3628 F:      drivers/edac/i7300_edac.c
3629
3630 EDAC-I7CORE
3631 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3632 L:      linux-edac@vger.kernel.org
3633 W:      bluesmoke.sourceforge.net
3634 S:      Maintained
3635 F:      drivers/edac/i7core_edac.c
3636
3637 EDAC-I82975X
3638 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3639 M:      "Arvind R." <arvino55@gmail.com>
3640 L:      linux-edac@vger.kernel.org
3641 W:      bluesmoke.sourceforge.net
3642 S:      Maintained
3643 F:      drivers/edac/i82975x_edac.c
3644
3645 EDAC-IE31200
3646 M:      Jason Baron <jbaron@akamai.com>
3647 L:      linux-edac@vger.kernel.org
3648 W:      bluesmoke.sourceforge.net
3649 S:      Maintained
3650 F:      drivers/edac/ie31200_edac.c
3651
3652 EDAC-MPC85XX
3653 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
3654 L:      linux-edac@vger.kernel.org
3655 W:      bluesmoke.sourceforge.net
3656 S:      Maintained
3657 F:      drivers/edac/mpc85xx_edac.[ch]
3658
3659 EDAC-PASEMI
3660 M:      Egor Martovetsky <egor@pasemi.com>
3661 L:      linux-edac@vger.kernel.org
3662 W:      bluesmoke.sourceforge.net
3663 S:      Maintained
3664 F:      drivers/edac/pasemi_edac.c
3665
3666 EDAC-R82600
3667 M:      Tim Small <tim@buttersideup.com>
3668 L:      linux-edac@vger.kernel.org
3669 W:      bluesmoke.sourceforge.net
3670 S:      Maintained
3671 F:      drivers/edac/r82600_edac.c
3672
3673 EDAC-SBRIDGE
3674 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3675 L:      linux-edac@vger.kernel.org
3676 W:      bluesmoke.sourceforge.net
3677 S:      Maintained
3678 F:      drivers/edac/sb_edac.c
3679
3680 EDIROL UA-101/UA-1000 DRIVER
3681 M:      Clemens Ladisch <clemens@ladisch.de>
3682 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3683 T:      git git://git.alsa-project.org/alsa-kernel.git
3684 S:      Maintained
3685 F:      sound/usb/misc/ua101.c
3686
3687 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3688 M:      Matt Fleming <matt.fleming@intel.com>
3689 L:      linux-efi@vger.kernel.org
3690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3691 S:      Maintained
3692 F:      Documentation/efi-stub.txt
3693 F:      arch/ia64/kernel/efi.c
3694 F:      arch/x86/boot/compressed/eboot.[ch]
3695 F:      arch/x86/include/asm/efi.h
3696 F:      arch/x86/platform/efi/*
3697 F:      drivers/firmware/efi/*
3698 F:      include/linux/efi*.h
3699
3700 EFI VARIABLE FILESYSTEM
3701 M:      Matthew Garrett <matthew.garrett@nebula.com>
3702 M:      Jeremy Kerr <jk@ozlabs.org>
3703 M:      Matt Fleming <matt.fleming@intel.com>
3704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3705 L:      linux-efi@vger.kernel.org
3706 S:      Maintained
3707 F:      fs/efivarfs/
3708
3709 EFIFB FRAMEBUFFER DRIVER
3710 L:      linux-fbdev@vger.kernel.org
3711 M:      Peter Jones <pjones@redhat.com>
3712 S:      Maintained
3713 F:      drivers/video/fbdev/efifb.c
3714
3715 EFS FILESYSTEM
3716 W:      http://aeschi.ch.eu.org/efs/
3717 S:      Orphan
3718 F:      fs/efs/
3719
3720 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3721 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3722 M:      Christoph Raisch <raisch@de.ibm.com>
3723 L:      linux-rdma@vger.kernel.org
3724 S:      Supported
3725 F:      drivers/infiniband/hw/ehca/
3726
3727 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3728 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3729 L:      netdev@vger.kernel.org
3730 S:      Maintained
3731 F:      drivers/net/ethernet/ibm/ehea/
3732
3733 EM28XX VIDEO4LINUX DRIVER
3734 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3735 L:      linux-media@vger.kernel.org
3736 W:      http://linuxtv.org
3737 T:      git git://linuxtv.org/media_tree.git
3738 S:      Maintained
3739 F:      drivers/media/usb/em28xx/
3740
3741 EMBEDDED LINUX
3742 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
3743 M:      Matt Mackall <mpm@selenic.com>
3744 M:      David Woodhouse <dwmw2@infradead.org>
3745 L:      linux-embedded@vger.kernel.org
3746 S:      Maintained
3747
3748 EMULEX LPFC FC SCSI DRIVER
3749 M:      James Smart <james.smart@emulex.com>
3750 L:      linux-scsi@vger.kernel.org
3751 W:      http://sourceforge.net/projects/lpfcxxxx
3752 S:      Supported
3753 F:      drivers/scsi/lpfc/
3754
3755 ENE CB710 FLASH CARD READER DRIVER
3756 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
3757 S:      Maintained
3758 F:      drivers/misc/cb710/
3759 F:      drivers/mmc/host/cb710-mmc.*
3760 F:      include/linux/cb710.h
3761
3762 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3763 M:      Maxim Levitsky <maximlevitsky@gmail.com>
3764 S:      Maintained
3765 F:      drivers/media/rc/ene_ir.*
3766
3767 ENHANCED ERROR HANDLING (EEH)
3768 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
3769 L:      linuxppc-dev@lists.ozlabs.org
3770 S:      Supported
3771 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
3772 F:      arch/powerpc/kernel/eeh*.c
3773
3774 EPSON S1D13XXX FRAMEBUFFER DRIVER
3775 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
3776 S:      Maintained
3777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
3778 F:      drivers/video/fbdev/s1d13xxxfb.c
3779 F:      include/video/s1d13xxxfb.h
3780
3781 ET131X NETWORK DRIVER
3782 M:      Mark Einon <mark.einon@gmail.com>
3783 S:      Odd Fixes
3784 F:      drivers/net/ethernet/agere/
3785
3786 ETHERNET BRIDGE
3787 M:      Stephen Hemminger <stephen@networkplumber.org>
3788 L:      bridge@lists.linux-foundation.org
3789 L:      netdev@vger.kernel.org
3790 W:      http://www.linuxfoundation.org/en/Net:Bridge
3791 S:      Maintained
3792 F:      include/linux/netfilter_bridge/
3793 F:      net/bridge/
3794
3795 ETHERNET PHY LIBRARY
3796 M:      Florian Fainelli <f.fainelli@gmail.com>
3797 L:      netdev@vger.kernel.org
3798 S:      Maintained
3799 F:      include/linux/phy.h
3800 F:      include/linux/phy_fixed.h
3801 F:      drivers/net/phy/
3802 F:      Documentation/networking/phy.txt
3803 F:      drivers/of/of_mdio.c
3804 F:      drivers/of/of_net.c
3805
3806 EXT2 FILE SYSTEM
3807 M:      Jan Kara <jack@suse.cz>
3808 L:      linux-ext4@vger.kernel.org
3809 S:      Maintained
3810 F:      Documentation/filesystems/ext2.txt
3811 F:      fs/ext2/
3812 F:      include/linux/ext2*
3813
3814 EXT3 FILE SYSTEM
3815 M:      Jan Kara <jack@suse.cz>
3816 M:      Andrew Morton <akpm@linux-foundation.org>
3817 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3818 L:      linux-ext4@vger.kernel.org
3819 S:      Maintained
3820 F:      Documentation/filesystems/ext3.txt
3821 F:      fs/ext3/
3822
3823 EXT4 FILE SYSTEM
3824 M:      "Theodore Ts'o" <tytso@mit.edu>
3825 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3826 L:      linux-ext4@vger.kernel.org
3827 W:      http://ext4.wiki.kernel.org
3828 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
3829 S:      Maintained
3830 F:      Documentation/filesystems/ext4.txt
3831 F:      fs/ext4/
3832
3833 Extended Verification Module (EVM)
3834 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
3835 L:      linux-ima-devel@lists.sourceforge.net
3836 L:      linux-security-module@vger.kernel.org
3837 S:      Supported
3838 F:      security/integrity/evm/
3839
3840 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3841 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3842 M:      Chanwoo Choi <cw00.choi@samsung.com>
3843 L:      linux-kernel@vger.kernel.org
3844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
3845 S:      Maintained
3846 F:      drivers/extcon/
3847 F:      Documentation/extcon/
3848
3849 EXYNOS DP DRIVER
3850 M:      Jingoo Han <jg1.han@samsung.com>
3851 L:      dri-devel@lists.freedesktop.org
3852 S:      Maintained
3853 F:      drivers/gpu/drm/exynos/exynos_dp*
3854
3855 EXYNOS MIPI DISPLAY DRIVERS
3856 M:      Inki Dae <inki.dae@samsung.com>
3857 M:      Donghwa Lee <dh09.lee@samsung.com>
3858 M:      Kyungmin Park <kyungmin.park@samsung.com>
3859 L:      linux-fbdev@vger.kernel.org
3860 S:      Maintained
3861 F:      drivers/video/fbdev/exynos/exynos_mipi*
3862 F:      include/video/exynos_mipi*
3863
3864 F71805F HARDWARE MONITORING DRIVER
3865 M:      Jean Delvare <jdelvare@suse.de>
3866 L:      lm-sensors@lm-sensors.org
3867 S:      Maintained
3868 F:      Documentation/hwmon/f71805f
3869 F:      drivers/hwmon/f71805f.c
3870
3871 FC0011 TUNER DRIVER
3872 M:      Michael Buesch <m@bues.ch>
3873 L:      linux-media@vger.kernel.org
3874 S:      Maintained
3875 F:      drivers/media/tuners/fc0011.h
3876 F:      drivers/media/tuners/fc0011.c
3877
3878 FC2580 MEDIA DRIVER
3879 M:      Antti Palosaari <crope@iki.fi>
3880 L:      linux-media@vger.kernel.org
3881 W:      http://linuxtv.org/
3882 W:      http://palosaari.fi/linux/
3883 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3884 T:      git git://linuxtv.org/anttip/media_tree.git
3885 S:      Maintained
3886 F:      drivers/media/tuners/fc2580*
3887
3888 FANOTIFY
3889 M:      Eric Paris <eparis@redhat.com>
3890 S:      Maintained
3891 F:      fs/notify/fanotify/
3892 F:      include/linux/fanotify.h
3893 F:      include/uapi/linux/fanotify.h
3894
3895 FARSYNC SYNCHRONOUS DRIVER
3896 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
3897 W:      http://www.farsite.co.uk/
3898 S:      Supported
3899 F:      drivers/net/wan/farsync.*
3900
3901 FAULT INJECTION SUPPORT
3902 M:      Akinobu Mita <akinobu.mita@gmail.com>
3903 S:      Supported
3904 F:      Documentation/fault-injection/
3905 F:      lib/fault-inject.c
3906
3907 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3908 M:      Robert Love <robert.w.love@intel.com>
3909 L:      fcoe-devel@open-fcoe.org
3910 W:      www.Open-FCoE.org
3911 S:      Supported
3912 F:      drivers/scsi/libfc/
3913 F:      drivers/scsi/fcoe/
3914 F:      include/scsi/fc/
3915 F:      include/scsi/libfc.h
3916 F:      include/scsi/libfcoe.h
3917 F:      include/uapi/scsi/fc/
3918
3919 FILE LOCKING (flock() and fcntl()/lockf())
3920 M:      Jeff Layton <jlayton@poochiereds.net>
3921 M:      J. Bruce Fields <bfields@fieldses.org>
3922 L:      linux-fsdevel@vger.kernel.org
3923 S:      Maintained
3924 F:      include/linux/fcntl.h
3925 F:      include/linux/fs.h
3926 F:      include/uapi/linux/fcntl.h
3927 F:      include/uapi/linux/fs.h
3928 F:      fs/fcntl.c
3929 F:      fs/locks.c
3930
3931 FILESYSTEMS (VFS and infrastructure)
3932 M:      Alexander Viro <viro@zeniv.linux.org.uk>
3933 L:      linux-fsdevel@vger.kernel.org
3934 S:      Maintained
3935 F:      fs/*
3936
3937 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3938 M:      Riku Voipio <riku.voipio@iki.fi>
3939 L:      lm-sensors@lm-sensors.org
3940 S:      Maintained
3941 F:      drivers/hwmon/f75375s.c
3942 F:      include/linux/f75375s.h
3943
3944 FIREWIRE AUDIO DRIVERS
3945 M:      Clemens Ladisch <clemens@ladisch.de>
3946 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3947 T:      git git://git.alsa-project.org/alsa-kernel.git
3948 S:      Maintained
3949 F:      sound/firewire/
3950
3951 FIREWIRE MEDIA DRIVERS (firedtv)
3952 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
3953 L:      linux-media@vger.kernel.org
3954 L:      linux1394-devel@lists.sourceforge.net
3955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3956 S:      Maintained
3957 F:      drivers/media/firewire/
3958
3959 FIREWIRE SBP-2 TARGET
3960 M:      Chris Boot <bootc@bootc.net>
3961 L:      linux-scsi@vger.kernel.org
3962 L:      target-devel@vger.kernel.org
3963 L:      linux1394-devel@lists.sourceforge.net
3964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3965 S:      Maintained
3966 F:      drivers/target/sbp/
3967
3968 FIREWIRE SUBSYSTEM
3969 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
3970 L:      linux1394-devel@lists.sourceforge.net
3971 W:      http://ieee1394.wiki.kernel.org/
3972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
3973 S:      Maintained
3974 F:      drivers/firewire/
3975 F:      include/linux/firewire.h
3976 F:      include/uapi/linux/firewire*.h
3977 F:      tools/firewire/
3978
3979 FIRMWARE LOADER (request_firmware)
3980 M:      Ming Lei <ming.lei@canonical.com>
3981 L:      linux-kernel@vger.kernel.org
3982 S:      Maintained
3983 F:      Documentation/firmware_class/
3984 F:      drivers/base/firmware*.c
3985 F:      include/linux/firmware.h
3986
3987 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
3988 M:      Joshua Morris <josh.h.morris@us.ibm.com>
3989 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3990 S:      Maintained
3991 F:      drivers/block/rsxx/
3992
3993 FLOPPY DRIVER
3994 M:      Jiri Kosina <jkosina@suse.cz>
3995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3996 S:      Odd fixes
3997 F:      drivers/block/floppy.c
3998
3999 FMC SUBSYSTEM
4000 M:      Alessandro Rubini <rubini@gnudd.com>
4001 W:      http://www.ohwr.org/projects/fmc-bus
4002 S:      Supported
4003 F:      drivers/fmc/
4004 F:      include/linux/fmc*.h
4005 F:      include/linux/ipmi-fru.h
4006 K:      fmc_d.*register
4007
4008 FPU EMULATOR
4009 M:      Bill Metzenthen <billm@melbpc.org.au>
4010 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4011 S:      Maintained
4012 F:      arch/x86/math-emu/
4013
4014 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4015 L:      netdev@vger.kernel.org
4016 S:      Orphan
4017 F:      drivers/net/wan/dlci.c
4018 F:      drivers/net/wan/sdla.c
4019
4020 FRAMEBUFFER LAYER
4021 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4022 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4023 L:      linux-fbdev@vger.kernel.org
4024 W:      http://linux-fbdev.sourceforge.net/
4025 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4027 S:      Maintained
4028 F:      Documentation/fb/
4029 F:      Documentation/devicetree/bindings/fb/
4030 F:      drivers/video/
4031 F:      include/video/
4032 F:      include/linux/fb.h
4033 F:      include/uapi/video/
4034 F:      include/uapi/linux/fb.h
4035
4036 FREESCALE DIU FRAMEBUFFER DRIVER
4037 M:      Timur Tabi <timur@tabi.org>
4038 L:      linux-fbdev@vger.kernel.org
4039 S:      Maintained
4040 F:      drivers/video/fbdev/fsl-diu-fb.*
4041
4042 FREESCALE DMA DRIVER
4043 M:      Li Yang <leoli@freescale.com>
4044 M:      Zhang Wei <zw@zh-kernel.org>
4045 L:      linuxppc-dev@lists.ozlabs.org
4046 S:      Maintained
4047 F:      drivers/dma/fsldma.*
4048
4049 FREESCALE I2C CPM DRIVER
4050 M:      Jochen Friedrich <jochen@scram.de>
4051 L:      linuxppc-dev@lists.ozlabs.org
4052 L:      linux-i2c@vger.kernel.org
4053 S:      Maintained
4054 F:      drivers/i2c/busses/i2c-cpm.c
4055
4056 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4057 M:      Sascha Hauer <kernel@pengutronix.de>
4058 L:      linux-fbdev@vger.kernel.org
4059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4060 S:      Maintained
4061 F:      include/linux/platform_data/video-imxfb.h
4062 F:      drivers/video/fbdev/imxfb.c
4063
4064 FREESCALE SOC FS_ENET DRIVER
4065 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4066 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4067 L:      linuxppc-dev@lists.ozlabs.org
4068 L:      netdev@vger.kernel.org
4069 S:      Maintained
4070 F:      drivers/net/ethernet/freescale/fs_enet/
4071 F:      include/linux/fs_enet_pd.h
4072
4073 FREESCALE QUICC ENGINE LIBRARY
4074 L:      linuxppc-dev@lists.ozlabs.org
4075 S:      Orphan
4076 F:      arch/powerpc/sysdev/qe_lib/
4077 F:      arch/powerpc/include/asm/*qe.h
4078
4079 FREESCALE USB PERIPHERAL DRIVERS
4080 M:      Li Yang <leoli@freescale.com>
4081 L:      linux-usb@vger.kernel.org
4082 L:      linuxppc-dev@lists.ozlabs.org
4083 S:      Maintained
4084 F:      drivers/usb/gadget/udc/fsl*
4085
4086 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4087 M:      Li Yang <leoli@freescale.com>
4088 L:      netdev@vger.kernel.org
4089 L:      linuxppc-dev@lists.ozlabs.org
4090 S:      Maintained
4091 F:      drivers/net/ethernet/freescale/ucc_geth*
4092
4093 FREESCALE QUICC ENGINE UCC UART DRIVER
4094 M:      Timur Tabi <timur@tabi.org>
4095 L:      linuxppc-dev@lists.ozlabs.org
4096 S:      Maintained
4097 F:      drivers/tty/serial/ucc_uart.c
4098
4099 FREESCALE SOC SOUND DRIVERS
4100 M:      Timur Tabi <timur@tabi.org>
4101 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4102 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4103 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4104 L:      linuxppc-dev@lists.ozlabs.org
4105 S:      Maintained
4106 F:      sound/soc/fsl/fsl*
4107 F:      sound/soc/fsl/imx*
4108 F:      sound/soc/fsl/mpc8610_hpcd.c
4109
4110 FREEVXFS FILESYSTEM
4111 M:      Christoph Hellwig <hch@infradead.org>
4112 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4113 S:      Maintained
4114 F:      fs/freevxfs/
4115
4116 FREEZER
4117 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4118 M:      Pavel Machek <pavel@ucw.cz>
4119 L:      linux-pm@vger.kernel.org
4120 S:      Supported
4121 F:      Documentation/power/freezing-of-tasks.txt
4122 F:      include/linux/freezer.h
4123 F:      kernel/freezer.c
4124
4125 FRONTSWAP API
4126 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4127 L:      linux-kernel@vger.kernel.org
4128 S:      Maintained
4129 F:      mm/frontswap.c
4130 F:      include/linux/frontswap.h
4131
4132 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4133 M:      David Howells <dhowells@redhat.com>
4134 L:      linux-cachefs@redhat.com
4135 S:      Supported
4136 F:      Documentation/filesystems/caching/
4137 F:      fs/fscache/
4138 F:      include/linux/fscache*.h
4139
4140 F2FS FILE SYSTEM
4141 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4142 M:      Changman Lee <cm224.lee@samsung.com>
4143 L:      linux-f2fs-devel@lists.sourceforge.net
4144 W:      http://en.wikipedia.org/wiki/F2FS
4145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4146 S:      Maintained
4147 F:      Documentation/filesystems/f2fs.txt
4148 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4149 F:      fs/f2fs/
4150 F:      include/linux/f2fs_fs.h
4151
4152 FUJITSU FR-V (FRV) PORT
4153 M:      David Howells <dhowells@redhat.com>
4154 S:      Maintained
4155 F:      arch/frv/
4156
4157 FUJITSU LAPTOP EXTRAS
4158 M:      Jonathan Woithe <jwoithe@just42.net>
4159 L:      platform-driver-x86@vger.kernel.org
4160 S:      Maintained
4161 F:      drivers/platform/x86/fujitsu-laptop.c
4162
4163 FUJITSU M-5MO LS CAMERA ISP DRIVER
4164 M:      Kyungmin Park <kyungmin.park@samsung.com>
4165 M:      Heungjun Kim <riverful.kim@samsung.com>
4166 L:      linux-media@vger.kernel.org
4167 S:      Maintained
4168 F:      drivers/media/i2c/m5mols/
4169 F:      include/media/m5mols.h
4170
4171 FUJITSU TABLET EXTRAS
4172 M:      Robert Gerlach <khnz@gmx.de>
4173 L:      platform-driver-x86@vger.kernel.org
4174 S:      Maintained
4175 F:      drivers/platform/x86/fujitsu-tablet.c
4176
4177 FUSE: FILESYSTEM IN USERSPACE
4178 M:      Miklos Szeredi <miklos@szeredi.hu>
4179 L:      fuse-devel@lists.sourceforge.net
4180 W:      http://fuse.sourceforge.net/
4181 S:      Maintained
4182 F:      fs/fuse/
4183 F:      include/uapi/linux/fuse.h
4184
4185 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4186 M:      Rik Faith <faith@cs.unc.edu>
4187 L:      linux-scsi@vger.kernel.org
4188 S:      Odd Fixes (e.g., new signatures)
4189 F:      drivers/scsi/fdomain.*
4190
4191 GCOV BASED KERNEL PROFILING
4192 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4193 S:      Maintained
4194 F:      kernel/gcov/
4195 F:      Documentation/gcov.txt
4196
4197 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4198 M:      Achim Leubner <achim_leubner@adaptec.com>
4199 L:      linux-scsi@vger.kernel.org
4200 W:      http://www.icp-vortex.com/
4201 S:      Supported
4202 F:      drivers/scsi/gdt*
4203
4204 GEMTEK FM RADIO RECEIVER DRIVER
4205 M:      Hans Verkuil <hverkuil@xs4all.nl>
4206 L:      linux-media@vger.kernel.org
4207 T:      git git://linuxtv.org/media_tree.git
4208 W:      http://linuxtv.org
4209 S:      Maintained
4210 F:      drivers/media/radio/radio-gemtek*
4211
4212 GENERIC GPIO I2C DRIVER
4213 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4214 S:      Supported
4215 F:      drivers/i2c/busses/i2c-gpio.c
4216 F:      include/linux/i2c-gpio.h
4217
4218 GENERIC GPIO I2C MULTIPLEXER DRIVER
4219 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4220 L:      linux-i2c@vger.kernel.org
4221 S:      Supported
4222 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4223 F:      include/linux/i2c-mux-gpio.h
4224 F:      Documentation/i2c/muxes/i2c-mux-gpio
4225
4226 GENERIC HDLC (WAN) DRIVERS
4227 M:      Krzysztof Halasa <khc@pm.waw.pl>
4228 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4229 S:      Maintained
4230 F:      drivers/net/wan/c101.c
4231 F:      drivers/net/wan/hd6457*
4232 F:      drivers/net/wan/hdlc*
4233 F:      drivers/net/wan/n2.c
4234 F:      drivers/net/wan/pc300too.c
4235 F:      drivers/net/wan/pci200syn.c
4236 F:      drivers/net/wan/wanxl*
4237
4238 GENERIC INCLUDE/ASM HEADER FILES
4239 M:      Arnd Bergmann <arnd@arndb.de>
4240 L:      linux-arch@vger.kernel.org
4241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4242 S:      Maintained
4243 F:      include/asm-generic/
4244 F:      include/uapi/asm-generic/
4245
4246 GENERIC PHY FRAMEWORK
4247 M:      Kishon Vijay Abraham I <kishon@ti.com>
4248 L:      linux-kernel@vger.kernel.org
4249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4250 S:      Supported
4251 F:      drivers/phy/
4252 F:      include/linux/phy/
4253
4254 GENERIC UIO DRIVER FOR PCI DEVICES
4255 M:      "Michael S. Tsirkin" <mst@redhat.com>
4256 L:      kvm@vger.kernel.org
4257 S:      Supported
4258 F:      drivers/uio/uio_pci_generic.c
4259
4260 GET_MAINTAINER SCRIPT
4261 M:      Joe Perches <joe@perches.com>
4262 S:      Maintained
4263 F:      scripts/get_maintainer.pl
4264
4265 GFS2 FILE SYSTEM
4266 M:      Steven Whitehouse <swhiteho@redhat.com>
4267 L:      cluster-devel@redhat.com
4268 W:      http://sources.redhat.com/cluster/
4269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
4270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
4271 S:      Supported
4272 F:      Documentation/filesystems/gfs2*.txt
4273 F:      fs/gfs2/
4274 F:      include/uapi/linux/gfs2_ondisk.h
4275
4276 GIGASET ISDN DRIVERS
4277 M:      Hansjoerg Lipp <hjlipp@web.de>
4278 M:      Tilman Schmidt <tilman@imap.cc>
4279 L:      gigaset307x-common@lists.sourceforge.net
4280 W:      http://gigaset307x.sourceforge.net/
4281 S:      Maintained
4282 F:      Documentation/isdn/README.gigaset
4283 F:      drivers/isdn/gigaset/
4284 F:      include/uapi/linux/gigaset_dev.h
4285
4286 GO7007 MPEG CODEC
4287 M:      Hans Verkuil <hans.verkuil@cisco.com>
4288 L:      linux-media@vger.kernel.org
4289 S:      Maintained
4290 F:      drivers/media/usb/go7007/
4291
4292 GOODIX TOUCHSCREEN
4293 M:      Bastien Nocera <hadess@hadess.net>
4294 L:      linux-input@vger.kernel.org
4295 S:      Maintained
4296 F:      drivers/input/touchscreen/goodix.c
4297
4298 GPIO SUBSYSTEM
4299 M:      Linus Walleij <linus.walleij@linaro.org>
4300 M:      Alexandre Courbot <gnurou@gmail.com>
4301 L:      linux-gpio@vger.kernel.org
4302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4303 S:      Maintained
4304 F:      Documentation/gpio/
4305 F:      drivers/gpio/
4306 F:      include/linux/gpio/
4307 F:      include/linux/gpio.h
4308 F:      include/asm-generic/gpio.h
4309
4310 GRE DEMULTIPLEXER DRIVER
4311 M:      Dmitry Kozlov <xeb@mail.ru>
4312 L:      netdev@vger.kernel.org
4313 S:      Maintained
4314 F:      net/ipv4/gre_demux.c
4315 F:      net/ipv4/gre_offload.c
4316 F:      include/net/gre.h
4317
4318 GRETH 10/100/1G Ethernet MAC device driver
4319 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4320 L:      netdev@vger.kernel.org
4321 S:      Maintained
4322 F:      drivers/net/ethernet/aeroflex/
4323
4324 GSPCA FINEPIX SUBDRIVER
4325 M:      Frank Zago <frank@zago.net>
4326 L:      linux-media@vger.kernel.org
4327 T:      git git://linuxtv.org/media_tree.git
4328 S:      Maintained
4329 F:      drivers/media/usb/gspca/finepix.c
4330
4331 GSPCA GL860 SUBDRIVER
4332 M:      Olivier Lorin <o.lorin@laposte.net>
4333 L:      linux-media@vger.kernel.org
4334 T:      git git://linuxtv.org/media_tree.git
4335 S:      Maintained
4336 F:      drivers/media/usb/gspca/gl860/
4337
4338 GSPCA M5602 SUBDRIVER
4339 M:      Erik Andren <erik.andren@gmail.com>
4340 L:      linux-media@vger.kernel.org
4341 T:      git git://linuxtv.org/media_tree.git
4342 S:      Maintained
4343 F:      drivers/media/usb/gspca/m5602/
4344
4345 GSPCA PAC207 SONIXB SUBDRIVER
4346 M:      Hans de Goede <hdegoede@redhat.com>
4347 L:      linux-media@vger.kernel.org
4348 T:      git git://linuxtv.org/media_tree.git
4349 S:      Maintained
4350 F:      drivers/media/usb/gspca/pac207.c
4351
4352 GSPCA SN9C20X SUBDRIVER
4353 M:      Brian Johnson <brijohn@gmail.com>
4354 L:      linux-media@vger.kernel.org
4355 T:      git git://linuxtv.org/media_tree.git
4356 S:      Maintained
4357 F:      drivers/media/usb/gspca/sn9c20x.c
4358
4359 GSPCA T613 SUBDRIVER
4360 M:      Leandro Costantino <lcostantino@gmail.com>
4361 L:      linux-media@vger.kernel.org
4362 T:      git git://linuxtv.org/media_tree.git
4363 S:      Maintained
4364 F:      drivers/media/usb/gspca/t613.c
4365
4366 GSPCA USB WEBCAM DRIVER
4367 M:      Hans de Goede <hdegoede@redhat.com>
4368 L:      linux-media@vger.kernel.org
4369 T:      git git://linuxtv.org/media_tree.git
4370 S:      Maintained
4371 F:      drivers/media/usb/gspca/
4372
4373 GUID PARTITION TABLE (GPT)
4374 M:      Davidlohr Bueso <davidlohr@hp.com>
4375 L:      linux-efi@vger.kernel.org
4376 S:      Maintained
4377 F:      block/partitions/efi.*
4378
4379 STK1160 USB VIDEO CAPTURE DRIVER
4380 M:      Ezequiel Garcia <elezegarcia@gmail.com>
4381 L:      linux-media@vger.kernel.org
4382 T:      git git://linuxtv.org/media_tree.git
4383 S:      Maintained
4384 F:      drivers/media/usb/stk1160/
4385
4386 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4387 M:      Frank Seidel <frank@f-seidel.de>
4388 L:      platform-driver-x86@vger.kernel.org
4389 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4390 S:      Maintained
4391 F:      drivers/platform/x86/hdaps.c
4392
4393 HDPVR USB VIDEO ENCODER DRIVER
4394 M:      Hans Verkuil <hverkuil@xs4all.nl>
4395 L:      linux-media@vger.kernel.org
4396 T:      git git://linuxtv.org/media_tree.git
4397 W:      http://linuxtv.org
4398 S:      Odd Fixes
4399 F:      drivers/media/usb/hdpvr/
4400
4401 HWPOISON MEMORY FAILURE HANDLING
4402 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4403 L:      linux-mm@kvack.org
4404 S:      Maintained
4405 F:      mm/memory-failure.c
4406 F:      mm/hwpoison-inject.c
4407
4408 HYPERVISOR VIRTUAL CONSOLE DRIVER
4409 L:      linuxppc-dev@lists.ozlabs.org
4410 S:      Odd Fixes
4411 F:      drivers/tty/hvc/
4412
4413 HACKRF MEDIA DRIVER
4414 M:      Antti Palosaari <crope@iki.fi>
4415 L:      linux-media@vger.kernel.org
4416 W:      http://linuxtv.org/
4417 W:      http://palosaari.fi/linux/
4418 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4419 T:      git git://linuxtv.org/anttip/media_tree.git
4420 S:      Maintained
4421 F:      drivers/media/usb/hackrf/
4422
4423 HARDWARE MONITORING
4424 M:      Jean Delvare <jdelvare@suse.de>
4425 M:      Guenter Roeck <linux@roeck-us.net>
4426 L:      lm-sensors@lm-sensors.org
4427 W:      http://www.lm-sensors.org/
4428 T:      quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
4429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4430 S:      Maintained
4431 F:      Documentation/hwmon/
4432 F:      drivers/hwmon/
4433 F:      include/linux/hwmon*.h
4434
4435 HARDWARE RANDOM NUMBER GENERATOR CORE
4436 M:      Matt Mackall <mpm@selenic.com>
4437 M:      Herbert Xu <herbert@gondor.apana.org.au>
4438 L:      linux-crypto@vger.kernel.org
4439 S:      Odd fixes
4440 F:      Documentation/hw_random.txt
4441 F:      drivers/char/hw_random/
4442 F:      include/linux/hw_random.h
4443
4444 HARDWARE SPINLOCK CORE
4445 M:      Ohad Ben-Cohen <ohad@wizery.com>
4446 S:      Maintained
4447 F:      Documentation/hwspinlock.txt
4448 F:      drivers/hwspinlock/hwspinlock_*
4449 F:      include/linux/hwspinlock.h
4450
4451 HARMONY SOUND DRIVER
4452 L:      linux-parisc@vger.kernel.org
4453 S:      Maintained
4454 F:      sound/parisc/harmony.*
4455
4456 HD29L2 MEDIA DRIVER
4457 M:      Antti Palosaari <crope@iki.fi>
4458 L:      linux-media@vger.kernel.org
4459 W:      http://linuxtv.org/
4460 W:      http://palosaari.fi/linux/
4461 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4462 T:      git git://linuxtv.org/anttip/media_tree.git
4463 S:      Maintained
4464 F:      drivers/media/dvb-frontends/hd29l2*
4465
4466 HEWLETT-PACKARD SMART2 RAID DRIVER
4467 L:      iss_storagedev@hp.com
4468 S:      Orphan
4469 F:      Documentation/blockdev/cpqarray.txt
4470 F:      drivers/block/cpqarray.*
4471
4472 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4473 M:      Don Brace <don.brace@pmcs.com>
4474 L:      iss_storagedev@hp.com
4475 L:      storagedev@pmcs.com
4476 L:      linux-scsi@vger.kernel.org
4477 S:      Supported
4478 F:      Documentation/scsi/hpsa.txt
4479 F:      drivers/scsi/hpsa*.[ch]
4480 F:      include/linux/cciss*.h
4481 F:      include/uapi/linux/cciss*.h
4482
4483 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4484 M:      Don Brace <don.brace@pmcs.com>
4485 L:      iss_storagedev@hp.com
4486 L:      storagedev@pmcs.com
4487 L:      linux-scsi@vger.kernel.org
4488 S:      Supported
4489 F:      Documentation/blockdev/cciss.txt
4490 F:      drivers/block/cciss*
4491 F:      include/linux/cciss_ioctl.h
4492 F:      include/uapi/linux/cciss_ioctl.h
4493
4494 HFS FILESYSTEM
4495 L:      linux-fsdevel@vger.kernel.org
4496 S:      Orphan
4497 F:      Documentation/filesystems/hfs.txt
4498 F:      fs/hfs/
4499
4500 HFSPLUS FILESYSTEM
4501 L:      linux-fsdevel@vger.kernel.org
4502 S:      Orphan
4503 F:      Documentation/filesystems/hfsplus.txt
4504 F:      fs/hfsplus/
4505
4506 HGA FRAMEBUFFER DRIVER
4507 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4508 L:      linux-nvidia@lists.surfsouth.com
4509 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4510 S:      Maintained
4511 F:      drivers/video/fbdev/hgafb.c
4512
4513 HIBERNATION (aka Software Suspend, aka swsusp)
4514 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4515 M:      Pavel Machek <pavel@ucw.cz>
4516 L:      linux-pm@vger.kernel.org
4517 S:      Supported
4518 F:      arch/x86/power/
4519 F:      drivers/base/power/
4520 F:      kernel/power/
4521 F:      include/linux/suspend.h
4522 F:      include/linux/freezer.h
4523 F:      include/linux/pm.h
4524 F:      arch/*/include/asm/suspend*.h
4525
4526 HID CORE LAYER
4527 M:      Jiri Kosina <jkosina@suse.cz>
4528 L:      linux-input@vger.kernel.org
4529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4530 S:      Maintained
4531 F:      drivers/hid/
4532 F:      include/linux/hid*
4533 F:      include/uapi/linux/hid*
4534
4535 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4536 M:      Thomas Gleixner <tglx@linutronix.de>
4537 L:      linux-kernel@vger.kernel.org
4538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4539 S:      Maintained
4540 F:      Documentation/timers/
4541 F:      kernel/time/hrtimer.c
4542 F:      kernel/time/clockevents.c
4543 F:      kernel/time/tick*.*
4544 F:      kernel/time/timer_*.c
4545 F:      include/linux/clockchips.h
4546 F:      include/linux/hrtimer.h
4547
4548 HIGH-SPEED SCC DRIVER FOR AX.25
4549 L:      linux-hams@vger.kernel.org
4550 S:      Orphan
4551 F:      drivers/net/hamradio/dmascc.c
4552 F:      drivers/net/hamradio/scc.c
4553
4554 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4555 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4556 W:      http://www.highpoint-tech.com
4557 S:      Supported
4558 F:      Documentation/scsi/hptiop.txt
4559 F:      drivers/scsi/hptiop.c
4560
4561 HIPPI
4562 M:      Jes Sorensen <jes@trained-monkey.org>
4563 L:      linux-hippi@sunsite.dk
4564 S:      Maintained
4565 F:      include/linux/hippidevice.h
4566 F:      include/uapi/linux/if_hippi.h
4567 F:      net/802/hippi.c
4568 F:      drivers/net/hippi/
4569
4570 HOST AP DRIVER
4571 M:      Jouni Malinen <j@w1.fi>
4572 L:      hostap@shmoo.com (subscribers-only)
4573 L:      linux-wireless@vger.kernel.org
4574 W:      http://hostap.epitest.fi/
4575 S:      Maintained
4576 F:      drivers/net/wireless/hostap/
4577
4578 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4579 L:      platform-driver-x86@vger.kernel.org
4580 S:      Orphan
4581 F:      drivers/platform/x86/tc1100-wmi.c
4582
4583 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4584 M:      Jaroslav Kysela <perex@perex.cz>
4585 S:      Maintained
4586 F:      drivers/net/ethernet/hp/hp100.*
4587
4588 HPET:   High Precision Event Timers driver
4589 M:      Clemens Ladisch <clemens@ladisch.de>
4590 S:      Maintained
4591 F:      Documentation/timers/hpet.txt
4592 F:      drivers/char/hpet.c
4593 F:      include/linux/hpet.h
4594 F:      include/uapi/linux/hpet.h
4595
4596 HPET:   x86
4597 S:      Orphan
4598 F:      arch/x86/kernel/hpet.c
4599 F:      arch/x86/include/asm/hpet.h
4600
4601 HPFS FILESYSTEM
4602 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4603 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4604 S:      Maintained
4605 F:      fs/hpfs/
4606
4607 HSI SUBSYSTEM
4608 M:      Sebastian Reichel <sre@kernel.org>
4609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4610 S:      Maintained
4611 F:      Documentation/ABI/testing/sysfs-bus-hsi
4612 F:      Documentation/hsi.txt
4613 F:      drivers/hsi/
4614 F:      include/linux/hsi/
4615 F:      include/uapi/linux/hsi/
4616
4617 HSO 3G MODEM DRIVER
4618 M:      Jan Dumon <j.dumon@option.com>
4619 W:      http://www.pharscape.org
4620 S:      Maintained
4621 F:      drivers/net/usb/hso.c
4622
4623 HSR NETWORK PROTOCOL
4624 M:      Arvid Brodin <arvid.brodin@alten.se>
4625 L:      netdev@vger.kernel.org
4626 S:      Maintained
4627 F:      net/hsr/
4628
4629 HTCPEN TOUCHSCREEN DRIVER
4630 M:      Pau Oliva Fora <pof@eslack.org>
4631 L:      linux-input@vger.kernel.org
4632 S:      Maintained
4633 F:      drivers/input/touchscreen/htcpen.c
4634
4635 HUGETLB FILESYSTEM
4636 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
4637 S:      Maintained
4638 F:      fs/hugetlbfs/
4639
4640 Hyper-V CORE AND DRIVERS
4641 M:      K. Y. Srinivasan <kys@microsoft.com>
4642 M:      Haiyang Zhang <haiyangz@microsoft.com>
4643 L:      devel@linuxdriverproject.org
4644 S:      Maintained
4645 F:      arch/x86/include/asm/mshyperv.h
4646 F:      arch/x86/include/uapi/asm/hyperv.h
4647 F:      arch/x86/kernel/cpu/mshyperv.c
4648 F:      drivers/hid/hid-hyperv.c
4649 F:      drivers/hv/
4650 F:      drivers/input/serio/hyperv-keyboard.c
4651 F:      drivers/net/hyperv/
4652 F:      drivers/scsi/storvsc_drv.c
4653 F:      drivers/video/fbdev/hyperv_fb.c
4654 F:      include/linux/hyperv.h
4655 F:      tools/hv/
4656
4657 I2C OVER PARALLEL PORT
4658 M:      Jean Delvare <jdelvare@suse.de>
4659 L:      linux-i2c@vger.kernel.org
4660 S:      Maintained
4661 F:      Documentation/i2c/busses/i2c-parport
4662 F:      Documentation/i2c/busses/i2c-parport-light
4663 F:      drivers/i2c/busses/i2c-parport.c
4664 F:      drivers/i2c/busses/i2c-parport-light.c
4665
4666 I2C/SMBUS CONTROLLER DRIVERS FOR PC
4667 M:      Jean Delvare <jdelvare@suse.de>
4668 L:      linux-i2c@vger.kernel.org
4669 S:      Maintained
4670 F:      Documentation/i2c/busses/i2c-ali1535
4671 F:      Documentation/i2c/busses/i2c-ali1563
4672 F:      Documentation/i2c/busses/i2c-ali15x3
4673 F:      Documentation/i2c/busses/i2c-amd756
4674 F:      Documentation/i2c/busses/i2c-amd8111
4675 F:      Documentation/i2c/busses/i2c-i801
4676 F:      Documentation/i2c/busses/i2c-nforce2
4677 F:      Documentation/i2c/busses/i2c-piix4
4678 F:      Documentation/i2c/busses/i2c-sis5595
4679 F:      Documentation/i2c/busses/i2c-sis630
4680 F:      Documentation/i2c/busses/i2c-sis96x
4681 F:      Documentation/i2c/busses/i2c-via
4682 F:      Documentation/i2c/busses/i2c-viapro
4683 F:      drivers/i2c/busses/i2c-ali1535.c
4684 F:      drivers/i2c/busses/i2c-ali1563.c
4685 F:      drivers/i2c/busses/i2c-ali15x3.c
4686 F:      drivers/i2c/busses/i2c-amd756.c
4687 F:      drivers/i2c/busses/i2c-amd756-s4882.c
4688 F:      drivers/i2c/busses/i2c-amd8111.c
4689 F:      drivers/i2c/busses/i2c-i801.c
4690 F:      drivers/i2c/busses/i2c-isch.c
4691 F:      drivers/i2c/busses/i2c-nforce2.c
4692 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
4693 F:      drivers/i2c/busses/i2c-piix4.c
4694 F:      drivers/i2c/busses/i2c-sis5595.c
4695 F:      drivers/i2c/busses/i2c-sis630.c
4696 F:      drivers/i2c/busses/i2c-sis96x.c
4697 F:      drivers/i2c/busses/i2c-via.c
4698 F:      drivers/i2c/busses/i2c-viapro.c
4699
4700 I2C/SMBUS ISMT DRIVER
4701 M:      Seth Heasley <seth.heasley@intel.com>
4702 M:      Neil Horman <nhorman@tuxdriver.com>
4703 L:      linux-i2c@vger.kernel.org
4704 F:      drivers/i2c/busses/i2c-ismt.c
4705 F:      Documentation/i2c/busses/i2c-ismt
4706
4707 I2C/SMBUS STUB DRIVER
4708 M:      Jean Delvare <jdelvare@suse.de>
4709 L:      linux-i2c@vger.kernel.org
4710 S:      Maintained
4711 F:      drivers/i2c/i2c-stub.c
4712
4713 I2C SUBSYSTEM
4714 M:      Wolfram Sang <wsa@the-dreams.de>
4715 L:      linux-i2c@vger.kernel.org
4716 W:      https://i2c.wiki.kernel.org/
4717 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
4718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
4719 S:      Maintained
4720 F:      Documentation/devicetree/bindings/i2c/
4721 F:      Documentation/i2c/
4722 F:      drivers/i2c/
4723 F:      include/linux/i2c.h
4724 F:      include/linux/i2c-*.h
4725 F:      include/uapi/linux/i2c.h
4726 F:      include/uapi/linux/i2c-*.h
4727
4728 I2C ACPI SUPPORT
4729 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
4730 L:      linux-i2c@vger.kernel.org
4731 L:      linux-acpi@vger.kernel.org
4732 S:      Maintained
4733
4734 I2C-TAOS-EVM DRIVER
4735 M:      Jean Delvare <jdelvare@suse.de>
4736 L:      linux-i2c@vger.kernel.org
4737 S:      Maintained
4738 F:      Documentation/i2c/busses/i2c-taos-evm
4739 F:      drivers/i2c/busses/i2c-taos-evm.c
4740
4741 I2C-TINY-USB DRIVER
4742 M:      Till Harbaum <till@harbaum.org>
4743 L:      linux-i2c@vger.kernel.org
4744 W:      http://www.harbaum.org/till/i2c_tiny_usb
4745 S:      Maintained
4746 F:      drivers/i2c/busses/i2c-tiny-usb.c
4747
4748 i386 BOOT CODE
4749 M:      "H. Peter Anvin" <hpa@zytor.com>
4750 S:      Maintained
4751 F:      arch/x86/boot/
4752
4753 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
4754 M:      "H. Peter Anvin" <hpa@zytor.com>
4755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
4756 S:      Maintained
4757
4758 IA64 (Itanium) PLATFORM
4759 M:      Tony Luck <tony.luck@intel.com>
4760 M:      Fenghua Yu <fenghua.yu@intel.com>
4761 L:      linux-ia64@vger.kernel.org
4762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
4763 S:      Maintained
4764 F:      arch/ia64/
4765
4766 IBM Power in-Nest Crypto Acceleration
4767 M:      Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
4768 M:      Fionnuala Gunter <fin@linux.vnet.ibm.com>
4769 L:      linux-crypto@vger.kernel.org
4770 S:      Supported
4771 F:      drivers/crypto/nx/
4772
4773 IBM Power 842 compression accelerator
4774 M:      Dan Streetman <ddstreet@us.ibm.com>
4775 S:      Supported
4776 F:      drivers/crypto/nx/nx-842.c
4777 F:      include/linux/nx842.h
4778
4779 IBM Power Linux RAID adapter
4780 M:      Brian King <brking@us.ibm.com>
4781 S:      Supported
4782 F:      drivers/scsi/ipr.*
4783
4784 IBM Power Virtual Ethernet Device Driver
4785 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
4786 L:      netdev@vger.kernel.org
4787 S:      Supported
4788 F:      drivers/net/ethernet/ibm/ibmveth.*
4789
4790 IBM Power Virtual SCSI Device Drivers
4791 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
4792 L:      linux-scsi@vger.kernel.org
4793 S:      Supported
4794 F:      drivers/scsi/ibmvscsi/ibmvscsi*
4795 F:      drivers/scsi/ibmvscsi/viosrp.h
4796
4797 IBM Power Virtual FC Device Drivers
4798 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
4799 L:      linux-scsi@vger.kernel.org
4800 S:      Supported
4801 F:      drivers/scsi/ibmvscsi/ibmvfc*
4802
4803 IBM ServeRAID RAID DRIVER
4804 S:      Orphan
4805 F:      drivers/scsi/ips.*
4806
4807 ICH LPC AND GPIO DRIVER
4808 M:      Peter Tyser <ptyser@xes-inc.com>
4809 S:      Maintained
4810 F:      drivers/mfd/lpc_ich.c
4811 F:      drivers/gpio/gpio-ich.c
4812
4813 IDE SUBSYSTEM
4814 M:      "David S. Miller" <davem@davemloft.net>
4815 L:      linux-ide@vger.kernel.org
4816 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
4817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
4818 S:      Maintained
4819 F:      Documentation/ide/
4820 F:      drivers/ide/
4821 F:      include/linux/ide.h
4822
4823 IDEAPAD LAPTOP EXTRAS DRIVER
4824 M:      Ike Panhc <ike.pan@canonical.com>
4825 L:      platform-driver-x86@vger.kernel.org
4826 W:      http://launchpad.net/ideapad-laptop
4827 S:      Maintained
4828 F:      drivers/platform/x86/ideapad-laptop.c
4829
4830 IDEAPAD LAPTOP SLIDEBAR DRIVER
4831 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
4832 L:      linux-input@vger.kernel.org
4833 W:      https://github.com/o2genum/ideapad-slidebar
4834 S:      Maintained
4835 F:      drivers/input/misc/ideapad_slidebar.c
4836
4837 IDE/ATAPI DRIVERS
4838 M:      Borislav Petkov <bp@alien8.de>
4839 L:      linux-ide@vger.kernel.org
4840 S:      Maintained
4841 F:      Documentation/cdrom/ide-cd
4842 F:      drivers/ide/ide-cd*
4843
4844 IDLE-I7300
4845 M:      Andy Henroid <andrew.d.henroid@intel.com>
4846 L:      linux-pm@vger.kernel.org
4847 S:      Supported
4848 F:      drivers/idle/i7300_idle.c
4849
4850 IEEE 802.15.4 SUBSYSTEM
4851 M:      Alexander Aring <alex.aring@gmail.com>
4852 L:      linux-wpan@vger.kernel.org
4853 W:      https://github.com/linux-wpan
4854 T:      git git://github.com/linux-wpan/linux-wpan-next.git
4855 S:      Maintained
4856 F:      net/ieee802154/
4857 F:      net/mac802154/
4858 F:      drivers/net/ieee802154/
4859 F:      include/linux/nl802154.h
4860 F:      include/linux/ieee802154.h
4861 F:      include/net/nl802154.h
4862 F:      include/net/mac802154.h
4863 F:      include/net/af_ieee802154.h
4864 F:      include/net/cfg802154.h
4865 F:      include/net/ieee802154_netdev.h
4866 F:      Documentation/networking/ieee802154.txt
4867
4868 IGORPLUG-USB IR RECEIVER
4869 M:      Sean Young <sean@mess.org>
4870 L:      linux-media@vger.kernel.org
4871 S:      Maintained
4872 F:      drivers/media/rc/igorplugusb.c
4873
4874 IGUANAWORKS USB IR TRANSCEIVER
4875 M:      Sean Young <sean@mess.org>
4876 L:      linux-media@vger.kernel.org
4877 S:      Maintained
4878 F:      drivers/media/rc/iguanair.c
4879
4880 IIO SUBSYSTEM AND DRIVERS
4881 M:      Jonathan Cameron <jic23@kernel.org>
4882 R:      Hartmut Knaack <knaack.h@gmx.de>
4883 R:      Lars-Peter Clausen <lars@metafoo.de>
4884 R:      Peter Meerwald <pmeerw@pmeerw.net>
4885 L:      linux-iio@vger.kernel.org
4886 S:      Maintained
4887 F:      drivers/iio/
4888 F:      drivers/staging/iio/
4889 F:      include/linux/iio/
4890
4891 IKANOS/ADI EAGLE ADSL USB DRIVER
4892 M:      Matthieu Castet <castet.matthieu@free.fr>
4893 M:      Stanislaw Gruszka <stf_xl@wp.pl>
4894 S:      Maintained
4895 F:      drivers/usb/atm/ueagle-atm.c
4896
4897 INA209 HARDWARE MONITOR DRIVER
4898 M:      Guenter Roeck <linux@roeck-us.net>
4899 L:      lm-sensors@lm-sensors.org
4900 S:      Maintained
4901 F:      Documentation/hwmon/ina209
4902 F:      Documentation/devicetree/bindings/i2c/ina209.txt
4903 F:      drivers/hwmon/ina209.c
4904
4905 INA2XX HARDWARE MONITOR DRIVER
4906 M:      Guenter Roeck <linux@roeck-us.net>
4907 L:      lm-sensors@lm-sensors.org
4908 S:      Maintained
4909 F:      Documentation/hwmon/ina2xx
4910 F:      drivers/hwmon/ina2xx.c
4911 F:      include/linux/platform_data/ina2xx.h
4912
4913 INDUSTRY PACK SUBSYSTEM (IPACK)
4914 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4915 M:      Jens Taprogge <jens.taprogge@taprogge.org>
4916 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4917 L:      industrypack-devel@lists.sourceforge.net
4918 W:      http://industrypack.sourceforge.net
4919 S:      Maintained
4920 F:      drivers/ipack/
4921
4922 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
4923 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4924 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
4925 L:      linux-ima-devel@lists.sourceforge.net
4926 L:      linux-ima-user@lists.sourceforge.net
4927 L:      linux-security-module@vger.kernel.org
4928 S:      Supported
4929 F:      security/integrity/ima/
4930
4931 IMGTEC IR DECODER DRIVER
4932 M:      James Hogan <james.hogan@imgtec.com>
4933 S:      Maintained
4934 F:      drivers/media/rc/img-ir/
4935
4936 IMS TWINTURBO FRAMEBUFFER DRIVER
4937 L:      linux-fbdev@vger.kernel.org
4938 S:      Orphan
4939 F:      drivers/video/fbdev/imsttfb.c
4940
4941 INFINIBAND SUBSYSTEM
4942 M:      Roland Dreier <roland@kernel.org>
4943 M:      Sean Hefty <sean.hefty@intel.com>
4944 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
4945 L:      linux-rdma@vger.kernel.org
4946 W:      http://www.openfabrics.org/
4947 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
4948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
4949 S:      Supported
4950 F:      Documentation/infiniband/
4951 F:      drivers/infiniband/
4952 F:      include/uapi/linux/if_infiniband.h
4953
4954 INOTIFY
4955 M:      John McCutchan <john@johnmccutchan.com>
4956 M:      Robert Love <rlove@rlove.org>
4957 M:      Eric Paris <eparis@parisplace.org>
4958 S:      Maintained
4959 F:      Documentation/filesystems/inotify.txt
4960 F:      fs/notify/inotify/
4961 F:      include/linux/inotify.h
4962 F:      include/uapi/linux/inotify.h
4963
4964 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
4965 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
4966 L:      linux-input@vger.kernel.org
4967 Q:      http://patchwork.kernel.org/project/linux-input/list/
4968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
4969 S:      Maintained
4970 F:      drivers/input/
4971 F:      include/linux/input.h
4972 F:      include/uapi/linux/input.h
4973 F:      include/linux/input/
4974
4975 INPUT MULTITOUCH (MT) PROTOCOL
4976 M:      Henrik Rydberg <rydberg@bitmath.org>
4977 L:      linux-input@vger.kernel.org
4978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
4979 S:      Odd fixes
4980 F:      Documentation/input/multi-touch-protocol.txt
4981 F:      drivers/input/input-mt.c
4982 K:      \b(ABS|SYN)_MT_
4983
4984 INTEL ASoC BDW/HSW DRIVERS
4985 M:      Jie Yang <yang.jie@linux.intel.com>
4986 L:      alsa-devel@alsa-project.org
4987 S:      Supported
4988 F:      sound/soc/intel/sst-haswell*
4989 F:      sound/soc/intel/sst-dsp*
4990 F:      sound/soc/intel/sst-firmware.c
4991 F:      sound/soc/intel/broadwell.c
4992 F:      sound/soc/intel/haswell.c
4993
4994 INTEL C600 SERIES SAS CONTROLLER DRIVER
4995 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
4996 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
4997 L:      linux-scsi@vger.kernel.org
4998 T:      git git://git.code.sf.net/p/intel-sas/isci
4999 S:      Supported
5000 F:      drivers/scsi/isci/
5001
5002 INTEL IDLE DRIVER
5003 M:      Len Brown <lenb@kernel.org>
5004 L:      linux-pm@vger.kernel.org
5005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5006 S:      Supported
5007 F:      drivers/idle/intel_idle.c
5008
5009 INTEL PSTATE DRIVER
5010 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5011 L:      linux-pm@vger.kernel.org
5012 S:      Supported
5013 F:      drivers/cpufreq/intel_pstate.c
5014
5015 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5016 M:      Maik Broemme <mbroemme@plusserver.de>
5017 L:      linux-fbdev@vger.kernel.org
5018 S:      Maintained
5019 F:      Documentation/fb/intelfb.txt
5020 F:      drivers/video/fbdev/intelfb/
5021
5022 INTEL 810/815 FRAMEBUFFER DRIVER
5023 M:      Antonino Daplas <adaplas@gmail.com>
5024 L:      linux-fbdev@vger.kernel.org
5025 S:      Maintained
5026 F:      drivers/video/fbdev/i810/
5027
5028 INTEL MENLOW THERMAL DRIVER
5029 M:      Sujith Thomas <sujith.thomas@intel.com>
5030 L:      platform-driver-x86@vger.kernel.org
5031 W:      https://01.org/linux-acpi
5032 S:      Supported
5033 F:      drivers/platform/x86/intel_menlow.c
5034
5035 INTEL IA32 MICROCODE UPDATE SUPPORT
5036 M:      Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
5037 S:      Maintained
5038 F:      arch/x86/kernel/cpu/microcode/core*
5039 F:      arch/x86/kernel/cpu/microcode/intel*
5040
5041 INTEL I/OAT DMA DRIVER
5042 M:      Dave Jiang <dave.jiang@intel.com>
5043 R:      Dan Williams <dan.j.williams@intel.com>
5044 L:      dmaengine@vger.kernel.org
5045 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5046 S:      Supported
5047 F:      drivers/dma/ioat*
5048
5049 INTEL IOMMU (VT-d)
5050 M:      David Woodhouse <dwmw2@infradead.org>
5051 L:      iommu@lists.linux-foundation.org
5052 T:      git git://git.infradead.org/iommu-2.6.git
5053 S:      Supported
5054 F:      drivers/iommu/intel-iommu.c
5055 F:      include/linux/intel-iommu.h
5056
5057 INTEL IOP-ADMA DMA DRIVER
5058 R:      Dan Williams <dan.j.williams@intel.com>
5059 S:      Odd fixes
5060 F:      drivers/dma/iop-adma.c
5061
5062 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5063 M:      Krzysztof Halasa <khalasa@piap.pl>
5064 S:      Maintained
5065 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5066 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5067 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5068 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5069 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5070 F:      drivers/net/wan/ixp4xx_hss.c
5071
5072 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5073 M:      Deepak Saxena <dsaxena@plexity.net>
5074 S:      Maintained
5075 F:      drivers/char/hw_random/ixp4xx-rng.c
5076
5077 INTEL ETHERNET DRIVERS (e100/e1000/e1000e/fm10k/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf)
5078 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5079 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5080 M:      Bruce Allan <bruce.w.allan@intel.com>
5081 M:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5082 M:      Don Skidmore <donald.c.skidmore@intel.com>
5083 M:      Greg Rose <gregory.v.rose@intel.com>
5084 M:      Matthew Vick <matthew.vick@intel.com>
5085 M:      John Ronciak <john.ronciak@intel.com>
5086 M:      Mitch Williams <mitch.a.williams@intel.com>
5087 M:      Linux NICS <linux.nics@intel.com>
5088 L:      e1000-devel@lists.sourceforge.net
5089 W:      http://www.intel.com/support/feedback.htm
5090 W:      http://e1000.sourceforge.net/
5091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
5092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
5093 S:      Supported
5094 F:      Documentation/networking/e100.txt
5095 F:      Documentation/networking/e1000.txt
5096 F:      Documentation/networking/e1000e.txt
5097 F:      Documentation/networking/igb.txt
5098 F:      Documentation/networking/igbvf.txt
5099 F:      Documentation/networking/ixgb.txt
5100 F:      Documentation/networking/ixgbe.txt
5101 F:      Documentation/networking/ixgbevf.txt
5102 F:      Documentation/networking/i40e.txt
5103 F:      Documentation/networking/i40evf.txt
5104 F:      drivers/net/ethernet/intel/
5105 F:      drivers/net/ethernet/intel/*/
5106
5107 INTEL-MID GPIO DRIVER
5108 M:      David Cohen <david.a.cohen@linux.intel.com>
5109 L:      linux-gpio@vger.kernel.org
5110 S:      Maintained
5111 F:      drivers/gpio/gpio-intel-mid.c
5112
5113 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5114 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5115 L:      linux-wireless@vger.kernel.org
5116 S:      Maintained
5117 F:      Documentation/networking/README.ipw2100
5118 F:      Documentation/networking/README.ipw2200
5119 F:      drivers/net/wireless/ipw2x00/
5120
5121 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5122 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5123 M:      Gang Wei <gang.wei@intel.com>
5124 M:      Shane Wang <shane.wang@intel.com>
5125 L:      tboot-devel@lists.sourceforge.net
5126 W:      http://tboot.sourceforge.net
5127 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5128 S:      Supported
5129 F:      Documentation/intel_txt.txt
5130 F:      include/linux/tboot.h
5131 F:      arch/x86/kernel/tboot.c
5132
5133 INTEL WIRELESS WIMAX CONNECTION 2400
5134 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5135 M:      linux-wimax@intel.com
5136 L:     wimax@linuxwimax.org (subscribers-only)
5137 S:      Supported
5138 W:      http://linuxwimax.org
5139 F:      Documentation/wimax/README.i2400m
5140 F:      drivers/net/wimax/i2400m/
5141 F:      include/uapi/linux/wimax/i2400m.h
5142
5143 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5144 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5145 L:      linux-wireless@vger.kernel.org
5146 S:      Supported
5147 F:      drivers/net/wireless/iwlegacy/
5148
5149 INTEL WIRELESS WIFI LINK (iwlwifi)
5150 M:      Johannes Berg <johannes.berg@intel.com>
5151 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5152 M:      Intel Linux Wireless <ilw@linux.intel.com>
5153 L:      linux-wireless@vger.kernel.org
5154 W:      http://intellinuxwireless.org
5155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5156 S:      Supported
5157 F:      drivers/net/wireless/iwlwifi/
5158
5159 INTEL MANAGEMENT ENGINE (mei)
5160 M:      Tomas Winkler <tomas.winkler@intel.com>
5161 L:      linux-kernel@vger.kernel.org
5162 S:      Supported
5163 F:      include/uapi/linux/mei.h
5164 F:      drivers/misc/mei/*
5165 F:      Documentation/misc-devices/mei/*
5166
5167 IOC3 ETHERNET DRIVER
5168 M:      Ralf Baechle <ralf@linux-mips.org>
5169 L:      linux-mips@linux-mips.org
5170 S:      Maintained
5171 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5172
5173 IOC3 SERIAL DRIVER
5174 M:      Pat Gefre <pfg@sgi.com>
5175 L:      linux-serial@vger.kernel.org
5176 S:      Maintained
5177 F:      drivers/tty/serial/ioc3_serial.c
5178
5179 IOMMU DRIVERS
5180 M:      Joerg Roedel <joro@8bytes.org>
5181 L:      iommu@lists.linux-foundation.org
5182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5183 S:      Maintained
5184 F:      drivers/iommu/
5185
5186 IP MASQUERADING
5187 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5188 S:      Maintained
5189 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5190
5191 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5192 M:      Francois Romieu <romieu@fr.zoreil.com>
5193 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5194 L:      netdev@vger.kernel.org
5195 S:      Maintained
5196 F:      drivers/net/ethernet/icplus/ipg.*
5197
5198 IPATH DRIVER
5199 M:      Mike Marciniszyn <infinipath@intel.com>
5200 L:      linux-rdma@vger.kernel.org
5201 S:      Maintained
5202 F:      drivers/infiniband/hw/ipath/
5203
5204 IPMI SUBSYSTEM
5205 M:      Corey Minyard <minyard@acm.org>
5206 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5207 W:      http://openipmi.sourceforge.net/
5208 S:      Supported
5209 F:      Documentation/IPMI.txt
5210 F:      drivers/char/ipmi/
5211 F:      include/linux/ipmi*
5212 F:      include/uapi/linux/ipmi*
5213
5214 IPS SCSI RAID DRIVER
5215 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5216 L:      linux-scsi@vger.kernel.org
5217 W:      http://www.adaptec.com/
5218 S:      Maintained
5219 F:      drivers/scsi/ips*
5220
5221 IPVS
5222 M:      Wensong Zhang <wensong@linux-vs.org>
5223 M:      Simon Horman <horms@verge.net.au>
5224 M:      Julian Anastasov <ja@ssi.bg>
5225 L:      netdev@vger.kernel.org
5226 L:      lvs-devel@vger.kernel.org
5227 S:      Maintained
5228 F:      Documentation/networking/ipvs-sysctl.txt
5229 F:      include/net/ip_vs.h
5230 F:      include/uapi/linux/ip_vs.h
5231 F:      net/netfilter/ipvs/
5232
5233 IPWIRELESS DRIVER
5234 M:      Jiri Kosina <jkosina@suse.cz>
5235 M:      David Sterba <dsterba@suse.cz>
5236 S:      Odd Fixes
5237 F:      drivers/tty/ipwireless/
5238
5239 IPX NETWORK LAYER
5240 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5241 L:      netdev@vger.kernel.org
5242 S:      Maintained
5243 F:      include/net/ipx.h
5244 F:      include/uapi/linux/ipx.h
5245 F:      net/ipx/
5246
5247 IRDA SUBSYSTEM
5248 M:      Samuel Ortiz <samuel@sortiz.org>
5249 L:      irda-users@lists.sourceforge.net (subscribers-only)
5250 L:      netdev@vger.kernel.org
5251 W:      http://irda.sourceforge.net/
5252 S:      Maintained
5253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5254 F:      Documentation/networking/irda.txt
5255 F:      drivers/net/irda/
5256 F:      include/net/irda/
5257 F:      net/irda/
5258
5259 IRQ SUBSYSTEM
5260 M:      Thomas Gleixner <tglx@linutronix.de>
5261 L:      linux-kernel@vger.kernel.org
5262 S:      Maintained
5263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5264 F:      kernel/irq/
5265
5266 IRQCHIP DRIVERS
5267 M:      Thomas Gleixner <tglx@linutronix.de>
5268 M:      Jason Cooper <jason@lakedaemon.net>
5269 L:      linux-kernel@vger.kernel.org
5270 S:      Maintained
5271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5272 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5273 F:      Documentation/devicetree/bindings/interrupt-controller/
5274 F:      drivers/irqchip/
5275
5276 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5277 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5278 S:      Maintained
5279 F:      Documentation/IRQ-domain.txt
5280 F:      include/linux/irqdomain.h
5281 F:      kernel/irq/irqdomain.c
5282
5283 ISAPNP
5284 M:      Jaroslav Kysela <perex@perex.cz>
5285 S:      Maintained
5286 F:      Documentation/isapnp.txt
5287 F:      drivers/pnp/isapnp/
5288 F:      include/linux/isapnp.h
5289
5290 ISA RADIO MODULE
5291 M:      Hans Verkuil <hverkuil@xs4all.nl>
5292 L:      linux-media@vger.kernel.org
5293 T:      git git://linuxtv.org/media_tree.git
5294 W:      http://linuxtv.org
5295 S:      Maintained
5296 F:      drivers/media/radio/radio-isa*
5297
5298 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5299 M:      Peter Jones <pjones@redhat.com>
5300 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5301 S:      Maintained
5302 F:      drivers/firmware/iscsi_ibft*
5303
5304 ISCSI
5305 M:      Mike Christie <michaelc@cs.wisc.edu>
5306 L:      open-iscsi@googlegroups.com
5307 W:      www.open-iscsi.org
5308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5309 S:      Maintained
5310 F:      drivers/scsi/*iscsi*
5311 F:      include/scsi/*iscsi*
5312
5313 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5314 M:      Or Gerlitz <ogerlitz@mellanox.com>
5315 M:      Sagi Grimberg <sagig@mellanox.com>
5316 M:      Roi Dayan <roid@mellanox.com>
5317 L:      linux-rdma@vger.kernel.org
5318 S:      Supported
5319 W:      http://www.openfabrics.org
5320 W:      www.open-iscsi.org
5321 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5322 F:      drivers/infiniband/ulp/iser/
5323
5324 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5325 M:      Sagi Grimberg <sagig@mellanox.com>
5326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5327 L:      linux-rdma@vger.kernel.org
5328 L:      target-devel@vger.kernel.org
5329 S:      Supported
5330 W:      http://www.linux-iscsi.org
5331 F:      drivers/infiniband/ulp/isert
5332
5333 ISDN SUBSYSTEM
5334 M:      Karsten Keil <isdn@linux-pingi.de>
5335 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5336 L:      netdev@vger.kernel.org
5337 W:      http://www.isdn4linux.de
5338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5339 S:      Maintained
5340 F:      Documentation/isdn/
5341 F:      drivers/isdn/
5342 F:      include/linux/isdn.h
5343 F:      include/linux/isdn/
5344 F:      include/uapi/linux/isdn.h
5345 F:      include/uapi/linux/isdn/
5346
5347 ISDN SUBSYSTEM (Eicon active card driver)
5348 M:      Armin Schindler <mac@melware.de>
5349 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5350 W:      http://www.melware.de
5351 S:      Maintained
5352 F:      drivers/isdn/hardware/eicon/
5353
5354 IT87 HARDWARE MONITORING DRIVER
5355 M:      Jean Delvare <jdelvare@suse.de>
5356 L:      lm-sensors@lm-sensors.org
5357 S:      Maintained
5358 F:      Documentation/hwmon/it87
5359 F:      drivers/hwmon/it87.c
5360
5361 IT913X MEDIA DRIVER
5362 M:      Antti Palosaari <crope@iki.fi>
5363 L:      linux-media@vger.kernel.org
5364 W:      http://linuxtv.org/
5365 W:      http://palosaari.fi/linux/
5366 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5367 T:      git git://linuxtv.org/anttip/media_tree.git
5368 S:      Maintained
5369 F:      drivers/media/tuners/it913x*
5370
5371 IVTV VIDEO4LINUX DRIVER
5372 M:      Andy Walls <awalls@md.metrocast.net>
5373 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5374 L:      linux-media@vger.kernel.org
5375 T:      git git://linuxtv.org/media_tree.git
5376 W:      http://www.ivtvdriver.org
5377 S:      Maintained
5378 F:      Documentation/video4linux/*.ivtv
5379 F:      drivers/media/pci/ivtv/
5380 F:      include/uapi/linux/ivtv*
5381
5382 IX2505V MEDIA DRIVER
5383 M:      Malcolm Priestley <tvboxspy@gmail.com>
5384 L:      linux-media@vger.kernel.org
5385 W:      http://linuxtv.org/
5386 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5387 S:      Maintained
5388 F:      drivers/media/dvb-frontends/ix2505v*
5389
5390 JC42.4 TEMPERATURE SENSOR DRIVER
5391 M:      Guenter Roeck <linux@roeck-us.net>
5392 L:      lm-sensors@lm-sensors.org
5393 S:      Maintained
5394 F:      drivers/hwmon/jc42.c
5395 F:      Documentation/hwmon/jc42
5396
5397 JFS FILESYSTEM
5398 M:      Dave Kleikamp <shaggy@kernel.org>
5399 L:      jfs-discussion@lists.sourceforge.net
5400 W:      http://jfs.sourceforge.net/
5401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5402 S:      Maintained
5403 F:      Documentation/filesystems/jfs.txt
5404 F:      fs/jfs/
5405
5406 JME NETWORK DRIVER
5407 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5408 L:      netdev@vger.kernel.org
5409 S:      Maintained
5410 F:      drivers/net/ethernet/jme.*
5411
5412 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5413 M:      David Woodhouse <dwmw2@infradead.org>
5414 L:      linux-mtd@lists.infradead.org
5415 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5416 S:      Maintained
5417 F:      fs/jffs2/
5418 F:      include/uapi/linux/jffs2.h
5419
5420 JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
5421 M:      Andrew Morton <akpm@linux-foundation.org>
5422 M:      Jan Kara <jack@suse.cz>
5423 L:      linux-ext4@vger.kernel.org
5424 S:      Maintained
5425 F:      fs/jbd/
5426 F:      include/linux/jbd.h
5427
5428 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5429 M:      "Theodore Ts'o" <tytso@mit.edu>
5430 L:      linux-ext4@vger.kernel.org
5431 S:      Maintained
5432 F:      fs/jbd2/
5433 F:      include/linux/jbd2.h
5434
5435 JSM Neo PCI based serial card
5436 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5437 L:      linux-serial@vger.kernel.org
5438 S:      Maintained
5439 F:      drivers/tty/serial/jsm/
5440
5441 K10TEMP HARDWARE MONITORING DRIVER
5442 M:      Clemens Ladisch <clemens@ladisch.de>
5443 L:      lm-sensors@lm-sensors.org
5444 S:      Maintained
5445 F:      Documentation/hwmon/k10temp
5446 F:      drivers/hwmon/k10temp.c
5447
5448 K8TEMP HARDWARE MONITORING DRIVER
5449 M:      Rudolf Marek <r.marek@assembler.cz>
5450 L:      lm-sensors@lm-sensors.org
5451 S:      Maintained
5452 F:      Documentation/hwmon/k8temp
5453 F:      drivers/hwmon/k8temp.c
5454
5455 KCONFIG
5456 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5457 L:      linux-kbuild@vger.kernel.org
5458 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5459 S:      Maintained
5460 F:      Documentation/kbuild/kconfig-language.txt
5461 F:      scripts/kconfig/
5462
5463 KDUMP
5464 M:      Vivek Goyal <vgoyal@redhat.com>
5465 M:      Haren Myneni <hbabu@us.ibm.com>
5466 L:      kexec@lists.infradead.org
5467 W:      http://lse.sourceforge.net/kdump/
5468 S:      Maintained
5469 F:      Documentation/kdump/
5470
5471 KEENE FM RADIO TRANSMITTER DRIVER
5472 M:      Hans Verkuil <hverkuil@xs4all.nl>
5473 L:      linux-media@vger.kernel.org
5474 T:      git git://linuxtv.org/media_tree.git
5475 W:      http://linuxtv.org
5476 S:      Maintained
5477 F:      drivers/media/radio/radio-keene*
5478
5479 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5480 M:      Ian Kent <raven@themaw.net>
5481 L:      autofs@vger.kernel.org
5482 S:      Maintained
5483 F:      fs/autofs4/
5484
5485 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5486 M:      Michal Marek <mmarek@suse.cz>
5487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5489 L:      linux-kbuild@vger.kernel.org
5490 S:      Maintained
5491 F:      Documentation/kbuild/
5492 F:      Makefile
5493 F:      scripts/Makefile.*
5494 F:      scripts/basic/
5495 F:      scripts/mk*
5496 F:      scripts/package/
5497
5498 KERNEL JANITORS
5499 L:      kernel-janitors@vger.kernel.org
5500 W:      http://kernelnewbies.org/KernelJanitors
5501 S:      Odd Fixes
5502
5503 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5504 M:      "J. Bruce Fields" <bfields@fieldses.org>
5505 L:      linux-nfs@vger.kernel.org
5506 W:      http://nfs.sourceforge.net/
5507 S:      Supported
5508 F:      fs/nfsd/
5509 F:      include/uapi/linux/nfsd/
5510 F:      fs/lockd/
5511 F:      fs/nfs_common/
5512 F:      net/sunrpc/
5513 F:      include/linux/lockd/
5514 F:      include/linux/sunrpc/
5515 F:      include/uapi/linux/sunrpc/
5516
5517 KERNEL SELFTEST FRAMEWORK
5518 M:      Shuah Khan <shuahkh@osg.samsung.com>
5519 L:      linux-api@vger.kernel.org
5520 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5521 S:      Maintained
5522 F:      tools/testing/selftests
5523
5524 KERNEL VIRTUAL MACHINE (KVM)
5525 M:      Gleb Natapov <gleb@kernel.org>
5526 M:      Paolo Bonzini <pbonzini@redhat.com>
5527 L:      kvm@vger.kernel.org
5528 W:      http://www.linux-kvm.org
5529 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5530 S:      Supported
5531 F:      Documentation/*/kvm*.txt
5532 F:      Documentation/virtual/kvm/
5533 F:      arch/*/kvm/
5534 F:      arch/*/include/asm/kvm*
5535 F:      include/linux/kvm*
5536 F:      include/uapi/linux/kvm*
5537 F:      virt/kvm/
5538
5539 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5540 M:      Joerg Roedel <joro@8bytes.org>
5541 L:      kvm@vger.kernel.org
5542 W:      http://kvm.qumranet.com
5543 S:      Maintained
5544 F:      arch/x86/include/asm/svm.h
5545 F:      arch/x86/kvm/svm.c
5546
5547 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5548 M:      Alexander Graf <agraf@suse.de>
5549 L:      kvm-ppc@vger.kernel.org
5550 W:      http://kvm.qumranet.com
5551 T:      git git://github.com/agraf/linux-2.6.git
5552 S:      Supported
5553 F:      arch/powerpc/include/asm/kvm*
5554 F:      arch/powerpc/kvm/
5555
5556 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5557 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5558 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5559 M:      linux390@de.ibm.com
5560 L:      linux-s390@vger.kernel.org
5561 W:      http://www.ibm.com/developerworks/linux/linux390/
5562 S:      Supported
5563 F:      Documentation/s390/kvm.txt
5564 F:      arch/s390/include/asm/kvm*
5565 F:      arch/s390/kvm/
5566 F:      drivers/s390/kvm/
5567
5568 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5569 M:      Christoffer Dall <christoffer.dall@linaro.org>
5570 M:      Marc Zyngier <marc.zyngier@arm.com>
5571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5572 L:      kvmarm@lists.cs.columbia.edu
5573 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5574 S:      Supported
5575 F:      arch/arm/include/uapi/asm/kvm*
5576 F:      arch/arm/include/asm/kvm*
5577 F:      arch/arm/kvm/
5578 F:      virt/kvm/arm/
5579 F:      include/kvm/arm_*
5580
5581 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5582 M:      Christoffer Dall <christoffer.dall@linaro.org>
5583 M:      Marc Zyngier <marc.zyngier@arm.com>
5584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5585 L:      kvmarm@lists.cs.columbia.edu
5586 S:      Maintained
5587 F:      arch/arm64/include/uapi/asm/kvm*
5588 F:      arch/arm64/include/asm/kvm*
5589 F:      arch/arm64/kvm/
5590
5591 KEXEC
5592 M:      Eric Biederman <ebiederm@xmission.com>
5593 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
5594 L:      kexec@lists.infradead.org
5595 S:      Maintained
5596 F:      include/linux/kexec.h
5597 F:      include/uapi/linux/kexec.h
5598 F:      kernel/kexec.c
5599
5600 KEYS/KEYRINGS:
5601 M:      David Howells <dhowells@redhat.com>
5602 L:      keyrings@linux-nfs.org
5603 S:      Maintained
5604 F:      Documentation/security/keys.txt
5605 F:      include/linux/key.h
5606 F:      include/linux/key-type.h
5607 F:      include/keys/
5608 F:      security/keys/
5609
5610 KEYS-TRUSTED
5611 M:      David Safford <safford@us.ibm.com>
5612 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5613 L:      linux-security-module@vger.kernel.org
5614 L:      keyrings@linux-nfs.org
5615 S:      Supported
5616 F:      Documentation/security/keys-trusted-encrypted.txt
5617 F:      include/keys/trusted-type.h
5618 F:      security/keys/trusted.c
5619 F:      security/keys/trusted.h
5620
5621 KEYS-ENCRYPTED
5622 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5623 M:      David Safford <safford@us.ibm.com>
5624 L:      linux-security-module@vger.kernel.org
5625 L:      keyrings@linux-nfs.org
5626 S:      Supported
5627 F:      Documentation/security/keys-trusted-encrypted.txt
5628 F:      include/keys/encrypted-type.h
5629 F:      security/keys/encrypted-keys/
5630
5631 KGDB / KDB /debug_core
5632 M:      Jason Wessel <jason.wessel@windriver.com>
5633 W:      http://kgdb.wiki.kernel.org/
5634 L:      kgdb-bugreport@lists.sourceforge.net
5635 S:      Maintained
5636 F:      Documentation/DocBook/kgdb.tmpl
5637 F:      drivers/misc/kgdbts.c
5638 F:      drivers/tty/serial/kgdboc.c
5639 F:      include/linux/kdb.h
5640 F:      include/linux/kgdb.h
5641 F:      kernel/debug/
5642
5643 KMEMCHECK
5644 M:      Vegard Nossum <vegardno@ifi.uio.no>
5645 M:      Pekka Enberg <penberg@kernel.org>
5646 S:      Maintained
5647 F:      Documentation/kmemcheck.txt
5648 F:      arch/x86/include/asm/kmemcheck.h
5649 F:      arch/x86/mm/kmemcheck/
5650 F:      include/linux/kmemcheck.h
5651 F:      mm/kmemcheck.c
5652
5653 KMEMLEAK
5654 M:      Catalin Marinas <catalin.marinas@arm.com>
5655 S:      Maintained
5656 F:      Documentation/kmemleak.txt
5657 F:      include/linux/kmemleak.h
5658 F:      mm/kmemleak.c
5659 F:      mm/kmemleak-test.c
5660
5661 KPROBES
5662 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
5663 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
5664 M:      "David S. Miller" <davem@davemloft.net>
5665 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
5666 S:      Maintained
5667 F:      Documentation/kprobes.txt
5668 F:      include/linux/kprobes.h
5669 F:      kernel/kprobes.c
5670
5671 KS0108 LCD CONTROLLER DRIVER
5672 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
5673 W:      http://miguelojeda.es/auxdisplay.htm
5674 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
5675 S:      Maintained
5676 F:      Documentation/auxdisplay/ks0108
5677 F:      drivers/auxdisplay/ks0108.c
5678 F:      include/linux/ks0108.h
5679
5680 LAPB module
5681 L:      linux-x25@vger.kernel.org
5682 S:      Orphan
5683 F:      Documentation/networking/lapb-module.txt
5684 F:      include/*/lapb.h
5685 F:      net/lapb/
5686
5687 LASI 53c700 driver for PARISC
5688 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
5689 L:      linux-scsi@vger.kernel.org
5690 S:      Maintained
5691 F:      Documentation/scsi/53c700.txt
5692 F:      drivers/scsi/53c700*
5693
5694 LED SUBSYSTEM
5695 M:      Bryan Wu <cooloney@gmail.com>
5696 M:      Richard Purdie <rpurdie@rpsys.net>
5697 L:      linux-leds@vger.kernel.org
5698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
5699 S:      Maintained
5700 F:      drivers/leds/
5701 F:      include/linux/leds.h
5702
5703 LEGACY EEPROM DRIVER
5704 M:      Jean Delvare <jdelvare@suse.de>
5705 S:      Maintained
5706 F:      Documentation/misc-devices/eeprom
5707 F:      drivers/misc/eeprom/eeprom.c
5708
5709 LEGO USB Tower driver
5710 M:      Juergen Stuber <starblue@users.sourceforge.net>
5711 L:      legousb-devel@lists.sourceforge.net
5712 W:      http://legousb.sourceforge.net/
5713 S:      Maintained
5714 F:      drivers/usb/misc/legousbtower.c
5715
5716 LG2160 MEDIA DRIVER
5717 M:      Michael Krufky <mkrufky@linuxtv.org>
5718 L:      linux-media@vger.kernel.org
5719 W:      http://linuxtv.org/
5720 W:      http://github.com/mkrufky
5721 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5722 T:      git git://linuxtv.org/mkrufky/tuners.git
5723 S:      Maintained
5724 F:      drivers/media/dvb-frontends/lg2160.*
5725
5726 LGDT3305 MEDIA DRIVER
5727 M:      Michael Krufky <mkrufky@linuxtv.org>
5728 L:      linux-media@vger.kernel.org
5729 W:      http://linuxtv.org/
5730 W:      http://github.com/mkrufky
5731 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5732 T:      git git://linuxtv.org/mkrufky/tuners.git
5733 S:      Maintained
5734 F:      drivers/media/dvb-frontends/lgdt3305.*
5735
5736 LGUEST
5737 M:      Rusty Russell <rusty@rustcorp.com.au>
5738 L:      lguest@lists.ozlabs.org
5739 W:      http://lguest.ozlabs.org/
5740 S:      Odd Fixes
5741 F:      arch/x86/include/asm/lguest*.h
5742 F:      arch/x86/lguest/
5743 F:      drivers/lguest/
5744 F:      include/linux/lguest*.h
5745 F:      tools/lguest/
5746
5747 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
5748 M:      Tejun Heo <tj@kernel.org>
5749 L:      linux-ide@vger.kernel.org
5750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5751 S:      Maintained
5752 F:      drivers/ata/
5753 F:      include/linux/ata.h
5754 F:      include/linux/libata.h
5755
5756 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
5757 M:      Viresh Kumar <viresh.linux@gmail.com>
5758 L:      linux-ide@vger.kernel.org
5759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5760 S:      Maintained
5761 F:      include/linux/pata_arasan_cf_data.h
5762 F:      drivers/ata/pata_arasan_cf.c
5763
5764 LIBATA PATA DRIVERS
5765 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5766 M:      Tejun Heo <tj@kernel.org>
5767 L:      linux-ide@vger.kernel.org
5768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5769 S:      Maintained
5770 F:      drivers/ata/pata_*.c
5771 F:      drivers/ata/ata_generic.c
5772
5773 LIBATA SATA AHCI PLATFORM devices support
5774 M:      Hans de Goede <hdegoede@redhat.com>
5775 M:      Tejun Heo <tj@kernel.org>
5776 L:      linux-ide@vger.kernel.org
5777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5778 S:      Maintained
5779 F:      drivers/ata/ahci_platform.c
5780 F:      drivers/ata/libahci_platform.c
5781 F:      include/linux/ahci_platform.h
5782
5783 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
5784 M:      Mikael Pettersson <mikpelinux@gmail.com>
5785 L:      linux-ide@vger.kernel.org
5786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5787 S:      Maintained
5788 F:      drivers/ata/sata_promise.*
5789
5790 LIBLOCKDEP
5791 M:      Sasha Levin <sasha.levin@oracle.com>
5792 S:      Maintained
5793 F:      tools/lib/lockdep/
5794
5795 LINUX FOR IBM pSERIES (RS/6000)
5796 M:      Paul Mackerras <paulus@au.ibm.com>
5797 W:      http://www.ibm.com/linux/ltc/projects/ppc
5798 S:      Supported
5799 F:      arch/powerpc/boot/rs6000.h
5800
5801 LINUX FOR POWERPC (32-BIT AND 64-BIT)
5802 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5803 M:      Paul Mackerras <paulus@samba.org>
5804 M:      Michael Ellerman <mpe@ellerman.id.au>
5805 W:      http://www.penguinppc.org/
5806 L:      linuxppc-dev@lists.ozlabs.org
5807 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
5808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
5809 S:      Supported
5810 F:      Documentation/powerpc/
5811 F:      arch/powerpc/
5812
5813 LINUX FOR POWER MACINTOSH
5814 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5815 W:      http://www.penguinppc.org/
5816 L:      linuxppc-dev@lists.ozlabs.org
5817 S:      Maintained
5818 F:      arch/powerpc/platforms/powermac/
5819 F:      drivers/macintosh/
5820
5821 LINUX FOR POWERPC EMBEDDED MPC5XXX
5822 M:      Anatolij Gustschin <agust@denx.de>
5823 L:      linuxppc-dev@lists.ozlabs.org
5824 T:      git git://git.denx.de/linux-denx-agust.git
5825 S:      Maintained
5826 F:      arch/powerpc/platforms/512x/
5827 F:      arch/powerpc/platforms/52xx/
5828
5829 LINUX FOR POWERPC EMBEDDED PPC4XX
5830 M:  Alistair Popple <alistair@popple.id.au>
5831 M:      Matt Porter <mporter@kernel.crashing.org>
5832 W:      http://www.penguinppc.org/
5833 L:      linuxppc-dev@lists.ozlabs.org
5834 S:      Maintained
5835 F:      arch/powerpc/platforms/40x/
5836 F:      arch/powerpc/platforms/44x/
5837
5838 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
5839 L:      linuxppc-dev@lists.ozlabs.org
5840 S:      Orphan
5841 F:      arch/powerpc/*/*virtex*
5842 F:      arch/powerpc/*/*/*virtex*
5843
5844 LINUX FOR POWERPC EMBEDDED PPC8XX
5845 M:      Vitaly Bordug <vitb@kernel.crashing.org>
5846 W:      http://www.penguinppc.org/
5847 L:      linuxppc-dev@lists.ozlabs.org
5848 S:      Maintained
5849 F:      arch/powerpc/platforms/8xx/
5850
5851 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
5852 M:      Scott Wood <scottwood@freescale.com>
5853 M:      Kumar Gala <galak@kernel.crashing.org>
5854 W:      http://www.penguinppc.org/
5855 L:      linuxppc-dev@lists.ozlabs.org
5856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
5857 S:      Maintained
5858 F:      arch/powerpc/platforms/83xx/
5859 F:      arch/powerpc/platforms/85xx/
5860
5861 LINUX FOR POWERPC PA SEMI PWRFICIENT
5862 M:      Olof Johansson <olof@lixom.net>
5863 L:      linuxppc-dev@lists.ozlabs.org
5864 S:      Maintained
5865 F:      arch/powerpc/platforms/pasemi/
5866 F:      drivers/*/*pasemi*
5867 F:      drivers/*/*/*pasemi*
5868
5869 LINUX SECURITY MODULE (LSM) FRAMEWORK
5870 M:      Chris Wright <chrisw@sous-sol.org>
5871 L:      linux-security-module@vger.kernel.org
5872 S:      Supported
5873
5874 LIS3LV02D ACCELEROMETER DRIVER
5875 M:      Eric Piel <eric.piel@tremplin-utc.net>
5876 S:      Maintained
5877 F:      Documentation/misc-devices/lis3lv02d
5878 F:      drivers/misc/lis3lv02d/
5879 F:      drivers/platform/x86/hp_accel.c
5880
5881 LIVE PATCHING
5882 M:      Josh Poimboeuf <jpoimboe@redhat.com>
5883 M:      Seth Jennings <sjenning@redhat.com>
5884 M:      Jiri Kosina <jkosina@suse.cz>
5885 M:      Vojtech Pavlik <vojtech@suse.cz>
5886 S:      Maintained
5887 F:      kernel/livepatch/
5888 F:      include/linux/livepatch.h
5889 F:      arch/x86/include/asm/livepatch.h
5890 F:      arch/x86/kernel/livepatch.c
5891 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
5892 F:      samples/livepatch/
5893 L:      live-patching@vger.kernel.org
5894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
5895
5896 LLC (802.2)
5897 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5898 S:      Maintained
5899 F:      include/linux/llc.h
5900 F:      include/uapi/linux/llc.h
5901 F:      include/net/llc*
5902 F:      net/llc/
5903
5904 LM73 HARDWARE MONITOR DRIVER
5905 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
5906 L:      lm-sensors@lm-sensors.org
5907 S:      Maintained
5908 F:      drivers/hwmon/lm73.c
5909
5910 LM78 HARDWARE MONITOR DRIVER
5911 M:      Jean Delvare <jdelvare@suse.de>
5912 L:      lm-sensors@lm-sensors.org
5913 S:      Maintained
5914 F:      Documentation/hwmon/lm78
5915 F:      drivers/hwmon/lm78.c
5916
5917 LM83 HARDWARE MONITOR DRIVER
5918 M:      Jean Delvare <jdelvare@suse.de>
5919 L:      lm-sensors@lm-sensors.org
5920 S:      Maintained
5921 F:      Documentation/hwmon/lm83
5922 F:      drivers/hwmon/lm83.c
5923
5924 LM90 HARDWARE MONITOR DRIVER
5925 M:      Jean Delvare <jdelvare@suse.de>
5926 L:      lm-sensors@lm-sensors.org
5927 S:      Maintained
5928 F:      Documentation/hwmon/lm90
5929 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
5930 F:      drivers/hwmon/lm90.c
5931
5932 LM95234 HARDWARE MONITOR DRIVER
5933 M:      Guenter Roeck <linux@roeck-us.net>
5934 L:      lm-sensors@lm-sensors.org
5935 S:      Maintained
5936 F:      Documentation/hwmon/lm95234
5937 F:      drivers/hwmon/lm95234.c
5938
5939 LME2510 MEDIA DRIVER
5940 M:      Malcolm Priestley <tvboxspy@gmail.com>
5941 L:      linux-media@vger.kernel.org
5942 W:      http://linuxtv.org/
5943 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5944 S:      Maintained
5945 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
5946
5947 LOCKDEP AND LOCKSTAT
5948 M:      Peter Zijlstra <peterz@infradead.org>
5949 M:      Ingo Molnar <mingo@redhat.com>
5950 L:      linux-kernel@vger.kernel.org
5951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
5952 S:      Maintained
5953 F:      Documentation/locking/lockdep*.txt
5954 F:      Documentation/locking/lockstat.txt
5955 F:      include/linux/lockdep.h
5956 F:      kernel/locking/
5957
5958 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
5959 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
5960 L:      linux-ntfs-dev@lists.sourceforge.net
5961 W:      http://www.linux-ntfs.org/content/view/19/37/
5962 S:      Maintained
5963 F:      Documentation/ldm.txt
5964 F:      block/partitions/ldm.*
5965
5966 LogFS
5967 M:      Joern Engel <joern@logfs.org>
5968 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
5969 L:      logfs@logfs.org
5970 W:      logfs.org
5971 S:      Maintained
5972 F:      fs/logfs/
5973
5974 LPC32XX MACHINE SUPPORT
5975 M:      Roland Stigge <stigge@antcom.de>
5976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5977 S:      Maintained
5978 F:      arch/arm/mach-lpc32xx/
5979
5980 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
5981 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
5982 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
5983 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
5984 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
5985 L:      MPT-FusionLinux.pdl@avagotech.com
5986 L:      linux-scsi@vger.kernel.org
5987 W:      http://www.lsilogic.com/support
5988 S:      Supported
5989 F:      drivers/message/fusion/
5990 F:      drivers/scsi/mpt2sas/
5991 F:      drivers/scsi/mpt3sas/
5992
5993 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
5994 M:      Matthew Wilcox <matthew@wil.cx>
5995 L:      linux-scsi@vger.kernel.org
5996 S:      Maintained
5997 F:      drivers/scsi/sym53c8xx_2/
5998
5999 LTC4261 HARDWARE MONITOR DRIVER
6000 M:      Guenter Roeck <linux@roeck-us.net>
6001 L:      lm-sensors@lm-sensors.org
6002 S:      Maintained
6003 F:      Documentation/hwmon/ltc4261
6004 F:      drivers/hwmon/ltc4261.c
6005
6006 LTP (Linux Test Project)
6007 M:      Mike Frysinger <vapier@gentoo.org>
6008 M:      Cyril Hrubis <chrubis@suse.cz>
6009 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
6010 M:      Jan Stancek <jstancek@redhat.com>
6011 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6012 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6013 L:      ltp-list@lists.sourceforge.net (subscribers-only)
6014 W:      http://linux-test-project.github.io/
6015 T:      git git://github.com/linux-test-project/ltp.git
6016 S:      Maintained
6017
6018 M32R ARCHITECTURE
6019 W:      http://www.linux-m32r.org/
6020 S:      Orphan
6021 F:      arch/m32r/
6022
6023 M68K ARCHITECTURE
6024 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6025 L:      linux-m68k@lists.linux-m68k.org
6026 W:      http://www.linux-m68k.org/
6027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6028 S:      Maintained
6029 F:      arch/m68k/
6030 F:      drivers/zorro/
6031
6032 M68K ON APPLE MACINTOSH
6033 M:      Joshua Thompson <funaho@jurai.org>
6034 W:      http://www.mac.linux-m68k.org/
6035 L:      linux-m68k@lists.linux-m68k.org
6036 S:      Maintained
6037 F:      arch/m68k/mac/
6038
6039 M68K ON HP9000/300
6040 M:      Philip Blundell <philb@gnu.org>
6041 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6042 S:      Maintained
6043 F:      arch/m68k/hp300/
6044
6045 M88DS3103 MEDIA DRIVER
6046 M:      Antti Palosaari <crope@iki.fi>
6047 L:      linux-media@vger.kernel.org
6048 W:      http://linuxtv.org/
6049 W:      http://palosaari.fi/linux/
6050 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6051 T:      git git://linuxtv.org/anttip/media_tree.git
6052 S:      Maintained
6053 F:      drivers/media/dvb-frontends/m88ds3103*
6054
6055 M88RS2000 MEDIA DRIVER
6056 M:      Malcolm Priestley <tvboxspy@gmail.com>
6057 L:      linux-media@vger.kernel.org
6058 W:      http://linuxtv.org/
6059 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6060 S:      Maintained
6061 F:      drivers/media/dvb-frontends/m88rs2000*
6062
6063 M88TS2022 MEDIA DRIVER
6064 M:      Antti Palosaari <crope@iki.fi>
6065 L:      linux-media@vger.kernel.org
6066 W:      http://linuxtv.org/
6067 W:      http://palosaari.fi/linux/
6068 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6069 T:      git git://linuxtv.org/anttip/media_tree.git
6070 S:      Maintained
6071 F:      drivers/media/tuners/m88ts2022*
6072
6073 MA901 MASTERKIT USB FM RADIO DRIVER
6074 M:      Alexey Klimov <klimov.linux@gmail.com>
6075 L:      linux-media@vger.kernel.org
6076 T:      git git://linuxtv.org/media_tree.git
6077 S:      Maintained
6078 F:      drivers/media/radio/radio-ma901.c
6079
6080 MAC80211
6081 M:      Johannes Berg <johannes@sipsolutions.net>
6082 L:      linux-wireless@vger.kernel.org
6083 W:      http://wireless.kernel.org/
6084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6086 S:      Maintained
6087 F:      Documentation/networking/mac80211-injection.txt
6088 F:      include/net/mac80211.h
6089 F:      net/mac80211/
6090
6091 MACVLAN DRIVER
6092 M:      Patrick McHardy <kaber@trash.net>
6093 L:      netdev@vger.kernel.org
6094 S:      Maintained
6095 F:      drivers/net/macvlan.c
6096 F:      include/linux/if_macvlan.h
6097
6098 MAILBOX API
6099 M:      Jassi Brar <jassisinghbrar@gmail.com>
6100 L:      linux-kernel@vger.kernel.org
6101 S:      Maintained
6102 F:      drivers/mailbox/
6103 F:      include/linux/mailbox_client.h
6104 F:      include/linux/mailbox_controller.h
6105
6106 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6107 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6108 W:      http://www.kernel.org/doc/man-pages
6109 L:      linux-man@vger.kernel.org
6110 S:      Maintained
6111
6112 MARVELL ARMADA DRM SUPPORT
6113 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6114 S:      Maintained
6115 F:      drivers/gpu/drm/armada/
6116
6117 MARVELL 88E6352 DSA support
6118 M:      Guenter Roeck <linux@roeck-us.net>
6119 S:      Maintained
6120 F:      drivers/net/dsa/mv88e6352.c
6121
6122 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6123 M:      Mirko Lindner <mlindner@marvell.com>
6124 M:      Stephen Hemminger <stephen@networkplumber.org>
6125 L:      netdev@vger.kernel.org
6126 S:      Maintained
6127 F:      drivers/net/ethernet/marvell/sk*
6128
6129 MARVELL LIBERTAS WIRELESS DRIVER
6130 L:      libertas-dev@lists.infradead.org
6131 S:      Orphan
6132 F:      drivers/net/wireless/libertas/
6133
6134 MARVELL MV643XX ETHERNET DRIVER
6135 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6136 L:      netdev@vger.kernel.org
6137 S:      Maintained
6138 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6139 F:      include/linux/mv643xx.h
6140
6141 MARVELL MVNETA ETHERNET DRIVER
6142 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6143 L:      netdev@vger.kernel.org
6144 S:      Maintained
6145 F:      drivers/net/ethernet/marvell/mvneta.*
6146
6147 MARVELL MWIFIEX WIRELESS DRIVER
6148 M:      Amitkumar Karwar <akarwar@marvell.com>
6149 M:      Avinash Patil <patila@marvell.com>
6150 L:      linux-wireless@vger.kernel.org
6151 S:      Maintained
6152 F:      drivers/net/wireless/mwifiex/
6153
6154 MARVELL MWL8K WIRELESS DRIVER
6155 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6156 L:      linux-wireless@vger.kernel.org
6157 S:      Odd Fixes
6158 F:      drivers/net/wireless/mwl8k.c
6159
6160 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6161 M:      Nicolas Pitre <nico@fluxnic.net>
6162 S:      Odd Fixes
6163 F:      drivers/mmc/host/mvsdio.*
6164
6165 MATROX FRAMEBUFFER DRIVER
6166 L:      linux-fbdev@vger.kernel.org
6167 S:      Orphan
6168 F:      drivers/video/fbdev/matrox/matroxfb_*
6169 F:      include/uapi/linux/matroxfb.h
6170
6171 MAX16065 HARDWARE MONITOR DRIVER
6172 M:      Guenter Roeck <linux@roeck-us.net>
6173 L:      lm-sensors@lm-sensors.org
6174 S:      Maintained
6175 F:      Documentation/hwmon/max16065
6176 F:      drivers/hwmon/max16065.c
6177
6178 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6179 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6180 L:      lm-sensors@lm-sensors.org
6181 S:      Maintained
6182 F:      Documentation/hwmon/max6650
6183 F:      drivers/hwmon/max6650.c
6184
6185 MAX6697 HARDWARE MONITOR DRIVER
6186 M:      Guenter Roeck <linux@roeck-us.net>
6187 L:      lm-sensors@lm-sensors.org
6188 S:      Maintained
6189 F:      Documentation/hwmon/max6697
6190 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6191 F:      drivers/hwmon/max6697.c
6192 F:      include/linux/platform_data/max6697.h
6193
6194 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6195 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6196 L:      linux-pm@vger.kernel.org
6197 S:      Supported
6198 F:      drivers/power/max14577_charger.c
6199 F:      drivers/power/max77693_charger.c
6200
6201 MAXIRADIO FM RADIO RECEIVER DRIVER
6202 M:      Hans Verkuil <hverkuil@xs4all.nl>
6203 L:      linux-media@vger.kernel.org
6204 T:      git git://linuxtv.org/media_tree.git
6205 W:      http://linuxtv.org
6206 S:      Maintained
6207 F:      drivers/media/radio/radio-maxiradio*
6208
6209 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6210 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6211 P:      LinuxTV.org Project
6212 L:      linux-media@vger.kernel.org
6213 W:      http://linuxtv.org
6214 Q:      http://patchwork.kernel.org/project/linux-media/list/
6215 T:      git git://linuxtv.org/media_tree.git
6216 S:      Maintained
6217 F:      Documentation/dvb/
6218 F:      Documentation/video4linux/
6219 F:      Documentation/DocBook/media/
6220 F:      drivers/media/
6221 F:      drivers/staging/media/
6222 F:      include/media/
6223 F:      include/uapi/linux/dvb/
6224 F:      include/uapi/linux/videodev2.h
6225 F:      include/uapi/linux/media.h
6226 F:      include/uapi/linux/v4l2-*
6227 F:      include/uapi/linux/meye.h
6228 F:      include/uapi/linux/ivtv*
6229 F:      include/uapi/linux/uvcvideo.h
6230
6231 MEGARAID SCSI/SAS DRIVERS
6232 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6233 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6234 M:      Uday Lingala <uday.lingala@avagotech.com>
6235 L:      megaraidlinux.pdl@avagotech.com
6236 L:      linux-scsi@vger.kernel.org
6237 W:      http://www.lsi.com
6238 S:      Maintained
6239 F:      Documentation/scsi/megaraid.txt
6240 F:      drivers/scsi/megaraid.*
6241 F:      drivers/scsi/megaraid/
6242
6243 MELLANOX ETHERNET DRIVER (mlx4_en)
6244 M:      Amir Vadai <amirv@mellanox.com>
6245 L:      netdev@vger.kernel.org
6246 S:      Supported
6247 W:      http://www.mellanox.com
6248 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6249 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6250
6251 MEMORY MANAGEMENT
6252 L:      linux-mm@kvack.org
6253 W:      http://www.linux-mm.org
6254 S:      Maintained
6255 F:      include/linux/mm.h
6256 F:      include/linux/gfp.h
6257 F:      include/linux/mmzone.h
6258 F:      include/linux/memory_hotplug.h
6259 F:      include/linux/vmalloc.h
6260 F:      mm/
6261
6262 MEMORY TECHNOLOGY DEVICES (MTD)
6263 M:      David Woodhouse <dwmw2@infradead.org>
6264 M:      Brian Norris <computersforpeace@gmail.com>
6265 L:      linux-mtd@lists.infradead.org
6266 W:      http://www.linux-mtd.infradead.org/
6267 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6268 T:      git git://git.infradead.org/linux-mtd.git
6269 T:      git git://git.infradead.org/l2-mtd.git
6270 S:      Maintained
6271 F:      drivers/mtd/
6272 F:      include/linux/mtd/
6273 F:      include/uapi/mtd/
6274
6275 MEN A21 WATCHDOG DRIVER
6276 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
6277 L:      linux-watchdog@vger.kernel.org
6278 S:      Supported
6279 F:      drivers/watchdog/mena21_wdt.c
6280
6281 MEN CHAMELEON BUS (mcb)
6282 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
6283 S:      Supported
6284 F:      drivers/mcb/
6285 F:      include/linux/mcb.h
6286
6287 MEN F21BMC (Board Management Controller)
6288 M:      Andreas Werner <andreas.werner@men.de>
6289 S:      Supported
6290 F:      drivers/mfd/menf21bmc.c
6291 F:      drivers/watchdog/menf21bmc_wdt.c
6292 F:      drivers/leds/leds-menf21bmc.c
6293 F:      drivers/hwmon/menf21bmc_hwmon.c
6294 F:      Documentation/hwmon/menf21bmc
6295
6296 METAG ARCHITECTURE
6297 M:      James Hogan <james.hogan@imgtec.com>
6298 L:      linux-metag@vger.kernel.org
6299 S:      Supported
6300 F:      arch/metag/
6301 F:      Documentation/metag/
6302 F:      Documentation/devicetree/bindings/metag/
6303 F:      drivers/clocksource/metag_generic.c
6304 F:      drivers/irqchip/irq-metag.c
6305 F:      drivers/irqchip/irq-metag-ext.c
6306 F:      drivers/tty/metag_da.c
6307
6308 MICROBLAZE ARCHITECTURE
6309 M:      Michal Simek <monstr@monstr.eu>
6310 W:      http://www.monstr.eu/fdt/
6311 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6312 S:      Supported
6313 F:      arch/microblaze/
6314
6315 MICROTEK X6 SCANNER
6316 M:      Oliver Neukum <oliver@neukum.org>
6317 S:      Maintained
6318 F:      drivers/usb/image/microtek.*
6319
6320 MIPS
6321 M:      Ralf Baechle <ralf@linux-mips.org>
6322 L:      linux-mips@linux-mips.org
6323 W:      http://www.linux-mips.org/
6324 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6325 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6326 S:      Supported
6327 F:      Documentation/mips/
6328 F:      arch/mips/
6329
6330 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6331 M:      Hans Verkuil <hverkuil@xs4all.nl>
6332 L:      linux-media@vger.kernel.org
6333 T:      git git://linuxtv.org/media_tree.git
6334 W:      http://linuxtv.org
6335 S:      Odd Fixes
6336 F:      drivers/media/radio/radio-miropcm20*
6337
6338 Mellanox MLX5 core VPI driver
6339 M:      Eli Cohen <eli@mellanox.com>
6340 L:      netdev@vger.kernel.org
6341 L:      linux-rdma@vger.kernel.org
6342 W:      http://www.mellanox.com
6343 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6344 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6345 T:      git git://openfabrics.org/~eli/connect-ib.git
6346 S:      Supported
6347 F:      drivers/net/ethernet/mellanox/mlx5/core/
6348 F:      include/linux/mlx5/
6349
6350 Mellanox MLX5 IB driver
6351 M:      Eli Cohen <eli@mellanox.com>
6352 L:      linux-rdma@vger.kernel.org
6353 W:      http://www.mellanox.com
6354 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6355 T:      git git://openfabrics.org/~eli/connect-ib.git
6356 S:      Supported
6357 F:      include/linux/mlx5/
6358 F:      drivers/infiniband/hw/mlx5/
6359
6360 MN88472 MEDIA DRIVER
6361 M:      Antti Palosaari <crope@iki.fi>
6362 L:      linux-media@vger.kernel.org
6363 W:      http://linuxtv.org/
6364 W:      http://palosaari.fi/linux/
6365 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6366 T:      git git://linuxtv.org/anttip/media_tree.git
6367 S:      Maintained
6368 F:      drivers/staging/media/mn88472/
6369 F:      drivers/media/dvb-frontends/mn88472.h
6370
6371 MN88473 MEDIA DRIVER
6372 M:      Antti Palosaari <crope@iki.fi>
6373 L:      linux-media@vger.kernel.org
6374 W:      http://linuxtv.org/
6375 W:      http://palosaari.fi/linux/
6376 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6377 T:      git git://linuxtv.org/anttip/media_tree.git
6378 S:      Maintained
6379 F:      drivers/staging/media/mn88473/
6380 F:      drivers/media/dvb-frontends/mn88473.h
6381
6382 MODULE SUPPORT
6383 M:      Rusty Russell <rusty@rustcorp.com.au>
6384 S:      Maintained
6385 F:      include/linux/module.h
6386 F:      kernel/module.c
6387
6388 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6389 W:      http://popies.net/meye/
6390 S:      Orphan
6391 F:      Documentation/video4linux/meye.txt
6392 F:      drivers/media/pci/meye/
6393 F:      include/uapi/linux/meye.h
6394
6395 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6396 M:      Jiri Slaby <jirislaby@gmail.com>
6397 S:      Maintained
6398 F:      Documentation/serial/moxa-smartio
6399 F:      drivers/tty/mxser.*
6400
6401 MR800 AVERMEDIA USB FM RADIO DRIVER
6402 M:      Alexey Klimov <klimov.linux@gmail.com>
6403 L:      linux-media@vger.kernel.org
6404 T:      git git://linuxtv.org/media_tree.git
6405 S:      Maintained
6406 F:      drivers/media/radio/radio-mr800.c
6407
6408 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6409 M:      Alan Ott <alan@signal11.us>
6410 L:      linux-wpan@vger.kernel.org
6411 S:      Maintained
6412 F:      drivers/net/ieee802154/mrf24j40.c
6413
6414 MSI LAPTOP SUPPORT
6415 M:      "Lee, Chun-Yi" <jlee@suse.com>
6416 L:      platform-driver-x86@vger.kernel.org
6417 S:      Maintained
6418 F:      drivers/platform/x86/msi-laptop.c
6419
6420 MSI WMI SUPPORT
6421 M:      Anisse Astier <anisse@astier.eu>
6422 L:      platform-driver-x86@vger.kernel.org
6423 S:      Supported
6424 F:      drivers/platform/x86/msi-wmi.c
6425
6426 MSI001 MEDIA DRIVER
6427 M:      Antti Palosaari <crope@iki.fi>
6428 L:      linux-media@vger.kernel.org
6429 W:      http://linuxtv.org/
6430 W:      http://palosaari.fi/linux/
6431 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6432 T:      git git://linuxtv.org/anttip/media_tree.git
6433 S:      Maintained
6434 F:      drivers/media/tuners/msi001*
6435
6436 MSI2500 MEDIA DRIVER
6437 M:      Antti Palosaari <crope@iki.fi>
6438 L:      linux-media@vger.kernel.org
6439 W:      http://linuxtv.org/
6440 W:      http://palosaari.fi/linux/
6441 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6442 T:      git git://linuxtv.org/anttip/media_tree.git
6443 S:      Maintained
6444 F:      drivers/media/usb/msi2500/
6445
6446 MT9M032 APTINA SENSOR DRIVER
6447 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6448 L:      linux-media@vger.kernel.org
6449 T:      git git://linuxtv.org/media_tree.git
6450 S:      Maintained
6451 F:      drivers/media/i2c/mt9m032.c
6452 F:      include/media/mt9m032.h
6453
6454 MT9P031 APTINA CAMERA SENSOR
6455 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6456 L:      linux-media@vger.kernel.org
6457 T:      git git://linuxtv.org/media_tree.git
6458 S:      Maintained
6459 F:      drivers/media/i2c/mt9p031.c
6460 F:      include/media/mt9p031.h
6461
6462 MT9T001 APTINA CAMERA SENSOR
6463 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6464 L:      linux-media@vger.kernel.org
6465 T:      git git://linuxtv.org/media_tree.git
6466 S:      Maintained
6467 F:      drivers/media/i2c/mt9t001.c
6468 F:      include/media/mt9t001.h
6469
6470 MT9V032 APTINA CAMERA SENSOR
6471 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6472 L:      linux-media@vger.kernel.org
6473 T:      git git://linuxtv.org/media_tree.git
6474 S:      Maintained
6475 F:      drivers/media/i2c/mt9v032.c
6476 F:      include/media/mt9v032.h
6477
6478 MULTIFUNCTION DEVICES (MFD)
6479 M:      Samuel Ortiz <sameo@linux.intel.com>
6480 M:      Lee Jones <lee.jones@linaro.org>
6481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
6482 S:      Supported
6483 F:      drivers/mfd/
6484 F:      include/linux/mfd/
6485
6486 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
6487 M:      Chris Ball <chris@printf.net>
6488 M:      Ulf Hansson <ulf.hansson@linaro.org>
6489 L:      linux-mmc@vger.kernel.org
6490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6491 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
6492 S:      Maintained
6493 F:      drivers/mmc/
6494 F:      include/linux/mmc/
6495 F:      include/uapi/linux/mmc/
6496
6497 MULTIMEDIA CARD (MMC) ETC. OVER SPI
6498 S:      Orphan
6499 F:      drivers/mmc/host/mmc_spi.c
6500 F:      include/linux/spi/mmc_spi.h
6501
6502 MULTISOUND SOUND DRIVER
6503 M:      Andrew Veliath <andrewtv@usa.net>
6504 S:      Maintained
6505 F:      Documentation/sound/oss/MultiSound
6506 F:      sound/oss/msnd*
6507
6508 MULTITECH MULTIPORT CARD (ISICOM)
6509 S:      Orphan
6510 F:      drivers/tty/isicom.c
6511 F:      include/linux/isicom.h
6512
6513 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
6514 M:      Felipe Balbi <balbi@ti.com>
6515 L:      linux-usb@vger.kernel.org
6516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6517 S:      Maintained
6518 F:      drivers/usb/musb/
6519
6520 MXL5007T MEDIA DRIVER
6521 M:      Michael Krufky <mkrufky@linuxtv.org>
6522 L:      linux-media@vger.kernel.org
6523 W:      http://linuxtv.org/
6524 W:      http://github.com/mkrufky
6525 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6526 T:      git git://linuxtv.org/mkrufky/tuners.git
6527 S:      Maintained
6528 F:      drivers/media/tuners/mxl5007t.*
6529
6530 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
6531 M:      Hyong-Youb Kim <hykim@myri.com>
6532 L:      netdev@vger.kernel.org
6533 W:      https://www.myricom.com/support/downloads/myri10ge.html
6534 S:      Supported
6535 F:      drivers/net/ethernet/myricom/myri10ge/
6536
6537 NATSEMI ETHERNET DRIVER (DP8381x)
6538 S:      Orphan
6539 F:      drivers/net/ethernet/natsemi/natsemi.c
6540
6541 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
6542 M:      Daniel Mack <zonque@gmail.com>
6543 S:      Maintained
6544 L:      alsa-devel@alsa-project.org
6545 W:      http://www.native-instruments.com
6546 F:      sound/usb/caiaq/
6547
6548 NCP FILESYSTEM
6549 M:      Petr Vandrovec <petr@vandrovec.name>
6550 S:      Odd Fixes
6551 F:      fs/ncpfs/
6552
6553 NCR 5380 SCSI DRIVERS
6554 M:      Finn Thain <fthain@telegraphics.com.au>
6555 M:      Michael Schmitz <schmitzmic@gmail.com>
6556 L:      linux-scsi@vger.kernel.org
6557 S:      Maintained
6558 F:      Documentation/scsi/g_NCR5380.txt
6559 F:      drivers/scsi/NCR5380.*
6560 F:      drivers/scsi/arm/cumana_1.c
6561 F:      drivers/scsi/arm/oak.c
6562 F:      drivers/scsi/atari_NCR5380.c
6563 F:      drivers/scsi/atari_scsi.*
6564 F:      drivers/scsi/dmx3191d.c
6565 F:      drivers/scsi/dtc.*
6566 F:      drivers/scsi/g_NCR5380.*
6567 F:      drivers/scsi/g_NCR5380_mmio.c
6568 F:      drivers/scsi/mac_scsi.*
6569 F:      drivers/scsi/pas16.*
6570 F:      drivers/scsi/sun3_scsi.*
6571 F:      drivers/scsi/sun3_scsi_vme.c
6572 F:      drivers/scsi/t128.*
6573
6574 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
6575 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6576 L:      linux-scsi@vger.kernel.org
6577 S:      Maintained
6578 F:      drivers/scsi/NCR_D700.*
6579
6580 NCT6775 HARDWARE MONITOR DRIVER
6581 M:      Guenter Roeck <linux@roeck-us.net>
6582 L:      lm-sensors@lm-sensors.org
6583 S:      Maintained
6584 F:      Documentation/hwmon/nct6775
6585 F:      drivers/hwmon/nct6775.c
6586
6587 NETEFFECT IWARP RNIC DRIVER (IW_NES)
6588 M:      Faisal Latif <faisal.latif@intel.com>
6589 L:      linux-rdma@vger.kernel.org
6590 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
6591 S:      Supported
6592 F:      drivers/infiniband/hw/nes/
6593
6594 NETEM NETWORK EMULATOR
6595 M:      Stephen Hemminger <stephen@networkplumber.org>
6596 L:      netem@lists.linux-foundation.org
6597 S:      Maintained
6598 F:      net/sched/sch_netem.c
6599
6600 NETERION 10GbE DRIVERS (s2io/vxge)
6601 M:      Jon Mason <jdmason@kudzu.us>
6602 L:      netdev@vger.kernel.org
6603 S:      Supported
6604 F:      Documentation/networking/s2io.txt
6605 F:      Documentation/networking/vxge.txt
6606 F:      drivers/net/ethernet/neterion/
6607
6608 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
6609 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6610 M:      Patrick McHardy <kaber@trash.net>
6611 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
6612 L:      netfilter-devel@vger.kernel.org
6613 L:      coreteam@netfilter.org
6614 W:      http://www.netfilter.org/
6615 W:      http://www.iptables.org/
6616 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
6617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
6618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
6619 S:      Supported
6620 F:      include/linux/netfilter*
6621 F:      include/linux/netfilter/
6622 F:      include/net/netfilter/
6623 F:      include/uapi/linux/netfilter*
6624 F:      include/uapi/linux/netfilter/
6625 F:      net/*/netfilter.c
6626 F:      net/*/netfilter/
6627 F:      net/netfilter/
6628
6629 NETLABEL
6630 M:      Paul Moore <paul@paul-moore.com>
6631 W:      http://netlabel.sf.net
6632 L:      netdev@vger.kernel.org
6633 S:      Maintained
6634 F:      Documentation/netlabel/
6635 F:      include/net/netlabel.h
6636 F:      net/netlabel/
6637
6638 NETROM NETWORK LAYER
6639 M:      Ralf Baechle <ralf@linux-mips.org>
6640 L:      linux-hams@vger.kernel.org
6641 W:      http://www.linux-ax25.org/
6642 S:      Maintained
6643 F:      include/net/netrom.h
6644 F:      include/uapi/linux/netrom.h
6645 F:      net/netrom/
6646
6647 NETWORK BLOCK DEVICE (NBD)
6648 M:      Markus Pargmann <mpa@pengutronix.de>
6649 S:      Maintained
6650 L:      nbd-general@lists.sourceforge.net
6651 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
6652 F:      Documentation/blockdev/nbd.txt
6653 F:      drivers/block/nbd.c
6654 F:      include/linux/nbd.h
6655 F:      include/uapi/linux/nbd.h
6656
6657 NETWORK DROP MONITOR
6658 M:      Neil Horman <nhorman@tuxdriver.com>
6659 L:      netdev@vger.kernel.org
6660 S:      Maintained
6661 W:      https://fedorahosted.org/dropwatch/
6662 F:      net/core/drop_monitor.c
6663
6664 NETWORKING [GENERAL]
6665 M:      "David S. Miller" <davem@davemloft.net>
6666 L:      netdev@vger.kernel.org
6667 W:      http://www.linuxfoundation.org/en/Net
6668 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6671 S:      Maintained
6672 F:      net/
6673 F:      include/net/
6674 F:      include/linux/in.h
6675 F:      include/linux/net.h
6676 F:      include/linux/netdevice.h
6677 F:      include/uapi/linux/in.h
6678 F:      include/uapi/linux/net.h
6679 F:      include/uapi/linux/netdevice.h
6680 F:      include/uapi/linux/net_namespace.h
6681 F:      tools/net/
6682 F:      tools/testing/selftests/net/
6683 F:      lib/random32.c
6684 F:      lib/test_bpf.c
6685
6686 NETWORKING [IPv4/IPv6]
6687 M:      "David S. Miller" <davem@davemloft.net>
6688 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
6689 M:      James Morris <jmorris@namei.org>
6690 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
6691 M:      Patrick McHardy <kaber@trash.net>
6692 L:      netdev@vger.kernel.org
6693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6694 S:      Maintained
6695 F:      net/ipv4/
6696 F:      net/ipv6/
6697 F:      include/net/ip*
6698 F:      arch/x86/net/*
6699
6700 NETWORKING [IPSEC]
6701 M:      Steffen Klassert <steffen.klassert@secunet.com>
6702 M:      Herbert Xu <herbert@gondor.apana.org.au>
6703 M:      "David S. Miller" <davem@davemloft.net>
6704 L:      netdev@vger.kernel.org
6705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
6706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
6707 S:      Maintained
6708 F:      net/core/flow.c
6709 F:      net/xfrm/
6710 F:      net/key/
6711 F:      net/ipv4/xfrm*
6712 F:      net/ipv4/esp4.c
6713 F:      net/ipv4/ah4.c
6714 F:      net/ipv4/ipcomp.c
6715 F:      net/ipv4/ip_vti.c
6716 F:      net/ipv6/xfrm*
6717 F:      net/ipv6/esp6.c
6718 F:      net/ipv6/ah6.c
6719 F:      net/ipv6/ipcomp6.c
6720 F:      net/ipv6/ip6_vti.c
6721 F:      include/uapi/linux/xfrm.h
6722 F:      include/net/xfrm.h
6723
6724 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
6725 M:      Paul Moore <paul@paul-moore.com>
6726 L:      netdev@vger.kernel.org
6727 S:      Maintained
6728
6729 NETWORKING [WIRELESS]
6730 L:      linux-wireless@vger.kernel.org
6731 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
6732
6733 NETWORKING DRIVERS
6734 L:      netdev@vger.kernel.org
6735 W:      http://www.linuxfoundation.org/en/Net
6736 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6739 S:      Odd Fixes
6740 F:      drivers/net/
6741 F:      include/linux/if_*
6742 F:      include/linux/netdevice.h
6743 F:      include/linux/arcdevice.h
6744 F:      include/linux/etherdevice.h
6745 F:      include/linux/fcdevice.h
6746 F:      include/linux/fddidevice.h
6747 F:      include/linux/hippidevice.h
6748 F:      include/linux/inetdevice.h
6749 F:      include/uapi/linux/if_*
6750 F:      include/uapi/linux/netdevice.h
6751
6752 NETWORKING DRIVERS (WIRELESS)
6753 M:      Kalle Valo <kvalo@codeaurora.org>
6754 L:      linux-wireless@vger.kernel.org
6755 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
6756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
6757 S:      Maintained
6758 F:      drivers/net/wireless/
6759
6760 NETXEN (1/10) GbE SUPPORT
6761 M:      Manish Chopra <manish.chopra@qlogic.com>
6762 M:      Sony Chacko <sony.chacko@qlogic.com>
6763 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
6764 L:      netdev@vger.kernel.org
6765 W:      http://www.qlogic.com
6766 S:      Supported
6767 F:      drivers/net/ethernet/qlogic/netxen/
6768
6769 NFC SUBSYSTEM
6770 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6771 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
6772 M:      Samuel Ortiz <sameo@linux.intel.com>
6773 L:      linux-wireless@vger.kernel.org
6774 L:      linux-nfc@lists.01.org (subscribers-only)
6775 S:      Supported
6776 F:      net/nfc/
6777 F:      include/net/nfc/
6778 F:      include/uapi/linux/nfc.h
6779 F:      drivers/nfc/
6780 F:      include/linux/platform_data/pn544.h
6781 F:      Documentation/devicetree/bindings/net/nfc/
6782
6783 NFS, SUNRPC, AND LOCKD CLIENTS
6784 M:      Trond Myklebust <trond.myklebust@primarydata.com>
6785 M:      Anna Schumaker <anna.schumaker@netapp.com>
6786 L:      linux-nfs@vger.kernel.org
6787 W:      http://client.linux-nfs.org
6788 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
6789 S:      Maintained
6790 F:      fs/lockd/
6791 F:      fs/nfs/
6792 F:      fs/nfs_common/
6793 F:      net/sunrpc/
6794 F:      include/linux/lockd/
6795 F:      include/linux/nfs*
6796 F:      include/linux/sunrpc/
6797 F:      include/uapi/linux/nfs*
6798 F:      include/uapi/linux/sunrpc/
6799
6800 NILFS2 FILESYSTEM
6801 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
6802 L:      linux-nilfs@vger.kernel.org
6803 W:      http://nilfs.sourceforge.net/
6804 T:      git git://github.com/konis/nilfs2.git
6805 S:      Supported
6806 F:      Documentation/filesystems/nilfs2.txt
6807 F:      fs/nilfs2/
6808 F:      include/linux/nilfs2_fs.h
6809
6810 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
6811 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6812 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6813 S:      Maintained
6814 F:      Documentation/scsi/NinjaSCSI.txt
6815 F:      drivers/scsi/pcmcia/nsp_*
6816
6817 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
6818 M:      GOTO Masanori <gotom@debian.or.jp>
6819 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6820 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6821 S:      Maintained
6822 F:      Documentation/scsi/NinjaSCSI.txt
6823 F:      drivers/scsi/nsp32*
6824
6825 NIOS2 ARCHITECTURE
6826 M:      Ley Foon Tan <lftan@altera.com>
6827 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
6828 T:      git git://git.rocketboards.org/linux-socfpga.git
6829 S:      Maintained
6830 F:      arch/nios2/
6831
6832 NTB DRIVER
6833 M:      Jon Mason <jdmason@kudzu.us>
6834 M:      Dave Jiang <dave.jiang@intel.com>
6835 S:      Supported
6836 W:      https://github.com/jonmason/ntb/wiki
6837 T:      git git://github.com/jonmason/ntb.git
6838 F:      drivers/ntb/
6839 F:      drivers/net/ntb_netdev.c
6840 F:      include/linux/ntb.h
6841
6842 NTFS FILESYSTEM
6843 M:      Anton Altaparmakov <anton@tuxera.com>
6844 L:      linux-ntfs-dev@lists.sourceforge.net
6845 W:      http://www.tuxera.com/
6846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
6847 S:      Supported
6848 F:      Documentation/filesystems/ntfs.txt
6849 F:      fs/ntfs/
6850
6851 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
6852 M:      Antonino Daplas <adaplas@gmail.com>
6853 L:      linux-fbdev@vger.kernel.org
6854 S:      Maintained
6855 F:      drivers/video/fbdev/riva/
6856 F:      drivers/video/fbdev/nvidia/
6857
6858 NVM EXPRESS DRIVER
6859 M:      Matthew Wilcox <willy@linux.intel.com>
6860 L:      linux-nvme@lists.infradead.org
6861 T:      git git://git.infradead.org/users/willy/linux-nvme.git
6862 S:      Supported
6863 F:      drivers/block/nvme*
6864 F:      include/linux/nvme.h
6865
6866 NXP TDA998X DRM DRIVER
6867 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6868 S:      Supported
6869 F:      drivers/gpu/drm/i2c/tda998x_drv.c
6870 F:      include/drm/i2c/tda998x.h
6871
6872 NXP TFA9879 DRIVER
6873 M:      Peter Rosin <peda@axentia.se>
6874 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6875 S:      Maintained
6876 F:      sound/soc/codecs/tfa9879*
6877
6878 OMAP SUPPORT
6879 M:      Tony Lindgren <tony@atomide.com>
6880 L:      linux-omap@vger.kernel.org
6881 W:      http://www.muru.com/linux/omap/
6882 W:      http://linux.omap.com/
6883 Q:      http://patchwork.kernel.org/project/linux-omap/list/
6884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
6885 S:      Maintained
6886 F:      arch/arm/*omap*/
6887 F:      drivers/i2c/busses/i2c-omap.c
6888 F:      drivers/irqchip/irq-omap-intc.c
6889 F:      drivers/mfd/*omap*.c
6890 F:      drivers/mfd/menelaus.c
6891 F:      drivers/mfd/palmas.c
6892 F:      drivers/mfd/tps65217.c
6893 F:      drivers/mfd/tps65218.c
6894 F:      drivers/mfd/tps65910.c
6895 F:      drivers/mfd/twl-core.[ch]
6896 F:      drivers/mfd/twl4030*.c
6897 F:      drivers/mfd/twl6030*.c
6898 F:      drivers/mfd/twl6040*.c
6899 F:      drivers/regulator/palmas-regulator*.c
6900 F:      drivers/regulator/pbias-regulator.c
6901 F:      drivers/regulator/tps65217-regulator.c
6902 F:      drivers/regulator/tps65218-regulator.c
6903 F:      drivers/regulator/tps65910-regulator.c
6904 F:      drivers/regulator/twl-regulator.c
6905 F:      include/linux/i2c-omap.h
6906
6907 OMAP DEVICE TREE SUPPORT
6908 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
6909 M:      Tony Lindgren <tony@atomide.com>
6910 L:      linux-omap@vger.kernel.org
6911 L:      devicetree@vger.kernel.org
6912 S:      Maintained
6913 F:      arch/arm/boot/dts/*omap*
6914 F:      arch/arm/boot/dts/*am3*
6915 F:      arch/arm/boot/dts/*am4*
6916 F:      arch/arm/boot/dts/*am5*
6917 F:      arch/arm/boot/dts/*dra7*
6918
6919 OMAP CLOCK FRAMEWORK SUPPORT
6920 M:      Paul Walmsley <paul@pwsan.com>
6921 L:      linux-omap@vger.kernel.org
6922 S:      Maintained
6923 F:      arch/arm/*omap*/*clock*
6924
6925 OMAP POWER MANAGEMENT SUPPORT
6926 M:      Kevin Hilman <khilman@deeprootsystems.com>
6927 L:      linux-omap@vger.kernel.org
6928 S:      Maintained
6929 F:      arch/arm/*omap*/*pm*
6930 F:      drivers/cpufreq/omap-cpufreq.c
6931
6932 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
6933 M:      Rajendra Nayak <rnayak@ti.com>
6934 M:      Paul Walmsley <paul@pwsan.com>
6935 L:      linux-omap@vger.kernel.org
6936 S:      Maintained
6937 F:      arch/arm/mach-omap2/prm*
6938
6939 OMAP AUDIO SUPPORT
6940 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
6941 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
6942 L:      alsa-devel@alsa-project.org (subscribers-only)
6943 L:      linux-omap@vger.kernel.org
6944 S:      Maintained
6945 F:      sound/soc/omap/
6946
6947 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
6948 M:      Roger Quadros <rogerq@ti.com>
6949 M:      Tony Lindgren <tony@atomide.com>
6950 L:      linux-omap@vger.kernel.org
6951 S:      Maintained
6952 F:      drivers/memory/omap-gpmc.c
6953 F:      arch/arm/mach-omap2/*gpmc*
6954
6955 OMAP FRAMEBUFFER SUPPORT
6956 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
6957 L:      linux-fbdev@vger.kernel.org
6958 L:      linux-omap@vger.kernel.org
6959 S:      Maintained
6960 F:      drivers/video/fbdev/omap/
6961
6962 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
6963 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
6964 L:      linux-omap@vger.kernel.org
6965 L:      linux-fbdev@vger.kernel.org
6966 S:      Maintained
6967 F:      drivers/video/fbdev/omap2/
6968 F:      Documentation/arm/OMAP/DSS
6969
6970 OMAP HARDWARE SPINLOCK SUPPORT
6971 M:      Ohad Ben-Cohen <ohad@wizery.com>
6972 L:      linux-omap@vger.kernel.org
6973 S:      Maintained
6974 F:      drivers/hwspinlock/omap_hwspinlock.c
6975 F:      arch/arm/mach-omap2/hwspinlock.c
6976
6977 OMAP MMC SUPPORT
6978 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
6979 L:      linux-omap@vger.kernel.org
6980 S:      Maintained
6981 F:      drivers/mmc/host/omap.c
6982
6983 OMAP HS MMC SUPPORT
6984 L:      linux-mmc@vger.kernel.org
6985 L:      linux-omap@vger.kernel.org
6986 S:      Orphan
6987 F:      drivers/mmc/host/omap_hsmmc.c
6988
6989 OMAP RANDOM NUMBER GENERATOR SUPPORT
6990 M:      Deepak Saxena <dsaxena@plexity.net>
6991 S:      Maintained
6992 F:      drivers/char/hw_random/omap-rng.c
6993
6994 OMAP HWMOD SUPPORT
6995 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
6996 M:      Paul Walmsley <paul@pwsan.com>
6997 L:      linux-omap@vger.kernel.org
6998 S:      Maintained
6999 F:      arch/arm/mach-omap2/omap_hwmod.*
7000
7001 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7002 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7003 L:      linux-omap@vger.kernel.org
7004 S:      Maintained
7005 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7006
7007 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7008 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7009 L:      linux-media@vger.kernel.org
7010 S:      Maintained
7011 F:      drivers/media/platform/omap3isp/
7012 F:      drivers/staging/media/omap4iss/
7013
7014 OMAP USB SUPPORT
7015 M:      Felipe Balbi <balbi@ti.com>
7016 L:      linux-usb@vger.kernel.org
7017 L:      linux-omap@vger.kernel.org
7018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7019 S:      Maintained
7020 F:      drivers/usb/*/*omap*
7021 F:      arch/arm/*omap*/usb*
7022
7023 OMAP GPIO DRIVER
7024 M:      Javier Martinez Canillas <javier@dowhile0.org>
7025 M:      Santosh Shilimkar <ssantosh@kernel.org>
7026 M:      Kevin Hilman <khilman@deeprootsystems.com>
7027 L:      linux-omap@vger.kernel.org
7028 S:      Maintained
7029 F:      drivers/gpio/gpio-omap.c
7030
7031 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7032 M:      Mark Jackson <mpfj@newflow.co.uk>
7033 L:      linux-omap@vger.kernel.org
7034 S:      Maintained
7035 F:      arch/arm/boot/dts/am335x-nano.dts
7036
7037 OMFS FILESYSTEM
7038 M:      Bob Copeland <me@bobcopeland.com>
7039 L:      linux-karma-devel@lists.sourceforge.net
7040 S:      Maintained
7041 F:      Documentation/filesystems/omfs.txt
7042 F:      fs/omfs/
7043
7044 OMNIKEY CARDMAN 4000 DRIVER
7045 M:      Harald Welte <laforge@gnumonks.org>
7046 S:      Maintained
7047 F:      drivers/char/pcmcia/cm4000_cs.c
7048 F:      include/linux/cm4000_cs.h
7049 F:      include/uapi/linux/cm4000_cs.h
7050
7051 OMNIKEY CARDMAN 4040 DRIVER
7052 M:      Harald Welte <laforge@gnumonks.org>
7053 S:      Maintained
7054 F:      drivers/char/pcmcia/cm4040_cs.*
7055
7056 OMNIVISION OV7670 SENSOR DRIVER
7057 M:      Jonathan Corbet <corbet@lwn.net>
7058 L:      linux-media@vger.kernel.org
7059 T:      git git://linuxtv.org/media_tree.git
7060 S:      Maintained
7061 F:      drivers/media/i2c/ov7670.c
7062
7063 ONENAND FLASH DRIVER
7064 M:      Kyungmin Park <kyungmin.park@samsung.com>
7065 L:      linux-mtd@lists.infradead.org
7066 S:      Maintained
7067 F:      drivers/mtd/onenand/
7068 F:      include/linux/mtd/onenand*.h
7069
7070 ONSTREAM SCSI TAPE DRIVER
7071 M:      Willem Riede <osst@riede.org>
7072 L:      osst-users@lists.sourceforge.net
7073 L:      linux-scsi@vger.kernel.org
7074 S:      Maintained
7075 F:      Documentation/scsi/osst.txt
7076 F:      drivers/scsi/osst.*
7077 F:      drivers/scsi/osst_*.h
7078 F:      drivers/scsi/st.h
7079
7080 OPENCORES I2C BUS DRIVER
7081 M:      Peter Korsgaard <jacmet@sunsite.dk>
7082 L:      linux-i2c@vger.kernel.org
7083 S:      Maintained
7084 F:      Documentation/i2c/busses/i2c-ocores
7085 F:      drivers/i2c/busses/i2c-ocores.c
7086
7087 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7088 M:      Grant Likely <grant.likely@linaro.org>
7089 M:      Rob Herring <robh+dt@kernel.org>
7090 L:      devicetree@vger.kernel.org
7091 W:      http://www.devicetree.org/
7092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7093 S:      Maintained
7094 F:      drivers/of/
7095 F:      include/linux/of*.h
7096 F:      scripts/dtc/
7097
7098 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7099 M:      Rob Herring <robh+dt@kernel.org>
7100 M:      Pawel Moll <pawel.moll@arm.com>
7101 M:      Mark Rutland <mark.rutland@arm.com>
7102 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7103 M:      Kumar Gala <galak@codeaurora.org>
7104 L:      devicetree@vger.kernel.org
7105 S:      Maintained
7106 F:      Documentation/devicetree/
7107 F:      arch/*/boot/dts/
7108 F:      include/dt-bindings/
7109
7110 OPENRISC ARCHITECTURE
7111 M:      Jonas Bonn <jonas@southpole.se>
7112 W:      http://openrisc.net
7113 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7114 S:      Maintained
7115 T:      git git://openrisc.net/~jonas/linux
7116 F:      arch/openrisc/
7117
7118 OPENVSWITCH
7119 M:      Pravin Shelar <pshelar@nicira.com>
7120 L:      netdev@vger.kernel.org
7121 L:      dev@openvswitch.org
7122 W:      http://openvswitch.org
7123 S:      Maintained
7124 F:      net/openvswitch/
7125 F:      include/uapi/linux/openvswitch.h
7126
7127 OPL4 DRIVER
7128 M:      Clemens Ladisch <clemens@ladisch.de>
7129 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7130 T:      git git://git.alsa-project.org/alsa-kernel.git
7131 S:      Maintained
7132 F:      sound/drivers/opl4/
7133
7134 OPROFILE
7135 M:      Robert Richter <rric@kernel.org>
7136 L:      oprofile-list@lists.sf.net
7137 S:      Maintained
7138 F:      arch/*/include/asm/oprofile*.h
7139 F:      arch/*/oprofile/
7140 F:      drivers/oprofile/
7141 F:      include/linux/oprofile.h
7142
7143 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7144 M:      Mark Fasheh <mfasheh@suse.com>
7145 M:      Joel Becker <jlbec@evilplan.org>
7146 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7147 W:      http://oss.oracle.com/projects/ocfs2/
7148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
7149 S:      Supported
7150 F:      Documentation/filesystems/ocfs2.txt
7151 F:      Documentation/filesystems/dlmfs.txt
7152 F:      fs/ocfs2/
7153
7154 ORINOCO DRIVER
7155 L:      linux-wireless@vger.kernel.org
7156 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7157 W:      http://www.nongnu.org/orinoco/
7158 S:      Orphan
7159 F:      drivers/net/wireless/orinoco/
7160
7161 OSD LIBRARY and FILESYSTEM
7162 M:      Boaz Harrosh <ooo@electrozaur.com>
7163 M:      Benny Halevy <bhalevy@primarydata.com>
7164 L:      osd-dev@open-osd.org
7165 W:      http://open-osd.org
7166 T:      git git://git.open-osd.org/open-osd.git
7167 S:      Maintained
7168 F:      drivers/scsi/osd/
7169 F:      include/scsi/osd_*
7170 F:      fs/exofs/
7171
7172 OVERLAY FILESYSTEM
7173 M:      Miklos Szeredi <miklos@szeredi.hu>
7174 L:      linux-unionfs@vger.kernel.org
7175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7176 S:      Supported
7177 F:      fs/overlayfs/
7178 F:      Documentation/filesystems/overlayfs.txt
7179
7180 P54 WIRELESS DRIVER
7181 M:      Christian Lamparter <chunkeey@googlemail.com>
7182 L:      linux-wireless@vger.kernel.org
7183 W:      http://wireless.kernel.org/en/users/Drivers/p54
7184 S:      Maintained
7185 F:      drivers/net/wireless/p54/
7186
7187 PA SEMI ETHERNET DRIVER
7188 M:      Olof Johansson <olof@lixom.net>
7189 L:      netdev@vger.kernel.org
7190 S:      Maintained
7191 F:      drivers/net/ethernet/pasemi/*
7192
7193 PA SEMI SMBUS DRIVER
7194 M:      Olof Johansson <olof@lixom.net>
7195 L:      linux-i2c@vger.kernel.org
7196 S:      Maintained
7197 F:      drivers/i2c/busses/i2c-pasemi.c
7198
7199 PADATA PARALLEL EXECUTION MECHANISM
7200 M:      Steffen Klassert <steffen.klassert@secunet.com>
7201 L:      linux-crypto@vger.kernel.org
7202 S:      Maintained
7203 F:      kernel/padata.c
7204 F:      include/linux/padata.h
7205 F:      Documentation/padata.txt
7206
7207 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7208 M:      Harald Welte <laforge@gnumonks.org>
7209 L:      platform-driver-x86@vger.kernel.org
7210 S:      Maintained
7211 F:      drivers/platform/x86/panasonic-laptop.c
7212
7213 PANASONIC MN10300/AM33/AM34 PORT
7214 M:      David Howells <dhowells@redhat.com>
7215 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7216 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7217 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7218 S:      Maintained
7219 F:      Documentation/mn10300/
7220 F:      arch/mn10300/
7221
7222 PARALLEL PORT SUPPORT
7223 L:      linux-parport@lists.infradead.org (subscribers-only)
7224 S:      Orphan
7225 F:      drivers/parport/
7226 F:      include/linux/parport*.h
7227 F:      drivers/char/ppdev.c
7228 F:      include/uapi/linux/ppdev.h
7229
7230 PARAVIRT_OPS INTERFACE
7231 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7232 M:      Chris Wright <chrisw@sous-sol.org>
7233 M:      Alok Kataria <akataria@vmware.com>
7234 M:      Rusty Russell <rusty@rustcorp.com.au>
7235 L:      virtualization@lists.linux-foundation.org
7236 S:      Supported
7237 F:      Documentation/ia64/paravirt_ops.txt
7238 F:      arch/*/kernel/paravirt*
7239 F:      arch/*/include/asm/paravirt.h
7240
7241 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7242 M:      Tim Waugh <tim@cyberelk.net>
7243 L:      linux-parport@lists.infradead.org (subscribers-only)
7244 W:      http://www.torque.net/linux-pp.html
7245 S:      Maintained
7246 F:      Documentation/blockdev/paride.txt
7247 F:      drivers/block/paride/
7248
7249 PARISC ARCHITECTURE
7250 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7251 M:      Helge Deller <deller@gmx.de>
7252 L:      linux-parisc@vger.kernel.org
7253 W:      http://www.parisc-linux.org/
7254 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7257 S:      Maintained
7258 F:      arch/parisc/
7259 F:      Documentation/parisc/
7260 F:      drivers/parisc/
7261 F:      drivers/char/agp/parisc-agp.c
7262 F:      drivers/input/serio/gscps2.c
7263 F:      drivers/parport/parport_gsc.*
7264 F:      drivers/tty/serial/8250/8250_gsc.c
7265 F:      drivers/video/fbdev/sti*
7266 F:      drivers/video/console/sti*
7267 F:      drivers/video/logo/logo_parisc*
7268
7269 PC87360 HARDWARE MONITORING DRIVER
7270 M:      Jim Cromie <jim.cromie@gmail.com>
7271 L:      lm-sensors@lm-sensors.org
7272 S:      Maintained
7273 F:      Documentation/hwmon/pc87360
7274 F:      drivers/hwmon/pc87360.c
7275
7276 PC8736x GPIO DRIVER
7277 M:      Jim Cromie <jim.cromie@gmail.com>
7278 S:      Maintained
7279 F:      drivers/char/pc8736x_gpio.c
7280
7281 PC87427 HARDWARE MONITORING DRIVER
7282 M:      Jean Delvare <jdelvare@suse.de>
7283 L:      lm-sensors@lm-sensors.org
7284 S:      Maintained
7285 F:      Documentation/hwmon/pc87427
7286 F:      drivers/hwmon/pc87427.c
7287
7288 PCA9532 LED DRIVER
7289 M:      Riku Voipio <riku.voipio@iki.fi>
7290 S:      Maintained
7291 F:      drivers/leds/leds-pca9532.c
7292 F:      include/linux/leds-pca9532.h
7293
7294 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7295 M:      Guenter Roeck <linux@roeck-us.net>
7296 L:      linux-i2c@vger.kernel.org
7297 S:      Maintained
7298 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7299
7300 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7301 M:      Khalid Aziz <khalid@gonehiking.org>
7302 S:      Maintained
7303 F:      drivers/firmware/pcdp.*
7304
7305 PCI ERROR RECOVERY
7306 M:      Linas Vepstas <linasvepstas@gmail.com>
7307 L:      linux-pci@vger.kernel.org
7308 S:      Supported
7309 F:      Documentation/PCI/pci-error-recovery.txt
7310
7311 PCI SUBSYSTEM
7312 M:      Bjorn Helgaas <bhelgaas@google.com>
7313 L:      linux-pci@vger.kernel.org
7314 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7316 S:      Supported
7317 F:      Documentation/PCI/
7318 F:      drivers/pci/
7319 F:      include/linux/pci*
7320 F:      arch/x86/pci/
7321 F:      arch/x86/kernel/quirks.c
7322
7323 PCI DRIVER FOR ARM VERSATILE PLATFORM
7324 M:      Rob Herring <robh@kernel.org>
7325 L:      linux-pci@vger.kernel.org
7326 L:      linux-arm-kernel@lists.infradead.org
7327 S:      Maintained
7328 F:      Documentation/devicetree/bindings/pci/versatile.txt
7329 F:      drivers/pci/host/pci-versatile.c
7330
7331 PCI DRIVER FOR APPLIEDMICRO XGENE
7332 M:      Tanmay Inamdar <tinamdar@apm.com>
7333 L:      linux-pci@vger.kernel.org
7334 L:      linux-arm-kernel@lists.infradead.org
7335 S:      Maintained
7336 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7337 F:      drivers/pci/host/pci-xgene.c
7338
7339 PCI DRIVER FOR FREESCALE LAYERSCAPE
7340 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7341 M:      Mingkai Hu <mingkai.hu@freescale.com>
7342 M:      Roy Zang <tie-fei.zang@freescale.com>
7343 L:      linuxppc-dev@lists.ozlabs.org
7344 L:      linux-pci@vger.kernel.org
7345 L:      linux-arm-kernel@lists.infradead.org
7346 S:      Maintained
7347 F:      drivers/pci/host/*layerscape*
7348
7349 PCI DRIVER FOR IMX6
7350 M:      Richard Zhu <Richard.Zhu@freescale.com>
7351 M:      Lucas Stach <l.stach@pengutronix.de>
7352 L:      linux-pci@vger.kernel.org
7353 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7354 S:      Maintained
7355 F:      drivers/pci/host/*imx6*
7356
7357 PCI DRIVER FOR TI KEYSTONE
7358 M:      Murali Karicheri <m-karicheri2@ti.com>
7359 L:      linux-pci@vger.kernel.org
7360 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7361 S:      Maintained
7362 F:      drivers/pci/host/*keystone*
7363
7364 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7365 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7366 M:      Jason Cooper <jason@lakedaemon.net>
7367 L:      linux-pci@vger.kernel.org
7368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7369 S:      Maintained
7370 F:      drivers/pci/host/*mvebu*
7371
7372 PCI DRIVER FOR NVIDIA TEGRA
7373 M:      Thierry Reding <thierry.reding@gmail.com>
7374 L:      linux-tegra@vger.kernel.org
7375 L:      linux-pci@vger.kernel.org
7376 S:      Supported
7377 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
7378 F:      drivers/pci/host/pci-tegra.c
7379
7380 PCI DRIVER FOR TI DRA7XX
7381 M:      Kishon Vijay Abraham I <kishon@ti.com>
7382 L:      linux-omap@vger.kernel.org
7383 L:      linux-pci@vger.kernel.org
7384 S:      Supported
7385 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
7386 F:      drivers/pci/host/pci-dra7xx.c
7387
7388 PCI DRIVER FOR RENESAS R-CAR
7389 M:      Simon Horman <horms@verge.net.au>
7390 L:      linux-pci@vger.kernel.org
7391 L:      linux-sh@vger.kernel.org
7392 S:      Maintained
7393 F:      drivers/pci/host/*rcar*
7394
7395 PCI DRIVER FOR SAMSUNG EXYNOS
7396 M:      Jingoo Han <jg1.han@samsung.com>
7397 L:      linux-pci@vger.kernel.org
7398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7399 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7400 S:      Maintained
7401 F:      drivers/pci/host/pci-exynos.c
7402
7403 PCI DRIVER FOR SYNOPSIS DESIGNWARE
7404 M:      Mohit Kumar <mohit.kumar@st.com>
7405 M:      Jingoo Han <jg1.han@samsung.com>
7406 L:      linux-pci@vger.kernel.org
7407 S:      Maintained
7408 F:      drivers/pci/host/*designware*
7409
7410 PCI DRIVER FOR GENERIC OF HOSTS
7411 M:      Will Deacon <will.deacon@arm.com>
7412 L:      linux-pci@vger.kernel.org
7413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7414 S:      Maintained
7415 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
7416 F:      drivers/pci/host/pci-host-generic.c
7417
7418 PCIE DRIVER FOR ST SPEAR13XX
7419 M:      Mohit Kumar <mohit.kumar@st.com>
7420 L:      linux-pci@vger.kernel.org
7421 S:      Maintained
7422 F:      drivers/pci/host/*spear*
7423
7424 PCMCIA SUBSYSTEM
7425 P:      Linux PCMCIA Team
7426 L:      linux-pcmcia@lists.infradead.org
7427 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
7428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
7429 S:      Maintained
7430 F:      Documentation/pcmcia/
7431 F:      drivers/pcmcia/
7432 F:      include/pcmcia/
7433
7434 PCNET32 NETWORK DRIVER
7435 M:      Don Fry <pcnet32@frontier.com>
7436 L:      netdev@vger.kernel.org
7437 S:      Maintained
7438 F:      drivers/net/ethernet/amd/pcnet32.c
7439
7440 PCRYPT PARALLEL CRYPTO ENGINE
7441 M:      Steffen Klassert <steffen.klassert@secunet.com>
7442 L:      linux-crypto@vger.kernel.org
7443 S:      Maintained
7444 F:      crypto/pcrypt.c
7445 F:      include/crypto/pcrypt.h
7446
7447 PER-CPU MEMORY ALLOCATOR
7448 M:      Tejun Heo <tj@kernel.org>
7449 M:      Christoph Lameter <cl@linux-foundation.org>
7450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
7451 S:      Maintained
7452 F:      include/linux/percpu*.h
7453 F:      mm/percpu*.c
7454 F:      arch/*/include/asm/percpu.h
7455
7456 PER-TASK DELAY ACCOUNTING
7457 M:      Balbir Singh <bsingharora@gmail.com>
7458 S:      Maintained
7459 F:      include/linux/delayacct.h
7460 F:      kernel/delayacct.c
7461
7462 PERFORMANCE EVENTS SUBSYSTEM
7463 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
7464 M:      Paul Mackerras <paulus@samba.org>
7465 M:      Ingo Molnar <mingo@redhat.com>
7466 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
7467 L:      linux-kernel@vger.kernel.org
7468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
7469 S:      Supported
7470 F:      kernel/events/*
7471 F:      include/linux/perf_event.h
7472 F:      include/uapi/linux/perf_event.h
7473 F:      arch/*/kernel/perf_event*.c
7474 F:      arch/*/kernel/*/perf_event*.c
7475 F:      arch/*/kernel/*/*/perf_event*.c
7476 F:      arch/*/include/asm/perf_event.h
7477 F:      arch/*/kernel/perf_callchain.c
7478 F:      tools/perf/
7479
7480 PERSONALITY HANDLING
7481 M:      Christoph Hellwig <hch@infradead.org>
7482 L:      linux-abi-devel@lists.sourceforge.net
7483 S:      Maintained
7484 F:      include/linux/personality.h
7485 F:      include/uapi/linux/personality.h
7486
7487 PHONET PROTOCOL
7488 M:      Remi Denis-Courmont <courmisch@gmail.com>
7489 S:      Supported
7490 F:      Documentation/networking/phonet.txt
7491 F:      include/linux/phonet.h
7492 F:      include/net/phonet/
7493 F:      include/uapi/linux/phonet.h
7494 F:      net/phonet/
7495
7496 PHRAM MTD DRIVER
7497 M:      Joern Engel <joern@lazybastard.org>
7498 L:      linux-mtd@lists.infradead.org
7499 S:      Maintained
7500 F:      drivers/mtd/devices/phram.c
7501
7502 PICOLCD HID DRIVER
7503 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
7504 L:      linux-input@vger.kernel.org
7505 S:      Maintained
7506 F:      drivers/hid/hid-picolcd*
7507
7508 PICOXCELL SUPPORT
7509 M:      Jamie Iles <jamie@jamieiles.com>
7510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7511 T:      git git://github.com/jamieiles/linux-2.6-ji.git
7512 S:      Supported
7513 F:      arch/arm/boot/dts/picoxcell*
7514 F:      arch/arm/mach-picoxcell/
7515 F:      drivers/crypto/picoxcell*
7516
7517 PIN CONTROL SUBSYSTEM
7518 M:      Linus Walleij <linus.walleij@linaro.org>
7519 L:      linux-gpio@vger.kernel.org
7520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
7521 S:      Maintained
7522 F:      drivers/pinctrl/
7523 F:      include/linux/pinctrl/
7524
7525 PIN CONTROLLER - ATMEL AT91
7526 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
7527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7528 S:      Maintained
7529 F:      drivers/pinctrl/pinctrl-at91.*
7530
7531 PIN CONTROLLER - INTEL
7532 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7533 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
7534 S:      Maintained
7535 F:      drivers/pinctrl/intel/
7536
7537 PIN CONTROLLER - RENESAS
7538 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7539 L:      linux-sh@vger.kernel.org
7540 S:      Maintained
7541 F:      drivers/pinctrl/sh-pfc/
7542
7543 PIN CONTROLLER - SAMSUNG
7544 M:      Tomasz Figa <tomasz.figa@gmail.com>
7545 M:      Thomas Abraham <thomas.abraham@linaro.org>
7546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7547 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7548 S:      Maintained
7549 F:      drivers/pinctrl/samsung/
7550
7551 PIN CONTROLLER - ST SPEAR
7552 M:      Viresh Kumar <viresh.linux@gmail.com>
7553 L:      spear-devel@list.st.com
7554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7555 W:      http://www.st.com/spear
7556 S:      Maintained
7557 F:      drivers/pinctrl/spear/
7558
7559 PKTCDVD DRIVER
7560 M:      Jiri Kosina <jkosina@suse.cz>
7561 S:      Maintained
7562 F:      drivers/block/pktcdvd.c
7563 F:      include/linux/pktcdvd.h
7564 F:      include/uapi/linux/pktcdvd.h
7565
7566 PKUNITY SOC DRIVERS
7567 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
7568 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
7569 S:      Maintained
7570 T:      git git://github.com/gxt/linux.git
7571 F:      drivers/input/serio/i8042-unicore32io.h
7572 F:      drivers/i2c/busses/i2c-puv3.c
7573 F:      drivers/video/fbdev/fb-puv3.c
7574 F:      drivers/rtc/rtc-puv3.c
7575
7576 PMBUS HARDWARE MONITORING DRIVERS
7577 M:      Guenter Roeck <linux@roeck-us.net>
7578 L:      lm-sensors@lm-sensors.org
7579 W:      http://www.lm-sensors.org/
7580 W:      http://www.roeck-us.net/linux/drivers/
7581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7582 S:      Maintained
7583 F:      Documentation/hwmon/pmbus
7584 F:      drivers/hwmon/pmbus/
7585 F:      include/linux/i2c/pmbus.h
7586
7587 PMC SIERRA MaxRAID DRIVER
7588 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
7589 L:      linux-scsi@vger.kernel.org
7590 W:      http://www.pmc-sierra.com/
7591 S:      Supported
7592 F:      drivers/scsi/pmcraid.*
7593
7594 PMC SIERRA PM8001 DRIVER
7595 M:      xjtuwjp@gmail.com
7596 M:      lindar_liu@usish.com
7597 L:      pmchba@pmcs.com
7598 L:      linux-scsi@vger.kernel.org
7599 S:      Supported
7600 F:      drivers/scsi/pm8001/
7601
7602 POSIX CLOCKS and TIMERS
7603 M:      Thomas Gleixner <tglx@linutronix.de>
7604 L:      linux-kernel@vger.kernel.org
7605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7606 S:      Maintained
7607 F:      fs/timerfd.c
7608 F:      include/linux/timer*
7609 F:      kernel/time/*timer*
7610
7611 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
7612 M:      Sebastian Reichel <sre@kernel.org>
7613 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
7614 M:      David Woodhouse <dwmw2@infradead.org>
7615 L:      linux-pm@vger.kernel.org
7616 T:      git git://git.infradead.org/battery-2.6.git
7617 S:      Maintained
7618 F:      include/linux/power_supply.h
7619 F:      drivers/power/
7620
7621 PNP SUPPORT
7622 M:      Rafael J. Wysocki <rafael.j.wysocki@intel.com>
7623 S:      Maintained
7624 F:      drivers/pnp/
7625
7626 PNXxxxx I2C DRIVER
7627 M:      Vitaly Wool <vitalywool@gmail.com>
7628 L:      linux-i2c@vger.kernel.org
7629 S:      Maintained
7630 F:      drivers/i2c/busses/i2c-pnx.c
7631
7632 PPP PROTOCOL DRIVERS AND COMPRESSORS
7633 M:      Paul Mackerras <paulus@samba.org>
7634 L:      linux-ppp@vger.kernel.org
7635 S:      Maintained
7636 F:      drivers/net/ppp/ppp_*
7637
7638 PPP OVER ATM (RFC 2364)
7639 M:      Mitchell Blank Jr <mitch@sfgoth.com>
7640 S:      Maintained
7641 F:      net/atm/pppoatm.c
7642 F:      include/uapi/linux/atmppp.h
7643
7644 PPP OVER ETHERNET
7645 M:      Michal Ostrowski <mostrows@earthlink.net>
7646 S:      Maintained
7647 F:      drivers/net/ppp/pppoe.c
7648 F:      drivers/net/ppp/pppox.c
7649
7650 PPP OVER L2TP
7651 M:      James Chapman <jchapman@katalix.com>
7652 S:      Maintained
7653 F:      net/l2tp/l2tp_ppp.c
7654 F:      include/linux/if_pppol2tp.h
7655 F:      include/uapi/linux/if_pppol2tp.h
7656
7657 PPS SUPPORT
7658 M:      Rodolfo Giometti <giometti@enneenne.com>
7659 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
7660 L:      linuxpps@ml.enneenne.com (subscribers-only)
7661 S:      Maintained
7662 F:      Documentation/pps/
7663 F:      drivers/pps/
7664 F:      include/linux/pps*.h
7665
7666 PPTP DRIVER
7667 M:      Dmitry Kozlov <xeb@mail.ru>
7668 L:      netdev@vger.kernel.org
7669 S:      Maintained
7670 F:      drivers/net/ppp/pptp.c
7671 W:      http://sourceforge.net/projects/accel-pptp
7672
7673 PREEMPTIBLE KERNEL
7674 M:      Robert Love <rml@tech9.net>
7675 L:      kpreempt-tech@lists.sourceforge.net
7676 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
7677 S:      Supported
7678 F:      Documentation/preempt-locking.txt
7679 F:      include/linux/preempt.h
7680
7681 PRISM54 WIRELESS DRIVER
7682 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
7683 L:      linux-wireless@vger.kernel.org
7684 W:      http://wireless.kernel.org/en/users/Drivers/p54
7685 S:      Obsolete
7686 F:      drivers/net/wireless/prism54/
7687
7688 PS3 NETWORK SUPPORT
7689 M:      Geoff Levand <geoff@infradead.org>
7690 L:      netdev@vger.kernel.org
7691 L:      cbe-oss-dev@lists.ozlabs.org
7692 S:      Maintained
7693 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
7694
7695 PS3 PLATFORM SUPPORT
7696 M:      Geoff Levand <geoff@infradead.org>
7697 L:      linuxppc-dev@lists.ozlabs.org
7698 L:      cbe-oss-dev@lists.ozlabs.org
7699 S:      Maintained
7700 F:      arch/powerpc/boot/ps3*
7701 F:      arch/powerpc/include/asm/lv1call.h
7702 F:      arch/powerpc/include/asm/ps3*.h
7703 F:      arch/powerpc/platforms/ps3/
7704 F:      drivers/*/ps3*
7705 F:      drivers/ps3/
7706 F:      drivers/rtc/rtc-ps3.c
7707 F:      drivers/usb/host/*ps3.c
7708 F:      sound/ppc/snd_ps3*
7709
7710 PS3VRAM DRIVER
7711 M:      Jim Paris <jim@jtan.com>
7712 L:      cbe-oss-dev@lists.ozlabs.org
7713 S:      Maintained
7714 F:      drivers/block/ps3vram.c
7715
7716 PSTORE FILESYSTEM
7717 M:      Anton Vorontsov <anton@enomsg.org>
7718 M:      Colin Cross <ccross@android.com>
7719 M:      Kees Cook <keescook@chromium.org>
7720 M:      Tony Luck <tony.luck@intel.com>
7721 S:      Maintained
7722 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
7723 F:      fs/pstore/
7724 F:      include/linux/pstore*
7725 F:      drivers/firmware/efi/efi-pstore.c
7726 F:      drivers/acpi/apei/erst.c
7727
7728 PTP HARDWARE CLOCK SUPPORT
7729 M:      Richard Cochran <richardcochran@gmail.com>
7730 L:      netdev@vger.kernel.org
7731 S:      Maintained
7732 W:      http://linuxptp.sourceforge.net/
7733 F:      Documentation/ABI/testing/sysfs-ptp
7734 F:      Documentation/ptp/*
7735 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
7736 F:      drivers/net/phy/dp83640*
7737 F:      drivers/ptp/*
7738 F:      include/linux/ptp_cl*
7739
7740 PTRACE SUPPORT
7741 M:      Roland McGrath <roland@hack.frob.com>
7742 M:      Oleg Nesterov <oleg@redhat.com>
7743 S:      Maintained
7744 F:      include/asm-generic/syscall.h
7745 F:      include/linux/ptrace.h
7746 F:      include/linux/regset.h
7747 F:      include/linux/tracehook.h
7748 F:      include/uapi/linux/ptrace.h
7749 F:      kernel/ptrace.c
7750
7751 PVRUSB2 VIDEO4LINUX DRIVER
7752 M:      Mike Isely <isely@pobox.com>
7753 L:      pvrusb2@isely.net       (subscribers-only)
7754 L:      linux-media@vger.kernel.org
7755 W:      http://www.isely.net/pvrusb2/
7756 T:      git git://linuxtv.org/media_tree.git
7757 S:      Maintained
7758 F:      Documentation/video4linux/README.pvrusb2
7759 F:      drivers/media/usb/pvrusb2/
7760
7761 PWC WEBCAM DRIVER
7762 M:      Hans de Goede <hdegoede@redhat.com>
7763 L:      linux-media@vger.kernel.org
7764 T:      git git://linuxtv.org/media_tree.git
7765 S:      Maintained
7766 F:      drivers/media/usb/pwc/*
7767
7768 PWM FAN DRIVER
7769 M:      Kamil Debski <k.debski@samsung.com>
7770 L:      lm-sensors@lm-sensors.org
7771 S:      Supported
7772 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
7773 F:      Documentation/hwmon/pwm-fan
7774 F:      drivers/hwmon/pwm-fan.c
7775
7776 PWM SUBSYSTEM
7777 M:      Thierry Reding <thierry.reding@gmail.com>
7778 L:      linux-pwm@vger.kernel.org
7779 S:      Maintained
7780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
7781 F:      Documentation/pwm.txt
7782 F:      Documentation/devicetree/bindings/pwm/
7783 F:      include/linux/pwm.h
7784 F:      drivers/pwm/
7785 F:      drivers/video/backlight/pwm_bl.c
7786 F:      include/linux/pwm_backlight.h
7787
7788 PXA2xx/PXA3xx SUPPORT
7789 M:      Daniel Mack <daniel@zonque.org>
7790 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7791 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7792 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7793 T:      git git://github.com/hzhuang1/linux.git
7794 T:      git git://github.com/rjarzmik/linux.git
7795 S:      Maintained
7796 F:      arch/arm/mach-pxa/
7797 F:      drivers/pcmcia/pxa2xx*
7798 F:      drivers/spi/spi-pxa2xx*
7799 F:      drivers/usb/gadget/udc/pxa2*
7800 F:      include/sound/pxa2xx-lib.h
7801 F:      sound/arm/pxa*
7802 F:      sound/soc/pxa/
7803
7804 PXA3xx NAND FLASH DRIVER
7805 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
7806 L:      linux-mtd@lists.infradead.org
7807 S:      Maintained
7808 F:      drivers/mtd/nand/pxa3xx_nand.c
7809
7810 MMP SUPPORT
7811 M:      Eric Miao <eric.y.miao@gmail.com>
7812 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7814 T:      git git://github.com/hzhuang1/linux.git
7815 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
7816 S:      Maintained
7817 F:      arch/arm/mach-mmp/
7818
7819 PXA MMCI DRIVER
7820 S:      Orphan
7821
7822 PXA RTC DRIVER
7823 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7824 L:      rtc-linux@googlegroups.com
7825 S:      Maintained
7826
7827 QAT DRIVER
7828 M:      Tadeusz Struk <tadeusz.struk@intel.com>
7829 L:      qat-linux@intel.com
7830 S:      Supported
7831 F:      drivers/crypto/qat/
7832
7833 QIB DRIVER
7834 M:      Mike Marciniszyn <infinipath@intel.com>
7835 L:      linux-rdma@vger.kernel.org
7836 S:      Supported
7837 F:      drivers/infiniband/hw/qib/
7838
7839 QLOGIC QLA1280 SCSI DRIVER
7840 M:      Michael Reed <mdr@sgi.com>
7841 L:      linux-scsi@vger.kernel.org
7842 S:      Maintained
7843 F:      drivers/scsi/qla1280.[ch]
7844
7845 QLOGIC QLA2XXX FC-SCSI DRIVER
7846 M:      qla2xxx-upstream@qlogic.com
7847 L:      linux-scsi@vger.kernel.org
7848 S:      Supported
7849 F:      Documentation/scsi/LICENSE.qla2xxx
7850 F:      drivers/scsi/qla2xxx/
7851
7852 QLOGIC QLA4XXX iSCSI DRIVER
7853 M:      QLogic-Storage-Upstream@qlogic.com
7854 L:      linux-scsi@vger.kernel.org
7855 S:      Supported
7856 F:      Documentation/scsi/LICENSE.qla4xxx
7857 F:      drivers/scsi/qla4xxx/
7858
7859 QLOGIC QLA3XXX NETWORK DRIVER
7860 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
7861 M:      Ron Mercer <ron.mercer@qlogic.com>
7862 M:      linux-driver@qlogic.com
7863 L:      netdev@vger.kernel.org
7864 S:      Supported
7865 F:      Documentation/networking/LICENSE.qla3xxx
7866 F:      drivers/net/ethernet/qlogic/qla3xxx.*
7867
7868 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
7869 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
7870 M:      Dept-GELinuxNICDev@qlogic.com
7871 L:      netdev@vger.kernel.org
7872 S:      Supported
7873 F:      drivers/net/ethernet/qlogic/qlcnic/
7874
7875 QLOGIC QLGE 10Gb ETHERNET DRIVER
7876 M:      Harish Patil <harish.patil@qlogic.com>
7877 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
7878 M:      Dept-GELinuxNICDev@qlogic.com
7879 M:      linux-driver@qlogic.com
7880 L:      netdev@vger.kernel.org
7881 S:      Supported
7882 F:      drivers/net/ethernet/qlogic/qlge/
7883
7884 QNX4 FILESYSTEM
7885 M:      Anders Larsen <al@alarsen.net>
7886 W:      http://www.alarsen.net/linux/qnx4fs/
7887 S:      Maintained
7888 F:      fs/qnx4/
7889 F:      include/uapi/linux/qnx4_fs.h
7890 F:      include/uapi/linux/qnxtypes.h
7891
7892 QT1010 MEDIA DRIVER
7893 M:      Antti Palosaari <crope@iki.fi>
7894 L:      linux-media@vger.kernel.org
7895 W:      http://linuxtv.org/
7896 W:      http://palosaari.fi/linux/
7897 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7898 T:      git git://linuxtv.org/anttip/media_tree.git
7899 S:      Maintained
7900 F:      drivers/media/tuners/qt1010*
7901
7902 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
7903 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
7904 L:      linux-wireless@vger.kernel.org
7905 L:      ath9k-devel@lists.ath9k.org
7906 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
7907 S:      Supported
7908 F:      drivers/net/wireless/ath/ath9k/
7909
7910 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
7911 M:      Kalle Valo <kvalo@qca.qualcomm.com>
7912 L:      ath10k@lists.infradead.org
7913 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
7914 T:      git git://github.com/kvalo/ath.git
7915 S:      Supported
7916 F:      drivers/net/wireless/ath/ath10k/
7917
7918 QUALCOMM HEXAGON ARCHITECTURE
7919 M:      Richard Kuo <rkuo@codeaurora.org>
7920 L:      linux-hexagon@vger.kernel.org
7921 S:      Supported
7922 F:      arch/hexagon/
7923
7924 QUALCOMM WCN36XX WIRELESS DRIVER
7925 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
7926 L:      wcn36xx@lists.infradead.org
7927 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
7928 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
7929 S:      Supported
7930 F:      drivers/net/wireless/ath/wcn36xx/
7931
7932 RADOS BLOCK DEVICE (RBD)
7933 M:      Yehuda Sadeh <yehuda@inktank.com>
7934 M:      Sage Weil <sage@inktank.com>
7935 M:      Alex Elder <elder@kernel.org>
7936 M:      ceph-devel@vger.kernel.org
7937 W:      http://ceph.com/
7938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
7939 S:      Supported
7940 F:      drivers/block/rbd.c
7941 F:      drivers/block/rbd_types.h
7942
7943 RADEON FRAMEBUFFER DISPLAY DRIVER
7944 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
7945 L:      linux-fbdev@vger.kernel.org
7946 S:      Maintained
7947 F:      drivers/video/fbdev/aty/radeon*
7948 F:      include/uapi/linux/radeonfb.h
7949
7950 RADIOSHARK RADIO DRIVER
7951 M:      Hans de Goede <hdegoede@redhat.com>
7952 L:      linux-media@vger.kernel.org
7953 T:      git git://linuxtv.org/media_tree.git
7954 S:      Maintained
7955 F:      drivers/media/radio/radio-shark.c
7956
7957 RADIOSHARK2 RADIO DRIVER
7958 M:      Hans de Goede <hdegoede@redhat.com>
7959 L:      linux-media@vger.kernel.org
7960 T:      git git://linuxtv.org/media_tree.git
7961 S:      Maintained
7962 F:      drivers/media/radio/radio-shark2.c
7963 F:      drivers/media/radio/radio-tea5777.c
7964
7965 RAGE128 FRAMEBUFFER DISPLAY DRIVER
7966 M:      Paul Mackerras <paulus@samba.org>
7967 L:      linux-fbdev@vger.kernel.org
7968 S:      Maintained
7969 F:      drivers/video/fbdev/aty/aty128fb.c
7970
7971 RALINK RT2X00 WIRELESS LAN DRIVER
7972 P:      rt2x00 project
7973 M:      Stanislaw Gruszka <sgruszka@redhat.com>
7974 M:      Helmut Schaa <helmut.schaa@googlemail.com>
7975 L:      linux-wireless@vger.kernel.org
7976 L:      users@rt2x00.serialmonkey.com (moderated for non-subscribers)
7977 W:      http://rt2x00.serialmonkey.com/
7978 S:      Maintained
7979 F:      drivers/net/wireless/rt2x00/
7980
7981 RAMDISK RAM BLOCK DEVICE DRIVER
7982 M:      Nick Piggin <npiggin@kernel.dk>
7983 S:      Maintained
7984 F:      Documentation/blockdev/ramdisk.txt
7985 F:      drivers/block/brd.c
7986
7987 RANDOM NUMBER DRIVER
7988 M:      "Theodore Ts'o" <tytso@mit.edu>
7989 S:      Maintained
7990 F:      drivers/char/random.c
7991
7992 RAPIDIO SUBSYSTEM
7993 M:      Matt Porter <mporter@kernel.crashing.org>
7994 M:      Alexandre Bounine <alexandre.bounine@idt.com>
7995 S:      Maintained
7996 F:      drivers/rapidio/
7997
7998 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
7999 L:      linux-wireless@vger.kernel.org
8000 S:      Orphan
8001 F:      drivers/net/wireless/ray*
8002
8003 RCUTORTURE MODULE
8004 M:      Josh Triplett <josh@joshtriplett.org>
8005 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8006 L:      linux-kernel@vger.kernel.org
8007 S:      Supported
8008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8009 F:      Documentation/RCU/torture.txt
8010 F:      kernel/rcu/rcutorture.c
8011
8012 RCUTORTURE TEST FRAMEWORK
8013 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8014 M:      Josh Triplett <josh@joshtriplett.org>
8015 R:      Steven Rostedt <rostedt@goodmis.org>
8016 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8017 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
8018 L:      linux-kernel@vger.kernel.org
8019 S:      Supported
8020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8021 F:      tools/testing/selftests/rcutorture
8022
8023 RDC R-321X SoC
8024 M:      Florian Fainelli <florian@openwrt.org>
8025 S:      Maintained
8026
8027 RDC R6040 FAST ETHERNET DRIVER
8028 M:      Florian Fainelli <florian@openwrt.org>
8029 L:      netdev@vger.kernel.org
8030 S:      Maintained
8031 F:      drivers/net/ethernet/rdc/r6040.c
8032
8033 RDS - RELIABLE DATAGRAM SOCKETS
8034 M:      Chien Yen <chien.yen@oracle.com>
8035 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8036 S:      Supported
8037 F:      net/rds/
8038
8039 READ-COPY UPDATE (RCU)
8040 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8041 M:      Josh Triplett <josh@joshtriplett.org>
8042 R:      Steven Rostedt <rostedt@goodmis.org>
8043 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8044 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
8045 L:      linux-kernel@vger.kernel.org
8046 W:      http://www.rdrop.com/users/paulmck/RCU/
8047 S:      Supported
8048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8049 F:      Documentation/RCU/
8050 X:      Documentation/RCU/torture.txt
8051 F:      include/linux/rcu*
8052 X:      include/linux/srcu.h
8053 F:      kernel/rcu/
8054 X:      kernel/torture.c
8055
8056 REAL TIME CLOCK (RTC) SUBSYSTEM
8057 M:      Alessandro Zummo <a.zummo@towertech.it>
8058 L:      rtc-linux@googlegroups.com
8059 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8060 S:      Maintained
8061 F:      Documentation/rtc.txt
8062 F:      drivers/rtc/
8063 F:      include/linux/rtc.h
8064 F:      include/uapi/linux/rtc.h
8065
8066 REALTEK AUDIO CODECS
8067 M:      Bard Liao <bardliao@realtek.com>
8068 M:      Oder Chiou <oder_chiou@realtek.com>
8069 S:      Maintained
8070 F:      sound/soc/codecs/rt*
8071 F:      include/sound/rt*.h
8072
8073 REISERFS FILE SYSTEM
8074 L:      reiserfs-devel@vger.kernel.org
8075 S:      Supported
8076 F:      fs/reiserfs/
8077
8078 REGISTER MAP ABSTRACTION
8079 M:      Mark Brown <broonie@kernel.org>
8080 L:      linux-kernel@vger.kernel.org
8081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8082 S:      Supported
8083 F:      drivers/base/regmap/
8084 F:      include/linux/regmap.h
8085
8086 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8087 M:      Ohad Ben-Cohen <ohad@wizery.com>
8088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8089 S:      Maintained
8090 F:      drivers/remoteproc/
8091 F:      Documentation/remoteproc.txt
8092 F:      include/linux/remoteproc.h
8093
8094 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8095 M:      Ohad Ben-Cohen <ohad@wizery.com>
8096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8097 S:      Maintained
8098 F:      drivers/rpmsg/
8099 F:      Documentation/rpmsg.txt
8100 F:      include/linux/rpmsg.h
8101
8102 RESET CONTROLLER FRAMEWORK
8103 M:      Philipp Zabel <p.zabel@pengutronix.de>
8104 S:      Maintained
8105 F:      drivers/reset/
8106 F:      Documentation/devicetree/bindings/reset/
8107 F:      include/linux/reset.h
8108 F:      include/linux/reset-controller.h
8109
8110 RFKILL
8111 M:      Johannes Berg <johannes@sipsolutions.net>
8112 L:      linux-wireless@vger.kernel.org
8113 W:      http://wireless.kernel.org/
8114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8116 S:      Maintained
8117 F:      Documentation/rfkill.txt
8118 F:      net/rfkill/
8119
8120 RHASHTABLE
8121 M:      Thomas Graf <tgraf@suug.ch>
8122 L:      netdev@vger.kernel.org
8123 S:      Maintained
8124 F:      lib/rhashtable.c
8125 F:      include/linux/rhashtable.h
8126
8127 RICOH SMARTMEDIA/XD DRIVER
8128 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8129 S:      Maintained
8130 F:      drivers/mtd/nand/r852.c
8131 F:      drivers/mtd/nand/r852.h
8132
8133 RICOH R5C592 MEMORYSTICK DRIVER
8134 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8135 S:      Maintained
8136 F:      drivers/memstick/host/r592.*
8137
8138 ROCCAT DRIVERS
8139 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8140 W:      http://sourceforge.net/projects/roccat/
8141 S:      Maintained
8142 F:      drivers/hid/hid-roccat*
8143 F:      include/linux/hid-roccat*
8144 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8145
8146 ROCKER DRIVER
8147 M:      Jiri Pirko <jiri@resnulli.us>
8148 M:      Scott Feldman <sfeldma@gmail.com>
8149 L:      netdev@vger.kernel.org
8150 S:      Supported
8151 F:      drivers/net/ethernet/rocker/
8152
8153 ROCKETPORT DRIVER
8154 P:      Comtrol Corp.
8155 W:      http://www.comtrol.com
8156 S:      Maintained
8157 F:      Documentation/serial/rocket.txt
8158 F:      drivers/tty/rocket*
8159
8160 ROCKETPORT EXPRESS/INFINITY DRIVER
8161 M:      Kevin Cernekee <cernekee@gmail.com>
8162 L:      linux-serial@vger.kernel.org
8163 S:      Odd Fixes
8164 F:      drivers/tty/serial/rp2.*
8165
8166 ROSE NETWORK LAYER
8167 M:      Ralf Baechle <ralf@linux-mips.org>
8168 L:      linux-hams@vger.kernel.org
8169 W:      http://www.linux-ax25.org/
8170 S:      Maintained
8171 F:      include/net/rose.h
8172 F:      include/uapi/linux/rose.h
8173 F:      net/rose/
8174
8175 RTL2830 MEDIA DRIVER
8176 M:      Antti Palosaari <crope@iki.fi>
8177 L:      linux-media@vger.kernel.org
8178 W:      http://linuxtv.org/
8179 W:      http://palosaari.fi/linux/
8180 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8181 T:      git git://linuxtv.org/anttip/media_tree.git
8182 S:      Maintained
8183 F:      drivers/media/dvb-frontends/rtl2830*
8184
8185 RTL2832 MEDIA DRIVER
8186 M:      Antti Palosaari <crope@iki.fi>
8187 L:      linux-media@vger.kernel.org
8188 W:      http://linuxtv.org/
8189 W:      http://palosaari.fi/linux/
8190 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8191 T:      git git://linuxtv.org/anttip/media_tree.git
8192 S:      Maintained
8193 F:      drivers/media/dvb-frontends/rtl2832*
8194
8195 RTL2832_SDR MEDIA DRIVER
8196 M:      Antti Palosaari <crope@iki.fi>
8197 L:      linux-media@vger.kernel.org
8198 W:      http://linuxtv.org/
8199 W:      http://palosaari.fi/linux/
8200 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8201 T:      git git://linuxtv.org/anttip/media_tree.git
8202 S:      Maintained
8203 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8204
8205 RTL8180 WIRELESS DRIVER
8206 L:      linux-wireless@vger.kernel.org
8207 W:      http://wireless.kernel.org/
8208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8209 S:      Orphan
8210 F:      drivers/net/wireless/rtl818x/rtl8180/
8211
8212 RTL8187 WIRELESS DRIVER
8213 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8214 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8215 M:      Larry Finger <Larry.Finger@lwfinger.net>
8216 L:      linux-wireless@vger.kernel.org
8217 W:      http://wireless.kernel.org/
8218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8219 S:      Maintained
8220 F:      drivers/net/wireless/rtl818x/rtl8187/
8221
8222 RTL8192CE WIRELESS DRIVER
8223 M:      Larry Finger <Larry.Finger@lwfinger.net>
8224 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8225 L:      linux-wireless@vger.kernel.org
8226 W:      http://wireless.kernel.org/
8227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8228 S:      Maintained
8229 F:      drivers/net/wireless/rtlwifi/
8230 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8231
8232 S3 SAVAGE FRAMEBUFFER DRIVER
8233 M:      Antonino Daplas <adaplas@gmail.com>
8234 L:      linux-fbdev@vger.kernel.org
8235 S:      Maintained
8236 F:      drivers/video/fbdev/savage/
8237
8238 S390
8239 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8240 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8241 M:      linux390@de.ibm.com
8242 L:      linux-s390@vger.kernel.org
8243 W:      http://www.ibm.com/developerworks/linux/linux390/
8244 S:      Supported
8245 F:      arch/s390/
8246 F:      drivers/s390/
8247 F:      Documentation/s390/
8248 F:      Documentation/DocBook/s390*
8249
8250 S390 COMMON I/O LAYER
8251 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8252 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8253 L:      linux-s390@vger.kernel.org
8254 W:      http://www.ibm.com/developerworks/linux/linux390/
8255 S:      Supported
8256 F:      drivers/s390/cio/
8257
8258 S390 DASD DRIVER
8259 M:      Stefan Weinhuber <wein@de.ibm.com>
8260 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8261 L:      linux-s390@vger.kernel.org
8262 W:      http://www.ibm.com/developerworks/linux/linux390/
8263 S:      Supported
8264 F:      drivers/s390/block/dasd*
8265 F:      block/partitions/ibm.c
8266
8267 S390 NETWORK DRIVERS
8268 M:      Ursula Braun <ursula.braun@de.ibm.com>
8269 M:      Frank Blaschka <blaschka@linux.vnet.ibm.com>
8270 M:      linux390@de.ibm.com
8271 L:      linux-s390@vger.kernel.org
8272 W:      http://www.ibm.com/developerworks/linux/linux390/
8273 S:      Supported
8274 F:      drivers/s390/net/
8275
8276 S390 PCI SUBSYSTEM
8277 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8278 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8279 L:      linux-s390@vger.kernel.org
8280 W:      http://www.ibm.com/developerworks/linux/linux390/
8281 S:      Supported
8282 F:      arch/s390/pci/
8283 F:      drivers/pci/hotplug/s390_pci_hpc.c
8284
8285 S390 ZCRYPT DRIVER
8286 M:      Ingo Tuchscherer <ingo.tuchscherer@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:      drivers/s390/crypto/
8292
8293 S390 ZFCP DRIVER
8294 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8295 M:      linux390@de.ibm.com
8296 L:      linux-s390@vger.kernel.org
8297 W:      http://www.ibm.com/developerworks/linux/linux390/
8298 S:      Supported
8299 F:      drivers/s390/scsi/zfcp_*
8300
8301 S390 IUCV NETWORK LAYER
8302 M:      Ursula Braun <ursula.braun@de.ibm.com>
8303 M:      linux390@de.ibm.com
8304 L:      linux-s390@vger.kernel.org
8305 W:      http://www.ibm.com/developerworks/linux/linux390/
8306 S:      Supported
8307 F:      drivers/s390/net/*iucv*
8308 F:      include/net/iucv/
8309 F:      net/iucv/
8310
8311 S3C24XX SD/MMC Driver
8312 M:      Ben Dooks <ben-linux@fluff.org>
8313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8314 S:      Supported
8315 F:      drivers/mmc/host/s3cmci.*
8316
8317 SAA6588 RDS RECEIVER DRIVER
8318 M:      Hans Verkuil <hverkuil@xs4all.nl>
8319 L:      linux-media@vger.kernel.org
8320 T:      git git://linuxtv.org/media_tree.git
8321 W:      http://linuxtv.org
8322 S:      Odd Fixes
8323 F:      drivers/media/i2c/saa6588*
8324
8325 SAA7134 VIDEO4LINUX DRIVER
8326 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8327 L:      linux-media@vger.kernel.org
8328 W:      http://linuxtv.org
8329 T:      git git://linuxtv.org/media_tree.git
8330 S:      Odd fixes
8331 F:      Documentation/video4linux/*.saa7134
8332 F:      drivers/media/pci/saa7134/
8333
8334 SAA7146 VIDEO4LINUX-2 DRIVER
8335 M:      Hans Verkuil <hverkuil@xs4all.nl>
8336 L:      linux-media@vger.kernel.org
8337 T:      git git://linuxtv.org/media_tree.git
8338 S:      Maintained
8339 F:      drivers/media/common/saa7146/
8340 F:      drivers/media/pci/saa7146/
8341 F:      include/media/saa7146*
8342
8343 SAMSUNG LAPTOP DRIVER
8344 M:      Corentin Chary <corentin.chary@gmail.com>
8345 L:      platform-driver-x86@vger.kernel.org
8346 S:      Maintained
8347 F:      drivers/platform/x86/samsung-laptop.c
8348
8349 SAMSUNG AUDIO (ASoC) DRIVERS
8350 M:      Sangbeom Kim <sbkim73@samsung.com>
8351 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8352 S:      Supported
8353 F:      sound/soc/samsung/
8354
8355 SAMSUNG FRAMEBUFFER DRIVER
8356 M:      Jingoo Han <jg1.han@samsung.com>
8357 L:      linux-fbdev@vger.kernel.org
8358 S:      Maintained
8359 F:      drivers/video/fbdev/s3c-fb.c
8360
8361 SAMSUNG MULTIFUNCTION DEVICE DRIVERS
8362 M:      Sangbeom Kim <sbkim73@samsung.com>
8363 L:      linux-kernel@vger.kernel.org
8364 S:      Supported
8365 F:      drivers/mfd/sec*.c
8366 F:      drivers/regulator/s2m*.c
8367 F:      drivers/regulator/s5m*.c
8368 F:      include/linux/mfd/samsung/
8369
8370 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
8371 M:      Kyungmin Park <kyungmin.park@samsung.com>
8372 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8373 L:      linux-media@vger.kernel.org
8374 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
8375 S:      Supported
8376 F:      drivers/media/platform/exynos4-is/
8377
8378 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
8379 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
8380 L:      linux-media@vger.kernel.org
8381 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8382 S:      Maintained
8383 F:      drivers/media/platform/s3c-camif/
8384 F:      include/media/s3c_camif.h
8385
8386 SAMSUNG S5C73M3 CAMERA DRIVER
8387 M:      Kyungmin Park <kyungmin.park@samsung.com>
8388 M:      Andrzej Hajda <a.hajda@samsung.com>
8389 L:      linux-media@vger.kernel.org
8390 S:      Supported
8391 F:      drivers/media/i2c/s5c73m3/*
8392
8393 SAMSUNG S5K5BAF CAMERA DRIVER
8394 M:      Kyungmin Park <kyungmin.park@samsung.com>
8395 M:      Andrzej Hajda <a.hajda@samsung.com>
8396 L:      linux-media@vger.kernel.org
8397 S:      Supported
8398 F:      drivers/media/i2c/s5k5baf.c
8399
8400 SAMSUNG SOC CLOCK DRIVERS
8401 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8402 M:      Tomasz Figa <tomasz.figa@gmail.com>
8403 S:      Supported
8404 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8405 F:      drivers/clk/samsung/
8406
8407 SAMSUNG SXGBE DRIVERS
8408 M:      Byungho An <bh74.an@samsung.com>
8409 M:      Girish K S <ks.giri@samsung.com>
8410 M:      Vipul Pandya <vipul.pandya@samsung.com>
8411 S:      Supported
8412 L:      netdev@vger.kernel.org
8413 F:      drivers/net/ethernet/samsung/sxgbe/
8414
8415 SAMSUNG USB2 PHY DRIVER
8416 M:      Kamil Debski <k.debski@samsung.com>
8417 L:      linux-kernel@vger.kernel.org
8418 S:      Supported
8419 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
8420 F:      Documentation/phy/samsung-usb2.txt
8421 F:      drivers/phy/phy-exynos4210-usb2.c
8422 F:      drivers/phy/phy-exynos4x12-usb2.c
8423 F:      drivers/phy/phy-exynos5250-usb2.c
8424 F:      drivers/phy/phy-s5pv210-usb2.c
8425 F:      drivers/phy/phy-samsung-usb2.c
8426 F:      drivers/phy/phy-samsung-usb2.h
8427
8428 SERIAL DRIVERS
8429 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8430 L:      linux-serial@vger.kernel.org
8431 S:      Maintained
8432 F:      drivers/tty/serial/
8433
8434 SYNOPSYS DESIGNWARE DMAC DRIVER
8435 M:      Viresh Kumar <viresh.linux@gmail.com>
8436 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8437 S:      Maintained
8438 F:      include/linux/platform_data/dma-dw.h
8439 F:      drivers/dma/dw/
8440
8441 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
8442 M:      Seungwon Jeon <tgih.jun@samsung.com>
8443 M:      Jaehoon Chung <jh80.chung@samsung.com>
8444 L:      linux-mmc@vger.kernel.org
8445 S:      Maintained
8446 F:      include/linux/mmc/dw_mmc.h
8447 F:      drivers/mmc/host/dw_mmc*
8448
8449 THUNDERBOLT DRIVER
8450 M:      Andreas Noever <andreas.noever@gmail.com>
8451 S:      Maintained
8452 F:      drivers/thunderbolt/
8453
8454 TIMEKEEPING, CLOCKSOURCE CORE, NTP
8455 M:      John Stultz <john.stultz@linaro.org>
8456 M:      Thomas Gleixner <tglx@linutronix.de>
8457 L:      linux-kernel@vger.kernel.org
8458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8459 S:      Supported
8460 F:      include/linux/clocksource.h
8461 F:      include/linux/time.h
8462 F:      include/linux/timex.h
8463 F:      include/uapi/linux/time.h
8464 F:      include/uapi/linux/timex.h
8465 F:      kernel/time/clocksource.c
8466 F:      kernel/time/time*.c
8467 F:      kernel/time/ntp.c
8468
8469 SC1200 WDT DRIVER
8470 M:      Zwane Mwaikambo <zwanem@gmail.com>
8471 S:      Maintained
8472 F:      drivers/watchdog/sc1200wdt.c
8473
8474 SCHEDULER
8475 M:      Ingo Molnar <mingo@redhat.com>
8476 M:      Peter Zijlstra <peterz@infradead.org>
8477 L:      linux-kernel@vger.kernel.org
8478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
8479 S:      Maintained
8480 F:      kernel/sched/
8481 F:      include/linux/sched.h
8482 F:      include/uapi/linux/sched.h
8483 F:      include/linux/wait.h
8484
8485 SCORE ARCHITECTURE
8486 M:      Chen Liqin <liqin.linux@gmail.com>
8487 M:      Lennox Wu <lennox.wu@gmail.com>
8488 W:      http://www.sunplus.com
8489 S:      Supported
8490 F:      arch/score/
8491
8492 SCSI CDROM DRIVER
8493 M:      Jens Axboe <axboe@kernel.dk>
8494 L:      linux-scsi@vger.kernel.org
8495 W:      http://www.kernel.dk
8496 S:      Maintained
8497 F:      drivers/scsi/sr*
8498
8499 SCSI RDMA PROTOCOL (SRP) INITIATOR
8500 M:      Bart Van Assche <bvanassche@acm.org>
8501 L:      linux-rdma@vger.kernel.org
8502 S:      Supported
8503 W:      http://www.openfabrics.org
8504 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
8506 F:      drivers/infiniband/ulp/srp/
8507 F:      include/scsi/srp.h
8508
8509 SCSI SG DRIVER
8510 M:      Doug Gilbert <dgilbert@interlog.com>
8511 L:      linux-scsi@vger.kernel.org
8512 W:      http://sg.danny.cz/sg
8513 S:      Maintained
8514 F:      Documentation/scsi/scsi-generic.txt
8515 F:      drivers/scsi/sg.c
8516 F:      include/scsi/sg.h
8517
8518 SCSI SUBSYSTEM
8519 M:      "James E.J. Bottomley" <JBottomley@parallels.com>
8520 L:      linux-scsi@vger.kernel.org
8521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
8522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
8523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
8524 S:      Maintained
8525 F:      drivers/scsi/
8526 F:      include/scsi/
8527
8528 SCSI TAPE DRIVER
8529 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
8530 L:      linux-scsi@vger.kernel.org
8531 S:      Maintained
8532 F:      Documentation/scsi/st.txt
8533 F:      drivers/scsi/st.*
8534 F:      drivers/scsi/st_*.h
8535
8536 SCTP PROTOCOL
8537 M:      Vlad Yasevich <vyasevich@gmail.com>
8538 M:      Neil Horman <nhorman@tuxdriver.com>
8539 L:      linux-sctp@vger.kernel.org
8540 W:      http://lksctp.sourceforge.net
8541 S:      Maintained
8542 F:      Documentation/networking/sctp.txt
8543 F:      include/linux/sctp.h
8544 F:      include/uapi/linux/sctp.h
8545 F:      include/net/sctp/
8546 F:      net/sctp/
8547
8548 SCx200 CPU SUPPORT
8549 M:      Jim Cromie <jim.cromie@gmail.com>
8550 S:      Odd Fixes
8551 F:      Documentation/i2c/busses/scx200_acb
8552 F:      arch/x86/platform/scx200/
8553 F:      drivers/watchdog/scx200_wdt.c
8554 F:      drivers/i2c/busses/scx200*
8555 F:      drivers/mtd/maps/scx200_docflash.c
8556 F:      include/linux/scx200.h
8557
8558 SCx200 GPIO DRIVER
8559 M:      Jim Cromie <jim.cromie@gmail.com>
8560 S:      Maintained
8561 F:      drivers/char/scx200_gpio.c
8562 F:      include/linux/scx200_gpio.h
8563
8564 SCx200 HRT CLOCKSOURCE DRIVER
8565 M:      Jim Cromie <jim.cromie@gmail.com>
8566 S:      Maintained
8567 F:      drivers/clocksource/scx200_hrt.c
8568
8569 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
8570 M:      Sascha Sommer <saschasommer@freenet.de>
8571 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
8572 S:      Maintained
8573 F:      drivers/mmc/host/sdricoh_cs.c
8574
8575 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
8576 M:      Chris Ball <chris@printf.net>
8577 L:      linux-mmc@vger.kernel.org
8578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
8579 S:      Maintained
8580 F:      drivers/mmc/host/sdhci.*
8581 F:      drivers/mmc/host/sdhci-pltfm.[ch]
8582
8583 SECURE COMPUTING
8584 M:      Kees Cook <keescook@chromium.org>
8585 R:      Andy Lutomirski <luto@amacapital.net>
8586 R:      Will Drewry <wad@chromium.org>
8587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
8588 S:      Supported
8589 F:      kernel/seccomp.c
8590 F:      include/uapi/linux/seccomp.h
8591 F:      include/linux/seccomp.h
8592 K:      \bsecure_computing
8593 K:      \bTIF_SECCOMP\b
8594
8595 SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
8596 M:      Anton Vorontsov <anton@enomsg.org>
8597 L:      linuxppc-dev@lists.ozlabs.org
8598 L:      linux-mmc@vger.kernel.org
8599 S:      Maintained
8600 F:      drivers/mmc/host/sdhci-pltfm.[ch]
8601
8602 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
8603 M:      Ben Dooks <ben-linux@fluff.org>
8604 L:      linux-mmc@vger.kernel.org
8605 S:      Maintained
8606 F:      drivers/mmc/host/sdhci-s3c.c
8607
8608 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
8609 M:      Viresh Kumar <viresh.linux@gmail.com>
8610 L:      spear-devel@list.st.com
8611 L:      linux-mmc@vger.kernel.org
8612 S:      Maintained
8613 F:      drivers/mmc/host/sdhci-spear.c
8614
8615 SECURITY SUBSYSTEM
8616 M:      James Morris <james.l.morris@oracle.com>
8617 M:      Serge E. Hallyn <serge@hallyn.com>
8618 L:      linux-security-module@vger.kernel.org (suggested Cc:)
8619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
8620 W:      http://kernsec.org/
8621 S:      Supported
8622 F:      security/
8623
8624 SECURITY CONTACT
8625 M:      Security Officers <security@kernel.org>
8626 S:      Supported
8627
8628 SELINUX SECURITY MODULE
8629 M:      Paul Moore <paul@paul-moore.com>
8630 M:      Stephen Smalley <sds@tycho.nsa.gov>
8631 M:      Eric Paris <eparis@parisplace.org>
8632 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
8633 W:      http://selinuxproject.org
8634 T:      git git://git.infradead.org/users/pcmoore/selinux
8635 S:      Supported
8636 F:      include/linux/selinux*
8637 F:      security/selinux/
8638 F:      scripts/selinux/
8639
8640 APPARMOR SECURITY MODULE
8641 M:      John Johansen <john.johansen@canonical.com>
8642 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
8643 W:      apparmor.wiki.kernel.org
8644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
8645 S:      Supported
8646 F:      security/apparmor/
8647
8648 SENSABLE PHANTOM
8649 M:      Jiri Slaby <jirislaby@gmail.com>
8650 S:      Maintained
8651 F:      drivers/misc/phantom.c
8652 F:      include/uapi/linux/phantom.h
8653
8654 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
8655 M:      Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
8656 L:      linux-scsi@vger.kernel.org
8657 W:      http://www.emulex.com
8658 S:      Supported
8659 F:      drivers/scsi/be2iscsi/
8660
8661 SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
8662 M:      Sathya Perla <sathya.perla@emulex.com>
8663 M:      Subbu Seetharaman <subbu.seetharaman@emulex.com>
8664 M:      Ajit Khaparde <ajit.khaparde@emulex.com>
8665 L:      netdev@vger.kernel.org
8666 W:      http://www.emulex.com
8667 S:      Supported
8668 F:      drivers/net/ethernet/emulex/benet/
8669
8670 SFC NETWORK DRIVER
8671 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
8672 M:      Shradha Shah <sshah@solarflare.com>
8673 L:      netdev@vger.kernel.org
8674 S:      Supported
8675 F:      drivers/net/ethernet/sfc/
8676
8677 SGI GRU DRIVER
8678 M:      Dimitri Sivanich <sivanich@sgi.com>
8679 S:      Maintained
8680 F:      drivers/misc/sgi-gru/
8681
8682 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
8683 M:      Pat Gefre <pfg@sgi.com>
8684 L:      linux-ia64@vger.kernel.org
8685 S:      Supported
8686 F:      Documentation/ia64/serial.txt
8687 F:      drivers/tty/serial/ioc?_serial.c
8688 F:      include/linux/ioc?.h
8689
8690 SGI XP/XPC/XPNET DRIVER
8691 M:      Cliff Whickman <cpw@sgi.com>
8692 M:      Robin Holt <robinmholt@gmail.com>
8693 S:      Maintained
8694 F:      drivers/misc/sgi-xp/
8695
8696 SI2157 MEDIA DRIVER
8697 M:      Antti Palosaari <crope@iki.fi>
8698 L:      linux-media@vger.kernel.org
8699 W:      http://linuxtv.org/
8700 W:      http://palosaari.fi/linux/
8701 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8702 T:      git git://linuxtv.org/anttip/media_tree.git
8703 S:      Maintained
8704 F:      drivers/media/tuners/si2157*
8705
8706 SI2168 MEDIA DRIVER
8707 M:      Antti Palosaari <crope@iki.fi>
8708 L:      linux-media@vger.kernel.org
8709 W:      http://linuxtv.org/
8710 W:      http://palosaari.fi/linux/
8711 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8712 T:      git git://linuxtv.org/anttip/media_tree.git
8713 S:      Maintained
8714 F:      drivers/media/dvb-frontends/si2168*
8715
8716 SI470X FM RADIO RECEIVER I2C DRIVER
8717 M:      Hans Verkuil <hverkuil@xs4all.nl>
8718 L:      linux-media@vger.kernel.org
8719 T:      git git://linuxtv.org/media_tree.git
8720 W:      http://linuxtv.org
8721 S:      Odd Fixes
8722 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
8723
8724 SI470X FM RADIO RECEIVER USB DRIVER
8725 M:      Hans Verkuil <hverkuil@xs4all.nl>
8726 L:      linux-media@vger.kernel.org
8727 T:      git git://linuxtv.org/media_tree.git
8728 W:      http://linuxtv.org
8729 S:      Maintained
8730 F:      drivers/media/radio/si470x/radio-si470x-common.c
8731 F:      drivers/media/radio/si470x/radio-si470x.h
8732 F:      drivers/media/radio/si470x/radio-si470x-usb.c
8733
8734 SI4713 FM RADIO TRANSMITTER I2C DRIVER
8735 M:      Eduardo Valentin <edubezval@gmail.com>
8736 L:      linux-media@vger.kernel.org
8737 T:      git git://linuxtv.org/media_tree.git
8738 W:      http://linuxtv.org
8739 S:      Odd Fixes
8740 F:      drivers/media/radio/si4713/si4713.?
8741
8742 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
8743 M:      Eduardo Valentin <edubezval@gmail.com>
8744 L:      linux-media@vger.kernel.org
8745 T:      git git://linuxtv.org/media_tree.git
8746 W:      http://linuxtv.org
8747 S:      Odd Fixes
8748 F:      drivers/media/radio/si4713/radio-platform-si4713.c
8749
8750 SI4713 FM RADIO TRANSMITTER USB DRIVER
8751 M:      Hans Verkuil <hverkuil@xs4all.nl>
8752 L:      linux-media@vger.kernel.org
8753 T:      git git://linuxtv.org/media_tree.git
8754 W:      http://linuxtv.org
8755 S:      Maintained
8756 F:      drivers/media/radio/si4713/radio-usb-si4713.c
8757
8758 SIANO DVB DRIVER
8759 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8760 L:      linux-media@vger.kernel.org
8761 W:      http://linuxtv.org
8762 T:      git git://linuxtv.org/media_tree.git
8763 S:      Odd fixes
8764 F:      drivers/media/common/siano/
8765 F:      drivers/media/usb/siano/
8766 F:      drivers/media/usb/siano/
8767 F:      drivers/media/mmc/siano/
8768
8769 SIMPLEFB FB DRIVER
8770 M:      Hans de Goede <hdegoede@redhat.com>
8771 L:      linux-fbdev@vger.kernel.org
8772 S:      Maintained
8773 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
8774 F:      drivers/video/fbdev/simplefb.c
8775 F:      include/linux/platform_data/simplefb.h
8776
8777 SH_VEU V4L2 MEM2MEM DRIVER
8778 L:      linux-media@vger.kernel.org
8779 S:      Orphan
8780 F:      drivers/media/platform/sh_veu.c
8781
8782 SH_VOU V4L2 OUTPUT DRIVER
8783 L:      linux-media@vger.kernel.org
8784 S:      Orphan
8785 F:      drivers/media/platform/sh_vou.c
8786 F:      include/media/sh_vou.h
8787
8788 SIMPLE FIRMWARE INTERFACE (SFI)
8789 M:      Len Brown <lenb@kernel.org>
8790 L:      sfi-devel@simplefirmware.org
8791 W:      http://simplefirmware.org/
8792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
8793 S:      Supported
8794 F:      arch/x86/platform/sfi/
8795 F:      drivers/sfi/
8796 F:      include/linux/sfi*.h
8797
8798 SIMTEC EB110ATX (Chalice CATS)
8799 P:      Ben Dooks
8800 P:      Vincent Sanders <vince@simtec.co.uk>
8801 M:      Simtec Linux Team <linux@simtec.co.uk>
8802 W:      http://www.simtec.co.uk/products/EB110ATX/
8803 S:      Supported
8804
8805 SIMTEC EB2410ITX (BAST)
8806 P:      Ben Dooks
8807 P:      Vincent Sanders <vince@simtec.co.uk>
8808 M:      Simtec Linux Team <linux@simtec.co.uk>
8809 W:      http://www.simtec.co.uk/products/EB2410ITX/
8810 S:      Supported
8811 F:      arch/arm/mach-s3c24xx/mach-bast.c
8812 F:      arch/arm/mach-s3c24xx/bast-ide.c
8813 F:      arch/arm/mach-s3c24xx/bast-irq.c
8814
8815 TI DAVINCI MACHINE SUPPORT
8816 M:      Sekhar Nori <nsekhar@ti.com>
8817 M:      Kevin Hilman <khilman@deeprootsystems.com>
8818 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
8819 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
8820 S:      Supported
8821 F:      arch/arm/mach-davinci/
8822 F:      drivers/i2c/busses/i2c-davinci.c
8823
8824 TI DAVINCI SERIES MEDIA DRIVER
8825 M:      Lad, Prabhakar <prabhakar.csengg@gmail.com>
8826 L:      linux-media@vger.kernel.org
8827 W:      http://linuxtv.org/
8828 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8829 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
8830 S:      Maintained
8831 F:      drivers/media/platform/davinci/
8832 F:      include/media/davinci/
8833
8834 TI AM437X VPFE DRIVER
8835 M:      Lad, Prabhakar <prabhakar.csengg@gmail.com>
8836 L:      linux-media@vger.kernel.org
8837 W:      http://linuxtv.org/
8838 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8839 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
8840 S:      Maintained
8841 F:      drivers/media/platform/am437x/
8842
8843 SIS 190 ETHERNET DRIVER
8844 M:      Francois Romieu <romieu@fr.zoreil.com>
8845 L:      netdev@vger.kernel.org
8846 S:      Maintained
8847 F:      drivers/net/ethernet/sis/sis190.c
8848
8849 SIS 900/7016 FAST ETHERNET DRIVER
8850 M:      Daniele Venzano <venza@brownhat.org>
8851 W:      http://www.brownhat.org/sis900.html
8852 L:      netdev@vger.kernel.org
8853 S:      Maintained
8854 F:      drivers/net/ethernet/sis/sis900.*
8855
8856 SIS FRAMEBUFFER DRIVER
8857 M:      Thomas Winischhofer <thomas@winischhofer.net>
8858 W:      http://www.winischhofer.net/linuxsisvga.shtml
8859 S:      Maintained
8860 F:      Documentation/fb/sisfb.txt
8861 F:      drivers/video/fbdev/sis/
8862 F:      include/video/sisfb.h
8863
8864 SIS USB2VGA DRIVER
8865 M:      Thomas Winischhofer <thomas@winischhofer.net>
8866 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
8867 S:      Maintained
8868 F:      drivers/usb/misc/sisusbvga/
8869
8870 SLAB ALLOCATOR
8871 M:      Christoph Lameter <cl@linux.com>
8872 M:      Pekka Enberg <penberg@kernel.org>
8873 M:      David Rientjes <rientjes@google.com>
8874 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
8875 M:      Andrew Morton <akpm@linux-foundation.org>
8876 L:      linux-mm@kvack.org
8877 S:      Maintained
8878 F:      include/linux/sl?b*.h
8879 F:      mm/sl?b*
8880
8881 SLEEPABLE READ-COPY UPDATE (SRCU)
8882 M:      Lai Jiangshan <laijs@cn.fujitsu.com>
8883 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8884 M:      Josh Triplett <josh@joshtriplett.org>
8885 R:      Steven Rostedt <rostedt@goodmis.org>
8886 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8887 L:      linux-kernel@vger.kernel.org
8888 W:      http://www.rdrop.com/users/paulmck/RCU/
8889 S:      Supported
8890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8891 F:      include/linux/srcu.h
8892 F:      kernel/rcu/srcu.c
8893
8894 SMACK SECURITY MODULE
8895 M:      Casey Schaufler <casey@schaufler-ca.com>
8896 L:      linux-security-module@vger.kernel.org
8897 W:      http://schaufler-ca.com
8898 T:      git git://git.gitorious.org/smack-next/kernel.git
8899 S:      Maintained
8900 F:      Documentation/security/Smack.txt
8901 F:      security/smack/
8902
8903 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
8904 M:      Kevin Hilman <khilman@kernel.org>
8905 M:      Nishanth Menon <nm@ti.com>
8906 S:      Maintained
8907 F:      drivers/power/avs/
8908 F:      include/linux/power/smartreflex.h
8909 L:      linux-pm@vger.kernel.org
8910
8911 SMC91x ETHERNET DRIVER
8912 M:      Nicolas Pitre <nico@fluxnic.net>
8913 S:      Odd Fixes
8914 F:      drivers/net/ethernet/smsc/smc91x.*
8915
8916 SMIA AND SMIA++ IMAGE SENSOR DRIVER
8917 M:      Sakari Ailus <sakari.ailus@iki.fi>
8918 L:      linux-media@vger.kernel.org
8919 S:      Maintained
8920 F:      drivers/media/i2c/smiapp/
8921 F:      include/media/smiapp.h
8922 F:      drivers/media/i2c/smiapp-pll.c
8923 F:      drivers/media/i2c/smiapp-pll.h
8924 F:      include/uapi/linux/smiapp.h
8925 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
8926
8927 SMM665 HARDWARE MONITOR DRIVER
8928 M:      Guenter Roeck <linux@roeck-us.net>
8929 L:      lm-sensors@lm-sensors.org
8930 S:      Maintained
8931 F:      Documentation/hwmon/smm665
8932 F:      drivers/hwmon/smm665.c
8933
8934 SMSC EMC2103 HARDWARE MONITOR DRIVER
8935 M:      Steve Glendinning <steve.glendinning@shawell.net>
8936 L:      lm-sensors@lm-sensors.org
8937 S:      Maintained
8938 F:      Documentation/hwmon/emc2103
8939 F:      drivers/hwmon/emc2103.c
8940
8941 SMSC SCH5627 HARDWARE MONITOR DRIVER
8942 M:      Hans de Goede <hdegoede@redhat.com>
8943 L:      lm-sensors@lm-sensors.org
8944 S:      Supported
8945 F:      Documentation/hwmon/sch5627
8946 F:      drivers/hwmon/sch5627.c
8947
8948 SMSC47B397 HARDWARE MONITOR DRIVER
8949 M:      Jean Delvare <jdelvare@suse.de>
8950 L:      lm-sensors@lm-sensors.org
8951 S:      Maintained
8952 F:      Documentation/hwmon/smsc47b397
8953 F:      drivers/hwmon/smsc47b397.c
8954
8955 SMSC911x ETHERNET DRIVER
8956 M:      Steve Glendinning <steve.glendinning@shawell.net>
8957 L:      netdev@vger.kernel.org
8958 S:      Maintained
8959 F:      include/linux/smsc911x.h
8960 F:      drivers/net/ethernet/smsc/smsc911x.*
8961
8962 SMSC9420 PCI ETHERNET DRIVER
8963 M:      Steve Glendinning <steve.glendinning@shawell.net>
8964 L:      netdev@vger.kernel.org
8965 S:      Maintained
8966 F:      drivers/net/ethernet/smsc/smsc9420.*
8967
8968 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
8969 M:      Steve Glendinning <steve.glendinning@shawell.net>
8970 L:      linux-fbdev@vger.kernel.org
8971 S:      Maintained
8972 F:      drivers/video/fbdev/smscufx.c
8973
8974 SOC-CAMERA V4L2 SUBSYSTEM
8975 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
8976 L:      linux-media@vger.kernel.org
8977 T:      git git://linuxtv.org/media_tree.git
8978 S:      Maintained
8979 F:      include/media/soc*
8980 F:      drivers/media/i2c/soc_camera/
8981 F:      drivers/media/platform/soc_camera/
8982
8983 SOEKRIS NET48XX LED SUPPORT
8984 M:      Chris Boot <bootc@bootc.net>
8985 S:      Maintained
8986 F:      drivers/leds/leds-net48xx.c
8987
8988 SOFTLOGIC 6x10 MPEG CODEC
8989 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
8990 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
8991 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
8992 M:      Ismael Luceno <ismael@iodev.co.uk>
8993 L:      linux-media@vger.kernel.org
8994 S:      Supported
8995 F:      drivers/media/pci/solo6x10/
8996
8997 SOFTWARE RAID (Multiple Disks) SUPPORT
8998 M:      Neil Brown <neilb@suse.de>
8999 L:      linux-raid@vger.kernel.org
9000 S:      Supported
9001 F:      drivers/md/
9002 F:      include/linux/raid/
9003 F:      include/uapi/linux/raid/
9004
9005 SONIC NETWORK DRIVER
9006 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9007 L:      netdev@vger.kernel.org
9008 S:      Maintained
9009 F:      drivers/net/ethernet/natsemi/sonic.*
9010
9011 SONICS SILICON BACKPLANE DRIVER (SSB)
9012 M:      Michael Buesch <m@bues.ch>
9013 L:      netdev@vger.kernel.org
9014 S:      Maintained
9015 F:      drivers/ssb/
9016 F:      include/linux/ssb/
9017
9018 SONY VAIO CONTROL DEVICE DRIVER
9019 M:      Mattia Dongili <malattia@linux.it>
9020 L:      platform-driver-x86@vger.kernel.org
9021 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9022 S:      Maintained
9023 F:      Documentation/laptops/sony-laptop.txt
9024 F:      drivers/char/sonypi.c
9025 F:      drivers/platform/x86/sony-laptop.c
9026 F:      include/linux/sony-laptop.h
9027
9028 SONY MEMORYSTICK CARD SUPPORT
9029 M:      Alex Dubov <oakad@yahoo.com>
9030 W:      http://tifmxx.berlios.de/
9031 S:      Maintained
9032 F:      drivers/memstick/host/tifm_ms.c
9033
9034 SONY MEMORYSTICK STANDARD SUPPORT
9035 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9036 S:      Maintained
9037 F:      drivers/memstick/core/ms_block.*
9038
9039 SOUND
9040 M:      Jaroslav Kysela <perex@perex.cz>
9041 M:      Takashi Iwai <tiwai@suse.de>
9042 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9043 W:      http://www.alsa-project.org/
9044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9045 T:      git git://git.alsa-project.org/alsa-kernel.git
9046 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9047 S:      Maintained
9048 F:      Documentation/sound/
9049 F:      include/sound/
9050 F:      include/uapi/sound/
9051 F:      sound/
9052
9053 SOUND - COMPRESSED AUDIO
9054 M:      Vinod Koul <vinod.koul@intel.com>
9055 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9057 S:      Supported
9058 F:      Documentation/sound/alsa/compress_offload.txt
9059 F:      include/sound/compress_driver.h
9060 F:      include/uapi/sound/compress_*
9061 F:      sound/core/compress_offload.c
9062 F:      sound/soc/soc-compress.c
9063
9064 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9065 M:      Liam Girdwood <lgirdwood@gmail.com>
9066 M:      Mark Brown <broonie@kernel.org>
9067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9068 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9069 W:      http://alsa-project.org/main/index.php/ASoC
9070 S:      Supported
9071 F:      Documentation/sound/alsa/soc/
9072 F:      sound/soc/
9073 F:      include/sound/soc*
9074
9075 SOUND - DMAENGINE HELPERS
9076 M:      Lars-Peter Clausen <lars@metafoo.de>
9077 S:      Supported
9078 F:      include/sound/dmaengine_pcm.h
9079 F:      sound/core/pcm_dmaengine.c
9080 F:      sound/soc/soc-generic-dmaengine-pcm.c
9081
9082 SP2 MEDIA DRIVER
9083 M:      Olli Salonen <olli.salonen@iki.fi>
9084 L:      linux-media@vger.kernel.org
9085 W:      http://linuxtv.org/
9086 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9087 S:      Maintained
9088 F:      drivers/media/dvb-frontends/sp2*
9089
9090 SPARC + UltraSPARC (sparc/sparc64)
9091 M:      "David S. Miller" <davem@davemloft.net>
9092 L:      sparclinux@vger.kernel.org
9093 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9096 S:      Maintained
9097 F:      arch/sparc/
9098 F:      drivers/sbus/
9099
9100 SPARC SERIAL DRIVERS
9101 M:      "David S. Miller" <davem@davemloft.net>
9102 L:      sparclinux@vger.kernel.org
9103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9105 S:      Maintained
9106 F:      include/linux/sunserialcore.h
9107 F:      drivers/tty/serial/suncore.c
9108 F:      drivers/tty/serial/sunhv.c
9109 F:      drivers/tty/serial/sunsab.c
9110 F:      drivers/tty/serial/sunsab.h
9111 F:      drivers/tty/serial/sunsu.c
9112 F:      drivers/tty/serial/sunzilog.c
9113 F:      drivers/tty/serial/sunzilog.h
9114
9115 SPARSE CHECKER
9116 M:      "Christopher Li" <sparse@chrisli.org>
9117 L:      linux-sparse@vger.kernel.org
9118 W:      https://sparse.wiki.kernel.org/
9119 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9120 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9121 S:      Maintained
9122 F:      include/linux/compiler.h
9123
9124 SPEAR PLATFORM SUPPORT
9125 M:      Viresh Kumar <viresh.linux@gmail.com>
9126 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9127 L:      spear-devel@list.st.com
9128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9129 W:      http://www.st.com/spear
9130 S:      Maintained
9131 F:      arch/arm/mach-spear/
9132
9133 SPEAR CLOCK FRAMEWORK SUPPORT
9134 M:      Viresh Kumar <viresh.linux@gmail.com>
9135 L:      spear-devel@list.st.com
9136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9137 W:      http://www.st.com/spear
9138 S:      Maintained
9139 F:      drivers/clk/spear/
9140
9141 SPI SUBSYSTEM
9142 M:      Mark Brown <broonie@kernel.org>
9143 L:      linux-spi@vger.kernel.org
9144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9145 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9146 S:      Maintained
9147 F:      Documentation/spi/
9148 F:      drivers/spi/
9149 F:      include/linux/spi/
9150 F:      include/uapi/linux/spi/
9151
9152 SPIDERNET NETWORK DRIVER for CELL
9153 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9154 M:      Jens Osterkamp <jens@de.ibm.com>
9155 L:      netdev@vger.kernel.org
9156 S:      Supported
9157 F:      Documentation/networking/spider_net.txt
9158 F:      drivers/net/ethernet/toshiba/spider_net*
9159
9160 SPU FILE SYSTEM
9161 M:      Jeremy Kerr <jk@ozlabs.org>
9162 L:      linuxppc-dev@lists.ozlabs.org
9163 L:      cbe-oss-dev@lists.ozlabs.org
9164 W:      http://www.ibm.com/developerworks/power/cell/
9165 S:      Supported
9166 F:      Documentation/filesystems/spufs.txt
9167 F:      arch/powerpc/platforms/cell/spufs/
9168
9169 SQUASHFS FILE SYSTEM
9170 M:      Phillip Lougher <phillip@squashfs.org.uk>
9171 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9172 W:      http://squashfs.org.uk
9173 S:      Maintained
9174 F:      Documentation/filesystems/squashfs.txt
9175 F:      fs/squashfs/
9176
9177 SRM (Alpha) environment access
9178 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9179 S:      Maintained
9180 F:      arch/alpha/kernel/srm_env.c
9181
9182 STABLE BRANCH
9183 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9184 L:      stable@vger.kernel.org
9185 S:      Supported
9186 F:      Documentation/stable_kernel_rules.txt
9187
9188 STAGING SUBSYSTEM
9189 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9191 L:      devel@driverdev.osuosl.org
9192 S:      Supported
9193 F:      drivers/staging/
9194
9195 STAGING - COMEDI
9196 M:      Ian Abbott <abbotti@mev.co.uk>
9197 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9198 S:      Odd Fixes
9199 F:      drivers/staging/comedi/
9200
9201 STAGING - FLARION FT1000 DRIVERS
9202 M:      Marek Belisko <marek.belisko@gmail.com>
9203 S:      Odd Fixes
9204 F:      drivers/staging/ft1000/
9205
9206 STAGING - INDUSTRIAL IO
9207 M:      Jonathan Cameron <jic23@kernel.org>
9208 L:      linux-iio@vger.kernel.org
9209 S:      Odd Fixes
9210 F:      drivers/staging/iio/
9211
9212 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9213 M:      Jarod Wilson <jarod@wilsonet.com>
9214 W:      http://www.lirc.org/
9215 S:      Odd Fixes
9216 F:      drivers/staging/media/lirc/
9217
9218 STAGING - LUSTRE PARALLEL FILESYSTEM
9219 M:      Oleg Drokin <oleg.drokin@intel.com>
9220 M:      Andreas Dilger <andreas.dilger@intel.com>
9221 L:      HPDD-discuss@lists.01.org (moderated for non-subscribers)
9222 W:      http://lustre.opensfs.org/
9223 S:      Maintained
9224 F:      drivers/staging/lustre
9225
9226 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9227 M:      Julian Andres Klode <jak@jak-linux.org>
9228 M:      Marc Dietrich <marvin24@gmx.de>
9229 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9230 L:      linux-tegra@vger.kernel.org
9231 S:      Maintained
9232 F:      drivers/staging/nvec/
9233
9234 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9235 M:      Jens Frederich <jfrederich@gmail.com>
9236 M:      Daniel Drake <dsd@laptop.org>
9237 M:      Jon Nettleton <jon.nettleton@gmail.com>
9238 W:      http://wiki.laptop.org/go/DCON
9239 S:      Maintained
9240 F:      drivers/staging/olpc_dcon/
9241
9242 STAGING - OZMO DEVICES USB OVER WIFI DRIVER
9243 M:      Shigekatsu Tateno <shigekatsu.tateno@atmel.com>
9244 S:      Maintained
9245 F:      drivers/staging/ozwpan/
9246
9247 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9248 M:      Willy Tarreau <willy@meta-x.org>
9249 S:      Odd Fixes
9250 F:      drivers/staging/panel/
9251
9252 STAGING - REALTEK RTL8712U DRIVERS
9253 M:      Larry Finger <Larry.Finger@lwfinger.net>
9254 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9255 S:      Odd Fixes
9256 F:      drivers/staging/rtl8712/
9257
9258 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9259 M:      Larry Finger <Larry.Finger@lwfinger.net>
9260 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9261 L:      linux-wireless@vger.kernel.org
9262 S:      Maintained
9263 F:      drivers/staging/rtl8723au/
9264
9265 STAGING - SLICOSS
9266 M:      Lior Dotan <liodot@gmail.com>
9267 M:      Christopher Harrer <charrer@alacritech.com>
9268 S:      Odd Fixes
9269 F:      drivers/staging/slicoss/
9270
9271 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9272 M:      William Hubbs <w.d.hubbs@gmail.com>
9273 M:      Chris Brannon <chris@the-brannons.com>
9274 M:      Kirk Reiser <kirk@reisers.ca>
9275 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9276 L:      speakup@linux-speakup.org
9277 W:      http://www.linux-speakup.org/
9278 S:      Odd Fixes
9279 F:      drivers/staging/speakup/
9280
9281 STAGING - VIA VT665X DRIVERS
9282 M:      Forest Bond <forest@alittletooquiet.net>
9283 S:      Odd Fixes
9284 F:      drivers/staging/vt665?/
9285
9286 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
9287 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
9288 S:      Odd Fixes
9289 F:      drivers/staging/xgifb/
9290
9291 STARFIRE/DURALAN NETWORK DRIVER
9292 M:      Ion Badulescu <ionut@badula.org>
9293 S:      Odd Fixes
9294 F:      drivers/net/ethernet/adaptec/starfire*
9295
9296 SUN3/3X
9297 M:      Sam Creasey <sammy@sammy.net>
9298 W:      http://sammy.net/sun3/
9299 S:      Maintained
9300 F:      arch/m68k/kernel/*sun3*
9301 F:      arch/m68k/sun3*/
9302 F:      arch/m68k/include/asm/sun3*
9303 F:      drivers/net/ethernet/i825xx/sun3*
9304
9305 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
9306 M:      Hans de Goede <hdegoede@redhat.com>
9307 L:      linux-input@vger.kernel.org
9308 S:      Maintained
9309 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
9310 F:      drivers/input/keyboard/sun4i-lradc-keys.c
9311
9312 SUNDANCE NETWORK DRIVER
9313 M:      Denis Kirjanov <kda@linux-powerpc.org>
9314 L:      netdev@vger.kernel.org
9315 S:      Maintained
9316 F:      drivers/net/ethernet/dlink/sundance.c
9317
9318 SUPERH
9319 L:      linux-sh@vger.kernel.org
9320 Q:      http://patchwork.kernel.org/project/linux-sh/list/
9321 S:      Orphan
9322 F:      Documentation/sh/
9323 F:      arch/sh/
9324 F:      drivers/sh/
9325
9326 SUSPEND TO RAM
9327 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9328 M:      Len Brown <len.brown@intel.com>
9329 M:      Pavel Machek <pavel@ucw.cz>
9330 L:      linux-pm@vger.kernel.org
9331 S:      Supported
9332 F:      Documentation/power/
9333 F:      arch/x86/kernel/acpi/
9334 F:      drivers/base/power/
9335 F:      kernel/power/
9336 F:      include/linux/suspend.h
9337 F:      include/linux/freezer.h
9338 F:      include/linux/pm.h
9339
9340 SVGA HANDLING
9341 M:      Martin Mares <mj@ucw.cz>
9342 L:      linux-video@atrey.karlin.mff.cuni.cz
9343 S:      Maintained
9344 F:      Documentation/svga.txt
9345 F:      arch/x86/boot/video*
9346
9347 SWIOTLB SUBSYSTEM
9348 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9349 L:      linux-kernel@vger.kernel.org
9350 S:      Supported
9351 F:      lib/swiotlb.c
9352 F:      arch/*/kernel/pci-swiotlb.c
9353 F:      include/linux/swiotlb.h
9354
9355 SWITCHDEV
9356 M:      Jiri Pirko <jiri@resnulli.us>
9357 L:      netdev@vger.kernel.org
9358 S:      Supported
9359 F:      net/switchdev/
9360 F:      include/net/switchdev.h
9361
9362 SYNOPSYS ARC ARCHITECTURE
9363 M:      Vineet Gupta <vgupta@synopsys.com>
9364 S:      Supported
9365 F:      arch/arc/
9366 F:      Documentation/devicetree/bindings/arc/
9367 F:      drivers/tty/serial/arc_uart.c
9368
9369 SYSV FILESYSTEM
9370 M:      Christoph Hellwig <hch@infradead.org>
9371 S:      Maintained
9372 F:      Documentation/filesystems/sysv-fs.txt
9373 F:      fs/sysv/
9374 F:      include/linux/sysv_fs.h
9375
9376 TARGET SUBSYSTEM
9377 M:      Nicholas A. Bellinger <nab@linux-iscsi.org>
9378 L:      linux-scsi@vger.kernel.org
9379 L:      target-devel@vger.kernel.org
9380 W:      http://www.linux-iscsi.org
9381 W:      http://groups.google.com/group/linux-iscsi-target-dev
9382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9383 S:      Supported
9384 F:      drivers/target/
9385 F:      include/target/
9386 F:      Documentation/target/
9387
9388 TASKSTATS STATISTICS INTERFACE
9389 M:      Balbir Singh <bsingharora@gmail.com>
9390 S:      Maintained
9391 F:      Documentation/accounting/taskstats*
9392 F:      include/linux/taskstats*
9393 F:      kernel/taskstats.c
9394
9395 TC CLASSIFIER
9396 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9397 L:      netdev@vger.kernel.org
9398 S:      Maintained
9399 F:      include/net/pkt_cls.h
9400 F:      include/uapi/linux/pkt_cls.h
9401 F:      net/sched/
9402
9403 TCP LOW PRIORITY MODULE
9404 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
9405 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
9406 W:      http://tcp-lp-mod.sourceforge.net/
9407 S:      Maintained
9408 F:      net/ipv4/tcp_lp.c
9409
9410 TDA10071 MEDIA DRIVER
9411 M:      Antti Palosaari <crope@iki.fi>
9412 L:      linux-media@vger.kernel.org
9413 W:      http://linuxtv.org/
9414 W:      http://palosaari.fi/linux/
9415 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9416 T:      git git://linuxtv.org/anttip/media_tree.git
9417 S:      Maintained
9418 F:      drivers/media/dvb-frontends/tda10071*
9419
9420 TDA18212 MEDIA DRIVER
9421 M:      Antti Palosaari <crope@iki.fi>
9422 L:      linux-media@vger.kernel.org
9423 W:      http://linuxtv.org/
9424 W:      http://palosaari.fi/linux/
9425 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9426 T:      git git://linuxtv.org/anttip/media_tree.git
9427 S:      Maintained
9428 F:      drivers/media/tuners/tda18212*
9429
9430 TDA18218 MEDIA DRIVER
9431 M:      Antti Palosaari <crope@iki.fi>
9432 L:      linux-media@vger.kernel.org
9433 W:      http://linuxtv.org/
9434 W:      http://palosaari.fi/linux/
9435 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9436 T:      git git://linuxtv.org/anttip/media_tree.git
9437 S:      Maintained
9438 F:      drivers/media/tuners/tda18218*
9439
9440 TDA18271 MEDIA DRIVER
9441 M:      Michael Krufky <mkrufky@linuxtv.org>
9442 L:      linux-media@vger.kernel.org
9443 W:      http://linuxtv.org/
9444 W:      http://github.com/mkrufky
9445 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9446 T:      git git://linuxtv.org/mkrufky/tuners.git
9447 S:      Maintained
9448 F:      drivers/media/tuners/tda18271*
9449
9450 TDA827x MEDIA DRIVER
9451 M:      Michael Krufky <mkrufky@linuxtv.org>
9452 L:      linux-media@vger.kernel.org
9453 W:      http://linuxtv.org/
9454 W:      http://github.com/mkrufky
9455 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9456 T:      git git://linuxtv.org/mkrufky/tuners.git
9457 S:      Maintained
9458 F:      drivers/media/tuners/tda8290.*
9459
9460 TDA8290 MEDIA DRIVER
9461 M:      Michael Krufky <mkrufky@linuxtv.org>
9462 L:      linux-media@vger.kernel.org
9463 W:      http://linuxtv.org/
9464 W:      http://github.com/mkrufky
9465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9466 T:      git git://linuxtv.org/mkrufky/tuners.git
9467 S:      Maintained
9468 F:      drivers/media/tuners/tda8290.*
9469
9470 TDA9840 MEDIA DRIVER
9471 M:      Hans Verkuil <hverkuil@xs4all.nl>
9472 L:      linux-media@vger.kernel.org
9473 T:      git git://linuxtv.org/media_tree.git
9474 W:      http://linuxtv.org
9475 S:      Maintained
9476 F:      drivers/media/i2c/tda9840*
9477
9478 TEA5761 TUNER DRIVER
9479 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9480 L:      linux-media@vger.kernel.org
9481 W:      http://linuxtv.org
9482 T:      git git://linuxtv.org/media_tree.git
9483 S:      Odd fixes
9484 F:      drivers/media/tuners/tea5761.*
9485
9486 TEA5767 TUNER DRIVER
9487 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9488 L:      linux-media@vger.kernel.org
9489 W:      http://linuxtv.org
9490 T:      git git://linuxtv.org/media_tree.git
9491 S:      Maintained
9492 F:      drivers/media/tuners/tea5767.*
9493
9494 TEA6415C MEDIA DRIVER
9495 M:      Hans Verkuil <hverkuil@xs4all.nl>
9496 L:      linux-media@vger.kernel.org
9497 T:      git git://linuxtv.org/media_tree.git
9498 W:      http://linuxtv.org
9499 S:      Maintained
9500 F:      drivers/media/i2c/tea6415c*
9501
9502 TEA6420 MEDIA DRIVER
9503 M:      Hans Verkuil <hverkuil@xs4all.nl>
9504 L:      linux-media@vger.kernel.org
9505 T:      git git://linuxtv.org/media_tree.git
9506 W:      http://linuxtv.org
9507 S:      Maintained
9508 F:      drivers/media/i2c/tea6420*
9509
9510 TEAM DRIVER
9511 M:      Jiri Pirko <jiri@resnulli.us>
9512 L:      netdev@vger.kernel.org
9513 S:      Supported
9514 F:      drivers/net/team/
9515 F:      include/linux/if_team.h
9516 F:      include/uapi/linux/if_team.h
9517
9518 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
9519 M:      Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
9520 S:      Maintained
9521 F:      arch/x86/platform/ts5500/
9522
9523 TECHNOTREND USB IR RECEIVER
9524 M:      Sean Young <sean@mess.org>
9525 L:      linux-media@vger.kernel.org
9526 S:      Maintained
9527 F:      drivers/media/rc/ttusbir.c
9528
9529 TEGRA ARCHITECTURE SUPPORT
9530 M:      Stephen Warren <swarren@wwwdotorg.org>
9531 M:      Thierry Reding <thierry.reding@gmail.com>
9532 M:      Alexandre Courbot <gnurou@gmail.com>
9533 L:      linux-tegra@vger.kernel.org
9534 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
9535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
9536 S:      Supported
9537 N:      [^a-z]tegra
9538
9539 TEGRA CLOCK DRIVER
9540 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
9541 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
9542 S:      Supported
9543 F:      drivers/clk/tegra/
9544
9545 TEGRA DMA DRIVER
9546 M:      Laxman Dewangan <ldewangan@nvidia.com>
9547 S:      Supported
9548 F:      drivers/dma/tegra20-apb-dma.c
9549
9550 TEGRA I2C DRIVER
9551 M:      Laxman Dewangan <ldewangan@nvidia.com>
9552 S:      Supported
9553 F:      drivers/i2c/busses/i2c-tegra.c
9554
9555 TEGRA IOMMU DRIVERS
9556 M:      Hiroshi Doyu <hdoyu@nvidia.com>
9557 S:      Supported
9558 F:      drivers/iommu/tegra*
9559
9560 TEGRA KBC DRIVER
9561 M:      Rakesh Iyer <riyer@nvidia.com>
9562 M:      Laxman Dewangan <ldewangan@nvidia.com>
9563 S:      Supported
9564 F:      drivers/input/keyboard/tegra-kbc.c
9565
9566 TEGRA PWM DRIVER
9567 M:      Thierry Reding <thierry.reding@gmail.com>
9568 S:      Supported
9569 F:      drivers/pwm/pwm-tegra.c
9570
9571 TEGRA SERIAL DRIVER
9572 M:      Laxman Dewangan <ldewangan@nvidia.com>
9573 S:      Supported
9574 F:      drivers/tty/serial/serial-tegra.c
9575
9576 TEGRA SPI DRIVER
9577 M:      Laxman Dewangan <ldewangan@nvidia.com>
9578 S:      Supported
9579 F:      drivers/spi/spi-tegra*
9580
9581 TEHUTI ETHERNET DRIVER
9582 M:      Andy Gospodarek <andy@greyhouse.net>
9583 L:      netdev@vger.kernel.org
9584 S:      Supported
9585 F:      drivers/net/ethernet/tehuti/*
9586
9587 Telecom Clock Driver for MCPL0010
9588 M:      Mark Gross <mark.gross@intel.com>
9589 S:      Supported
9590 F:      drivers/char/tlclk.c
9591
9592 TENSILICA XTENSA PORT (xtensa)
9593 M:      Chris Zankel <chris@zankel.net>
9594 M:      Max Filippov <jcmvbkbc@gmail.com>
9595 L:      linux-xtensa@linux-xtensa.org
9596 S:      Maintained
9597 F:      arch/xtensa/
9598 F:      drivers/irqchip/irq-xtensa-*
9599
9600 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
9601 M:      Hans Verkuil <hverkuil@xs4all.nl>
9602 L:      linux-media@vger.kernel.org
9603 T:      git git://linuxtv.org/media_tree.git
9604 W:      http://linuxtv.org
9605 S:      Maintained
9606 F:      drivers/media/radio/radio-raremono.c
9607
9608 THERMAL
9609 M:      Zhang Rui <rui.zhang@intel.com>
9610 M:      Eduardo Valentin <edubezval@gmail.com>
9611 L:      linux-pm@vger.kernel.org
9612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
9613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
9614 Q:      https://patchwork.kernel.org/project/linux-pm/list/
9615 S:      Supported
9616 F:      drivers/thermal/
9617 F:      include/linux/thermal.h
9618 F:      include/uapi/linux/thermal.h
9619 F:      include/linux/cpu_cooling.h
9620 F:      Documentation/devicetree/bindings/thermal/
9621
9622 THINGM BLINK(1) USB RGB LED DRIVER
9623 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9624 S:      Maintained
9625 F:      drivers/hid/hid-thingm.c
9626
9627 THINKPAD ACPI EXTRAS DRIVER
9628 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
9629 L:      ibm-acpi-devel@lists.sourceforge.net
9630 L:      platform-driver-x86@vger.kernel.org
9631 W:      http://ibm-acpi.sourceforge.net
9632 W:      http://thinkwiki.org/wiki/Ibm-acpi
9633 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
9634 S:      Maintained
9635 F:      drivers/platform/x86/thinkpad_acpi.c
9636
9637 TI BANDGAP AND THERMAL DRIVER
9638 M:      Eduardo Valentin <edubezval@gmail.com>
9639 L:      linux-pm@vger.kernel.org
9640 L:      linux-omap@vger.kernel.org
9641 S:      Maintained
9642 F:      drivers/thermal/ti-soc-thermal/
9643
9644 TI CLOCK DRIVER
9645 M:      Tero Kristo <t-kristo@ti.com>
9646 L:      linux-omap@vger.kernel.org
9647 S:      Maintained
9648 F:      drivers/clk/ti/
9649 F:      include/linux/clk/ti.h
9650
9651 TI FLASH MEDIA INTERFACE DRIVER
9652 M:      Alex Dubov <oakad@yahoo.com>
9653 S:      Maintained
9654 F:      drivers/misc/tifm*
9655 F:      drivers/mmc/host/tifm_sd.c
9656 F:      include/linux/tifm.h
9657
9658 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
9659 M:      Santosh Shilimkar <ssantosh@kernel.org>
9660 L:      linux-kernel@vger.kernel.org
9661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9662 S:      Maintained
9663 F:      drivers/soc/ti/*
9664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
9665
9666
9667 TI LM49xxx FAMILY ASoC CODEC DRIVERS
9668 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
9669 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
9670 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9671 S:      Maintained
9672 F:      sound/soc/codecs/lm49453*
9673 F:      sound/soc/codecs/isabelle*
9674
9675 TI LP855x BACKLIGHT DRIVER
9676 M:      Milo Kim <milo.kim@ti.com>
9677 S:      Maintained
9678 F:      Documentation/backlight/lp855x-driver.txt
9679 F:      drivers/video/backlight/lp855x_bl.c
9680 F:      include/linux/platform_data/lp855x.h
9681
9682 TI LP8727 CHARGER DRIVER
9683 M:      Milo Kim <milo.kim@ti.com>
9684 S:      Maintained
9685 F:      drivers/power/lp8727_charger.c
9686 F:      include/linux/platform_data/lp8727.h
9687
9688 TI LP8788 MFD DRIVER
9689 M:      Milo Kim <milo.kim@ti.com>
9690 S:      Maintained
9691 F:      drivers/iio/adc/lp8788_adc.c
9692 F:      drivers/leds/leds-lp8788.c
9693 F:      drivers/mfd/lp8788*.c
9694 F:      drivers/power/lp8788-charger.c
9695 F:      drivers/regulator/lp8788-*.c
9696 F:      include/linux/mfd/lp8788*.h
9697
9698 TI NETCP ETHERNET DRIVER
9699 M:      Wingman Kwok <w-kwok2@ti.com>
9700 M:      Murali Karicheri <m-karicheri2@ti.com>
9701 L:      netdev@vger.kernel.org
9702 S:      Maintained
9703 F:      drivers/net/ethernet/ti/netcp*
9704
9705 TI TWL4030 SERIES SOC CODEC DRIVER
9706 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
9707 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9708 S:      Maintained
9709 F:      sound/soc/codecs/twl4030*
9710
9711 TI WILINK WIRELESS DRIVERS
9712 L:      linux-wireless@vger.kernel.org
9713 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
9714 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
9715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
9716 S:      Orphan
9717 F:      drivers/net/wireless/ti/
9718 F:      include/linux/wl12xx.h
9719
9720 TIPC NETWORK LAYER
9721 M:      Jon Maloy <jon.maloy@ericsson.com>
9722 M:      Allan Stephens <allan.stephens@windriver.com>
9723 L:      netdev@vger.kernel.org (core kernel code)
9724 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
9725 W:      http://tipc.sourceforge.net/
9726 S:      Maintained
9727 F:      include/uapi/linux/tipc*.h
9728 F:      net/tipc/
9729
9730 TILE ARCHITECTURE
9731 M:      Chris Metcalf <cmetcalf@ezchip.com>
9732 W:      http://www.ezchip.com/scm/
9733 S:      Supported
9734 F:      arch/tile/
9735 F:      drivers/char/tile-srom.c
9736 F:      drivers/edac/tile_edac.c
9737 F:      drivers/net/ethernet/tile/
9738 F:      drivers/rtc/rtc-tile.c
9739 F:      drivers/tty/hvc/hvc_tile.c
9740 F:      drivers/tty/serial/tilegx.c
9741 F:      drivers/usb/host/*-tilegx.c
9742 F:      include/linux/usb/tilegx.h
9743
9744 TLAN NETWORK DRIVER
9745 M:      Samuel Chessman <chessman@tux.org>
9746 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
9747 W:      http://sourceforge.net/projects/tlan/
9748 S:      Maintained
9749 F:      Documentation/networking/tlan.txt
9750 F:      drivers/net/ethernet/ti/tlan.*
9751
9752 TOMOYO SECURITY MODULE
9753 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
9754 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
9755 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
9756 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
9757 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
9758 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
9759 W:      http://tomoyo.sourceforge.jp/
9760 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
9761 S:      Maintained
9762 F:      security/tomoyo/
9763
9764 TOPSTAR LAPTOP EXTRAS DRIVER
9765 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9766 L:      platform-driver-x86@vger.kernel.org
9767 S:      Maintained
9768 F:      drivers/platform/x86/topstar-laptop.c
9769
9770 TOSHIBA ACPI EXTRAS DRIVER
9771 L:      platform-driver-x86@vger.kernel.org
9772 S:      Orphan
9773 F:      drivers/platform/x86/toshiba_acpi.c
9774
9775 TOSHIBA SMM DRIVER
9776 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
9777 L:      tlinux-users@tce.toshiba-dme.co.jp
9778 W:      http://www.buzzard.org.uk/toshiba/
9779 S:      Maintained
9780 F:      drivers/char/toshiba.c
9781 F:      include/linux/toshiba.h
9782 F:      include/uapi/linux/toshiba.h
9783
9784 TMIO MMC DRIVER
9785 M:      Ian Molton <ian.molton@codethink.co.uk>
9786 L:      linux-mmc@vger.kernel.org
9787 S:      Maintained
9788 F:      drivers/mmc/host/tmio_mmc*
9789 F:      drivers/mmc/host/sh_mobile_sdhi.c
9790 F:      include/linux/mmc/tmio.h
9791 F:      include/linux/mmc/sh_mobile_sdhi.h
9792
9793 TMP401 HARDWARE MONITOR DRIVER
9794 M:      Guenter Roeck <linux@roeck-us.net>
9795 L:      lm-sensors@lm-sensors.org
9796 S:      Maintained
9797 F:      Documentation/hwmon/tmp401
9798 F:      drivers/hwmon/tmp401.c
9799
9800 TMPFS (SHMEM FILESYSTEM)
9801 M:      Hugh Dickins <hughd@google.com>
9802 L:      linux-mm@kvack.org
9803 S:      Maintained
9804 F:      include/linux/shmem_fs.h
9805 F:      mm/shmem.c
9806
9807 TM6000 VIDEO4LINUX DRIVER
9808 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9809 L:      linux-media@vger.kernel.org
9810 W:      http://linuxtv.org
9811 T:      git git://linuxtv.org/media_tree.git
9812 S:      Odd fixes
9813 F:      drivers/media/usb/tm6000/
9814
9815 TW68 VIDEO4LINUX DRIVER
9816 M:      Hans Verkuil <hverkuil@xs4all.nl>
9817 L:      linux-media@vger.kernel.org
9818 T:      git git://linuxtv.org/media_tree.git
9819 W:      http://linuxtv.org
9820 S:      Odd Fixes
9821 F:      drivers/media/pci/tw68/
9822
9823 TPM DEVICE DRIVER
9824 M:      Peter Huewe <peterhuewe@gmx.de>
9825 M:      Marcel Selhorst <tpmdd@selhorst.net>
9826 W:      http://tpmdd.sourceforge.net
9827 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
9828 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
9829 T:      https://github.com/PeterHuewe/linux-tpmdd
9830 S:      Maintained
9831 F:      drivers/char/tpm/
9832
9833 TPM IBM_VTPM DEVICE DRIVER
9834 M:      Ashley Lai <ashleydlai@gmail.com>
9835 W:      http://tpmdd.sourceforge.net
9836 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
9837 S:      Maintained
9838 F:      drivers/char/tpm/tpm_ibmvtpm*
9839
9840 TRACING
9841 M:      Steven Rostedt <rostedt@goodmis.org>
9842 M:      Ingo Molnar <mingo@redhat.com>
9843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
9844 S:      Maintained
9845 F:      Documentation/trace/ftrace.txt
9846 F:      arch/*/*/*/ftrace.h
9847 F:      arch/*/kernel/ftrace.c
9848 F:      include/*/ftrace.h
9849 F:      include/linux/trace*.h
9850 F:      include/trace/
9851 F:      kernel/trace/
9852 F:      tools/testing/selftests/ftrace/
9853
9854 TRIVIAL PATCHES
9855 M:      Jiri Kosina <trivial@kernel.org>
9856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
9857 S:      Maintained
9858 K:      ^Subject:.*(?i)trivial
9859
9860 TTY LAYER
9861 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9862 M:      Jiri Slaby <jslaby@suse.cz>
9863 S:      Supported
9864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
9865 F:      drivers/tty/
9866 F:      drivers/tty/serial/serial_core.c
9867 F:      include/linux/serial_core.h
9868 F:      include/linux/serial.h
9869 F:      include/linux/tty.h
9870 F:      include/uapi/linux/serial_core.h
9871 F:      include/uapi/linux/serial.h
9872 F:      include/uapi/linux/tty.h
9873
9874 TUA9001 MEDIA DRIVER
9875 M:      Antti Palosaari <crope@iki.fi>
9876 L:      linux-media@vger.kernel.org
9877 W:      http://linuxtv.org/
9878 W:      http://palosaari.fi/linux/
9879 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9880 T:      git git://linuxtv.org/anttip/media_tree.git
9881 S:      Maintained
9882 F:      drivers/media/tuners/tua9001*
9883
9884 TULIP NETWORK DRIVERS
9885 M:      Grant Grundler <grundler@parisc-linux.org>
9886 L:      netdev@vger.kernel.org
9887 S:      Maintained
9888 F:      drivers/net/ethernet/dec/tulip/
9889
9890 TUN/TAP driver
9891 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
9892 W:      http://vtun.sourceforge.net/tun
9893 S:      Maintained
9894 F:      Documentation/networking/tuntap.txt
9895 F:      arch/um/os-Linux/drivers/
9896
9897 TURBOCHANNEL SUBSYSTEM
9898 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
9899 M:      Ralf Baechle <ralf@linux-mips.org>
9900 L:      linux-mips@linux-mips.org
9901 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
9902 S:      Maintained
9903 F:      drivers/tc/
9904 F:      include/linux/tc.h
9905
9906 U14-34F SCSI DRIVER
9907 M:      Dario Ballabio <ballabio_dario@emc.com>
9908 L:      linux-scsi@vger.kernel.org
9909 S:      Maintained
9910 F:      drivers/scsi/u14-34f.c
9911
9912 UBI FILE SYSTEM (UBIFS)
9913 M:      Artem Bityutskiy <dedekind1@gmail.com>
9914 M:      Adrian Hunter <adrian.hunter@intel.com>
9915 L:      linux-mtd@lists.infradead.org
9916 T:      git git://git.infradead.org/ubifs-2.6.git
9917 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
9918 S:      Maintained
9919 F:      Documentation/filesystems/ubifs.txt
9920 F:      fs/ubifs/
9921
9922 UCLINUX (AND M68KNOMMU)
9923 M:      Greg Ungerer <gerg@uclinux.org>
9924 W:      http://www.uclinux.org/
9925 L:      uclinux-dev@uclinux.org  (subscribers-only)
9926 S:      Maintained
9927 F:      arch/m68k/*/*_no.*
9928 F:      arch/m68k/include/asm/*_no.*
9929
9930 UDF FILESYSTEM
9931 M:      Jan Kara <jack@suse.cz>
9932 S:      Maintained
9933 F:      Documentation/filesystems/udf.txt
9934 F:      fs/udf/
9935
9936 UFS FILESYSTEM
9937 M:      Evgeniy Dushistov <dushistov@mail.ru>
9938 S:      Maintained
9939 F:      Documentation/filesystems/ufs.txt
9940 F:      fs/ufs/
9941
9942 UHID USERSPACE HID IO DRIVER:
9943 M:      David Herrmann <dh.herrmann@googlemail.com>
9944 L:      linux-input@vger.kernel.org
9945 S:      Maintained
9946 F:      drivers/hid/uhid.c
9947 F:      include/uapi/linux/uhid.h
9948
9949 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
9950 L:      linux-usb@vger.kernel.org
9951 S:      Orphan
9952 F:      drivers/uwb/
9953 F:      include/linux/uwb.h
9954 F:      include/linux/uwb/
9955
9956 UNICORE32 ARCHITECTURE:
9957 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
9958 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
9959 S:      Maintained
9960 T:      git git://github.com/gxt/linux.git
9961 F:      arch/unicore32/
9962
9963 UNIFDEF
9964 M:      Tony Finch <dot@dotat.at>
9965 W:      http://dotat.at/prog/unifdef
9966 S:      Maintained
9967 F:      scripts/unifdef.c
9968
9969 UNIFORM CDROM DRIVER
9970 M:      Jens Axboe <axboe@kernel.dk>
9971 W:      http://www.kernel.dk
9972 S:      Maintained
9973 F:      Documentation/cdrom/
9974 F:      drivers/cdrom/cdrom.c
9975 F:      include/linux/cdrom.h
9976 F:      include/uapi/linux/cdrom.h
9977
9978 UNISYS S-PAR DRIVERS
9979 M:     Benjamin Romer <benjamin.romer@unisys.com>
9980 M:     David Kershner <david.kershner@unisys.com>
9981 L:     sparmaintainer@unisys.com (Unisys internal)
9982 S:     Supported
9983 F:     drivers/staging/unisys/
9984
9985 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
9986 M:      Vinayak Holikatti <vinholikatti@gmail.com>
9987 L:      linux-scsi@vger.kernel.org
9988 S:      Supported
9989 F:      Documentation/scsi/ufs.txt
9990 F:      drivers/scsi/ufs/
9991
9992 UNSORTED BLOCK IMAGES (UBI)
9993 M:      Artem Bityutskiy <dedekind1@gmail.com>
9994 M:      Richard Weinberger <richard@nod.at>
9995 W:      http://www.linux-mtd.infradead.org/
9996 L:      linux-mtd@lists.infradead.org
9997 T:      git git://git.infradead.org/ubifs-2.6.git
9998 S:      Supported
9999 F:      drivers/mtd/ubi/
10000 F:      include/linux/mtd/ubi.h
10001 F:      include/uapi/mtd/ubi-user.h
10002
10003 USB ACM DRIVER
10004 M:      Oliver Neukum <oliver@neukum.org>
10005 L:      linux-usb@vger.kernel.org
10006 S:      Maintained
10007 F:      Documentation/usb/acm.txt
10008 F:      drivers/usb/class/cdc-acm.*
10009
10010 USB AR5523 WIRELESS DRIVER
10011 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10012 L:      linux-wireless@vger.kernel.org
10013 S:      Maintained
10014 F:      drivers/net/wireless/ath/ar5523/
10015
10016 USB ATTACHED SCSI
10017 M:      Hans de Goede <hdegoede@redhat.com>
10018 M:      Gerd Hoffmann <kraxel@redhat.com>
10019 L:      linux-usb@vger.kernel.org
10020 L:      linux-scsi@vger.kernel.org
10021 S:      Maintained
10022 F:      drivers/usb/storage/uas.c
10023
10024 USB CDC ETHERNET DRIVER
10025 M:      Oliver Neukum <oliver@neukum.org>
10026 L:      linux-usb@vger.kernel.org
10027 S:      Maintained
10028 F:      drivers/net/usb/cdc_*.c
10029 F:      include/uapi/linux/usb/cdc.h
10030
10031 USB CYPRESS C67X00 DRIVER
10032 M:      Peter Korsgaard <jacmet@sunsite.dk>
10033 L:      linux-usb@vger.kernel.org
10034 S:      Maintained
10035 F:      drivers/usb/c67x00/
10036
10037 USB DAVICOM DM9601 DRIVER
10038 M:      Peter Korsgaard <jacmet@sunsite.dk>
10039 L:      netdev@vger.kernel.org
10040 W:      http://www.linux-usb.org/usbnet
10041 S:      Maintained
10042 F:      drivers/net/usb/dm9601.c
10043
10044 USB DIAMOND RIO500 DRIVER
10045 M:      Cesar Miquel <miquel@df.uba.ar>
10046 L:      rio500-users@lists.sourceforge.net
10047 W:      http://rio500.sourceforge.net
10048 S:      Maintained
10049 F:      drivers/usb/misc/rio500*
10050
10051 USB EHCI DRIVER
10052 M:      Alan Stern <stern@rowland.harvard.edu>
10053 L:      linux-usb@vger.kernel.org
10054 S:      Maintained
10055 F:      Documentation/usb/ehci.txt
10056 F:      drivers/usb/host/ehci*
10057
10058 USB GADGET/PERIPHERAL SUBSYSTEM
10059 M:      Felipe Balbi <balbi@ti.com>
10060 L:      linux-usb@vger.kernel.org
10061 W:      http://www.linux-usb.org/gadget
10062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10063 S:      Maintained
10064 F:      drivers/usb/gadget/
10065 F:      include/linux/usb/gadget*
10066
10067 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10068 M:      Jiri Kosina <jkosina@suse.cz>
10069 L:      linux-usb@vger.kernel.org
10070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10071 S:      Maintained
10072 F:      Documentation/hid/hiddev.txt
10073 F:      drivers/hid/usbhid/
10074
10075 USB ISP116X DRIVER
10076 M:      Olav Kongas <ok@artecdesign.ee>
10077 L:      linux-usb@vger.kernel.org
10078 S:      Maintained
10079 F:      drivers/usb/host/isp116x*
10080 F:      include/linux/usb/isp116x.h
10081
10082 USB MASS STORAGE DRIVER
10083 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10084 L:      linux-usb@vger.kernel.org
10085 L:      usb-storage@lists.one-eyed-alien.net
10086 S:      Maintained
10087 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10088 F:      drivers/usb/storage/
10089
10090 USB MIDI DRIVER
10091 M:      Clemens Ladisch <clemens@ladisch.de>
10092 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10093 T:      git git://git.alsa-project.org/alsa-kernel.git
10094 S:      Maintained
10095 F:      sound/usb/midi.*
10096
10097 USB NETWORKING DRIVERS
10098 L:      linux-usb@vger.kernel.org
10099 S:      Odd Fixes
10100 F:      drivers/net/usb/
10101
10102 USB OHCI DRIVER
10103 M:      Alan Stern <stern@rowland.harvard.edu>
10104 L:      linux-usb@vger.kernel.org
10105 S:      Maintained
10106 F:      Documentation/usb/ohci.txt
10107 F:      drivers/usb/host/ohci*
10108
10109 USB OVER IP DRIVER
10110 M:      Valentina Manea <valentina.manea.m@gmail.com>
10111 M:      Shuah Khan <shuah.kh@samsung.com>
10112 L:      linux-usb@vger.kernel.org
10113 S:      Maintained
10114 F:      drivers/usb/usbip/
10115 F:      tools/usb/usbip/
10116
10117 USB PEGASUS DRIVER
10118 M:      Petko Manolov <petkan@nucleusys.com>
10119 L:      linux-usb@vger.kernel.org
10120 L:      netdev@vger.kernel.org
10121 T:      git git://github.com/petkan/pegasus.git
10122 W:      https://github.com/petkan/pegasus
10123 S:      Maintained
10124 F:      drivers/net/usb/pegasus.*
10125
10126 USB PHY LAYER
10127 M:      Felipe Balbi <balbi@ti.com>
10128 L:      linux-usb@vger.kernel.org
10129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10130 S:      Maintained
10131 F:      drivers/usb/phy/
10132
10133 USB PRINTER DRIVER (usblp)
10134 M:      Pete Zaitcev <zaitcev@redhat.com>
10135 L:      linux-usb@vger.kernel.org
10136 S:      Supported
10137 F:      drivers/usb/class/usblp.c
10138
10139 USB RTL8150 DRIVER
10140 M:      Petko Manolov <petkan@nucleusys.com>
10141 L:      linux-usb@vger.kernel.org
10142 L:      netdev@vger.kernel.org
10143 T:      git git://github.com/petkan/rtl8150.git
10144 W:      https://github.com/petkan/rtl8150
10145 S:      Maintained
10146 F:      drivers/net/usb/rtl8150.c
10147
10148 USB SERIAL SUBSYSTEM
10149 M:      Johan Hovold <johan@kernel.org>
10150 L:      linux-usb@vger.kernel.org
10151 S:      Maintained
10152 F:      Documentation/usb/usb-serial.txt
10153 F:      drivers/usb/serial/
10154 F:      include/linux/usb/serial.h
10155
10156 USB SMSC75XX ETHERNET DRIVER
10157 M:      Steve Glendinning <steve.glendinning@shawell.net>
10158 L:      netdev@vger.kernel.org
10159 S:      Maintained
10160 F:      drivers/net/usb/smsc75xx.*
10161
10162 USB SMSC95XX ETHERNET DRIVER
10163 M:      Steve Glendinning <steve.glendinning@shawell.net>
10164 L:      netdev@vger.kernel.org
10165 S:      Maintained
10166 F:      drivers/net/usb/smsc95xx.*
10167
10168 USB SUBSYSTEM
10169 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10170 L:      linux-usb@vger.kernel.org
10171 W:      http://www.linux-usb.org
10172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10173 S:      Supported
10174 F:      Documentation/usb/
10175 F:      drivers/usb/
10176 F:      include/linux/usb.h
10177 F:      include/linux/usb/
10178
10179 USB UHCI DRIVER
10180 M:      Alan Stern <stern@rowland.harvard.edu>
10181 L:      linux-usb@vger.kernel.org
10182 S:      Maintained
10183 F:      drivers/usb/host/uhci*
10184
10185 USB "USBNET" DRIVER FRAMEWORK
10186 M:      Oliver Neukum <oneukum@suse.de>
10187 L:      netdev@vger.kernel.org
10188 W:      http://www.linux-usb.org/usbnet
10189 S:      Maintained
10190 F:      drivers/net/usb/usbnet.c
10191 F:      include/linux/usb/usbnet.h
10192
10193 USB VIDEO CLASS
10194 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10195 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10196 L:      linux-media@vger.kernel.org
10197 T:      git git://linuxtv.org/media_tree.git
10198 W:      http://www.ideasonboard.org/uvc/
10199 S:      Maintained
10200 F:      drivers/media/usb/uvc/
10201 F:      include/uapi/linux/uvcvideo.h
10202
10203 USB VISION DRIVER
10204 M:      Hans Verkuil <hverkuil@xs4all.nl>
10205 L:      linux-media@vger.kernel.org
10206 T:      git git://linuxtv.org/media_tree.git
10207 W:      http://linuxtv.org
10208 S:      Odd Fixes
10209 F:      drivers/media/usb/usbvision/
10210
10211 USB WEBCAM GADGET
10212 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10213 L:      linux-usb@vger.kernel.org
10214 S:      Maintained
10215 F:      drivers/usb/gadget/function/*uvc*
10216 F:      drivers/usb/gadget/legacy/webcam.c
10217
10218 USB WIRELESS RNDIS DRIVER (rndis_wlan)
10219 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
10220 L:      linux-wireless@vger.kernel.org
10221 S:      Maintained
10222 F:      drivers/net/wireless/rndis_wlan.c
10223
10224 USB XHCI DRIVER
10225 M:      Mathias Nyman <mathias.nyman@intel.com>
10226 L:      linux-usb@vger.kernel.org
10227 S:      Supported
10228 F:      drivers/usb/host/xhci*
10229 F:      drivers/usb/host/pci-quirks*
10230
10231 USB ZD1201 DRIVER
10232 L:      linux-wireless@vger.kernel.org
10233 W:      http://linux-lc100020.sourceforge.net
10234 S:      Orphan
10235 F:      drivers/net/wireless/zd1201.*
10236
10237 USB ZR364XX DRIVER
10238 M:      Antoine Jacquet <royale@zerezo.com>
10239 L:      linux-usb@vger.kernel.org
10240 L:      linux-media@vger.kernel.org
10241 T:      git git://linuxtv.org/media_tree.git
10242 W:      http://royale.zerezo.com/zr364xx/
10243 S:      Maintained
10244 F:      Documentation/video4linux/zr364xx.txt
10245 F:      drivers/media/usb/zr364xx/
10246
10247 USER-MODE LINUX (UML)
10248 M:      Jeff Dike <jdike@addtoit.com>
10249 M:      Richard Weinberger <richard@nod.at>
10250 L:      user-mode-linux-devel@lists.sourceforge.net
10251 L:      user-mode-linux-user@lists.sourceforge.net
10252 W:      http://user-mode-linux.sourceforge.net
10253 S:      Maintained
10254 F:      Documentation/virtual/uml/
10255 F:      arch/um/
10256 F:      arch/x86/um/
10257 F:      fs/hostfs/
10258 F:      fs/hppfs/
10259
10260 USERSPACE I/O (UIO)
10261 M:      "Hans J. Koch" <hjk@hansjkoch.de>
10262 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10263 S:      Maintained
10264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
10265 F:      Documentation/DocBook/uio-howto.tmpl
10266 F:      drivers/uio/
10267 F:      include/linux/uio*.h
10268
10269 UTIL-LINUX PACKAGE
10270 M:      Karel Zak <kzak@redhat.com>
10271 L:      util-linux@vger.kernel.org
10272 W:      http://en.wikipedia.org/wiki/Util-linux
10273 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
10274 S:      Maintained
10275
10276 UVESAFB DRIVER
10277 M:      Michal Januszewski <spock@gentoo.org>
10278 L:      linux-fbdev@vger.kernel.org
10279 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
10280 S:      Maintained
10281 F:      Documentation/fb/uvesafb.txt
10282 F:      drivers/video/fbdev/uvesafb.*
10283
10284 VFAT/FAT/MSDOS FILESYSTEM
10285 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
10286 S:      Maintained
10287 F:      Documentation/filesystems/vfat.txt
10288 F:      fs/fat/
10289
10290 VFIO DRIVER
10291 M:      Alex Williamson <alex.williamson@redhat.com>
10292 L:      kvm@vger.kernel.org
10293 S:      Maintained
10294 F:      Documentation/vfio.txt
10295 F:      drivers/vfio/
10296 F:      include/linux/vfio.h
10297 F:      include/uapi/linux/vfio.h
10298
10299 VIDEOBUF2 FRAMEWORK
10300 M:      Pawel Osciak <pawel@osciak.com>
10301 M:      Marek Szyprowski <m.szyprowski@samsung.com>
10302 M:      Kyungmin Park <kyungmin.park@samsung.com>
10303 L:      linux-media@vger.kernel.org
10304 S:      Maintained
10305 F:      drivers/media/v4l2-core/videobuf2-*
10306 F:      include/media/videobuf2-*
10307
10308 VIRTIO CONSOLE DRIVER
10309 M:      Amit Shah <amit.shah@redhat.com>
10310 L:      virtualization@lists.linux-foundation.org
10311 S:      Maintained
10312 F:      drivers/char/virtio_console.c
10313 F:      include/linux/virtio_console.h
10314 F:      include/uapi/linux/virtio_console.h
10315
10316 VIRTIO CORE, NET AND BLOCK DRIVERS
10317 M:      Rusty Russell <rusty@rustcorp.com.au>
10318 M:      "Michael S. Tsirkin" <mst@redhat.com>
10319 L:      virtualization@lists.linux-foundation.org
10320 S:      Maintained
10321 F:      drivers/virtio/
10322 F:      tools/virtio/
10323 F:      drivers/net/virtio_net.c
10324 F:      drivers/block/virtio_blk.c
10325 F:      include/linux/virtio_*.h
10326 F:      include/uapi/linux/virtio_*.h
10327
10328 VIRTIO HOST (VHOST)
10329 M:      "Michael S. Tsirkin" <mst@redhat.com>
10330 L:      kvm@vger.kernel.org
10331 L:      virtualization@lists.linux-foundation.org
10332 L:      netdev@vger.kernel.org
10333 S:      Maintained
10334 F:      drivers/vhost/
10335 F:      include/uapi/linux/vhost.h
10336
10337 VIA RHINE NETWORK DRIVER
10338 M:      Roger Luethi <rl@hellgate.ch>
10339 S:      Maintained
10340 F:      drivers/net/ethernet/via/via-rhine.c
10341
10342 VIA SD/MMC CARD CONTROLLER DRIVER
10343 M:      Bruce Chang <brucechang@via.com.tw>
10344 M:      Harald Welte <HaraldWelte@viatech.com>
10345 S:      Maintained
10346 F:      drivers/mmc/host/via-sdmmc.c
10347
10348 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
10349 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
10350 L:      linux-fbdev@vger.kernel.org
10351 S:      Maintained
10352 F:      include/linux/via-core.h
10353 F:      include/linux/via-gpio.h
10354 F:      include/linux/via_i2c.h
10355 F:      drivers/video/fbdev/via/
10356
10357 VIA VELOCITY NETWORK DRIVER
10358 M:      Francois Romieu <romieu@fr.zoreil.com>
10359 L:      netdev@vger.kernel.org
10360 S:      Maintained
10361 F:      drivers/net/ethernet/via/via-velocity.*
10362
10363 VIVID VIRTUAL VIDEO DRIVER
10364 M:      Hans Verkuil <hverkuil@xs4all.nl>
10365 L:      linux-media@vger.kernel.org
10366 T:      git git://linuxtv.org/media_tree.git
10367 W:      http://linuxtv.org
10368 S:      Maintained
10369 F:      drivers/media/platform/vivid/*
10370
10371 VLAN (802.1Q)
10372 M:      Patrick McHardy <kaber@trash.net>
10373 L:      netdev@vger.kernel.org
10374 S:      Maintained
10375 F:      drivers/net/macvlan.c
10376 F:      include/linux/if_*vlan.h
10377 F:      net/8021q/
10378
10379 VLYNQ BUS
10380 M:      Florian Fainelli <florian@openwrt.org>
10381 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
10382 S:      Maintained
10383 F:      drivers/vlynq/vlynq.c
10384 F:      include/linux/vlynq.h
10385
10386 VME SUBSYSTEM
10387 M:      Martyn Welch <martyn.welch@ge.com>
10388 M:      Manohar Vanga <manohar.vanga@gmail.com>
10389 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10390 L:      devel@driverdev.osuosl.org
10391 S:      Maintained
10392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10393 F:      Documentation/vme_api.txt
10394 F:      drivers/staging/vme/
10395 F:      drivers/vme/
10396 F:      include/linux/vme*
10397
10398 VMWARE HYPERVISOR INTERFACE
10399 M:      Alok Kataria <akataria@vmware.com>
10400 L:      virtualization@lists.linux-foundation.org
10401 S:      Supported
10402 F:      arch/x86/kernel/cpu/vmware.c
10403
10404 VMWARE BALLOON DRIVER
10405 M:      Xavier Deguillard <xdeguillard@vmware.com>
10406 M:      Philip Moltmann <moltmann@vmware.com>
10407 M:      "VMware, Inc." <pv-drivers@vmware.com>
10408 L:      linux-kernel@vger.kernel.org
10409 S:      Maintained
10410 F:      drivers/misc/vmw_balloon.c
10411
10412 VMWARE VMXNET3 ETHERNET DRIVER
10413 M:      Shreyas Bhatewara <sbhatewara@vmware.com>
10414 M:      "VMware, Inc." <pv-drivers@vmware.com>
10415 L:      netdev@vger.kernel.org
10416 S:      Maintained
10417 F:      drivers/net/vmxnet3/
10418
10419 VMware PVSCSI driver
10420 M:      Arvind Kumar <arvindkumar@vmware.com>
10421 M:      VMware PV-Drivers <pv-drivers@vmware.com>
10422 L:      linux-scsi@vger.kernel.org
10423 S:      Maintained
10424 F:      drivers/scsi/vmw_pvscsi.c
10425 F:      drivers/scsi/vmw_pvscsi.h
10426
10427 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
10428 M:      Liam Girdwood <lgirdwood@gmail.com>
10429 M:      Mark Brown <broonie@kernel.org>
10430 L:      linux-kernel@vger.kernel.org
10431 W:      http://opensource.wolfsonmicro.com/node/15
10432 W:      http://www.slimlogic.co.uk/?p=48
10433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
10434 S:      Supported
10435 F:      drivers/regulator/
10436 F:      include/linux/regulator/
10437
10438 VT1211 HARDWARE MONITOR DRIVER
10439 M:      Juerg Haefliger <juergh@gmail.com>
10440 L:      lm-sensors@lm-sensors.org
10441 S:      Maintained
10442 F:      Documentation/hwmon/vt1211
10443 F:      drivers/hwmon/vt1211.c
10444
10445 VT8231 HARDWARE MONITOR DRIVER
10446 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
10447 L:      lm-sensors@lm-sensors.org
10448 S:      Maintained
10449 F:      drivers/hwmon/vt8231.c
10450
10451 VUB300 USB to SDIO/SD/MMC bridge chip
10452 M:      Tony Olech <tony.olech@elandigitalsystems.com>
10453 L:      linux-mmc@vger.kernel.org
10454 L:      linux-usb@vger.kernel.org
10455 S:      Supported
10456 F:      drivers/mmc/host/vub300.c
10457
10458 W1 DALLAS'S 1-WIRE BUS
10459 M:      Evgeniy Polyakov <zbr@ioremap.net>
10460 S:      Maintained
10461 F:      Documentation/w1/
10462 F:      drivers/w1/
10463
10464 W83791D HARDWARE MONITORING DRIVER
10465 M:      Marc Hulsman <m.hulsman@tudelft.nl>
10466 L:      lm-sensors@lm-sensors.org
10467 S:      Maintained
10468 F:      Documentation/hwmon/w83791d
10469 F:      drivers/hwmon/w83791d.c
10470
10471 W83793 HARDWARE MONITORING DRIVER
10472 M:      Rudolf Marek <r.marek@assembler.cz>
10473 L:      lm-sensors@lm-sensors.org
10474 S:      Maintained
10475 F:      Documentation/hwmon/w83793
10476 F:      drivers/hwmon/w83793.c
10477
10478 W83795 HARDWARE MONITORING DRIVER
10479 M:      Jean Delvare <jdelvare@suse.de>
10480 L:      lm-sensors@lm-sensors.org
10481 S:      Maintained
10482 F:      drivers/hwmon/w83795.c
10483
10484 W83L51xD SD/MMC CARD INTERFACE DRIVER
10485 M:      Pierre Ossman <pierre@ossman.eu>
10486 S:      Maintained
10487 F:      drivers/mmc/host/wbsd.*
10488
10489 WACOM PROTOCOL 4 SERIAL TABLETS
10490 M:      Julian Squires <julian@cipht.net>
10491 M:      Hans de Goede <hdegoede@redhat.com>
10492 L:      linux-input@vger.kernel.org
10493 S:      Maintained
10494 F:      drivers/input/tablet/wacom_serial4.c
10495
10496 WATCHDOG DEVICE DRIVERS
10497 M:      Wim Van Sebroeck <wim@iguana.be>
10498 L:      linux-watchdog@vger.kernel.org
10499 W:      http://www.linux-watchdog.org/
10500 T:      git git://www.linux-watchdog.org/linux-watchdog.git
10501 S:      Maintained
10502 F:      Documentation/watchdog/
10503 F:      drivers/watchdog/
10504 F:      include/linux/watchdog.h
10505 F:      include/uapi/linux/watchdog.h
10506
10507 WD7000 SCSI DRIVER
10508 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
10509 L:      linux-scsi@vger.kernel.org
10510 S:      Maintained
10511 F:      drivers/scsi/wd7000.c
10512
10513 WIIMOTE HID DRIVER
10514 M:      David Herrmann <dh.herrmann@googlemail.com>
10515 L:      linux-input@vger.kernel.org
10516 S:      Maintained
10517 F:      drivers/hid/hid-wiimote*
10518
10519 WINBOND CIR DRIVER
10520 M:      David Härdeman <david@hardeman.nu>
10521 S:      Maintained
10522 F:      drivers/media/rc/winbond-cir.c
10523
10524 WIMAX STACK
10525 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
10526 M:      linux-wimax@intel.com
10527 L:     wimax@linuxwimax.org (subscribers-only)
10528 S:      Supported
10529 W:      http://linuxwimax.org
10530 F:      Documentation/wimax/README.wimax
10531 F:      include/linux/wimax/debug.h
10532 F:      include/net/wimax.h
10533 F:      include/uapi/linux/wimax.h
10534 F:      net/wimax/
10535
10536 WISTRON LAPTOP BUTTON DRIVER
10537 M:      Miloslav Trmac <mitr@volny.cz>
10538 S:      Maintained
10539 F:      drivers/input/misc/wistron_btns.c
10540
10541 WL3501 WIRELESS PCMCIA CARD DRIVER
10542 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
10543 L:      linux-wireless@vger.kernel.org
10544 W:      http://oops.ghostprotocols.net:81/blog
10545 S:      Maintained
10546 F:      drivers/net/wireless/wl3501*
10547
10548 WM97XX TOUCHSCREEN DRIVERS
10549 M:      Mark Brown <broonie@kernel.org>
10550 M:      Liam Girdwood <lrg@slimlogic.co.uk>
10551 L:      linux-input@vger.kernel.org
10552 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
10553 W:      http://opensource.wolfsonmicro.com/node/7
10554 S:      Supported
10555 F:      drivers/input/touchscreen/*wm97*
10556 F:      include/linux/wm97xx.h
10557
10558 WOLFSON MICROELECTRONICS DRIVERS
10559 L:      patches@opensource.wolfsonmicro.com
10560 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
10561 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
10562 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
10563 S:      Supported
10564 F:      Documentation/hwmon/wm83??
10565 F:      arch/arm/mach-s3c64xx/mach-crag6410*
10566 F:      drivers/clk/clk-wm83*.c
10567 F:      drivers/extcon/extcon-arizona.c
10568 F:      drivers/leds/leds-wm83*.c
10569 F:      drivers/gpio/gpio-*wm*.c
10570 F:      drivers/gpio/gpio-arizona.c
10571 F:      drivers/hwmon/wm83??-hwmon.c
10572 F:      drivers/input/misc/wm831x-on.c
10573 F:      drivers/input/touchscreen/wm831x-ts.c
10574 F:      drivers/input/touchscreen/wm97*.c
10575 F:      drivers/mfd/arizona*
10576 F:      drivers/mfd/wm*.c
10577 F:      drivers/power/wm83*.c
10578 F:      drivers/rtc/rtc-wm83*.c
10579 F:      drivers/regulator/wm8*.c
10580 F:      drivers/video/backlight/wm83*_bl.c
10581 F:      drivers/watchdog/wm83*_wdt.c
10582 F:      include/linux/mfd/arizona/
10583 F:      include/linux/mfd/wm831x/
10584 F:      include/linux/mfd/wm8350/
10585 F:      include/linux/mfd/wm8400*
10586 F:      include/linux/wm97xx.h
10587 F:      include/sound/wm????.h
10588 F:      sound/soc/codecs/arizona.?
10589 F:      sound/soc/codecs/wm*
10590
10591 WORKQUEUE
10592 M:      Tejun Heo <tj@kernel.org>
10593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
10594 S:      Maintained
10595 F:      include/linux/workqueue.h
10596 F:      kernel/workqueue.c
10597 F:      Documentation/workqueue.txt
10598
10599 X.25 NETWORK LAYER
10600 M:      Andrew Hendry <andrew.hendry@gmail.com>
10601 L:      linux-x25@vger.kernel.org
10602 S:      Odd Fixes
10603 F:      Documentation/networking/x25*
10604 F:      include/net/x25*
10605 F:      net/x25/
10606
10607 X86 ARCHITECTURE (32-BIT AND 64-BIT)
10608 M:      Thomas Gleixner <tglx@linutronix.de>
10609 M:      Ingo Molnar <mingo@redhat.com>
10610 M:      "H. Peter Anvin" <hpa@zytor.com>
10611 M:      x86@kernel.org
10612 L:      linux-kernel@vger.kernel.org
10613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
10614 S:      Maintained
10615 F:      Documentation/x86/
10616 F:      arch/x86/
10617
10618 X86 PLATFORM DRIVERS
10619 M:      Darren Hart <dvhart@infradead.org>
10620 L:      platform-driver-x86@vger.kernel.org
10621 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
10622 S:      Maintained
10623 F:      drivers/platform/x86/
10624
10625 X86 MCE INFRASTRUCTURE
10626 M:      Tony Luck <tony.luck@intel.com>
10627 M:      Borislav Petkov <bp@alien8.de>
10628 L:      linux-edac@vger.kernel.org
10629 S:      Maintained
10630 F:      arch/x86/kernel/cpu/mcheck/*
10631
10632 X86 VDSO
10633 M:      Andy Lutomirski <luto@amacapital.net>
10634 L:      linux-kernel@vger.kernel.org
10635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
10636 S:      Maintained
10637 F:      arch/x86/vdso/
10638
10639 XC2028/3028 TUNER DRIVER
10640 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10641 L:      linux-media@vger.kernel.org
10642 W:      http://linuxtv.org
10643 T:      git git://linuxtv.org/media_tree.git
10644 S:      Maintained
10645 F:      drivers/media/tuners/tuner-xc2028.*
10646
10647 XEN HYPERVISOR INTERFACE
10648 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10649 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
10650 M:      David Vrabel <david.vrabel@citrix.com>
10651 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
10653 S:      Supported
10654 F:      arch/x86/xen/
10655 F:      drivers/*/xen-*front.c
10656 F:      drivers/xen/
10657 F:      arch/x86/include/asm/xen/
10658 F:      include/xen/
10659 F:      include/uapi/xen/
10660
10661 XEN HYPERVISOR ARM
10662 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
10663 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10664 S:      Supported
10665 F:      arch/arm/xen/
10666 F:      arch/arm/include/asm/xen/
10667
10668 XEN HYPERVISOR ARM64
10669 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
10670 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10671 S:      Supported
10672 F:      arch/arm64/xen/
10673 F:      arch/arm64/include/asm/xen/
10674
10675 XEN NETWORK BACKEND DRIVER
10676 M:      Ian Campbell <ian.campbell@citrix.com>
10677 M:      Wei Liu <wei.liu2@citrix.com>
10678 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10679 L:      netdev@vger.kernel.org
10680 S:      Supported
10681 F:      drivers/net/xen-netback/*
10682
10683 XEN PCI SUBSYSTEM
10684 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10685 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10686 S:      Supported
10687 F:      arch/x86/pci/*xen*
10688 F:      drivers/pci/*xen*
10689
10690 XEN BLOCK SUBSYSTEM
10691 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10692 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
10693 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10694 S:      Supported
10695 F:      drivers/block/xen-blkback/*
10696 F:      drivers/block/xen*
10697
10698 XEN PVSCSI DRIVERS
10699 M:      Juergen Gross <jgross@suse.com>
10700 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10701 L:      linux-scsi@vger.kernel.org
10702 S:      Supported
10703 F:      drivers/scsi/xen-scsifront.c
10704 F:      drivers/xen/xen-scsiback.c
10705 F:      include/xen/interface/io/vscsiif.h
10706
10707 XEN SWIOTLB SUBSYSTEM
10708 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10709 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10710 S:      Supported
10711 F:      arch/x86/xen/*swiotlb*
10712 F:      drivers/xen/*swiotlb*
10713
10714 XFS FILESYSTEM
10715 P:      Silicon Graphics Inc
10716 M:      Dave Chinner <david@fromorbit.com>
10717 M:      xfs@oss.sgi.com
10718 L:      xfs@oss.sgi.com
10719 W:      http://oss.sgi.com/projects/xfs
10720 T:      git git://oss.sgi.com/xfs/xfs.git
10721 S:      Supported
10722 F:      Documentation/filesystems/xfs.txt
10723 F:      fs/xfs/
10724
10725 XILINX AXI ETHERNET DRIVER
10726 M:      Anirudha Sarangi <anirudh@xilinx.com>
10727 M:      John Linn <John.Linn@xilinx.com>
10728 S:      Maintained
10729 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
10730
10731 XILINX UARTLITE SERIAL DRIVER
10732 M:      Peter Korsgaard <jacmet@sunsite.dk>
10733 L:      linux-serial@vger.kernel.org
10734 S:      Maintained
10735 F:      drivers/tty/serial/uartlite.c
10736
10737 XILLYBUS DRIVER
10738 M:      Eli Billauer <eli.billauer@gmail.com>
10739 L:      linux-kernel@vger.kernel.org
10740 S:      Supported
10741 F:      drivers/char/xillybus/
10742
10743 XTENSA XTFPGA PLATFORM SUPPORT
10744 M:      Max Filippov <jcmvbkbc@gmail.com>
10745 L:      linux-xtensa@linux-xtensa.org
10746 S:      Maintained
10747 F:      drivers/spi/spi-xtensa-xtfpga.c
10748 F:      sound/soc/xtensa/xtfpga-i2s.c
10749
10750 YAM DRIVER FOR AX.25
10751 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
10752 L:      linux-hams@vger.kernel.org
10753 S:      Maintained
10754 F:      drivers/net/hamradio/yam*
10755 F:      include/linux/yam.h
10756
10757 YEALINK PHONE DRIVER
10758 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
10759 L:      usbb2k-api-dev@nongnu.org
10760 S:      Maintained
10761 F:      Documentation/input/yealink.txt
10762 F:      drivers/input/misc/yealink.*
10763
10764 Z8530 DRIVER FOR AX.25
10765 M:      Joerg Reuter <jreuter@yaina.de>
10766 W:      http://yaina.de/jreuter/
10767 W:      http://www.qsl.net/dl1bke/
10768 L:      linux-hams@vger.kernel.org
10769 S:      Maintained
10770 F:      Documentation/networking/z8530drv.txt
10771 F:      drivers/net/hamradio/*scc.c
10772 F:      drivers/net/hamradio/z8530.h
10773
10774 ZBUD COMPRESSED PAGE ALLOCATOR
10775 M:      Seth Jennings <sjennings@variantweb.net>
10776 L:      linux-mm@kvack.org
10777 S:      Maintained
10778 F:      mm/zbud.c
10779 F:      include/linux/zbud.h
10780
10781 ZD1211RW WIRELESS DRIVER
10782 M:      Daniel Drake <dsd@gentoo.org>
10783 M:      Ulrich Kunitz <kune@deine-taler.de>
10784 W:      http://zd1211.ath.cx/wiki/DriverRewrite
10785 L:      linux-wireless@vger.kernel.org
10786 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
10787 S:      Maintained
10788 F:      drivers/net/wireless/zd1211rw/
10789
10790 ZR36067 VIDEO FOR LINUX DRIVER
10791 L:      mjpeg-users@lists.sourceforge.net
10792 L:      linux-media@vger.kernel.org
10793 W:      http://mjpeg.sourceforge.net/driver-zoran/
10794 T:      hg http://linuxtv.org/hg/v4l-dvb
10795 S:      Odd Fixes
10796 F:      drivers/media/pci/zoran/
10797
10798 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
10799 M:      Minchan Kim <minchan@kernel.org>
10800 M:      Nitin Gupta <ngupta@vflare.org>
10801 L:      linux-kernel@vger.kernel.org
10802 S:      Maintained
10803 F:      drivers/block/zram/
10804 F:      Documentation/blockdev/zram.txt
10805
10806 ZS DECSTATION Z85C30 SERIAL DRIVER
10807 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10808 S:      Maintained
10809 F:      drivers/tty/serial/zs.*
10810
10811 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
10812 M:      Minchan Kim <minchan@kernel.org>
10813 M:      Nitin Gupta <ngupta@vflare.org>
10814 L:      linux-mm@kvack.org
10815 S:      Maintained
10816 F:      mm/zsmalloc.c
10817 F:      include/linux/zsmalloc.h
10818
10819 ZSWAP COMPRESSED SWAP CACHING
10820 M:      Seth Jennings <sjennings@variantweb.net>
10821 L:      linux-mm@kvack.org
10822 S:      Maintained
10823 F:      mm/zswap.c
10824
10825 THE REST
10826 M:      Linus Torvalds <torvalds@linux-foundation.org>
10827 L:      linux-kernel@vger.kernel.org
10828 Q:      http://patchwork.kernel.org/project/LKML/list/
10829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
10830 S:      Buried alive in reporters
10831 F:      *
10832 F:      */