OSDN Git Service

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