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