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