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