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