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