ata: add MAINTAINERS entry for libata PATA drivers
[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 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161
162 6PACK NETWORK DRIVER FOR AX.25
163 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
164 L:      linux-hams@vger.kernel.org
165 S:      Maintained
166 F:      drivers/net/hamradio/6pack.c
167
168 8169 10/100/1000 GIGABIT ETHERNET DRIVER
169 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
170 L:      netdev@vger.kernel.org
171 S:      Maintained
172 F:      drivers/net/ethernet/realtek/r8169.c
173
174 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
175 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
176 L:      linux-serial@vger.kernel.org
177 W:      http://serial.sourceforge.net
178 S:      Maintained
179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
180 F:      drivers/tty/serial/8250*
181 F:      include/linux/serial_8250.h
182
183 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
184 L:      netdev@vger.kernel.org
185 S:      Orphan / Obsolete
186 F:      drivers/net/ethernet/8390/
187
188 9P FILE SYSTEM
189 M:      Eric Van Hensbergen <ericvh@gmail.com>
190 M:      Ron Minnich <rminnich@sandia.gov>
191 M:      Latchesar Ionkov <lucho@ionkov.net>
192 L:      v9fs-developer@lists.sourceforge.net
193 W:      http://swik.net/v9fs
194 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
196 S:      Maintained
197 F:      Documentation/filesystems/9p.txt
198 F:      fs/9p/
199 F:      net/9p/
200 F:      include/net/9p/
201 F:      include/uapi/linux/virtio_9p.h
202 F:      include/trace/events/9p.h
203
204
205 A8293 MEDIA DRIVER
206 M:      Antti Palosaari <crope@iki.fi>
207 L:      linux-media@vger.kernel.org
208 W:      http://linuxtv.org/
209 W:      http://palosaari.fi/linux/
210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
211 T:      git git://linuxtv.org/anttip/media_tree.git
212 S:      Maintained
213 F:      drivers/media/dvb-frontends/a8293*
214
215 AACRAID SCSI RAID DRIVER
216 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
217 L:      linux-scsi@vger.kernel.org
218 W:      http://www.adaptec.com/
219 S:      Supported
220 F:      Documentation/scsi/aacraid.txt
221 F:      drivers/scsi/aacraid/
222
223 ABI/API
224 L:      linux-api@vger.kernel.org
225 F:      Documentation/ABI/
226 F:      include/linux/syscalls.h
227 F:      include/uapi/
228 F:      kernel/sys_ni.c
229
230 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
231 M:      Hans de Goede <hdegoede@redhat.com>
232 L:      lm-sensors@lm-sensors.org
233 S:      Maintained
234 F:      drivers/hwmon/abituguru.c
235
236 ABIT UGURU 3 HARDWARE MONITOR DRIVER
237 M:      Alistair John Strachan <alistair@devzero.co.uk>
238 L:      lm-sensors@lm-sensors.org
239 S:      Maintained
240 F:      drivers/hwmon/abituguru3.c
241
242 ACENIC DRIVER
243 M:      Jes Sorensen <jes@trained-monkey.org>
244 L:      linux-acenic@sunsite.dk
245 S:      Maintained
246 F:      drivers/net/ethernet/alteon/acenic*
247
248 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
249 M:      Peter Feuerer <peter@piie.net>
250 L:      platform-driver-x86@vger.kernel.org
251 W:      http://piie.net/?section=acerhdf
252 S:      Maintained
253 F:      drivers/platform/x86/acerhdf.c
254
255 ACER WMI LAPTOP EXTRAS
256 M:      "Lee, Chun-Yi" <jlee@suse.com>
257 L:      platform-driver-x86@vger.kernel.org
258 S:      Maintained
259 F:      drivers/platform/x86/acer-wmi.c
260
261 ACPI
262 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
263 M:      Len Brown <lenb@kernel.org>
264 L:      linux-acpi@vger.kernel.org
265 W:      https://01.org/linux-acpi
266 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
268 S:      Supported
269 F:      drivers/acpi/
270 F:      drivers/pnp/pnpacpi/
271 F:      include/linux/acpi.h
272 F:      include/acpi/
273 F:      Documentation/acpi
274 F:      Documentation/ABI/testing/sysfs-bus-acpi
275 F:      drivers/pci/*acpi*
276 F:      drivers/pci/*/*acpi*
277 F:      drivers/pci/*/*/*acpi*
278 F:      tools/power/acpi
279
280 ACPI COMPONENT ARCHITECTURE (ACPICA)
281 M:      Robert Moore <robert.moore@intel.com>
282 M:      Lv Zheng <lv.zheng@intel.com>
283 M:      Rafael J. Wysocki <rafael.j.wysocki@intel.com>
284 L:      linux-acpi@vger.kernel.org
285 L:      devel@acpica.org
286 W:      https://acpica.org/
287 W:      https://github.com/acpica/acpica/
288 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
290 S:      Supported
291 F:      drivers/acpi/acpica/
292 F:      include/acpi/
293 F:      tools/power/acpi/
294
295 ACPI FAN DRIVER
296 M:      Zhang Rui <rui.zhang@intel.com>
297 L:      linux-acpi@vger.kernel.org
298 W:      https://01.org/linux-acpi
299 S:      Supported
300 F:      drivers/acpi/fan.c
301
302 ACPI THERMAL DRIVER
303 M:      Zhang Rui <rui.zhang@intel.com>
304 L:      linux-acpi@vger.kernel.org
305 W:      https://01.org/linux-acpi
306 S:      Supported
307 F:      drivers/acpi/*thermal*
308
309 ACPI VIDEO DRIVER
310 M:      Zhang Rui <rui.zhang@intel.com>
311 L:      linux-acpi@vger.kernel.org
312 W:      https://01.org/linux-acpi
313 S:      Supported
314 F:      drivers/acpi/video.c
315
316 ACPI WMI DRIVER
317 L:      platform-driver-x86@vger.kernel.org
318 S:      Orphan
319 F:      drivers/platform/x86/wmi.c
320
321 AD1889 ALSA SOUND DRIVER
322 M:      Thibaut Varene <T-Bone@parisc-linux.org>
323 W:      http://wiki.parisc-linux.org/AD1889
324 L:      linux-parisc@vger.kernel.org
325 S:      Maintained
326 F:      sound/pci/ad1889.*
327
328 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
329 M:      Michael Hennerich <michael.hennerich@analog.com>
330 W:      http://wiki.analog.com/AD5254
331 W:      http://ez.analog.com/community/linux-device-drivers
332 S:      Supported
333 F:      drivers/misc/ad525x_dpot.c
334
335 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
336 M:      Michael Hennerich <michael.hennerich@analog.com>
337 W:      http://wiki.analog.com/AD5398
338 W:      http://ez.analog.com/community/linux-device-drivers
339 S:      Supported
340 F:      drivers/regulator/ad5398.c
341
342 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
343 M:      Michael Hennerich <michael.hennerich@analog.com>
344 W:      http://wiki.analog.com/AD7142
345 W:      http://ez.analog.com/community/linux-device-drivers
346 S:      Supported
347 F:      drivers/input/misc/ad714x.c
348
349 AD7877 TOUCHSCREEN DRIVER
350 M:      Michael Hennerich <michael.hennerich@analog.com>
351 W:      http://wiki.analog.com/AD7877
352 W:      http://ez.analog.com/community/linux-device-drivers
353 S:      Supported
354 F:      drivers/input/touchscreen/ad7877.c
355
356 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
357 M:      Michael Hennerich <michael.hennerich@analog.com>
358 W:      http://wiki.analog.com/AD7879
359 W:      http://ez.analog.com/community/linux-device-drivers
360 S:      Supported
361 F:      drivers/input/touchscreen/ad7879.c
362
363 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
364 M:      Jiri Kosina <jkosina@suse.cz>
365 S:      Maintained
366
367 ADM1025 HARDWARE MONITOR DRIVER
368 M:      Jean Delvare <jdelvare@suse.de>
369 L:      lm-sensors@lm-sensors.org
370 S:      Maintained
371 F:      Documentation/hwmon/adm1025
372 F:      drivers/hwmon/adm1025.c
373
374 ADM1029 HARDWARE MONITOR DRIVER
375 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
376 L:      lm-sensors@lm-sensors.org
377 S:      Maintained
378 F:      drivers/hwmon/adm1029.c
379
380 ADM8211 WIRELESS DRIVER
381 L:      linux-wireless@vger.kernel.org
382 W:      http://wireless.kernel.org/
383 S:      Orphan
384 F:      drivers/net/wireless/adm8211.*
385
386 ADP1653 FLASH CONTROLLER DRIVER
387 M:      Sakari Ailus <sakari.ailus@iki.fi>
388 L:      linux-media@vger.kernel.org
389 S:      Maintained
390 F:      drivers/media/i2c/adp1653.c
391 F:      include/media/adp1653.h
392
393 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
394 M:      Michael Hennerich <michael.hennerich@analog.com>
395 W:      http://wiki.analog.com/ADP5520
396 W:      http://ez.analog.com/community/linux-device-drivers
397 S:      Supported
398 F:      drivers/mfd/adp5520.c
399 F:      drivers/video/backlight/adp5520_bl.c
400 F:      drivers/leds/leds-adp5520.c
401 F:      drivers/gpio/gpio-adp5520.c
402 F:      drivers/input/keyboard/adp5520-keys.c
403
404 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
405 M:      Michael Hennerich <michael.hennerich@analog.com>
406 W:      http://wiki.analog.com/ADP5588
407 W:      http://ez.analog.com/community/linux-device-drivers
408 S:      Supported
409 F:      drivers/input/keyboard/adp5588-keys.c
410 F:      drivers/gpio/gpio-adp5588.c
411
412 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
413 M:      Michael Hennerich <michael.hennerich@analog.com>
414 W:      http://wiki.analog.com/ADP8860
415 W:      http://ez.analog.com/community/linux-device-drivers
416 S:      Supported
417 F:      drivers/video/backlight/adp8860_bl.c
418
419 ADS1015 HARDWARE MONITOR DRIVER
420 M:      Dirk Eibach <eibach@gdsys.de>
421 L:      lm-sensors@lm-sensors.org
422 S:      Maintained
423 F:      Documentation/hwmon/ads1015
424 F:      drivers/hwmon/ads1015.c
425 F:      include/linux/i2c/ads1015.h
426
427 ADT746X FAN DRIVER
428 M:      Colin Leroy <colin@colino.net>
429 S:      Maintained
430 F:      drivers/macintosh/therm_adt746x.c
431
432 ADT7475 HARDWARE MONITOR DRIVER
433 M:      Jean Delvare <jdelvare@suse.de>
434 L:      lm-sensors@lm-sensors.org
435 S:      Maintained
436 F:      Documentation/hwmon/adt7475
437 F:      drivers/hwmon/adt7475.c
438
439 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
440 M:      Michael Hennerich <michael.hennerich@analog.com>
441 W:      http://wiki.analog.com/ADXL345
442 W:      http://ez.analog.com/community/linux-device-drivers
443 S:      Supported
444 F:      drivers/input/misc/adxl34x.c
445
446 ADVANSYS SCSI DRIVER
447 M:      Matthew Wilcox <matthew@wil.cx>
448 L:      linux-scsi@vger.kernel.org
449 S:      Maintained
450 F:      Documentation/scsi/advansys.txt
451 F:      drivers/scsi/advansys.c
452
453 AEDSP16 DRIVER
454 M:      Riccardo Facchetti <fizban@tin.it>
455 S:      Maintained
456 F:      sound/oss/aedsp16.c
457
458 AF9013 MEDIA DRIVER
459 M:      Antti Palosaari <crope@iki.fi>
460 L:      linux-media@vger.kernel.org
461 W:      http://linuxtv.org/
462 W:      http://palosaari.fi/linux/
463 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
464 T:      git git://linuxtv.org/anttip/media_tree.git
465 S:      Maintained
466 F:      drivers/media/dvb-frontends/af9013*
467
468 AF9033 MEDIA DRIVER
469 M:      Antti Palosaari <crope@iki.fi>
470 L:      linux-media@vger.kernel.org
471 W:      http://linuxtv.org/
472 W:      http://palosaari.fi/linux/
473 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
474 T:      git git://linuxtv.org/anttip/media_tree.git
475 S:      Maintained
476 F:      drivers/media/dvb-frontends/af9033*
477
478 AFFS FILE SYSTEM
479 L:      linux-fsdevel@vger.kernel.org
480 S:      Orphan
481 F:      Documentation/filesystems/affs.txt
482 F:      fs/affs/
483
484 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
485 M:      David Howells <dhowells@redhat.com>
486 L:      linux-afs@lists.infradead.org
487 S:      Supported
488 F:      fs/afs/
489 F:      include/net/af_rxrpc.h
490 F:      net/rxrpc/af_rxrpc.c
491
492 AGPGART DRIVER
493 M:      David Airlie <airlied@linux.ie>
494 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
495 S:      Maintained
496 F:      drivers/char/agp/
497 F:      include/linux/agp*
498 F:      include/uapi/linux/agp*
499
500 AHA152X SCSI DRIVER
501 M:      "Juergen E. Fischer" <fischer@norbit.de>
502 L:      linux-scsi@vger.kernel.org
503 S:      Maintained
504 F:      drivers/scsi/aha152x*
505 F:      drivers/scsi/pcmcia/aha152x*
506
507 AIC7XXX / AIC79XX SCSI DRIVER
508 M:      Hannes Reinecke <hare@suse.de>
509 L:      linux-scsi@vger.kernel.org
510 S:      Maintained
511 F:      drivers/scsi/aic7xxx/
512
513 AIMSLAB FM RADIO RECEIVER DRIVER
514 M:      Hans Verkuil <hverkuil@xs4all.nl>
515 L:      linux-media@vger.kernel.org
516 T:      git git://linuxtv.org/media_tree.git
517 W:      http://linuxtv.org
518 S:      Maintained
519 F:      drivers/media/radio/radio-aimslab*
520
521 AIO
522 M:      Benjamin LaHaise <bcrl@kvack.org>
523 L:      linux-aio@kvack.org
524 S:      Supported
525 F:      fs/aio.c
526 F:      include/linux/*aio*.h
527
528 AIRSPY MEDIA DRIVER
529 M:      Antti Palosaari <crope@iki.fi>
530 L:      linux-media@vger.kernel.org
531 W:      http://linuxtv.org/
532 W:      http://palosaari.fi/linux/
533 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
534 T:      git git://linuxtv.org/anttip/media_tree.git
535 S:      Maintained
536 F:      drivers/media/usb/airspy/
537
538 ALCATEL SPEEDTOUCH USB DRIVER
539 M:      Duncan Sands <duncan.sands@free.fr>
540 L:      linux-usb@vger.kernel.org
541 W:      http://www.linux-usb.org/SpeedTouch/
542 S:      Maintained
543 F:      drivers/usb/atm/speedtch.c
544 F:      drivers/usb/atm/usbatm.c
545
546 ALCHEMY AU1XX0 MMC DRIVER
547 M:      Manuel Lauss <manuel.lauss@gmail.com>
548 S:      Maintained
549 F:      drivers/mmc/host/au1xmmc.c
550
551 ALI1563 I2C DRIVER
552 M:      Rudolf Marek <r.marek@assembler.cz>
553 L:      linux-i2c@vger.kernel.org
554 S:      Maintained
555 F:      Documentation/i2c/busses/i2c-ali1563
556 F:      drivers/i2c/busses/i2c-ali1563.c
557
558 ALPHA PORT
559 M:      Richard Henderson <rth@twiddle.net>
560 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
561 M:      Matt Turner <mattst88@gmail.com>
562 S:      Odd Fixes
563 L:      linux-alpha@vger.kernel.org
564 F:      arch/alpha/
565
566 ALTERA TRIPLE SPEED ETHERNET DRIVER
567 M:      Vince Bridgers <vbridger@opensource.altera.com>
568 L:      netdev@vger.kernel.org
569 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
570 S:      Maintained
571 F:      drivers/net/ethernet/altera/
572
573 ALTERA UART/JTAG UART SERIAL DRIVERS
574 M:      Tobias Klauser <tklauser@distanz.ch>
575 L:      linux-serial@vger.kernel.org
576 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
577 S:      Maintained
578 F:      drivers/tty/serial/altera_uart.c
579 F:      drivers/tty/serial/altera_jtaguart.c
580 F:      include/linux/altera_uart.h
581 F:      include/linux/altera_jtaguart.h
582
583 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
584 M:      Tom Lendacky <thomas.lendacky@amd.com>
585 L:      linux-crypto@vger.kernel.org
586 S:      Supported
587 F:      drivers/crypto/ccp/
588 F:      include/linux/ccp.h
589
590 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
591 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
592 L:      lm-sensors@lm-sensors.org
593 S:      Maintained
594 F:      Documentation/hwmon/fam15h_power
595 F:      drivers/hwmon/fam15h_power.c
596
597 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
598 M:      Thomas Dahlmann <dahlmann.thomas@arcor.de>
599 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
600 S:      Supported
601 F:      drivers/usb/gadget/udc/amd5536udc.*
602
603 AMD GEODE PROCESSOR/CHIPSET SUPPORT
604 P:      Andres Salomon <dilinger@queued.net>
605 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
606 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
607 S:      Supported
608 F:      drivers/char/hw_random/geode-rng.c
609 F:      drivers/crypto/geode*
610 F:      drivers/video/fbdev/geode/
611 F:      arch/x86/include/asm/geode.h
612
613 AMD IOMMU (AMD-VI)
614 M:      Joerg Roedel <joro@8bytes.org>
615 L:      iommu@lists.linux-foundation.org
616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
617 S:      Maintained
618 F:      drivers/iommu/amd_iommu*.[ch]
619 F:      include/linux/amd-iommu.h
620
621 AMD KFD
622 M:      Oded Gabbay <oded.gabbay@amd.com>
623 L:      dri-devel@lists.freedesktop.org
624 T:      git git://people.freedesktop.org/~gabbayo/linux.git
625 S:      Supported
626 F:      drivers/gpu/drm/amd/amdkfd/
627 F:      drivers/gpu/drm/radeon/radeon_kfd.c
628 F:      drivers/gpu/drm/radeon/radeon_kfd.h
629 F:      include/uapi/linux/kfd_ioctl.h
630
631 AMD MICROCODE UPDATE SUPPORT
632 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
633 L:      amd64-microcode@amd64.org
634 S:      Maintained
635 F:      arch/x86/kernel/cpu/microcode/amd*
636
637 AMD XGBE DRIVER
638 M:      Tom Lendacky <thomas.lendacky@amd.com>
639 L:      netdev@vger.kernel.org
640 S:      Supported
641 F:      drivers/net/ethernet/amd/xgbe/
642 F:      drivers/net/phy/amd-xgbe-phy.c
643
644 AMS (Apple Motion Sensor) DRIVER
645 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
646 S:      Supported
647 F:      drivers/macintosh/ams/
648
649 AMSO1100 RNIC DRIVER
650 M:      Tom Tucker <tom@opengridcomputing.com>
651 M:      Steve Wise <swise@opengridcomputing.com>
652 L:      linux-rdma@vger.kernel.org
653 S:      Maintained
654 F:      drivers/infiniband/hw/amso1100/
655
656 ANALOG DEVICES INC AD9389B DRIVER
657 M:      Hans Verkuil <hans.verkuil@cisco.com>
658 L:      linux-media@vger.kernel.org
659 S:      Maintained
660 F:      drivers/media/i2c/ad9389b*
661
662 ANALOG DEVICES INC ADV7511 DRIVER
663 M:      Hans Verkuil <hans.verkuil@cisco.com>
664 L:      linux-media@vger.kernel.org
665 S:      Maintained
666 F:      drivers/media/i2c/adv7511*
667
668 ANALOG DEVICES INC ADV7604 DRIVER
669 M:      Hans Verkuil <hans.verkuil@cisco.com>
670 L:      linux-media@vger.kernel.org
671 S:      Maintained
672 F:      drivers/media/i2c/adv7604*
673
674 ANALOG DEVICES INC ADV7842 DRIVER
675 M:      Hans Verkuil <hans.verkuil@cisco.com>
676 L:      linux-media@vger.kernel.org
677 S:      Maintained
678 F:      drivers/media/i2c/adv7842*
679
680 ANALOG DEVICES INC ASOC CODEC DRIVERS
681 M:      Lars-Peter Clausen <lars@metafoo.de>
682 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
683 W:      http://wiki.analog.com/
684 W:      http://ez.analog.com/community/linux-device-drivers
685 S:      Supported
686 F:      sound/soc/codecs/adau*
687 F:      sound/soc/codecs/adav*
688 F:      sound/soc/codecs/ad1*
689 F:      sound/soc/codecs/ad7*
690 F:      sound/soc/codecs/ssm*
691 F:      sound/soc/codecs/sigmadsp.*
692
693 ANALOG DEVICES INC ASOC DRIVERS
694 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
695 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
696 W:      http://blackfin.uclinux.org/
697 S:      Supported
698 F:      sound/soc/blackfin/*
699  
700 ANALOG DEVICES INC IIO DRIVERS
701 M:      Lars-Peter Clausen <lars@metafoo.de>
702 M:      Michael Hennerich <Michael.Hennerich@analog.com>
703 W:      http://wiki.analog.com/
704 W:      http://ez.analog.com/community/linux-device-drivers
705 S:      Supported
706 F:      drivers/iio/*/ad*
707 X:      drivers/iio/*/adjd*
708 F:      drivers/staging/iio/*/ad*
709 F:      staging/iio/trigger/iio-trig-bfin-timer.c
710
711 AOA (Apple Onboard Audio) ALSA DRIVER
712 M:      Johannes Berg <johannes@sipsolutions.net>
713 L:      linuxppc-dev@lists.ozlabs.org
714 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
715 S:      Maintained
716 F:      sound/aoa/
717
718 APM DRIVER
719 M:      Jiri Kosina <jkosina@suse.cz>
720 S:      Odd fixes
721 F:      arch/x86/kernel/apm_32.c
722 F:      include/linux/apm_bios.h
723 F:      include/uapi/linux/apm_bios.h
724 F:      drivers/char/apm-emulation.c
725
726 APPLE BCM5974 MULTITOUCH DRIVER
727 M:      Henrik Rydberg <rydberg@euromail.se>
728 L:      linux-input@vger.kernel.org
729 S:      Maintained
730 F:      drivers/input/mouse/bcm5974.c
731
732 APPLE SMC DRIVER
733 M:      Henrik Rydberg <rydberg@euromail.se>
734 L:      lm-sensors@lm-sensors.org
735 S:      Maintained
736 F:      drivers/hwmon/applesmc.c
737
738 APPLETALK NETWORK LAYER
739 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
740 S:      Maintained
741 F:      drivers/net/appletalk/
742 F:      net/appletalk/
743
744 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
745 M:      Iyappan Subramanian <isubramanian@apm.com>
746 M:      Keyur Chudgar <kchudgar@apm.com>
747 S:      Supported
748 F:      drivers/net/ethernet/apm/xgene/
749 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
750
751 APTINA CAMERA SENSOR PLL
752 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
753 L:      linux-media@vger.kernel.org
754 S:      Maintained
755 F:      drivers/media/i2c/aptina-pll.*
756
757 ARC FRAMEBUFFER DRIVER
758 M:      Jaya Kumar <jayalk@intworks.biz>
759 S:      Maintained
760 F:      drivers/video/fbdev/arcfb.c
761 F:      drivers/video/fbdev/core/fb_defio.c
762
763 ARM MFM AND FLOPPY DRIVERS
764 M:      Ian Molton <spyro@f2s.com>
765 S:      Maintained
766 F:      arch/arm/lib/floppydma.S
767 F:      arch/arm/include/asm/floppy.h
768
769 ARM PMU PROFILING AND DEBUGGING
770 M:      Will Deacon <will.deacon@arm.com>
771 S:      Maintained
772 F:      arch/arm/kernel/perf_event*
773 F:      arch/arm/oprofile/common.c
774 F:      arch/arm/include/asm/pmu.h
775 F:      arch/arm/kernel/hw_breakpoint.c
776 F:      arch/arm/include/asm/hw_breakpoint.h
777
778 ARM PORT
779 M:      Russell King <linux@arm.linux.org.uk>
780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
781 W:      http://www.arm.linux.org.uk/
782 S:      Maintained
783 F:      arch/arm/
784
785 ARM SUB-ARCHITECTURES
786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
787 S:      Maintained
788 F:      arch/arm/mach-*/
789 F:      arch/arm/plat-*/
790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
791
792 ARM PRIMECELL AACI PL041 DRIVER
793 M:      Russell King <linux@arm.linux.org.uk>
794 S:      Maintained
795 F:      sound/arm/aaci.*
796
797 ARM PRIMECELL CLCD PL110 DRIVER
798 M:      Russell King <linux@arm.linux.org.uk>
799 S:      Maintained
800 F:      drivers/video/fbdev/amba-clcd.*
801
802 ARM PRIMECELL KMI PL050 DRIVER
803 M:      Russell King <linux@arm.linux.org.uk>
804 S:      Maintained
805 F:      drivers/input/serio/ambakmi.*
806 F:      include/linux/amba/kmi.h
807
808 ARM PRIMECELL MMCI PL180/1 DRIVER
809 M:      Russell King <linux@arm.linux.org.uk>
810 S:      Maintained
811 F:      drivers/mmc/host/mmci.*
812 F:      include/linux/amba/mmci.h
813
814 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
815 M:      Russell King <linux@arm.linux.org.uk>
816 S:      Maintained
817 F:      drivers/tty/serial/amba-pl01*.c
818 F:      include/linux/amba/serial.h
819
820 ARM PRIMECELL BUS SUPPORT
821 M:      Russell King <linux@arm.linux.org.uk>
822 S:      Maintained
823 F:      drivers/amba/
824 F:      include/linux/amba/bus.h
825
826 ARM/ADS SPHERE MACHINE SUPPORT
827 M:      Lennert Buytenhek <kernel@wantstofly.org>
828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
829 S:      Maintained
830
831 ARM/AFEB9260 MACHINE SUPPORT
832 M:      Sergey Lapin <slapin@ossfans.org>
833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
834 S:      Maintained
835
836 ARM/AJECO 1ARM MACHINE SUPPORT
837 M:      Lennert Buytenhek <kernel@wantstofly.org>
838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
839 S:      Maintained
840
841 ARM/Allwinner A1X SoC support
842 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
844 S:      Maintained
845 N:      sun[x4567]i
846
847 ARM/Allwinner SoC Clock Support
848 M:      Emilio López <emilio@elopez.com.ar>
849 S:      Maintained
850 F:      drivers/clk/sunxi/
851
852 ARM/Amlogic MesonX SoC support
853 M:      Carlo Caione <carlo@caione.org>
854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
855 S:      Maintained
856 F:      drivers/media/rc/meson-ir.c
857 N:      meson[x68]
858
859 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
860 M:      Andrew Victor <linux@maxim.org.za>
861 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
862 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
864 W:      http://maxim.org.za/at91_26.html
865 W:      http://www.linux4sam.org
866 S:      Supported
867 F:      arch/arm/mach-at91/
868 F:      include/soc/at91/
869 F:      arch/arm/boot/dts/at91*.dts
870 F:      arch/arm/boot/dts/at91*.dtsi
871 F:      arch/arm/boot/dts/sama*.dts
872 F:      arch/arm/boot/dts/sama*.dtsi
873
874 ARM/ATMEL AT91 Clock Support
875 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
876 S:      Maintained
877 F:      drivers/clk/at91
878
879 ARM/CALXEDA HIGHBANK ARCHITECTURE
880 M:      Rob Herring <robh@kernel.org>
881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
882 S:      Maintained
883 F:      arch/arm/mach-highbank/
884
885 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
886 M:      Krzysztof Halasa <khalasa@piap.pl>
887 S:      Maintained
888 F:      arch/arm/mach-cns3xxx/
889
890 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
891 M:      Alexander Shiyan <shc_work@mail.ru>
892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
893 S:      Odd Fixes
894 N:      clps711x
895
896 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
897 M:      Hartley Sweeten <hsweeten@visionengravers.com>
898 M:      Ryan Mallon <rmallon@gmail.com>
899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
900 S:      Maintained
901 F:      arch/arm/mach-ep93xx/
902 F:      arch/arm/mach-ep93xx/include/mach/
903
904 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
905 M:      Lennert Buytenhek <kernel@wantstofly.org>
906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
907 S:      Maintained
908
909 ARM/CLKDEV SUPPORT
910 M:      Russell King <linux@arm.linux.org.uk>
911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
912 S:      Maintained
913 F:      arch/arm/include/asm/clkdev.h
914 F:      drivers/clk/clkdev.c
915
916 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
917 M:      Mike Rapoport <mike@compulab.co.il>
918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
919 S:      Maintained
920
921 ARM/CONTEC MICRO9 MACHINE SUPPORT
922 M:      Hubert Feurstein <hubert.feurstein@contec.at>
923 S:      Maintained
924 F:      arch/arm/mach-ep93xx/micro9.c
925
926 ARM/CORESIGHT FRAMEWORK AND DRIVERS
927 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
929 S:      Maintained
930 F:      drivers/coresight/*
931 F:      Documentation/trace/coresight.txt
932 F:      Documentation/devicetree/bindings/arm/coresight.txt
933 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
934
935 ARM/CORGI MACHINE SUPPORT
936 M:      Richard Purdie <rpurdie@rpsys.net>
937 S:      Maintained
938
939 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
940 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
942 T:      git git://git.berlios.de/gemini-board
943 S:      Maintained
944 F:      arch/arm/mach-gemini/
945
946 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
947 M:      Barry Song <baohua@kernel.org>
948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
950 S:      Maintained
951 F:      arch/arm/mach-prima2/
952 F:      drivers/clk/sirf/
953 F:      drivers/clocksource/timer-prima2.c
954 F:      drivers/clocksource/timer-marco.c
955 N:      [^a-z]sirf
956
957 ARM/EBSA110 MACHINE SUPPORT
958 M:      Russell King <linux@arm.linux.org.uk>
959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
960 W:      http://www.arm.linux.org.uk/
961 S:      Maintained
962 F:      arch/arm/mach-ebsa110/
963 F:      drivers/net/ethernet/amd/am79c961a.*
964
965 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
966 M:      Uwe Kleine-König <kernel@pengutronix.de>
967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968 S:      Maintained
969 N:      efm32
970
971 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
972 M:      Daniel Ribeiro <drwyrm@gmail.com>
973 M:      Stefan Schmidt <stefan@openezx.org>
974 M:      Harald Welte <laforge@openezx.org>
975 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
976 W:      http://www.openezx.org/
977 S:      Maintained
978 T:      topgit git://git.openezx.org/openezx.git
979 F:      arch/arm/mach-pxa/ezx.c
980
981 ARM/FARADAY FA526 PORT
982 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
984 S:      Maintained
985 T:      git git://git.berlios.de/gemini-board
986 F:      arch/arm/mm/*-fa*
987
988 ARM/FOOTBRIDGE ARCHITECTURE
989 M:      Russell King <linux@arm.linux.org.uk>
990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
991 W:      http://www.arm.linux.org.uk/
992 S:      Maintained
993 F:      arch/arm/include/asm/hardware/dec21285.h
994 F:      arch/arm/mach-footbridge/
995
996 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
997 M:      Shawn Guo <shawn.guo@linaro.org>
998 M:      Sascha Hauer <kernel@pengutronix.de>
999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1000 S:      Maintained
1001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1002 F:      arch/arm/mach-imx/
1003 F:      arch/arm/mach-mxs/
1004 F:      arch/arm/boot/dts/imx*
1005 F:      arch/arm/configs/imx*_defconfig
1006
1007 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1008 M:      Lennert Buytenhek <kernel@wantstofly.org>
1009 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1010 S:      Maintained
1011
1012 ARM/GUMSTIX MACHINE SUPPORT
1013 M:      Steve Sakoman <sakoman@gmail.com>
1014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1015 S:      Maintained
1016
1017 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1018 M:      Philipp Zabel <philipp.zabel@gmail.com>
1019 M:      Paul Parsons <lost.distance@yahoo.com>
1020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1021 S:      Maintained
1022 F:      arch/arm/mach-pxa/hx4700.c
1023 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1024 F:      sound/soc/pxa/hx4700.c
1025
1026 ARM/HISILICON SOC SUPPORT
1027 M:      Wei Xu <xuwei5@hisilicon.com>
1028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1029 W:      http://www.hisilicon.com
1030 S:      Supported
1031 T:      git git://github.com/hisilicon/linux-hisi.git
1032 F:      arch/arm/mach-hisi/
1033
1034 ARM/HP JORNADA 7XX MACHINE SUPPORT
1035 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1036 W:      www.jlime.com
1037 S:      Maintained
1038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1039 F:      arch/arm/mach-sa1100/jornada720.c
1040 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1041
1042 ARM/IGEP MACHINE SUPPORT
1043 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1044 M:      Javier Martinez Canillas <javier@dowhile0.org>
1045 L:      linux-omap@vger.kernel.org
1046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1047 S:      Maintained
1048 F:      arch/arm/boot/dts/omap3-igep*
1049
1050 ARM/INCOME PXA270 SUPPORT
1051 M:      Marek Vasut <marek.vasut@gmail.com>
1052 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1053 S:      Maintained
1054 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1055
1056 ARM/INTEL IOP32X ARM ARCHITECTURE
1057 M:      Lennert Buytenhek <kernel@wantstofly.org>
1058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1059 S:      Maintained
1060
1061 ARM/INTEL IOP33X ARM ARCHITECTURE
1062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1063 S:      Orphan
1064
1065 ARM/INTEL IOP13XX ARM ARCHITECTURE
1066 M:      Lennert Buytenhek <kernel@wantstofly.org>
1067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1068 S:      Maintained
1069
1070 ARM/INTEL IQ81342EX MACHINE SUPPORT
1071 M:      Lennert Buytenhek <kernel@wantstofly.org>
1072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1073 S:      Maintained
1074
1075 ARM/INTEL IXDP2850 MACHINE SUPPORT
1076 M:      Lennert Buytenhek <kernel@wantstofly.org>
1077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1078 S:      Maintained
1079
1080 ARM/INTEL IXP4XX ARM ARCHITECTURE
1081 M:      Imre Kaloz <kaloz@openwrt.org>
1082 M:      Krzysztof Halasa <khalasa@piap.pl>
1083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1084 S:      Maintained
1085 F:      arch/arm/mach-ixp4xx/
1086
1087 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1088 M:      Jonathan Cameron <jic23@cam.ac.uk>
1089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090 S:      Maintained
1091 F:      arch/arm/mach-pxa/stargate2.c
1092 F:      drivers/pcmcia/pxa2xx_stargate2.c
1093
1094 ARM/INTEL XSC3 (MANZANO) ARM CORE
1095 M:      Lennert Buytenhek <kernel@wantstofly.org>
1096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1097 S:      Maintained
1098
1099 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1100 M:      Lennert Buytenhek <kernel@wantstofly.org>
1101 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1102 S:      Maintained
1103
1104 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1105 M:      Santosh Shilimkar <ssantosh@kernel.org>
1106 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1107 S:      Maintained
1108 F:      arch/arm/mach-keystone/
1109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1110
1111 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1112 M:      Santosh Shilimkar <ssantosh@kernel.org>
1113 L:      linux-kernel@vger.kernel.org
1114 S:      Maintained
1115 F:      drivers/clk/keystone/
1116
1117 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1118 M:      Santosh Shilimkar <ssantosh@kernel.org>
1119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1120 L:      linux-kernel@vger.kernel.org
1121 S:      Maintained
1122 F:      drivers/clocksource/timer-keystone.c
1123
1124 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1125 M:      Santosh Shilimkar <ssantosh@kernel.org>
1126 L:      linux-kernel@vger.kernel.org
1127 S:      Maintained
1128 F:      drivers/power/reset/keystone-reset.c
1129
1130 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1131 M:      Santosh Shilimkar <ssantosh@kernel.org>
1132 L:      linux-kernel@vger.kernel.org
1133 S:      Maintained
1134 F:      drivers/memory/*emif*
1135
1136 ARM/LOGICPD PXA270 MACHINE SUPPORT
1137 M:      Lennert Buytenhek <kernel@wantstofly.org>
1138 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1139 S:      Maintained
1140
1141 ARM/MAGICIAN MACHINE SUPPORT
1142 M:      Philipp Zabel <philipp.zabel@gmail.com>
1143 S:      Maintained
1144
1145 ARM/Marvell Armada 370 and Armada XP SOC support
1146 M:      Jason Cooper <jason@lakedaemon.net>
1147 M:      Andrew Lunn <andrew@lunn.ch>
1148 M:      Gregory Clement <gregory.clement@free-electrons.com>
1149 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1151 S:      Maintained
1152 F:      arch/arm/mach-mvebu/
1153
1154 ARM/Marvell Berlin SoC support
1155 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1156 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1157 S:      Maintained
1158 F:      arch/arm/mach-berlin/
1159
1160 ARM/Marvell Dove/MV78xx0/Orion SOC support
1161 M:      Jason Cooper <jason@lakedaemon.net>
1162 M:      Andrew Lunn <andrew@lunn.ch>
1163 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1165 S:      Maintained
1166 F:      arch/arm/mach-dove/
1167 F:      arch/arm/mach-mv78xx0/
1168 F:      arch/arm/mach-orion5x/
1169 F:      arch/arm/plat-orion/
1170
1171 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1172 M:      Alexander Clouter <alex@digriz.org.uk>
1173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1174 W:      http://www.digriz.org.uk/ts78xx/kernel
1175 S:      Maintained
1176 F:      arch/arm/mach-orion5x/ts78xx-*
1177
1178 ARM/Mediatek SoC support
1179 M:      Matthias Brugger <matthias.bgg@gmail.com>
1180 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1181 S:      Maintained
1182 F:      arch/arm/boot/dts/mt6*
1183 F:      arch/arm/boot/dts/mt8*
1184 F:      arch/arm/mach-mediatek/
1185 N:      mtk
1186 K:      mediatek
1187
1188 ARM/MICREL KS8695 ARCHITECTURE
1189 M:      Greg Ungerer <gerg@uclinux.org>
1190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1191 F:      arch/arm/mach-ks8695/
1192 S:      Odd Fixes
1193
1194 ARM/MIOA701 MACHINE SUPPORT
1195 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1197 F:      arch/arm/mach-pxa/mioa701.c
1198 S:      Maintained
1199
1200 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1201 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1202 S:      Maintained
1203
1204 ARM/NOMADIK ARCHITECTURE
1205 M:      Alessandro Rubini <rubini@unipv.it>
1206 M:      Linus Walleij <linus.walleij@linaro.org>
1207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1208 S:      Maintained
1209 F:      arch/arm/mach-nomadik/
1210 F:      drivers/pinctrl/nomadik/
1211 F:      drivers/i2c/busses/i2c-nomadik.c
1212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1213
1214 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1215 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1216 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1217 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1218 S:      Supported
1219
1220 ARM/QUALCOMM MSM MACHINE SUPPORT
1221 M:      David Brown <davidb@codeaurora.org>
1222 M:      Daniel Walker <dwalker@fifo99.com>
1223 M:      Bryan Huntsman <bryanh@codeaurora.org>
1224 L:      linux-arm-msm@vger.kernel.org
1225 F:      arch/arm/mach-msm/
1226 F:      drivers/video/fbdev/msm/
1227 F:      drivers/mmc/host/msm_sdcc.c
1228 F:      drivers/mmc/host/msm_sdcc.h
1229 F:      drivers/tty/serial/msm_serial.h
1230 F:      drivers/tty/serial/msm_serial.c
1231 F:      drivers/*/pm8???-*
1232 F:      drivers/mfd/ssbi.c
1233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
1234 S:      Maintained
1235
1236 ARM/TOSA MACHINE SUPPORT
1237 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1238 M:      Dirk Opfer <dirk@opfer-online.de>
1239 S:      Maintained
1240
1241 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1242 M:      Marek Vasut <marek.vasut@gmail.com>
1243 L:      linux-arm-kernel@lists.infradead.org
1244 W:      http://hackndev.com
1245 S:      Maintained
1246 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1247 F:      arch/arm/mach-pxa/palmtx.c
1248 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1249 F:      arch/arm/mach-pxa/palmt5.c
1250 F:      arch/arm/mach-pxa/include/mach/palmld.h
1251 F:      arch/arm/mach-pxa/palmld.c
1252 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1253 F:      arch/arm/mach-pxa/palmte2.c
1254 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1255 F:      arch/arm/mach-pxa/palmtc.c
1256
1257 ARM/PALM TREO SUPPORT
1258 M:      Tomas Cech <sleep_walker@suse.cz>
1259 L:      linux-arm-kernel@lists.infradead.org
1260 W:      http://hackndev.com
1261 S:      Maintained
1262 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1263 F:      arch/arm/mach-pxa/palmtreo.c
1264
1265 ARM/PALMZ72 SUPPORT
1266 M:      Sergey Lapin <slapin@ossfans.org>
1267 L:      linux-arm-kernel@lists.infradead.org
1268 W:      http://hackndev.com
1269 S:      Maintained
1270 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1271 F:      arch/arm/mach-pxa/palmz72.c
1272
1273 ARM/PLEB SUPPORT
1274 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1275 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1276 S:      Maintained
1277
1278 ARM/PT DIGITAL BOARD PORT
1279 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1280 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1281 W:      http://www.arm.linux.org.uk/
1282 S:      Maintained
1283
1284 ARM/QUALCOMM SUPPORT
1285 M:      Kumar Gala <galak@codeaurora.org>
1286 M:      David Brown <davidb@codeaurora.org>
1287 L:      linux-arm-msm@vger.kernel.org
1288 S:      Maintained
1289 F:      arch/arm/mach-qcom/
1290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1291
1292 ARM/RADISYS ENP2611 MACHINE SUPPORT
1293 M:      Lennert Buytenhek <kernel@wantstofly.org>
1294 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1295 S:      Maintained
1296
1297 ARM/RISCPC ARCHITECTURE
1298 M:      Russell King <linux@arm.linux.org.uk>
1299 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1300 W:      http://www.arm.linux.org.uk/
1301 S:      Maintained
1302 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1303 F:      arch/arm/include/asm/hardware/ioc.h
1304 F:      arch/arm/include/asm/hardware/iomd.h
1305 F:      arch/arm/include/asm/hardware/memc.h
1306 F:      arch/arm/mach-rpc/
1307 F:      drivers/net/ethernet/8390/etherh.c
1308 F:      drivers/net/ethernet/i825xx/ether1*
1309 F:      drivers/net/ethernet/seeq/ether3*
1310 F:      drivers/scsi/arm/
1311
1312 ARM/Rockchip SoC support
1313 M:      Heiko Stuebner <heiko@sntech.de>
1314 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1315 L:      linux-rockchip@lists.infradead.org
1316 S:      Maintained
1317 F:      arch/arm/boot/dts/rk3*
1318 F:      arch/arm/mach-rockchip/
1319 F:      drivers/clk/rockchip/
1320 F:      drivers/i2c/busses/i2c-rk3x.c
1321 F:      drivers/*/*rockchip*
1322 F:      drivers/*/*/*rockchip*
1323 F:      sound/soc/rockchip/
1324
1325 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1326 M:      Kukjin Kim <kgene@kernel.org>
1327 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1328 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1329 S:      Maintained
1330 F:      arch/arm/boot/dts/s3c*
1331 F:      arch/arm/boot/dts/exynos*
1332 F:      arch/arm/plat-samsung/
1333 F:      arch/arm/mach-s3c24*/
1334 F:      arch/arm/mach-s3c64xx/
1335 F:      arch/arm/mach-s5p*/
1336 F:      arch/arm/mach-exynos*/
1337 F:      drivers/*/*s3c2410*
1338 F:      drivers/*/*/*s3c2410*
1339 F:      drivers/spi/spi-s3c*
1340 F:      sound/soc/samsung/*
1341 N:      exynos
1342
1343 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1344 M:      Kyungmin Park <kyungmin.park@samsung.com>
1345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1346 S:      Maintained
1347 F:      arch/arm/mach-s5pv210/
1348
1349 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1350 M:      Kyungmin Park <kyungmin.park@samsung.com>
1351 M:      Kamil Debski <k.debski@samsung.com>
1352 L:      linux-arm-kernel@lists.infradead.org
1353 L:      linux-media@vger.kernel.org
1354 S:      Maintained
1355 F:      drivers/media/platform/s5p-g2d/
1356
1357 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1358 M:      Kyungmin Park <kyungmin.park@samsung.com>
1359 M:      Kamil Debski <k.debski@samsung.com>
1360 M:      Jeongtae Park <jtp.park@samsung.com>
1361 L:      linux-arm-kernel@lists.infradead.org
1362 L:      linux-media@vger.kernel.org
1363 S:      Maintained
1364 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1365 F:      drivers/media/platform/s5p-mfc/
1366
1367 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1368 M:      Kyungmin Park <kyungmin.park@samsung.com>
1369 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1370 L:      linux-arm-kernel@lists.infradead.org
1371 L:      linux-media@vger.kernel.org
1372 S:      Maintained
1373 F:      drivers/media/platform/s5p-tv/
1374
1375 ARM/SHMOBILE ARM ARCHITECTURE
1376 M:      Simon Horman <horms@verge.net.au>
1377 M:      Magnus Damm <magnus.damm@gmail.com>
1378 L:      linux-sh@vger.kernel.org
1379 W:      http://oss.renesas.com
1380 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1382 S:      Supported
1383 F:      arch/arm/boot/dts/emev2*
1384 F:      arch/arm/boot/dts/r7s*
1385 F:      arch/arm/boot/dts/r8a*
1386 F:      arch/arm/boot/dts/sh*
1387 F:      arch/arm/configs/ape6evm_defconfig
1388 F:      arch/arm/configs/armadillo800eva_defconfig
1389 F:      arch/arm/configs/bockw_defconfig
1390 F:      arch/arm/configs/kzm9g_defconfig
1391 F:      arch/arm/configs/lager_defconfig
1392 F:      arch/arm/configs/mackerel_defconfig
1393 F:      arch/arm/configs/marzen_defconfig
1394 F:      arch/arm/configs/shmobile_defconfig
1395 F:      arch/arm/include/debug/renesas-scif.S
1396 F:      arch/arm/mach-shmobile/
1397 F:      drivers/sh/
1398
1399 ARM/SOCFPGA ARCHITECTURE
1400 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1401 S:      Maintained
1402 F:      arch/arm/mach-socfpga/
1403 W:      http://www.rocketboards.org
1404 T:      git://git.rocketboards.org/linux-socfpga.git
1405 T:      git://git.rocketboards.org/linux-socfpga-next.git
1406
1407 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1408 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1409 S:      Maintained
1410 F:      drivers/clk/socfpga/
1411
1412 ARM/SOCFPGA EDAC SUPPORT
1413 M:      Thor Thayer <tthayer@opensource.altera.com>
1414 S:      Maintained
1415 F:      drivers/edac/altera_edac.
1416
1417 ARM/STI ARCHITECTURE
1418 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1419 M:      Maxime Coquelin <maxime.coquelin@st.com>
1420 M:      Patrice Chotard <patrice.chotard@st.com>
1421 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1422 L:      kernel@stlinux.com
1423 W:      http://www.stlinux.com
1424 S:      Maintained
1425 F:      arch/arm/mach-sti/
1426 F:      arch/arm/boot/dts/sti*
1427 F:      drivers/clocksource/arm_global_timer.c
1428 F:      drivers/i2c/busses/i2c-st.c
1429 F:      drivers/media/rc/st_rc.c
1430 F:      drivers/mmc/host/sdhci-st.c
1431 F:      drivers/phy/phy-stih407-usb.c
1432 F:      drivers/phy/phy-stih41x-usb.c
1433 F:      drivers/pinctrl/pinctrl-st.c
1434 F:      drivers/reset/sti/
1435 F:      drivers/tty/serial/st-asc.c
1436 F:      drivers/usb/dwc3/dwc3-st.c
1437 F:      drivers/usb/host/ehci-st.c
1438 F:      drivers/usb/host/ohci-st.c
1439 F:      drivers/ata/ahci_st.c
1440
1441 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1442 M:      Lennert Buytenhek <kernel@wantstofly.org>
1443 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1444 S:      Maintained
1445
1446 ARM/TETON BGA MACHINE SUPPORT
1447 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1448 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1449 S:      Maintained
1450
1451 ARM/THECUS N2100 MACHINE SUPPORT
1452 M:      Lennert Buytenhek <kernel@wantstofly.org>
1453 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1454 S:      Maintained
1455
1456 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1457 M:      Wan ZongShun <mcuos.com@gmail.com>
1458 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1459 W:      http://www.mcuos.com
1460 S:      Maintained
1461 F:      arch/arm/mach-w90x900/
1462 F:      drivers/input/keyboard/w90p910_keypad.c
1463 F:      drivers/input/touchscreen/w90p910_ts.c
1464 F:      drivers/watchdog/nuc900_wdt.c
1465 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1466 F:      drivers/mtd/nand/nuc900_nand.c
1467 F:      drivers/rtc/rtc-nuc900.c
1468 F:      drivers/spi/spi-nuc900.c
1469 F:      drivers/usb/host/ehci-w90x900.c
1470 F:      drivers/video/fbdev/nuc900fb.c
1471
1472 ARM/U300 MACHINE SUPPORT
1473 M:      Linus Walleij <linus.walleij@linaro.org>
1474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1475 S:      Supported
1476 F:      arch/arm/mach-u300/
1477 F:      drivers/clocksource/timer-u300.c
1478 F:      drivers/i2c/busses/i2c-stu300.c
1479 F:      drivers/rtc/rtc-coh901331.c
1480 F:      drivers/watchdog/coh901327_wdt.c
1481 F:      drivers/dma/coh901318*
1482 F:      drivers/mfd/ab3100*
1483 F:      drivers/rtc/rtc-ab3100.c
1484 F:      drivers/rtc/rtc-coh901331.c
1485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1486
1487 ARM/Ux500 ARM ARCHITECTURE
1488 M:      Linus Walleij <linus.walleij@linaro.org>
1489 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1490 S:      Maintained
1491 F:      arch/arm/mach-ux500/
1492 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1493 F:      drivers/dma/ste_dma40*
1494 F:      drivers/hwspinlock/u8500_hsem.c
1495 F:      drivers/mfd/abx500*
1496 F:      drivers/mfd/ab8500*
1497 F:      drivers/mfd/dbx500*
1498 F:      drivers/mfd/db8500*
1499 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1500 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1501 F:      drivers/rtc/rtc-ab8500.c
1502 F:      drivers/rtc/rtc-pl031.c
1503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1504
1505 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1506 M:      Ulf Hansson <ulf.hansson@linaro.org>
1507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1508 T:      git git://git.linaro.org/people/ulfh/clk.git
1509 S:      Maintained
1510 F:      drivers/clk/ux500/
1511 F:      include/linux/platform_data/clk-ux500.h
1512
1513 ARM/VERSATILE EXPRESS PLATFORM
1514 M:      Liviu Dudau <liviu.dudau@arm.com>
1515 M:      Sudeep Holla <sudeep.holla@arm.com>
1516 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1518 S:      Maintained
1519 F:      arch/arm/boot/dts/vexpress*
1520 F:      arch/arm/mach-vexpress/
1521 F:      */*/vexpress*
1522 F:      */*/*/vexpress*
1523 F:      drivers/clk/versatile/clk-vexpress-osc.c
1524 F:      drivers/clocksource/versatile.c
1525
1526 ARM/VFP SUPPORT
1527 M:      Russell King <linux@arm.linux.org.uk>
1528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1529 W:      http://www.arm.linux.org.uk/
1530 S:      Maintained
1531 F:      arch/arm/vfp/
1532
1533 ARM/VOIPAC PXA270 SUPPORT
1534 M:      Marek Vasut <marek.vasut@gmail.com>
1535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1536 S:      Maintained
1537 F:      arch/arm/mach-pxa/vpac270.c
1538 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1539
1540 ARM/VT8500 ARM ARCHITECTURE
1541 M:      Tony Prisk <linux@prisktech.co.nz>
1542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1543 S:      Maintained
1544 F:      arch/arm/mach-vt8500/
1545 F:      drivers/clocksource/vt8500_timer.c
1546 F:      drivers/i2c/busses/i2c-wmt.c
1547 F:      drivers/mmc/host/wmt-sdmmc.c
1548 F:      drivers/pwm/pwm-vt8500.c
1549 F:      drivers/rtc/rtc-vt8500.c
1550 F:      drivers/tty/serial/vt8500_serial.c
1551 F:      drivers/usb/host/ehci-platform.c
1552 F:      drivers/usb/host/uhci-platform.c
1553 F:      drivers/video/fbdev/vt8500lcdfb.*
1554 F:      drivers/video/fbdev/wm8505fb*
1555 F:      drivers/video/fbdev/wmt_ge_rops.*
1556
1557 ARM/ZIPIT Z2 SUPPORT
1558 M:      Marek Vasut <marek.vasut@gmail.com>
1559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1560 S:      Maintained
1561 F:      arch/arm/mach-pxa/z2.c
1562 F:      arch/arm/mach-pxa/include/mach/z2.h
1563
1564 ARM/ZYNQ ARCHITECTURE
1565 M:      Michal Simek <michal.simek@xilinx.com>
1566 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 W:      http://wiki.xilinx.com
1569 T:      git git://git.xilinx.com/linux-xlnx.git
1570 S:      Supported
1571 F:      arch/arm/mach-zynq/
1572 F:      drivers/cpuidle/cpuidle-zynq.c
1573 F:      drivers/block/xsysace.c
1574 N:      zynq
1575 N:      xilinx
1576 F:      drivers/clocksource/cadence_ttc_timer.c
1577 F:      drivers/i2c/busses/i2c-cadence.c
1578 F:      drivers/mmc/host/sdhci-of-arasan.c
1579
1580 ARM SMMU DRIVER
1581 M:      Will Deacon <will.deacon@arm.com>
1582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1583 S:      Maintained
1584 F:      drivers/iommu/arm-smmu.c
1585
1586 ARM64 PORT (AARCH64 ARCHITECTURE)
1587 M:      Catalin Marinas <catalin.marinas@arm.com>
1588 M:      Will Deacon <will.deacon@arm.com>
1589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1590 S:      Maintained
1591 F:      arch/arm64/
1592 F:      Documentation/arm64/
1593
1594 AS3645A LED FLASH CONTROLLER DRIVER
1595 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1596 L:      linux-media@vger.kernel.org
1597 T:      git git://linuxtv.org/media_tree.git
1598 S:      Maintained
1599 F:      drivers/media/i2c/as3645a.c
1600 F:      include/media/as3645a.h
1601
1602 ASC7621 HARDWARE MONITOR DRIVER
1603 M:      George Joseph <george.joseph@fairview5.com>
1604 L:      lm-sensors@lm-sensors.org
1605 S:      Maintained
1606 F:      Documentation/hwmon/asc7621
1607 F:      drivers/hwmon/asc7621.c
1608
1609 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1610 M:      Corentin Chary <corentin.chary@gmail.com>
1611 L:      acpi4asus-user@lists.sourceforge.net
1612 L:      platform-driver-x86@vger.kernel.org
1613 W:      http://acpi4asus.sf.net
1614 S:      Maintained
1615 F:      drivers/platform/x86/asus*.c
1616 F:      drivers/platform/x86/eeepc*.c
1617
1618 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1619 R:      Dan Williams <dan.j.williams@intel.com>
1620 W:      http://sourceforge.net/projects/xscaleiop
1621 S:      Odd fixes
1622 F:      Documentation/crypto/async-tx-api.txt
1623 F:      crypto/async_tx/
1624 F:      drivers/dma/
1625 F:      include/linux/dmaengine.h
1626 F:      include/linux/async_tx.h
1627
1628 AT24 EEPROM DRIVER
1629 M:      Wolfram Sang <wsa@the-dreams.de>
1630 L:      linux-i2c@vger.kernel.org
1631 S:      Maintained
1632 F:      drivers/misc/eeprom/at24.c
1633 F:      include/linux/platform_data/at24.h
1634
1635 ATA OVER ETHERNET (AOE) DRIVER
1636 M:      "Ed L. Cashin" <ecashin@coraid.com>
1637 W:      http://support.coraid.com/support/linux
1638 S:      Supported
1639 F:      Documentation/aoe/
1640 F:      drivers/block/aoe/
1641
1642 ATHEROS ATH GENERIC UTILITIES
1643 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1644 L:      linux-wireless@vger.kernel.org
1645 S:      Supported
1646 F:      drivers/net/wireless/ath/*
1647
1648 ATHEROS ATH5K WIRELESS DRIVER
1649 M:      Jiri Slaby <jirislaby@gmail.com>
1650 M:      Nick Kossifidis <mickflemm@gmail.com>
1651 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1652 L:      linux-wireless@vger.kernel.org
1653 L:      ath5k-devel@lists.ath5k.org
1654 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1655 S:      Maintained
1656 F:      drivers/net/wireless/ath/ath5k/
1657
1658 ATHEROS ATH6KL WIRELESS DRIVER
1659 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1660 L:      linux-wireless@vger.kernel.org
1661 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1662 T:      git git://github.com/kvalo/ath.git
1663 S:      Supported
1664 F:      drivers/net/wireless/ath/ath6kl/
1665
1666 WILOCITY WIL6210 WIRELESS DRIVER
1667 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1668 L:      linux-wireless@vger.kernel.org
1669 L:      wil6210@qca.qualcomm.com
1670 S:      Supported
1671 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1672 F:      drivers/net/wireless/ath/wil6210/
1673 F:      include/uapi/linux/wil6210_uapi.h
1674
1675 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1676 M:      Christian Lamparter <chunkeey@googlemail.com>
1677 L:      linux-wireless@vger.kernel.org
1678 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1679 S:      Maintained
1680 F:      drivers/net/wireless/ath/carl9170/
1681
1682 ATK0110 HWMON DRIVER
1683 M:      Luca Tettamanti <kronos.it@gmail.com>
1684 L:      lm-sensors@lm-sensors.org
1685 S:      Maintained
1686 F:      drivers/hwmon/asus_atk0110.c
1687
1688 ATI_REMOTE2 DRIVER
1689 M:      Ville Syrjala <syrjala@sci.fi>
1690 S:      Maintained
1691 F:      drivers/input/misc/ati_remote2.c
1692
1693 ATLX ETHERNET DRIVERS
1694 M:      Jay Cliburn <jcliburn@gmail.com>
1695 M:      Chris Snook <chris.snook@gmail.com>
1696 L:      netdev@vger.kernel.org
1697 W:      http://sourceforge.net/projects/atl1
1698 W:      http://atl1.sourceforge.net
1699 S:      Maintained
1700 F:      drivers/net/ethernet/atheros/
1701
1702 ATM
1703 M:      Chas Williams <chas@cmf.nrl.navy.mil>
1704 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1705 L:      netdev@vger.kernel.org
1706 W:      http://linux-atm.sourceforge.net
1707 S:      Maintained
1708 F:      drivers/atm/
1709 F:      include/linux/atm*
1710 F:      include/uapi/linux/atm*
1711
1712 ATMEL AT91 / AT32 MCI DRIVER
1713 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1714 S:      Maintained
1715 F:      drivers/mmc/host/atmel-mci.c
1716 F:      drivers/mmc/host/atmel-mci-regs.h
1717
1718 ATMEL AT91 / AT32 SERIAL DRIVER
1719 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1720 S:      Supported
1721 F:      drivers/tty/serial/atmel_serial.c
1722
1723 ATMEL Audio ALSA driver
1724 M:      Bo Shen <voice.shen@atmel.com>
1725 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1726 S:      Supported
1727 F:      sound/soc/atmel
1728
1729 ATMEL DMA DRIVER
1730 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1732 S:      Supported
1733 F:      drivers/dma/at_hdmac.c
1734 F:      drivers/dma/at_hdmac_regs.h
1735 F:      include/linux/platform_data/dma-atmel.h
1736
1737 ATMEL XDMA DRIVER
1738 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1739 L:      linux-arm-kernel@lists.infradead.org
1740 L:      dmaengine@vger.kernel.org
1741 S:      Supported
1742 F:      drivers/dma/at_xdmac.c
1743
1744 ATMEL I2C DRIVER
1745 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1746 L:      linux-i2c@vger.kernel.org
1747 S:      Supported
1748 F:      drivers/i2c/busses/i2c-at91.c
1749
1750 ATMEL ISI DRIVER
1751 M:      Josh Wu <josh.wu@atmel.com>
1752 L:      linux-media@vger.kernel.org
1753 S:      Supported
1754 F:      drivers/media/platform/soc_camera/atmel-isi.c
1755 F:      include/media/atmel-isi.h
1756
1757 ATMEL LCDFB DRIVER
1758 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1759 L:      linux-fbdev@vger.kernel.org
1760 S:      Maintained
1761 F:      drivers/video/fbdev/atmel_lcdfb.c
1762 F:      include/video/atmel_lcdc.h
1763
1764 ATMEL MACB ETHERNET DRIVER
1765 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1766 S:      Supported
1767 F:      drivers/net/ethernet/cadence/
1768
1769 ATMEL NAND DRIVER
1770 M:      Josh Wu <josh.wu@atmel.com>
1771 L:      linux-mtd@lists.infradead.org
1772 S:      Supported
1773 F:      drivers/mtd/nand/atmel_nand*
1774
1775 ATMEL SPI DRIVER
1776 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1777 S:      Supported
1778 F:      drivers/spi/spi-atmel.*
1779
1780 ATMEL SSC DRIVER
1781 M:      Bo Shen <voice.shen@atmel.com>
1782 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1783 S:      Supported
1784 F:      drivers/misc/atmel-ssc.c
1785 F:      include/linux/atmel-ssc.h
1786
1787 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1788 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1790 S:      Supported
1791 F:      drivers/misc/atmel_tclib.c
1792 F:      drivers/clocksource/tcb_clksrc.c
1793
1794 ATMEL USBA UDC DRIVER
1795 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1796 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1797 S:      Supported
1798 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1799
1800 ATMEL WIRELESS DRIVER
1801 M:      Simon Kelley <simon@thekelleys.org.uk>
1802 L:      linux-wireless@vger.kernel.org
1803 W:      http://www.thekelleys.org.uk/atmel
1804 W:      http://atmelwlandriver.sourceforge.net/
1805 S:      Maintained
1806 F:      drivers/net/wireless/atmel*
1807
1808 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1809 M:      Bradley Grove <linuxdrivers@attotech.com>
1810 L:      linux-scsi@vger.kernel.org
1811 W:      http://www.attotech.com
1812 S:      Supported
1813 F:      drivers/scsi/esas2r
1814
1815 AUDIT SUBSYSTEM
1816 M:      Paul Moore <paul@paul-moore.com>
1817 M:      Eric Paris <eparis@redhat.com>
1818 L:      linux-audit@redhat.com (moderated for non-subscribers)
1819 W:      http://people.redhat.com/sgrubb/audit/
1820 T:      git git://git.infradead.org/users/pcmoore/audit
1821 S:      Maintained
1822 F:      include/linux/audit.h
1823 F:      include/uapi/linux/audit.h
1824 F:      kernel/audit*
1825
1826 AUXILIARY DISPLAY DRIVERS
1827 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1828 W:      http://miguelojeda.es/auxdisplay.htm
1829 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1830 S:      Maintained
1831 F:      drivers/auxdisplay/
1832 F:      include/linux/cfag12864b.h
1833
1834 AVR32 ARCHITECTURE
1835 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1836 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1837 W:      http://www.atmel.com/products/AVR32/
1838 W:      http://mirror.egtvedt.no/avr32linux.org/
1839 W:      http://avrfreaks.net/
1840 S:      Maintained
1841 F:      arch/avr32/
1842
1843 AVR32/AT32AP MACHINE SUPPORT
1844 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1845 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1846 S:      Maintained
1847 F:      arch/avr32/mach-at32ap/
1848
1849 AX.25 NETWORK LAYER
1850 M:      Ralf Baechle <ralf@linux-mips.org>
1851 L:      linux-hams@vger.kernel.org
1852 W:      http://www.linux-ax25.org/
1853 S:      Maintained
1854 F:      include/uapi/linux/ax25.h
1855 F:      include/net/ax25.h
1856 F:      net/ax25/
1857
1858 AZ6007 DVB DRIVER
1859 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
1860 L:      linux-media@vger.kernel.org
1861 W:      http://linuxtv.org
1862 T:      git git://linuxtv.org/media_tree.git
1863 S:      Maintained
1864 F:      drivers/media/usb/dvb-usb-v2/az6007.c
1865
1866 AZTECH FM RADIO RECEIVER DRIVER
1867 M:      Hans Verkuil <hverkuil@xs4all.nl>
1868 L:      linux-media@vger.kernel.org
1869 T:      git git://linuxtv.org/media_tree.git
1870 W:      http://linuxtv.org
1871 S:      Maintained
1872 F:      drivers/media/radio/radio-aztech*
1873
1874 B43 WIRELESS DRIVER
1875 M:      Stefano Brivio <stefano.brivio@polimi.it>
1876 L:      linux-wireless@vger.kernel.org
1877 L:      b43-dev@lists.infradead.org
1878 W:      http://wireless.kernel.org/en/users/Drivers/b43
1879 S:      Maintained
1880 F:      drivers/net/wireless/b43/
1881
1882 B43LEGACY WIRELESS DRIVER
1883 M:      Larry Finger <Larry.Finger@lwfinger.net>
1884 M:      Stefano Brivio <stefano.brivio@polimi.it>
1885 L:      linux-wireless@vger.kernel.org
1886 L:      b43-dev@lists.infradead.org
1887 W:      http://wireless.kernel.org/en/users/Drivers/b43
1888 S:      Maintained
1889 F:      drivers/net/wireless/b43legacy/
1890
1891 BACKLIGHT CLASS/SUBSYSTEM
1892 M:      Jingoo Han <jg1.han@samsung.com>
1893 M:      Lee Jones <lee.jones@linaro.org>
1894 S:      Maintained
1895 F:      drivers/video/backlight/
1896 F:      include/linux/backlight.h
1897
1898 BATMAN ADVANCED
1899 M:      Marek Lindner <mareklindner@neomailbox.ch>
1900 M:      Simon Wunderlich <sw@simonwunderlich.de>
1901 M:      Antonio Quartulli <antonio@meshcoding.com>
1902 L:      b.a.t.m.a.n@lists.open-mesh.org
1903 W:      http://www.open-mesh.org/
1904 S:      Maintained
1905 F:      net/batman-adv/
1906
1907 BAYCOM/HDLCDRV DRIVERS FOR AX.25
1908 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
1909 L:      linux-hams@vger.kernel.org
1910 W:      http://www.baycom.org/~tom/ham/ham.html
1911 S:      Maintained
1912 F:      drivers/net/hamradio/baycom*
1913
1914 BCACHE (BLOCK LAYER CACHE)
1915 M:      Kent Overstreet <kmo@daterainc.com>
1916 L:      linux-bcache@vger.kernel.org
1917 W:      http://bcache.evilpiepirate.org
1918 S:      Maintained:
1919 F:      drivers/md/bcache/
1920
1921 BEFS FILE SYSTEM
1922 S:      Orphan
1923 F:      Documentation/filesystems/befs.txt
1924 F:      fs/befs/
1925
1926 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
1927 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
1928 L: netdev@vger.kernel.org
1929 S: Maintained
1930 F: drivers/net/ethernet/ec_bhf.c
1931
1932 BFS FILE SYSTEM
1933 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
1934 S:      Maintained
1935 F:      Documentation/filesystems/bfs.txt
1936 F:      fs/bfs/
1937 F:      include/uapi/linux/bfs_fs.h
1938
1939 BLACKFIN ARCHITECTURE
1940 M:      Steven Miao <realmz6@gmail.com>
1941 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1942 T:      git git://git.code.sf.net/p/adi-linux/code
1943 W:      http://blackfin.uclinux.org
1944 S:      Supported
1945 F:      arch/blackfin/
1946
1947 BLACKFIN EMAC DRIVER
1948 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1949 W:      http://blackfin.uclinux.org
1950 S:      Supported
1951 F:      drivers/net/ethernet/adi/
1952
1953 BLACKFIN RTC DRIVER
1954 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1955 W:      http://blackfin.uclinux.org
1956 S:      Supported
1957 F:      drivers/rtc/rtc-bfin.c
1958
1959 BLACKFIN SDH DRIVER
1960 M:      Sonic Zhang <sonic.zhang@analog.com>
1961 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1962 W:      http://blackfin.uclinux.org
1963 S:      Supported
1964 F:      drivers/mmc/host/bfin_sdh.c
1965
1966 BLACKFIN SERIAL DRIVER
1967 M:      Sonic Zhang <sonic.zhang@analog.com>
1968 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1969 W:      http://blackfin.uclinux.org
1970 S:      Supported
1971 F:      drivers/tty/serial/bfin_uart.c
1972
1973 BLACKFIN WATCHDOG DRIVER
1974 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1975 W:      http://blackfin.uclinux.org
1976 S:      Supported
1977 F:      drivers/watchdog/bfin_wdt.c
1978
1979 BLACKFIN I2C TWI DRIVER
1980 M:      Sonic Zhang <sonic.zhang@analog.com>
1981 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1982 W:      http://blackfin.uclinux.org/
1983 S:      Supported
1984 F:      drivers/i2c/busses/i2c-bfin-twi.c
1985
1986 BLACKFIN MEDIA DRIVER
1987 M:      Scott Jiang <scott.jiang.linux@gmail.com>
1988 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1989 W:      http://blackfin.uclinux.org/
1990 S:      Supported
1991 F:      drivers/media/platform/blackfin/
1992 F:      drivers/media/i2c/adv7183*
1993 F:      drivers/media/i2c/vs6624*
1994
1995 BLINKM RGB LED DRIVER
1996 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
1997 S:      Maintained
1998 F:      drivers/leds/leds-blinkm.c
1999
2000 BLOCK LAYER
2001 M:      Jens Axboe <axboe@kernel.dk>
2002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2003 S:      Maintained
2004 F:      block/
2005
2006 BLOCK2MTD DRIVER
2007 M:      Joern Engel <joern@lazybastard.org>
2008 L:      linux-mtd@lists.infradead.org
2009 S:      Maintained
2010 F:      drivers/mtd/devices/block2mtd.c
2011
2012 BLUETOOTH DRIVERS
2013 M:      Marcel Holtmann <marcel@holtmann.org>
2014 M:      Gustavo Padovan <gustavo@padovan.org>
2015 M:      Johan Hedberg <johan.hedberg@gmail.com>
2016 L:      linux-bluetooth@vger.kernel.org
2017 W:      http://www.bluez.org/
2018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2020 S:      Maintained
2021 F:      drivers/bluetooth/
2022
2023 BLUETOOTH SUBSYSTEM
2024 M:      Marcel Holtmann <marcel@holtmann.org>
2025 M:      Gustavo Padovan <gustavo@padovan.org>
2026 M:      Johan Hedberg <johan.hedberg@gmail.com>
2027 L:      linux-bluetooth@vger.kernel.org
2028 W:      http://www.bluez.org/
2029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2031 S:      Maintained
2032 F:      net/bluetooth/
2033 F:      include/net/bluetooth/
2034
2035 BONDING DRIVER
2036 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2037 M:      Veaceslav Falico <vfalico@gmail.com>
2038 M:      Andy Gospodarek <andy@greyhouse.net>
2039 L:      netdev@vger.kernel.org
2040 W:      http://sourceforge.net/projects/bonding/
2041 S:      Supported
2042 F:      drivers/net/bonding/
2043 F:      include/uapi/linux/if_bonding.h
2044
2045 BPF (Safe dynamic programs and tools)
2046 M:      Alexei Starovoitov <ast@kernel.org>
2047 L:      netdev@vger.kernel.org
2048 L:      linux-kernel@vger.kernel.org
2049 S:      Supported
2050 F:      kernel/bpf/
2051
2052 BROADCOM B44 10/100 ETHERNET DRIVER
2053 M:      Gary Zambrano <zambrano@broadcom.com>
2054 L:      netdev@vger.kernel.org
2055 S:      Supported
2056 F:      drivers/net/ethernet/broadcom/b44.*
2057
2058 BROADCOM GENET ETHERNET DRIVER
2059 M:      Florian Fainelli <f.fainelli@gmail.com>
2060 L:      netdev@vger.kernel.org
2061 S:      Supported
2062 F:      drivers/net/ethernet/broadcom/genet/
2063
2064 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2065 M:      Sony Chacko <sony.chacko@qlogic.com>
2066 M:      Dept-HSGLinuxNICDev@qlogic.com
2067 L:      netdev@vger.kernel.org
2068 S:      Supported
2069 F:      drivers/net/ethernet/broadcom/bnx2.*
2070 F:      drivers/net/ethernet/broadcom/bnx2_*
2071
2072 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2073 M:      Ariel Elior <ariel.elior@qlogic.com>
2074 L:      netdev@vger.kernel.org
2075 S:      Supported
2076 F:      drivers/net/ethernet/broadcom/bnx2x/
2077
2078 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2079 M:      Christian Daudt <bcm@fixthebug.org>
2080 M:      Matt Porter <mporter@linaro.org>
2081 M:      Florian Fainelli <f.fainelli@gmail.com>
2082 L:      bcm-kernel-feedback-list@broadcom.com
2083 T:      git git://github.com/broadcom/mach-bcm
2084 S:      Maintained
2085 F:      arch/arm/mach-bcm/
2086 F:      arch/arm/boot/dts/bcm113*
2087 F:      arch/arm/boot/dts/bcm216*
2088 F:      arch/arm/boot/dts/bcm281*
2089 F:      arch/arm/configs/bcm_defconfig
2090 F:      drivers/mmc/host/sdhci-bcm-kona.c
2091 F:      drivers/clocksource/bcm_kona_timer.c
2092
2093 BROADCOM BCM2835 ARM ARCHITECTURE
2094 M:      Stephen Warren <swarren@wwwdotorg.org>
2095 M:      Lee Jones <lee@kernel.org>
2096 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2098 S:      Maintained
2099 N:      bcm2835
2100
2101 BROADCOM BCM33XX MIPS ARCHITECTURE
2102 M:      Kevin Cernekee <cernekee@gmail.com>
2103 L:      linux-mips@linux-mips.org
2104 S:      Maintained
2105 F:      arch/mips/bcm3384/*
2106 F:      arch/mips/include/asm/mach-bcm3384/*
2107 F:      arch/mips/kernel/*bmips*
2108
2109 BROADCOM BCM5301X ARM ARCHITECTURE
2110 M:      Hauke Mehrtens <hauke@hauke-m.de>
2111 L:      linux-arm-kernel@lists.infradead.org
2112 S:      Maintained
2113 F:      arch/arm/mach-bcm/bcm_5301x.c
2114 F:      arch/arm/boot/dts/bcm5301x.dtsi
2115 F:      arch/arm/boot/dts/bcm470*
2116
2117 BROADCOM BCM63XX ARM ARCHITECTURE
2118 M:      Florian Fainelli <f.fainelli@gmail.com>
2119 L:      linux-arm-kernel@lists.infradead.org
2120 T:      git git://git.github.com/brcm/linux.git
2121 S:      Maintained
2122 F:      arch/arm/mach-bcm/bcm63xx.c
2123 F:      arch/arm/include/debug/bcm63xx.S
2124
2125 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2126 M:      Kevin Cernekee <cernekee@gmail.com>
2127 L:      linux-usb@vger.kernel.org
2128 S:      Maintained
2129 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2130
2131 BROADCOM BCM7XXX ARM ARCHITECTURE
2132 M:      Marc Carino <marc.ceeeee@gmail.com>
2133 M:      Brian Norris <computersforpeace@gmail.com>
2134 M:      Gregory Fong <gregory.0xf0@gmail.com>
2135 M:      Florian Fainelli <f.fainelli@gmail.com>
2136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2137 S:      Maintained
2138 F:      arch/arm/mach-bcm/*brcmstb*
2139 F:      arch/arm/boot/dts/bcm7*.dts*
2140 F:      drivers/bus/brcmstb_gisb.c
2141
2142 BROADCOM BMIPS MIPS ARCHITECTURE
2143 M:      Kevin Cernekee <cernekee@gmail.com>
2144 M:      Florian Fainelli <f.fainelli@gmail.com>
2145 L:      linux-mips@linux-mips.org
2146 S:      Maintained
2147 F:      arch/mips/bmips/*
2148 F:      arch/mips/include/asm/mach-bmips/*
2149 F:      arch/mips/kernel/*bmips*
2150 F:      arch/mips/boot/dts/bcm*.dts*
2151 F:      drivers/irqchip/irq-bcm7*
2152 F:      drivers/irqchip/irq-brcmstb*
2153
2154 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2155 M:      Prashant Sreedharan <prashant@broadcom.com>
2156 M:      Michael Chan <mchan@broadcom.com>
2157 L:      netdev@vger.kernel.org
2158 S:      Supported
2159 F:      drivers/net/ethernet/broadcom/tg3.*
2160
2161 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2162 M:      Brett Rudley <brudley@broadcom.com>
2163 M:      Arend van Spriel <arend@broadcom.com>
2164 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2165 M:      Hante Meuleman <meuleman@broadcom.com>
2166 L:      linux-wireless@vger.kernel.org
2167 L:      brcm80211-dev-list@broadcom.com
2168 S:      Supported
2169 F:      drivers/net/wireless/brcm80211/
2170
2171 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2172 M:      QLogic-Storage-Upstream@qlogic.com
2173 L:      linux-scsi@vger.kernel.org
2174 S:      Supported
2175 F:      drivers/scsi/bnx2fc/
2176
2177 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2178 M:      QLogic-Storage-Upstream@qlogic.com
2179 L:      linux-scsi@vger.kernel.org
2180 S:      Supported
2181 F:      drivers/scsi/bnx2i/
2182
2183 BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2184 M:      Ray Jui <rjui@broadcom.com>
2185 M:      Scott Branden <sbranden@broadcom.com>
2186 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2187 L:      bcm-kernel-feedback-list@broadcom.com
2188 T:      git git://git.github.com/brcm/linux.git
2189 S:      Maintained
2190 N:      iproc
2191 N:      cygnus
2192 N:      bcm9113*
2193 N:      bcm9583*
2194 N:      bcm583*
2195 N:      bcm113*
2196
2197 BROADCOM KONA GPIO DRIVER
2198 M:      Ray Jui <rjui@broadcom.com>
2199 L:      bcm-kernel-feedback-list@broadcom.com
2200 S:      Supported
2201 F:      drivers/gpio/gpio-bcm-kona.c
2202 F:      Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt
2203
2204 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2205 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2206 L:      linux-wireless@vger.kernel.org
2207 S:      Maintained
2208 F:      drivers/bcma/
2209 F:      include/linux/bcma/
2210
2211 BROADCOM SYSTEMPORT ETHERNET DRIVER
2212 M:      Florian Fainelli <f.fainelli@gmail.com>
2213 L:      netdev@vger.kernel.org
2214 S:      Supported
2215 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2216
2217 BROCADE BFA FC SCSI DRIVER
2218 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2219 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2220 L:      linux-scsi@vger.kernel.org
2221 S:      Supported
2222 F:      drivers/scsi/bfa/
2223
2224 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2225 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2226 L:      netdev@vger.kernel.org
2227 S:      Supported
2228 F:      drivers/net/ethernet/brocade/bna/
2229
2230 BSG (block layer generic sg v4 driver)
2231 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2232 L:      linux-scsi@vger.kernel.org
2233 S:      Supported
2234 F:      block/bsg.c
2235 F:      include/linux/bsg.h
2236 F:      include/uapi/linux/bsg.h
2237
2238 BT87X AUDIO DRIVER
2239 M:      Clemens Ladisch <clemens@ladisch.de>
2240 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2241 T:      git git://git.alsa-project.org/alsa-kernel.git
2242 S:      Maintained
2243 F:      Documentation/sound/alsa/Bt87x.txt
2244 F:      sound/pci/bt87x.c
2245
2246 BT8XXGPIO DRIVER
2247 M:      Michael Buesch <m@bues.ch>
2248 W:      http://bu3sch.de/btgpio.php
2249 S:      Maintained
2250 F:      drivers/gpio/gpio-bt8xx.c
2251
2252 BTRFS FILE SYSTEM
2253 M:      Chris Mason <clm@fb.com>
2254 M:      Josef Bacik <jbacik@fb.com>
2255 L:      linux-btrfs@vger.kernel.org
2256 W:      http://btrfs.wiki.kernel.org/
2257 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2259 S:      Maintained
2260 F:      Documentation/filesystems/btrfs.txt
2261 F:      fs/btrfs/
2262
2263 BTTV VIDEO4LINUX DRIVER
2264 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2265 L:      linux-media@vger.kernel.org
2266 W:      http://linuxtv.org
2267 T:      git git://linuxtv.org/media_tree.git
2268 S:      Odd fixes
2269 F:      Documentation/video4linux/bttv/
2270 F:      drivers/media/pci/bt8xx/bttv*
2271
2272 BUSLOGIC SCSI DRIVER
2273 M:      Khalid Aziz <khalid@gonehiking.org>
2274 L:      linux-scsi@vger.kernel.org
2275 S:      Maintained
2276 F:      drivers/scsi/BusLogic.*
2277 F:      drivers/scsi/FlashPoint.*
2278
2279 C-MEDIA CMI8788 DRIVER
2280 M:      Clemens Ladisch <clemens@ladisch.de>
2281 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2282 T:      git git://git.alsa-project.org/alsa-kernel.git
2283 S:      Maintained
2284 F:      sound/pci/oxygen/
2285
2286 C6X ARCHITECTURE
2287 M:      Mark Salter <msalter@redhat.com>
2288 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2289 L:      linux-c6x-dev@linux-c6x.org
2290 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2291 S:      Maintained
2292 F:      arch/c6x/
2293
2294 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2295 M:      David Howells <dhowells@redhat.com>
2296 L:      linux-cachefs@redhat.com
2297 S:      Supported
2298 F:      Documentation/filesystems/caching/cachefiles.txt
2299 F:      fs/cachefiles/
2300
2301 CADET FM/AM RADIO RECEIVER DRIVER
2302 M:      Hans Verkuil <hverkuil@xs4all.nl>
2303 L:      linux-media@vger.kernel.org
2304 T:      git git://linuxtv.org/media_tree.git
2305 W:      http://linuxtv.org
2306 S:      Maintained
2307 F:      drivers/media/radio/radio-cadet*
2308
2309 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2310 M:      Jonathan Corbet <corbet@lwn.net>
2311 L:      linux-media@vger.kernel.org
2312 T:      git git://linuxtv.org/media_tree.git
2313 S:      Maintained
2314 F:      Documentation/video4linux/cafe_ccic
2315 F:      drivers/media/platform/marvell-ccic/
2316
2317 CAIF NETWORK LAYER
2318 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2319 L:      netdev@vger.kernel.org
2320 S:      Supported
2321 F:      Documentation/networking/caif/
2322 F:      drivers/net/caif/
2323 F:      include/uapi/linux/caif/
2324 F:      include/net/caif/
2325 F:      net/caif/
2326
2327 CALGARY x86-64 IOMMU
2328 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2329 M:      "Jon D. Mason" <jdmason@kudzu.us>
2330 L:      discuss@x86-64.org
2331 S:      Maintained
2332 F:      arch/x86/kernel/pci-calgary_64.c
2333 F:      arch/x86/kernel/tce_64.c
2334 F:      arch/x86/include/asm/calgary.h
2335 F:      arch/x86/include/asm/tce.h
2336
2337 CAN NETWORK LAYER
2338 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2339 L:      linux-can@vger.kernel.org
2340 W:      http://gitorious.org/linux-can
2341 T:      git git://gitorious.org/linux-can/linux-can-next.git
2342 S:      Maintained
2343 F:      Documentation/networking/can.txt
2344 F:      net/can/
2345 F:      include/linux/can/core.h
2346 F:      include/uapi/linux/can.h
2347 F:      include/uapi/linux/can/bcm.h
2348 F:      include/uapi/linux/can/raw.h
2349 F:      include/uapi/linux/can/gw.h
2350
2351 CAN NETWORK DRIVERS
2352 M:      Wolfgang Grandegger <wg@grandegger.com>
2353 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2354 L:      linux-can@vger.kernel.org
2355 W:      http://gitorious.org/linux-can
2356 T:      git git://gitorious.org/linux-can/linux-can-next.git
2357 S:      Maintained
2358 F:      drivers/net/can/
2359 F:      include/linux/can/dev.h
2360 F:      include/linux/can/platform/
2361 F:      include/uapi/linux/can/error.h
2362 F:      include/uapi/linux/can/netlink.h
2363
2364 CAPABILITIES
2365 M:      Serge Hallyn <serge.hallyn@canonical.com>
2366 L:      linux-security-module@vger.kernel.org
2367 S:      Supported
2368 F:      include/linux/capability.h
2369 F:      include/uapi/linux/capability.h
2370 F:      security/capability.c
2371 F:      security/commoncap.c
2372 F:      kernel/capability.c
2373
2374 CC2520 IEEE-802.15.4 RADIO DRIVER
2375 M:      Varka Bhadram <varkabhadram@gmail.com>
2376 L:      linux-wpan@vger.kernel.org
2377 S:      Maintained
2378 F:      drivers/net/ieee802154/cc2520.c
2379 F:      include/linux/spi/cc2520.h
2380 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2381
2382 CELL BROADBAND ENGINE ARCHITECTURE
2383 M:      Arnd Bergmann <arnd@arndb.de>
2384 L:      linuxppc-dev@lists.ozlabs.org
2385 L:      cbe-oss-dev@lists.ozlabs.org
2386 W:      http://www.ibm.com/developerworks/power/cell/
2387 S:      Supported
2388 F:      arch/powerpc/include/asm/cell*.h
2389 F:      arch/powerpc/include/asm/spu*.h
2390 F:      arch/powerpc/include/uapi/asm/spu*.h
2391 F:      arch/powerpc/oprofile/*cell*
2392 F:      arch/powerpc/platforms/cell/
2393
2394 CEPH DISTRIBUTED FILE SYSTEM CLIENT
2395 M:      Sage Weil <sage@inktank.com>
2396 L:      ceph-devel@vger.kernel.org
2397 W:      http://ceph.com/
2398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2399 S:      Supported
2400 F:      Documentation/filesystems/ceph.txt
2401 F:      fs/ceph/
2402 F:      net/ceph/
2403 F:      include/linux/ceph/
2404 F:      include/linux/crush/
2405
2406 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2407 L:      linux-usb@vger.kernel.org
2408 S:      Orphan
2409 F:      Documentation/usb/WUSB-Design-overview.txt
2410 F:      Documentation/usb/wusb-cbaf
2411 F:      drivers/usb/host/hwa-hc.c
2412 F:      drivers/usb/host/whci/
2413 F:      drivers/usb/wusbcore/
2414 F:      include/linux/usb/wusb*
2415
2416 CFAG12864B LCD DRIVER
2417 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2418 W:      http://miguelojeda.es/auxdisplay.htm
2419 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2420 S:      Maintained
2421 F:      drivers/auxdisplay/cfag12864b.c
2422 F:      include/linux/cfag12864b.h
2423
2424 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2425 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2426 W:      http://miguelojeda.es/auxdisplay.htm
2427 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2428 S:      Maintained
2429 F:      drivers/auxdisplay/cfag12864bfb.c
2430 F:      include/linux/cfag12864b.h
2431
2432 CFG80211 and NL80211
2433 M:      Johannes Berg <johannes@sipsolutions.net>
2434 L:      linux-wireless@vger.kernel.org
2435 W:      http://wireless.kernel.org/
2436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2438 S:      Maintained
2439 F:      include/uapi/linux/nl80211.h
2440 F:      include/net/cfg80211.h
2441 F:      net/wireless/*
2442 X:      net/wireless/wext*
2443
2444 CHAR and MISC DRIVERS
2445 M:      Arnd Bergmann <arnd@arndb.de>
2446 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2448 S:      Supported
2449 F:      drivers/char/*
2450 F:      drivers/misc/*
2451 F:      include/linux/miscdevice.h
2452
2453 CHECKPATCH
2454 M:      Andy Whitcroft <apw@canonical.com>
2455 M:      Joe Perches <joe@perches.com>
2456 S:      Maintained
2457 F:      scripts/checkpatch.pl
2458
2459 CHINESE DOCUMENTATION
2460 M:      Harry Wei <harryxiyou@gmail.com>
2461 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2462 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2463 S:      Maintained
2464 F:      Documentation/zh_CN/
2465
2466 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2467 M:      Peter Chen <Peter.Chen@freescale.com>
2468 T:      git git://github.com/hzpeterchen/linux-usb.git
2469 L:      linux-usb@vger.kernel.org
2470 S:      Maintained
2471 F:      drivers/usb/chipidea/
2472
2473 CHROME HARDWARE PLATFORM SUPPORT
2474 M:      Olof Johansson <olof@lixom.net>
2475 S:      Maintained
2476 F:      drivers/platform/chrome/
2477
2478 CISCO VIC ETHERNET NIC DRIVER
2479 M:      Christian Benvenuti <benve@cisco.com>
2480 M:      Sujith Sankar <ssujith@cisco.com>
2481 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2482 M:      Neel Patel <neepatel@cisco.com>
2483 S:      Supported
2484 F:      drivers/net/ethernet/cisco/enic/
2485
2486 CISCO VIC LOW LATENCY NIC DRIVER
2487 M:      Upinder Malhi <umalhi@cisco.com>
2488 S:      Supported
2489 F:      drivers/infiniband/hw/usnic
2490
2491 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2492 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2493 L:      netdev@vger.kernel.org
2494 S:      Maintained
2495 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2496
2497 CIRRUS LOGIC AUDIO CODEC DRIVERS
2498 M:      Brian Austin <brian.austin@cirrus.com>
2499 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2500 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2501 S:      Maintained
2502 F:      sound/soc/codecs/cs*
2503
2504 CLEANCACHE API
2505 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2506 L:      linux-kernel@vger.kernel.org
2507 S:      Maintained
2508 F:      mm/cleancache.c
2509 F:      include/linux/cleancache.h
2510
2511 CLK API
2512 M:      Russell King <linux@arm.linux.org.uk>
2513 S:      Maintained
2514 F:      include/linux/clk.h
2515
2516 CLOCKSOURCE, CLOCKEVENT DRIVERS
2517 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2518 M:      Thomas Gleixner <tglx@linutronix.de>
2519 L:      linux-kernel@vger.kernel.org
2520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2521 S:      Supported
2522 F:      drivers/clocksource
2523
2524 CISCO FCOE HBA DRIVER
2525 M:      Hiral Patel <hiralpat@cisco.com>
2526 M:      Suma Ramars <sramars@cisco.com>
2527 M:      Brian Uchino <buchino@cisco.com>
2528 L:      linux-scsi@vger.kernel.org
2529 S:      Supported
2530 F:      drivers/scsi/fnic/
2531
2532 CMPC ACPI DRIVER
2533 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2534 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2535 L:      platform-driver-x86@vger.kernel.org
2536 S:      Supported
2537 F:      drivers/platform/x86/classmate-laptop.c
2538
2539 COCCINELLE/Semantic Patches (SmPL)
2540 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2541 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2542 M:      Nicolas Palix <nicolas.palix@imag.fr>
2543 M:      Michal Marek <mmarek@suse.cz>
2544 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2546 W:      http://coccinelle.lip6.fr/
2547 S:      Supported
2548 F:      Documentation/coccinelle.txt
2549 F:      scripts/coccinelle/
2550 F:      scripts/coccicheck
2551
2552 CODA FILE SYSTEM
2553 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2554 M:      coda@cs.cmu.edu
2555 L:      codalist@coda.cs.cmu.edu
2556 W:      http://www.coda.cs.cmu.edu/
2557 S:      Maintained
2558 F:      Documentation/filesystems/coda.txt
2559 F:      fs/coda/
2560 F:      include/linux/coda*.h
2561 F:      include/uapi/linux/coda*.h
2562
2563 CODA V4L2 MEM2MEM DRIVER
2564 M:      Philipp Zabel <p.zabel@pengutronix.de>
2565 L:      linux-media@vger.kernel.org
2566 S:      Maintained
2567 F:      Documentation/devicetree/bindings/media/coda.txt
2568 F:      drivers/media/platform/coda/
2569
2570 COMMON CLK FRAMEWORK
2571 M:      Mike Turquette <mturquette@linaro.org>
2572 M:      Stephen Boyd <sboyd@codeaurora.org>
2573 L:      linux-kernel@vger.kernel.org
2574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2575 S:      Maintained
2576 F:      drivers/clk/
2577 X:      drivers/clk/clkdev.c
2578 F:      include/linux/clk-pr*
2579 F:      include/linux/clk/
2580
2581 COMMON INTERNET FILE SYSTEM (CIFS)
2582 M:      Steve French <sfrench@samba.org>
2583 L:      linux-cifs@vger.kernel.org
2584 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2585 W:      http://linux-cifs.samba.org/
2586 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2587 S:      Supported
2588 F:      Documentation/filesystems/cifs/
2589 F:      fs/cifs/
2590
2591 COMPACTPCI HOTPLUG CORE
2592 M:      Scott Murray <scott@spiteful.org>
2593 L:      linux-pci@vger.kernel.org
2594 S:      Maintained
2595 F:      drivers/pci/hotplug/cpci_hotplug*
2596
2597 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2598 M:      Scott Murray <scott@spiteful.org>
2599 L:      linux-pci@vger.kernel.org
2600 S:      Maintained
2601 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2602
2603 COMPACTPCI HOTPLUG GENERIC DRIVER
2604 M:      Scott Murray <scott@spiteful.org>
2605 L:      linux-pci@vger.kernel.org
2606 S:      Maintained
2607 F:      drivers/pci/hotplug/cpcihp_generic.c
2608
2609 COMPAL LAPTOP SUPPORT
2610 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2611 L:      platform-driver-x86@vger.kernel.org
2612 S:      Maintained
2613 F:      drivers/platform/x86/compal-laptop.c
2614
2615 CONEXANT ACCESSRUNNER USB DRIVER
2616 M:      Simon Arlott <cxacru@fire.lp0.eu>
2617 L:      accessrunner-general@lists.sourceforge.net
2618 W:      http://accessrunner.sourceforge.net/
2619 S:      Maintained
2620 F:      drivers/usb/atm/cxacru.c
2621
2622 CONFIGFS
2623 M:      Joel Becker <jlbec@evilplan.org>
2624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2625 S:      Supported
2626 F:      fs/configfs/
2627 F:      include/linux/configfs.h
2628
2629 CONNECTOR
2630 M:      Evgeniy Polyakov <zbr@ioremap.net>
2631 L:      netdev@vger.kernel.org
2632 S:      Maintained
2633 F:      drivers/connector/
2634
2635 CONTROL GROUP (CGROUP)
2636 M:      Tejun Heo <tj@kernel.org>
2637 M:      Li Zefan <lizefan@huawei.com>
2638 L:      cgroups@vger.kernel.org
2639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2640 S:      Maintained
2641 F:      Documentation/cgroups/
2642 F:      include/linux/cgroup*
2643 F:      kernel/cgroup*
2644
2645 CONTROL GROUP - CPUSET
2646 M:      Li Zefan <lizefan@huawei.com>
2647 L:      cgroups@vger.kernel.org
2648 W:      http://www.bullopensource.org/cpuset/
2649 W:      http://oss.sgi.com/projects/cpusets/
2650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2651 S:      Maintained
2652 F:      Documentation/cgroups/cpusets.txt
2653 F:      include/linux/cpuset.h
2654 F:      kernel/cpuset.c
2655
2656 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2657 M:      Johannes Weiner <hannes@cmpxchg.org>
2658 M:      Michal Hocko <mhocko@suse.cz>
2659 L:      cgroups@vger.kernel.org
2660 L:      linux-mm@kvack.org
2661 S:      Maintained
2662 F:      mm/memcontrol.c
2663 F:      mm/swap_cgroup.c
2664
2665 CORETEMP HARDWARE MONITORING DRIVER
2666 M:      Fenghua Yu <fenghua.yu@intel.com>
2667 L:      lm-sensors@lm-sensors.org
2668 S:      Maintained
2669 F:      Documentation/hwmon/coretemp
2670 F:      drivers/hwmon/coretemp.c
2671
2672 COSA/SRP SYNC SERIAL DRIVER
2673 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2674 W:      http://www.fi.muni.cz/~kas/cosa/
2675 S:      Maintained
2676 F:      drivers/net/wan/cosa*
2677
2678 CPMAC ETHERNET DRIVER
2679 M:      Florian Fainelli <florian@openwrt.org>
2680 L:      netdev@vger.kernel.org
2681 S:      Maintained
2682 F:      drivers/net/ethernet/ti/cpmac.c
2683
2684 CPU FREQUENCY DRIVERS
2685 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
2686 M:      Viresh Kumar <viresh.kumar@linaro.org>
2687 L:      linux-pm@vger.kernel.org
2688 S:      Maintained
2689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2690 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2691 F:      drivers/cpufreq/
2692 F:      include/linux/cpufreq.h
2693
2694 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2695 M:      Viresh Kumar <viresh.kumar@linaro.org>
2696 M:      Sudeep Holla <sudeep.holla@arm.com>
2697 L:      linux-pm@vger.kernel.org
2698 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2699 S:      Maintained
2700 F:      drivers/cpufreq/arm_big_little.h
2701 F:      drivers/cpufreq/arm_big_little.c
2702 F:      drivers/cpufreq/arm_big_little_dt.c
2703
2704 CPUIDLE DRIVER - ARM BIG LITTLE
2705 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2706 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2707 L:      linux-pm@vger.kernel.org
2708 L:      linux-arm-kernel@lists.infradead.org
2709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2710 S:      Maintained
2711 F:      drivers/cpuidle/cpuidle-big_little.c
2712
2713 CPUIDLE DRIVER - ARM EXYNOS
2714 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2715 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2716 M:      Kukjin Kim <kgene@kernel.org>
2717 L:      linux-pm@vger.kernel.org
2718 L:      linux-samsung-soc@vger.kernel.org
2719 S:      Supported
2720 F:      drivers/cpuidle/cpuidle-exynos.c
2721 F:      arch/arm/mach-exynos/pm.c
2722
2723 CPUIDLE DRIVERS
2724 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
2725 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2726 L:      linux-pm@vger.kernel.org
2727 S:      Maintained
2728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2729 F:      drivers/cpuidle/*
2730 F:      include/linux/cpuidle.h
2731
2732 CPUID/MSR DRIVER
2733 M:      "H. Peter Anvin" <hpa@zytor.com>
2734 S:      Maintained
2735 F:      arch/x86/kernel/cpuid.c
2736 F:      arch/x86/kernel/msr.c
2737
2738 CPU POWER MONITORING SUBSYSTEM
2739 M:      Thomas Renninger <trenn@suse.de>
2740 L:      linux-pm@vger.kernel.org
2741 S:      Maintained
2742 F:      tools/power/cpupower/
2743
2744 CRAMFS FILESYSTEM
2745 W:      http://sourceforge.net/projects/cramfs/
2746 S:      Orphan / Obsolete
2747 F:      Documentation/filesystems/cramfs.txt
2748 F:      fs/cramfs/
2749
2750 CRIS PORT
2751 M:      Mikael Starvik <starvik@axis.com>
2752 M:      Jesper Nilsson <jesper.nilsson@axis.com>
2753 L:      linux-cris-kernel@axis.com
2754 W:      http://developer.axis.com
2755 S:      Maintained
2756 F:      arch/cris/
2757 F:      drivers/tty/serial/crisv10.*
2758
2759 CRYPTO API
2760 M:      Herbert Xu <herbert@gondor.apana.org.au>
2761 M:      "David S. Miller" <davem@davemloft.net>
2762 L:      linux-crypto@vger.kernel.org
2763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2764 S:      Maintained
2765 F:      Documentation/crypto/
2766 F:      arch/*/crypto/
2767 F:      crypto/
2768 F:      drivers/crypto/
2769 F:      include/crypto/
2770
2771 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2772 M:      Neil Horman <nhorman@tuxdriver.com>
2773 L:      linux-crypto@vger.kernel.org
2774 S:      Maintained
2775 F:      crypto/ansi_cprng.c
2776 F:      crypto/rng.c
2777
2778 CS5535 Audio ALSA driver
2779 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
2780 S:      Maintained
2781 F:      sound/pci/cs5535audio/
2782
2783 CW1200 WLAN driver
2784 M:      Solomon Peachy <pizza@shaftnet.org>
2785 S:      Maintained
2786 F:      drivers/net/wireless/cw1200/
2787
2788 CX18 VIDEO4LINUX DRIVER
2789 M:      Andy Walls <awalls@md.metrocast.net>
2790 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
2791 L:      linux-media@vger.kernel.org
2792 T:      git git://linuxtv.org/media_tree.git
2793 W:      http://linuxtv.org
2794 W:      http://www.ivtvdriver.org/index.php/Cx18
2795 S:      Maintained
2796 F:      Documentation/video4linux/cx18.txt
2797 F:      drivers/media/pci/cx18/
2798 F:      include/uapi/linux/ivtv*
2799
2800 CX2341X MPEG ENCODER HELPER MODULE
2801 M:      Hans Verkuil <hverkuil@xs4all.nl>
2802 L:      linux-media@vger.kernel.org
2803 T:      git git://linuxtv.org/media_tree.git
2804 W:      http://linuxtv.org
2805 S:      Maintained
2806 F:      drivers/media/common/cx2341x*
2807 F:      include/media/cx2341x*
2808
2809 CX88 VIDEO4LINUX DRIVER
2810 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2811 L:      linux-media@vger.kernel.org
2812 W:      http://linuxtv.org
2813 T:      git git://linuxtv.org/media_tree.git
2814 S:      Odd fixes
2815 F:      Documentation/video4linux/cx88/
2816 F:      drivers/media/pci/cx88/
2817
2818 CXD2820R MEDIA DRIVER
2819 M:      Antti Palosaari <crope@iki.fi>
2820 L:      linux-media@vger.kernel.org
2821 W:      http://linuxtv.org/
2822 W:      http://palosaari.fi/linux/
2823 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
2824 T:      git git://linuxtv.org/anttip/media_tree.git
2825 S:      Maintained
2826 F:      drivers/media/dvb-frontends/cxd2820r*
2827
2828 CXGB3 ETHERNET DRIVER (CXGB3)
2829 M:      Santosh Raspatur <santosh@chelsio.com>
2830 L:      netdev@vger.kernel.org
2831 W:      http://www.chelsio.com
2832 S:      Supported
2833 F:      drivers/net/ethernet/chelsio/cxgb3/
2834
2835 CXGB3 ISCSI DRIVER (CXGB3I)
2836 M:      Karen Xie <kxie@chelsio.com>
2837 L:      linux-scsi@vger.kernel.org
2838 W:      http://www.chelsio.com
2839 S:      Supported
2840 F:      drivers/scsi/cxgbi/cxgb3i
2841
2842 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
2843 M:      Steve Wise <swise@chelsio.com>
2844 L:      linux-rdma@vger.kernel.org
2845 W:      http://www.openfabrics.org
2846 S:      Supported
2847 F:      drivers/infiniband/hw/cxgb3/
2848
2849 CXGB4 ETHERNET DRIVER (CXGB4)
2850 M:      Hariprasad S <hariprasad@chelsio.com>
2851 L:      netdev@vger.kernel.org
2852 W:      http://www.chelsio.com
2853 S:      Supported
2854 F:      drivers/net/ethernet/chelsio/cxgb4/
2855
2856 CXGB4 ISCSI DRIVER (CXGB4I)
2857 M:      Karen Xie <kxie@chelsio.com>
2858 L:      linux-scsi@vger.kernel.org
2859 W:      http://www.chelsio.com
2860 S:      Supported
2861 F:      drivers/scsi/cxgbi/cxgb4i
2862
2863 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2864 M:      Steve Wise <swise@chelsio.com>
2865 L:      linux-rdma@vger.kernel.org
2866 W:      http://www.openfabrics.org
2867 S:      Supported
2868 F:      drivers/infiniband/hw/cxgb4/
2869
2870 CXGB4VF ETHERNET DRIVER (CXGB4VF)
2871 M:      Casey Leedom <leedom@chelsio.com>
2872 L:      netdev@vger.kernel.org
2873 W:      http://www.chelsio.com
2874 S:      Supported
2875 F:      drivers/net/ethernet/chelsio/cxgb4vf/
2876
2877 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
2878 M:      Ian Munsie <imunsie@au1.ibm.com>
2879 M:      Michael Neuling <mikey@neuling.org>
2880 L:      linuxppc-dev@lists.ozlabs.org
2881 S:      Supported
2882 F:      drivers/misc/cxl/
2883 F:      include/misc/cxl.h
2884 F:      include/uapi/misc/cxl.h
2885 F:      Documentation/powerpc/cxl.txt
2886 F:      Documentation/powerpc/cxl.txt
2887 F:      Documentation/ABI/testing/sysfs-class-cxl
2888
2889 STMMAC ETHERNET DRIVER
2890 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
2891 L:      netdev@vger.kernel.org
2892 W:      http://www.stlinux.com
2893 S:      Supported
2894 F:      drivers/net/ethernet/stmicro/stmmac/
2895
2896 CYBERPRO FB DRIVER
2897 M:      Russell King <linux@arm.linux.org.uk>
2898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2899 W:      http://www.arm.linux.org.uk/
2900 S:      Maintained
2901 F:      drivers/video/fbdev/cyber2000fb.*
2902
2903 CYCLADES ASYNC MUX DRIVER
2904 W:      http://www.cyclades.com/
2905 S:      Orphan
2906 F:      drivers/tty/cyclades.c
2907 F:      include/linux/cyclades.h
2908 F:      include/uapi/linux/cyclades.h
2909
2910 CYCLADES PC300 DRIVER
2911 W:      http://www.cyclades.com/
2912 S:      Orphan
2913 F:      drivers/net/wan/pc300*
2914
2915 CYPRESS_FIRMWARE MEDIA DRIVER
2916 M:      Antti Palosaari <crope@iki.fi>
2917 L:      linux-media@vger.kernel.org
2918 W:      http://linuxtv.org/
2919 W:      http://palosaari.fi/linux/
2920 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
2921 T:      git git://linuxtv.org/anttip/media_tree.git
2922 S:      Maintained
2923 F:      drivers/media/common/cypress_firmware*
2924
2925 CYTTSP TOUCHSCREEN DRIVER
2926 M:      Ferruh Yigit <fery@cypress.com>
2927 L:      linux-input@vger.kernel.org
2928 S:      Supported
2929 F:      drivers/input/touchscreen/cyttsp*
2930 F:      include/linux/input/cyttsp.h
2931
2932 DAMA SLAVE for AX.25
2933 M:      Joerg Reuter <jreuter@yaina.de>
2934 W:      http://yaina.de/jreuter/
2935 W:      http://www.qsl.net/dl1bke/
2936 L:      linux-hams@vger.kernel.org
2937 S:      Maintained
2938 F:      net/ax25/af_ax25.c
2939 F:      net/ax25/ax25_dev.c
2940 F:      net/ax25/ax25_ds_*
2941 F:      net/ax25/ax25_in.c
2942 F:      net/ax25/ax25_out.c
2943 F:      net/ax25/ax25_timer.c
2944 F:      net/ax25/sysctl_net_ax25.c
2945
2946 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
2947 L:      netdev@vger.kernel.org
2948 S:      Orphan
2949 F:      Documentation/networking/dmfe.txt
2950 F:      drivers/net/ethernet/dec/tulip/dmfe.c
2951
2952 DC390/AM53C974 SCSI driver
2953 M:      Hannes Reinecke <hare@suse.de>
2954 L:      linux-scsi@vger.kernel.org
2955 S:      Maintained
2956 F:      drivers/scsi/am53c974.c
2957
2958 DC395x SCSI driver
2959 M:      Oliver Neukum <oliver@neukum.org>
2960 M:      Ali Akcaagac <aliakc@web.de>
2961 M:      Jamie Lenehan <lenehan@twibble.org>
2962 L:      dc395x@twibble.org
2963 W:      http://twibble.org/dist/dc395x/
2964 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
2965 S:      Maintained
2966 F:      Documentation/scsi/dc395x.txt
2967 F:      drivers/scsi/dc395x.*
2968
2969 DCCP PROTOCOL
2970 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
2971 L:      dccp@vger.kernel.org
2972 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
2973 S:      Maintained
2974 F:      include/linux/dccp.h
2975 F:      include/uapi/linux/dccp.h
2976 F:      include/linux/tfrc.h
2977 F:      net/dccp/
2978
2979 DECnet NETWORK LAYER
2980 W:      http://linux-decnet.sourceforge.net
2981 L:      linux-decnet-user@lists.sourceforge.net
2982 S:      Orphan
2983 F:      Documentation/networking/decnet.txt
2984 F:      net/decnet/
2985
2986 DECSTATION PLATFORM SUPPORT
2987 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
2988 L:      linux-mips@linux-mips.org
2989 W:      http://www.linux-mips.org/wiki/DECstation
2990 S:      Maintained
2991 F:      arch/mips/dec/
2992 F:      arch/mips/include/asm/dec/
2993 F:      arch/mips/include/asm/mach-dec/
2994
2995 DEFXX FDDI NETWORK DRIVER
2996 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
2997 S:      Maintained
2998 F:      drivers/net/fddi/defxx.*
2999
3000 DELL LAPTOP DRIVER
3001 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3002 L:      platform-driver-x86@vger.kernel.org
3003 S:      Maintained
3004 F:      drivers/platform/x86/dell-laptop.c
3005
3006 DELL LAPTOP SMM DRIVER
3007 M:      Guenter Roeck <linux@roeck-us.net>
3008 F:      drivers/char/i8k.c
3009 F:      include/uapi/linux/i8k.h
3010
3011 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3012 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3013 S:      Maintained
3014 F:      Documentation/dcdbas.txt
3015 F:      drivers/firmware/dcdbas.*
3016
3017 DELL WMI EXTRAS DRIVER
3018 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3019 S:      Maintained
3020 F:      drivers/platform/x86/dell-wmi.c
3021
3022 DESIGNWARE USB2 DRD IP DRIVER
3023 M:      Paul Zimmerman <paulz@synopsys.com>
3024 L:      linux-usb@vger.kernel.org
3025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3026 S:      Maintained
3027 F:      drivers/usb/dwc2/
3028
3029 DESIGNWARE USB3 DRD IP DRIVER
3030 M:      Felipe Balbi <balbi@ti.com>
3031 L:      linux-usb@vger.kernel.org
3032 L:      linux-omap@vger.kernel.org
3033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3034 S:      Maintained
3035 F:      drivers/usb/dwc3/
3036
3037 DEVICE COREDUMP (DEV_COREDUMP)
3038 M:      Johannes Berg <johannes@sipsolutions.net>
3039 L:      linux-kernel@vger.kernel.org
3040 S:      Maintained
3041 F:      drivers/base/devcoredump.c
3042 F:      include/linux/devcoredump.h
3043
3044 DEVICE FREQUENCY (DEVFREQ)
3045 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3046 M:      Kyungmin Park <kyungmin.park@samsung.com>
3047 L:      linux-pm@vger.kernel.org
3048 S:      Maintained
3049 F:      drivers/devfreq/
3050
3051 DEVICE NUMBER REGISTRY
3052 M:      Torben Mathiasen <device@lanana.org>
3053 W:      http://lanana.org/docs/device-list/index.html
3054 S:      Maintained
3055
3056 DEVICE-MAPPER  (LVM)
3057 M:      Alasdair Kergon <agk@redhat.com>
3058 M:      Mike Snitzer <snitzer@redhat.com>
3059 M:      dm-devel@redhat.com
3060 L:      dm-devel@redhat.com
3061 W:      http://sources.redhat.com/dm
3062 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3064 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3065 S:      Maintained
3066 F:      Documentation/device-mapper/
3067 F:      drivers/md/dm*
3068 F:      drivers/md/persistent-data/
3069 F:      include/linux/device-mapper.h
3070 F:      include/linux/dm-*.h
3071 F:      include/uapi/linux/dm-*.h
3072
3073 DIALOG SEMICONDUCTOR DRIVERS
3074 M:      Support Opensource <support.opensource@diasemi.com>
3075 W:      http://www.dialog-semiconductor.com/products
3076 S:      Supported
3077 F:      Documentation/hwmon/da90??
3078 F:      drivers/gpio/gpio-da90??.c
3079 F:      drivers/hwmon/da90??-hwmon.c
3080 F:      drivers/input/misc/da90??_onkey.c
3081 F:      drivers/input/touchscreen/da9052_tsi.c
3082 F:      drivers/leds/leds-da90??.c
3083 F:      drivers/mfd/da903x.c
3084 F:      drivers/mfd/da90??-*.c
3085 F:      drivers/power/da9052-battery.c
3086 F:      drivers/regulator/da903x.c
3087 F:      drivers/regulator/da9???-regulator.[ch]
3088 F:      drivers/rtc/rtc-da90??.c
3089 F:      drivers/video/backlight/da90??_bl.c
3090 F:      drivers/watchdog/da90??_wdt.c
3091 F:      include/linux/mfd/da903x.h
3092 F:      include/linux/mfd/da9052/
3093 F:      include/linux/mfd/da9055/
3094 F:      include/linux/mfd/da9063/
3095 F:      include/sound/da[79]*.h
3096 F:      sound/soc/codecs/da[79]*.[ch]
3097
3098 DIGI NEO AND CLASSIC PCI PRODUCTS
3099 M:      Lidza Louina <lidza.louina@gmail.com>
3100 M:      Mark Hounschell <markh@compro.net>
3101 L:      driverdev-devel@linuxdriverproject.org
3102 S:      Maintained
3103 F:      drivers/staging/dgnc/
3104
3105 DIGI EPCA PCI PRODUCTS
3106 M:      Lidza Louina <lidza.louina@gmail.com>
3107 M:      Mark Hounschell <markh@compro.net>
3108 M:      Daeseok Youn <daeseok.youn@gmail.com>
3109 L:      driverdev-devel@linuxdriverproject.org
3110 S:      Maintained
3111 F:      drivers/staging/dgap/
3112
3113 DIOLAN U2C-12 I2C DRIVER
3114 M:      Guenter Roeck <linux@roeck-us.net>
3115 L:      linux-i2c@vger.kernel.org
3116 S:      Maintained
3117 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3118
3119 DIRECTORY NOTIFICATION (DNOTIFY)
3120 M:      Eric Paris <eparis@parisplace.org>
3121 S:      Maintained
3122 F:      Documentation/filesystems/dnotify.txt
3123 F:      fs/notify/dnotify/
3124 F:      include/linux/dnotify.h
3125
3126 DISK GEOMETRY AND PARTITION HANDLING
3127 M:      Andries Brouwer <aeb@cwi.nl>
3128 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3129 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3130 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3131 S:      Maintained
3132
3133 DISKQUOTA
3134 M:      Jan Kara <jack@suse.cz>
3135 S:      Maintained
3136 F:      Documentation/filesystems/quota.txt
3137 F:      fs/quota/
3138 F:      include/linux/quota*.h
3139 F:      include/uapi/linux/quota*.h
3140
3141 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3142 M:      Bernie Thompson <bernie@plugable.com>
3143 L:      linux-fbdev@vger.kernel.org
3144 S:      Maintained
3145 W:      http://plugable.com/category/projects/udlfb/
3146 F:      drivers/video/fbdev/udlfb.c
3147 F:      include/video/udlfb.h
3148 F:      Documentation/fb/udlfb.txt
3149
3150 DISTRIBUTED LOCK MANAGER (DLM)
3151 M:      Christine Caulfield <ccaulfie@redhat.com>
3152 M:      David Teigland <teigland@redhat.com>
3153 L:      cluster-devel@redhat.com
3154 W:      http://sources.redhat.com/cluster/
3155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3156 S:      Supported
3157 F:      fs/dlm/
3158
3159 DMA BUFFER SHARING FRAMEWORK
3160 M:      Sumit Semwal <sumit.semwal@linaro.org>
3161 S:      Maintained
3162 L:      linux-media@vger.kernel.org
3163 L:      dri-devel@lists.freedesktop.org
3164 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3165 F:      drivers/dma-buf/
3166 F:      include/linux/dma-buf*
3167 F:      include/linux/reservation.h
3168 F:      include/linux/*fence.h
3169 F:      Documentation/dma-buf-sharing.txt
3170 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3171
3172 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3173 M:      Vinod Koul <vinod.koul@intel.com>
3174 L:      dmaengine@vger.kernel.org
3175 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3176 S:      Maintained
3177 F:      drivers/dma/
3178 F:      include/linux/dma*
3179 F:      Documentation/dmaengine/
3180 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3181
3182 DME1737 HARDWARE MONITOR DRIVER
3183 M:      Juerg Haefliger <juergh@gmail.com>
3184 L:      lm-sensors@lm-sensors.org
3185 S:      Maintained
3186 F:      Documentation/hwmon/dme1737
3187 F:      drivers/hwmon/dme1737.c
3188
3189 DOCKING STATION DRIVER
3190 M:      Shaohua Li <shaohua.li@intel.com>
3191 L:      linux-acpi@vger.kernel.org
3192 S:      Supported
3193 F:      drivers/acpi/dock.c
3194
3195 DOCUMENTATION
3196 M:      Jonathan Corbet <corbet@lwn.net>
3197 L:      linux-doc@vger.kernel.org
3198 S:      Maintained
3199 F:      Documentation/
3200 X:      Documentation/ABI/
3201 X:      Documentation/devicetree/
3202 X:      Documentation/[a-z][a-z]_[A-Z][A-Z]/
3203
3204 DOUBLETALK DRIVER
3205 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3206 L:      blinux-list@redhat.com
3207 S:      Maintained
3208 F:      drivers/char/dtlk.c
3209 F:      include/linux/dtlk.h
3210
3211 DPT_I2O SCSI RAID DRIVER
3212 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3213 L:      linux-scsi@vger.kernel.org
3214 W:      http://www.adaptec.com/
3215 S:      Maintained
3216 F:      drivers/scsi/dpt*
3217 F:      drivers/scsi/dpt/
3218
3219 DRBD DRIVER
3220 P:      Philipp Reisner
3221 P:      Lars Ellenberg
3222 M:      drbd-dev@lists.linbit.com
3223 L:      drbd-user@lists.linbit.com
3224 W:      http://www.drbd.org
3225 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3226 T:      git git://git.drbd.org/drbd-8.3.git
3227 S:      Supported
3228 F:      drivers/block/drbd/
3229 F:      lib/lru_cache.c
3230 F:      Documentation/blockdev/drbd/
3231
3232 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
3233 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3235 S:      Supported
3236 F:      Documentation/kobject.txt
3237 F:      drivers/base/
3238 F:      fs/sysfs/
3239 F:      fs/debugfs/
3240 F:      include/linux/kobj*
3241 F:      include/linux/debugfs.h
3242 F:      lib/kobj*
3243
3244 DRM DRIVERS
3245 M:      David Airlie <airlied@linux.ie>
3246 L:      dri-devel@lists.freedesktop.org
3247 T:      git git://people.freedesktop.org/~airlied/linux
3248 S:      Maintained
3249 F:      drivers/gpu/drm/
3250 F:      drivers/gpu/vga/
3251 F:      include/drm/
3252 F:      include/uapi/drm/
3253
3254 RADEON DRM DRIVERS
3255 M:      Alex Deucher <alexander.deucher@amd.com>
3256 M:      Christian König <christian.koenig@amd.com>
3257 L:      dri-devel@lists.freedesktop.org
3258 T:      git git://people.freedesktop.org/~agd5f/linux
3259 S:      Supported
3260 F:      drivers/gpu/drm/radeon/
3261 F:      include/uapi/drm/radeon*
3262
3263 DRM PANEL DRIVERS
3264 M:      Thierry Reding <thierry.reding@gmail.com>
3265 L:      dri-devel@lists.freedesktop.org
3266 T:      git git://anongit.freedesktop.org/tegra/linux.git
3267 S:      Maintained
3268 F:      drivers/gpu/drm/drm_panel.c
3269 F:      drivers/gpu/drm/panel/
3270 F:      include/drm/drm_panel.h
3271 F:      Documentation/devicetree/bindings/panel/
3272
3273 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3274 M:      Daniel Vetter <daniel.vetter@intel.com>
3275 M:      Jani Nikula <jani.nikula@linux.intel.com>
3276 L:      intel-gfx@lists.freedesktop.org
3277 L:      dri-devel@lists.freedesktop.org
3278 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3279 T:      git git://anongit.freedesktop.org/drm-intel
3280 S:      Supported
3281 F:      drivers/gpu/drm/i915/
3282 F:      include/drm/i915*
3283 F:      include/uapi/drm/i915*
3284
3285 DRM DRIVERS FOR EXYNOS
3286 M:      Inki Dae <inki.dae@samsung.com>
3287 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3288 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3289 M:      Kyungmin Park <kyungmin.park@samsung.com>
3290 L:      dri-devel@lists.freedesktop.org
3291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3292 S:      Supported
3293 F:      drivers/gpu/drm/exynos/
3294 F:      include/drm/exynos*
3295 F:      include/uapi/drm/exynos*
3296
3297 DRM DRIVERS FOR FREESCALE IMX
3298 M:      Philipp Zabel <p.zabel@pengutronix.de>
3299 L:      dri-devel@lists.freedesktop.org
3300 S:      Maintained
3301 F:      drivers/gpu/drm/imx/
3302 F:      Documentation/devicetree/bindings/drm/imx/
3303
3304 DRM DRIVERS FOR NVIDIA TEGRA
3305 M:      Thierry Reding <thierry.reding@gmail.com>
3306 M:      Terje Bergström <tbergstrom@nvidia.com>
3307 L:      dri-devel@lists.freedesktop.org
3308 L:      linux-tegra@vger.kernel.org
3309 T:      git git://anongit.freedesktop.org/tegra/linux.git
3310 S:      Supported
3311 F:      drivers/gpu/drm/tegra/
3312 F:      drivers/gpu/host1x/
3313 F:      include/linux/host1x.h
3314 F:      include/uapi/drm/tegra_drm.h
3315 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3316
3317 DRM DRIVERS FOR RENESAS
3318 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3319 L:      dri-devel@lists.freedesktop.org
3320 L:      linux-sh@vger.kernel.org
3321 T:      git git://people.freedesktop.org/~airlied/linux
3322 S:      Supported
3323 F:      drivers/gpu/drm/rcar-du/
3324 F:      drivers/gpu/drm/shmobile/
3325 F:      include/linux/platform_data/rcar-du.h
3326 F:      include/linux/platform_data/shmob_drm.h
3327
3328 DSBR100 USB FM RADIO DRIVER
3329 M:      Alexey Klimov <klimov.linux@gmail.com>
3330 L:      linux-media@vger.kernel.org
3331 T:      git git://linuxtv.org/media_tree.git
3332 S:      Maintained
3333 F:      drivers/media/radio/dsbr100.c
3334
3335 DSCC4 DRIVER
3336 M:      Francois Romieu <romieu@fr.zoreil.com>
3337 L:      netdev@vger.kernel.org
3338 S:      Maintained
3339 F:      drivers/net/wan/dscc4.c
3340
3341 DVB_USB_AF9015 MEDIA DRIVER
3342 M:      Antti Palosaari <crope@iki.fi>
3343 L:      linux-media@vger.kernel.org
3344 W:      http://linuxtv.org/
3345 W:      http://palosaari.fi/linux/
3346 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3347 T:      git git://linuxtv.org/anttip/media_tree.git
3348 S:      Maintained
3349 F:      drivers/media/usb/dvb-usb-v2/af9015*
3350
3351 DVB_USB_AF9035 MEDIA DRIVER
3352 M:      Antti Palosaari <crope@iki.fi>
3353 L:      linux-media@vger.kernel.org
3354 W:      http://linuxtv.org/
3355 W:      http://palosaari.fi/linux/
3356 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3357 T:      git git://linuxtv.org/anttip/media_tree.git
3358 S:      Maintained
3359 F:      drivers/media/usb/dvb-usb-v2/af9035*
3360
3361 DVB_USB_ANYSEE MEDIA DRIVER
3362 M:      Antti Palosaari <crope@iki.fi>
3363 L:      linux-media@vger.kernel.org
3364 W:      http://linuxtv.org/
3365 W:      http://palosaari.fi/linux/
3366 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3367 T:      git git://linuxtv.org/anttip/media_tree.git
3368 S:      Maintained
3369 F:      drivers/media/usb/dvb-usb-v2/anysee*
3370
3371 DVB_USB_AU6610 MEDIA DRIVER
3372 M:      Antti Palosaari <crope@iki.fi>
3373 L:      linux-media@vger.kernel.org
3374 W:      http://linuxtv.org/
3375 W:      http://palosaari.fi/linux/
3376 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3377 T:      git git://linuxtv.org/anttip/media_tree.git
3378 S:      Maintained
3379 F:      drivers/media/usb/dvb-usb-v2/au6610*
3380
3381 DVB_USB_CE6230 MEDIA DRIVER
3382 M:      Antti Palosaari <crope@iki.fi>
3383 L:      linux-media@vger.kernel.org
3384 W:      http://linuxtv.org/
3385 W:      http://palosaari.fi/linux/
3386 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3387 T:      git git://linuxtv.org/anttip/media_tree.git
3388 S:      Maintained
3389 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3390
3391 DVB_USB_CXUSB MEDIA DRIVER
3392 M:      Michael Krufky <mkrufky@linuxtv.org>
3393 L:      linux-media@vger.kernel.org
3394 W:      http://linuxtv.org/
3395 W:      http://github.com/mkrufky
3396 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3397 T:      git git://linuxtv.org/media_tree.git
3398 S:      Maintained
3399 F:      drivers/media/usb/dvb-usb/cxusb*
3400
3401 DVB_USB_EC168 MEDIA DRIVER
3402 M:      Antti Palosaari <crope@iki.fi>
3403 L:      linux-media@vger.kernel.org
3404 W:      http://linuxtv.org/
3405 W:      http://palosaari.fi/linux/
3406 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3407 T:      git git://linuxtv.org/anttip/media_tree.git
3408 S:      Maintained
3409 F:      drivers/media/usb/dvb-usb-v2/ec168*
3410
3411 DVB_USB_GL861 MEDIA DRIVER
3412 M:      Antti Palosaari <crope@iki.fi>
3413 L:      linux-media@vger.kernel.org
3414 W:      http://linuxtv.org/
3415 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3416 T:      git git://linuxtv.org/anttip/media_tree.git
3417 S:      Maintained
3418 F:      drivers/media/usb/dvb-usb-v2/gl861*
3419
3420 DVB_USB_MXL111SF MEDIA DRIVER
3421 M:      Michael Krufky <mkrufky@linuxtv.org>
3422 L:      linux-media@vger.kernel.org
3423 W:      http://linuxtv.org/
3424 W:      http://github.com/mkrufky
3425 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3426 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3427 S:      Maintained
3428 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3429
3430 DVB_USB_RTL28XXU MEDIA DRIVER
3431 M:      Antti Palosaari <crope@iki.fi>
3432 L:      linux-media@vger.kernel.org
3433 W:      http://linuxtv.org/
3434 W:      http://palosaari.fi/linux/
3435 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3436 T:      git git://linuxtv.org/anttip/media_tree.git
3437 S:      Maintained
3438 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3439
3440 DVB_USB_V2 MEDIA DRIVER
3441 M:      Antti Palosaari <crope@iki.fi>
3442 L:      linux-media@vger.kernel.org
3443 W:      http://linuxtv.org/
3444 W:      http://palosaari.fi/linux/
3445 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3446 T:      git git://linuxtv.org/anttip/media_tree.git
3447 S:      Maintained
3448 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3449 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3450
3451 DYNAMIC DEBUG
3452 M:      Jason Baron <jbaron@akamai.com>
3453 S:      Maintained
3454 F:      lib/dynamic_debug.c
3455 F:      include/linux/dynamic_debug.h
3456
3457 DZ DECSTATION DZ11 SERIAL DRIVER
3458 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3459 S:      Maintained
3460 F:      drivers/tty/serial/dz.*
3461
3462 E4000 MEDIA DRIVER
3463 M:      Antti Palosaari <crope@iki.fi>
3464 L:      linux-media@vger.kernel.org
3465 W:      http://linuxtv.org/
3466 W:      http://palosaari.fi/linux/
3467 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3468 T:      git git://linuxtv.org/anttip/media_tree.git
3469 S:      Maintained
3470 F:      drivers/media/tuners/e4000*
3471
3472 EATA ISA/EISA/PCI SCSI DRIVER
3473 M:      Dario Ballabio <ballabio_dario@emc.com>
3474 L:      linux-scsi@vger.kernel.org
3475 S:      Maintained
3476 F:      drivers/scsi/eata.c
3477
3478 EC100 MEDIA DRIVER
3479 M:      Antti Palosaari <crope@iki.fi>
3480 L:      linux-media@vger.kernel.org
3481 W:      http://linuxtv.org/
3482 W:      http://palosaari.fi/linux/
3483 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3484 T:      git git://linuxtv.org/anttip/media_tree.git
3485 S:      Maintained
3486 F:      drivers/media/dvb-frontends/ec100*
3487
3488 ECRYPT FILE SYSTEM
3489 M:      Tyler Hicks <tyhicks@canonical.com>
3490 L:      ecryptfs@vger.kernel.org
3491 W:      http://ecryptfs.org
3492 W:      https://launchpad.net/ecryptfs
3493 S:      Supported
3494 F:      Documentation/filesystems/ecryptfs.txt
3495 F:      fs/ecryptfs/
3496
3497 EDAC-CORE
3498 M:      Doug Thompson <dougthompson@xmission.com>
3499 M:      Borislav Petkov <bp@alien8.de>
3500 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3501 L:      linux-edac@vger.kernel.org
3502 W:      bluesmoke.sourceforge.net
3503 S:      Supported
3504 F:      Documentation/edac.txt
3505 F:      drivers/edac/
3506 F:      include/linux/edac.h
3507
3508 EDAC-AMD64
3509 M:      Doug Thompson <dougthompson@xmission.com>
3510 M:      Borislav Petkov <bp@alien8.de>
3511 L:      linux-edac@vger.kernel.org
3512 W:      bluesmoke.sourceforge.net
3513 S:      Maintained
3514 F:      drivers/edac/amd64_edac*
3515
3516 EDAC-CALXEDA
3517 M:      Doug Thompson <dougthompson@xmission.com>
3518 M:      Robert Richter <rric@kernel.org>
3519 L:      linux-edac@vger.kernel.org
3520 W:      bluesmoke.sourceforge.net
3521 S:      Maintained
3522 F:      drivers/edac/highbank*
3523
3524 EDAC-CAVIUM
3525 M:      Ralf Baechle <ralf@linux-mips.org>
3526 M:      David Daney <david.daney@cavium.com>
3527 L:      linux-edac@vger.kernel.org
3528 L:      linux-mips@linux-mips.org
3529 W:      bluesmoke.sourceforge.net
3530 S:      Supported
3531 F:      drivers/edac/octeon_edac*
3532
3533 EDAC-E752X
3534 M:      Mark Gross <mark.gross@intel.com>
3535 M:      Doug Thompson <dougthompson@xmission.com>
3536 L:      linux-edac@vger.kernel.org
3537 W:      bluesmoke.sourceforge.net
3538 S:      Maintained
3539 F:      drivers/edac/e752x_edac.c
3540
3541 EDAC-E7XXX
3542 M:      Doug Thompson <dougthompson@xmission.com>
3543 L:      linux-edac@vger.kernel.org
3544 W:      bluesmoke.sourceforge.net
3545 S:      Maintained
3546 F:      drivers/edac/e7xxx_edac.c
3547
3548 EDAC-GHES
3549 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3550 L:      linux-edac@vger.kernel.org
3551 W:      bluesmoke.sourceforge.net
3552 S:      Maintained
3553 F:      drivers/edac/ghes_edac.c
3554
3555 EDAC-I82443BXGX
3556 M:      Tim Small <tim@buttersideup.com>
3557 L:      linux-edac@vger.kernel.org
3558 W:      bluesmoke.sourceforge.net
3559 S:      Maintained
3560 F:      drivers/edac/i82443bxgx_edac.c
3561
3562 EDAC-I3000
3563 M:      Jason Uhlenkott <juhlenko@akamai.com>
3564 L:      linux-edac@vger.kernel.org
3565 W:      bluesmoke.sourceforge.net
3566 S:      Maintained
3567 F:      drivers/edac/i3000_edac.c
3568
3569 EDAC-I5000
3570 M:      Doug Thompson <dougthompson@xmission.com>
3571 L:      linux-edac@vger.kernel.org
3572 W:      bluesmoke.sourceforge.net
3573 S:      Maintained
3574 F:      drivers/edac/i5000_edac.c
3575
3576 EDAC-I5400
3577 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3578 L:      linux-edac@vger.kernel.org
3579 W:      bluesmoke.sourceforge.net
3580 S:      Maintained
3581 F:      drivers/edac/i5400_edac.c
3582
3583 EDAC-I7300
3584 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3585 L:      linux-edac@vger.kernel.org
3586 W:      bluesmoke.sourceforge.net
3587 S:      Maintained
3588 F:      drivers/edac/i7300_edac.c
3589
3590 EDAC-I7CORE
3591 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3592 L:      linux-edac@vger.kernel.org
3593 W:      bluesmoke.sourceforge.net
3594 S:      Maintained
3595 F:      drivers/edac/i7core_edac.c
3596
3597 EDAC-I82975X
3598 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3599 M:      "Arvind R." <arvino55@gmail.com>
3600 L:      linux-edac@vger.kernel.org
3601 W:      bluesmoke.sourceforge.net
3602 S:      Maintained
3603 F:      drivers/edac/i82975x_edac.c
3604
3605 EDAC-IE31200
3606 M:      Jason Baron <jbaron@akamai.com>
3607 L:      linux-edac@vger.kernel.org
3608 W:      bluesmoke.sourceforge.net
3609 S:      Maintained
3610 F:      drivers/edac/ie31200_edac.c
3611
3612 EDAC-MPC85XX
3613 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
3614 L:      linux-edac@vger.kernel.org
3615 W:      bluesmoke.sourceforge.net
3616 S:      Maintained
3617 F:      drivers/edac/mpc85xx_edac.[ch]
3618
3619 EDAC-PASEMI
3620 M:      Egor Martovetsky <egor@pasemi.com>
3621 L:      linux-edac@vger.kernel.org
3622 W:      bluesmoke.sourceforge.net
3623 S:      Maintained
3624 F:      drivers/edac/pasemi_edac.c
3625
3626 EDAC-R82600
3627 M:      Tim Small <tim@buttersideup.com>
3628 L:      linux-edac@vger.kernel.org
3629 W:      bluesmoke.sourceforge.net
3630 S:      Maintained
3631 F:      drivers/edac/r82600_edac.c
3632
3633 EDAC-SBRIDGE
3634 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3635 L:      linux-edac@vger.kernel.org
3636 W:      bluesmoke.sourceforge.net
3637 S:      Maintained
3638 F:      drivers/edac/sb_edac.c
3639
3640 EDIROL UA-101/UA-1000 DRIVER
3641 M:      Clemens Ladisch <clemens@ladisch.de>
3642 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3643 T:      git git://git.alsa-project.org/alsa-kernel.git
3644 S:      Maintained
3645 F:      sound/usb/misc/ua101.c
3646
3647 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3648 M:      Matt Fleming <matt.fleming@intel.com>
3649 L:      linux-efi@vger.kernel.org
3650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3651 S:      Maintained
3652 F:      Documentation/efi-stub.txt
3653 F:      arch/ia64/kernel/efi.c
3654 F:      arch/x86/boot/compressed/eboot.[ch]
3655 F:      arch/x86/include/asm/efi.h
3656 F:      arch/x86/platform/efi/*
3657 F:      drivers/firmware/efi/*
3658 F:      include/linux/efi*.h
3659
3660 EFI VARIABLE FILESYSTEM
3661 M:      Matthew Garrett <matthew.garrett@nebula.com>
3662 M:      Jeremy Kerr <jk@ozlabs.org>
3663 M:      Matt Fleming <matt.fleming@intel.com>
3664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3665 L:      linux-efi@vger.kernel.org
3666 S:      Maintained
3667 F:      fs/efivarfs/
3668
3669 EFIFB FRAMEBUFFER DRIVER
3670 L:      linux-fbdev@vger.kernel.org
3671 M:      Peter Jones <pjones@redhat.com>
3672 S:      Maintained
3673 F:      drivers/video/fbdev/efifb.c
3674
3675 EFS FILESYSTEM
3676 W:      http://aeschi.ch.eu.org/efs/
3677 S:      Orphan
3678 F:      fs/efs/
3679
3680 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3681 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3682 M:      Christoph Raisch <raisch@de.ibm.com>
3683 L:      linux-rdma@vger.kernel.org
3684 S:      Supported
3685 F:      drivers/infiniband/hw/ehca/
3686
3687 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3688 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3689 L:      netdev@vger.kernel.org
3690 S:      Maintained
3691 F:      drivers/net/ethernet/ibm/ehea/
3692
3693 EM28XX VIDEO4LINUX DRIVER
3694 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3695 L:      linux-media@vger.kernel.org
3696 W:      http://linuxtv.org
3697 T:      git git://linuxtv.org/media_tree.git
3698 S:      Maintained
3699 F:      drivers/media/usb/em28xx/
3700
3701 EMBEDDED LINUX
3702 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
3703 M:      Matt Mackall <mpm@selenic.com>
3704 M:      David Woodhouse <dwmw2@infradead.org>
3705 L:      linux-embedded@vger.kernel.org
3706 S:      Maintained
3707
3708 EMULEX LPFC FC SCSI DRIVER
3709 M:      James Smart <james.smart@emulex.com>
3710 L:      linux-scsi@vger.kernel.org
3711 W:      http://sourceforge.net/projects/lpfcxxxx
3712 S:      Supported
3713 F:      drivers/scsi/lpfc/
3714
3715 ENE CB710 FLASH CARD READER DRIVER
3716 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
3717 S:      Maintained
3718 F:      drivers/misc/cb710/
3719 F:      drivers/mmc/host/cb710-mmc.*
3720 F:      include/linux/cb710.h
3721
3722 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3723 M:      Maxim Levitsky <maximlevitsky@gmail.com>
3724 S:      Maintained
3725 F:      drivers/media/rc/ene_ir.*
3726
3727 ENHANCED ERROR HANDLING (EEH)
3728 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
3729 L:      linuxppc-dev@lists.ozlabs.org
3730 S:      Supported
3731 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
3732 F:      arch/powerpc/kernel/eeh*.c
3733
3734 EPSON S1D13XXX FRAMEBUFFER DRIVER
3735 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
3736 S:      Maintained
3737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
3738 F:      drivers/video/fbdev/s1d13xxxfb.c
3739 F:      include/video/s1d13xxxfb.h
3740
3741 ET131X NETWORK DRIVER
3742 M:      Mark Einon <mark.einon@gmail.com>
3743 S:      Odd Fixes
3744 F:      drivers/net/ethernet/agere/
3745
3746 ETHERNET BRIDGE
3747 M:      Stephen Hemminger <stephen@networkplumber.org>
3748 L:      bridge@lists.linux-foundation.org
3749 L:      netdev@vger.kernel.org
3750 W:      http://www.linuxfoundation.org/en/Net:Bridge
3751 S:      Maintained
3752 F:      include/linux/netfilter_bridge/
3753 F:      net/bridge/
3754
3755 ETHERNET PHY LIBRARY
3756 M:      Florian Fainelli <f.fainelli@gmail.com>
3757 L:      netdev@vger.kernel.org
3758 S:      Maintained
3759 F:      include/linux/phy.h
3760 F:      include/linux/phy_fixed.h
3761 F:      drivers/net/phy/
3762 F:      Documentation/networking/phy.txt
3763 F:      drivers/of/of_mdio.c
3764 F:      drivers/of/of_net.c
3765
3766 EXT2 FILE SYSTEM
3767 M:      Jan Kara <jack@suse.cz>
3768 L:      linux-ext4@vger.kernel.org
3769 S:      Maintained
3770 F:      Documentation/filesystems/ext2.txt
3771 F:      fs/ext2/
3772 F:      include/linux/ext2*
3773
3774 EXT3 FILE SYSTEM
3775 M:      Jan Kara <jack@suse.cz>
3776 M:      Andrew Morton <akpm@linux-foundation.org>
3777 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3778 L:      linux-ext4@vger.kernel.org
3779 S:      Maintained
3780 F:      Documentation/filesystems/ext3.txt
3781 F:      fs/ext3/
3782
3783 EXT4 FILE SYSTEM
3784 M:      "Theodore Ts'o" <tytso@mit.edu>
3785 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3786 L:      linux-ext4@vger.kernel.org
3787 W:      http://ext4.wiki.kernel.org
3788 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
3789 S:      Maintained
3790 F:      Documentation/filesystems/ext4.txt
3791 F:      fs/ext4/
3792
3793 Extended Verification Module (EVM)
3794 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
3795 L:      linux-ima-devel@lists.sourceforge.net
3796 L:      linux-security-module@vger.kernel.org
3797 S:      Supported
3798 F:      security/integrity/evm/
3799
3800 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3801 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3802 M:      Chanwoo Choi <cw00.choi@samsung.com>
3803 L:      linux-kernel@vger.kernel.org
3804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
3805 S:      Maintained
3806 F:      drivers/extcon/
3807 F:      Documentation/extcon/
3808
3809 EXYNOS DP DRIVER
3810 M:      Jingoo Han <jg1.han@samsung.com>
3811 L:      dri-devel@lists.freedesktop.org
3812 S:      Maintained
3813 F:      drivers/gpu/drm/exynos/exynos_dp*
3814
3815 EXYNOS MIPI DISPLAY DRIVERS
3816 M:      Inki Dae <inki.dae@samsung.com>
3817 M:      Donghwa Lee <dh09.lee@samsung.com>
3818 M:      Kyungmin Park <kyungmin.park@samsung.com>
3819 L:      linux-fbdev@vger.kernel.org
3820 S:      Maintained
3821 F:      drivers/video/fbdev/exynos/exynos_mipi*
3822 F:      include/video/exynos_mipi*
3823
3824 F71805F HARDWARE MONITORING DRIVER
3825 M:      Jean Delvare <jdelvare@suse.de>
3826 L:      lm-sensors@lm-sensors.org
3827 S:      Maintained
3828 F:      Documentation/hwmon/f71805f
3829 F:      drivers/hwmon/f71805f.c
3830
3831 FC0011 TUNER DRIVER
3832 M:      Michael Buesch <m@bues.ch>
3833 L:      linux-media@vger.kernel.org
3834 S:      Maintained
3835 F:      drivers/media/tuners/fc0011.h
3836 F:      drivers/media/tuners/fc0011.c
3837
3838 FC2580 MEDIA DRIVER
3839 M:      Antti Palosaari <crope@iki.fi>
3840 L:      linux-media@vger.kernel.org
3841 W:      http://linuxtv.org/
3842 W:      http://palosaari.fi/linux/
3843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3844 T:      git git://linuxtv.org/anttip/media_tree.git
3845 S:      Maintained
3846 F:      drivers/media/tuners/fc2580*
3847
3848 FANOTIFY
3849 M:      Eric Paris <eparis@redhat.com>
3850 S:      Maintained
3851 F:      fs/notify/fanotify/
3852 F:      include/linux/fanotify.h
3853 F:      include/uapi/linux/fanotify.h
3854
3855 FARSYNC SYNCHRONOUS DRIVER
3856 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
3857 W:      http://www.farsite.co.uk/
3858 S:      Supported
3859 F:      drivers/net/wan/farsync.*
3860
3861 FAULT INJECTION SUPPORT
3862 M:      Akinobu Mita <akinobu.mita@gmail.com>
3863 S:      Supported
3864 F:      Documentation/fault-injection/
3865 F:      lib/fault-inject.c
3866
3867 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3868 M:      Robert Love <robert.w.love@intel.com>
3869 L:      fcoe-devel@open-fcoe.org
3870 W:      www.Open-FCoE.org
3871 S:      Supported
3872 F:      drivers/scsi/libfc/
3873 F:      drivers/scsi/fcoe/
3874 F:      include/scsi/fc/
3875 F:      include/scsi/libfc.h
3876 F:      include/scsi/libfcoe.h
3877 F:      include/uapi/scsi/fc/
3878
3879 FILE LOCKING (flock() and fcntl()/lockf())
3880 M:      Jeff Layton <jlayton@poochiereds.net>
3881 M:      J. Bruce Fields <bfields@fieldses.org>
3882 L:      linux-fsdevel@vger.kernel.org
3883 S:      Maintained
3884 F:      include/linux/fcntl.h
3885 F:      include/linux/fs.h
3886 F:      include/uapi/linux/fcntl.h
3887 F:      include/uapi/linux/fs.h
3888 F:      fs/fcntl.c
3889 F:      fs/locks.c
3890
3891 FILESYSTEMS (VFS and infrastructure)
3892 M:      Alexander Viro <viro@zeniv.linux.org.uk>
3893 L:      linux-fsdevel@vger.kernel.org
3894 S:      Maintained
3895 F:      fs/*
3896
3897 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3898 M:      Riku Voipio <riku.voipio@iki.fi>
3899 L:      lm-sensors@lm-sensors.org
3900 S:      Maintained
3901 F:      drivers/hwmon/f75375s.c
3902 F:      include/linux/f75375s.h
3903
3904 FIREWIRE AUDIO DRIVERS
3905 M:      Clemens Ladisch <clemens@ladisch.de>
3906 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3907 T:      git git://git.alsa-project.org/alsa-kernel.git
3908 S:      Maintained
3909 F:      sound/firewire/
3910
3911 FIREWIRE MEDIA DRIVERS (firedtv)
3912 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
3913 L:      linux-media@vger.kernel.org
3914 L:      linux1394-devel@lists.sourceforge.net
3915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3916 S:      Maintained
3917 F:      drivers/media/firewire/
3918
3919 FIREWIRE SBP-2 TARGET
3920 M:      Chris Boot <bootc@bootc.net>
3921 L:      linux-scsi@vger.kernel.org
3922 L:      target-devel@vger.kernel.org
3923 L:      linux1394-devel@lists.sourceforge.net
3924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3925 S:      Maintained
3926 F:      drivers/target/sbp/
3927
3928 FIREWIRE SUBSYSTEM
3929 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
3930 L:      linux1394-devel@lists.sourceforge.net
3931 W:      http://ieee1394.wiki.kernel.org/
3932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
3933 S:      Maintained
3934 F:      drivers/firewire/
3935 F:      include/linux/firewire.h
3936 F:      include/uapi/linux/firewire*.h
3937 F:      tools/firewire/
3938
3939 FIRMWARE LOADER (request_firmware)
3940 M:      Ming Lei <ming.lei@canonical.com>
3941 L:      linux-kernel@vger.kernel.org
3942 S:      Maintained
3943 F:      Documentation/firmware_class/
3944 F:      drivers/base/firmware*.c
3945 F:      include/linux/firmware.h
3946
3947 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
3948 M:      Joshua Morris <josh.h.morris@us.ibm.com>
3949 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3950 S:      Maintained
3951 F:      drivers/block/rsxx/
3952
3953 FLOPPY DRIVER
3954 M:      Jiri Kosina <jkosina@suse.cz>
3955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3956 S:      Odd fixes
3957 F:      drivers/block/floppy.c
3958
3959 FMC SUBSYSTEM
3960 M:      Alessandro Rubini <rubini@gnudd.com>
3961 W:      http://www.ohwr.org/projects/fmc-bus
3962 S:      Supported
3963 F:      drivers/fmc/
3964 F:      include/linux/fmc*.h
3965 F:      include/linux/ipmi-fru.h
3966 K:      fmc_d.*register
3967
3968 FPU EMULATOR
3969 M:      Bill Metzenthen <billm@melbpc.org.au>
3970 W:      http://floatingpoint.sourceforge.net/emulator/index.html
3971 S:      Maintained
3972 F:      arch/x86/math-emu/
3973
3974 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
3975 L:      netdev@vger.kernel.org
3976 S:      Orphan
3977 F:      drivers/net/wan/dlci.c
3978 F:      drivers/net/wan/sdla.c
3979
3980 FRAMEBUFFER LAYER
3981 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
3982 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
3983 L:      linux-fbdev@vger.kernel.org
3984 W:      http://linux-fbdev.sourceforge.net/
3985 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
3986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
3987 S:      Maintained
3988 F:      Documentation/fb/
3989 F:      Documentation/devicetree/bindings/fb/
3990 F:      drivers/video/
3991 F:      include/video/
3992 F:      include/linux/fb.h
3993 F:      include/uapi/video/
3994 F:      include/uapi/linux/fb.h
3995
3996 FREESCALE DIU FRAMEBUFFER DRIVER
3997 M:      Timur Tabi <timur@tabi.org>
3998 L:      linux-fbdev@vger.kernel.org
3999 S:      Maintained
4000 F:      drivers/video/fbdev/fsl-diu-fb.*
4001
4002 FREESCALE DMA DRIVER
4003 M:      Li Yang <leoli@freescale.com>
4004 M:      Zhang Wei <zw@zh-kernel.org>
4005 L:      linuxppc-dev@lists.ozlabs.org
4006 S:      Maintained
4007 F:      drivers/dma/fsldma.*
4008
4009 FREESCALE I2C CPM DRIVER
4010 M:      Jochen Friedrich <jochen@scram.de>
4011 L:      linuxppc-dev@lists.ozlabs.org
4012 L:      linux-i2c@vger.kernel.org
4013 S:      Maintained
4014 F:      drivers/i2c/busses/i2c-cpm.c
4015
4016 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4017 M:      Sascha Hauer <kernel@pengutronix.de>
4018 L:      linux-fbdev@vger.kernel.org
4019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4020 S:      Maintained
4021 F:      include/linux/platform_data/video-imxfb.h
4022 F:      drivers/video/fbdev/imxfb.c
4023
4024 FREESCALE SOC FS_ENET DRIVER
4025 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4026 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4027 L:      linuxppc-dev@lists.ozlabs.org
4028 L:      netdev@vger.kernel.org
4029 S:      Maintained
4030 F:      drivers/net/ethernet/freescale/fs_enet/
4031 F:      include/linux/fs_enet_pd.h
4032
4033 FREESCALE QUICC ENGINE LIBRARY
4034 L:      linuxppc-dev@lists.ozlabs.org
4035 S:      Orphan
4036 F:      arch/powerpc/sysdev/qe_lib/
4037 F:      arch/powerpc/include/asm/*qe.h
4038
4039 FREESCALE USB PERIPHERAL DRIVERS
4040 M:      Li Yang <leoli@freescale.com>
4041 L:      linux-usb@vger.kernel.org
4042 L:      linuxppc-dev@lists.ozlabs.org
4043 S:      Maintained
4044 F:      drivers/usb/gadget/udc/fsl*
4045
4046 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4047 M:      Li Yang <leoli@freescale.com>
4048 L:      netdev@vger.kernel.org
4049 L:      linuxppc-dev@lists.ozlabs.org
4050 S:      Maintained
4051 F:      drivers/net/ethernet/freescale/ucc_geth*
4052
4053 FREESCALE QUICC ENGINE UCC UART DRIVER
4054 M:      Timur Tabi <timur@tabi.org>
4055 L:      linuxppc-dev@lists.ozlabs.org
4056 S:      Maintained
4057 F:      drivers/tty/serial/ucc_uart.c
4058
4059 FREESCALE SOC SOUND DRIVERS
4060 M:      Timur Tabi <timur@tabi.org>
4061 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4062 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4063 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4064 L:      linuxppc-dev@lists.ozlabs.org
4065 S:      Maintained
4066 F:      sound/soc/fsl/fsl*
4067 F:      sound/soc/fsl/imx*
4068 F:      sound/soc/fsl/mpc8610_hpcd.c
4069
4070 FREEVXFS FILESYSTEM
4071 M:      Christoph Hellwig <hch@infradead.org>
4072 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4073 S:      Maintained
4074 F:      fs/freevxfs/
4075
4076 FREEZER
4077 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4078 M:      Pavel Machek <pavel@ucw.cz>
4079 L:      linux-pm@vger.kernel.org
4080 S:      Supported
4081 F:      Documentation/power/freezing-of-tasks.txt
4082 F:      include/linux/freezer.h
4083 F:      kernel/freezer.c
4084
4085 FRONTSWAP API
4086 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4087 L:      linux-kernel@vger.kernel.org
4088 S:      Maintained
4089 F:      mm/frontswap.c
4090 F:      include/linux/frontswap.h
4091
4092 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4093 M:      David Howells <dhowells@redhat.com>
4094 L:      linux-cachefs@redhat.com
4095 S:      Supported
4096 F:      Documentation/filesystems/caching/
4097 F:      fs/fscache/
4098 F:      include/linux/fscache*.h
4099
4100 F2FS FILE SYSTEM
4101 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4102 M:      Changman Lee <cm224.lee@samsung.com>
4103 L:      linux-f2fs-devel@lists.sourceforge.net
4104 W:      http://en.wikipedia.org/wiki/F2FS
4105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4106 S:      Maintained
4107 F:      Documentation/filesystems/f2fs.txt
4108 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4109 F:      fs/f2fs/
4110 F:      include/linux/f2fs_fs.h
4111
4112 FUJITSU FR-V (FRV) PORT
4113 M:      David Howells <dhowells@redhat.com>
4114 S:      Maintained
4115 F:      arch/frv/
4116
4117 FUJITSU LAPTOP EXTRAS
4118 M:      Jonathan Woithe <jwoithe@just42.net>
4119 L:      platform-driver-x86@vger.kernel.org
4120 S:      Maintained
4121 F:      drivers/platform/x86/fujitsu-laptop.c
4122
4123 FUJITSU M-5MO LS CAMERA ISP DRIVER
4124 M:      Kyungmin Park <kyungmin.park@samsung.com>
4125 M:      Heungjun Kim <riverful.kim@samsung.com>
4126 L:      linux-media@vger.kernel.org
4127 S:      Maintained
4128 F:      drivers/media/i2c/m5mols/
4129 F:      include/media/m5mols.h
4130
4131 FUJITSU TABLET EXTRAS
4132 M:      Robert Gerlach <khnz@gmx.de>
4133 L:      platform-driver-x86@vger.kernel.org
4134 S:      Maintained
4135 F:      drivers/platform/x86/fujitsu-tablet.c
4136
4137 FUSE: FILESYSTEM IN USERSPACE
4138 M:      Miklos Szeredi <miklos@szeredi.hu>
4139 L:      fuse-devel@lists.sourceforge.net
4140 W:      http://fuse.sourceforge.net/
4141 S:      Maintained
4142 F:      fs/fuse/
4143 F:      include/uapi/linux/fuse.h
4144
4145 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4146 M:      Rik Faith <faith@cs.unc.edu>
4147 L:      linux-scsi@vger.kernel.org
4148 S:      Odd Fixes (e.g., new signatures)
4149 F:      drivers/scsi/fdomain.*
4150
4151 GCOV BASED KERNEL PROFILING
4152 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4153 S:      Maintained
4154 F:      kernel/gcov/
4155 F:      Documentation/gcov.txt
4156
4157 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4158 M:      Achim Leubner <achim_leubner@adaptec.com>
4159 L:      linux-scsi@vger.kernel.org
4160 W:      http://www.icp-vortex.com/
4161 S:      Supported
4162 F:      drivers/scsi/gdt*
4163
4164 GEMTEK FM RADIO RECEIVER DRIVER
4165 M:      Hans Verkuil <hverkuil@xs4all.nl>
4166 L:      linux-media@vger.kernel.org
4167 T:      git git://linuxtv.org/media_tree.git
4168 W:      http://linuxtv.org
4169 S:      Maintained
4170 F:      drivers/media/radio/radio-gemtek*
4171
4172 GENERIC GPIO I2C DRIVER
4173 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4174 S:      Supported
4175 F:      drivers/i2c/busses/i2c-gpio.c
4176 F:      include/linux/i2c-gpio.h
4177
4178 GENERIC GPIO I2C MULTIPLEXER DRIVER
4179 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4180 L:      linux-i2c@vger.kernel.org
4181 S:      Supported
4182 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4183 F:      include/linux/i2c-mux-gpio.h
4184 F:      Documentation/i2c/muxes/i2c-mux-gpio
4185
4186 GENERIC HDLC (WAN) DRIVERS
4187 M:      Krzysztof Halasa <khc@pm.waw.pl>
4188 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4189 S:      Maintained
4190 F:      drivers/net/wan/c101.c
4191 F:      drivers/net/wan/hd6457*
4192 F:      drivers/net/wan/hdlc*
4193 F:      drivers/net/wan/n2.c
4194 F:      drivers/net/wan/pc300too.c
4195 F:      drivers/net/wan/pci200syn.c
4196 F:      drivers/net/wan/wanxl*
4197
4198 GENERIC INCLUDE/ASM HEADER FILES
4199 M:      Arnd Bergmann <arnd@arndb.de>
4200 L:      linux-arch@vger.kernel.org
4201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4202 S:      Maintained
4203 F:      include/asm-generic/
4204 F:      include/uapi/asm-generic/
4205
4206 GENERIC PHY FRAMEWORK
4207 M:      Kishon Vijay Abraham I <kishon@ti.com>
4208 L:      linux-kernel@vger.kernel.org
4209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4210 S:      Supported
4211 F:      drivers/phy/
4212 F:      include/linux/phy/
4213
4214 GENERIC UIO DRIVER FOR PCI DEVICES
4215 M:      "Michael S. Tsirkin" <mst@redhat.com>
4216 L:      kvm@vger.kernel.org
4217 S:      Supported
4218 F:      drivers/uio/uio_pci_generic.c
4219
4220 GET_MAINTAINER SCRIPT
4221 M:      Joe Perches <joe@perches.com>
4222 S:      Maintained
4223 F:      scripts/get_maintainer.pl
4224
4225 GFS2 FILE SYSTEM
4226 M:      Steven Whitehouse <swhiteho@redhat.com>
4227 L:      cluster-devel@redhat.com
4228 W:      http://sources.redhat.com/cluster/
4229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
4230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
4231 S:      Supported
4232 F:      Documentation/filesystems/gfs2*.txt
4233 F:      fs/gfs2/
4234 F:      include/uapi/linux/gfs2_ondisk.h
4235
4236 GIGASET ISDN DRIVERS
4237 M:      Hansjoerg Lipp <hjlipp@web.de>
4238 M:      Tilman Schmidt <tilman@imap.cc>
4239 L:      gigaset307x-common@lists.sourceforge.net
4240 W:      http://gigaset307x.sourceforge.net/
4241 S:      Maintained
4242 F:      Documentation/isdn/README.gigaset
4243 F:      drivers/isdn/gigaset/
4244 F:      include/uapi/linux/gigaset_dev.h
4245
4246 GO7007 MPEG CODEC
4247 M:      Hans Verkuil <hans.verkuil@cisco.com>
4248 L:      linux-media@vger.kernel.org
4249 S:      Maintained
4250 F:      drivers/media/usb/go7007/
4251
4252 GOODIX TOUCHSCREEN
4253 M:      Bastien Nocera <hadess@hadess.net>
4254 L:      linux-input@vger.kernel.org
4255 S:      Maintained
4256 F:      drivers/input/touchscreen/goodix.c
4257
4258 GPIO SUBSYSTEM
4259 M:      Linus Walleij <linus.walleij@linaro.org>
4260 M:      Alexandre Courbot <gnurou@gmail.com>
4261 L:      linux-gpio@vger.kernel.org
4262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4263 S:      Maintained
4264 F:      Documentation/gpio/
4265 F:      drivers/gpio/
4266 F:      include/linux/gpio/
4267 F:      include/linux/gpio.h
4268 F:      include/asm-generic/gpio.h
4269
4270 GRE DEMULTIPLEXER DRIVER
4271 M:      Dmitry Kozlov <xeb@mail.ru>
4272 L:      netdev@vger.kernel.org
4273 S:      Maintained
4274 F:      net/ipv4/gre_demux.c
4275 F:      net/ipv4/gre_offload.c
4276 F:      include/net/gre.h
4277
4278 GRETH 10/100/1G Ethernet MAC device driver
4279 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4280 L:      netdev@vger.kernel.org
4281 S:      Maintained
4282 F:      drivers/net/ethernet/aeroflex/
4283
4284 GSPCA FINEPIX SUBDRIVER
4285 M:      Frank Zago <frank@zago.net>
4286 L:      linux-media@vger.kernel.org
4287 T:      git git://linuxtv.org/media_tree.git
4288 S:      Maintained
4289 F:      drivers/media/usb/gspca/finepix.c
4290
4291 GSPCA GL860 SUBDRIVER
4292 M:      Olivier Lorin <o.lorin@laposte.net>
4293 L:      linux-media@vger.kernel.org
4294 T:      git git://linuxtv.org/media_tree.git
4295 S:      Maintained
4296 F:      drivers/media/usb/gspca/gl860/
4297
4298 GSPCA M5602 SUBDRIVER
4299 M:      Erik Andren <erik.andren@gmail.com>
4300 L:      linux-media@vger.kernel.org
4301 T:      git git://linuxtv.org/media_tree.git
4302 S:      Maintained
4303 F:      drivers/media/usb/gspca/m5602/
4304
4305 GSPCA PAC207 SONIXB SUBDRIVER
4306 M:      Hans de Goede <hdegoede@redhat.com>
4307 L:      linux-media@vger.kernel.org
4308 T:      git git://linuxtv.org/media_tree.git
4309 S:      Maintained
4310 F:      drivers/media/usb/gspca/pac207.c
4311
4312 GSPCA SN9C20X SUBDRIVER
4313 M:      Brian Johnson <brijohn@gmail.com>
4314 L:      linux-media@vger.kernel.org
4315 T:      git git://linuxtv.org/media_tree.git
4316 S:      Maintained
4317 F:      drivers/media/usb/gspca/sn9c20x.c
4318
4319 GSPCA T613 SUBDRIVER
4320 M:      Leandro Costantino <lcostantino@gmail.com>
4321 L:      linux-media@vger.kernel.org
4322 T:      git git://linuxtv.org/media_tree.git
4323 S:      Maintained
4324 F:      drivers/media/usb/gspca/t613.c
4325
4326 GSPCA USB WEBCAM DRIVER
4327 M:      Hans de Goede <hdegoede@redhat.com>
4328 L:      linux-media@vger.kernel.org
4329 T:      git git://linuxtv.org/media_tree.git
4330 S:      Maintained
4331 F:      drivers/media/usb/gspca/
4332
4333 GUID PARTITION TABLE (GPT)
4334 M:      Davidlohr Bueso <davidlohr@hp.com>
4335 L:      linux-efi@vger.kernel.org
4336 S:      Maintained
4337 F:      block/partitions/efi.*
4338
4339 STK1160 USB VIDEO CAPTURE DRIVER
4340 M:      Ezequiel Garcia <elezegarcia@gmail.com>
4341 L:      linux-media@vger.kernel.org
4342 T:      git git://linuxtv.org/media_tree.git
4343 S:      Maintained
4344 F:      drivers/media/usb/stk1160/
4345
4346 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4347 M:      Frank Seidel <frank@f-seidel.de>
4348 L:      platform-driver-x86@vger.kernel.org
4349 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4350 S:      Maintained
4351 F:      drivers/platform/x86/hdaps.c
4352
4353 HDPVR USB VIDEO ENCODER DRIVER
4354 M:      Hans Verkuil <hverkuil@xs4all.nl>
4355 L:      linux-media@vger.kernel.org
4356 T:      git git://linuxtv.org/media_tree.git
4357 W:      http://linuxtv.org
4358 S:      Odd Fixes
4359 F:      drivers/media/usb/hdpvr/
4360
4361 HWPOISON MEMORY FAILURE HANDLING
4362 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4363 L:      linux-mm@kvack.org
4364 S:      Maintained
4365 F:      mm/memory-failure.c
4366 F:      mm/hwpoison-inject.c
4367
4368 HYPERVISOR VIRTUAL CONSOLE DRIVER
4369 L:      linuxppc-dev@lists.ozlabs.org
4370 S:      Odd Fixes
4371 F:      drivers/tty/hvc/
4372
4373 HACKRF MEDIA DRIVER
4374 M:      Antti Palosaari <crope@iki.fi>
4375 L:      linux-media@vger.kernel.org
4376 W:      http://linuxtv.org/
4377 W:      http://palosaari.fi/linux/
4378 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4379 T:      git git://linuxtv.org/anttip/media_tree.git
4380 S:      Maintained
4381 F:      drivers/media/usb/hackrf/
4382
4383 HARDWARE MONITORING
4384 M:      Jean Delvare <jdelvare@suse.de>
4385 M:      Guenter Roeck <linux@roeck-us.net>
4386 L:      lm-sensors@lm-sensors.org
4387 W:      http://www.lm-sensors.org/
4388 T:      quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
4389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4390 S:      Maintained
4391 F:      Documentation/hwmon/
4392 F:      drivers/hwmon/
4393 F:      include/linux/hwmon*.h
4394
4395 HARDWARE RANDOM NUMBER GENERATOR CORE
4396 M:      Matt Mackall <mpm@selenic.com>
4397 M:      Herbert Xu <herbert@gondor.apana.org.au>
4398 S:      Odd fixes
4399 F:      Documentation/hw_random.txt
4400 F:      drivers/char/hw_random/
4401 F:      include/linux/hw_random.h
4402
4403 HARDWARE SPINLOCK CORE
4404 M:      Ohad Ben-Cohen <ohad@wizery.com>
4405 S:      Maintained
4406 F:      Documentation/hwspinlock.txt
4407 F:      drivers/hwspinlock/hwspinlock_*
4408 F:      include/linux/hwspinlock.h
4409
4410 HARMONY SOUND DRIVER
4411 L:      linux-parisc@vger.kernel.org
4412 S:      Maintained
4413 F:      sound/parisc/harmony.*
4414
4415 HD29L2 MEDIA DRIVER
4416 M:      Antti Palosaari <crope@iki.fi>
4417 L:      linux-media@vger.kernel.org
4418 W:      http://linuxtv.org/
4419 W:      http://palosaari.fi/linux/
4420 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4421 T:      git git://linuxtv.org/anttip/media_tree.git
4422 S:      Maintained
4423 F:      drivers/media/dvb-frontends/hd29l2*
4424
4425 HEWLETT-PACKARD SMART2 RAID DRIVER
4426 L:      iss_storagedev@hp.com
4427 S:      Orphan
4428 F:      Documentation/blockdev/cpqarray.txt
4429 F:      drivers/block/cpqarray.*
4430
4431 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4432 M:      Don Brace <don.brace@pmcs.com>
4433 L:      iss_storagedev@hp.com
4434 L:      storagedev@pmcs.com
4435 L:      linux-scsi@vger.kernel.org
4436 S:      Supported
4437 F:      Documentation/scsi/hpsa.txt
4438 F:      drivers/scsi/hpsa*.[ch]
4439 F:      include/linux/cciss*.h
4440 F:      include/uapi/linux/cciss*.h
4441
4442 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4443 M:      Don Brace <don.brace@pmcs.com>
4444 L:      iss_storagedev@hp.com
4445 L:      storagedev@pmcs.com
4446 L:      linux-scsi@vger.kernel.org
4447 S:      Supported
4448 F:      Documentation/blockdev/cciss.txt
4449 F:      drivers/block/cciss*
4450 F:      include/linux/cciss_ioctl.h
4451 F:      include/uapi/linux/cciss_ioctl.h
4452
4453 HFS FILESYSTEM
4454 L:      linux-fsdevel@vger.kernel.org
4455 S:      Orphan
4456 F:      Documentation/filesystems/hfs.txt
4457 F:      fs/hfs/
4458
4459 HFSPLUS FILESYSTEM
4460 L:      linux-fsdevel@vger.kernel.org
4461 S:      Orphan
4462 F:      Documentation/filesystems/hfsplus.txt
4463 F:      fs/hfsplus/
4464
4465 HGA FRAMEBUFFER DRIVER
4466 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4467 L:      linux-nvidia@lists.surfsouth.com
4468 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4469 S:      Maintained
4470 F:      drivers/video/fbdev/hgafb.c
4471
4472 HIBERNATION (aka Software Suspend, aka swsusp)
4473 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4474 M:      Pavel Machek <pavel@ucw.cz>
4475 L:      linux-pm@vger.kernel.org
4476 S:      Supported
4477 F:      arch/x86/power/
4478 F:      drivers/base/power/
4479 F:      kernel/power/
4480 F:      include/linux/suspend.h
4481 F:      include/linux/freezer.h
4482 F:      include/linux/pm.h
4483 F:      arch/*/include/asm/suspend*.h
4484
4485 HID CORE LAYER
4486 M:      Jiri Kosina <jkosina@suse.cz>
4487 L:      linux-input@vger.kernel.org
4488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4489 S:      Maintained
4490 F:      drivers/hid/
4491 F:      include/linux/hid*
4492 F:      include/uapi/linux/hid*
4493
4494 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4495 M:      Thomas Gleixner <tglx@linutronix.de>
4496 L:      linux-kernel@vger.kernel.org
4497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4498 S:      Maintained
4499 F:      Documentation/timers/
4500 F:      kernel/time/hrtimer.c
4501 F:      kernel/time/clockevents.c
4502 F:      kernel/time/tick*.*
4503 F:      kernel/time/timer_*.c
4504 F:      include/linux/clockchips.h
4505 F:      include/linux/hrtimer.h
4506
4507 HIGH-SPEED SCC DRIVER FOR AX.25
4508 L:      linux-hams@vger.kernel.org
4509 S:      Orphan
4510 F:      drivers/net/hamradio/dmascc.c
4511 F:      drivers/net/hamradio/scc.c
4512
4513 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4514 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4515 W:      http://www.highpoint-tech.com
4516 S:      Supported
4517 F:      Documentation/scsi/hptiop.txt
4518 F:      drivers/scsi/hptiop.c
4519
4520 HIPPI
4521 M:      Jes Sorensen <jes@trained-monkey.org>
4522 L:      linux-hippi@sunsite.dk
4523 S:      Maintained
4524 F:      include/linux/hippidevice.h
4525 F:      include/uapi/linux/if_hippi.h
4526 F:      net/802/hippi.c
4527 F:      drivers/net/hippi/
4528
4529 HOST AP DRIVER
4530 M:      Jouni Malinen <j@w1.fi>
4531 L:      hostap@shmoo.com (subscribers-only)
4532 L:      linux-wireless@vger.kernel.org
4533 W:      http://hostap.epitest.fi/
4534 S:      Maintained
4535 F:      drivers/net/wireless/hostap/
4536
4537 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4538 L:      platform-driver-x86@vger.kernel.org
4539 S:      Orphan
4540 F:      drivers/platform/x86/tc1100-wmi.c
4541
4542 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4543 M:      Jaroslav Kysela <perex@perex.cz>
4544 S:      Maintained
4545 F:      drivers/net/ethernet/hp/hp100.*
4546
4547 HPET:   High Precision Event Timers driver
4548 M:      Clemens Ladisch <clemens@ladisch.de>
4549 S:      Maintained
4550 F:      Documentation/timers/hpet.txt
4551 F:      drivers/char/hpet.c
4552 F:      include/linux/hpet.h
4553 F:      include/uapi/linux/hpet.h
4554
4555 HPET:   x86
4556 S:      Orphan
4557 F:      arch/x86/kernel/hpet.c
4558 F:      arch/x86/include/asm/hpet.h
4559
4560 HPFS FILESYSTEM
4561 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4562 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4563 S:      Maintained
4564 F:      fs/hpfs/
4565
4566 HSI SUBSYSTEM
4567 M:      Sebastian Reichel <sre@kernel.org>
4568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4569 S:      Maintained
4570 F:      Documentation/ABI/testing/sysfs-bus-hsi
4571 F:      Documentation/hsi.txt
4572 F:      drivers/hsi/
4573 F:      include/linux/hsi/
4574 F:      include/uapi/linux/hsi/
4575
4576 HSO 3G MODEM DRIVER
4577 M:      Jan Dumon <j.dumon@option.com>
4578 W:      http://www.pharscape.org
4579 S:      Maintained
4580 F:      drivers/net/usb/hso.c
4581
4582 HSR NETWORK PROTOCOL
4583 M:      Arvid Brodin <arvid.brodin@alten.se>
4584 L:      netdev@vger.kernel.org
4585 S:      Maintained
4586 F:      net/hsr/
4587
4588 HTCPEN TOUCHSCREEN DRIVER
4589 M:      Pau Oliva Fora <pof@eslack.org>
4590 L:      linux-input@vger.kernel.org
4591 S:      Maintained
4592 F:      drivers/input/touchscreen/htcpen.c
4593
4594 HUGETLB FILESYSTEM
4595 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
4596 S:      Maintained
4597 F:      fs/hugetlbfs/
4598
4599 Hyper-V CORE AND DRIVERS
4600 M:      K. Y. Srinivasan <kys@microsoft.com>
4601 M:      Haiyang Zhang <haiyangz@microsoft.com>
4602 L:      devel@linuxdriverproject.org
4603 S:      Maintained
4604 F:      arch/x86/include/asm/mshyperv.h
4605 F:      arch/x86/include/uapi/asm/hyperv.h
4606 F:      arch/x86/kernel/cpu/mshyperv.c
4607 F:      drivers/hid/hid-hyperv.c
4608 F:      drivers/hv/
4609 F:      drivers/input/serio/hyperv-keyboard.c
4610 F:      drivers/net/hyperv/
4611 F:      drivers/scsi/storvsc_drv.c
4612 F:      drivers/video/fbdev/hyperv_fb.c
4613 F:      include/linux/hyperv.h
4614 F:      tools/hv/
4615
4616 I2C OVER PARALLEL PORT
4617 M:      Jean Delvare <jdelvare@suse.de>
4618 L:      linux-i2c@vger.kernel.org
4619 S:      Maintained
4620 F:      Documentation/i2c/busses/i2c-parport
4621 F:      Documentation/i2c/busses/i2c-parport-light
4622 F:      drivers/i2c/busses/i2c-parport.c
4623 F:      drivers/i2c/busses/i2c-parport-light.c
4624
4625 I2C/SMBUS CONTROLLER DRIVERS FOR PC
4626 M:      Jean Delvare <jdelvare@suse.de>
4627 L:      linux-i2c@vger.kernel.org
4628 S:      Maintained
4629 F:      Documentation/i2c/busses/i2c-ali1535
4630 F:      Documentation/i2c/busses/i2c-ali1563
4631 F:      Documentation/i2c/busses/i2c-ali15x3
4632 F:      Documentation/i2c/busses/i2c-amd756
4633 F:      Documentation/i2c/busses/i2c-amd8111
4634 F:      Documentation/i2c/busses/i2c-i801
4635 F:      Documentation/i2c/busses/i2c-nforce2
4636 F:      Documentation/i2c/busses/i2c-piix4
4637 F:      Documentation/i2c/busses/i2c-sis5595
4638 F:      Documentation/i2c/busses/i2c-sis630
4639 F:      Documentation/i2c/busses/i2c-sis96x
4640 F:      Documentation/i2c/busses/i2c-via
4641 F:      Documentation/i2c/busses/i2c-viapro
4642 F:      drivers/i2c/busses/i2c-ali1535.c
4643 F:      drivers/i2c/busses/i2c-ali1563.c
4644 F:      drivers/i2c/busses/i2c-ali15x3.c
4645 F:      drivers/i2c/busses/i2c-amd756.c
4646 F:      drivers/i2c/busses/i2c-amd756-s4882.c
4647 F:      drivers/i2c/busses/i2c-amd8111.c
4648 F:      drivers/i2c/busses/i2c-i801.c
4649 F:      drivers/i2c/busses/i2c-isch.c
4650 F:      drivers/i2c/busses/i2c-nforce2.c
4651 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
4652 F:      drivers/i2c/busses/i2c-piix4.c
4653 F:      drivers/i2c/busses/i2c-sis5595.c
4654 F:      drivers/i2c/busses/i2c-sis630.c
4655 F:      drivers/i2c/busses/i2c-sis96x.c
4656 F:      drivers/i2c/busses/i2c-via.c
4657 F:      drivers/i2c/busses/i2c-viapro.c
4658
4659 I2C/SMBUS ISMT DRIVER
4660 M:      Seth Heasley <seth.heasley@intel.com>
4661 M:      Neil Horman <nhorman@tuxdriver.com>
4662 L:      linux-i2c@vger.kernel.org
4663 F:      drivers/i2c/busses/i2c-ismt.c
4664 F:      Documentation/i2c/busses/i2c-ismt
4665
4666 I2C/SMBUS STUB DRIVER
4667 M:      Jean Delvare <jdelvare@suse.de>
4668 L:      linux-i2c@vger.kernel.org
4669 S:      Maintained
4670 F:      drivers/i2c/i2c-stub.c
4671
4672 I2C SUBSYSTEM
4673 M:      Wolfram Sang <wsa@the-dreams.de>
4674 L:      linux-i2c@vger.kernel.org
4675 W:      https://i2c.wiki.kernel.org/
4676 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
4677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
4678 S:      Maintained
4679 F:      Documentation/devicetree/bindings/i2c/
4680 F:      Documentation/i2c/
4681 F:      drivers/i2c/
4682 F:      include/linux/i2c.h
4683 F:      include/linux/i2c-*.h
4684 F:      include/uapi/linux/i2c.h
4685 F:      include/uapi/linux/i2c-*.h
4686
4687 I2C ACPI SUPPORT
4688 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
4689 L:      linux-i2c@vger.kernel.org
4690 L:      linux-acpi@vger.kernel.org
4691 S:      Maintained
4692
4693 I2C-TAOS-EVM DRIVER
4694 M:      Jean Delvare <jdelvare@suse.de>
4695 L:      linux-i2c@vger.kernel.org
4696 S:      Maintained
4697 F:      Documentation/i2c/busses/i2c-taos-evm
4698 F:      drivers/i2c/busses/i2c-taos-evm.c
4699
4700 I2C-TINY-USB DRIVER
4701 M:      Till Harbaum <till@harbaum.org>
4702 L:      linux-i2c@vger.kernel.org
4703 W:      http://www.harbaum.org/till/i2c_tiny_usb
4704 S:      Maintained
4705 F:      drivers/i2c/busses/i2c-tiny-usb.c
4706
4707 i386 BOOT CODE
4708 M:      "H. Peter Anvin" <hpa@zytor.com>
4709 S:      Maintained
4710 F:      arch/x86/boot/
4711
4712 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
4713 M:      "H. Peter Anvin" <hpa@zytor.com>
4714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
4715 S:      Maintained
4716
4717 IA64 (Itanium) PLATFORM
4718 M:      Tony Luck <tony.luck@intel.com>
4719 M:      Fenghua Yu <fenghua.yu@intel.com>
4720 L:      linux-ia64@vger.kernel.org
4721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
4722 S:      Maintained
4723 F:      arch/ia64/
4724
4725 IBM Power in-Nest Crypto Acceleration
4726 M:      Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
4727 M:      Fionnuala Gunter <fin@linux.vnet.ibm.com>
4728 L:      linux-crypto@vger.kernel.org
4729 S:      Supported
4730 F:      drivers/crypto/nx/
4731
4732 IBM Power 842 compression accelerator
4733 M:      Dan Streetman <ddstreet@us.ibm.com>
4734 S:      Supported
4735 F:      drivers/crypto/nx/nx-842.c
4736 F:      include/linux/nx842.h
4737
4738 IBM Power Linux RAID adapter
4739 M:      Brian King <brking@us.ibm.com>
4740 S:      Supported
4741 F:      drivers/scsi/ipr.*
4742
4743 IBM Power Virtual Ethernet Device Driver
4744 M:      Santiago Leon <santil@linux.vnet.ibm.com>
4745 L:      netdev@vger.kernel.org
4746 S:      Supported
4747 F:      drivers/net/ethernet/ibm/ibmveth.*
4748
4749 IBM Power Virtual SCSI Device Drivers
4750 M:      Nathan Fontenot <nfont@linux.vnet.ibm.com>
4751 L:      linux-scsi@vger.kernel.org
4752 S:      Supported
4753 F:      drivers/scsi/ibmvscsi/ibmvscsi*
4754 F:      drivers/scsi/ibmvscsi/viosrp.h
4755
4756 IBM Power Virtual FC Device Drivers
4757 M:      Brian King <brking@linux.vnet.ibm.com>
4758 L:      linux-scsi@vger.kernel.org
4759 S:      Supported
4760 F:      drivers/scsi/ibmvscsi/ibmvfc*
4761
4762 IBM ServeRAID RAID DRIVER
4763 S:      Orphan
4764 F:      drivers/scsi/ips.*
4765
4766 ICH LPC AND GPIO DRIVER
4767 M:      Peter Tyser <ptyser@xes-inc.com>
4768 S:      Maintained
4769 F:      drivers/mfd/lpc_ich.c
4770 F:      drivers/gpio/gpio-ich.c
4771
4772 IDE SUBSYSTEM
4773 M:      "David S. Miller" <davem@davemloft.net>
4774 L:      linux-ide@vger.kernel.org
4775 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
4776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
4777 S:      Maintained
4778 F:      Documentation/ide/
4779 F:      drivers/ide/
4780 F:      include/linux/ide.h
4781
4782 IDEAPAD LAPTOP EXTRAS DRIVER
4783 M:      Ike Panhc <ike.pan@canonical.com>
4784 L:      platform-driver-x86@vger.kernel.org
4785 W:      http://launchpad.net/ideapad-laptop
4786 S:      Maintained
4787 F:      drivers/platform/x86/ideapad-laptop.c
4788
4789 IDEAPAD LAPTOP SLIDEBAR DRIVER
4790 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
4791 L:      linux-input@vger.kernel.org
4792 W:      https://github.com/o2genum/ideapad-slidebar
4793 S:      Maintained
4794 F:      drivers/input/misc/ideapad_slidebar.c
4795
4796 IDE/ATAPI DRIVERS
4797 M:      Borislav Petkov <bp@alien8.de>
4798 L:      linux-ide@vger.kernel.org
4799 S:      Maintained
4800 F:      Documentation/cdrom/ide-cd
4801 F:      drivers/ide/ide-cd*
4802
4803 IDLE-I7300
4804 M:      Andy Henroid <andrew.d.henroid@intel.com>
4805 L:      linux-pm@vger.kernel.org
4806 S:      Supported
4807 F:      drivers/idle/i7300_idle.c
4808
4809 IEEE 802.15.4 SUBSYSTEM
4810 M:      Alexander Aring <alex.aring@gmail.com>
4811 L:      linux-wpan@vger.kernel.org
4812 W:      https://github.com/linux-wpan
4813 T:      git git://github.com/linux-wpan/linux-wpan-next.git
4814 S:      Maintained
4815 F:      net/ieee802154/
4816 F:      net/mac802154/
4817 F:      drivers/net/ieee802154/
4818 F:      include/linux/nl802154.h
4819 F:      include/linux/ieee802154.h
4820 F:      include/net/nl802154.h
4821 F:      include/net/mac802154.h
4822 F:      include/net/af_ieee802154.h
4823 F:      include/net/cfg802154.h
4824 F:      include/net/ieee802154_netdev.h
4825 F:      Documentation/networking/ieee802154.txt
4826
4827 IGORPLUG-USB IR RECEIVER
4828 M:      Sean Young <sean@mess.org>
4829 L:      linux-media@vger.kernel.org
4830 S:      Maintained
4831 F:      drivers/media/rc/igorplugusb.c
4832
4833 IGUANAWORKS USB IR TRANSCEIVER
4834 M:      Sean Young <sean@mess.org>
4835 L:      linux-media@vger.kernel.org
4836 S:      Maintained
4837 F:      drivers/media/rc/iguanair.c
4838
4839 IIO SUBSYSTEM AND DRIVERS
4840 M:      Jonathan Cameron <jic23@kernel.org>
4841 R:      Hartmut Knaack <knaack.h@gmx.de>
4842 R:      Lars-Peter Clausen <lars@metafoo.de>
4843 R:      Peter Meerwald <pmeerw@pmeerw.net>
4844 L:      linux-iio@vger.kernel.org
4845 S:      Maintained
4846 F:      drivers/iio/
4847 F:      drivers/staging/iio/
4848 F:      include/linux/iio/
4849
4850 IKANOS/ADI EAGLE ADSL USB DRIVER
4851 M:      Matthieu Castet <castet.matthieu@free.fr>
4852 M:      Stanislaw Gruszka <stf_xl@wp.pl>
4853 S:      Maintained
4854 F:      drivers/usb/atm/ueagle-atm.c
4855
4856 INA209 HARDWARE MONITOR DRIVER
4857 M:      Guenter Roeck <linux@roeck-us.net>
4858 L:      lm-sensors@lm-sensors.org
4859 S:      Maintained
4860 F:      Documentation/hwmon/ina209
4861 F:      Documentation/devicetree/bindings/i2c/ina209.txt
4862 F:      drivers/hwmon/ina209.c
4863
4864 INA2XX HARDWARE MONITOR DRIVER
4865 M:      Guenter Roeck <linux@roeck-us.net>
4866 L:      lm-sensors@lm-sensors.org
4867 S:      Maintained
4868 F:      Documentation/hwmon/ina2xx
4869 F:      drivers/hwmon/ina2xx.c
4870 F:      include/linux/platform_data/ina2xx.h
4871
4872 INDUSTRY PACK SUBSYSTEM (IPACK)
4873 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4874 M:      Jens Taprogge <jens.taprogge@taprogge.org>
4875 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4876 L:      industrypack-devel@lists.sourceforge.net
4877 W:      http://industrypack.sourceforge.net
4878 S:      Maintained
4879 F:      drivers/ipack/
4880
4881 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
4882 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4883 M:      Dmitry Kasatkin <d.kasatkin@samsung.com>
4884 L:      linux-ima-devel@lists.sourceforge.net
4885 L:      linux-ima-user@lists.sourceforge.net
4886 L:      linux-security-module@vger.kernel.org
4887 S:      Supported
4888 F:      security/integrity/ima/
4889
4890 IMGTEC IR DECODER DRIVER
4891 M:      James Hogan <james.hogan@imgtec.com>
4892 S:      Maintained
4893 F:      drivers/media/rc/img-ir/
4894
4895 IMS TWINTURBO FRAMEBUFFER DRIVER
4896 L:      linux-fbdev@vger.kernel.org
4897 S:      Orphan
4898 F:      drivers/video/fbdev/imsttfb.c
4899
4900 INFINIBAND SUBSYSTEM
4901 M:      Roland Dreier <roland@kernel.org>
4902 M:      Sean Hefty <sean.hefty@intel.com>
4903 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
4904 L:      linux-rdma@vger.kernel.org
4905 W:      http://www.openfabrics.org/
4906 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
4907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
4908 S:      Supported
4909 F:      Documentation/infiniband/
4910 F:      drivers/infiniband/
4911 F:      include/uapi/linux/if_infiniband.h
4912
4913 INOTIFY
4914 M:      John McCutchan <john@johnmccutchan.com>
4915 M:      Robert Love <rlove@rlove.org>
4916 M:      Eric Paris <eparis@parisplace.org>
4917 S:      Maintained
4918 F:      Documentation/filesystems/inotify.txt
4919 F:      fs/notify/inotify/
4920 F:      include/linux/inotify.h
4921 F:      include/uapi/linux/inotify.h
4922
4923 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
4924 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
4925 M:      Dmitry Torokhov <dtor@mail.ru>
4926 L:      linux-input@vger.kernel.org
4927 Q:      http://patchwork.kernel.org/project/linux-input/list/
4928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
4929 S:      Maintained
4930 F:      drivers/input/
4931 F:      include/linux/input.h
4932 F:      include/uapi/linux/input.h
4933 F:      include/linux/input/
4934
4935 INPUT MULTITOUCH (MT) PROTOCOL
4936 M:      Henrik Rydberg <rydberg@euromail.se>
4937 L:      linux-input@vger.kernel.org
4938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
4939 S:      Maintained
4940 F:      Documentation/input/multi-touch-protocol.txt
4941 F:      drivers/input/input-mt.c
4942 K:      \b(ABS|SYN)_MT_
4943
4944 INTEL C600 SERIES SAS CONTROLLER DRIVER
4945 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
4946 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
4947 M:      Dave Jiang <dave.jiang@intel.com>
4948 L:      linux-scsi@vger.kernel.org
4949 T:      git git://git.code.sf.net/p/intel-sas/isci
4950 S:      Supported
4951 F:      drivers/scsi/isci/
4952
4953 INTEL IDLE DRIVER
4954 M:      Len Brown <lenb@kernel.org>
4955 L:      linux-pm@vger.kernel.org
4956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
4957 S:      Supported
4958 F:      drivers/idle/intel_idle.c
4959
4960 INTEL PSTATE DRIVER
4961 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
4962 L:      linux-pm@vger.kernel.org
4963 S:      Supported
4964 F:      drivers/cpufreq/intel_pstate.c
4965
4966 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
4967 M:      Maik Broemme <mbroemme@plusserver.de>
4968 L:      linux-fbdev@vger.kernel.org
4969 S:      Maintained
4970 F:      Documentation/fb/intelfb.txt
4971 F:      drivers/video/fbdev/intelfb/
4972
4973 INTEL 810/815 FRAMEBUFFER DRIVER
4974 M:      Antonino Daplas <adaplas@gmail.com>
4975 L:      linux-fbdev@vger.kernel.org
4976 S:      Maintained
4977 F:      drivers/video/fbdev/i810/
4978
4979 INTEL MENLOW THERMAL DRIVER
4980 M:      Sujith Thomas <sujith.thomas@intel.com>
4981 L:      platform-driver-x86@vger.kernel.org
4982 W:      https://01.org/linux-acpi
4983 S:      Supported
4984 F:      drivers/platform/x86/intel_menlow.c
4985
4986 INTEL IA32 MICROCODE UPDATE SUPPORT
4987 M:      Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
4988 S:      Maintained
4989 F:      arch/x86/kernel/cpu/microcode/core*
4990 F:      arch/x86/kernel/cpu/microcode/intel*
4991
4992 INTEL I/OAT DMA DRIVER
4993 M:      Dave Jiang <dave.jiang@intel.com>
4994 R:      Dan Williams <dan.j.williams@intel.com>
4995 L:      dmaengine@vger.kernel.org
4996 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4997 S:      Supported
4998 F:      drivers/dma/ioat*
4999
5000 INTEL IOMMU (VT-d)
5001 M:      David Woodhouse <dwmw2@infradead.org>
5002 L:      iommu@lists.linux-foundation.org
5003 T:      git git://git.infradead.org/iommu-2.6.git
5004 S:      Supported
5005 F:      drivers/iommu/intel-iommu.c
5006 F:      include/linux/intel-iommu.h
5007
5008 INTEL IOP-ADMA DMA DRIVER
5009 R:      Dan Williams <dan.j.williams@intel.com>
5010 S:      Odd fixes
5011 F:      drivers/dma/iop-adma.c
5012
5013 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5014 M:      Krzysztof Halasa <khalasa@piap.pl>
5015 S:      Maintained
5016 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5017 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5018 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5019 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5020 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5021 F:      drivers/net/wan/ixp4xx_hss.c
5022
5023 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5024 M:      Deepak Saxena <dsaxena@plexity.net>
5025 S:      Maintained
5026 F:      drivers/char/hw_random/ixp4xx-rng.c
5027
5028 INTEL ETHERNET DRIVERS (e100/e1000/e1000e/fm10k/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf)
5029 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5030 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5031 M:      Bruce Allan <bruce.w.allan@intel.com>
5032 M:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5033 M:      Don Skidmore <donald.c.skidmore@intel.com>
5034 M:      Greg Rose <gregory.v.rose@intel.com>
5035 M:      Matthew Vick <matthew.vick@intel.com>
5036 M:      John Ronciak <john.ronciak@intel.com>
5037 M:      Mitch Williams <mitch.a.williams@intel.com>
5038 M:      Linux NICS <linux.nics@intel.com>
5039 L:      e1000-devel@lists.sourceforge.net
5040 W:      http://www.intel.com/support/feedback.htm
5041 W:      http://e1000.sourceforge.net/
5042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
5043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
5044 S:      Supported
5045 F:      Documentation/networking/e100.txt
5046 F:      Documentation/networking/e1000.txt
5047 F:      Documentation/networking/e1000e.txt
5048 F:      Documentation/networking/igb.txt
5049 F:      Documentation/networking/igbvf.txt
5050 F:      Documentation/networking/ixgb.txt
5051 F:      Documentation/networking/ixgbe.txt
5052 F:      Documentation/networking/ixgbevf.txt
5053 F:      Documentation/networking/i40e.txt
5054 F:      Documentation/networking/i40evf.txt
5055 F:      drivers/net/ethernet/intel/
5056 F:      drivers/net/ethernet/intel/*/
5057
5058 INTEL-MID GPIO DRIVER
5059 M:      David Cohen <david.a.cohen@linux.intel.com>
5060 L:      linux-gpio@vger.kernel.org
5061 S:      Maintained
5062 F:      drivers/gpio/gpio-intel-mid.c
5063
5064 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5065 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5066 L:      linux-wireless@vger.kernel.org
5067 S:      Maintained
5068 F:      Documentation/networking/README.ipw2100
5069 F:      Documentation/networking/README.ipw2200
5070 F:      drivers/net/wireless/ipw2x00/
5071
5072 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5073 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5074 M:      Gang Wei <gang.wei@intel.com>
5075 M:      Shane Wang <shane.wang@intel.com>
5076 L:      tboot-devel@lists.sourceforge.net
5077 W:      http://tboot.sourceforge.net
5078 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5079 S:      Supported
5080 F:      Documentation/intel_txt.txt
5081 F:      include/linux/tboot.h
5082 F:      arch/x86/kernel/tboot.c
5083
5084 INTEL WIRELESS WIMAX CONNECTION 2400
5085 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5086 M:      linux-wimax@intel.com
5087 L:     wimax@linuxwimax.org (subscribers-only)
5088 S:      Supported
5089 W:      http://linuxwimax.org
5090 F:      Documentation/wimax/README.i2400m
5091 F:      drivers/net/wimax/i2400m/
5092 F:      include/uapi/linux/wimax/i2400m.h
5093
5094 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5095 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5096 L:      linux-wireless@vger.kernel.org
5097 S:      Supported
5098 F:      drivers/net/wireless/iwlegacy/
5099
5100 INTEL WIRELESS WIFI LINK (iwlwifi)
5101 M:      Johannes Berg <johannes.berg@intel.com>
5102 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5103 M:      Intel Linux Wireless <ilw@linux.intel.com>
5104 L:      linux-wireless@vger.kernel.org
5105 W:      http://intellinuxwireless.org
5106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5107 S:      Supported
5108 F:      drivers/net/wireless/iwlwifi/
5109
5110 INTEL MANAGEMENT ENGINE (mei)
5111 M:      Tomas Winkler <tomas.winkler@intel.com>
5112 L:      linux-kernel@vger.kernel.org
5113 S:      Supported
5114 F:      include/uapi/linux/mei.h
5115 F:      drivers/misc/mei/*
5116 F:      Documentation/misc-devices/mei/*
5117
5118 IOC3 ETHERNET DRIVER
5119 M:      Ralf Baechle <ralf@linux-mips.org>
5120 L:      linux-mips@linux-mips.org
5121 S:      Maintained
5122 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5123
5124 IOC3 SERIAL DRIVER
5125 M:      Pat Gefre <pfg@sgi.com>
5126 L:      linux-serial@vger.kernel.org
5127 S:      Maintained
5128 F:      drivers/tty/serial/ioc3_serial.c
5129
5130 IOMMU DRIVERS
5131 M:      Joerg Roedel <joro@8bytes.org>
5132 L:      iommu@lists.linux-foundation.org
5133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5134 S:      Maintained
5135 F:      drivers/iommu/
5136
5137 IP MASQUERADING
5138 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5139 S:      Maintained
5140 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5141
5142 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5143 M:      Francois Romieu <romieu@fr.zoreil.com>
5144 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5145 L:      netdev@vger.kernel.org
5146 S:      Maintained
5147 F:      drivers/net/ethernet/icplus/ipg.*
5148
5149 IPATH DRIVER
5150 M:      Mike Marciniszyn <infinipath@intel.com>
5151 L:      linux-rdma@vger.kernel.org
5152 S:      Maintained
5153 F:      drivers/infiniband/hw/ipath/
5154
5155 IPMI SUBSYSTEM
5156 M:      Corey Minyard <minyard@acm.org>
5157 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5158 W:      http://openipmi.sourceforge.net/
5159 S:      Supported
5160 F:      Documentation/IPMI.txt
5161 F:      drivers/char/ipmi/
5162 F:      include/linux/ipmi*
5163 F:      include/uapi/linux/ipmi*
5164
5165 IPS SCSI RAID DRIVER
5166 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5167 L:      linux-scsi@vger.kernel.org
5168 W:      http://www.adaptec.com/
5169 S:      Maintained
5170 F:      drivers/scsi/ips*
5171
5172 IPVS
5173 M:      Wensong Zhang <wensong@linux-vs.org>
5174 M:      Simon Horman <horms@verge.net.au>
5175 M:      Julian Anastasov <ja@ssi.bg>
5176 L:      netdev@vger.kernel.org
5177 L:      lvs-devel@vger.kernel.org
5178 S:      Maintained
5179 F:      Documentation/networking/ipvs-sysctl.txt
5180 F:      include/net/ip_vs.h
5181 F:      include/uapi/linux/ip_vs.h
5182 F:      net/netfilter/ipvs/
5183
5184 IPWIRELESS DRIVER
5185 M:      Jiri Kosina <jkosina@suse.cz>
5186 M:      David Sterba <dsterba@suse.cz>
5187 S:      Odd Fixes
5188 F:      drivers/tty/ipwireless/
5189
5190 IPX NETWORK LAYER
5191 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5192 L:      netdev@vger.kernel.org
5193 S:      Maintained
5194 F:      include/net/ipx.h
5195 F:      include/uapi/linux/ipx.h
5196 F:      net/ipx/
5197
5198 IRDA SUBSYSTEM
5199 M:      Samuel Ortiz <samuel@sortiz.org>
5200 L:      irda-users@lists.sourceforge.net (subscribers-only)
5201 L:      netdev@vger.kernel.org
5202 W:      http://irda.sourceforge.net/
5203 S:      Maintained
5204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5205 F:      Documentation/networking/irda.txt
5206 F:      drivers/net/irda/
5207 F:      include/net/irda/
5208 F:      net/irda/
5209
5210 IRQ SUBSYSTEM
5211 M:      Thomas Gleixner <tglx@linutronix.de>
5212 L:      linux-kernel@vger.kernel.org
5213 S:      Maintained
5214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5215 F:      kernel/irq/
5216
5217 IRQCHIP DRIVERS
5218 M:      Thomas Gleixner <tglx@linutronix.de>
5219 M:      Jason Cooper <jason@lakedaemon.net>
5220 L:      linux-kernel@vger.kernel.org
5221 S:      Maintained
5222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5223 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5224 F:      Documentation/devicetree/bindings/interrupt-controller/
5225 F:      drivers/irqchip/
5226
5227 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5228 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5229 S:      Maintained
5230 F:      Documentation/IRQ-domain.txt
5231 F:      include/linux/irqdomain.h
5232 F:      kernel/irq/irqdomain.c
5233
5234 ISAPNP
5235 M:      Jaroslav Kysela <perex@perex.cz>
5236 S:      Maintained
5237 F:      Documentation/isapnp.txt
5238 F:      drivers/pnp/isapnp/
5239 F:      include/linux/isapnp.h
5240
5241 ISA RADIO MODULE
5242 M:      Hans Verkuil <hverkuil@xs4all.nl>
5243 L:      linux-media@vger.kernel.org
5244 T:      git git://linuxtv.org/media_tree.git
5245 W:      http://linuxtv.org
5246 S:      Maintained
5247 F:      drivers/media/radio/radio-isa*
5248
5249 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5250 M:      Peter Jones <pjones@redhat.com>
5251 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5252 S:      Maintained
5253 F:      drivers/firmware/iscsi_ibft*
5254
5255 ISCSI
5256 M:      Mike Christie <michaelc@cs.wisc.edu>
5257 L:      open-iscsi@googlegroups.com
5258 W:      www.open-iscsi.org
5259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5260 S:      Maintained
5261 F:      drivers/scsi/*iscsi*
5262 F:      include/scsi/*iscsi*
5263
5264 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5265 M:      Or Gerlitz <ogerlitz@mellanox.com>
5266 M:      Sagi Grimberg <sagig@mellanox.com>
5267 M:      Roi Dayan <roid@mellanox.com>
5268 L:      linux-rdma@vger.kernel.org
5269 S:      Supported
5270 W:      http://www.openfabrics.org
5271 W:      www.open-iscsi.org
5272 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5273 F:      drivers/infiniband/ulp/iser/
5274
5275 ISDN SUBSYSTEM
5276 M:      Karsten Keil <isdn@linux-pingi.de>
5277 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5278 L:      netdev@vger.kernel.org
5279 W:      http://www.isdn4linux.de
5280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5281 S:      Maintained
5282 F:      Documentation/isdn/
5283 F:      drivers/isdn/
5284 F:      include/linux/isdn.h
5285 F:      include/linux/isdn/
5286 F:      include/uapi/linux/isdn.h
5287 F:      include/uapi/linux/isdn/
5288
5289 ISDN SUBSYSTEM (Eicon active card driver)
5290 M:      Armin Schindler <mac@melware.de>
5291 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5292 W:      http://www.melware.de
5293 S:      Maintained
5294 F:      drivers/isdn/hardware/eicon/
5295
5296 IT87 HARDWARE MONITORING DRIVER
5297 M:      Jean Delvare <jdelvare@suse.de>
5298 L:      lm-sensors@lm-sensors.org
5299 S:      Maintained
5300 F:      Documentation/hwmon/it87
5301 F:      drivers/hwmon/it87.c
5302
5303 IT913X MEDIA DRIVER
5304 M:      Antti Palosaari <crope@iki.fi>
5305 L:      linux-media@vger.kernel.org
5306 W:      http://linuxtv.org/
5307 W:      http://palosaari.fi/linux/
5308 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5309 T:      git git://linuxtv.org/anttip/media_tree.git
5310 S:      Maintained
5311 F:      drivers/media/tuners/it913x*
5312
5313 IVTV VIDEO4LINUX DRIVER
5314 M:      Andy Walls <awalls@md.metrocast.net>
5315 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5316 L:      linux-media@vger.kernel.org
5317 T:      git git://linuxtv.org/media_tree.git
5318 W:      http://www.ivtvdriver.org
5319 S:      Maintained
5320 F:      Documentation/video4linux/*.ivtv
5321 F:      drivers/media/pci/ivtv/
5322 F:      include/uapi/linux/ivtv*
5323
5324 IX2505V MEDIA DRIVER
5325 M:      Malcolm Priestley <tvboxspy@gmail.com>
5326 L:      linux-media@vger.kernel.org
5327 W:      http://linuxtv.org/
5328 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5329 S:      Maintained
5330 F:      drivers/media/dvb-frontends/ix2505v*
5331
5332 JC42.4 TEMPERATURE SENSOR DRIVER
5333 M:      Guenter Roeck <linux@roeck-us.net>
5334 L:      lm-sensors@lm-sensors.org
5335 S:      Maintained
5336 F:      drivers/hwmon/jc42.c
5337 F:      Documentation/hwmon/jc42
5338
5339 JFS FILESYSTEM
5340 M:      Dave Kleikamp <shaggy@kernel.org>
5341 L:      jfs-discussion@lists.sourceforge.net
5342 W:      http://jfs.sourceforge.net/
5343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5344 S:      Maintained
5345 F:      Documentation/filesystems/jfs.txt
5346 F:      fs/jfs/
5347
5348 JME NETWORK DRIVER
5349 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5350 L:      netdev@vger.kernel.org
5351 S:      Maintained
5352 F:      drivers/net/ethernet/jme.*
5353
5354 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5355 M:      David Woodhouse <dwmw2@infradead.org>
5356 L:      linux-mtd@lists.infradead.org
5357 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5358 S:      Maintained
5359 F:      fs/jffs2/
5360 F:      include/uapi/linux/jffs2.h
5361
5362 JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
5363 M:      Andrew Morton <akpm@linux-foundation.org>
5364 M:      Jan Kara <jack@suse.cz>
5365 L:      linux-ext4@vger.kernel.org
5366 S:      Maintained
5367 F:      fs/jbd/
5368 F:      include/linux/jbd.h
5369
5370 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5371 M:      "Theodore Ts'o" <tytso@mit.edu>
5372 L:      linux-ext4@vger.kernel.org
5373 S:      Maintained
5374 F:      fs/jbd2/
5375 F:      include/linux/jbd2.h
5376
5377 JSM Neo PCI based serial card
5378 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5379 L:      linux-serial@vger.kernel.org
5380 S:      Maintained
5381 F:      drivers/tty/serial/jsm/
5382
5383 K10TEMP HARDWARE MONITORING DRIVER
5384 M:      Clemens Ladisch <clemens@ladisch.de>
5385 L:      lm-sensors@lm-sensors.org
5386 S:      Maintained
5387 F:      Documentation/hwmon/k10temp
5388 F:      drivers/hwmon/k10temp.c
5389
5390 K8TEMP HARDWARE MONITORING DRIVER
5391 M:      Rudolf Marek <r.marek@assembler.cz>
5392 L:      lm-sensors@lm-sensors.org
5393 S:      Maintained
5394 F:      Documentation/hwmon/k8temp
5395 F:      drivers/hwmon/k8temp.c
5396
5397 KCONFIG
5398 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5399 L:      linux-kbuild@vger.kernel.org
5400 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5401 S:      Maintained
5402 F:      Documentation/kbuild/kconfig-language.txt
5403 F:      scripts/kconfig/
5404
5405 KDUMP
5406 M:      Vivek Goyal <vgoyal@redhat.com>
5407 M:      Haren Myneni <hbabu@us.ibm.com>
5408 L:      kexec@lists.infradead.org
5409 W:      http://lse.sourceforge.net/kdump/
5410 S:      Maintained
5411 F:      Documentation/kdump/
5412
5413 KEENE FM RADIO TRANSMITTER DRIVER
5414 M:      Hans Verkuil <hverkuil@xs4all.nl>
5415 L:      linux-media@vger.kernel.org
5416 T:      git git://linuxtv.org/media_tree.git
5417 W:      http://linuxtv.org
5418 S:      Maintained
5419 F:      drivers/media/radio/radio-keene*
5420
5421 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5422 M:      Ian Kent <raven@themaw.net>
5423 L:      autofs@vger.kernel.org
5424 S:      Maintained
5425 F:      fs/autofs4/
5426
5427 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5428 M:      Michal Marek <mmarek@suse.cz>
5429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5431 L:      linux-kbuild@vger.kernel.org
5432 S:      Maintained
5433 F:      Documentation/kbuild/
5434 F:      Makefile
5435 F:      scripts/Makefile.*
5436 F:      scripts/basic/
5437 F:      scripts/mk*
5438 F:      scripts/package/
5439
5440 KERNEL JANITORS
5441 L:      kernel-janitors@vger.kernel.org
5442 W:      http://kernelnewbies.org/KernelJanitors
5443 S:      Odd Fixes
5444
5445 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5446 M:      "J. Bruce Fields" <bfields@fieldses.org>
5447 L:      linux-nfs@vger.kernel.org
5448 W:      http://nfs.sourceforge.net/
5449 S:      Supported
5450 F:      fs/nfsd/
5451 F:      include/uapi/linux/nfsd/
5452 F:      fs/lockd/
5453 F:      fs/nfs_common/
5454 F:      net/sunrpc/
5455 F:      include/linux/lockd/
5456 F:      include/linux/sunrpc/
5457 F:      include/uapi/linux/sunrpc/
5458
5459 KERNEL SELFTEST FRAMEWORK
5460 M:      Shuah Khan <shuahkh@osg.samsung.com>
5461 L:      linux-api@vger.kernel.org
5462 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5463 S:      Maintained
5464 F:      tools/testing/selftests
5465
5466 KERNEL VIRTUAL MACHINE (KVM)
5467 M:      Gleb Natapov <gleb@kernel.org>
5468 M:      Paolo Bonzini <pbonzini@redhat.com>
5469 L:      kvm@vger.kernel.org
5470 W:      http://www.linux-kvm.org
5471 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5472 S:      Supported
5473 F:      Documentation/*/kvm*.txt
5474 F:      Documentation/virtual/kvm/
5475 F:      arch/*/kvm/
5476 F:      arch/*/include/asm/kvm*
5477 F:      include/linux/kvm*
5478 F:      include/uapi/linux/kvm*
5479 F:      virt/kvm/
5480
5481 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5482 M:      Joerg Roedel <joro@8bytes.org>
5483 L:      kvm@vger.kernel.org
5484 W:      http://kvm.qumranet.com
5485 S:      Maintained
5486 F:      arch/x86/include/asm/svm.h
5487 F:      arch/x86/kvm/svm.c
5488
5489 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5490 M:      Alexander Graf <agraf@suse.de>
5491 L:      kvm-ppc@vger.kernel.org
5492 W:      http://kvm.qumranet.com
5493 T:      git git://github.com/agraf/linux-2.6.git
5494 S:      Supported
5495 F:      arch/powerpc/include/asm/kvm*
5496 F:      arch/powerpc/kvm/
5497
5498 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5499 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5500 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5501 M:      linux390@de.ibm.com
5502 L:      linux-s390@vger.kernel.org
5503 W:      http://www.ibm.com/developerworks/linux/linux390/
5504 S:      Supported
5505 F:      Documentation/s390/kvm.txt
5506 F:      arch/s390/include/asm/kvm*
5507 F:      arch/s390/kvm/
5508 F:      drivers/s390/kvm/
5509
5510 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5511 M:      Christoffer Dall <christoffer.dall@linaro.org>
5512 M:      Marc Zyngier <marc.zyngier@arm.com>
5513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5514 L:      kvmarm@lists.cs.columbia.edu
5515 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5516 S:      Supported
5517 F:      arch/arm/include/uapi/asm/kvm*
5518 F:      arch/arm/include/asm/kvm*
5519 F:      arch/arm/kvm/
5520 F:      virt/kvm/arm/
5521 F:      include/kvm/arm_*
5522
5523 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5524 M:      Christoffer Dall <christoffer.dall@linaro.org>
5525 M:      Marc Zyngier <marc.zyngier@arm.com>
5526 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5527 L:      kvmarm@lists.cs.columbia.edu
5528 S:      Maintained
5529 F:      arch/arm64/include/uapi/asm/kvm*
5530 F:      arch/arm64/include/asm/kvm*
5531 F:      arch/arm64/kvm/
5532
5533 KEXEC
5534 M:      Eric Biederman <ebiederm@xmission.com>
5535 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
5536 L:      kexec@lists.infradead.org
5537 S:      Maintained
5538 F:      include/linux/kexec.h
5539 F:      include/uapi/linux/kexec.h
5540 F:      kernel/kexec.c
5541
5542 KEYS/KEYRINGS:
5543 M:      David Howells <dhowells@redhat.com>
5544 L:      keyrings@linux-nfs.org
5545 S:      Maintained
5546 F:      Documentation/security/keys.txt
5547 F:      include/linux/key.h
5548 F:      include/linux/key-type.h
5549 F:      include/keys/
5550 F:      security/keys/
5551
5552 KEYS-TRUSTED
5553 M:      David Safford <safford@us.ibm.com>
5554 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5555 L:      linux-security-module@vger.kernel.org
5556 L:      keyrings@linux-nfs.org
5557 S:      Supported
5558 F:      Documentation/security/keys-trusted-encrypted.txt
5559 F:      include/keys/trusted-type.h
5560 F:      security/keys/trusted.c
5561 F:      security/keys/trusted.h
5562
5563 KEYS-ENCRYPTED
5564 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5565 M:      David Safford <safford@us.ibm.com>
5566 L:      linux-security-module@vger.kernel.org
5567 L:      keyrings@linux-nfs.org
5568 S:      Supported
5569 F:      Documentation/security/keys-trusted-encrypted.txt
5570 F:      include/keys/encrypted-type.h
5571 F:      security/keys/encrypted-keys/
5572
5573 KGDB / KDB /debug_core
5574 M:      Jason Wessel <jason.wessel@windriver.com>
5575 W:      http://kgdb.wiki.kernel.org/
5576 L:      kgdb-bugreport@lists.sourceforge.net
5577 S:      Maintained
5578 F:      Documentation/DocBook/kgdb.tmpl
5579 F:      drivers/misc/kgdbts.c
5580 F:      drivers/tty/serial/kgdboc.c
5581 F:      include/linux/kdb.h
5582 F:      include/linux/kgdb.h
5583 F:      kernel/debug/
5584
5585 KMEMCHECK
5586 M:      Vegard Nossum <vegardno@ifi.uio.no>
5587 M:      Pekka Enberg <penberg@kernel.org>
5588 S:      Maintained
5589 F:      Documentation/kmemcheck.txt
5590 F:      arch/x86/include/asm/kmemcheck.h
5591 F:      arch/x86/mm/kmemcheck/
5592 F:      include/linux/kmemcheck.h
5593 F:      mm/kmemcheck.c
5594
5595 KMEMLEAK
5596 M:      Catalin Marinas <catalin.marinas@arm.com>
5597 S:      Maintained
5598 F:      Documentation/kmemleak.txt
5599 F:      include/linux/kmemleak.h
5600 F:      mm/kmemleak.c
5601 F:      mm/kmemleak-test.c
5602
5603 KPROBES
5604 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
5605 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
5606 M:      "David S. Miller" <davem@davemloft.net>
5607 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
5608 S:      Maintained
5609 F:      Documentation/kprobes.txt
5610 F:      include/linux/kprobes.h
5611 F:      kernel/kprobes.c
5612
5613 KS0108 LCD CONTROLLER DRIVER
5614 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
5615 W:      http://miguelojeda.es/auxdisplay.htm
5616 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
5617 S:      Maintained
5618 F:      Documentation/auxdisplay/ks0108
5619 F:      drivers/auxdisplay/ks0108.c
5620 F:      include/linux/ks0108.h
5621
5622 LAPB module
5623 L:      linux-x25@vger.kernel.org
5624 S:      Orphan
5625 F:      Documentation/networking/lapb-module.txt
5626 F:      include/*/lapb.h
5627 F:      net/lapb/
5628
5629 LASI 53c700 driver for PARISC
5630 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
5631 L:      linux-scsi@vger.kernel.org
5632 S:      Maintained
5633 F:      Documentation/scsi/53c700.txt
5634 F:      drivers/scsi/53c700*
5635
5636 LED SUBSYSTEM
5637 M:      Bryan Wu <cooloney@gmail.com>
5638 M:      Richard Purdie <rpurdie@rpsys.net>
5639 L:      linux-leds@vger.kernel.org
5640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
5641 S:      Maintained
5642 F:      drivers/leds/
5643 F:      include/linux/leds.h
5644
5645 LEGACY EEPROM DRIVER
5646 M:      Jean Delvare <jdelvare@suse.de>
5647 S:      Maintained
5648 F:      Documentation/misc-devices/eeprom
5649 F:      drivers/misc/eeprom/eeprom.c
5650
5651 LEGO USB Tower driver
5652 M:      Juergen Stuber <starblue@users.sourceforge.net>
5653 L:      legousb-devel@lists.sourceforge.net
5654 W:      http://legousb.sourceforge.net/
5655 S:      Maintained
5656 F:      drivers/usb/misc/legousbtower.c
5657
5658 LG2160 MEDIA DRIVER
5659 M:      Michael Krufky <mkrufky@linuxtv.org>
5660 L:      linux-media@vger.kernel.org
5661 W:      http://linuxtv.org/
5662 W:      http://github.com/mkrufky
5663 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5664 T:      git git://linuxtv.org/mkrufky/tuners.git
5665 S:      Maintained
5666 F:      drivers/media/dvb-frontends/lg2160.*
5667
5668 LGDT3305 MEDIA DRIVER
5669 M:      Michael Krufky <mkrufky@linuxtv.org>
5670 L:      linux-media@vger.kernel.org
5671 W:      http://linuxtv.org/
5672 W:      http://github.com/mkrufky
5673 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5674 T:      git git://linuxtv.org/mkrufky/tuners.git
5675 S:      Maintained
5676 F:      drivers/media/dvb-frontends/lgdt3305.*
5677
5678 LGUEST
5679 M:      Rusty Russell <rusty@rustcorp.com.au>
5680 L:      lguest@lists.ozlabs.org
5681 W:      http://lguest.ozlabs.org/
5682 S:      Odd Fixes
5683 F:      arch/x86/include/asm/lguest*.h
5684 F:      arch/x86/lguest/
5685 F:      drivers/lguest/
5686 F:      include/linux/lguest*.h
5687 F:      tools/lguest/
5688
5689 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
5690 M:      Tejun Heo <tj@kernel.org>
5691 L:      linux-ide@vger.kernel.org
5692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5693 S:      Maintained
5694 F:      drivers/ata/
5695 F:      include/linux/ata.h
5696 F:      include/linux/libata.h
5697
5698 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
5699 M:      Viresh Kumar <viresh.linux@gmail.com>
5700 L:      linux-ide@vger.kernel.org
5701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5702 S:      Maintained
5703 F:      include/linux/pata_arasan_cf_data.h
5704 F:      drivers/ata/pata_arasan_cf.c
5705
5706 LIBATA PATA DRIVERS
5707 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5708 M:      Tejun Heo <tj@kernel.org>
5709 L:      linux-ide@vger.kernel.org
5710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5711 S:      Maintained
5712 F:      drivers/ata/pata_*.c
5713 F:      drivers/ata/ata_generic.c
5714
5715 LIBATA SATA AHCI PLATFORM devices support
5716 M:      Hans de Goede <hdegoede@redhat.com>
5717 M:      Tejun Heo <tj@kernel.org>
5718 L:      linux-ide@vger.kernel.org
5719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5720 S:      Maintained
5721 F:      drivers/ata/ahci_platform.c
5722 F:      drivers/ata/libahci_platform.c
5723 F:      include/linux/ahci_platform.h
5724
5725 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
5726 M:      Mikael Pettersson <mikpelinux@gmail.com>
5727 L:      linux-ide@vger.kernel.org
5728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
5729 S:      Maintained
5730 F:      drivers/ata/sata_promise.*
5731
5732 LIBLOCKDEP
5733 M:      Sasha Levin <sasha.levin@oracle.com>
5734 S:      Maintained
5735 F:      tools/lib/lockdep/
5736
5737 LINUX FOR IBM pSERIES (RS/6000)
5738 M:      Paul Mackerras <paulus@au.ibm.com>
5739 W:      http://www.ibm.com/linux/ltc/projects/ppc
5740 S:      Supported
5741 F:      arch/powerpc/boot/rs6000.h
5742
5743 LINUX FOR POWERPC (32-BIT AND 64-BIT)
5744 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5745 M:      Paul Mackerras <paulus@samba.org>
5746 M:      Michael Ellerman <mpe@ellerman.id.au>
5747 W:      http://www.penguinppc.org/
5748 L:      linuxppc-dev@lists.ozlabs.org
5749 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
5750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
5751 S:      Supported
5752 F:      Documentation/powerpc/
5753 F:      arch/powerpc/
5754
5755 LINUX FOR POWER MACINTOSH
5756 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5757 W:      http://www.penguinppc.org/
5758 L:      linuxppc-dev@lists.ozlabs.org
5759 S:      Maintained
5760 F:      arch/powerpc/platforms/powermac/
5761 F:      drivers/macintosh/
5762
5763 LINUX FOR POWERPC EMBEDDED MPC5XXX
5764 M:      Anatolij Gustschin <agust@denx.de>
5765 L:      linuxppc-dev@lists.ozlabs.org
5766 T:      git git://git.denx.de/linux-denx-agust.git
5767 S:      Maintained
5768 F:      arch/powerpc/platforms/512x/
5769 F:      arch/powerpc/platforms/52xx/
5770
5771 LINUX FOR POWERPC EMBEDDED PPC4XX
5772 M:  Alistair Popple <alistair@popple.id.au>
5773 M:      Matt Porter <mporter@kernel.crashing.org>
5774 W:      http://www.penguinppc.org/
5775 L:      linuxppc-dev@lists.ozlabs.org
5776 S:      Maintained
5777 F:      arch/powerpc/platforms/40x/
5778 F:      arch/powerpc/platforms/44x/
5779
5780 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
5781 L:      linuxppc-dev@lists.ozlabs.org
5782 S:      Orphan
5783 F:      arch/powerpc/*/*virtex*
5784 F:      arch/powerpc/*/*/*virtex*
5785
5786 LINUX FOR POWERPC EMBEDDED PPC8XX
5787 M:      Vitaly Bordug <vitb@kernel.crashing.org>
5788 W:      http://www.penguinppc.org/
5789 L:      linuxppc-dev@lists.ozlabs.org
5790 S:      Maintained
5791 F:      arch/powerpc/platforms/8xx/
5792
5793 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
5794 M:      Scott Wood <scottwood@freescale.com>
5795 M:      Kumar Gala <galak@kernel.crashing.org>
5796 W:      http://www.penguinppc.org/
5797 L:      linuxppc-dev@lists.ozlabs.org
5798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
5799 S:      Maintained
5800 F:      arch/powerpc/platforms/83xx/
5801 F:      arch/powerpc/platforms/85xx/
5802
5803 LINUX FOR POWERPC PA SEMI PWRFICIENT
5804 M:      Olof Johansson <olof@lixom.net>
5805 L:      linuxppc-dev@lists.ozlabs.org
5806 S:      Maintained
5807 F:      arch/powerpc/platforms/pasemi/
5808 F:      drivers/*/*pasemi*
5809 F:      drivers/*/*/*pasemi*
5810
5811 LINUX SECURITY MODULE (LSM) FRAMEWORK
5812 M:      Chris Wright <chrisw@sous-sol.org>
5813 L:      linux-security-module@vger.kernel.org
5814 S:      Supported
5815
5816 LIS3LV02D ACCELEROMETER DRIVER
5817 M:      Eric Piel <eric.piel@tremplin-utc.net>
5818 S:      Maintained
5819 F:      Documentation/misc-devices/lis3lv02d
5820 F:      drivers/misc/lis3lv02d/
5821 F:      drivers/platform/x86/hp_accel.c
5822
5823 LLC (802.2)
5824 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5825 S:      Maintained
5826 F:      include/linux/llc.h
5827 F:      include/uapi/linux/llc.h
5828 F:      include/net/llc*
5829 F:      net/llc/
5830
5831 LM73 HARDWARE MONITOR DRIVER
5832 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
5833 L:      lm-sensors@lm-sensors.org
5834 S:      Maintained
5835 F:      drivers/hwmon/lm73.c
5836
5837 LM78 HARDWARE MONITOR DRIVER
5838 M:      Jean Delvare <jdelvare@suse.de>
5839 L:      lm-sensors@lm-sensors.org
5840 S:      Maintained
5841 F:      Documentation/hwmon/lm78
5842 F:      drivers/hwmon/lm78.c
5843
5844 LM83 HARDWARE MONITOR DRIVER
5845 M:      Jean Delvare <jdelvare@suse.de>
5846 L:      lm-sensors@lm-sensors.org
5847 S:      Maintained
5848 F:      Documentation/hwmon/lm83
5849 F:      drivers/hwmon/lm83.c
5850
5851 LM90 HARDWARE MONITOR DRIVER
5852 M:      Jean Delvare <jdelvare@suse.de>
5853 L:      lm-sensors@lm-sensors.org
5854 S:      Maintained
5855 F:      Documentation/hwmon/lm90
5856 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
5857 F:      drivers/hwmon/lm90.c
5858
5859 LM95234 HARDWARE MONITOR DRIVER
5860 M:      Guenter Roeck <linux@roeck-us.net>
5861 L:      lm-sensors@lm-sensors.org
5862 S:      Maintained
5863 F:      Documentation/hwmon/lm95234
5864 F:      drivers/hwmon/lm95234.c
5865
5866 LME2510 MEDIA DRIVER
5867 M:      Malcolm Priestley <tvboxspy@gmail.com>
5868 L:      linux-media@vger.kernel.org
5869 W:      http://linuxtv.org/
5870 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5871 S:      Maintained
5872 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
5873
5874 LOCKDEP AND LOCKSTAT
5875 M:      Peter Zijlstra <peterz@infradead.org>
5876 M:      Ingo Molnar <mingo@redhat.com>
5877 L:      linux-kernel@vger.kernel.org
5878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
5879 S:      Maintained
5880 F:      Documentation/locking/lockdep*.txt
5881 F:      Documentation/locking/lockstat.txt
5882 F:      include/linux/lockdep.h
5883 F:      kernel/locking/
5884
5885 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
5886 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
5887 L:      linux-ntfs-dev@lists.sourceforge.net
5888 W:      http://www.linux-ntfs.org/content/view/19/37/
5889 S:      Maintained
5890 F:      Documentation/ldm.txt
5891 F:      block/partitions/ldm.*
5892
5893 LogFS
5894 M:      Joern Engel <joern@logfs.org>
5895 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
5896 L:      logfs@logfs.org
5897 W:      logfs.org
5898 S:      Maintained
5899 F:      fs/logfs/
5900
5901 LPC32XX MACHINE SUPPORT
5902 M:      Roland Stigge <stigge@antcom.de>
5903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5904 S:      Maintained
5905 F:      arch/arm/mach-lpc32xx/
5906
5907 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
5908 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
5909 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
5910 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
5911 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
5912 L:      MPT-FusionLinux.pdl@avagotech.com
5913 L:      linux-scsi@vger.kernel.org
5914 W:      http://www.lsilogic.com/support
5915 S:      Supported
5916 F:      drivers/message/fusion/
5917 F:      drivers/scsi/mpt2sas/
5918 F:      drivers/scsi/mpt3sas/
5919
5920 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
5921 M:      Matthew Wilcox <matthew@wil.cx>
5922 L:      linux-scsi@vger.kernel.org
5923 S:      Maintained
5924 F:      drivers/scsi/sym53c8xx_2/
5925
5926 LTC4261 HARDWARE MONITOR DRIVER
5927 M:      Guenter Roeck <linux@roeck-us.net>
5928 L:      lm-sensors@lm-sensors.org
5929 S:      Maintained
5930 F:      Documentation/hwmon/ltc4261
5931 F:      drivers/hwmon/ltc4261.c
5932
5933 LTP (Linux Test Project)
5934 M:      Mike Frysinger <vapier@gentoo.org>
5935 M:      Cyril Hrubis <chrubis@suse.cz>
5936 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
5937 M:      Jan Stancek <jstancek@redhat.com>
5938 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
5939 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
5940 L:      ltp-list@lists.sourceforge.net (subscribers-only)
5941 W:      http://linux-test-project.github.io/
5942 T:      git git://github.com/linux-test-project/ltp.git
5943 S:      Maintained
5944
5945 M32R ARCHITECTURE
5946 W:      http://www.linux-m32r.org/
5947 S:      Orphan
5948 F:      arch/m32r/
5949
5950 M68K ARCHITECTURE
5951 M:      Geert Uytterhoeven <geert@linux-m68k.org>
5952 L:      linux-m68k@lists.linux-m68k.org
5953 W:      http://www.linux-m68k.org/
5954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
5955 S:      Maintained
5956 F:      arch/m68k/
5957 F:      drivers/zorro/
5958
5959 M68K ON APPLE MACINTOSH
5960 M:      Joshua Thompson <funaho@jurai.org>
5961 W:      http://www.mac.linux-m68k.org/
5962 L:      linux-m68k@lists.linux-m68k.org
5963 S:      Maintained
5964 F:      arch/m68k/mac/
5965
5966 M68K ON HP9000/300
5967 M:      Philip Blundell <philb@gnu.org>
5968 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
5969 S:      Maintained
5970 F:      arch/m68k/hp300/
5971
5972 M88DS3103 MEDIA DRIVER
5973 M:      Antti Palosaari <crope@iki.fi>
5974 L:      linux-media@vger.kernel.org
5975 W:      http://linuxtv.org/
5976 W:      http://palosaari.fi/linux/
5977 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5978 T:      git git://linuxtv.org/anttip/media_tree.git
5979 S:      Maintained
5980 F:      drivers/media/dvb-frontends/m88ds3103*
5981
5982 M88RS2000 MEDIA DRIVER
5983 M:      Malcolm Priestley <tvboxspy@gmail.com>
5984 L:      linux-media@vger.kernel.org
5985 W:      http://linuxtv.org/
5986 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5987 S:      Maintained
5988 F:      drivers/media/dvb-frontends/m88rs2000*
5989
5990 M88TS2022 MEDIA DRIVER
5991 M:      Antti Palosaari <crope@iki.fi>
5992 L:      linux-media@vger.kernel.org
5993 W:      http://linuxtv.org/
5994 W:      http://palosaari.fi/linux/
5995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5996 T:      git git://linuxtv.org/anttip/media_tree.git
5997 S:      Maintained
5998 F:      drivers/media/tuners/m88ts2022*
5999
6000 MA901 MASTERKIT USB FM RADIO DRIVER
6001 M:      Alexey Klimov <klimov.linux@gmail.com>
6002 L:      linux-media@vger.kernel.org
6003 T:      git git://linuxtv.org/media_tree.git
6004 S:      Maintained
6005 F:      drivers/media/radio/radio-ma901.c
6006
6007 MAC80211
6008 M:      Johannes Berg <johannes@sipsolutions.net>
6009 L:      linux-wireless@vger.kernel.org
6010 W:      http://wireless.kernel.org/
6011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6013 S:      Maintained
6014 F:      Documentation/networking/mac80211-injection.txt
6015 F:      include/net/mac80211.h
6016 F:      net/mac80211/
6017
6018 MACVLAN DRIVER
6019 M:      Patrick McHardy <kaber@trash.net>
6020 L:      netdev@vger.kernel.org
6021 S:      Maintained
6022 F:      drivers/net/macvlan.c
6023 F:      include/linux/if_macvlan.h
6024
6025 MAILBOX API
6026 M:      Jassi Brar <jassisinghbrar@gmail.com>
6027 L:      linux-kernel@vger.kernel.org
6028 S:      Maintained
6029 F:      drivers/mailbox/
6030 F:      include/linux/mailbox_client.h
6031 F:      include/linux/mailbox_controller.h
6032
6033 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6034 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6035 W:      http://www.kernel.org/doc/man-pages
6036 L:      linux-man@vger.kernel.org
6037 S:      Maintained
6038
6039 MARVELL ARMADA DRM SUPPORT
6040 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6041 S:      Maintained
6042 F:      drivers/gpu/drm/armada/
6043
6044 MARVELL 88E6352 DSA support
6045 M:      Guenter Roeck <linux@roeck-us.net>
6046 S:      Maintained
6047 F:      drivers/net/dsa/mv88e6352.c
6048
6049 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6050 M:      Mirko Lindner <mlindner@marvell.com>
6051 M:      Stephen Hemminger <stephen@networkplumber.org>
6052 L:      netdev@vger.kernel.org
6053 S:      Maintained
6054 F:      drivers/net/ethernet/marvell/sk*
6055
6056 MARVELL LIBERTAS WIRELESS DRIVER
6057 L:      libertas-dev@lists.infradead.org
6058 S:      Orphan
6059 F:      drivers/net/wireless/libertas/
6060
6061 MARVELL MV643XX ETHERNET DRIVER
6062 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6063 L:      netdev@vger.kernel.org
6064 S:      Maintained
6065 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6066 F:      include/linux/mv643xx.h
6067
6068 MARVELL MVNETA ETHERNET DRIVER
6069 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6070 L:      netdev@vger.kernel.org
6071 S:      Maintained
6072 F:      drivers/net/ethernet/marvell/mvneta.*
6073
6074 MARVELL MWIFIEX WIRELESS DRIVER
6075 M:      Amitkumar Karwar <akarwar@marvell.com>
6076 M:      Avinash Patil <patila@marvell.com>
6077 L:      linux-wireless@vger.kernel.org
6078 S:      Maintained
6079 F:      drivers/net/wireless/mwifiex/
6080
6081 MARVELL MWL8K WIRELESS DRIVER
6082 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6083 L:      linux-wireless@vger.kernel.org
6084 S:      Odd Fixes
6085 F:      drivers/net/wireless/mwl8k.c
6086
6087 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6088 M:      Nicolas Pitre <nico@fluxnic.net>
6089 S:      Odd Fixes
6090 F:      drivers/mmc/host/mvsdio.*
6091
6092 MATROX FRAMEBUFFER DRIVER
6093 L:      linux-fbdev@vger.kernel.org
6094 S:      Orphan
6095 F:      drivers/video/fbdev/matrox/matroxfb_*
6096 F:      include/uapi/linux/matroxfb.h
6097
6098 MAX16065 HARDWARE MONITOR DRIVER
6099 M:      Guenter Roeck <linux@roeck-us.net>
6100 L:      lm-sensors@lm-sensors.org
6101 S:      Maintained
6102 F:      Documentation/hwmon/max16065
6103 F:      drivers/hwmon/max16065.c
6104
6105 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6106 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6107 L:      lm-sensors@lm-sensors.org
6108 S:      Maintained
6109 F:      Documentation/hwmon/max6650
6110 F:      drivers/hwmon/max6650.c
6111
6112 MAX6697 HARDWARE MONITOR DRIVER
6113 M:      Guenter Roeck <linux@roeck-us.net>
6114 L:      lm-sensors@lm-sensors.org
6115 S:      Maintained
6116 F:      Documentation/hwmon/max6697
6117 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6118 F:      drivers/hwmon/max6697.c
6119 F:      include/linux/platform_data/max6697.h
6120
6121 MAXIRADIO FM RADIO RECEIVER DRIVER
6122 M:      Hans Verkuil <hverkuil@xs4all.nl>
6123 L:      linux-media@vger.kernel.org
6124 T:      git git://linuxtv.org/media_tree.git
6125 W:      http://linuxtv.org
6126 S:      Maintained
6127 F:      drivers/media/radio/radio-maxiradio*
6128
6129 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6130 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6131 P:      LinuxTV.org Project
6132 L:      linux-media@vger.kernel.org
6133 W:      http://linuxtv.org
6134 Q:      http://patchwork.kernel.org/project/linux-media/list/
6135 T:      git git://linuxtv.org/media_tree.git
6136 S:      Maintained
6137 F:      Documentation/dvb/
6138 F:      Documentation/video4linux/
6139 F:      Documentation/DocBook/media/
6140 F:      drivers/media/
6141 F:      drivers/staging/media/
6142 F:      include/media/
6143 F:      include/uapi/linux/dvb/
6144 F:      include/uapi/linux/videodev2.h
6145 F:      include/uapi/linux/media.h
6146 F:      include/uapi/linux/v4l2-*
6147 F:      include/uapi/linux/meye.h
6148 F:      include/uapi/linux/ivtv*
6149 F:      include/uapi/linux/uvcvideo.h
6150
6151 MEDIAVISION PRO MOVIE STUDIO DRIVER
6152 M:      Hans Verkuil <hverkuil@xs4all.nl>
6153 L:      linux-media@vger.kernel.org
6154 T:      git git://linuxtv.org/media_tree.git
6155 W:      http://linuxtv.org
6156 S:      Odd Fixes
6157 F:      drivers/media/parport/pms*
6158
6159 MEGARAID SCSI/SAS DRIVERS
6160 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6161 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6162 M:      Uday Lingala <uday.lingala@avagotech.com>
6163 L:      megaraidlinux.pdl@avagotech.com
6164 L:      linux-scsi@vger.kernel.org
6165 W:      http://www.lsi.com
6166 S:      Maintained
6167 F:      Documentation/scsi/megaraid.txt
6168 F:      drivers/scsi/megaraid.*
6169 F:      drivers/scsi/megaraid/
6170
6171 MELLANOX ETHERNET DRIVER (mlx4_en)
6172 M:      Amir Vadai <amirv@mellanox.com>
6173 L:      netdev@vger.kernel.org
6174 S:      Supported
6175 W:      http://www.mellanox.com
6176 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6177 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6178
6179 MEMORY MANAGEMENT
6180 L:      linux-mm@kvack.org
6181 W:      http://www.linux-mm.org
6182 S:      Maintained
6183 F:      include/linux/mm.h
6184 F:      include/linux/gfp.h
6185 F:      include/linux/mmzone.h
6186 F:      include/linux/memory_hotplug.h
6187 F:      include/linux/vmalloc.h
6188 F:      mm/
6189
6190 MEMORY TECHNOLOGY DEVICES (MTD)
6191 M:      David Woodhouse <dwmw2@infradead.org>
6192 M:      Brian Norris <computersforpeace@gmail.com>
6193 L:      linux-mtd@lists.infradead.org
6194 W:      http://www.linux-mtd.infradead.org/
6195 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6196 T:      git git://git.infradead.org/linux-mtd.git
6197 T:      git git://git.infradead.org/l2-mtd.git
6198 S:      Maintained
6199 F:      drivers/mtd/
6200 F:      include/linux/mtd/
6201 F:      include/uapi/mtd/
6202
6203 MEN A21 WATCHDOG DRIVER
6204 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
6205 L:      linux-watchdog@vger.kernel.org
6206 S:      Supported
6207 F:      drivers/watchdog/mena21_wdt.c
6208
6209 MEN CHAMELEON BUS (mcb)
6210 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
6211 S:      Supported
6212 F:      drivers/mcb/
6213 F:      include/linux/mcb.h
6214
6215 MEN F21BMC (Board Management Controller)
6216 M:      Andreas Werner <andreas.werner@men.de>
6217 S:      Supported
6218 F:      drivers/mfd/menf21bmc.c
6219 F:      drivers/watchdog/menf21bmc_wdt.c
6220 F:      drivers/leds/leds-menf21bmc.c
6221 F:      drivers/hwmon/menf21bmc_hwmon.c
6222 F:      Documentation/hwmon/menf21bmc
6223
6224 METAG ARCHITECTURE
6225 M:      James Hogan <james.hogan@imgtec.com>
6226 L:      linux-metag@vger.kernel.org
6227 S:      Supported
6228 F:      arch/metag/
6229 F:      Documentation/metag/
6230 F:      Documentation/devicetree/bindings/metag/
6231 F:      drivers/clocksource/metag_generic.c
6232 F:      drivers/irqchip/irq-metag.c
6233 F:      drivers/irqchip/irq-metag-ext.c
6234 F:      drivers/tty/metag_da.c
6235
6236 MICROBLAZE ARCHITECTURE
6237 M:      Michal Simek <monstr@monstr.eu>
6238 W:      http://www.monstr.eu/fdt/
6239 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6240 S:      Supported
6241 F:      arch/microblaze/
6242
6243 MICROTEK X6 SCANNER
6244 M:      Oliver Neukum <oliver@neukum.org>
6245 S:      Maintained
6246 F:      drivers/usb/image/microtek.*
6247
6248 MIPS
6249 M:      Ralf Baechle <ralf@linux-mips.org>
6250 L:      linux-mips@linux-mips.org
6251 W:      http://www.linux-mips.org/
6252 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6253 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6254 S:      Supported
6255 F:      Documentation/mips/
6256 F:      arch/mips/
6257
6258 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6259 M:      Hans Verkuil <hverkuil@xs4all.nl>
6260 L:      linux-media@vger.kernel.org
6261 T:      git git://linuxtv.org/media_tree.git
6262 W:      http://linuxtv.org
6263 S:      Odd Fixes
6264 F:      drivers/media/radio/radio-miropcm20*
6265
6266 Mellanox MLX5 core VPI driver
6267 M:      Eli Cohen <eli@mellanox.com>
6268 L:      netdev@vger.kernel.org
6269 L:      linux-rdma@vger.kernel.org
6270 W:      http://www.mellanox.com
6271 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6272 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6273 T:      git git://openfabrics.org/~eli/connect-ib.git
6274 S:      Supported
6275 F:      drivers/net/ethernet/mellanox/mlx5/core/
6276 F:      include/linux/mlx5/
6277
6278 Mellanox MLX5 IB driver
6279 M:      Eli Cohen <eli@mellanox.com>
6280 L:      linux-rdma@vger.kernel.org
6281 W:      http://www.mellanox.com
6282 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6283 T:      git git://openfabrics.org/~eli/connect-ib.git
6284 S:      Supported
6285 F:      include/linux/mlx5/
6286 F:      drivers/infiniband/hw/mlx5/
6287
6288 MN88472 MEDIA DRIVER
6289 M:      Antti Palosaari <crope@iki.fi>
6290 L:      linux-media@vger.kernel.org
6291 W:      http://linuxtv.org/
6292 W:      http://palosaari.fi/linux/
6293 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6294 T:      git git://linuxtv.org/anttip/media_tree.git
6295 S:      Maintained
6296 F:      drivers/staging/media/mn88472/
6297 F:      drivers/media/dvb-frontends/mn88472.h
6298
6299 MN88473 MEDIA DRIVER
6300 M:      Antti Palosaari <crope@iki.fi>
6301 L:      linux-media@vger.kernel.org
6302 W:      http://linuxtv.org/
6303 W:      http://palosaari.fi/linux/
6304 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6305 T:      git git://linuxtv.org/anttip/media_tree.git
6306 S:      Maintained
6307 F:      drivers/staging/media/mn88473/
6308 F:      drivers/media/dvb-frontends/mn88473.h
6309
6310 MODULE SUPPORT
6311 M:      Rusty Russell <rusty@rustcorp.com.au>
6312 S:      Maintained
6313 F:      include/linux/module.h
6314 F:      kernel/module.c
6315
6316 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6317 W:      http://popies.net/meye/
6318 S:      Orphan
6319 F:      Documentation/video4linux/meye.txt
6320 F:      drivers/media/pci/meye/
6321 F:      include/uapi/linux/meye.h
6322
6323 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6324 M:      Jiri Slaby <jirislaby@gmail.com>
6325 S:      Maintained
6326 F:      Documentation/serial/moxa-smartio
6327 F:      drivers/tty/mxser.*
6328
6329 MR800 AVERMEDIA USB FM RADIO DRIVER
6330 M:      Alexey Klimov <klimov.linux@gmail.com>
6331 L:      linux-media@vger.kernel.org
6332 T:      git git://linuxtv.org/media_tree.git
6333 S:      Maintained
6334 F:      drivers/media/radio/radio-mr800.c
6335
6336 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6337 M:      Alan Ott <alan@signal11.us>
6338 L:      linux-wpan@vger.kernel.org
6339 S:      Maintained
6340 F:      drivers/net/ieee802154/mrf24j40.c
6341
6342 MSI LAPTOP SUPPORT
6343 M:      "Lee, Chun-Yi" <jlee@suse.com>
6344 L:      platform-driver-x86@vger.kernel.org
6345 S:      Maintained
6346 F:      drivers/platform/x86/msi-laptop.c
6347
6348 MSI WMI SUPPORT
6349 M:      Anisse Astier <anisse@astier.eu>
6350 L:      platform-driver-x86@vger.kernel.org
6351 S:      Supported
6352 F:      drivers/platform/x86/msi-wmi.c
6353
6354 MSI001 MEDIA DRIVER
6355 M:      Antti Palosaari <crope@iki.fi>
6356 L:      linux-media@vger.kernel.org
6357 W:      http://linuxtv.org/
6358 W:      http://palosaari.fi/linux/
6359 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6360 T:      git git://linuxtv.org/anttip/media_tree.git
6361 S:      Maintained
6362 F:      drivers/media/tuners/msi001*
6363
6364 MSI2500 MEDIA DRIVER
6365 M:      Antti Palosaari <crope@iki.fi>
6366 L:      linux-media@vger.kernel.org
6367 W:      http://linuxtv.org/
6368 W:      http://palosaari.fi/linux/
6369 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6370 T:      git git://linuxtv.org/anttip/media_tree.git
6371 S:      Maintained
6372 F:      drivers/media/usb/msi2500/
6373
6374 MT9M032 APTINA SENSOR DRIVER
6375 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6376 L:      linux-media@vger.kernel.org
6377 T:      git git://linuxtv.org/media_tree.git
6378 S:      Maintained
6379 F:      drivers/media/i2c/mt9m032.c
6380 F:      include/media/mt9m032.h
6381
6382 MT9P031 APTINA CAMERA SENSOR
6383 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6384 L:      linux-media@vger.kernel.org
6385 T:      git git://linuxtv.org/media_tree.git
6386 S:      Maintained
6387 F:      drivers/media/i2c/mt9p031.c
6388 F:      include/media/mt9p031.h
6389
6390 MT9T001 APTINA CAMERA SENSOR
6391 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6392 L:      linux-media@vger.kernel.org
6393 T:      git git://linuxtv.org/media_tree.git
6394 S:      Maintained
6395 F:      drivers/media/i2c/mt9t001.c
6396 F:      include/media/mt9t001.h
6397
6398 MT9V032 APTINA CAMERA SENSOR
6399 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6400 L:      linux-media@vger.kernel.org
6401 T:      git git://linuxtv.org/media_tree.git
6402 S:      Maintained
6403 F:      drivers/media/i2c/mt9v032.c
6404 F:      include/media/mt9v032.h
6405
6406 MULTIFUNCTION DEVICES (MFD)
6407 M:      Samuel Ortiz <sameo@linux.intel.com>
6408 M:      Lee Jones <lee.jones@linaro.org>
6409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
6410 S:      Supported
6411 F:      drivers/mfd/
6412 F:      include/linux/mfd/
6413
6414 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
6415 M:      Chris Ball <chris@printf.net>
6416 M:      Ulf Hansson <ulf.hansson@linaro.org>
6417 L:      linux-mmc@vger.kernel.org
6418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6419 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
6420 S:      Maintained
6421 F:      drivers/mmc/
6422 F:      include/linux/mmc/
6423 F:      include/uapi/linux/mmc/
6424
6425 MULTIMEDIA CARD (MMC) ETC. OVER SPI
6426 S:      Orphan
6427 F:      drivers/mmc/host/mmc_spi.c
6428 F:      include/linux/spi/mmc_spi.h
6429
6430 MULTISOUND SOUND DRIVER
6431 M:      Andrew Veliath <andrewtv@usa.net>
6432 S:      Maintained
6433 F:      Documentation/sound/oss/MultiSound
6434 F:      sound/oss/msnd*
6435
6436 MULTITECH MULTIPORT CARD (ISICOM)
6437 S:      Orphan
6438 F:      drivers/tty/isicom.c
6439 F:      include/linux/isicom.h
6440
6441 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
6442 M:      Felipe Balbi <balbi@ti.com>
6443 L:      linux-usb@vger.kernel.org
6444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6445 S:      Maintained
6446 F:      drivers/usb/musb/
6447
6448 MXL5007T MEDIA DRIVER
6449 M:      Michael Krufky <mkrufky@linuxtv.org>
6450 L:      linux-media@vger.kernel.org
6451 W:      http://linuxtv.org/
6452 W:      http://github.com/mkrufky
6453 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6454 T:      git git://linuxtv.org/mkrufky/tuners.git
6455 S:      Maintained
6456 F:      drivers/media/tuners/mxl5007t.*
6457
6458 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
6459 M:      Hyong-Youb Kim <hykim@myri.com>
6460 L:      netdev@vger.kernel.org
6461 W:      https://www.myricom.com/support/downloads/myri10ge.html
6462 S:      Supported
6463 F:      drivers/net/ethernet/myricom/myri10ge/
6464
6465 NATSEMI ETHERNET DRIVER (DP8381x)
6466 S:      Orphan
6467 F:      drivers/net/ethernet/natsemi/natsemi.c
6468
6469 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
6470 M:      Daniel Mack <zonque@gmail.com>
6471 S:      Maintained
6472 L:      alsa-devel@alsa-project.org
6473 W:      http://www.native-instruments.com
6474 F:      sound/usb/caiaq/
6475
6476 NCP FILESYSTEM
6477 M:      Petr Vandrovec <petr@vandrovec.name>
6478 S:      Odd Fixes
6479 F:      fs/ncpfs/
6480
6481 NCR 5380 SCSI DRIVERS
6482 M:      Finn Thain <fthain@telegraphics.com.au>
6483 M:      Michael Schmitz <schmitzmic@gmail.com>
6484 L:      linux-scsi@vger.kernel.org
6485 S:      Maintained
6486 F:      Documentation/scsi/g_NCR5380.txt
6487 F:      drivers/scsi/NCR5380.*
6488 F:      drivers/scsi/arm/cumana_1.c
6489 F:      drivers/scsi/arm/oak.c
6490 F:      drivers/scsi/atari_NCR5380.c
6491 F:      drivers/scsi/atari_scsi.*
6492 F:      drivers/scsi/dmx3191d.c
6493 F:      drivers/scsi/dtc.*
6494 F:      drivers/scsi/g_NCR5380.*
6495 F:      drivers/scsi/g_NCR5380_mmio.c
6496 F:      drivers/scsi/mac_scsi.*
6497 F:      drivers/scsi/pas16.*
6498 F:      drivers/scsi/sun3_scsi.*
6499 F:      drivers/scsi/sun3_scsi_vme.c
6500 F:      drivers/scsi/t128.*
6501
6502 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
6503 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6504 L:      linux-scsi@vger.kernel.org
6505 S:      Maintained
6506 F:      drivers/scsi/NCR_D700.*
6507
6508 NCT6775 HARDWARE MONITOR DRIVER
6509 M:      Guenter Roeck <linux@roeck-us.net>
6510 L:      lm-sensors@lm-sensors.org
6511 S:      Maintained
6512 F:      Documentation/hwmon/nct6775
6513 F:      drivers/hwmon/nct6775.c
6514
6515 NETEFFECT IWARP RNIC DRIVER (IW_NES)
6516 M:      Faisal Latif <faisal.latif@intel.com>
6517 L:      linux-rdma@vger.kernel.org
6518 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
6519 S:      Supported
6520 F:      drivers/infiniband/hw/nes/
6521
6522 NETEM NETWORK EMULATOR
6523 M:      Stephen Hemminger <stephen@networkplumber.org>
6524 L:      netem@lists.linux-foundation.org
6525 S:      Maintained
6526 F:      net/sched/sch_netem.c
6527
6528 NETERION 10GbE DRIVERS (s2io/vxge)
6529 M:      Jon Mason <jdmason@kudzu.us>
6530 L:      netdev@vger.kernel.org
6531 S:      Supported
6532 F:      Documentation/networking/s2io.txt
6533 F:      Documentation/networking/vxge.txt
6534 F:      drivers/net/ethernet/neterion/
6535
6536 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
6537 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6538 M:      Patrick McHardy <kaber@trash.net>
6539 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
6540 L:      netfilter-devel@vger.kernel.org
6541 L:      coreteam@netfilter.org
6542 W:      http://www.netfilter.org/
6543 W:      http://www.iptables.org/
6544 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
6545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
6546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
6547 S:      Supported
6548 F:      include/linux/netfilter*
6549 F:      include/linux/netfilter/
6550 F:      include/net/netfilter/
6551 F:      include/uapi/linux/netfilter*
6552 F:      include/uapi/linux/netfilter/
6553 F:      net/*/netfilter.c
6554 F:      net/*/netfilter/
6555 F:      net/netfilter/
6556
6557 NETLABEL
6558 M:      Paul Moore <paul@paul-moore.com>
6559 W:      http://netlabel.sf.net
6560 L:      netdev@vger.kernel.org
6561 S:      Maintained
6562 F:      Documentation/netlabel/
6563 F:      include/net/netlabel.h
6564 F:      net/netlabel/
6565
6566 NETROM NETWORK LAYER
6567 M:      Ralf Baechle <ralf@linux-mips.org>
6568 L:      linux-hams@vger.kernel.org
6569 W:      http://www.linux-ax25.org/
6570 S:      Maintained
6571 F:      include/net/netrom.h
6572 F:      include/uapi/linux/netrom.h
6573 F:      net/netrom/
6574
6575 NETWORK BLOCK DEVICE (NBD)
6576 M:      Paul Clements <Paul.Clements@steeleye.com>
6577 S:      Maintained
6578 L:      nbd-general@lists.sourceforge.net
6579 F:      Documentation/blockdev/nbd.txt
6580 F:      drivers/block/nbd.c
6581 F:      include/linux/nbd.h
6582 F:      include/uapi/linux/nbd.h
6583
6584 NETWORK DROP MONITOR
6585 M:      Neil Horman <nhorman@tuxdriver.com>
6586 L:      netdev@vger.kernel.org
6587 S:      Maintained
6588 W:      https://fedorahosted.org/dropwatch/
6589 F:      net/core/drop_monitor.c
6590
6591 NETWORKING [GENERAL]
6592 M:      "David S. Miller" <davem@davemloft.net>
6593 L:      netdev@vger.kernel.org
6594 W:      http://www.linuxfoundation.org/en/Net
6595 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6598 S:      Maintained
6599 F:      net/
6600 F:      include/net/
6601 F:      include/linux/in.h
6602 F:      include/linux/net.h
6603 F:      include/linux/netdevice.h
6604 F:      include/uapi/linux/in.h
6605 F:      include/uapi/linux/net.h
6606 F:      include/uapi/linux/netdevice.h
6607 F:      tools/net/
6608 F:      tools/testing/selftests/net/
6609 F:      lib/random32.c
6610 F:      lib/test_bpf.c
6611
6612 NETWORKING [IPv4/IPv6]
6613 M:      "David S. Miller" <davem@davemloft.net>
6614 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
6615 M:      James Morris <jmorris@namei.org>
6616 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
6617 M:      Patrick McHardy <kaber@trash.net>
6618 L:      netdev@vger.kernel.org
6619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6620 S:      Maintained
6621 F:      net/ipv4/
6622 F:      net/ipv6/
6623 F:      include/net/ip*
6624 F:      arch/x86/net/*
6625
6626 NETWORKING [IPSEC]
6627 M:      Steffen Klassert <steffen.klassert@secunet.com>
6628 M:      Herbert Xu <herbert@gondor.apana.org.au>
6629 M:      "David S. Miller" <davem@davemloft.net>
6630 L:      netdev@vger.kernel.org
6631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
6632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
6633 S:      Maintained
6634 F:      net/core/flow.c
6635 F:      net/xfrm/
6636 F:      net/key/
6637 F:      net/ipv4/xfrm*
6638 F:      net/ipv4/esp4.c
6639 F:      net/ipv4/ah4.c
6640 F:      net/ipv4/ipcomp.c
6641 F:      net/ipv4/ip_vti.c
6642 F:      net/ipv6/xfrm*
6643 F:      net/ipv6/esp6.c
6644 F:      net/ipv6/ah6.c
6645 F:      net/ipv6/ipcomp6.c
6646 F:      net/ipv6/ip6_vti.c
6647 F:      include/uapi/linux/xfrm.h
6648 F:      include/net/xfrm.h
6649
6650 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
6651 M:      Paul Moore <paul@paul-moore.com>
6652 L:      netdev@vger.kernel.org
6653 S:      Maintained
6654
6655 NETWORKING [WIRELESS]
6656 L:      linux-wireless@vger.kernel.org
6657 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
6658
6659 NETWORKING DRIVERS
6660 L:      netdev@vger.kernel.org
6661 W:      http://www.linuxfoundation.org/en/Net
6662 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6665 S:      Odd Fixes
6666 F:      drivers/net/
6667 F:      include/linux/if_*
6668 F:      include/linux/netdevice.h
6669 F:      include/linux/arcdevice.h
6670 F:      include/linux/etherdevice.h
6671 F:      include/linux/fcdevice.h
6672 F:      include/linux/fddidevice.h
6673 F:      include/linux/hippidevice.h
6674 F:      include/linux/inetdevice.h
6675 F:      include/uapi/linux/if_*
6676 F:      include/uapi/linux/netdevice.h
6677
6678 NETWORKING DRIVERS (WIRELESS)
6679 M:      Kalle Valo <kvalo@codeaurora.org>
6680 L:      linux-wireless@vger.kernel.org
6681 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
6682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
6683 S:      Maintained
6684 F:      drivers/net/wireless/
6685
6686 NETXEN (1/10) GbE SUPPORT
6687 M:      Manish Chopra <manish.chopra@qlogic.com>
6688 M:      Sony Chacko <sony.chacko@qlogic.com>
6689 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
6690 L:      netdev@vger.kernel.org
6691 W:      http://www.qlogic.com
6692 S:      Supported
6693 F:      drivers/net/ethernet/qlogic/netxen/
6694
6695 NFC SUBSYSTEM
6696 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6697 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
6698 M:      Samuel Ortiz <sameo@linux.intel.com>
6699 L:      linux-wireless@vger.kernel.org
6700 L:      linux-nfc@lists.01.org (subscribers-only)
6701 S:      Supported
6702 F:      net/nfc/
6703 F:      include/net/nfc/
6704 F:      include/uapi/linux/nfc.h
6705 F:      drivers/nfc/
6706 F:      include/linux/platform_data/pn544.h
6707 F:      Documentation/devicetree/bindings/net/nfc/
6708
6709 NFS, SUNRPC, AND LOCKD CLIENTS
6710 M:      Trond Myklebust <trond.myklebust@primarydata.com>
6711 L:      linux-nfs@vger.kernel.org
6712 W:      http://client.linux-nfs.org
6713 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
6714 S:      Maintained
6715 F:      fs/lockd/
6716 F:      fs/nfs/
6717 F:      fs/nfs_common/
6718 F:      net/sunrpc/
6719 F:      include/linux/lockd/
6720 F:      include/linux/nfs*
6721 F:      include/linux/sunrpc/
6722 F:      include/uapi/linux/nfs*
6723 F:      include/uapi/linux/sunrpc/
6724
6725 NILFS2 FILESYSTEM
6726 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
6727 L:      linux-nilfs@vger.kernel.org
6728 W:      http://nilfs.sourceforge.net/
6729 T:      git git://github.com/konis/nilfs2.git
6730 S:      Supported
6731 F:      Documentation/filesystems/nilfs2.txt
6732 F:      fs/nilfs2/
6733 F:      include/linux/nilfs2_fs.h
6734
6735 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
6736 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6737 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6738 S:      Maintained
6739 F:      Documentation/scsi/NinjaSCSI.txt
6740 F:      drivers/scsi/pcmcia/nsp_*
6741
6742 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
6743 M:      GOTO Masanori <gotom@debian.or.jp>
6744 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6745 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6746 S:      Maintained
6747 F:      Documentation/scsi/NinjaSCSI.txt
6748 F:      drivers/scsi/nsp32*
6749
6750 NIOS2 ARCHITECTURE
6751 M:      Ley Foon Tan <lftan@altera.com>
6752 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
6753 T:      git git://git.rocketboards.org/linux-socfpga.git
6754 S:      Maintained
6755 F:      arch/nios2/
6756
6757 NTB DRIVER
6758 M:      Jon Mason <jdmason@kudzu.us>
6759 M:      Dave Jiang <dave.jiang@intel.com>
6760 S:      Supported
6761 W:      https://github.com/jonmason/ntb/wiki
6762 T:      git git://github.com/jonmason/ntb.git
6763 F:      drivers/ntb/
6764 F:      drivers/net/ntb_netdev.c
6765 F:      include/linux/ntb.h
6766
6767 NTFS FILESYSTEM
6768 M:      Anton Altaparmakov <anton@tuxera.com>
6769 L:      linux-ntfs-dev@lists.sourceforge.net
6770 W:      http://www.tuxera.com/
6771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
6772 S:      Supported
6773 F:      Documentation/filesystems/ntfs.txt
6774 F:      fs/ntfs/
6775
6776 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
6777 M:      Antonino Daplas <adaplas@gmail.com>
6778 L:      linux-fbdev@vger.kernel.org
6779 S:      Maintained
6780 F:      drivers/video/fbdev/riva/
6781 F:      drivers/video/fbdev/nvidia/
6782
6783 NVM EXPRESS DRIVER
6784 M:      Matthew Wilcox <willy@linux.intel.com>
6785 L:      linux-nvme@lists.infradead.org
6786 T:      git git://git.infradead.org/users/willy/linux-nvme.git
6787 S:      Supported
6788 F:      drivers/block/nvme*
6789 F:      include/linux/nvme.h
6790
6791 NXP TDA998X DRM DRIVER
6792 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6793 S:      Supported
6794 F:      drivers/gpu/drm/i2c/tda998x_drv.c
6795 F:      include/drm/i2c/tda998x.h
6796
6797 NXP TFA9879 DRIVER
6798 M:      Peter Rosin <peda@axentia.se>
6799 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6800 S:      Maintained
6801 F:      sound/soc/codecs/tfa9879*
6802
6803 OMAP SUPPORT
6804 M:      Tony Lindgren <tony@atomide.com>
6805 L:      linux-omap@vger.kernel.org
6806 W:      http://www.muru.com/linux/omap/
6807 W:      http://linux.omap.com/
6808 Q:      http://patchwork.kernel.org/project/linux-omap/list/
6809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
6810 S:      Maintained
6811 F:      arch/arm/*omap*/
6812 F:      drivers/i2c/busses/i2c-omap.c
6813 F:      drivers/irqchip/irq-omap-intc.c
6814 F:      drivers/mfd/*omap*.c
6815 F:      drivers/mfd/menelaus.c
6816 F:      drivers/mfd/palmas.c
6817 F:      drivers/mfd/tps65217.c
6818 F:      drivers/mfd/tps65218.c
6819 F:      drivers/mfd/tps65910.c
6820 F:      drivers/mfd/twl-core.[ch]
6821 F:      drivers/mfd/twl4030*.c
6822 F:      drivers/mfd/twl6030*.c
6823 F:      drivers/mfd/twl6040*.c
6824 F:      drivers/regulator/palmas-regulator*.c
6825 F:      drivers/regulator/pbias-regulator.c
6826 F:      drivers/regulator/tps65217-regulator.c
6827 F:      drivers/regulator/tps65218-regulator.c
6828 F:      drivers/regulator/tps65910-regulator.c
6829 F:      drivers/regulator/twl-regulator.c
6830 F:      include/linux/i2c-omap.h
6831
6832 OMAP DEVICE TREE SUPPORT
6833 M:      Benoît Cousson <bcousson@baylibre.com>
6834 M:      Tony Lindgren <tony@atomide.com>
6835 L:      linux-omap@vger.kernel.org
6836 L:      devicetree@vger.kernel.org
6837 S:      Maintained
6838 F:      arch/arm/boot/dts/*omap*
6839 F:      arch/arm/boot/dts/*am3*
6840 F:      arch/arm/boot/dts/*am4*
6841 F:      arch/arm/boot/dts/*am5*
6842 F:      arch/arm/boot/dts/*dra7*
6843
6844 OMAP CLOCK FRAMEWORK SUPPORT
6845 M:      Paul Walmsley <paul@pwsan.com>
6846 L:      linux-omap@vger.kernel.org
6847 S:      Maintained
6848 F:      arch/arm/*omap*/*clock*
6849
6850 OMAP POWER MANAGEMENT SUPPORT
6851 M:      Kevin Hilman <khilman@deeprootsystems.com>
6852 L:      linux-omap@vger.kernel.org
6853 S:      Maintained
6854 F:      arch/arm/*omap*/*pm*
6855 F:      drivers/cpufreq/omap-cpufreq.c
6856
6857 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
6858 M:      Rajendra Nayak <rnayak@ti.com>
6859 M:      Paul Walmsley <paul@pwsan.com>
6860 L:      linux-omap@vger.kernel.org
6861 S:      Maintained
6862 F:      arch/arm/mach-omap2/prm*
6863
6864 OMAP AUDIO SUPPORT
6865 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
6866 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
6867 L:      alsa-devel@alsa-project.org (subscribers-only)
6868 L:      linux-omap@vger.kernel.org
6869 S:      Maintained
6870 F:      sound/soc/omap/
6871
6872 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
6873 M:      Roger Quadros <rogerq@ti.com>
6874 M:      Tony Lindgren <tony@atomide.com>
6875 L:      linux-omap@vger.kernel.org
6876 S:      Maintained
6877 F:      drivers/memory/omap-gpmc.c
6878 F:      arch/arm/mach-omap2/*gpmc*
6879
6880 OMAP FRAMEBUFFER SUPPORT
6881 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
6882 L:      linux-fbdev@vger.kernel.org
6883 L:      linux-omap@vger.kernel.org
6884 S:      Maintained
6885 F:      drivers/video/fbdev/omap/
6886
6887 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
6888 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
6889 L:      linux-omap@vger.kernel.org
6890 L:      linux-fbdev@vger.kernel.org
6891 S:      Maintained
6892 F:      drivers/video/fbdev/omap2/
6893 F:      Documentation/arm/OMAP/DSS
6894
6895 OMAP HARDWARE SPINLOCK SUPPORT
6896 M:      Ohad Ben-Cohen <ohad@wizery.com>
6897 L:      linux-omap@vger.kernel.org
6898 S:      Maintained
6899 F:      drivers/hwspinlock/omap_hwspinlock.c
6900 F:      arch/arm/mach-omap2/hwspinlock.c
6901
6902 OMAP MMC SUPPORT
6903 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
6904 L:      linux-omap@vger.kernel.org
6905 S:      Maintained
6906 F:      drivers/mmc/host/omap.c
6907
6908 OMAP HS MMC SUPPORT
6909 L:      linux-mmc@vger.kernel.org
6910 L:      linux-omap@vger.kernel.org
6911 S:      Orphan
6912 F:      drivers/mmc/host/omap_hsmmc.c
6913
6914 OMAP RANDOM NUMBER GENERATOR SUPPORT
6915 M:      Deepak Saxena <dsaxena@plexity.net>
6916 S:      Maintained
6917 F:      drivers/char/hw_random/omap-rng.c
6918
6919 OMAP HWMOD SUPPORT
6920 M:      Benoît Cousson <bcousson@baylibre.com>
6921 M:      Paul Walmsley <paul@pwsan.com>
6922 L:      linux-omap@vger.kernel.org
6923 S:      Maintained
6924 F:      arch/arm/mach-omap2/omap_hwmod.*
6925
6926 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
6927 M:      Benoît Cousson <bcousson@baylibre.com>
6928 L:      linux-omap@vger.kernel.org
6929 S:      Maintained
6930 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
6931
6932 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
6933 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6934 L:      linux-media@vger.kernel.org
6935 S:      Maintained
6936 F:      drivers/media/platform/omap3isp/
6937 F:      drivers/staging/media/omap4iss/
6938
6939 OMAP USB SUPPORT
6940 M:      Felipe Balbi <balbi@ti.com>
6941 L:      linux-usb@vger.kernel.org
6942 L:      linux-omap@vger.kernel.org
6943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6944 S:      Maintained
6945 F:      drivers/usb/*/*omap*
6946 F:      arch/arm/*omap*/usb*
6947
6948 OMAP GPIO DRIVER
6949 M:      Javier Martinez Canillas <javier@dowhile0.org>
6950 M:      Santosh Shilimkar <ssantosh@kernel.org>
6951 M:      Kevin Hilman <khilman@deeprootsystems.com>
6952 L:      linux-omap@vger.kernel.org
6953 S:      Maintained
6954 F:      drivers/gpio/gpio-omap.c
6955
6956 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
6957 M:      Mark Jackson <mpfj@newflow.co.uk>
6958 L:      linux-omap@vger.kernel.org
6959 S:      Maintained
6960 F:      arch/arm/boot/dts/am335x-nano.dts
6961
6962 OMFS FILESYSTEM
6963 M:      Bob Copeland <me@bobcopeland.com>
6964 L:      linux-karma-devel@lists.sourceforge.net
6965 S:      Maintained
6966 F:      Documentation/filesystems/omfs.txt
6967 F:      fs/omfs/
6968
6969 OMNIKEY CARDMAN 4000 DRIVER
6970 M:      Harald Welte <laforge@gnumonks.org>
6971 S:      Maintained
6972 F:      drivers/char/pcmcia/cm4000_cs.c
6973 F:      include/linux/cm4000_cs.h
6974 F:      include/uapi/linux/cm4000_cs.h
6975
6976 OMNIKEY CARDMAN 4040 DRIVER
6977 M:      Harald Welte <laforge@gnumonks.org>
6978 S:      Maintained
6979 F:      drivers/char/pcmcia/cm4040_cs.*
6980
6981 OMNIVISION OV7670 SENSOR DRIVER
6982 M:      Jonathan Corbet <corbet@lwn.net>
6983 L:      linux-media@vger.kernel.org
6984 T:      git git://linuxtv.org/media_tree.git
6985 S:      Maintained
6986 F:      drivers/media/i2c/ov7670.c
6987
6988 ONENAND FLASH DRIVER
6989 M:      Kyungmin Park <kyungmin.park@samsung.com>
6990 L:      linux-mtd@lists.infradead.org
6991 S:      Maintained
6992 F:      drivers/mtd/onenand/
6993 F:      include/linux/mtd/onenand*.h
6994
6995 ONSTREAM SCSI TAPE DRIVER
6996 M:      Willem Riede <osst@riede.org>
6997 L:      osst-users@lists.sourceforge.net
6998 L:      linux-scsi@vger.kernel.org
6999 S:      Maintained
7000 F:      Documentation/scsi/osst.txt
7001 F:      drivers/scsi/osst.*
7002 F:      drivers/scsi/osst_*.h
7003 F:      drivers/scsi/st.h
7004
7005 OPENCORES I2C BUS DRIVER
7006 M:      Peter Korsgaard <jacmet@sunsite.dk>
7007 L:      linux-i2c@vger.kernel.org
7008 S:      Maintained
7009 F:      Documentation/i2c/busses/i2c-ocores
7010 F:      drivers/i2c/busses/i2c-ocores.c
7011
7012 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7013 M:      Grant Likely <grant.likely@linaro.org>
7014 M:      Rob Herring <robh+dt@kernel.org>
7015 L:      devicetree@vger.kernel.org
7016 W:      http://fdt.secretlab.ca
7017 T:      git git://git.secretlab.ca/git/linux-2.6.git
7018 S:      Maintained
7019 F:      drivers/of/
7020 F:      include/linux/of*.h
7021 F:      scripts/dtc/
7022 K:      of_get_property
7023 K:      of_match_table
7024
7025 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7026 M:      Rob Herring <robh+dt@kernel.org>
7027 M:      Pawel Moll <pawel.moll@arm.com>
7028 M:      Mark Rutland <mark.rutland@arm.com>
7029 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7030 M:      Kumar Gala <galak@codeaurora.org>
7031 L:      devicetree@vger.kernel.org
7032 S:      Maintained
7033 F:      Documentation/devicetree/
7034 F:      arch/*/boot/dts/
7035 F:      include/dt-bindings/
7036
7037 OPENRISC ARCHITECTURE
7038 M:      Jonas Bonn <jonas@southpole.se>
7039 W:      http://openrisc.net
7040 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7041 S:      Maintained
7042 T:      git git://openrisc.net/~jonas/linux
7043 F:      arch/openrisc/
7044
7045 OPENVSWITCH
7046 M:      Pravin Shelar <pshelar@nicira.com>
7047 L:      dev@openvswitch.org
7048 W:      http://openvswitch.org
7049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pshelar/openvswitch.git
7050 S:      Maintained
7051 F:      net/openvswitch/
7052
7053 OPL4 DRIVER
7054 M:      Clemens Ladisch <clemens@ladisch.de>
7055 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7056 T:      git git://git.alsa-project.org/alsa-kernel.git
7057 S:      Maintained
7058 F:      sound/drivers/opl4/
7059
7060 OPROFILE
7061 M:      Robert Richter <rric@kernel.org>
7062 L:      oprofile-list@lists.sf.net
7063 S:      Maintained
7064 F:      arch/*/include/asm/oprofile*.h
7065 F:      arch/*/oprofile/
7066 F:      drivers/oprofile/
7067 F:      include/linux/oprofile.h
7068
7069 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7070 M:      Mark Fasheh <mfasheh@suse.com>
7071 M:      Joel Becker <jlbec@evilplan.org>
7072 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7073 W:      http://oss.oracle.com/projects/ocfs2/
7074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
7075 S:      Supported
7076 F:      Documentation/filesystems/ocfs2.txt
7077 F:      Documentation/filesystems/dlmfs.txt
7078 F:      fs/ocfs2/
7079
7080 ORINOCO DRIVER
7081 L:      linux-wireless@vger.kernel.org
7082 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7083 W:      http://www.nongnu.org/orinoco/
7084 S:      Orphan
7085 F:      drivers/net/wireless/orinoco/
7086
7087 OSD LIBRARY and FILESYSTEM
7088 M:      Boaz Harrosh <ooo@electrozaur.com>
7089 M:      Benny Halevy <bhalevy@primarydata.com>
7090 L:      osd-dev@open-osd.org
7091 W:      http://open-osd.org
7092 T:      git git://git.open-osd.org/open-osd.git
7093 S:      Maintained
7094 F:      drivers/scsi/osd/
7095 F:      include/scsi/osd_*
7096 F:      fs/exofs/
7097
7098 OVERLAY FILESYSTEM
7099 M:      Miklos Szeredi <miklos@szeredi.hu>
7100 L:      linux-unionfs@vger.kernel.org
7101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7102 S:      Supported
7103 F:      fs/overlayfs/
7104 F:      Documentation/filesystems/overlayfs.txt
7105
7106 P54 WIRELESS DRIVER
7107 M:      Christian Lamparter <chunkeey@googlemail.com>
7108 L:      linux-wireless@vger.kernel.org
7109 W:      http://wireless.kernel.org/en/users/Drivers/p54
7110 S:      Maintained
7111 F:      drivers/net/wireless/p54/
7112
7113 PA SEMI ETHERNET DRIVER
7114 M:      Olof Johansson <olof@lixom.net>
7115 L:      netdev@vger.kernel.org
7116 S:      Maintained
7117 F:      drivers/net/ethernet/pasemi/*
7118
7119 PA SEMI SMBUS DRIVER
7120 M:      Olof Johansson <olof@lixom.net>
7121 L:      linux-i2c@vger.kernel.org
7122 S:      Maintained
7123 F:      drivers/i2c/busses/i2c-pasemi.c
7124
7125 PADATA PARALLEL EXECUTION MECHANISM
7126 M:      Steffen Klassert <steffen.klassert@secunet.com>
7127 L:      linux-crypto@vger.kernel.org
7128 S:      Maintained
7129 F:      kernel/padata.c
7130 F:      include/linux/padata.h
7131 F:      Documentation/padata.txt
7132
7133 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7134 M:      Harald Welte <laforge@gnumonks.org>
7135 L:      platform-driver-x86@vger.kernel.org
7136 S:      Maintained
7137 F:      drivers/platform/x86/panasonic-laptop.c
7138
7139 PANASONIC MN10300/AM33/AM34 PORT
7140 M:      David Howells <dhowells@redhat.com>
7141 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7142 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7143 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7144 S:      Maintained
7145 F:      Documentation/mn10300/
7146 F:      arch/mn10300/
7147
7148 PARALLEL PORT SUPPORT
7149 L:      linux-parport@lists.infradead.org (subscribers-only)
7150 S:      Orphan
7151 F:      drivers/parport/
7152 F:      include/linux/parport*.h
7153 F:      drivers/char/ppdev.c
7154 F:      include/uapi/linux/ppdev.h
7155
7156 PARAVIRT_OPS INTERFACE
7157 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7158 M:      Chris Wright <chrisw@sous-sol.org>
7159 M:      Alok Kataria <akataria@vmware.com>
7160 M:      Rusty Russell <rusty@rustcorp.com.au>
7161 L:      virtualization@lists.linux-foundation.org
7162 S:      Supported
7163 F:      Documentation/ia64/paravirt_ops.txt
7164 F:      arch/*/kernel/paravirt*
7165 F:      arch/*/include/asm/paravirt.h
7166
7167 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7168 M:      Tim Waugh <tim@cyberelk.net>
7169 L:      linux-parport@lists.infradead.org (subscribers-only)
7170 W:      http://www.torque.net/linux-pp.html
7171 S:      Maintained
7172 F:      Documentation/blockdev/paride.txt
7173 F:      drivers/block/paride/
7174
7175 PARISC ARCHITECTURE
7176 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7177 M:      Helge Deller <deller@gmx.de>
7178 L:      linux-parisc@vger.kernel.org
7179 W:      http://www.parisc-linux.org/
7180 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7183 S:      Maintained
7184 F:      arch/parisc/
7185 F:      Documentation/parisc/
7186 F:      drivers/parisc/
7187 F:      drivers/char/agp/parisc-agp.c
7188 F:      drivers/input/serio/gscps2.c
7189 F:      drivers/parport/parport_gsc.*
7190 F:      drivers/tty/serial/8250/8250_gsc.c
7191 F:      drivers/video/fbdev/sti*
7192 F:      drivers/video/console/sti*
7193 F:      drivers/video/logo/logo_parisc*
7194
7195 PC87360 HARDWARE MONITORING DRIVER
7196 M:      Jim Cromie <jim.cromie@gmail.com>
7197 L:      lm-sensors@lm-sensors.org
7198 S:      Maintained
7199 F:      Documentation/hwmon/pc87360
7200 F:      drivers/hwmon/pc87360.c
7201
7202 PC8736x GPIO DRIVER
7203 M:      Jim Cromie <jim.cromie@gmail.com>
7204 S:      Maintained
7205 F:      drivers/char/pc8736x_gpio.c
7206
7207 PC87427 HARDWARE MONITORING DRIVER
7208 M:      Jean Delvare <jdelvare@suse.de>
7209 L:      lm-sensors@lm-sensors.org
7210 S:      Maintained
7211 F:      Documentation/hwmon/pc87427
7212 F:      drivers/hwmon/pc87427.c
7213
7214 PCA9532 LED DRIVER
7215 M:      Riku Voipio <riku.voipio@iki.fi>
7216 S:      Maintained
7217 F:      drivers/leds/leds-pca9532.c
7218 F:      include/linux/leds-pca9532.h
7219
7220 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7221 M:      Guenter Roeck <linux@roeck-us.net>
7222 L:      linux-i2c@vger.kernel.org
7223 S:      Maintained
7224 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7225
7226 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7227 M:      Khalid Aziz <khalid@gonehiking.org>
7228 S:      Maintained
7229 F:      drivers/firmware/pcdp.*
7230
7231 PCI ERROR RECOVERY
7232 M:      Linas Vepstas <linasvepstas@gmail.com>
7233 L:      linux-pci@vger.kernel.org
7234 S:      Supported
7235 F:      Documentation/PCI/pci-error-recovery.txt
7236
7237 PCI SUBSYSTEM
7238 M:      Bjorn Helgaas <bhelgaas@google.com>
7239 L:      linux-pci@vger.kernel.org
7240 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7242 S:      Supported
7243 F:      Documentation/PCI/
7244 F:      drivers/pci/
7245 F:      include/linux/pci*
7246 F:      arch/x86/pci/
7247 F:      arch/x86/kernel/quirks.c
7248
7249 PCI DRIVER FOR APPLIEDMICRO XGENE
7250 M:      Tanmay Inamdar <tinamdar@apm.com>
7251 L:      linux-pci@vger.kernel.org
7252 L:      linux-arm-kernel@lists.infradead.org
7253 S:      Maintained
7254 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7255 F:      drivers/pci/host/pci-xgene.c
7256
7257 PCI DRIVER FOR FREESCALE LAYERSCAPE
7258 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7259 M:      Mingkai Hu <mingkai.hu@freescale.com>
7260 M:      Roy Zang <tie-fei.zang@freescale.com>
7261 L:      linuxppc-dev@lists.ozlabs.org
7262 L:      linux-pci@vger.kernel.org
7263 L:      linux-arm-kernel@lists.infradead.org
7264 S:      Maintained
7265 F:      drivers/pci/host/*layerscape*
7266
7267 PCI DRIVER FOR IMX6
7268 M:      Richard Zhu <r65037@freescale.com>
7269 M:      Lucas Stach <l.stach@pengutronix.de>
7270 L:      linux-pci@vger.kernel.org
7271 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7272 S:      Maintained
7273 F:      drivers/pci/host/*imx6*
7274
7275 PCI DRIVER FOR TI KEYSTONE
7276 M:      Murali Karicheri <m-karicheri2@ti.com>
7277 L:      linux-pci@vger.kernel.org
7278 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7279 S:      Maintained
7280 F:      drivers/pci/host/*keystone*
7281
7282 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7283 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7284 M:      Jason Cooper <jason@lakedaemon.net>
7285 L:      linux-pci@vger.kernel.org
7286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7287 S:      Maintained
7288 F:      drivers/pci/host/*mvebu*
7289
7290 PCI DRIVER FOR NVIDIA TEGRA
7291 M:      Thierry Reding <thierry.reding@gmail.com>
7292 L:      linux-tegra@vger.kernel.org
7293 L:      linux-pci@vger.kernel.org
7294 S:      Supported
7295 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
7296 F:      drivers/pci/host/pci-tegra.c
7297
7298 PCI DRIVER FOR TI DRA7XX
7299 M:      Kishon Vijay Abraham I <kishon@ti.com>
7300 L:      linux-omap@vger.kernel.org
7301 L:      linux-pci@vger.kernel.org
7302 S:      Supported
7303 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
7304 F:      drivers/pci/host/pci-dra7xx.c
7305
7306 PCI DRIVER FOR RENESAS R-CAR
7307 M:      Simon Horman <horms@verge.net.au>
7308 L:      linux-pci@vger.kernel.org
7309 L:      linux-sh@vger.kernel.org
7310 S:      Maintained
7311 F:      drivers/pci/host/*rcar*
7312
7313 PCI DRIVER FOR SAMSUNG EXYNOS
7314 M:      Jingoo Han <jg1.han@samsung.com>
7315 L:      linux-pci@vger.kernel.org
7316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7317 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7318 S:      Maintained
7319 F:      drivers/pci/host/pci-exynos.c
7320
7321 PCI DRIVER FOR SYNOPSIS DESIGNWARE
7322 M:      Mohit Kumar <mohit.kumar@st.com>
7323 M:      Jingoo Han <jg1.han@samsung.com>
7324 L:      linux-pci@vger.kernel.org
7325 S:      Maintained
7326 F:      drivers/pci/host/*designware*
7327
7328 PCI DRIVER FOR GENERIC OF HOSTS
7329 M:      Will Deacon <will.deacon@arm.com>
7330 L:      linux-pci@vger.kernel.org
7331 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7332 S:      Maintained
7333 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
7334 F:      drivers/pci/host/pci-host-generic.c
7335
7336 PCIE DRIVER FOR ST SPEAR13XX
7337 M:      Mohit Kumar <mohit.kumar@st.com>
7338 L:      linux-pci@vger.kernel.org
7339 S:      Maintained
7340 F:      drivers/pci/host/*spear*
7341
7342 PCMCIA SUBSYSTEM
7343 P:      Linux PCMCIA Team
7344 L:      linux-pcmcia@lists.infradead.org
7345 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
7346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
7347 S:      Maintained
7348 F:      Documentation/pcmcia/
7349 F:      drivers/pcmcia/
7350 F:      include/pcmcia/
7351
7352 PCNET32 NETWORK DRIVER
7353 M:      Don Fry <pcnet32@frontier.com>
7354 L:      netdev@vger.kernel.org
7355 S:      Maintained
7356 F:      drivers/net/ethernet/amd/pcnet32.c
7357
7358 PCRYPT PARALLEL CRYPTO ENGINE
7359 M:      Steffen Klassert <steffen.klassert@secunet.com>
7360 L:      linux-crypto@vger.kernel.org
7361 S:      Maintained
7362 F:      crypto/pcrypt.c
7363 F:      include/crypto/pcrypt.h
7364
7365 PER-CPU MEMORY ALLOCATOR
7366 M:      Tejun Heo <tj@kernel.org>
7367 M:      Christoph Lameter <cl@linux-foundation.org>
7368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
7369 S:      Maintained
7370 F:      include/linux/percpu*.h
7371 F:      mm/percpu*.c
7372 F:      arch/*/include/asm/percpu.h
7373
7374 PER-TASK DELAY ACCOUNTING
7375 M:      Balbir Singh <bsingharora@gmail.com>
7376 S:      Maintained
7377 F:      include/linux/delayacct.h
7378 F:      kernel/delayacct.c
7379
7380 PERFORMANCE EVENTS SUBSYSTEM
7381 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
7382 M:      Paul Mackerras <paulus@samba.org>
7383 M:      Ingo Molnar <mingo@redhat.com>
7384 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
7385 L:      linux-kernel@vger.kernel.org
7386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
7387 S:      Supported
7388 F:      kernel/events/*
7389 F:      include/linux/perf_event.h
7390 F:      include/uapi/linux/perf_event.h
7391 F:      arch/*/kernel/perf_event*.c
7392 F:      arch/*/kernel/*/perf_event*.c
7393 F:      arch/*/kernel/*/*/perf_event*.c
7394 F:      arch/*/include/asm/perf_event.h
7395 F:      arch/*/kernel/perf_callchain.c
7396 F:      tools/perf/
7397
7398 PERSONALITY HANDLING
7399 M:      Christoph Hellwig <hch@infradead.org>
7400 L:      linux-abi-devel@lists.sourceforge.net
7401 S:      Maintained
7402 F:      include/linux/personality.h
7403 F:      include/uapi/linux/personality.h
7404
7405 PHONET PROTOCOL
7406 M:      Remi Denis-Courmont <courmisch@gmail.com>
7407 S:      Supported
7408 F:      Documentation/networking/phonet.txt
7409 F:      include/linux/phonet.h
7410 F:      include/net/phonet/
7411 F:      include/uapi/linux/phonet.h
7412 F:      net/phonet/
7413
7414 PHRAM MTD DRIVER
7415 M:      Joern Engel <joern@lazybastard.org>
7416 L:      linux-mtd@lists.infradead.org
7417 S:      Maintained
7418 F:      drivers/mtd/devices/phram.c
7419
7420 PICOLCD HID DRIVER
7421 M:      Bruno Prémont <bonbons@linux-vserver.org>
7422 L:      linux-input@vger.kernel.org
7423 S:      Maintained
7424 F:      drivers/hid/hid-picolcd*
7425
7426 PICOXCELL SUPPORT
7427 M:      Jamie Iles <jamie@jamieiles.com>
7428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7429 T:      git git://github.com/jamieiles/linux-2.6-ji.git
7430 S:      Supported
7431 F:      arch/arm/boot/dts/picoxcell*
7432 F:      arch/arm/mach-picoxcell/
7433 F:      drivers/crypto/picoxcell*
7434
7435 PIN CONTROL SUBSYSTEM
7436 M:      Linus Walleij <linus.walleij@linaro.org>
7437 L:      linux-gpio@vger.kernel.org
7438 S:      Maintained
7439 F:      drivers/pinctrl/
7440 F:      include/linux/pinctrl/
7441
7442 PIN CONTROLLER - ATMEL AT91
7443 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
7444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7445 S:      Maintained
7446 F:      drivers/pinctrl/pinctrl-at91.*
7447
7448 PIN CONTROLLER - INTEL
7449 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7450 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
7451 S:      Maintained
7452 F:      drivers/pinctrl/intel/
7453
7454 PIN CONTROLLER - RENESAS
7455 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7456 L:      linux-sh@vger.kernel.org
7457 S:      Maintained
7458 F:      drivers/pinctrl/sh-pfc/
7459
7460 PIN CONTROLLER - SAMSUNG
7461 M:      Tomasz Figa <tomasz.figa@gmail.com>
7462 M:      Thomas Abraham <thomas.abraham@linaro.org>
7463 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7464 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7465 S:      Maintained
7466 F:      drivers/pinctrl/samsung/
7467
7468 PIN CONTROLLER - ST SPEAR
7469 M:      Viresh Kumar <viresh.linux@gmail.com>
7470 L:      spear-devel@list.st.com
7471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7472 W:      http://www.st.com/spear
7473 S:      Maintained
7474 F:      drivers/pinctrl/spear/
7475
7476 PKTCDVD DRIVER
7477 M:      Jiri Kosina <jkosina@suse.cz>
7478 S:      Maintained
7479 F:      drivers/block/pktcdvd.c
7480 F:      include/linux/pktcdvd.h
7481 F:      include/uapi/linux/pktcdvd.h
7482
7483 PKUNITY SOC DRIVERS
7484 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
7485 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
7486 S:      Maintained
7487 T:      git git://github.com/gxt/linux.git
7488 F:      drivers/input/serio/i8042-unicore32io.h
7489 F:      drivers/i2c/busses/i2c-puv3.c
7490 F:      drivers/video/fbdev/fb-puv3.c
7491 F:      drivers/rtc/rtc-puv3.c
7492
7493 PMBUS HARDWARE MONITORING DRIVERS
7494 M:      Guenter Roeck <linux@roeck-us.net>
7495 L:      lm-sensors@lm-sensors.org
7496 W:      http://www.lm-sensors.org/
7497 W:      http://www.roeck-us.net/linux/drivers/
7498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7499 S:      Maintained
7500 F:      Documentation/hwmon/pmbus
7501 F:      drivers/hwmon/pmbus/
7502 F:      include/linux/i2c/pmbus.h
7503
7504 PMC SIERRA MaxRAID DRIVER
7505 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
7506 L:      linux-scsi@vger.kernel.org
7507 W:      http://www.pmc-sierra.com/
7508 S:      Supported
7509 F:      drivers/scsi/pmcraid.*
7510
7511 PMC SIERRA PM8001 DRIVER
7512 M:      xjtuwjp@gmail.com
7513 M:      lindar_liu@usish.com
7514 L:      pmchba@pmcs.com
7515 L:      linux-scsi@vger.kernel.org
7516 S:      Supported
7517 F:      drivers/scsi/pm8001/
7518
7519 POSIX CLOCKS and TIMERS
7520 M:      Thomas Gleixner <tglx@linutronix.de>
7521 L:      linux-kernel@vger.kernel.org
7522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7523 S:      Maintained
7524 F:      fs/timerfd.c
7525 F:      include/linux/timer*
7526 F:      kernel/time/*timer*
7527
7528 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
7529 M:      Sebastian Reichel <sre@kernel.org>
7530 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
7531 M:      David Woodhouse <dwmw2@infradead.org>
7532 L:      linux-pm@vger.kernel.org
7533 T:      git git://git.infradead.org/battery-2.6.git
7534 S:      Maintained
7535 F:      include/linux/power_supply.h
7536 F:      drivers/power/
7537
7538 PNP SUPPORT
7539 M:      Rafael J. Wysocki <rafael.j.wysocki@intel.com>
7540 S:      Maintained
7541 F:      drivers/pnp/
7542
7543 PNXxxxx I2C DRIVER
7544 M:      Vitaly Wool <vitalywool@gmail.com>
7545 L:      linux-i2c@vger.kernel.org
7546 S:      Maintained
7547 F:      drivers/i2c/busses/i2c-pnx.c
7548
7549 PPP PROTOCOL DRIVERS AND COMPRESSORS
7550 M:      Paul Mackerras <paulus@samba.org>
7551 L:      linux-ppp@vger.kernel.org
7552 S:      Maintained
7553 F:      drivers/net/ppp/ppp_*
7554
7555 PPP OVER ATM (RFC 2364)
7556 M:      Mitchell Blank Jr <mitch@sfgoth.com>
7557 S:      Maintained
7558 F:      net/atm/pppoatm.c
7559 F:      include/uapi/linux/atmppp.h
7560
7561 PPP OVER ETHERNET
7562 M:      Michal Ostrowski <mostrows@earthlink.net>
7563 S:      Maintained
7564 F:      drivers/net/ppp/pppoe.c
7565 F:      drivers/net/ppp/pppox.c
7566
7567 PPP OVER L2TP
7568 M:      James Chapman <jchapman@katalix.com>
7569 S:      Maintained
7570 F:      net/l2tp/l2tp_ppp.c
7571 F:      include/linux/if_pppol2tp.h
7572 F:      include/uapi/linux/if_pppol2tp.h
7573
7574 PPS SUPPORT
7575 M:      Rodolfo Giometti <giometti@enneenne.com>
7576 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
7577 L:      linuxpps@ml.enneenne.com (subscribers-only)
7578 S:      Maintained
7579 F:      Documentation/pps/
7580 F:      drivers/pps/
7581 F:      include/linux/pps*.h
7582
7583 PPTP DRIVER
7584 M:      Dmitry Kozlov <xeb@mail.ru>
7585 L:      netdev@vger.kernel.org
7586 S:      Maintained
7587 F:      drivers/net/ppp/pptp.c
7588 W:      http://sourceforge.net/projects/accel-pptp
7589
7590 PREEMPTIBLE KERNEL
7591 M:      Robert Love <rml@tech9.net>
7592 L:      kpreempt-tech@lists.sourceforge.net
7593 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
7594 S:      Supported
7595 F:      Documentation/preempt-locking.txt
7596 F:      include/linux/preempt.h
7597
7598 PRISM54 WIRELESS DRIVER
7599 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
7600 L:      linux-wireless@vger.kernel.org
7601 W:      http://wireless.kernel.org/en/users/Drivers/p54
7602 S:      Obsolete
7603 F:      drivers/net/wireless/prism54/
7604
7605 PS3 NETWORK SUPPORT
7606 M:      Geoff Levand <geoff@infradead.org>
7607 L:      netdev@vger.kernel.org
7608 L:      cbe-oss-dev@lists.ozlabs.org
7609 S:      Maintained
7610 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
7611
7612 PS3 PLATFORM SUPPORT
7613 M:      Geoff Levand <geoff@infradead.org>
7614 L:      linuxppc-dev@lists.ozlabs.org
7615 L:      cbe-oss-dev@lists.ozlabs.org
7616 S:      Maintained
7617 F:      arch/powerpc/boot/ps3*
7618 F:      arch/powerpc/include/asm/lv1call.h
7619 F:      arch/powerpc/include/asm/ps3*.h
7620 F:      arch/powerpc/platforms/ps3/
7621 F:      drivers/*/ps3*
7622 F:      drivers/ps3/
7623 F:      drivers/rtc/rtc-ps3.c
7624 F:      drivers/usb/host/*ps3.c
7625 F:      sound/ppc/snd_ps3*
7626
7627 PS3VRAM DRIVER
7628 M:      Jim Paris <jim@jtan.com>
7629 L:      cbe-oss-dev@lists.ozlabs.org
7630 S:      Maintained
7631 F:      drivers/block/ps3vram.c
7632
7633 PSTORE FILESYSTEM
7634 M:      Anton Vorontsov <anton@enomsg.org>
7635 M:      Colin Cross <ccross@android.com>
7636 M:      Kees Cook <keescook@chromium.org>
7637 M:      Tony Luck <tony.luck@intel.com>
7638 S:      Maintained
7639 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
7640 F:      fs/pstore/
7641 F:      include/linux/pstore*
7642 F:      drivers/firmware/efi/efi-pstore.c
7643 F:      drivers/acpi/apei/erst.c
7644
7645 PTP HARDWARE CLOCK SUPPORT
7646 M:      Richard Cochran <richardcochran@gmail.com>
7647 L:      netdev@vger.kernel.org
7648 S:      Maintained
7649 W:      http://linuxptp.sourceforge.net/
7650 F:      Documentation/ABI/testing/sysfs-ptp
7651 F:      Documentation/ptp/*
7652 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
7653 F:      drivers/net/phy/dp83640*
7654 F:      drivers/ptp/*
7655 F:      include/linux/ptp_cl*
7656
7657 PTRACE SUPPORT
7658 M:      Roland McGrath <roland@hack.frob.com>
7659 M:      Oleg Nesterov <oleg@redhat.com>
7660 S:      Maintained
7661 F:      include/asm-generic/syscall.h
7662 F:      include/linux/ptrace.h
7663 F:      include/linux/regset.h
7664 F:      include/linux/tracehook.h
7665 F:      include/uapi/linux/ptrace.h
7666 F:      kernel/ptrace.c
7667
7668 PVRUSB2 VIDEO4LINUX DRIVER
7669 M:      Mike Isely <isely@pobox.com>
7670 L:      pvrusb2@isely.net       (subscribers-only)
7671 L:      linux-media@vger.kernel.org
7672 W:      http://www.isely.net/pvrusb2/
7673 T:      git git://linuxtv.org/media_tree.git
7674 S:      Maintained
7675 F:      Documentation/video4linux/README.pvrusb2
7676 F:      drivers/media/usb/pvrusb2/
7677
7678 PWC WEBCAM DRIVER
7679 M:      Hans de Goede <hdegoede@redhat.com>
7680 L:      linux-media@vger.kernel.org
7681 T:      git git://linuxtv.org/media_tree.git
7682 S:      Maintained
7683 F:      drivers/media/usb/pwc/*
7684
7685 PWM FAN DRIVER
7686 M:      Kamil Debski <k.debski@samsung.com>
7687 L:      lm-sensors@lm-sensors.org
7688 S:      Supported
7689 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
7690 F:      Documentation/hwmon/pwm-fan
7691 F:      drivers/hwmon/pwm-fan.c
7692
7693 PWM SUBSYSTEM
7694 M:      Thierry Reding <thierry.reding@gmail.com>
7695 L:      linux-pwm@vger.kernel.org
7696 S:      Maintained
7697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
7698 F:      Documentation/pwm.txt
7699 F:      Documentation/devicetree/bindings/pwm/
7700 F:      include/linux/pwm.h
7701 F:      drivers/pwm/
7702 F:      drivers/video/backlight/pwm_bl.c
7703 F:      include/linux/pwm_backlight.h
7704
7705 PXA2xx/PXA3xx SUPPORT
7706 M:      Daniel Mack <daniel@zonque.org>
7707 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7708 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7710 T:      git git://github.com/hzhuang1/linux.git
7711 T:      git git://github.com/rjarzmik/linux.git
7712 S:      Maintained
7713 F:      arch/arm/mach-pxa/
7714 F:      drivers/pcmcia/pxa2xx*
7715 F:      drivers/spi/spi-pxa2xx*
7716 F:      drivers/usb/gadget/udc/pxa2*
7717 F:      include/sound/pxa2xx-lib.h
7718 F:      sound/arm/pxa*
7719 F:      sound/soc/pxa/
7720
7721 PXA3xx NAND FLASH DRIVER
7722 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
7723 L:      linux-mtd@lists.infradead.org
7724 S:      Maintained
7725 F:      drivers/mtd/nand/pxa3xx_nand.c
7726
7727 MMP SUPPORT
7728 M:      Eric Miao <eric.y.miao@gmail.com>
7729 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7731 T:      git git://github.com/hzhuang1/linux.git
7732 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
7733 S:      Maintained
7734 F:      arch/arm/mach-mmp/
7735
7736 PXA MMCI DRIVER
7737 S:      Orphan
7738
7739 PXA RTC DRIVER
7740 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7741 L:      rtc-linux@googlegroups.com
7742 S:      Maintained
7743
7744 QAT DRIVER
7745 M:      Tadeusz Struk <tadeusz.struk@intel.com>
7746 L:      qat-linux@intel.com
7747 S:      Supported
7748 F:      drivers/crypto/qat/
7749
7750 QIB DRIVER
7751 M:      Mike Marciniszyn <infinipath@intel.com>
7752 L:      linux-rdma@vger.kernel.org
7753 S:      Supported
7754 F:      drivers/infiniband/hw/qib/
7755
7756 QLOGIC QLA1280 SCSI DRIVER
7757 M:      Michael Reed <mdr@sgi.com>
7758 L:      linux-scsi@vger.kernel.org
7759 S:      Maintained
7760 F:      drivers/scsi/qla1280.[ch]
7761
7762 QLOGIC QLA2XXX FC-SCSI DRIVER
7763 M:      qla2xxx-upstream@qlogic.com
7764 L:      linux-scsi@vger.kernel.org
7765 S:      Supported
7766 F:      Documentation/scsi/LICENSE.qla2xxx
7767 F:      drivers/scsi/qla2xxx/
7768
7769 QLOGIC QLA4XXX iSCSI DRIVER
7770 M:      Vikas Chaudhary <vikas.chaudhary@qlogic.com>
7771 M:      iscsi-driver@qlogic.com
7772 L:      linux-scsi@vger.kernel.org
7773 S:      Supported
7774 F:      Documentation/scsi/LICENSE.qla4xxx
7775 F:      drivers/scsi/qla4xxx/
7776
7777 QLOGIC QLA3XXX NETWORK DRIVER
7778 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
7779 M:      Ron Mercer <ron.mercer@qlogic.com>
7780 M:      linux-driver@qlogic.com
7781 L:      netdev@vger.kernel.org
7782 S:      Supported
7783 F:      Documentation/networking/LICENSE.qla3xxx
7784 F:      drivers/net/ethernet/qlogic/qla3xxx.*
7785
7786 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
7787 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
7788 M:      Dept-GELinuxNICDev@qlogic.com
7789 L:      netdev@vger.kernel.org
7790 S:      Supported
7791 F:      drivers/net/ethernet/qlogic/qlcnic/
7792
7793 QLOGIC QLGE 10Gb ETHERNET DRIVER
7794 M:      Harish Patil <harish.patil@qlogic.com>
7795 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
7796 M:      Dept-GELinuxNICDev@qlogic.com
7797 M:      linux-driver@qlogic.com
7798 L:      netdev@vger.kernel.org
7799 S:      Supported
7800 F:      drivers/net/ethernet/qlogic/qlge/
7801
7802 QNX4 FILESYSTEM
7803 M:      Anders Larsen <al@alarsen.net>
7804 W:      http://www.alarsen.net/linux/qnx4fs/
7805 S:      Maintained
7806 F:      fs/qnx4/
7807 F:      include/uapi/linux/qnx4_fs.h
7808 F:      include/uapi/linux/qnxtypes.h
7809
7810 QT1010 MEDIA DRIVER
7811 M:      Antti Palosaari <crope@iki.fi>
7812 L:      linux-media@vger.kernel.org
7813 W:      http://linuxtv.org/
7814 W:      http://palosaari.fi/linux/
7815 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7816 T:      git git://linuxtv.org/anttip/media_tree.git
7817 S:      Maintained
7818 F:      drivers/media/tuners/qt1010*
7819
7820 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
7821 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
7822 L:      linux-wireless@vger.kernel.org
7823 L:      ath9k-devel@lists.ath9k.org
7824 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
7825 S:      Supported
7826 F:      drivers/net/wireless/ath/ath9k/
7827
7828 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
7829 M:      Kalle Valo <kvalo@qca.qualcomm.com>
7830 L:      ath10k@lists.infradead.org
7831 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
7832 T:      git git://github.com/kvalo/ath.git
7833 S:      Supported
7834 F:      drivers/net/wireless/ath/ath10k/
7835
7836 QUALCOMM HEXAGON ARCHITECTURE
7837 M:      Richard Kuo <rkuo@codeaurora.org>
7838 L:      linux-hexagon@vger.kernel.org
7839 S:      Supported
7840 F:      arch/hexagon/
7841
7842 QUALCOMM WCN36XX WIRELESS DRIVER
7843 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
7844 L:      wcn36xx@lists.infradead.org
7845 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
7846 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
7847 S:      Supported
7848 F:      drivers/net/wireless/ath/wcn36xx/
7849
7850 QUICKCAM PARALLEL PORT WEBCAMS
7851 M:      Hans Verkuil <hverkuil@xs4all.nl>
7852 L:      linux-media@vger.kernel.org
7853 T:      git git://linuxtv.org/media_tree.git
7854 W:      http://linuxtv.org
7855 S:      Odd Fixes
7856 F:      drivers/media/parport/*-qcam*
7857
7858 RADOS BLOCK DEVICE (RBD)
7859 M:      Yehuda Sadeh <yehuda@inktank.com>
7860 M:      Sage Weil <sage@inktank.com>
7861 M:      Alex Elder <elder@kernel.org>
7862 M:      ceph-devel@vger.kernel.org
7863 W:      http://ceph.com/
7864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
7865 S:      Supported
7866 F:      drivers/block/rbd.c
7867 F:      drivers/block/rbd_types.h
7868
7869 RADEON FRAMEBUFFER DISPLAY DRIVER
7870 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
7871 L:      linux-fbdev@vger.kernel.org
7872 S:      Maintained
7873 F:      drivers/video/fbdev/aty/radeon*
7874 F:      include/uapi/linux/radeonfb.h
7875
7876 RADIOSHARK RADIO DRIVER
7877 M:      Hans de Goede <hdegoede@redhat.com>
7878 L:      linux-media@vger.kernel.org
7879 T:      git git://linuxtv.org/media_tree.git
7880 S:      Maintained
7881 F:      drivers/media/radio/radio-shark.c
7882
7883 RADIOSHARK2 RADIO DRIVER
7884 M:      Hans de Goede <hdegoede@redhat.com>
7885 L:      linux-media@vger.kernel.org
7886 T:      git git://linuxtv.org/media_tree.git
7887 S:      Maintained
7888 F:      drivers/media/radio/radio-shark2.c
7889 F:      drivers/media/radio/radio-tea5777.c
7890
7891 RAGE128 FRAMEBUFFER DISPLAY DRIVER
7892 M:      Paul Mackerras <paulus@samba.org>
7893 L:      linux-fbdev@vger.kernel.org
7894 S:      Maintained
7895 F:      drivers/video/fbdev/aty/aty128fb.c
7896
7897 RALINK RT2X00 WIRELESS LAN DRIVER
7898 P:      rt2x00 project
7899 M:      Stanislaw Gruszka <sgruszka@redhat.com>
7900 M:      Helmut Schaa <helmut.schaa@googlemail.com>
7901 L:      linux-wireless@vger.kernel.org
7902 L:      users@rt2x00.serialmonkey.com (moderated for non-subscribers)
7903 W:      http://rt2x00.serialmonkey.com/
7904 S:      Maintained
7905 F:      drivers/net/wireless/rt2x00/
7906
7907 RAMDISK RAM BLOCK DEVICE DRIVER
7908 M:      Nick Piggin <npiggin@kernel.dk>
7909 S:      Maintained
7910 F:      Documentation/blockdev/ramdisk.txt
7911 F:      drivers/block/brd.c
7912
7913 RANDOM NUMBER DRIVER
7914 M:      "Theodore Ts'o" <tytso@mit.edu>
7915 S:      Maintained
7916 F:      drivers/char/random.c
7917
7918 RAPIDIO SUBSYSTEM
7919 M:      Matt Porter <mporter@kernel.crashing.org>
7920 M:      Alexandre Bounine <alexandre.bounine@idt.com>
7921 S:      Maintained
7922 F:      drivers/rapidio/
7923
7924 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
7925 L:      linux-wireless@vger.kernel.org
7926 S:      Orphan
7927 F:      drivers/net/wireless/ray*
7928
7929 RCUTORTURE MODULE
7930 M:      Josh Triplett <josh@joshtriplett.org>
7931 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7932 L:      linux-kernel@vger.kernel.org
7933 S:      Supported
7934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7935 F:      Documentation/RCU/torture.txt
7936 F:      kernel/rcu/rcutorture.c
7937
7938 RCUTORTURE TEST FRAMEWORK
7939 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7940 M:      Josh Triplett <josh@joshtriplett.org>
7941 R:      Steven Rostedt <rostedt@goodmis.org>
7942 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7943 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
7944 L:      linux-kernel@vger.kernel.org
7945 S:      Supported
7946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7947 F:      tools/testing/selftests/rcutorture
7948
7949 RDC R-321X SoC
7950 M:      Florian Fainelli <florian@openwrt.org>
7951 S:      Maintained
7952
7953 RDC R6040 FAST ETHERNET DRIVER
7954 M:      Florian Fainelli <florian@openwrt.org>
7955 L:      netdev@vger.kernel.org
7956 S:      Maintained
7957 F:      drivers/net/ethernet/rdc/r6040.c
7958
7959 RDS - RELIABLE DATAGRAM SOCKETS
7960 M:      Chien Yen <chien.yen@oracle.com>
7961 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
7962 S:      Supported
7963 F:      net/rds/
7964
7965 READ-COPY UPDATE (RCU)
7966 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7967 M:      Josh Triplett <josh@joshtriplett.org>
7968 R:      Steven Rostedt <rostedt@goodmis.org>
7969 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7970 R:      Lai Jiangshan <laijs@cn.fujitsu.com>
7971 L:      linux-kernel@vger.kernel.org
7972 W:      http://www.rdrop.com/users/paulmck/RCU/
7973 S:      Supported
7974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7975 F:      Documentation/RCU/
7976 X:      Documentation/RCU/torture.txt
7977 F:      include/linux/rcu*
7978 X:      include/linux/srcu.h
7979 F:      kernel/rcu/
7980 X:      kernel/torture.c
7981
7982 REAL TIME CLOCK (RTC) SUBSYSTEM
7983 M:      Alessandro Zummo <a.zummo@towertech.it>
7984 L:      rtc-linux@googlegroups.com
7985 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
7986 S:      Maintained
7987 F:      Documentation/rtc.txt
7988 F:      drivers/rtc/
7989 F:      include/linux/rtc.h
7990 F:      include/uapi/linux/rtc.h
7991
7992 REALTEK AUDIO CODECS
7993 M:      Bard Liao <bardliao@realtek.com>
7994 M:      Oder Chiou <oder_chiou@realtek.com>
7995 S:      Maintained
7996 F:      sound/soc/codecs/rt*
7997 F:      include/sound/rt*.h
7998
7999 REISERFS FILE SYSTEM
8000 L:      reiserfs-devel@vger.kernel.org
8001 S:      Supported
8002 F:      fs/reiserfs/
8003
8004 REGISTER MAP ABSTRACTION
8005 M:      Mark Brown <broonie@kernel.org>
8006 L:      linux-kernel@vger.kernel.org
8007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8008 S:      Supported
8009 F:      drivers/base/regmap/
8010 F:      include/linux/regmap.h
8011
8012 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8013 M:      Ohad Ben-Cohen <ohad@wizery.com>
8014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8015 S:      Maintained
8016 F:      drivers/remoteproc/
8017 F:      Documentation/remoteproc.txt
8018 F:      include/linux/remoteproc.h
8019
8020 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8021 M:      Ohad Ben-Cohen <ohad@wizery.com>
8022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8023 S:      Maintained
8024 F:      drivers/rpmsg/
8025 F:      Documentation/rpmsg.txt
8026 F:      include/linux/rpmsg.h
8027
8028 RESET CONTROLLER FRAMEWORK
8029 M:      Philipp Zabel <p.zabel@pengutronix.de>
8030 S:      Maintained
8031 F:      drivers/reset/
8032 F:      Documentation/devicetree/bindings/reset/
8033 F:      include/linux/reset.h
8034 F:      include/linux/reset-controller.h
8035
8036 RFKILL
8037 M:      Johannes Berg <johannes@sipsolutions.net>
8038 L:      linux-wireless@vger.kernel.org
8039 W:      http://wireless.kernel.org/
8040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8042 S:      Maintained
8043 F:      Documentation/rfkill.txt
8044 F:      net/rfkill/
8045
8046 RICOH SMARTMEDIA/XD DRIVER
8047 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8048 S:      Maintained
8049 F:      drivers/mtd/nand/r852.c
8050 F:      drivers/mtd/nand/r852.h
8051
8052 RICOH R5C592 MEMORYSTICK DRIVER
8053 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8054 S:      Maintained
8055 F:      drivers/memstick/host/r592.*
8056
8057 ROCCAT DRIVERS
8058 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8059 W:      http://sourceforge.net/projects/roccat/
8060 S:      Maintained
8061 F:      drivers/hid/hid-roccat*
8062 F:      include/linux/hid-roccat*
8063 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8064
8065 ROCKER DRIVER
8066 M:      Jiri Pirko <jiri@resnulli.us>
8067 M:      Scott Feldman <sfeldma@gmail.com>
8068 L:      netdev@vger.kernel.org
8069 S:      Supported
8070 F:      drivers/net/ethernet/rocker/
8071
8072 ROCKETPORT DRIVER
8073 P:      Comtrol Corp.
8074 W:      http://www.comtrol.com
8075 S:      Maintained
8076 F:      Documentation/serial/rocket.txt
8077 F:      drivers/tty/rocket*
8078
8079 ROCKETPORT EXPRESS/INFINITY DRIVER
8080 M:      Kevin Cernekee <cernekee@gmail.com>
8081 L:      linux-serial@vger.kernel.org
8082 S:      Odd Fixes
8083 F:      drivers/tty/serial/rp2.*
8084
8085 ROSE NETWORK LAYER
8086 M:      Ralf Baechle <ralf@linux-mips.org>
8087 L:      linux-hams@vger.kernel.org
8088 W:      http://www.linux-ax25.org/
8089 S:      Maintained
8090 F:      include/net/rose.h
8091 F:      include/uapi/linux/rose.h
8092 F:      net/rose/
8093
8094 RTL2830 MEDIA DRIVER
8095 M:      Antti Palosaari <crope@iki.fi>
8096 L:      linux-media@vger.kernel.org
8097 W:      http://linuxtv.org/
8098 W:      http://palosaari.fi/linux/
8099 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8100 T:      git git://linuxtv.org/anttip/media_tree.git
8101 S:      Maintained
8102 F:      drivers/media/dvb-frontends/rtl2830*
8103
8104 RTL2832 MEDIA DRIVER
8105 M:      Antti Palosaari <crope@iki.fi>
8106 L:      linux-media@vger.kernel.org
8107 W:      http://linuxtv.org/
8108 W:      http://palosaari.fi/linux/
8109 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8110 T:      git git://linuxtv.org/anttip/media_tree.git
8111 S:      Maintained
8112 F:      drivers/media/dvb-frontends/rtl2832*
8113
8114 RTL2832_SDR MEDIA DRIVER
8115 M:      Antti Palosaari <crope@iki.fi>
8116 L:      linux-media@vger.kernel.org
8117 W:      http://linuxtv.org/
8118 W:      http://palosaari.fi/linux/
8119 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8120 T:      git git://linuxtv.org/anttip/media_tree.git
8121 S:      Maintained
8122 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8123
8124 RTL8180 WIRELESS DRIVER
8125 L:      linux-wireless@vger.kernel.org
8126 W:      http://wireless.kernel.org/
8127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8128 S:      Orphan
8129 F:      drivers/net/wireless/rtl818x/rtl8180/
8130
8131 RTL8187 WIRELESS DRIVER
8132 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8133 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8134 M:      Larry Finger <Larry.Finger@lwfinger.net>
8135 L:      linux-wireless@vger.kernel.org
8136 W:      http://wireless.kernel.org/
8137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8138 S:      Maintained
8139 F:      drivers/net/wireless/rtl818x/rtl8187/
8140
8141 RTL8192CE WIRELESS DRIVER
8142 M:      Larry Finger <Larry.Finger@lwfinger.net>
8143 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8144 L:      linux-wireless@vger.kernel.org
8145 W:      http://wireless.kernel.org/
8146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8147 S:      Maintained
8148 F:      drivers/net/wireless/rtlwifi/
8149 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8150
8151 S3 SAVAGE FRAMEBUFFER DRIVER
8152 M:      Antonino Daplas <adaplas@gmail.com>
8153 L:      linux-fbdev@vger.kernel.org
8154 S:      Maintained
8155 F:      drivers/video/fbdev/savage/
8156
8157 S390
8158 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8159 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8160 M:      linux390@de.ibm.com
8161 L:      linux-s390@vger.kernel.org
8162 W:      http://www.ibm.com/developerworks/linux/linux390/
8163 S:      Supported
8164 F:      arch/s390/
8165 F:      drivers/s390/
8166 F:      Documentation/s390/
8167 F:      Documentation/DocBook/s390*
8168
8169 S390 COMMON I/O LAYER
8170 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8171 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8172 L:      linux-s390@vger.kernel.org
8173 W:      http://www.ibm.com/developerworks/linux/linux390/
8174 S:      Supported
8175 F:      drivers/s390/cio/
8176
8177 S390 DASD DRIVER
8178 M:      Stefan Weinhuber <wein@de.ibm.com>
8179 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8180 L:      linux-s390@vger.kernel.org
8181 W:      http://www.ibm.com/developerworks/linux/linux390/
8182 S:      Supported
8183 F:      drivers/s390/block/dasd*
8184 F:      block/partitions/ibm.c
8185
8186 S390 NETWORK DRIVERS
8187 M:      Ursula Braun <ursula.braun@de.ibm.com>
8188 M:      Frank Blaschka <blaschka@linux.vnet.ibm.com>
8189 M:      linux390@de.ibm.com
8190 L:      linux-s390@vger.kernel.org
8191 W:      http://www.ibm.com/developerworks/linux/linux390/
8192 S:      Supported
8193 F:      drivers/s390/net/
8194
8195 S390 PCI SUBSYSTEM
8196 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8197 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8198 L:      linux-s390@vger.kernel.org
8199 W:      http://www.ibm.com/developerworks/linux/linux390/
8200 S:      Supported
8201 F:      arch/s390/pci/
8202 F:      drivers/pci/hotplug/s390_pci_hpc.c
8203
8204 S390 ZCRYPT DRIVER
8205 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8206 M:      linux390@de.ibm.com
8207 L:      linux-s390@vger.kernel.org
8208 W:      http://www.ibm.com/developerworks/linux/linux390/
8209 S:      Supported
8210 F:      drivers/s390/crypto/
8211
8212 S390 ZFCP DRIVER
8213 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8214 M:      linux390@de.ibm.com
8215 L:      linux-s390@vger.kernel.org
8216 W:      http://www.ibm.com/developerworks/linux/linux390/
8217 S:      Supported
8218 F:      drivers/s390/scsi/zfcp_*
8219
8220 S390 IUCV NETWORK LAYER
8221 M:      Ursula Braun <ursula.braun@de.ibm.com>
8222 M:      linux390@de.ibm.com
8223 L:      linux-s390@vger.kernel.org
8224 W:      http://www.ibm.com/developerworks/linux/linux390/
8225 S:      Supported
8226 F:      drivers/s390/net/*iucv*
8227 F:      include/net/iucv/
8228 F:      net/iucv/
8229
8230 S3C24XX SD/MMC Driver
8231 M:      Ben Dooks <ben-linux@fluff.org>
8232 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8233 S:      Supported
8234 F:      drivers/mmc/host/s3cmci.*
8235
8236 SAA6588 RDS RECEIVER DRIVER
8237 M:      Hans Verkuil <hverkuil@xs4all.nl>
8238 L:      linux-media@vger.kernel.org
8239 T:      git git://linuxtv.org/media_tree.git
8240 W:      http://linuxtv.org
8241 S:      Odd Fixes
8242 F:      drivers/media/i2c/saa6588*
8243
8244 SAA7134 VIDEO4LINUX DRIVER
8245 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8246 L:      linux-media@vger.kernel.org
8247 W:      http://linuxtv.org
8248 T:      git git://linuxtv.org/media_tree.git
8249 S:      Odd fixes
8250 F:      Documentation/video4linux/*.saa7134
8251 F:      drivers/media/pci/saa7134/
8252
8253 SAA7146 VIDEO4LINUX-2 DRIVER
8254 M:      Hans Verkuil <hverkuil@xs4all.nl>
8255 L:      linux-media@vger.kernel.org
8256 T:      git git://linuxtv.org/media_tree.git
8257 S:      Maintained
8258 F:      drivers/media/common/saa7146/
8259 F:      drivers/media/pci/saa7146/
8260 F:      include/media/saa7146*
8261
8262 SAMSUNG LAPTOP DRIVER
8263 M:      Corentin Chary <corentin.chary@gmail.com>
8264 L:      platform-driver-x86@vger.kernel.org
8265 S:      Maintained
8266 F:      drivers/platform/x86/samsung-laptop.c
8267
8268 SAMSUNG AUDIO (ASoC) DRIVERS
8269 M:      Sangbeom Kim <sbkim73@samsung.com>
8270 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8271 S:      Supported
8272 F:      sound/soc/samsung/
8273
8274 SAMSUNG FRAMEBUFFER DRIVER
8275 M:      Jingoo Han <jg1.han@samsung.com>
8276 L:      linux-fbdev@vger.kernel.org
8277 S:      Maintained
8278 F:      drivers/video/fbdev/s3c-fb.c
8279
8280 SAMSUNG MULTIFUNCTION DEVICE DRIVERS
8281 M:      Sangbeom Kim <sbkim73@samsung.com>
8282 L:      linux-kernel@vger.kernel.org
8283 S:      Supported
8284 F:      drivers/mfd/sec*.c
8285 F:      drivers/regulator/s2m*.c
8286 F:      drivers/regulator/s5m*.c
8287 F:      include/linux/mfd/samsung/
8288
8289 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
8290 M:      Kyungmin Park <kyungmin.park@samsung.com>
8291 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8292 L:      linux-media@vger.kernel.org
8293 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
8294 S:      Supported
8295 F:      drivers/media/platform/exynos4-is/
8296
8297 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
8298 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
8299 L:      linux-media@vger.kernel.org
8300 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8301 S:      Maintained
8302 F:      drivers/media/platform/s3c-camif/
8303 F:      include/media/s3c_camif.h
8304
8305 SAMSUNG S5C73M3 CAMERA DRIVER
8306 M:      Kyungmin Park <kyungmin.park@samsung.com>
8307 M:      Andrzej Hajda <a.hajda@samsung.com>
8308 L:      linux-media@vger.kernel.org
8309 S:      Supported
8310 F:      drivers/media/i2c/s5c73m3/*
8311
8312 SAMSUNG S5K5BAF CAMERA DRIVER
8313 M:      Kyungmin Park <kyungmin.park@samsung.com>
8314 M:      Andrzej Hajda <a.hajda@samsung.com>
8315 L:      linux-media@vger.kernel.org
8316 S:      Supported
8317 F:      drivers/media/i2c/s5k5baf.c
8318
8319 SAMSUNG SOC CLOCK DRIVERS
8320 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8321 M:      Tomasz Figa <tomasz.figa@gmail.com>
8322 S:      Supported
8323 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8324 F:      drivers/clk/samsung/
8325
8326 SAMSUNG SXGBE DRIVERS
8327 M:      Byungho An <bh74.an@samsung.com>
8328 M:      Girish K S <ks.giri@samsung.com>
8329 M:      Vipul Pandya <vipul.pandya@samsung.com>
8330 S:      Supported
8331 L:      netdev@vger.kernel.org
8332 F:      drivers/net/ethernet/samsung/sxgbe/
8333
8334 SAMSUNG USB2 PHY DRIVER
8335 M:      Kamil Debski <k.debski@samsung.com>
8336 L:      linux-kernel@vger.kernel.org
8337 S:      Supported
8338 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
8339 F:      Documentation/phy/samsung-usb2.txt
8340 F:      drivers/phy/phy-exynos4210-usb2.c
8341 F:      drivers/phy/phy-exynos4x12-usb2.c
8342 F:      drivers/phy/phy-exynos5250-usb2.c
8343 F:      drivers/phy/phy-s5pv210-usb2.c
8344 F:      drivers/phy/phy-samsung-usb2.c
8345 F:      drivers/phy/phy-samsung-usb2.h
8346
8347 SERIAL DRIVERS
8348 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8349 L:      linux-serial@vger.kernel.org
8350 S:      Maintained
8351 F:      drivers/tty/serial/
8352
8353 SYNOPSYS DESIGNWARE DMAC DRIVER
8354 M:      Viresh Kumar <viresh.linux@gmail.com>
8355 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8356 S:      Maintained
8357 F:      include/linux/platform_data/dma-dw.h
8358 F:      drivers/dma/dw/
8359
8360 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
8361 M:      Seungwon Jeon <tgih.jun@samsung.com>
8362 M:      Jaehoon Chung <jh80.chung@samsung.com>
8363 L:      linux-mmc@vger.kernel.org
8364 S:      Maintained
8365 F:      include/linux/mmc/dw_mmc.h
8366 F:      drivers/mmc/host/dw_mmc*
8367
8368 THUNDERBOLT DRIVER
8369 M:      Andreas Noever <andreas.noever@gmail.com>
8370 S:      Maintained
8371 F:      drivers/thunderbolt/
8372
8373 TIMEKEEPING, CLOCKSOURCE CORE, NTP
8374 M:      John Stultz <john.stultz@linaro.org>
8375 M:      Thomas Gleixner <tglx@linutronix.de>
8376 L:      linux-kernel@vger.kernel.org
8377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8378 S:      Supported
8379 F:      include/linux/clocksource.h
8380 F:      include/linux/time.h
8381 F:      include/linux/timex.h
8382 F:      include/uapi/linux/time.h
8383 F:      include/uapi/linux/timex.h
8384 F:      kernel/time/clocksource.c
8385 F:      kernel/time/time*.c
8386 F:      kernel/time/ntp.c
8387
8388 TLG2300 VIDEO4LINUX-2 DRIVER
8389 M:      Huang Shijie <shijie8@gmail.com>
8390 M:      Hans Verkuil <hverkuil@xs4all.nl>
8391 S:      Odd Fixes
8392 F:      drivers/media/usb/tlg2300/
8393
8394 SC1200 WDT DRIVER
8395 M:      Zwane Mwaikambo <zwanem@gmail.com>
8396 S:      Maintained
8397 F:      drivers/watchdog/sc1200wdt.c
8398
8399 SCHEDULER
8400 M:      Ingo Molnar <mingo@redhat.com>
8401 M:      Peter Zijlstra <peterz@infradead.org>
8402 L:      linux-kernel@vger.kernel.org
8403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
8404 S:      Maintained
8405 F:      kernel/sched/
8406 F:      include/linux/sched.h
8407 F:      include/uapi/linux/sched.h
8408 F:      include/linux/wait.h
8409
8410 SCORE ARCHITECTURE
8411 M:      Chen Liqin <liqin.linux@gmail.com>
8412 M:      Lennox Wu <lennox.wu@gmail.com>
8413 W:      http://www.sunplus.com
8414 S:      Supported
8415 F:      arch/score/
8416
8417 SCSI CDROM DRIVER
8418 M:      Jens Axboe <axboe@kernel.dk>
8419 L:      linux-scsi@vger.kernel.org
8420 W:      http://www.kernel.dk
8421 S:      Maintained
8422 F:      drivers/scsi/sr*
8423
8424 SCSI RDMA PROTOCOL (SRP) INITIATOR
8425 M:      Bart Van Assche <bvanassche@acm.org>
8426 L:      linux-rdma@vger.kernel.org
8427 S:      Supported
8428 W:      http://www.openfabrics.org
8429 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
8431 F:      drivers/infiniband/ulp/srp/
8432 F:      include/scsi/srp.h
8433
8434 SCSI SG DRIVER
8435 M:      Doug Gilbert <dgilbert@interlog.com>
8436 L:      linux-scsi@vger.kernel.org
8437 W:      http://sg.danny.cz/sg
8438 S:      Maintained
8439 F:      Documentation/scsi/scsi-generic.txt
8440 F:      drivers/scsi/sg.c
8441 F:      include/scsi/sg.h
8442
8443 SCSI SUBSYSTEM
8444 M:      "James E.J. Bottomley" <JBottomley@parallels.com>
8445 L:      linux-scsi@vger.kernel.org
8446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
8447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
8448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
8449 S:      Maintained
8450 F:      drivers/scsi/
8451 F:      include/scsi/
8452
8453 SCSI TAPE DRIVER
8454 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
8455 L:      linux-scsi@vger.kernel.org
8456 S:      Maintained
8457 F:      Documentation/scsi/st.txt
8458 F:      drivers/scsi/st.*
8459 F:      drivers/scsi/st_*.h
8460
8461 SCTP PROTOCOL
8462 M:      Vlad Yasevich <vyasevich@gmail.com>
8463 M:      Neil Horman <nhorman@tuxdriver.com>
8464 L:      linux-sctp@vger.kernel.org
8465 W:      http://lksctp.sourceforge.net
8466 S:      Maintained
8467 F:      Documentation/networking/sctp.txt
8468 F:      include/linux/sctp.h
8469 F:      include/uapi/linux/sctp.h
8470 F:      include/net/sctp/
8471 F:      net/sctp/
8472
8473 SCx200 CPU SUPPORT
8474 M:      Jim Cromie <jim.cromie@gmail.com>
8475 S:      Odd Fixes
8476 F:      Documentation/i2c/busses/scx200_acb
8477 F:      arch/x86/platform/scx200/
8478 F:      drivers/watchdog/scx200_wdt.c
8479 F:      drivers/i2c/busses/scx200*
8480 F:      drivers/mtd/maps/scx200_docflash.c
8481 F:      include/linux/scx200.h
8482
8483 SCx200 GPIO DRIVER
8484 M:      Jim Cromie <jim.cromie@gmail.com>
8485 S:      Maintained
8486 F:      drivers/char/scx200_gpio.c
8487 F:      include/linux/scx200_gpio.h
8488
8489 SCx200 HRT CLOCKSOURCE DRIVER
8490 M:      Jim Cromie <jim.cromie@gmail.com>
8491 S:      Maintained
8492 F:      drivers/clocksource/scx200_hrt.c
8493
8494 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
8495 M:      Sascha Sommer <saschasommer@freenet.de>
8496 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
8497 S:      Maintained
8498 F:      drivers/mmc/host/sdricoh_cs.c
8499
8500 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
8501 M:      Chris Ball <chris@printf.net>
8502 L:      linux-mmc@vger.kernel.org
8503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
8504 S:      Maintained
8505 F:      drivers/mmc/host/sdhci.*
8506 F:      drivers/mmc/host/sdhci-pltfm.[ch]
8507
8508 SECURE COMPUTING
8509 M:      Kees Cook <keescook@chromium.org>
8510 R:      Andy Lutomirski <luto@amacapital.net>
8511 R:      Will Drewry <wad@chromium.org>
8512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
8513 S:      Supported
8514 F:      kernel/seccomp.c
8515 F:      include/uapi/linux/seccomp.h
8516 F:      include/linux/seccomp.h
8517 K:      \bsecure_computing
8518 K:      \bTIF_SECCOMP\b
8519
8520 SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
8521 M:      Anton Vorontsov <anton@enomsg.org>
8522 L:      linuxppc-dev@lists.ozlabs.org
8523 L:      linux-mmc@vger.kernel.org
8524 S:      Maintained
8525 F:      drivers/mmc/host/sdhci-pltfm.[ch]
8526
8527 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
8528 M:      Ben Dooks <ben-linux@fluff.org>
8529 L:      linux-mmc@vger.kernel.org
8530 S:      Maintained
8531 F:      drivers/mmc/host/sdhci-s3c.c
8532
8533 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
8534 M:      Viresh Kumar <viresh.linux@gmail.com>
8535 L:      spear-devel@list.st.com
8536 L:      linux-mmc@vger.kernel.org
8537 S:      Maintained
8538 F:      drivers/mmc/host/sdhci-spear.c
8539
8540 SECURITY SUBSYSTEM
8541 M:      James Morris <james.l.morris@oracle.com>
8542 M:      Serge E. Hallyn <serge@hallyn.com>
8543 L:      linux-security-module@vger.kernel.org (suggested Cc:)
8544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
8545 W:      http://kernsec.org/
8546 S:      Supported
8547 F:      security/
8548
8549 SECURITY CONTACT
8550 M:      Security Officers <security@kernel.org>
8551 S:      Supported
8552
8553 SELINUX SECURITY MODULE
8554 M:      Paul Moore <paul@paul-moore.com>
8555 M:      Stephen Smalley <sds@tycho.nsa.gov>
8556 M:      Eric Paris <eparis@parisplace.org>
8557 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
8558 W:      http://selinuxproject.org
8559 T:      git git://git.infradead.org/users/pcmoore/selinux
8560 S:      Supported
8561 F:      include/linux/selinux*
8562 F:      security/selinux/
8563 F:      scripts/selinux/
8564
8565 APPARMOR SECURITY MODULE
8566 M:      John Johansen <john.johansen@canonical.com>
8567 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
8568 W:      apparmor.wiki.kernel.org
8569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
8570 S:      Supported
8571 F:      security/apparmor/
8572
8573 SENSABLE PHANTOM
8574 M:      Jiri Slaby <jirislaby@gmail.com>
8575 S:      Maintained
8576 F:      drivers/misc/phantom.c
8577 F:      include/uapi/linux/phantom.h
8578
8579 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
8580 M:      Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
8581 L:      linux-scsi@vger.kernel.org
8582 W:      http://www.emulex.com
8583 S:      Supported
8584 F:      drivers/scsi/be2iscsi/
8585
8586 SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
8587 M:      Sathya Perla <sathya.perla@emulex.com>
8588 M:      Subbu Seetharaman <subbu.seetharaman@emulex.com>
8589 M:      Ajit Khaparde <ajit.khaparde@emulex.com>
8590 L:      netdev@vger.kernel.org
8591 W:      http://www.emulex.com
8592 S:      Supported
8593 F:      drivers/net/ethernet/emulex/benet/
8594
8595 SFC NETWORK DRIVER
8596 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
8597 M:      Shradha Shah <sshah@solarflare.com>
8598 L:      netdev@vger.kernel.org
8599 S:      Supported
8600 F:      drivers/net/ethernet/sfc/
8601
8602 SGI GRU DRIVER
8603 M:      Dimitri Sivanich <sivanich@sgi.com>
8604 S:      Maintained
8605 F:      drivers/misc/sgi-gru/
8606
8607 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
8608 M:      Pat Gefre <pfg@sgi.com>
8609 L:      linux-ia64@vger.kernel.org
8610 S:      Supported
8611 F:      Documentation/ia64/serial.txt
8612 F:      drivers/tty/serial/ioc?_serial.c
8613 F:      include/linux/ioc?.h
8614
8615 SGI XP/XPC/XPNET DRIVER
8616 M:      Cliff Whickman <cpw@sgi.com>
8617 M:      Robin Holt <robinmholt@gmail.com>
8618 S:      Maintained
8619 F:      drivers/misc/sgi-xp/
8620
8621 SI2157 MEDIA DRIVER
8622 M:      Antti Palosaari <crope@iki.fi>
8623 L:      linux-media@vger.kernel.org
8624 W:      http://linuxtv.org/
8625 W:      http://palosaari.fi/linux/
8626 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8627 T:      git git://linuxtv.org/anttip/media_tree.git
8628 S:      Maintained
8629 F:      drivers/media/tuners/si2157*
8630
8631 SI2168 MEDIA DRIVER
8632 M:      Antti Palosaari <crope@iki.fi>
8633 L:      linux-media@vger.kernel.org
8634 W:      http://linuxtv.org/
8635 W:      http://palosaari.fi/linux/
8636 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8637 T:      git git://linuxtv.org/anttip/media_tree.git
8638 S:      Maintained
8639 F:      drivers/media/dvb-frontends/si2168*
8640
8641 SI470X FM RADIO RECEIVER I2C DRIVER
8642 M:      Hans Verkuil <hverkuil@xs4all.nl>
8643 L:      linux-media@vger.kernel.org
8644 T:      git git://linuxtv.org/media_tree.git
8645 W:      http://linuxtv.org
8646 S:      Odd Fixes
8647 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
8648
8649 SI470X FM RADIO RECEIVER USB DRIVER
8650 M:      Hans Verkuil <hverkuil@xs4all.nl>
8651 L:      linux-media@vger.kernel.org
8652 T:      git git://linuxtv.org/media_tree.git
8653 W:      http://linuxtv.org
8654 S:      Maintained
8655 F:      drivers/media/radio/si470x/radio-si470x-common.c
8656 F:      drivers/media/radio/si470x/radio-si470x.h
8657 F:      drivers/media/radio/si470x/radio-si470x-usb.c
8658
8659 SI4713 FM RADIO TRANSMITTER I2C DRIVER
8660 M:      Eduardo Valentin <edubezval@gmail.com>
8661 L:      linux-media@vger.kernel.org
8662 T:      git git://linuxtv.org/media_tree.git
8663 W:      http://linuxtv.org
8664 S:      Odd Fixes
8665 F:      drivers/media/radio/si4713/si4713.?
8666
8667 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
8668 M:      Eduardo Valentin <edubezval@gmail.com>
8669 L:      linux-media@vger.kernel.org
8670 T:      git git://linuxtv.org/media_tree.git
8671 W:      http://linuxtv.org
8672 S:      Odd Fixes
8673 F:      drivers/media/radio/si4713/radio-platform-si4713.c
8674
8675 SI4713 FM RADIO TRANSMITTER USB DRIVER
8676 M:      Hans Verkuil <hverkuil@xs4all.nl>
8677 L:      linux-media@vger.kernel.org
8678 T:      git git://linuxtv.org/media_tree.git
8679 W:      http://linuxtv.org
8680 S:      Maintained
8681 F:      drivers/media/radio/si4713/radio-usb-si4713.c
8682
8683 SIANO DVB DRIVER
8684 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8685 L:      linux-media@vger.kernel.org
8686 W:      http://linuxtv.org
8687 T:      git git://linuxtv.org/media_tree.git
8688 S:      Odd fixes
8689 F:      drivers/media/common/siano/
8690 F:      drivers/media/usb/siano/
8691 F:      drivers/media/usb/siano/
8692 F:      drivers/media/mmc/siano/
8693
8694 SIMPLEFB FB DRIVER
8695 M:      Hans de Goede <hdegoede@redhat.com>
8696 L:      linux-fbdev@vger.kernel.org
8697 S:      Maintained
8698 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
8699 F:      drivers/video/fbdev/simplefb.c
8700 F:      include/linux/platform_data/simplefb.h
8701
8702 SH_VEU V4L2 MEM2MEM DRIVER
8703 L:      linux-media@vger.kernel.org
8704 S:      Orphan
8705 F:      drivers/media/platform/sh_veu.c
8706
8707 SH_VOU V4L2 OUTPUT DRIVER
8708 L:      linux-media@vger.kernel.org
8709 S:      Orphan
8710 F:      drivers/media/platform/sh_vou.c
8711 F:      include/media/sh_vou.h
8712
8713 SIMPLE FIRMWARE INTERFACE (SFI)
8714 M:      Len Brown <lenb@kernel.org>
8715 L:      sfi-devel@simplefirmware.org
8716 W:      http://simplefirmware.org/
8717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
8718 S:      Supported
8719 F:      arch/x86/platform/sfi/
8720 F:      drivers/sfi/
8721 F:      include/linux/sfi*.h
8722
8723 SIMTEC EB110ATX (Chalice CATS)
8724 P:      Ben Dooks
8725 P:      Vincent Sanders <vince@simtec.co.uk>
8726 M:      Simtec Linux Team <linux@simtec.co.uk>
8727 W:      http://www.simtec.co.uk/products/EB110ATX/
8728 S:      Supported
8729
8730 SIMTEC EB2410ITX (BAST)
8731 P:      Ben Dooks
8732 P:      Vincent Sanders <vince@simtec.co.uk>
8733 M:      Simtec Linux Team <linux@simtec.co.uk>
8734 W:      http://www.simtec.co.uk/products/EB2410ITX/
8735 S:      Supported
8736 F:      arch/arm/mach-s3c24xx/mach-bast.c
8737 F:      arch/arm/mach-s3c24xx/bast-ide.c
8738 F:      arch/arm/mach-s3c24xx/bast-irq.c
8739
8740 TI DAVINCI MACHINE SUPPORT
8741 M:      Sekhar Nori <nsekhar@ti.com>
8742 M:      Kevin Hilman <khilman@deeprootsystems.com>
8743 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
8744 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
8745 S:      Supported
8746 F:      arch/arm/mach-davinci/
8747 F:      drivers/i2c/busses/i2c-davinci.c
8748
8749 TI DAVINCI SERIES MEDIA DRIVER
8750 M:      Lad, Prabhakar <prabhakar.csengg@gmail.com>
8751 L:      linux-media@vger.kernel.org
8752 W:      http://linuxtv.org/
8753 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8754 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
8755 S:      Maintained
8756 F:      drivers/media/platform/davinci/
8757 F:      include/media/davinci/
8758
8759 SIS 190 ETHERNET DRIVER
8760 M:      Francois Romieu <romieu@fr.zoreil.com>
8761 L:      netdev@vger.kernel.org
8762 S:      Maintained
8763 F:      drivers/net/ethernet/sis/sis190.c
8764
8765 SIS 900/7016 FAST ETHERNET DRIVER
8766 M:      Daniele Venzano <venza@brownhat.org>
8767 W:      http://www.brownhat.org/sis900.html
8768 L:      netdev@vger.kernel.org
8769 S:      Maintained
8770 F:      drivers/net/ethernet/sis/sis900.*
8771
8772 SIS FRAMEBUFFER DRIVER
8773 M:      Thomas Winischhofer <thomas@winischhofer.net>
8774 W:      http://www.winischhofer.net/linuxsisvga.shtml
8775 S:      Maintained
8776 F:      Documentation/fb/sisfb.txt
8777 F:      drivers/video/fbdev/sis/
8778 F:      include/video/sisfb.h
8779
8780 SIS USB2VGA DRIVER
8781 M:      Thomas Winischhofer <thomas@winischhofer.net>
8782 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
8783 S:      Maintained
8784 F:      drivers/usb/misc/sisusbvga/
8785
8786 SLAB ALLOCATOR
8787 M:      Christoph Lameter <cl@linux.com>
8788 M:      Pekka Enberg <penberg@kernel.org>
8789 M:      David Rientjes <rientjes@google.com>
8790 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
8791 M:      Andrew Morton <akpm@linux-foundation.org>
8792 L:      linux-mm@kvack.org
8793 S:      Maintained
8794 F:      include/linux/sl?b*.h
8795 F:      mm/sl?b*
8796
8797 SLEEPABLE READ-COPY UPDATE (SRCU)
8798 M:      Lai Jiangshan <laijs@cn.fujitsu.com>
8799 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8800 M:      Josh Triplett <josh@joshtriplett.org>
8801 R:      Steven Rostedt <rostedt@goodmis.org>
8802 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8803 L:      linux-kernel@vger.kernel.org
8804 W:      http://www.rdrop.com/users/paulmck/RCU/
8805 S:      Supported
8806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8807 F:      include/linux/srcu.h
8808 F:      kernel/rcu/srcu.c
8809
8810 SMACK SECURITY MODULE
8811 M:      Casey Schaufler <casey@schaufler-ca.com>
8812 L:      linux-security-module@vger.kernel.org
8813 W:      http://schaufler-ca.com
8814 T:      git git://git.gitorious.org/smack-next/kernel.git
8815 S:      Maintained
8816 F:      Documentation/security/Smack.txt
8817 F:      security/smack/
8818
8819 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
8820 M:      Kevin Hilman <khilman@kernel.org>
8821 M:      Nishanth Menon <nm@ti.com>
8822 S:      Maintained
8823 F:      drivers/power/avs/
8824 F:      include/linux/power/smartreflex.h
8825 L:      linux-pm@vger.kernel.org
8826
8827 SMC91x ETHERNET DRIVER
8828 M:      Nicolas Pitre <nico@fluxnic.net>
8829 S:      Odd Fixes
8830 F:      drivers/net/ethernet/smsc/smc91x.*
8831
8832 SMIA AND SMIA++ IMAGE SENSOR DRIVER
8833 M:      Sakari Ailus <sakari.ailus@iki.fi>
8834 L:      linux-media@vger.kernel.org
8835 S:      Maintained
8836 F:      drivers/media/i2c/smiapp/
8837 F:      include/media/smiapp.h
8838 F:      drivers/media/i2c/smiapp-pll.c
8839 F:      drivers/media/i2c/smiapp-pll.h
8840
8841 SMM665 HARDWARE MONITOR DRIVER
8842 M:      Guenter Roeck <linux@roeck-us.net>
8843 L:      lm-sensors@lm-sensors.org
8844 S:      Maintained
8845 F:      Documentation/hwmon/smm665
8846 F:      drivers/hwmon/smm665.c
8847
8848 SMSC EMC2103 HARDWARE MONITOR DRIVER
8849 M:      Steve Glendinning <steve.glendinning@shawell.net>
8850 L:      lm-sensors@lm-sensors.org
8851 S:      Maintained
8852 F:      Documentation/hwmon/emc2103
8853 F:      drivers/hwmon/emc2103.c
8854
8855 SMSC SCH5627 HARDWARE MONITOR DRIVER
8856 M:      Hans de Goede <hdegoede@redhat.com>
8857 L:      lm-sensors@lm-sensors.org
8858 S:      Supported
8859 F:      Documentation/hwmon/sch5627
8860 F:      drivers/hwmon/sch5627.c
8861
8862 SMSC47B397 HARDWARE MONITOR DRIVER
8863 M:      Jean Delvare <jdelvare@suse.de>
8864 L:      lm-sensors@lm-sensors.org
8865 S:      Maintained
8866 F:      Documentation/hwmon/smsc47b397
8867 F:      drivers/hwmon/smsc47b397.c
8868
8869 SMSC911x ETHERNET DRIVER
8870 M:      Steve Glendinning <steve.glendinning@shawell.net>
8871 L:      netdev@vger.kernel.org
8872 S:      Maintained
8873 F:      include/linux/smsc911x.h
8874 F:      drivers/net/ethernet/smsc/smsc911x.*
8875
8876 SMSC9420 PCI ETHERNET DRIVER
8877 M:      Steve Glendinning <steve.glendinning@shawell.net>
8878 L:      netdev@vger.kernel.org
8879 S:      Maintained
8880 F:      drivers/net/ethernet/smsc/smsc9420.*
8881
8882 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
8883 M:      Steve Glendinning <steve.glendinning@shawell.net>
8884 L:      linux-fbdev@vger.kernel.org
8885 S:      Maintained
8886 F:      drivers/video/fbdev/smscufx.c
8887
8888 SOC-CAMERA V4L2 SUBSYSTEM
8889 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
8890 L:      linux-media@vger.kernel.org
8891 T:      git git://linuxtv.org/media_tree.git
8892 S:      Maintained
8893 F:      include/media/soc*
8894 F:      drivers/media/i2c/soc_camera/
8895 F:      drivers/media/platform/soc_camera/
8896
8897 SOEKRIS NET48XX LED SUPPORT
8898 M:      Chris Boot <bootc@bootc.net>
8899 S:      Maintained
8900 F:      drivers/leds/leds-net48xx.c
8901
8902 SOFTLOGIC 6x10 MPEG CODEC
8903 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
8904 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
8905 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
8906 L:      linux-media@vger.kernel.org
8907 S:      Supported
8908 F:      drivers/media/pci/solo6x10/
8909
8910 SOFTWARE RAID (Multiple Disks) SUPPORT
8911 M:      Neil Brown <neilb@suse.de>
8912 L:      linux-raid@vger.kernel.org
8913 S:      Supported
8914 F:      drivers/md/
8915 F:      include/linux/raid/
8916 F:      include/uapi/linux/raid/
8917
8918 SONIC NETWORK DRIVER
8919 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
8920 L:      netdev@vger.kernel.org
8921 S:      Maintained
8922 F:      drivers/net/ethernet/natsemi/sonic.*
8923
8924 SONICS SILICON BACKPLANE DRIVER (SSB)
8925 M:      Michael Buesch <m@bues.ch>
8926 L:      netdev@vger.kernel.org
8927 S:      Maintained
8928 F:      drivers/ssb/
8929 F:      include/linux/ssb/
8930
8931 SONY VAIO CONTROL DEVICE DRIVER
8932 M:      Mattia Dongili <malattia@linux.it>
8933 L:      platform-driver-x86@vger.kernel.org
8934 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
8935 S:      Maintained
8936 F:      Documentation/laptops/sony-laptop.txt
8937 F:      drivers/char/sonypi.c
8938 F:      drivers/platform/x86/sony-laptop.c
8939 F:      include/linux/sony-laptop.h
8940
8941 SONY MEMORYSTICK CARD SUPPORT
8942 M:      Alex Dubov <oakad@yahoo.com>
8943 W:      http://tifmxx.berlios.de/
8944 S:      Maintained
8945 F:      drivers/memstick/host/tifm_ms.c
8946
8947 SONY MEMORYSTICK STANDARD SUPPORT
8948 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8949 S:      Maintained
8950 F:      drivers/memstick/core/ms_block.*
8951
8952 SOUND
8953 M:      Jaroslav Kysela <perex@perex.cz>
8954 M:      Takashi Iwai <tiwai@suse.de>
8955 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8956 W:      http://www.alsa-project.org/
8957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8958 T:      git git://git.alsa-project.org/alsa-kernel.git
8959 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
8960 S:      Maintained
8961 F:      Documentation/sound/
8962 F:      include/sound/
8963 F:      include/uapi/sound/
8964 F:      sound/
8965
8966 SOUND - COMPRESSED AUDIO
8967 M:      Vinod Koul <vinod.koul@intel.com>
8968 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8970 S:      Supported
8971 F:      Documentation/sound/alsa/compress_offload.txt
8972 F:      include/sound/compress_driver.h
8973 F:      include/uapi/sound/compress_*
8974 F:      sound/core/compress_offload.c
8975 F:      sound/soc/soc-compress.c
8976
8977 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
8978 M:      Liam Girdwood <lgirdwood@gmail.com>
8979 M:      Mark Brown <broonie@kernel.org>
8980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
8981 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8982 W:      http://alsa-project.org/main/index.php/ASoC
8983 S:      Supported
8984 F:      Documentation/sound/alsa/soc/
8985 F:      sound/soc/
8986 F:      include/sound/soc*
8987
8988 SOUND - DMAENGINE HELPERS
8989 M:      Lars-Peter Clausen <lars@metafoo.de>
8990 S:      Supported
8991 F:      include/sound/dmaengine_pcm.h
8992 F:      sound/core/pcm_dmaengine.c
8993 F:      sound/soc/soc-generic-dmaengine-pcm.c
8994
8995 SP2 MEDIA DRIVER
8996 M:      Olli Salonen <olli.salonen@iki.fi>
8997 L:      linux-media@vger.kernel.org
8998 W:      http://linuxtv.org/
8999 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9000 S:      Maintained
9001 F:      drivers/media/dvb-frontends/sp2*
9002
9003 SPARC + UltraSPARC (sparc/sparc64)
9004 M:      "David S. Miller" <davem@davemloft.net>
9005 L:      sparclinux@vger.kernel.org
9006 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9009 S:      Maintained
9010 F:      arch/sparc/
9011 F:      drivers/sbus/
9012
9013 SPARC SERIAL DRIVERS
9014 M:      "David S. Miller" <davem@davemloft.net>
9015 L:      sparclinux@vger.kernel.org
9016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9018 S:      Maintained
9019 F:      include/linux/sunserialcore.h
9020 F:      drivers/tty/serial/suncore.c
9021 F:      drivers/tty/serial/sunhv.c
9022 F:      drivers/tty/serial/sunsab.c
9023 F:      drivers/tty/serial/sunsab.h
9024 F:      drivers/tty/serial/sunsu.c
9025 F:      drivers/tty/serial/sunzilog.c
9026 F:      drivers/tty/serial/sunzilog.h
9027
9028 SPARSE CHECKER
9029 M:      "Christopher Li" <sparse@chrisli.org>
9030 L:      linux-sparse@vger.kernel.org
9031 W:      https://sparse.wiki.kernel.org/
9032 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9033 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9034 S:      Maintained
9035 F:      include/linux/compiler.h
9036
9037 SPEAR PLATFORM SUPPORT
9038 M:      Viresh Kumar <viresh.linux@gmail.com>
9039 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9040 L:      spear-devel@list.st.com
9041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9042 W:      http://www.st.com/spear
9043 S:      Maintained
9044 F:      arch/arm/mach-spear/
9045
9046 SPEAR CLOCK FRAMEWORK SUPPORT
9047 M:      Viresh Kumar <viresh.linux@gmail.com>
9048 L:      spear-devel@list.st.com
9049 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9050 W:      http://www.st.com/spear
9051 S:      Maintained
9052 F:      drivers/clk/spear/
9053
9054 SPI SUBSYSTEM
9055 M:      Mark Brown <broonie@kernel.org>
9056 L:      linux-spi@vger.kernel.org
9057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9058 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9059 S:      Maintained
9060 F:      Documentation/spi/
9061 F:      drivers/spi/
9062 F:      include/linux/spi/
9063 F:      include/uapi/linux/spi/
9064
9065 SPIDERNET NETWORK DRIVER for CELL
9066 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9067 M:      Jens Osterkamp <jens@de.ibm.com>
9068 L:      netdev@vger.kernel.org
9069 S:      Supported
9070 F:      Documentation/networking/spider_net.txt
9071 F:      drivers/net/ethernet/toshiba/spider_net*
9072
9073 SPU FILE SYSTEM
9074 M:      Jeremy Kerr <jk@ozlabs.org>
9075 L:      linuxppc-dev@lists.ozlabs.org
9076 L:      cbe-oss-dev@lists.ozlabs.org
9077 W:      http://www.ibm.com/developerworks/power/cell/
9078 S:      Supported
9079 F:      Documentation/filesystems/spufs.txt
9080 F:      arch/powerpc/platforms/cell/spufs/
9081
9082 SQUASHFS FILE SYSTEM
9083 M:      Phillip Lougher <phillip@squashfs.org.uk>
9084 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9085 W:      http://squashfs.org.uk
9086 S:      Maintained
9087 F:      Documentation/filesystems/squashfs.txt
9088 F:      fs/squashfs/
9089
9090 SRM (Alpha) environment access
9091 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9092 S:      Maintained
9093 F:      arch/alpha/kernel/srm_env.c
9094
9095 STABLE BRANCH
9096 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9097 L:      stable@vger.kernel.org
9098 S:      Supported
9099 F:      Documentation/stable_kernel_rules.txt
9100
9101 STAGING SUBSYSTEM
9102 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9104 L:      devel@driverdev.osuosl.org
9105 S:      Supported
9106 F:      drivers/staging/
9107
9108 STAGING - COMEDI
9109 M:      Ian Abbott <abbotti@mev.co.uk>
9110 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9111 S:      Odd Fixes
9112 F:      drivers/staging/comedi/
9113
9114 STAGING - FLARION FT1000 DRIVERS
9115 M:      Marek Belisko <marek.belisko@gmail.com>
9116 S:      Odd Fixes
9117 F:      drivers/staging/ft1000/
9118
9119 STAGING - INDUSTRIAL IO
9120 M:      Jonathan Cameron <jic23@kernel.org>
9121 L:      linux-iio@vger.kernel.org
9122 S:      Odd Fixes
9123 F:      drivers/staging/iio/
9124
9125 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9126 M:      Jarod Wilson <jarod@wilsonet.com>
9127 W:      http://www.lirc.org/
9128 S:      Odd Fixes
9129 F:      drivers/staging/media/lirc/
9130
9131 STAGING - LUSTRE PARALLEL FILESYSTEM
9132 M:      Oleg Drokin <oleg.drokin@intel.com>
9133 M:      Andreas Dilger <andreas.dilger@intel.com>
9134 L:      HPDD-discuss@lists.01.org (moderated for non-subscribers)
9135 W:      http://lustre.opensfs.org/
9136 S:      Maintained
9137 F:      drivers/staging/lustre
9138
9139 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9140 M:      Julian Andres Klode <jak@jak-linux.org>
9141 M:      Marc Dietrich <marvin24@gmx.de>
9142 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9143 L:      linux-tegra@vger.kernel.org
9144 S:      Maintained
9145 F:      drivers/staging/nvec/
9146
9147 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9148 M:      Jens Frederich <jfrederich@gmail.com>
9149 M:      Daniel Drake <dsd@laptop.org>
9150 M:      Jon Nettleton <jon.nettleton@gmail.com>
9151 W:      http://wiki.laptop.org/go/DCON
9152 S:      Maintained
9153 F:      drivers/staging/olpc_dcon/
9154
9155 STAGING - OZMO DEVICES USB OVER WIFI DRIVER
9156 M:      Shigekatsu Tateno <shigekatsu.tateno@atmel.com>
9157 S:      Maintained
9158 F:      drivers/staging/ozwpan/
9159
9160 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9161 M:      Willy Tarreau <willy@meta-x.org>
9162 S:      Odd Fixes
9163 F:      drivers/staging/panel/
9164
9165 STAGING - REALTEK RTL8712U DRIVERS
9166 M:      Larry Finger <Larry.Finger@lwfinger.net>
9167 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9168 S:      Odd Fixes
9169 F:      drivers/staging/rtl8712/
9170
9171 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9172 M:      Larry Finger <Larry.Finger@lwfinger.net>
9173 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9174 L:      linux-wireless@vger.kernel.org
9175 S:      Maintained
9176 F:      drivers/staging/rtl8723au/
9177
9178 STAGING - SLICOSS
9179 M:      Lior Dotan <liodot@gmail.com>
9180 M:      Christopher Harrer <charrer@alacritech.com>
9181 S:      Odd Fixes
9182 F:      drivers/staging/slicoss/
9183
9184 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9185 M:      William Hubbs <w.d.hubbs@gmail.com>
9186 M:      Chris Brannon <chris@the-brannons.com>
9187 M:      Kirk Reiser <kirk@reisers.ca>
9188 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9189 L:      speakup@linux-speakup.org
9190 W:      http://www.linux-speakup.org/
9191 S:      Odd Fixes
9192 F:      drivers/staging/speakup/
9193
9194 STAGING - VIA VT665X DRIVERS
9195 M:      Forest Bond <forest@alittletooquiet.net>
9196 S:      Odd Fixes
9197 F:      drivers/staging/vt665?/
9198
9199 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
9200 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
9201 S:      Odd Fixes
9202 F:      drivers/staging/xgifb/
9203
9204 STARFIRE/DURALAN NETWORK DRIVER
9205 M:      Ion Badulescu <ionut@badula.org>
9206 S:      Odd Fixes
9207 F:      drivers/net/ethernet/adaptec/starfire*
9208
9209 SUN3/3X
9210 M:      Sam Creasey <sammy@sammy.net>
9211 W:      http://sammy.net/sun3/
9212 S:      Maintained
9213 F:      arch/m68k/kernel/*sun3*
9214 F:      arch/m68k/sun3*/
9215 F:      arch/m68k/include/asm/sun3*
9216 F:      drivers/net/ethernet/i825xx/sun3*
9217
9218 SUNDANCE NETWORK DRIVER
9219 M:      Denis Kirjanov <kda@linux-powerpc.org>
9220 L:      netdev@vger.kernel.org
9221 S:      Maintained
9222 F:      drivers/net/ethernet/dlink/sundance.c
9223
9224 SUPERH
9225 L:      linux-sh@vger.kernel.org
9226 W:      http://www.linux-sh.org
9227 Q:      http://patchwork.kernel.org/project/linux-sh/list/
9228 S:      Orphan
9229 F:      Documentation/sh/
9230 F:      arch/sh/
9231 F:      drivers/sh/
9232
9233 SUSPEND TO RAM
9234 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9235 M:      Len Brown <len.brown@intel.com>
9236 M:      Pavel Machek <pavel@ucw.cz>
9237 L:      linux-pm@vger.kernel.org
9238 S:      Supported
9239 F:      Documentation/power/
9240 F:      arch/x86/kernel/acpi/
9241 F:      drivers/base/power/
9242 F:      kernel/power/
9243 F:      include/linux/suspend.h
9244 F:      include/linux/freezer.h
9245 F:      include/linux/pm.h
9246
9247 SVGA HANDLING
9248 M:      Martin Mares <mj@ucw.cz>
9249 L:      linux-video@atrey.karlin.mff.cuni.cz
9250 S:      Maintained
9251 F:      Documentation/svga.txt
9252 F:      arch/x86/boot/video*
9253
9254 SWIOTLB SUBSYSTEM
9255 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9256 L:      linux-kernel@vger.kernel.org
9257 S:      Supported
9258 F:      lib/swiotlb.c
9259 F:      arch/*/kernel/pci-swiotlb.c
9260 F:      include/linux/swiotlb.h
9261
9262 SWITCHDEV
9263 M:      Jiri Pirko <jiri@resnulli.us>
9264 L:      netdev@vger.kernel.org
9265 S:      Supported
9266 F:      net/switchdev/
9267 F:      include/net/switchdev.h
9268
9269 SYNOPSYS ARC ARCHITECTURE
9270 M:      Vineet Gupta <vgupta@synopsys.com>
9271 S:      Supported
9272 F:      arch/arc/
9273 F:      Documentation/devicetree/bindings/arc/
9274 F:      drivers/tty/serial/arc_uart.c
9275
9276 SYSV FILESYSTEM
9277 M:      Christoph Hellwig <hch@infradead.org>
9278 S:      Maintained
9279 F:      Documentation/filesystems/sysv-fs.txt
9280 F:      fs/sysv/
9281 F:      include/linux/sysv_fs.h
9282
9283 TARGET SUBSYSTEM
9284 M:      Nicholas A. Bellinger <nab@linux-iscsi.org>
9285 L:      linux-scsi@vger.kernel.org
9286 L:      target-devel@vger.kernel.org
9287 W:      http://www.linux-iscsi.org
9288 W:      http://groups.google.com/group/linux-iscsi-target-dev
9289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9290 S:      Supported
9291 F:      drivers/target/
9292 F:      include/target/
9293 F:      Documentation/target/
9294
9295 TASKSTATS STATISTICS INTERFACE
9296 M:      Balbir Singh <bsingharora@gmail.com>
9297 S:      Maintained
9298 F:      Documentation/accounting/taskstats*
9299 F:      include/linux/taskstats*
9300 F:      kernel/taskstats.c
9301
9302 TC CLASSIFIER
9303 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9304 L:      netdev@vger.kernel.org
9305 S:      Maintained
9306 F:      include/net/pkt_cls.h
9307 F:      include/uapi/linux/pkt_cls.h
9308 F:      net/sched/
9309
9310 TCP LOW PRIORITY MODULE
9311 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
9312 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
9313 W:      http://tcp-lp-mod.sourceforge.net/
9314 S:      Maintained
9315 F:      net/ipv4/tcp_lp.c
9316
9317 TDA10071 MEDIA DRIVER
9318 M:      Antti Palosaari <crope@iki.fi>
9319 L:      linux-media@vger.kernel.org
9320 W:      http://linuxtv.org/
9321 W:      http://palosaari.fi/linux/
9322 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9323 T:      git git://linuxtv.org/anttip/media_tree.git
9324 S:      Maintained
9325 F:      drivers/media/dvb-frontends/tda10071*
9326
9327 TDA18212 MEDIA DRIVER
9328 M:      Antti Palosaari <crope@iki.fi>
9329 L:      linux-media@vger.kernel.org
9330 W:      http://linuxtv.org/
9331 W:      http://palosaari.fi/linux/
9332 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9333 T:      git git://linuxtv.org/anttip/media_tree.git
9334 S:      Maintained
9335 F:      drivers/media/tuners/tda18212*
9336
9337 TDA18218 MEDIA DRIVER
9338 M:      Antti Palosaari <crope@iki.fi>
9339 L:      linux-media@vger.kernel.org
9340 W:      http://linuxtv.org/
9341 W:      http://palosaari.fi/linux/
9342 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9343 T:      git git://linuxtv.org/anttip/media_tree.git
9344 S:      Maintained
9345 F:      drivers/media/tuners/tda18218*
9346
9347 TDA18271 MEDIA DRIVER
9348 M:      Michael Krufky <mkrufky@linuxtv.org>
9349 L:      linux-media@vger.kernel.org
9350 W:      http://linuxtv.org/
9351 W:      http://github.com/mkrufky
9352 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9353 T:      git git://linuxtv.org/mkrufky/tuners.git
9354 S:      Maintained
9355 F:      drivers/media/tuners/tda18271*
9356
9357 TDA827x MEDIA DRIVER
9358 M:      Michael Krufky <mkrufky@linuxtv.org>
9359 L:      linux-media@vger.kernel.org
9360 W:      http://linuxtv.org/
9361 W:      http://github.com/mkrufky
9362 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9363 T:      git git://linuxtv.org/mkrufky/tuners.git
9364 S:      Maintained
9365 F:      drivers/media/tuners/tda8290.*
9366
9367 TDA8290 MEDIA DRIVER
9368 M:      Michael Krufky <mkrufky@linuxtv.org>
9369 L:      linux-media@vger.kernel.org
9370 W:      http://linuxtv.org/
9371 W:      http://github.com/mkrufky
9372 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9373 T:      git git://linuxtv.org/mkrufky/tuners.git
9374 S:      Maintained
9375 F:      drivers/media/tuners/tda8290.*
9376
9377 TDA9840 MEDIA DRIVER
9378 M:      Hans Verkuil <hverkuil@xs4all.nl>
9379 L:      linux-media@vger.kernel.org
9380 T:      git git://linuxtv.org/media_tree.git
9381 W:      http://linuxtv.org
9382 S:      Maintained
9383 F:      drivers/media/i2c/tda9840*
9384
9385 TEA5761 TUNER DRIVER
9386 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9387 L:      linux-media@vger.kernel.org
9388 W:      http://linuxtv.org
9389 T:      git git://linuxtv.org/media_tree.git
9390 S:      Odd fixes
9391 F:      drivers/media/tuners/tea5761.*
9392
9393 TEA5767 TUNER DRIVER
9394 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9395 L:      linux-media@vger.kernel.org
9396 W:      http://linuxtv.org
9397 T:      git git://linuxtv.org/media_tree.git
9398 S:      Maintained
9399 F:      drivers/media/tuners/tea5767.*
9400
9401 TEA6415C MEDIA DRIVER
9402 M:      Hans Verkuil <hverkuil@xs4all.nl>
9403 L:      linux-media@vger.kernel.org
9404 T:      git git://linuxtv.org/media_tree.git
9405 W:      http://linuxtv.org
9406 S:      Maintained
9407 F:      drivers/media/i2c/tea6415c*
9408
9409 TEA6420 MEDIA DRIVER
9410 M:      Hans Verkuil <hverkuil@xs4all.nl>
9411 L:      linux-media@vger.kernel.org
9412 T:      git git://linuxtv.org/media_tree.git
9413 W:      http://linuxtv.org
9414 S:      Maintained
9415 F:      drivers/media/i2c/tea6420*
9416
9417 TEAM DRIVER
9418 M:      Jiri Pirko <jiri@resnulli.us>
9419 L:      netdev@vger.kernel.org
9420 S:      Supported
9421 F:      drivers/net/team/
9422 F:      include/linux/if_team.h
9423 F:      include/uapi/linux/if_team.h
9424
9425 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
9426 M:      Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
9427 S:      Maintained
9428 F:      arch/x86/platform/ts5500/
9429
9430 TECHNOTREND USB IR RECEIVER
9431 M:      Sean Young <sean@mess.org>
9432 L:      linux-media@vger.kernel.org
9433 S:      Maintained
9434 F:      drivers/media/rc/ttusbir.c
9435
9436 TEGRA ARCHITECTURE SUPPORT
9437 M:      Stephen Warren <swarren@wwwdotorg.org>
9438 M:      Thierry Reding <thierry.reding@gmail.com>
9439 M:      Alexandre Courbot <gnurou@gmail.com>
9440 L:      linux-tegra@vger.kernel.org
9441 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
9442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
9443 S:      Supported
9444 N:      [^a-z]tegra
9445
9446 TEGRA CLOCK DRIVER
9447 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
9448 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
9449 S:      Supported
9450 F:      drivers/clk/tegra/
9451
9452 TEGRA DMA DRIVER
9453 M:      Laxman Dewangan <ldewangan@nvidia.com>
9454 S:      Supported
9455 F:      drivers/dma/tegra20-apb-dma.c
9456
9457 TEGRA I2C DRIVER
9458 M:      Laxman Dewangan <ldewangan@nvidia.com>
9459 S:      Supported
9460 F:      drivers/i2c/busses/i2c-tegra.c
9461
9462 TEGRA IOMMU DRIVERS
9463 M:      Hiroshi Doyu <hdoyu@nvidia.com>
9464 S:      Supported
9465 F:      drivers/iommu/tegra*
9466
9467 TEGRA KBC DRIVER
9468 M:      Rakesh Iyer <riyer@nvidia.com>
9469 M:      Laxman Dewangan <ldewangan@nvidia.com>
9470 S:      Supported
9471 F:      drivers/input/keyboard/tegra-kbc.c
9472
9473 TEGRA PWM DRIVER
9474 M:      Thierry Reding <thierry.reding@gmail.com>
9475 S:      Supported
9476 F:      drivers/pwm/pwm-tegra.c
9477
9478 TEGRA SERIAL DRIVER
9479 M:      Laxman Dewangan <ldewangan@nvidia.com>
9480 S:      Supported
9481 F:      drivers/tty/serial/serial-tegra.c
9482
9483 TEGRA SPI DRIVER
9484 M:      Laxman Dewangan <ldewangan@nvidia.com>
9485 S:      Supported
9486 F:      drivers/spi/spi-tegra*
9487
9488 TEHUTI ETHERNET DRIVER
9489 M:      Andy Gospodarek <andy@greyhouse.net>
9490 L:      netdev@vger.kernel.org
9491 S:      Supported
9492 F:      drivers/net/ethernet/tehuti/*
9493
9494 Telecom Clock Driver for MCPL0010
9495 M:      Mark Gross <mark.gross@intel.com>
9496 S:      Supported
9497 F:      drivers/char/tlclk.c
9498
9499 TENSILICA XTENSA PORT (xtensa)
9500 M:      Chris Zankel <chris@zankel.net>
9501 M:      Max Filippov <jcmvbkbc@gmail.com>
9502 L:      linux-xtensa@linux-xtensa.org
9503 S:      Maintained
9504 F:      arch/xtensa/
9505 F:      drivers/irqchip/irq-xtensa-*
9506
9507 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
9508 M:      Hans Verkuil <hverkuil@xs4all.nl>
9509 L:      linux-media@vger.kernel.org
9510 T:      git git://linuxtv.org/media_tree.git
9511 W:      http://linuxtv.org
9512 S:      Maintained
9513 F:      drivers/media/radio/radio-raremono.c
9514
9515 THERMAL
9516 M:      Zhang Rui <rui.zhang@intel.com>
9517 M:      Eduardo Valentin <edubezval@gmail.com>
9518 L:      linux-pm@vger.kernel.org
9519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
9520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
9521 Q:      https://patchwork.kernel.org/project/linux-pm/list/
9522 S:      Supported
9523 F:      drivers/thermal/
9524 F:      include/linux/thermal.h
9525 F:      include/uapi/linux/thermal.h
9526 F:      include/linux/cpu_cooling.h
9527 F:      Documentation/devicetree/bindings/thermal/
9528
9529 THINGM BLINK(1) USB RGB LED DRIVER
9530 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9531 S:      Maintained
9532 F:      drivers/hid/hid-thingm.c
9533
9534 THINKPAD ACPI EXTRAS DRIVER
9535 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
9536 L:      ibm-acpi-devel@lists.sourceforge.net
9537 L:      platform-driver-x86@vger.kernel.org
9538 W:      http://ibm-acpi.sourceforge.net
9539 W:      http://thinkwiki.org/wiki/Ibm-acpi
9540 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
9541 S:      Maintained
9542 F:      drivers/platform/x86/thinkpad_acpi.c
9543
9544 TI BANDGAP AND THERMAL DRIVER
9545 M:      Eduardo Valentin <edubezval@gmail.com>
9546 L:      linux-pm@vger.kernel.org
9547 S:      Supported
9548 F:      drivers/thermal/ti-soc-thermal/
9549
9550 TI CLOCK DRIVER
9551 M:      Tero Kristo <t-kristo@ti.com>
9552 L:      linux-omap@vger.kernel.org
9553 S:      Maintained
9554 F:      drivers/clk/ti/
9555 F:      include/linux/clk/ti.h
9556
9557 TI FLASH MEDIA INTERFACE DRIVER
9558 M:      Alex Dubov <oakad@yahoo.com>
9559 S:      Maintained
9560 F:      drivers/misc/tifm*
9561 F:      drivers/mmc/host/tifm_sd.c
9562 F:      include/linux/tifm.h
9563
9564 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
9565 M:      Santosh Shilimkar <ssantosh@kernel.org>
9566 L:      linux-kernel@vger.kernel.org
9567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9568 S:      Maintained
9569 F:      drivers/soc/ti/*
9570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
9571
9572
9573 TI LM49xxx FAMILY ASoC CODEC DRIVERS
9574 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
9575 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
9576 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9577 S:      Maintained
9578 F:      sound/soc/codecs/lm49453*
9579 F:      sound/soc/codecs/isabelle*
9580
9581 TI LP855x BACKLIGHT DRIVER
9582 M:      Milo Kim <milo.kim@ti.com>
9583 S:      Maintained
9584 F:      Documentation/backlight/lp855x-driver.txt
9585 F:      drivers/video/backlight/lp855x_bl.c
9586 F:      include/linux/platform_data/lp855x.h
9587
9588 TI LP8727 CHARGER DRIVER
9589 M:      Milo Kim <milo.kim@ti.com>
9590 S:      Maintained
9591 F:      drivers/power/lp8727_charger.c
9592 F:      include/linux/platform_data/lp8727.h
9593
9594 TI LP8788 MFD DRIVER
9595 M:      Milo Kim <milo.kim@ti.com>
9596 S:      Maintained
9597 F:      drivers/iio/adc/lp8788_adc.c
9598 F:      drivers/leds/leds-lp8788.c
9599 F:      drivers/mfd/lp8788*.c
9600 F:      drivers/power/lp8788-charger.c
9601 F:      drivers/regulator/lp8788-*.c
9602 F:      include/linux/mfd/lp8788*.h
9603
9604 TI TWL4030 SERIES SOC CODEC DRIVER
9605 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
9606 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9607 S:      Maintained
9608 F:      sound/soc/codecs/twl4030*
9609
9610 TI WILINK WIRELESS DRIVERS
9611 L:      linux-wireless@vger.kernel.org
9612 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
9613 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
9614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
9615 S:      Orphan
9616 F:      drivers/net/wireless/ti/
9617 F:      include/linux/wl12xx.h
9618
9619 TIPC NETWORK LAYER
9620 M:      Jon Maloy <jon.maloy@ericsson.com>
9621 M:      Allan Stephens <allan.stephens@windriver.com>
9622 L:      netdev@vger.kernel.org (core kernel code)
9623 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
9624 W:      http://tipc.sourceforge.net/
9625 S:      Maintained
9626 F:      include/uapi/linux/tipc*.h
9627 F:      net/tipc/
9628
9629 TILE ARCHITECTURE
9630 M:      Chris Metcalf <cmetcalf@ezchip.com>
9631 W:      http://www.tilera.com/scm/
9632 S:      Supported
9633 F:      arch/tile/
9634 F:      drivers/char/tile-srom.c
9635 F:      drivers/edac/tile_edac.c
9636 F:      drivers/net/ethernet/tile/
9637 F:      drivers/rtc/rtc-tile.c
9638 F:      drivers/tty/hvc/hvc_tile.c
9639 F:      drivers/tty/serial/tilegx.c
9640 F:      drivers/usb/host/*-tilegx.c
9641 F:      include/linux/usb/tilegx.h
9642
9643 TLAN NETWORK DRIVER
9644 M:      Samuel Chessman <chessman@tux.org>
9645 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
9646 W:      http://sourceforge.net/projects/tlan/
9647 S:      Maintained
9648 F:      Documentation/networking/tlan.txt
9649 F:      drivers/net/ethernet/ti/tlan.*
9650
9651 TOMOYO SECURITY MODULE
9652 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
9653 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
9654 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
9655 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
9656 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
9657 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
9658 W:      http://tomoyo.sourceforge.jp/
9659 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
9660 S:      Maintained
9661 F:      security/tomoyo/
9662
9663 TOPSTAR LAPTOP EXTRAS DRIVER
9664 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9665 L:      platform-driver-x86@vger.kernel.org
9666 S:      Maintained
9667 F:      drivers/platform/x86/topstar-laptop.c
9668
9669 TOSHIBA ACPI EXTRAS DRIVER
9670 L:      platform-driver-x86@vger.kernel.org
9671 S:      Orphan
9672 F:      drivers/platform/x86/toshiba_acpi.c
9673
9674 TOSHIBA SMM DRIVER
9675 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
9676 L:      tlinux-users@tce.toshiba-dme.co.jp
9677 W:      http://www.buzzard.org.uk/toshiba/
9678 S:      Maintained
9679 F:      drivers/char/toshiba.c
9680 F:      include/linux/toshiba.h
9681 F:      include/uapi/linux/toshiba.h
9682
9683 TMIO MMC DRIVER
9684 M:      Ian Molton <ian.molton@codethink.co.uk>
9685 L:      linux-mmc@vger.kernel.org
9686 S:      Maintained
9687 F:      drivers/mmc/host/tmio_mmc*
9688 F:      drivers/mmc/host/sh_mobile_sdhi.c
9689 F:      include/linux/mmc/tmio.h
9690 F:      include/linux/mmc/sh_mobile_sdhi.h
9691
9692 TMP401 HARDWARE MONITOR DRIVER
9693 M:      Guenter Roeck <linux@roeck-us.net>
9694 L:      lm-sensors@lm-sensors.org
9695 S:      Maintained
9696 F:      Documentation/hwmon/tmp401
9697 F:      drivers/hwmon/tmp401.c
9698
9699 TMPFS (SHMEM FILESYSTEM)
9700 M:      Hugh Dickins <hughd@google.com>
9701 L:      linux-mm@kvack.org
9702 S:      Maintained
9703 F:      include/linux/shmem_fs.h
9704 F:      mm/shmem.c
9705
9706 TM6000 VIDEO4LINUX DRIVER
9707 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9708 L:      linux-media@vger.kernel.org
9709 W:      http://linuxtv.org
9710 T:      git git://linuxtv.org/media_tree.git
9711 S:      Odd fixes
9712 F:      drivers/media/usb/tm6000/
9713
9714 TW68 VIDEO4LINUX DRIVER
9715 M:      Hans Verkuil <hverkuil@xs4all.nl>
9716 L:      linux-media@vger.kernel.org
9717 T:      git git://linuxtv.org/media_tree.git
9718 W:      http://linuxtv.org
9719 S:      Odd Fixes
9720 F:      drivers/media/pci/tw68/
9721
9722 TPM DEVICE DRIVER
9723 M:      Peter Huewe <peterhuewe@gmx.de>
9724 M:      Ashley Lai <ashley@ashleylai.com>
9725 M:      Marcel Selhorst <tpmdd@selhorst.net>
9726 W:      http://tpmdd.sourceforge.net
9727 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
9728 S:      Maintained
9729 F:      drivers/char/tpm/
9730
9731 TRACING
9732 M:      Steven Rostedt <rostedt@goodmis.org>
9733 M:      Ingo Molnar <mingo@redhat.com>
9734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
9735 S:      Maintained
9736 F:      Documentation/trace/ftrace.txt
9737 F:      arch/*/*/*/ftrace.h
9738 F:      arch/*/kernel/ftrace.c
9739 F:      include/*/ftrace.h
9740 F:      include/linux/trace*.h
9741 F:      include/trace/
9742 F:      kernel/trace/
9743 F:      tools/testing/selftests/ftrace/
9744
9745 TRIVIAL PATCHES
9746 M:      Jiri Kosina <trivial@kernel.org>
9747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
9748 S:      Maintained
9749 K:      ^Subject:.*(?i)trivial
9750
9751 TTY LAYER
9752 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9753 M:      Jiri Slaby <jslaby@suse.cz>
9754 S:      Supported
9755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
9756 F:      drivers/tty/
9757 F:      drivers/tty/serial/serial_core.c
9758 F:      include/linux/serial_core.h
9759 F:      include/linux/serial.h
9760 F:      include/linux/tty.h
9761 F:      include/uapi/linux/serial_core.h
9762 F:      include/uapi/linux/serial.h
9763 F:      include/uapi/linux/tty.h
9764
9765 TUA9001 MEDIA DRIVER
9766 M:      Antti Palosaari <crope@iki.fi>
9767 L:      linux-media@vger.kernel.org
9768 W:      http://linuxtv.org/
9769 W:      http://palosaari.fi/linux/
9770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9771 T:      git git://linuxtv.org/anttip/media_tree.git
9772 S:      Maintained
9773 F:      drivers/media/tuners/tua9001*
9774
9775 TULIP NETWORK DRIVERS
9776 M:      Grant Grundler <grundler@parisc-linux.org>
9777 L:      netdev@vger.kernel.org
9778 S:      Maintained
9779 F:      drivers/net/ethernet/dec/tulip/
9780
9781 TUN/TAP driver
9782 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
9783 W:      http://vtun.sourceforge.net/tun
9784 S:      Maintained
9785 F:      Documentation/networking/tuntap.txt
9786 F:      arch/um/os-Linux/drivers/
9787
9788 TURBOCHANNEL SUBSYSTEM
9789 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
9790 M:      Ralf Baechle <ralf@linux-mips.org>
9791 L:      linux-mips@linux-mips.org
9792 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
9793 S:      Maintained
9794 F:      drivers/tc/
9795 F:      include/linux/tc.h
9796
9797 U14-34F SCSI DRIVER
9798 M:      Dario Ballabio <ballabio_dario@emc.com>
9799 L:      linux-scsi@vger.kernel.org
9800 S:      Maintained
9801 F:      drivers/scsi/u14-34f.c
9802
9803 UBI FILE SYSTEM (UBIFS)
9804 M:      Artem Bityutskiy <dedekind1@gmail.com>
9805 M:      Adrian Hunter <adrian.hunter@intel.com>
9806 L:      linux-mtd@lists.infradead.org
9807 T:      git git://git.infradead.org/ubifs-2.6.git
9808 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
9809 S:      Maintained
9810 F:      Documentation/filesystems/ubifs.txt
9811 F:      fs/ubifs/
9812
9813 UCLINUX (AND M68KNOMMU)
9814 M:      Greg Ungerer <gerg@uclinux.org>
9815 W:      http://www.uclinux.org/
9816 L:      uclinux-dev@uclinux.org  (subscribers-only)
9817 S:      Maintained
9818 F:      arch/m68k/*/*_no.*
9819 F:      arch/m68k/include/asm/*_no.*
9820
9821 UDF FILESYSTEM
9822 M:      Jan Kara <jack@suse.cz>
9823 S:      Maintained
9824 F:      Documentation/filesystems/udf.txt
9825 F:      fs/udf/
9826
9827 UFS FILESYSTEM
9828 M:      Evgeniy Dushistov <dushistov@mail.ru>
9829 S:      Maintained
9830 F:      Documentation/filesystems/ufs.txt
9831 F:      fs/ufs/
9832
9833 UHID USERSPACE HID IO DRIVER:
9834 M:      David Herrmann <dh.herrmann@googlemail.com>
9835 L:      linux-input@vger.kernel.org
9836 S:      Maintained
9837 F:      drivers/hid/uhid.c
9838 F:      include/uapi/linux/uhid.h
9839
9840 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
9841 L:      linux-usb@vger.kernel.org
9842 S:      Orphan
9843 F:      drivers/uwb/
9844 F:      include/linux/uwb.h
9845 F:      include/linux/uwb/
9846
9847 UNICORE32 ARCHITECTURE:
9848 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
9849 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
9850 S:      Maintained
9851 T:      git git://github.com/gxt/linux.git
9852 F:      arch/unicore32/
9853
9854 UNIFDEF
9855 M:      Tony Finch <dot@dotat.at>
9856 W:      http://dotat.at/prog/unifdef
9857 S:      Maintained
9858 F:      scripts/unifdef.c
9859
9860 UNIFORM CDROM DRIVER
9861 M:      Jens Axboe <axboe@kernel.dk>
9862 W:      http://www.kernel.dk
9863 S:      Maintained
9864 F:      Documentation/cdrom/
9865 F:      drivers/cdrom/cdrom.c
9866 F:      include/linux/cdrom.h
9867 F:      include/uapi/linux/cdrom.h
9868
9869 UNISYS S-PAR DRIVERS
9870 M:     Benjamin Romer <benjamin.romer@unisys.com>
9871 M:     David Kershner <david.kershner@unisys.com>
9872 L:     sparmaintainer@unisys.com (Unisys internal)
9873 S:     Supported
9874 F:     drivers/staging/unisys/
9875
9876 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
9877 M:      Vinayak Holikatti <vinholikatti@gmail.com>
9878 L:      linux-scsi@vger.kernel.org
9879 S:      Supported
9880 F:      Documentation/scsi/ufs.txt
9881 F:      drivers/scsi/ufs/
9882
9883 UNSORTED BLOCK IMAGES (UBI)
9884 M:      Artem Bityutskiy <dedekind1@gmail.com>
9885 W:      http://www.linux-mtd.infradead.org/
9886 L:      linux-mtd@lists.infradead.org
9887 T:      git git://git.infradead.org/ubifs-2.6.git
9888 S:      Maintained
9889 F:      drivers/mtd/ubi/
9890 F:      include/linux/mtd/ubi.h
9891 F:      include/uapi/mtd/ubi-user.h
9892
9893 UNSORTED BLOCK IMAGES (UBI) Fastmap
9894 M:      Richard Weinberger <richard@nod.at>
9895 L:      linux-mtd@lists.infradead.org
9896 S:      Maintained
9897 F:      drivers/mtd/ubi/fastmap.c
9898
9899 USB ACM DRIVER
9900 M:      Oliver Neukum <oliver@neukum.org>
9901 L:      linux-usb@vger.kernel.org
9902 S:      Maintained
9903 F:      Documentation/usb/acm.txt
9904 F:      drivers/usb/class/cdc-acm.*
9905
9906 USB AR5523 WIRELESS DRIVER
9907 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
9908 L:      linux-wireless@vger.kernel.org
9909 S:      Maintained
9910 F:      drivers/net/wireless/ath/ar5523/
9911
9912 USB ATTACHED SCSI
9913 M:      Hans de Goede <hdegoede@redhat.com>
9914 M:      Gerd Hoffmann <kraxel@redhat.com>
9915 L:      linux-usb@vger.kernel.org
9916 L:      linux-scsi@vger.kernel.org
9917 S:      Maintained
9918 F:      drivers/usb/storage/uas.c
9919
9920 USB CDC ETHERNET DRIVER
9921 M:      Oliver Neukum <oliver@neukum.org>
9922 L:      linux-usb@vger.kernel.org
9923 S:      Maintained
9924 F:      drivers/net/usb/cdc_*.c
9925 F:      include/uapi/linux/usb/cdc.h
9926
9927 USB CYPRESS C67X00 DRIVER
9928 M:      Peter Korsgaard <jacmet@sunsite.dk>
9929 L:      linux-usb@vger.kernel.org
9930 S:      Maintained
9931 F:      drivers/usb/c67x00/
9932
9933 USB DAVICOM DM9601 DRIVER
9934 M:      Peter Korsgaard <jacmet@sunsite.dk>
9935 L:      netdev@vger.kernel.org
9936 W:      http://www.linux-usb.org/usbnet
9937 S:      Maintained
9938 F:      drivers/net/usb/dm9601.c
9939
9940 USB DIAMOND RIO500 DRIVER
9941 M:      Cesar Miquel <miquel@df.uba.ar>
9942 L:      rio500-users@lists.sourceforge.net
9943 W:      http://rio500.sourceforge.net
9944 S:      Maintained
9945 F:      drivers/usb/misc/rio500*
9946
9947 USB EHCI DRIVER
9948 M:      Alan Stern <stern@rowland.harvard.edu>
9949 L:      linux-usb@vger.kernel.org
9950 S:      Maintained
9951 F:      Documentation/usb/ehci.txt
9952 F:      drivers/usb/host/ehci*
9953
9954 USB GADGET/PERIPHERAL SUBSYSTEM
9955 M:      Felipe Balbi <balbi@ti.com>
9956 L:      linux-usb@vger.kernel.org
9957 W:      http://www.linux-usb.org/gadget
9958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
9959 S:      Maintained
9960 F:      drivers/usb/gadget/
9961 F:      include/linux/usb/gadget*
9962
9963 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
9964 M:      Jiri Kosina <jkosina@suse.cz>
9965 L:      linux-usb@vger.kernel.org
9966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
9967 S:      Maintained
9968 F:      Documentation/hid/hiddev.txt
9969 F:      drivers/hid/usbhid/
9970
9971 USB ISP116X DRIVER
9972 M:      Olav Kongas <ok@artecdesign.ee>
9973 L:      linux-usb@vger.kernel.org
9974 S:      Maintained
9975 F:      drivers/usb/host/isp116x*
9976 F:      include/linux/usb/isp116x.h
9977
9978 USB MASS STORAGE DRIVER
9979 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
9980 L:      linux-usb@vger.kernel.org
9981 L:      usb-storage@lists.one-eyed-alien.net
9982 S:      Maintained
9983 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
9984 F:      drivers/usb/storage/
9985
9986 USB MIDI DRIVER
9987 M:      Clemens Ladisch <clemens@ladisch.de>
9988 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9989 T:      git git://git.alsa-project.org/alsa-kernel.git
9990 S:      Maintained
9991 F:      sound/usb/midi.*
9992
9993 USB NETWORKING DRIVERS
9994 L:      linux-usb@vger.kernel.org
9995 S:      Odd Fixes
9996 F:      drivers/net/usb/
9997
9998 USB OHCI DRIVER
9999 M:      Alan Stern <stern@rowland.harvard.edu>
10000 L:      linux-usb@vger.kernel.org
10001 S:      Maintained
10002 F:      Documentation/usb/ohci.txt
10003 F:      drivers/usb/host/ohci*
10004
10005 USB OVER IP DRIVER
10006 M:      Valentina Manea <valentina.manea.m@gmail.com>
10007 M:      Shuah Khan <shuah.kh@samsung.com>
10008 L:      linux-usb@vger.kernel.org
10009 S:      Maintained
10010 F:      drivers/usb/usbip/
10011 F:      tools/usb/usbip/
10012
10013 USB PEGASUS DRIVER
10014 M:      Petko Manolov <petkan@nucleusys.com>
10015 L:      linux-usb@vger.kernel.org
10016 L:      netdev@vger.kernel.org
10017 T:      git git://github.com/petkan/pegasus.git
10018 W:      https://github.com/petkan/pegasus
10019 S:      Maintained
10020 F:      drivers/net/usb/pegasus.*
10021
10022 USB PHY LAYER
10023 M:      Felipe Balbi <balbi@ti.com>
10024 L:      linux-usb@vger.kernel.org
10025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10026 S:      Maintained
10027 F:      drivers/usb/phy/
10028
10029 USB PRINTER DRIVER (usblp)
10030 M:      Pete Zaitcev <zaitcev@redhat.com>
10031 L:      linux-usb@vger.kernel.org
10032 S:      Supported
10033 F:      drivers/usb/class/usblp.c
10034
10035 USB RTL8150 DRIVER
10036 M:      Petko Manolov <petkan@nucleusys.com>
10037 L:      linux-usb@vger.kernel.org
10038 L:      netdev@vger.kernel.org
10039 T:      git git://github.com/petkan/rtl8150.git
10040 W:      https://github.com/petkan/rtl8150
10041 S:      Maintained
10042 F:      drivers/net/usb/rtl8150.c
10043
10044 USB SERIAL SUBSYSTEM
10045 M:      Johan Hovold <johan@kernel.org>
10046 L:      linux-usb@vger.kernel.org
10047 S:      Maintained
10048 F:      Documentation/usb/usb-serial.txt
10049 F:      drivers/usb/serial/
10050 F:      include/linux/usb/serial.h
10051
10052 USB SMSC75XX ETHERNET DRIVER
10053 M:      Steve Glendinning <steve.glendinning@shawell.net>
10054 L:      netdev@vger.kernel.org
10055 S:      Maintained
10056 F:      drivers/net/usb/smsc75xx.*
10057
10058 USB SMSC95XX ETHERNET DRIVER
10059 M:      Steve Glendinning <steve.glendinning@shawell.net>
10060 L:      netdev@vger.kernel.org
10061 S:      Maintained
10062 F:      drivers/net/usb/smsc95xx.*
10063
10064 USB SUBSYSTEM
10065 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10066 L:      linux-usb@vger.kernel.org
10067 W:      http://www.linux-usb.org
10068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10069 S:      Supported
10070 F:      Documentation/usb/
10071 F:      drivers/usb/
10072 F:      include/linux/usb.h
10073 F:      include/linux/usb/
10074
10075 USB UHCI DRIVER
10076 M:      Alan Stern <stern@rowland.harvard.edu>
10077 L:      linux-usb@vger.kernel.org
10078 S:      Maintained
10079 F:      drivers/usb/host/uhci*
10080
10081 USB "USBNET" DRIVER FRAMEWORK
10082 M:      Oliver Neukum <oneukum@suse.de>
10083 L:      netdev@vger.kernel.org
10084 W:      http://www.linux-usb.org/usbnet
10085 S:      Maintained
10086 F:      drivers/net/usb/usbnet.c
10087 F:      include/linux/usb/usbnet.h
10088
10089 USB VIDEO CLASS
10090 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10091 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10092 L:      linux-media@vger.kernel.org
10093 T:      git git://linuxtv.org/media_tree.git
10094 W:      http://www.ideasonboard.org/uvc/
10095 S:      Maintained
10096 F:      drivers/media/usb/uvc/
10097 F:      include/uapi/linux/uvcvideo.h
10098
10099 USB VISION DRIVER
10100 M:      Hans Verkuil <hverkuil@xs4all.nl>
10101 L:      linux-media@vger.kernel.org
10102 T:      git git://linuxtv.org/media_tree.git
10103 W:      http://linuxtv.org
10104 S:      Odd Fixes
10105 F:      drivers/media/usb/usbvision/
10106
10107 USB WEBCAM GADGET
10108 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10109 L:      linux-usb@vger.kernel.org
10110 S:      Maintained
10111 F:      drivers/usb/gadget/function/*uvc*
10112 F:      drivers/usb/gadget/legacy/webcam.c
10113
10114 USB WIRELESS RNDIS DRIVER (rndis_wlan)
10115 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
10116 L:      linux-wireless@vger.kernel.org
10117 S:      Maintained
10118 F:      drivers/net/wireless/rndis_wlan.c
10119
10120 USB XHCI DRIVER
10121 M:      Mathias Nyman <mathias.nyman@intel.com>
10122 L:      linux-usb@vger.kernel.org
10123 S:      Supported
10124 F:      drivers/usb/host/xhci*
10125 F:      drivers/usb/host/pci-quirks*
10126
10127 USB ZD1201 DRIVER
10128 L:      linux-wireless@vger.kernel.org
10129 W:      http://linux-lc100020.sourceforge.net
10130 S:      Orphan
10131 F:      drivers/net/wireless/zd1201.*
10132
10133 USB ZR364XX DRIVER
10134 M:      Antoine Jacquet <royale@zerezo.com>
10135 L:      linux-usb@vger.kernel.org
10136 L:      linux-media@vger.kernel.org
10137 T:      git git://linuxtv.org/media_tree.git
10138 W:      http://royale.zerezo.com/zr364xx/
10139 S:      Maintained
10140 F:      Documentation/video4linux/zr364xx.txt
10141 F:      drivers/media/usb/zr364xx/
10142
10143 USER-MODE LINUX (UML)
10144 M:      Jeff Dike <jdike@addtoit.com>
10145 M:      Richard Weinberger <richard@nod.at>
10146 L:      user-mode-linux-devel@lists.sourceforge.net
10147 L:      user-mode-linux-user@lists.sourceforge.net
10148 W:      http://user-mode-linux.sourceforge.net
10149 S:      Maintained
10150 F:      Documentation/virtual/uml/
10151 F:      arch/um/
10152 F:      arch/x86/um/
10153 F:      fs/hostfs/
10154 F:      fs/hppfs/
10155
10156 USERSPACE I/O (UIO)
10157 M:      "Hans J. Koch" <hjk@hansjkoch.de>
10158 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10159 S:      Maintained
10160 F:      Documentation/DocBook/uio-howto.tmpl
10161 F:      drivers/uio/
10162 F:      include/linux/uio*.h
10163
10164 UTIL-LINUX PACKAGE
10165 M:      Karel Zak <kzak@redhat.com>
10166 L:      util-linux@vger.kernel.org
10167 W:      http://en.wikipedia.org/wiki/Util-linux
10168 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
10169 S:      Maintained
10170
10171 UVESAFB DRIVER
10172 M:      Michal Januszewski <spock@gentoo.org>
10173 L:      linux-fbdev@vger.kernel.org
10174 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
10175 S:      Maintained
10176 F:      Documentation/fb/uvesafb.txt
10177 F:      drivers/video/fbdev/uvesafb.*
10178
10179 VFAT/FAT/MSDOS FILESYSTEM
10180 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
10181 S:      Maintained
10182 F:      Documentation/filesystems/vfat.txt
10183 F:      fs/fat/
10184
10185 VFIO DRIVER
10186 M:      Alex Williamson <alex.williamson@redhat.com>
10187 L:      kvm@vger.kernel.org
10188 S:      Maintained
10189 F:      Documentation/vfio.txt
10190 F:      drivers/vfio/
10191 F:      include/linux/vfio.h
10192 F:      include/uapi/linux/vfio.h
10193
10194 VIDEOBUF2 FRAMEWORK
10195 M:      Pawel Osciak <pawel@osciak.com>
10196 M:      Marek Szyprowski <m.szyprowski@samsung.com>
10197 M:      Kyungmin Park <kyungmin.park@samsung.com>
10198 L:      linux-media@vger.kernel.org
10199 S:      Maintained
10200 F:      drivers/media/v4l2-core/videobuf2-*
10201 F:      include/media/videobuf2-*
10202
10203 VIRTIO CONSOLE DRIVER
10204 M:      Amit Shah <amit.shah@redhat.com>
10205 L:      virtualization@lists.linux-foundation.org
10206 S:      Maintained
10207 F:      drivers/char/virtio_console.c
10208 F:      include/linux/virtio_console.h
10209 F:      include/uapi/linux/virtio_console.h
10210
10211 VIRTIO CORE, NET AND BLOCK DRIVERS
10212 M:      Rusty Russell <rusty@rustcorp.com.au>
10213 M:      "Michael S. Tsirkin" <mst@redhat.com>
10214 L:      virtualization@lists.linux-foundation.org
10215 S:      Maintained
10216 F:      drivers/virtio/
10217 F:      tools/virtio/
10218 F:      drivers/net/virtio_net.c
10219 F:      drivers/block/virtio_blk.c
10220 F:      include/linux/virtio_*.h
10221 F:      include/uapi/linux/virtio_*.h
10222
10223 VIRTIO HOST (VHOST)
10224 M:      "Michael S. Tsirkin" <mst@redhat.com>
10225 L:      kvm@vger.kernel.org
10226 L:      virtualization@lists.linux-foundation.org
10227 L:      netdev@vger.kernel.org
10228 S:      Maintained
10229 F:      drivers/vhost/
10230 F:      include/uapi/linux/vhost.h
10231
10232 VIA RHINE NETWORK DRIVER
10233 M:      Roger Luethi <rl@hellgate.ch>
10234 S:      Maintained
10235 F:      drivers/net/ethernet/via/via-rhine.c
10236
10237 VIA SD/MMC CARD CONTROLLER DRIVER
10238 M:      Bruce Chang <brucechang@via.com.tw>
10239 M:      Harald Welte <HaraldWelte@viatech.com>
10240 S:      Maintained
10241 F:      drivers/mmc/host/via-sdmmc.c
10242
10243 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
10244 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
10245 L:      linux-fbdev@vger.kernel.org
10246 S:      Maintained
10247 F:      include/linux/via-core.h
10248 F:      include/linux/via-gpio.h
10249 F:      include/linux/via_i2c.h
10250 F:      drivers/video/fbdev/via/
10251
10252 VIA VELOCITY NETWORK DRIVER
10253 M:      Francois Romieu <romieu@fr.zoreil.com>
10254 L:      netdev@vger.kernel.org
10255 S:      Maintained
10256 F:      drivers/net/ethernet/via/via-velocity.*
10257
10258 VIVID VIRTUAL VIDEO DRIVER
10259 M:      Hans Verkuil <hverkuil@xs4all.nl>
10260 L:      linux-media@vger.kernel.org
10261 T:      git git://linuxtv.org/media_tree.git
10262 W:      http://linuxtv.org
10263 S:      Maintained
10264 F:      drivers/media/platform/vivid/*
10265
10266 VLAN (802.1Q)
10267 M:      Patrick McHardy <kaber@trash.net>
10268 L:      netdev@vger.kernel.org
10269 S:      Maintained
10270 F:      drivers/net/macvlan.c
10271 F:      include/linux/if_*vlan.h
10272 F:      net/8021q/
10273
10274 VLYNQ BUS
10275 M:      Florian Fainelli <florian@openwrt.org>
10276 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
10277 S:      Maintained
10278 F:      drivers/vlynq/vlynq.c
10279 F:      include/linux/vlynq.h
10280
10281 VME SUBSYSTEM
10282 M:      Martyn Welch <martyn.welch@ge.com>
10283 M:      Manohar Vanga <manohar.vanga@gmail.com>
10284 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10285 L:      devel@driverdev.osuosl.org
10286 S:      Maintained
10287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10288 F:      Documentation/vme_api.txt
10289 F:      drivers/staging/vme/
10290 F:      drivers/vme/
10291 F:      include/linux/vme*
10292
10293 VMWARE HYPERVISOR INTERFACE
10294 M:      Alok Kataria <akataria@vmware.com>
10295 L:      virtualization@lists.linux-foundation.org
10296 S:      Supported
10297 F:      arch/x86/kernel/cpu/vmware.c
10298
10299 VMWARE BALLOON DRIVER
10300 M:      Xavier Deguillard <xdeguillard@vmware.com>
10301 M:      Philip Moltmann <moltmann@vmware.com>
10302 M:      "VMware, Inc." <pv-drivers@vmware.com>
10303 L:      linux-kernel@vger.kernel.org
10304 S:      Maintained
10305 F:      drivers/misc/vmw_balloon.c
10306
10307 VMWARE VMXNET3 ETHERNET DRIVER
10308 M:      Shreyas Bhatewara <sbhatewara@vmware.com>
10309 M:      "VMware, Inc." <pv-drivers@vmware.com>
10310 L:      netdev@vger.kernel.org
10311 S:      Maintained
10312 F:      drivers/net/vmxnet3/
10313
10314 VMware PVSCSI driver
10315 M:      Arvind Kumar <arvindkumar@vmware.com>
10316 M:      VMware PV-Drivers <pv-drivers@vmware.com>
10317 L:      linux-scsi@vger.kernel.org
10318 S:      Maintained
10319 F:      drivers/scsi/vmw_pvscsi.c
10320 F:      drivers/scsi/vmw_pvscsi.h
10321
10322 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
10323 M:      Liam Girdwood <lgirdwood@gmail.com>
10324 M:      Mark Brown <broonie@kernel.org>
10325 L:      linux-kernel@vger.kernel.org
10326 W:      http://opensource.wolfsonmicro.com/node/15
10327 W:      http://www.slimlogic.co.uk/?p=48
10328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
10329 S:      Supported
10330 F:      drivers/regulator/
10331 F:      include/linux/regulator/
10332
10333 VT1211 HARDWARE MONITOR DRIVER
10334 M:      Juerg Haefliger <juergh@gmail.com>
10335 L:      lm-sensors@lm-sensors.org
10336 S:      Maintained
10337 F:      Documentation/hwmon/vt1211
10338 F:      drivers/hwmon/vt1211.c
10339
10340 VT8231 HARDWARE MONITOR DRIVER
10341 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
10342 L:      lm-sensors@lm-sensors.org
10343 S:      Maintained
10344 F:      drivers/hwmon/vt8231.c
10345
10346 VUB300 USB to SDIO/SD/MMC bridge chip
10347 M:      Tony Olech <tony.olech@elandigitalsystems.com>
10348 L:      linux-mmc@vger.kernel.org
10349 L:      linux-usb@vger.kernel.org
10350 S:      Supported
10351 F:      drivers/mmc/host/vub300.c
10352
10353 W1 DALLAS'S 1-WIRE BUS
10354 M:      Evgeniy Polyakov <zbr@ioremap.net>
10355 S:      Maintained
10356 F:      Documentation/w1/
10357 F:      drivers/w1/
10358
10359 W83791D HARDWARE MONITORING DRIVER
10360 M:      Marc Hulsman <m.hulsman@tudelft.nl>
10361 L:      lm-sensors@lm-sensors.org
10362 S:      Maintained
10363 F:      Documentation/hwmon/w83791d
10364 F:      drivers/hwmon/w83791d.c
10365
10366 W83793 HARDWARE MONITORING DRIVER
10367 M:      Rudolf Marek <r.marek@assembler.cz>
10368 L:      lm-sensors@lm-sensors.org
10369 S:      Maintained
10370 F:      Documentation/hwmon/w83793
10371 F:      drivers/hwmon/w83793.c
10372
10373 W83795 HARDWARE MONITORING DRIVER
10374 M:      Jean Delvare <jdelvare@suse.de>
10375 L:      lm-sensors@lm-sensors.org
10376 S:      Maintained
10377 F:      drivers/hwmon/w83795.c
10378
10379 W83L51xD SD/MMC CARD INTERFACE DRIVER
10380 M:      Pierre Ossman <pierre@ossman.eu>
10381 S:      Maintained
10382 F:      drivers/mmc/host/wbsd.*
10383
10384 WACOM PROTOCOL 4 SERIAL TABLETS
10385 M:      Julian Squires <julian@cipht.net>
10386 M:      Hans de Goede <hdegoede@redhat.com>
10387 L:      linux-input@vger.kernel.org
10388 S:      Maintained
10389 F:      drivers/input/tablet/wacom_serial4.c
10390
10391 WATCHDOG DEVICE DRIVERS
10392 M:      Wim Van Sebroeck <wim@iguana.be>
10393 L:      linux-watchdog@vger.kernel.org
10394 W:      http://www.linux-watchdog.org/
10395 T:      git git://www.linux-watchdog.org/linux-watchdog.git
10396 S:      Maintained
10397 F:      Documentation/watchdog/
10398 F:      drivers/watchdog/
10399 F:      include/linux/watchdog.h
10400 F:      include/uapi/linux/watchdog.h
10401
10402 WD7000 SCSI DRIVER
10403 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
10404 L:      linux-scsi@vger.kernel.org
10405 S:      Maintained
10406 F:      drivers/scsi/wd7000.c
10407
10408 WIIMOTE HID DRIVER
10409 M:      David Herrmann <dh.herrmann@googlemail.com>
10410 L:      linux-input@vger.kernel.org
10411 S:      Maintained
10412 F:      drivers/hid/hid-wiimote*
10413
10414 WINBOND CIR DRIVER
10415 M:      David Härdeman <david@hardeman.nu>
10416 S:      Maintained
10417 F:      drivers/media/rc/winbond-cir.c
10418
10419 WIMAX STACK
10420 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
10421 M:      linux-wimax@intel.com
10422 L:     wimax@linuxwimax.org (subscribers-only)
10423 S:      Supported
10424 W:      http://linuxwimax.org
10425 F:      Documentation/wimax/README.wimax
10426 F:      include/linux/wimax/debug.h
10427 F:      include/net/wimax.h
10428 F:      include/uapi/linux/wimax.h
10429 F:      net/wimax/
10430
10431 WISTRON LAPTOP BUTTON DRIVER
10432 M:      Miloslav Trmac <mitr@volny.cz>
10433 S:      Maintained
10434 F:      drivers/input/misc/wistron_btns.c
10435
10436 WL3501 WIRELESS PCMCIA CARD DRIVER
10437 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
10438 L:      linux-wireless@vger.kernel.org
10439 W:      http://oops.ghostprotocols.net:81/blog
10440 S:      Maintained
10441 F:      drivers/net/wireless/wl3501*
10442
10443 WM97XX TOUCHSCREEN DRIVERS
10444 M:      Mark Brown <broonie@kernel.org>
10445 M:      Liam Girdwood <lrg@slimlogic.co.uk>
10446 L:      linux-input@vger.kernel.org
10447 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
10448 W:      http://opensource.wolfsonmicro.com/node/7
10449 S:      Supported
10450 F:      drivers/input/touchscreen/*wm97*
10451 F:      include/linux/wm97xx.h
10452
10453 WOLFSON MICROELECTRONICS DRIVERS
10454 L:      patches@opensource.wolfsonmicro.com
10455 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
10456 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
10457 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
10458 S:      Supported
10459 F:      Documentation/hwmon/wm83??
10460 F:      arch/arm/mach-s3c64xx/mach-crag6410*
10461 F:      drivers/clk/clk-wm83*.c
10462 F:      drivers/extcon/extcon-arizona.c
10463 F:      drivers/leds/leds-wm83*.c
10464 F:      drivers/gpio/gpio-*wm*.c
10465 F:      drivers/gpio/gpio-arizona.c
10466 F:      drivers/hwmon/wm83??-hwmon.c
10467 F:      drivers/input/misc/wm831x-on.c
10468 F:      drivers/input/touchscreen/wm831x-ts.c
10469 F:      drivers/input/touchscreen/wm97*.c
10470 F:      drivers/mfd/arizona*
10471 F:      drivers/mfd/wm*.c
10472 F:      drivers/power/wm83*.c
10473 F:      drivers/rtc/rtc-wm83*.c
10474 F:      drivers/regulator/wm8*.c
10475 F:      drivers/video/backlight/wm83*_bl.c
10476 F:      drivers/watchdog/wm83*_wdt.c
10477 F:      include/linux/mfd/arizona/
10478 F:      include/linux/mfd/wm831x/
10479 F:      include/linux/mfd/wm8350/
10480 F:      include/linux/mfd/wm8400*
10481 F:      include/linux/wm97xx.h
10482 F:      include/sound/wm????.h
10483 F:      sound/soc/codecs/arizona.?
10484 F:      sound/soc/codecs/wm*
10485
10486 WORKQUEUE
10487 M:      Tejun Heo <tj@kernel.org>
10488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
10489 S:      Maintained
10490 F:      include/linux/workqueue.h
10491 F:      kernel/workqueue.c
10492 F:      Documentation/workqueue.txt
10493
10494 X.25 NETWORK LAYER
10495 M:      Andrew Hendry <andrew.hendry@gmail.com>
10496 L:      linux-x25@vger.kernel.org
10497 S:      Odd Fixes
10498 F:      Documentation/networking/x25*
10499 F:      include/net/x25*
10500 F:      net/x25/
10501
10502 X86 ARCHITECTURE (32-BIT AND 64-BIT)
10503 M:      Thomas Gleixner <tglx@linutronix.de>
10504 M:      Ingo Molnar <mingo@redhat.com>
10505 M:      "H. Peter Anvin" <hpa@zytor.com>
10506 M:      x86@kernel.org
10507 L:      linux-kernel@vger.kernel.org
10508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
10509 S:      Maintained
10510 F:      Documentation/x86/
10511 F:      arch/x86/
10512
10513 X86 PLATFORM DRIVERS
10514 M:      Darren Hart <dvhart@infradead.org>
10515 L:      platform-driver-x86@vger.kernel.org
10516 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
10517 S:      Maintained
10518 F:      drivers/platform/x86/
10519
10520 X86 MCE INFRASTRUCTURE
10521 M:      Tony Luck <tony.luck@intel.com>
10522 M:      Borislav Petkov <bp@alien8.de>
10523 L:      linux-edac@vger.kernel.org
10524 S:      Maintained
10525 F:      arch/x86/kernel/cpu/mcheck/*
10526
10527 X86 VDSO
10528 M:      Andy Lutomirski <luto@amacapital.net>
10529 L:      linux-kernel@vger.kernel.org
10530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
10531 S:      Maintained
10532 F:      arch/x86/vdso/
10533
10534 XC2028/3028 TUNER DRIVER
10535 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10536 L:      linux-media@vger.kernel.org
10537 W:      http://linuxtv.org
10538 T:      git git://linuxtv.org/media_tree.git
10539 S:      Maintained
10540 F:      drivers/media/tuners/tuner-xc2028.*
10541
10542 XEN HYPERVISOR INTERFACE
10543 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10544 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
10545 M:      David Vrabel <david.vrabel@citrix.com>
10546 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
10548 S:      Supported
10549 F:      arch/x86/xen/
10550 F:      drivers/*/xen-*front.c
10551 F:      drivers/xen/
10552 F:      arch/x86/include/asm/xen/
10553 F:      include/xen/
10554 F:      include/uapi/xen/
10555
10556 XEN HYPERVISOR ARM
10557 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
10558 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10559 S:      Supported
10560 F:      arch/arm/xen/
10561 F:      arch/arm/include/asm/xen/
10562
10563 XEN HYPERVISOR ARM64
10564 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
10565 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10566 S:      Supported
10567 F:      arch/arm64/xen/
10568 F:      arch/arm64/include/asm/xen/
10569
10570 XEN NETWORK BACKEND DRIVER
10571 M:      Ian Campbell <ian.campbell@citrix.com>
10572 M:      Wei Liu <wei.liu2@citrix.com>
10573 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10574 L:      netdev@vger.kernel.org
10575 S:      Supported
10576 F:      drivers/net/xen-netback/*
10577
10578 XEN PCI SUBSYSTEM
10579 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10580 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10581 S:      Supported
10582 F:      arch/x86/pci/*xen*
10583 F:      drivers/pci/*xen*
10584
10585 XEN BLOCK SUBSYSTEM
10586 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10587 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10588 S:      Supported
10589 F:      drivers/block/xen-blkback/*
10590 F:      drivers/block/xen*
10591
10592 XEN PVSCSI DRIVERS
10593 M:      Juergen Gross <jgross@suse.com>
10594 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10595 L:      linux-scsi@vger.kernel.org
10596 S:      Supported
10597 F:      drivers/scsi/xen-scsifront.c
10598 F:      drivers/xen/xen-scsiback.c
10599 F:      include/xen/interface/io/vscsiif.h
10600
10601 XEN SWIOTLB SUBSYSTEM
10602 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10603 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
10604 S:      Supported
10605 F:      arch/x86/xen/*swiotlb*
10606 F:      drivers/xen/*swiotlb*
10607
10608 XFS FILESYSTEM
10609 P:      Silicon Graphics Inc
10610 M:      Dave Chinner <david@fromorbit.com>
10611 M:      xfs@oss.sgi.com
10612 L:      xfs@oss.sgi.com
10613 W:      http://oss.sgi.com/projects/xfs
10614 T:      git git://oss.sgi.com/xfs/xfs.git
10615 S:      Supported
10616 F:      Documentation/filesystems/xfs.txt
10617 F:      fs/xfs/
10618
10619 XILINX AXI ETHERNET DRIVER
10620 M:      Anirudha Sarangi <anirudh@xilinx.com>
10621 M:      John Linn <John.Linn@xilinx.com>
10622 S:      Maintained
10623 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
10624
10625 XILINX UARTLITE SERIAL DRIVER
10626 M:      Peter Korsgaard <jacmet@sunsite.dk>
10627 L:      linux-serial@vger.kernel.org
10628 S:      Maintained
10629 F:      drivers/tty/serial/uartlite.c
10630
10631 XILLYBUS DRIVER
10632 M:      Eli Billauer <eli.billauer@gmail.com>
10633 L:      linux-kernel@vger.kernel.org
10634 S:      Supported
10635 F:      drivers/char/xillybus/
10636
10637 XTENSA XTFPGA PLATFORM SUPPORT
10638 M:      Max Filippov <jcmvbkbc@gmail.com>
10639 L:      linux-xtensa@linux-xtensa.org
10640 S:      Maintained
10641 F:      drivers/spi/spi-xtensa-xtfpga.c
10642
10643 YAM DRIVER FOR AX.25
10644 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
10645 L:      linux-hams@vger.kernel.org
10646 S:      Maintained
10647 F:      drivers/net/hamradio/yam*
10648 F:      include/linux/yam.h
10649
10650 YEALINK PHONE DRIVER
10651 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
10652 L:      usbb2k-api-dev@nongnu.org
10653 S:      Maintained
10654 F:      Documentation/input/yealink.txt
10655 F:      drivers/input/misc/yealink.*
10656
10657 Z8530 DRIVER FOR AX.25
10658 M:      Joerg Reuter <jreuter@yaina.de>
10659 W:      http://yaina.de/jreuter/
10660 W:      http://www.qsl.net/dl1bke/
10661 L:      linux-hams@vger.kernel.org
10662 S:      Maintained
10663 F:      Documentation/networking/z8530drv.txt
10664 F:      drivers/net/hamradio/*scc.c
10665 F:      drivers/net/hamradio/z8530.h
10666
10667 ZBUD COMPRESSED PAGE ALLOCATOR
10668 M:      Seth Jennings <sjennings@variantweb.net>
10669 L:      linux-mm@kvack.org
10670 S:      Maintained
10671 F:      mm/zbud.c
10672 F:      include/linux/zbud.h
10673
10674 ZD1211RW WIRELESS DRIVER
10675 M:      Daniel Drake <dsd@gentoo.org>
10676 M:      Ulrich Kunitz <kune@deine-taler.de>
10677 W:      http://zd1211.ath.cx/wiki/DriverRewrite
10678 L:      linux-wireless@vger.kernel.org
10679 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
10680 S:      Maintained
10681 F:      drivers/net/wireless/zd1211rw/
10682
10683 ZR36067 VIDEO FOR LINUX DRIVER
10684 L:      mjpeg-users@lists.sourceforge.net
10685 L:      linux-media@vger.kernel.org
10686 W:      http://mjpeg.sourceforge.net/driver-zoran/
10687 T:      hg http://linuxtv.org/hg/v4l-dvb
10688 S:      Odd Fixes
10689 F:      drivers/media/pci/zoran/
10690
10691 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
10692 M:      Minchan Kim <minchan@kernel.org>
10693 M:      Nitin Gupta <ngupta@vflare.org>
10694 L:      linux-kernel@vger.kernel.org
10695 S:      Maintained
10696 F:      drivers/block/zram/
10697 F:      Documentation/blockdev/zram.txt
10698
10699 ZS DECSTATION Z85C30 SERIAL DRIVER
10700 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10701 S:      Maintained
10702 F:      drivers/tty/serial/zs.*
10703
10704 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
10705 M:      Minchan Kim <minchan@kernel.org>
10706 M:      Nitin Gupta <ngupta@vflare.org>
10707 L:      linux-mm@kvack.org
10708 S:      Maintained
10709 F:      mm/zsmalloc.c
10710 F:      include/linux/zsmalloc.h
10711
10712 ZSWAP COMPRESSED SWAP CACHING
10713 M:      Seth Jennings <sjennings@variantweb.net>
10714 L:      linux-mm@kvack.org
10715 S:      Maintained
10716 F:      mm/zswap.c
10717
10718 THE REST
10719 M:      Linus Torvalds <torvalds@linux-foundation.org>
10720 L:      linux-kernel@vger.kernel.org
10721 Q:      http://patchwork.kernel.org/project/LKML/list/
10722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
10723 S:      Buried alive in reporters
10724 F:      *
10725 F:      */