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