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