ath9k: Use normal queues for offchannel frames
[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
1615 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1616 M:      Christian Lamparter <chunkeey@googlemail.com>
1617 L:      linux-wireless@vger.kernel.org
1618 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1619 S:      Maintained
1620 F:      drivers/net/wireless/ath/carl9170/
1621
1622 ATK0110 HWMON DRIVER
1623 M:      Luca Tettamanti <kronos.it@gmail.com>
1624 L:      lm-sensors@lm-sensors.org
1625 S:      Maintained
1626 F:      drivers/hwmon/asus_atk0110.c
1627
1628 ATI_REMOTE2 DRIVER
1629 M:      Ville Syrjala <syrjala@sci.fi>
1630 S:      Maintained
1631 F:      drivers/input/misc/ati_remote2.c
1632
1633 ATLX ETHERNET DRIVERS
1634 M:      Jay Cliburn <jcliburn@gmail.com>
1635 M:      Chris Snook <chris.snook@gmail.com>
1636 L:      netdev@vger.kernel.org
1637 W:      http://sourceforge.net/projects/atl1
1638 W:      http://atl1.sourceforge.net
1639 S:      Maintained
1640 F:      drivers/net/ethernet/atheros/
1641
1642 ATM
1643 M:      Chas Williams <chas@cmf.nrl.navy.mil>
1644 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1645 L:      netdev@vger.kernel.org
1646 W:      http://linux-atm.sourceforge.net
1647 S:      Maintained
1648 F:      drivers/atm/
1649 F:      include/linux/atm*
1650 F:      include/uapi/linux/atm*
1651
1652 ATMEL AT91 / AT32 MCI DRIVER
1653 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1654 S:      Maintained
1655 F:      drivers/mmc/host/atmel-mci.c
1656 F:      drivers/mmc/host/atmel-mci-regs.h
1657
1658 ATMEL AT91 / AT32 SERIAL DRIVER
1659 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1660 S:      Supported
1661 F:      drivers/tty/serial/atmel_serial.c
1662
1663 ATMEL DMA DRIVER
1664 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1666 S:      Supported
1667 F:      drivers/dma/at_hdmac.c
1668 F:      drivers/dma/at_hdmac_regs.h
1669 F:      include/linux/platform_data/dma-atmel.h
1670
1671 ATMEL I2C DRIVER
1672 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1673 L:      linux-i2c@vger.kernel.org
1674 S:      Supported
1675 F:      drivers/i2c/busses/i2c-at91.c
1676
1677 ATMEL ISI DRIVER
1678 M:      Josh Wu <josh.wu@atmel.com>
1679 L:      linux-media@vger.kernel.org
1680 S:      Supported
1681 F:      drivers/media/platform/soc_camera/atmel-isi.c
1682 F:      include/media/atmel-isi.h
1683
1684 ATMEL LCDFB DRIVER
1685 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1686 L:      linux-fbdev@vger.kernel.org
1687 S:      Maintained
1688 F:      drivers/video/fbdev/atmel_lcdfb.c
1689 F:      include/video/atmel_lcdc.h
1690
1691 ATMEL MACB ETHERNET DRIVER
1692 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1693 S:      Supported
1694 F:      drivers/net/ethernet/cadence/
1695
1696 ATMEL SPI DRIVER
1697 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1698 S:      Supported
1699 F:      drivers/spi/spi-atmel.*
1700
1701 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1702 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1704 S:      Supported
1705 F:      drivers/misc/atmel_tclib.c
1706 F:      drivers/clocksource/tcb_clksrc.c
1707
1708 ATMEL USBA UDC DRIVER
1709 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1711 S:      Supported
1712 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1713
1714 ATMEL WIRELESS DRIVER
1715 M:      Simon Kelley <simon@thekelleys.org.uk>
1716 L:      linux-wireless@vger.kernel.org
1717 W:      http://www.thekelleys.org.uk/atmel
1718 W:      http://atmelwlandriver.sourceforge.net/
1719 S:      Maintained
1720 F:      drivers/net/wireless/atmel*
1721
1722 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1723 M:      Bradley Grove <linuxdrivers@attotech.com>
1724 L:      linux-scsi@vger.kernel.org
1725 W:      http://www.attotech.com
1726 S:      Supported
1727 F:      drivers/scsi/esas2r
1728
1729 AUDIT SUBSYSTEM
1730 M:      Eric Paris <eparis@redhat.com>
1731 L:      linux-audit@redhat.com (subscribers-only)
1732 W:      http://people.redhat.com/sgrubb/audit/
1733 T:      git git://git.infradead.org/users/eparis/audit.git
1734 S:      Maintained
1735 F:      include/linux/audit.h
1736 F:      include/uapi/linux/audit.h
1737 F:      kernel/audit*
1738
1739 AUXILIARY DISPLAY DRIVERS
1740 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1741 W:      http://miguelojeda.es/auxdisplay.htm
1742 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1743 S:      Maintained
1744 F:      drivers/auxdisplay/
1745 F:      include/linux/cfag12864b.h
1746
1747 AVR32 ARCHITECTURE
1748 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1749 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1750 W:      http://www.atmel.com/products/AVR32/
1751 W:      http://mirror.egtvedt.no/avr32linux.org/
1752 W:      http://avrfreaks.net/
1753 S:      Maintained
1754 F:      arch/avr32/
1755
1756 AVR32/AT32AP MACHINE SUPPORT
1757 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1758 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1759 S:      Maintained
1760 F:      arch/avr32/mach-at32ap/
1761
1762 AX.25 NETWORK LAYER
1763 M:      Ralf Baechle <ralf@linux-mips.org>
1764 L:      linux-hams@vger.kernel.org
1765 W:      http://www.linux-ax25.org/
1766 S:      Maintained
1767 F:      include/uapi/linux/ax25.h
1768 F:      include/net/ax25.h
1769 F:      net/ax25/
1770
1771 AZ6007 DVB DRIVER
1772 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
1773 L:      linux-media@vger.kernel.org
1774 W:      http://linuxtv.org
1775 T:      git git://linuxtv.org/media_tree.git
1776 S:      Maintained
1777 F:      drivers/media/usb/dvb-usb-v2/az6007.c
1778
1779 AZTECH FM RADIO RECEIVER DRIVER
1780 M:      Hans Verkuil <hverkuil@xs4all.nl>
1781 L:      linux-media@vger.kernel.org
1782 T:      git git://linuxtv.org/media_tree.git
1783 W:      http://linuxtv.org
1784 S:      Maintained
1785 F:      drivers/media/radio/radio-aztech*
1786
1787 B43 WIRELESS DRIVER
1788 M:      Stefano Brivio <stefano.brivio@polimi.it>
1789 L:      linux-wireless@vger.kernel.org
1790 L:      b43-dev@lists.infradead.org
1791 W:      http://wireless.kernel.org/en/users/Drivers/b43
1792 S:      Maintained
1793 F:      drivers/net/wireless/b43/
1794
1795 B43LEGACY WIRELESS DRIVER
1796 M:      Larry Finger <Larry.Finger@lwfinger.net>
1797 M:      Stefano Brivio <stefano.brivio@polimi.it>
1798 L:      linux-wireless@vger.kernel.org
1799 L:      b43-dev@lists.infradead.org
1800 W:      http://wireless.kernel.org/en/users/Drivers/b43
1801 S:      Maintained
1802 F:      drivers/net/wireless/b43legacy/
1803
1804 BACKLIGHT CLASS/SUBSYSTEM
1805 M:      Jingoo Han <jg1.han@samsung.com>
1806 M:      Bryan Wu <cooloney@gmail.com>
1807 M:      Lee Jones <lee.jones@linaro.org>
1808 S:      Maintained
1809 F:      drivers/video/backlight/
1810 F:      include/linux/backlight.h
1811
1812 BATMAN ADVANCED
1813 M:      Marek Lindner <mareklindner@neomailbox.ch>
1814 M:      Simon Wunderlich <sw@simonwunderlich.de>
1815 M:      Antonio Quartulli <antonio@meshcoding.com>
1816 L:      b.a.t.m.a.n@lists.open-mesh.org
1817 W:      http://www.open-mesh.org/
1818 S:      Maintained
1819 F:      net/batman-adv/
1820
1821 BAYCOM/HDLCDRV DRIVERS FOR AX.25
1822 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
1823 L:      linux-hams@vger.kernel.org
1824 W:      http://www.baycom.org/~tom/ham/ham.html
1825 S:      Maintained
1826 F:      drivers/net/hamradio/baycom*
1827
1828 BCACHE (BLOCK LAYER CACHE)
1829 M:      Kent Overstreet <kmo@daterainc.com>
1830 L:      linux-bcache@vger.kernel.org
1831 W:      http://bcache.evilpiepirate.org
1832 S:      Maintained:
1833 F:      drivers/md/bcache/
1834
1835 BECEEM BCS200/BCS220-3/BCSM250 WIMAX SUPPORT
1836 M: Kevin McKinney <klmckinney1@gmail.com>
1837 M: Matthias Beyer <mail@beyermatthias.de>
1838 L: devel@driverdev.osuosl.org
1839 S: Maintained
1840 F: drivers/staging/bcm*
1841
1842 BEFS FILE SYSTEM
1843 S:      Orphan
1844 F:      Documentation/filesystems/befs.txt
1845 F:      fs/befs/
1846
1847 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
1848 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
1849 L: netdev@vger.kernel.org
1850 S: Maintained
1851 F: drivers/net/ethernet/ec_bhf.c
1852
1853 BFS FILE SYSTEM
1854 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
1855 S:      Maintained
1856 F:      Documentation/filesystems/bfs.txt
1857 F:      fs/bfs/
1858 F:      include/uapi/linux/bfs_fs.h
1859
1860 BLACKFIN ARCHITECTURE
1861 M:      Steven Miao <realmz6@gmail.com>
1862 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1863 T:      git git://git.code.sf.net/p/adi-linux/code
1864 W:      http://blackfin.uclinux.org
1865 S:      Supported
1866 F:      arch/blackfin/
1867
1868 BLACKFIN EMAC DRIVER
1869 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1870 W:      http://blackfin.uclinux.org
1871 S:      Supported
1872 F:      drivers/net/ethernet/adi/
1873
1874 BLACKFIN RTC DRIVER
1875 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1876 W:      http://blackfin.uclinux.org
1877 S:      Supported
1878 F:      drivers/rtc/rtc-bfin.c
1879
1880 BLACKFIN SDH DRIVER
1881 M:      Sonic Zhang <sonic.zhang@analog.com>
1882 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1883 W:      http://blackfin.uclinux.org
1884 S:      Supported
1885 F:      drivers/mmc/host/bfin_sdh.c
1886
1887 BLACKFIN SERIAL DRIVER
1888 M:      Sonic Zhang <sonic.zhang@analog.com>
1889 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1890 W:      http://blackfin.uclinux.org
1891 S:      Supported
1892 F:      drivers/tty/serial/bfin_uart.c
1893
1894 BLACKFIN WATCHDOG DRIVER
1895 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1896 W:      http://blackfin.uclinux.org
1897 S:      Supported
1898 F:      drivers/watchdog/bfin_wdt.c
1899
1900 BLACKFIN I2C TWI DRIVER
1901 M:      Sonic Zhang <sonic.zhang@analog.com>
1902 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1903 W:      http://blackfin.uclinux.org/
1904 S:      Supported
1905 F:      drivers/i2c/busses/i2c-bfin-twi.c
1906
1907 BLACKFIN MEDIA DRIVER
1908 M:      Scott Jiang <scott.jiang.linux@gmail.com>
1909 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1910 W:      http://blackfin.uclinux.org/
1911 S:      Supported
1912 F:      drivers/media/platform/blackfin/
1913 F:      drivers/media/i2c/adv7183*
1914 F:      drivers/media/i2c/vs6624*
1915
1916 BLINKM RGB LED DRIVER
1917 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
1918 S:      Maintained
1919 F:      drivers/leds/leds-blinkm.c
1920
1921 BLOCK LAYER
1922 M:      Jens Axboe <axboe@kernel.dk>
1923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
1924 S:      Maintained
1925 F:      block/
1926
1927 BLOCK2MTD DRIVER
1928 M:      Joern Engel <joern@lazybastard.org>
1929 L:      linux-mtd@lists.infradead.org
1930 S:      Maintained
1931 F:      drivers/mtd/devices/block2mtd.c
1932
1933 BLUETOOTH DRIVERS
1934 M:      Marcel Holtmann <marcel@holtmann.org>
1935 M:      Gustavo Padovan <gustavo@padovan.org>
1936 M:      Johan Hedberg <johan.hedberg@gmail.com>
1937 L:      linux-bluetooth@vger.kernel.org
1938 W:      http://www.bluez.org/
1939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
1941 S:      Maintained
1942 F:      drivers/bluetooth/
1943
1944 BLUETOOTH SUBSYSTEM
1945 M:      Marcel Holtmann <marcel@holtmann.org>
1946 M:      Gustavo Padovan <gustavo@padovan.org>
1947 M:      Johan Hedberg <johan.hedberg@gmail.com>
1948 L:      linux-bluetooth@vger.kernel.org
1949 W:      http://www.bluez.org/
1950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
1952 S:      Maintained
1953 F:      net/bluetooth/
1954 F:      include/net/bluetooth/
1955
1956 BONDING DRIVER
1957 M:      Jay Vosburgh <j.vosburgh@gmail.com>
1958 M:      Veaceslav Falico <vfalico@gmail.com>
1959 M:      Andy Gospodarek <andy@greyhouse.net>
1960 L:      netdev@vger.kernel.org
1961 W:      http://sourceforge.net/projects/bonding/
1962 S:      Supported
1963 F:      drivers/net/bonding/
1964 F:      include/uapi/linux/if_bonding.h
1965
1966 BPF (Safe dynamic programs and tools)
1967 M:      Alexei Starovoitov <ast@kernel.org>
1968 L:      netdev@vger.kernel.org
1969 L:      linux-kernel@vger.kernel.org
1970 S:      Supported
1971 F:      kernel/bpf/
1972
1973 BROADCOM B44 10/100 ETHERNET DRIVER
1974 M:      Gary Zambrano <zambrano@broadcom.com>
1975 L:      netdev@vger.kernel.org
1976 S:      Supported
1977 F:      drivers/net/ethernet/broadcom/b44.*
1978
1979 BROADCOM GENET ETHERNET DRIVER
1980 M:      Florian Fainelli <f.fainelli@gmail.com>
1981 L:      netdev@vger.kernel.org
1982 S:      Supported
1983 F:      drivers/net/ethernet/broadcom/genet/
1984
1985 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1986 M:      Sony Chacko <sony.chacko@qlogic.com>
1987 M:      Dept-HSGLinuxNICDev@qlogic.com
1988 L:      netdev@vger.kernel.org
1989 S:      Supported
1990 F:      drivers/net/ethernet/broadcom/bnx2.*
1991 F:      drivers/net/ethernet/broadcom/bnx2_*
1992
1993 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
1994 M:      Ariel Elior <ariel.elior@qlogic.com>
1995 L:      netdev@vger.kernel.org
1996 S:      Supported
1997 F:      drivers/net/ethernet/broadcom/bnx2x/
1998
1999 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2000 M:      Christian Daudt <bcm@fixthebug.org>
2001 M:      Matt Porter <mporter@linaro.org>
2002 L:      bcm-kernel-feedback-list@broadcom.com
2003 T:      git git://github.com/broadcom/mach-bcm
2004 S:      Maintained
2005 F:      arch/arm/mach-bcm/
2006 F:      arch/arm/boot/dts/bcm113*
2007 F:      arch/arm/boot/dts/bcm216*
2008 F:      arch/arm/boot/dts/bcm281*
2009 F:      arch/arm/configs/bcm_defconfig
2010 F:      drivers/mmc/host/sdhci-bcm-kona.c
2011 F:      drivers/clocksource/bcm_kona_timer.c
2012
2013 BROADCOM BCM2835 ARM ARCHICTURE
2014 M:      Stephen Warren <swarren@wwwdotorg.org>
2015 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
2017 S:      Maintained
2018 F:      arch/arm/mach-bcm/board_bcm2835.c
2019 F:      arch/arm/boot/dts/bcm2835*
2020 F:      arch/arm/configs/bcm2835_defconfig
2021 F:      drivers/*/*bcm2835*
2022
2023 BROADCOM BCM5301X ARM ARCHICTURE
2024 M:      Hauke Mehrtens <hauke@hauke-m.de>
2025 L:      linux-arm-kernel@lists.infradead.org
2026 S:      Maintained
2027 F:      arch/arm/mach-bcm/bcm_5301x.c
2028 F:      arch/arm/boot/dts/bcm5301x.dtsi
2029 F:      arch/arm/boot/dts/bcm470*
2030
2031 BROADCOM BCM7XXX ARM ARCHITECTURE
2032 M:      Marc Carino <marc.ceeeee@gmail.com>
2033 M:      Brian Norris <computersforpeace@gmail.com>
2034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 S:      Maintained
2036 F:      arch/arm/mach-bcm/*brcmstb*
2037 F:      arch/arm/boot/dts/bcm7*.dts*
2038
2039 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2040 M:      Prashant Sreedharan <prashant@broadcom.com>
2041 M:      Michael Chan <mchan@broadcom.com>
2042 L:      netdev@vger.kernel.org
2043 S:      Supported
2044 F:      drivers/net/ethernet/broadcom/tg3.*
2045
2046 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2047 M:      Brett Rudley <brudley@broadcom.com>
2048 M:      Arend van Spriel <arend@broadcom.com>
2049 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2050 M:      Hante Meuleman <meuleman@broadcom.com>
2051 L:      linux-wireless@vger.kernel.org
2052 L:      brcm80211-dev-list@broadcom.com
2053 S:      Supported
2054 F:      drivers/net/wireless/brcm80211/
2055
2056 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2057 M:      QLogic-Storage-Upstream@qlogic.com
2058 L:      linux-scsi@vger.kernel.org
2059 S:      Supported
2060 F:      drivers/scsi/bnx2fc/
2061
2062 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2063 M:      QLogic-Storage-Upstream@qlogic.com
2064 L:      linux-scsi@vger.kernel.org
2065 S:      Supported
2066 F:      drivers/scsi/bnx2i/
2067
2068 BROADCOM KONA GPIO DRIVER
2069 M:      Markus Mayer <markus.mayer@linaro.org>
2070 L:      bcm-kernel-feedback-list@broadcom.com
2071 S:      Supported
2072 F:      drivers/gpio/gpio-bcm-kona.c
2073 F:      Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt
2074
2075 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2076 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2077 L:      linux-wireless@vger.kernel.org
2078 S:      Maintained
2079 F:      drivers/bcma/
2080 F:      include/linux/bcma/
2081
2082 BROADCOM SYSTEMPORT ETHERNET DRIVER
2083 M:      Florian Fainelli <f.fainelli@gmail.com>
2084 L:      netdev@vger.kernel.org
2085 S:      Supported
2086 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2087
2088 BROCADE BFA FC SCSI DRIVER
2089 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2090 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2091 L:      linux-scsi@vger.kernel.org
2092 S:      Supported
2093 F:      drivers/scsi/bfa/
2094
2095 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2096 M:      Rasesh Mody <rmody@brocade.com>
2097 L:      netdev@vger.kernel.org
2098 S:      Supported
2099 F:      drivers/net/ethernet/brocade/bna/
2100
2101 BSG (block layer generic sg v4 driver)
2102 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2103 L:      linux-scsi@vger.kernel.org
2104 S:      Supported
2105 F:      block/bsg.c
2106 F:      include/linux/bsg.h
2107 F:      include/uapi/linux/bsg.h
2108
2109 BT87X AUDIO DRIVER
2110 M:      Clemens Ladisch <clemens@ladisch.de>
2111 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2112 T:      git git://git.alsa-project.org/alsa-kernel.git
2113 S:      Maintained
2114 F:      Documentation/sound/alsa/Bt87x.txt
2115 F:      sound/pci/bt87x.c
2116
2117 BT8XXGPIO DRIVER
2118 M:      Michael Buesch <m@bues.ch>
2119 W:      http://bu3sch.de/btgpio.php
2120 S:      Maintained
2121 F:      drivers/gpio/gpio-bt8xx.c
2122
2123 BTRFS FILE SYSTEM
2124 M:      Chris Mason <clm@fb.com>
2125 M:      Josef Bacik <jbacik@fb.com>
2126 L:      linux-btrfs@vger.kernel.org
2127 W:      http://btrfs.wiki.kernel.org/
2128 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2130 S:      Maintained
2131 F:      Documentation/filesystems/btrfs.txt
2132 F:      fs/btrfs/
2133
2134 BTTV VIDEO4LINUX DRIVER
2135 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
2136 L:      linux-media@vger.kernel.org
2137 W:      http://linuxtv.org
2138 T:      git git://linuxtv.org/media_tree.git
2139 S:      Odd fixes
2140 F:      Documentation/video4linux/bttv/
2141 F:      drivers/media/pci/bt8xx/bttv*
2142
2143 BUSLOGIC SCSI DRIVER
2144 M:      Khalid Aziz <khalid@gonehiking.org>
2145 L:      linux-scsi@vger.kernel.org
2146 S:      Maintained
2147 F:      drivers/scsi/BusLogic.*
2148 F:      drivers/scsi/FlashPoint.*
2149
2150 C-MEDIA CMI8788 DRIVER
2151 M:      Clemens Ladisch <clemens@ladisch.de>
2152 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2153 T:      git git://git.alsa-project.org/alsa-kernel.git
2154 S:      Maintained
2155 F:      sound/pci/oxygen/
2156
2157 C6X ARCHITECTURE
2158 M:      Mark Salter <msalter@redhat.com>
2159 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2160 L:      linux-c6x-dev@linux-c6x.org
2161 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2162 S:      Maintained
2163 F:      arch/c6x/
2164
2165 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2166 M:      David Howells <dhowells@redhat.com>
2167 L:      linux-cachefs@redhat.com
2168 S:      Supported
2169 F:      Documentation/filesystems/caching/cachefiles.txt
2170 F:      fs/cachefiles/
2171
2172 CADET FM/AM RADIO RECEIVER DRIVER
2173 M:      Hans Verkuil <hverkuil@xs4all.nl>
2174 L:      linux-media@vger.kernel.org
2175 T:      git git://linuxtv.org/media_tree.git
2176 W:      http://linuxtv.org
2177 S:      Maintained
2178 F:      drivers/media/radio/radio-cadet*
2179
2180 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2181 M:      Jonathan Corbet <corbet@lwn.net>
2182 L:      linux-media@vger.kernel.org
2183 T:      git git://linuxtv.org/media_tree.git
2184 S:      Maintained
2185 F:      Documentation/video4linux/cafe_ccic
2186 F:      drivers/media/platform/marvell-ccic/
2187
2188 CAIF NETWORK LAYER
2189 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2190 L:      netdev@vger.kernel.org
2191 S:      Supported
2192 F:      Documentation/networking/caif/
2193 F:      drivers/net/caif/
2194 F:      include/uapi/linux/caif/
2195 F:      include/net/caif/
2196 F:      net/caif/
2197
2198 CALGARY x86-64 IOMMU
2199 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2200 M:      "Jon D. Mason" <jdmason@kudzu.us>
2201 L:      discuss@x86-64.org
2202 S:      Maintained
2203 F:      arch/x86/kernel/pci-calgary_64.c
2204 F:      arch/x86/kernel/tce_64.c
2205 F:      arch/x86/include/asm/calgary.h
2206 F:      arch/x86/include/asm/tce.h
2207
2208 CAN NETWORK LAYER
2209 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2210 L:      linux-can@vger.kernel.org
2211 W:      http://gitorious.org/linux-can
2212 T:      git git://gitorious.org/linux-can/linux-can-next.git
2213 S:      Maintained
2214 F:      Documentation/networking/can.txt
2215 F:      net/can/
2216 F:      include/linux/can/core.h
2217 F:      include/uapi/linux/can.h
2218 F:      include/uapi/linux/can/bcm.h
2219 F:      include/uapi/linux/can/raw.h
2220 F:      include/uapi/linux/can/gw.h
2221
2222 CAN NETWORK DRIVERS
2223 M:      Wolfgang Grandegger <wg@grandegger.com>
2224 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2225 L:      linux-can@vger.kernel.org
2226 W:      http://gitorious.org/linux-can
2227 T:      git git://gitorious.org/linux-can/linux-can-next.git
2228 S:      Maintained
2229 F:      drivers/net/can/
2230 F:      include/linux/can/dev.h
2231 F:      include/linux/can/platform/
2232 F:      include/uapi/linux/can/error.h
2233 F:      include/uapi/linux/can/netlink.h
2234
2235 CAPABILITIES
2236 M:      Serge Hallyn <serge.hallyn@canonical.com>
2237 L:      linux-security-module@vger.kernel.org
2238 S:      Supported
2239 F:      include/linux/capability.h
2240 F:      include/uapi/linux/capability.h
2241 F:      security/capability.c
2242 F:      security/commoncap.c
2243 F:      kernel/capability.c
2244
2245 CELL BROADBAND ENGINE ARCHITECTURE
2246 M:      Arnd Bergmann <arnd@arndb.de>
2247 L:      linuxppc-dev@lists.ozlabs.org
2248 L:      cbe-oss-dev@lists.ozlabs.org
2249 W:      http://www.ibm.com/developerworks/power/cell/
2250 S:      Supported
2251 F:      arch/powerpc/include/asm/cell*.h
2252 F:      arch/powerpc/include/asm/spu*.h
2253 F:      arch/powerpc/include/uapi/asm/spu*.h
2254 F:      arch/powerpc/oprofile/*cell*
2255 F:      arch/powerpc/platforms/cell/
2256
2257 CEPH DISTRIBUTED FILE SYSTEM CLIENT
2258 M:      Sage Weil <sage@inktank.com>
2259 L:      ceph-devel@vger.kernel.org
2260 W:      http://ceph.com/
2261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2262 S:      Supported
2263 F:      Documentation/filesystems/ceph.txt
2264 F:      fs/ceph/
2265 F:      net/ceph/
2266 F:      include/linux/ceph/
2267 F:      include/linux/crush/
2268
2269 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2270 L:      linux-usb@vger.kernel.org
2271 S:      Orphan
2272 F:      Documentation/usb/WUSB-Design-overview.txt
2273 F:      Documentation/usb/wusb-cbaf
2274 F:      drivers/usb/host/hwa-hc.c
2275 F:      drivers/usb/host/whci/
2276 F:      drivers/usb/wusbcore/
2277 F:      include/linux/usb/wusb*
2278
2279 CFAG12864B LCD DRIVER
2280 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2281 W:      http://miguelojeda.es/auxdisplay.htm
2282 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2283 S:      Maintained
2284 F:      drivers/auxdisplay/cfag12864b.c
2285 F:      include/linux/cfag12864b.h
2286
2287 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2288 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2289 W:      http://miguelojeda.es/auxdisplay.htm
2290 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2291 S:      Maintained
2292 F:      drivers/auxdisplay/cfag12864bfb.c
2293 F:      include/linux/cfag12864b.h
2294
2295 CFG80211 and NL80211
2296 M:      Johannes Berg <johannes@sipsolutions.net>
2297 L:      linux-wireless@vger.kernel.org
2298 W:      http://wireless.kernel.org/
2299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2301 S:      Maintained
2302 F:      include/uapi/linux/nl80211.h
2303 F:      include/net/cfg80211.h
2304 F:      net/wireless/*
2305 X:      net/wireless/wext*
2306
2307 CHAR and MISC DRIVERS
2308 M:      Arnd Bergmann <arnd@arndb.de>
2309 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2311 S:      Supported
2312 F:      drivers/char/*
2313 F:      drivers/misc/*
2314 F:      include/linux/miscdevice.h
2315
2316 CHECKPATCH
2317 M:      Andy Whitcroft <apw@canonical.com>
2318 M:      Joe Perches <joe@perches.com>
2319 S:      Maintained
2320 F:      scripts/checkpatch.pl
2321
2322 CHINESE DOCUMENTATION
2323 M:      Harry Wei <harryxiyou@gmail.com>
2324 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2325 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2326 S:      Maintained
2327 F:      Documentation/zh_CN/
2328
2329 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2330 M:      Peter Chen <Peter.Chen@freescale.com>
2331 T:      git git://github.com/hzpeterchen/linux-usb.git
2332 L:      linux-usb@vger.kernel.org
2333 S:      Maintained
2334 F:      drivers/usb/chipidea/
2335
2336 CHROME HARDWARE PLATFORM SUPPORT
2337 M:      Olof Johansson <olof@lixom.net>
2338 S:      Maintained
2339 F:      drivers/platform/chrome/
2340
2341 CISCO VIC ETHERNET NIC DRIVER
2342 M:      Christian Benvenuti <benve@cisco.com>
2343 M:      Sujith Sankar <ssujith@cisco.com>
2344 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2345 M:      Neel Patel <neepatel@cisco.com>
2346 S:      Supported
2347 F:      drivers/net/ethernet/cisco/enic/
2348
2349 CISCO VIC LOW LATENCY NIC DRIVER
2350 M:      Upinder Malhi <umalhi@cisco.com>
2351 S:      Supported
2352 F:      drivers/infiniband/hw/usnic
2353
2354 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2355 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2356 L:      netdev@vger.kernel.org
2357 S:      Maintained
2358 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2359
2360 CIRRUS LOGIC AUDIO CODEC DRIVERS
2361 M:      Brian Austin <brian.austin@cirrus.com>
2362 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2363 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2364 S:      Maintained
2365 F:      sound/soc/codecs/cs*
2366
2367 CLEANCACHE API
2368 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2369 L:      linux-kernel@vger.kernel.org
2370 S:      Maintained
2371 F:      mm/cleancache.c
2372 F:      include/linux/cleancache.h
2373
2374 CLK API
2375 M:      Russell King <linux@arm.linux.org.uk>
2376 S:      Maintained
2377 F:      include/linux/clk.h
2378
2379 CLOCKSOURCE, CLOCKEVENT DRIVERS
2380 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2381 M:      Thomas Gleixner <tglx@linutronix.de>
2382 L:      linux-kernel@vger.kernel.org
2383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2384 S:      Supported
2385 F:      drivers/clocksource
2386
2387 CISCO FCOE HBA DRIVER
2388 M:      Hiral Patel <hiralpat@cisco.com>
2389 M:      Suma Ramars <sramars@cisco.com>
2390 M:      Brian Uchino <buchino@cisco.com>
2391 L:      linux-scsi@vger.kernel.org
2392 S:      Supported
2393 F:      drivers/scsi/fnic/
2394
2395 CMPC ACPI DRIVER
2396 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2397 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2398 L:      platform-driver-x86@vger.kernel.org
2399 S:      Supported
2400 F:      drivers/platform/x86/classmate-laptop.c
2401
2402 COCCINELLE/Semantic Patches (SmPL)
2403 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2404 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2405 M:      Nicolas Palix <nicolas.palix@imag.fr>
2406 M:      Michal Marek <mmarek@suse.cz>
2407 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2409 W:      http://coccinelle.lip6.fr/
2410 S:      Supported
2411 F:      Documentation/coccinelle.txt
2412 F:      scripts/coccinelle/
2413 F:      scripts/coccicheck
2414
2415 CODA FILE SYSTEM
2416 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2417 M:      coda@cs.cmu.edu
2418 L:      codalist@coda.cs.cmu.edu
2419 W:      http://www.coda.cs.cmu.edu/
2420 S:      Maintained
2421 F:      Documentation/filesystems/coda.txt
2422 F:      fs/coda/
2423 F:      include/linux/coda*.h
2424 F:      include/uapi/linux/coda*.h
2425
2426 COMMON CLK FRAMEWORK
2427 M:      Mike Turquette <mturquette@linaro.org>
2428 L:      linux-kernel@vger.kernel.org
2429 T:      git git://git.linaro.org/people/mturquette/linux.git
2430 S:      Maintained
2431 F:      drivers/clk/
2432 X:      drivers/clk/clkdev.c
2433 F:      include/linux/clk-pr*
2434 F:      include/linux/clk/
2435
2436 COMMON INTERNET FILE SYSTEM (CIFS)
2437 M:      Steve French <sfrench@samba.org>
2438 L:      linux-cifs@vger.kernel.org
2439 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2440 W:      http://linux-cifs.samba.org/
2441 Q:      http://patchwork.ozlabs.org/project/linux-cifs-client/list/
2442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
2443 S:      Supported
2444 F:      Documentation/filesystems/cifs/
2445 F:      fs/cifs/
2446
2447 COMPACTPCI HOTPLUG CORE
2448 M:      Scott Murray <scott@spiteful.org>
2449 L:      linux-pci@vger.kernel.org
2450 S:      Maintained
2451 F:      drivers/pci/hotplug/cpci_hotplug*
2452
2453 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2454 M:      Scott Murray <scott@spiteful.org>
2455 L:      linux-pci@vger.kernel.org
2456 S:      Maintained
2457 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2458
2459 COMPACTPCI HOTPLUG GENERIC DRIVER
2460 M:      Scott Murray <scott@spiteful.org>
2461 L:      linux-pci@vger.kernel.org
2462 S:      Maintained
2463 F:      drivers/pci/hotplug/cpcihp_generic.c
2464
2465 COMPAL LAPTOP SUPPORT
2466 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2467 L:      platform-driver-x86@vger.kernel.org
2468 S:      Maintained
2469 F:      drivers/platform/x86/compal-laptop.c
2470
2471 CONEXANT ACCESSRUNNER USB DRIVER
2472 M:      Simon Arlott <cxacru@fire.lp0.eu>
2473 L:      accessrunner-general@lists.sourceforge.net
2474 W:      http://accessrunner.sourceforge.net/
2475 S:      Maintained
2476 F:      drivers/usb/atm/cxacru.c
2477
2478 CONFIGFS
2479 M:      Joel Becker <jlbec@evilplan.org>
2480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2481 S:      Supported
2482 F:      fs/configfs/
2483 F:      include/linux/configfs.h
2484
2485 CONNECTOR
2486 M:      Evgeniy Polyakov <zbr@ioremap.net>
2487 L:      netdev@vger.kernel.org
2488 S:      Maintained
2489 F:      drivers/connector/
2490
2491 CONTROL GROUP (CGROUP)
2492 M:      Tejun Heo <tj@kernel.org>
2493 M:      Li Zefan <lizefan@huawei.com>
2494 L:      cgroups@vger.kernel.org
2495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2496 S:      Maintained
2497 F:      Documentation/cgroups/
2498 F:      include/linux/cgroup*
2499 F:      kernel/cgroup*
2500
2501 CONTROL GROUP - CPUSET
2502 M:      Li Zefan <lizefan@huawei.com>
2503 L:      cgroups@vger.kernel.org
2504 W:      http://www.bullopensource.org/cpuset/
2505 W:      http://oss.sgi.com/projects/cpusets/
2506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2507 S:      Maintained
2508 F:      Documentation/cgroups/cpusets.txt
2509 F:      include/linux/cpuset.h
2510 F:      kernel/cpuset.c
2511
2512 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2513 M:      Johannes Weiner <hannes@cmpxchg.org>
2514 M:      Michal Hocko <mhocko@suse.cz>
2515 L:      cgroups@vger.kernel.org
2516 L:      linux-mm@kvack.org
2517 S:      Maintained
2518 F:      mm/memcontrol.c
2519 F:      mm/page_cgroup.c
2520
2521 CORETEMP HARDWARE MONITORING DRIVER
2522 M:      Fenghua Yu <fenghua.yu@intel.com>
2523 L:      lm-sensors@lm-sensors.org
2524 S:      Maintained
2525 F:      Documentation/hwmon/coretemp
2526 F:      drivers/hwmon/coretemp.c
2527
2528 COSA/SRP SYNC SERIAL DRIVER
2529 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2530 W:      http://www.fi.muni.cz/~kas/cosa/
2531 S:      Maintained
2532 F:      drivers/net/wan/cosa*
2533
2534 CPMAC ETHERNET DRIVER
2535 M:      Florian Fainelli <florian@openwrt.org>
2536 L:      netdev@vger.kernel.org
2537 S:      Maintained
2538 F:      drivers/net/ethernet/ti/cpmac.c
2539
2540 CPU FREQUENCY DRIVERS
2541 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
2542 M:      Viresh Kumar <viresh.kumar@linaro.org>
2543 L:      linux-pm@vger.kernel.org
2544 S:      Maintained
2545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2546 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2547 F:      drivers/cpufreq/
2548 F:      include/linux/cpufreq.h
2549
2550 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2551 M:      Viresh Kumar <viresh.kumar@linaro.org>
2552 M:      Sudeep Holla <sudeep.holla@arm.com>
2553 L:      linux-pm@vger.kernel.org
2554 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2555 S:      Maintained
2556 F:      drivers/cpufreq/arm_big_little.h
2557 F:      drivers/cpufreq/arm_big_little.c
2558 F:      drivers/cpufreq/arm_big_little_dt.c
2559
2560 CPUIDLE DRIVER - ARM BIG LITTLE
2561 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2562 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2563 L:      linux-pm@vger.kernel.org
2564 L:      linux-arm-kernel@lists.infradead.org
2565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2566 S:      Maintained
2567 F:      drivers/cpuidle/cpuidle-big_little.c
2568
2569 CPUIDLE DRIVERS
2570 M:      Rafael J. Wysocki <rjw@rjwysocki.net>
2571 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2572 L:      linux-pm@vger.kernel.org
2573 S:      Maintained
2574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2575 F:      drivers/cpuidle/*
2576 F:      include/linux/cpuidle.h
2577
2578 CPUID/MSR DRIVER
2579 M:      "H. Peter Anvin" <hpa@zytor.com>
2580 S:      Maintained
2581 F:      arch/x86/kernel/cpuid.c
2582 F:      arch/x86/kernel/msr.c
2583
2584 CPU POWER MONITORING SUBSYSTEM
2585 M:      Thomas Renninger <trenn@suse.de>
2586 L:      linux-pm@vger.kernel.org
2587 S:      Maintained
2588 F:      tools/power/cpupower/
2589
2590 CRAMFS FILESYSTEM
2591 W:      http://sourceforge.net/projects/cramfs/
2592 S:      Orphan / Obsolete
2593 F:      Documentation/filesystems/cramfs.txt
2594 F:      fs/cramfs/
2595
2596 CRIS PORT
2597 M:      Mikael Starvik <starvik@axis.com>
2598 M:      Jesper Nilsson <jesper.nilsson@axis.com>
2599 L:      linux-cris-kernel@axis.com
2600 W:      http://developer.axis.com
2601 S:      Maintained
2602 F:      arch/cris/
2603 F:      drivers/tty/serial/crisv10.*
2604
2605 CRYPTO API
2606 M:      Herbert Xu <herbert@gondor.apana.org.au>
2607 M:      "David S. Miller" <davem@davemloft.net>
2608 L:      linux-crypto@vger.kernel.org
2609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2610 S:      Maintained
2611 F:      Documentation/crypto/
2612 F:      arch/*/crypto/
2613 F:      crypto/
2614 F:      drivers/crypto/
2615 F:      include/crypto/
2616
2617 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2618 M:      Neil Horman <nhorman@tuxdriver.com>
2619 L:      linux-crypto@vger.kernel.org
2620 S:      Maintained
2621 F:      crypto/ansi_cprng.c
2622 F:      crypto/rng.c
2623
2624 CS5535 Audio ALSA driver
2625 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
2626 S:      Maintained
2627 F:      sound/pci/cs5535audio/
2628
2629 CW1200 WLAN driver
2630 M:      Solomon Peachy <pizza@shaftnet.org>
2631 S:      Maintained
2632 F:      drivers/net/wireless/cw1200/
2633
2634 CX18 VIDEO4LINUX DRIVER
2635 M:      Andy Walls <awalls@md.metrocast.net>
2636 L:      ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
2637 L:      linux-media@vger.kernel.org
2638 T:      git git://linuxtv.org/media_tree.git
2639 W:      http://linuxtv.org
2640 W:      http://www.ivtvdriver.org/index.php/Cx18
2641 S:      Maintained
2642 F:      Documentation/video4linux/cx18.txt
2643 F:      drivers/media/pci/cx18/
2644 F:      include/uapi/linux/ivtv*
2645
2646 CX2341X MPEG ENCODER HELPER MODULE
2647 M:      Hans Verkuil <hverkuil@xs4all.nl>
2648 L:      linux-media@vger.kernel.org
2649 T:      git git://linuxtv.org/media_tree.git
2650 W:      http://linuxtv.org
2651 S:      Maintained
2652 F:      drivers/media/common/cx2341x*
2653 F:      include/media/cx2341x*
2654
2655 CX88 VIDEO4LINUX DRIVER
2656 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
2657 L:      linux-media@vger.kernel.org
2658 W:      http://linuxtv.org
2659 T:      git git://linuxtv.org/media_tree.git
2660 S:      Odd fixes
2661 F:      Documentation/video4linux/cx88/
2662 F:      drivers/media/pci/cx88/
2663
2664 CXD2820R MEDIA DRIVER
2665 M:      Antti Palosaari <crope@iki.fi>
2666 L:      linux-media@vger.kernel.org
2667 W:      http://linuxtv.org/
2668 W:      http://palosaari.fi/linux/
2669 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
2670 T:      git git://linuxtv.org/anttip/media_tree.git
2671 S:      Maintained
2672 F:      drivers/media/dvb-frontends/cxd2820r*
2673
2674 CXGB3 ETHERNET DRIVER (CXGB3)
2675 M:      Santosh Raspatur <santosh@chelsio.com>
2676 L:      netdev@vger.kernel.org
2677 W:      http://www.chelsio.com
2678 S:      Supported
2679 F:      drivers/net/ethernet/chelsio/cxgb3/
2680
2681 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
2682 M:      Steve Wise <swise@chelsio.com>
2683 L:      linux-rdma@vger.kernel.org
2684 W:      http://www.openfabrics.org
2685 S:      Supported
2686 F:      drivers/infiniband/hw/cxgb3/
2687
2688 CXGB4 ETHERNET DRIVER (CXGB4)
2689 M:      Hariprasad S <hariprasad@chelsio.com>
2690 L:      netdev@vger.kernel.org
2691 W:      http://www.chelsio.com
2692 S:      Supported
2693 F:      drivers/net/ethernet/chelsio/cxgb4/
2694
2695 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2696 M:      Steve Wise <swise@chelsio.com>
2697 L:      linux-rdma@vger.kernel.org
2698 W:      http://www.openfabrics.org
2699 S:      Supported
2700 F:      drivers/infiniband/hw/cxgb4/
2701
2702 CXGB4VF ETHERNET DRIVER (CXGB4VF)
2703 M:      Casey Leedom <leedom@chelsio.com>
2704 L:      netdev@vger.kernel.org
2705 W:      http://www.chelsio.com
2706 S:      Supported
2707 F:      drivers/net/ethernet/chelsio/cxgb4vf/
2708
2709 STMMAC ETHERNET DRIVER
2710 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
2711 L:      netdev@vger.kernel.org
2712 W:      http://www.stlinux.com
2713 S:      Supported
2714 F:      drivers/net/ethernet/stmicro/stmmac/
2715
2716 CYBERPRO FB DRIVER
2717 M:      Russell King <linux@arm.linux.org.uk>
2718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2719 W:      http://www.arm.linux.org.uk/
2720 S:      Maintained
2721 F:      drivers/video/fbdev/cyber2000fb.*
2722
2723 CYCLADES ASYNC MUX DRIVER
2724 W:      http://www.cyclades.com/
2725 S:      Orphan
2726 F:      drivers/tty/cyclades.c
2727 F:      include/linux/cyclades.h
2728 F:      include/uapi/linux/cyclades.h
2729
2730 CYCLADES PC300 DRIVER
2731 W:      http://www.cyclades.com/
2732 S:      Orphan
2733 F:      drivers/net/wan/pc300*
2734
2735 CYPRESS_FIRMWARE MEDIA DRIVER
2736 M:      Antti Palosaari <crope@iki.fi>
2737 L:      linux-media@vger.kernel.org
2738 W:      http://linuxtv.org/
2739 W:      http://palosaari.fi/linux/
2740 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
2741 T:      git git://linuxtv.org/anttip/media_tree.git
2742 S:      Maintained
2743 F:      drivers/media/common/cypress_firmware*
2744
2745 CYTTSP TOUCHSCREEN DRIVER
2746 M:      Ferruh Yigit <fery@cypress.com>
2747 L:      linux-input@vger.kernel.org
2748 S:      Supported
2749 F:      drivers/input/touchscreen/cyttsp*
2750 F:      include/linux/input/cyttsp.h
2751
2752 DAMA SLAVE for AX.25
2753 M:      Joerg Reuter <jreuter@yaina.de>
2754 W:      http://yaina.de/jreuter/
2755 W:      http://www.qsl.net/dl1bke/
2756 L:      linux-hams@vger.kernel.org
2757 S:      Maintained
2758 F:      net/ax25/af_ax25.c
2759 F:      net/ax25/ax25_dev.c
2760 F:      net/ax25/ax25_ds_*
2761 F:      net/ax25/ax25_in.c
2762 F:      net/ax25/ax25_out.c
2763 F:      net/ax25/ax25_timer.c
2764 F:      net/ax25/sysctl_net_ax25.c
2765
2766 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
2767 L:      netdev@vger.kernel.org
2768 S:      Orphan
2769 F:      Documentation/networking/dmfe.txt
2770 F:      drivers/net/ethernet/dec/tulip/dmfe.c
2771
2772 DC390/AM53C974 SCSI driver
2773 M:      Kurt Garloff <garloff@suse.de>
2774 W:      http://www.garloff.de/kurt/linux/dc390/
2775 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
2776 S:      Maintained
2777 F:      drivers/scsi/tmscsim.*
2778
2779 DC395x SCSI driver
2780 M:      Oliver Neukum <oliver@neukum.org>
2781 M:      Ali Akcaagac <aliakc@web.de>
2782 M:      Jamie Lenehan <lenehan@twibble.org>
2783 L:      dc395x@twibble.org
2784 W:      http://twibble.org/dist/dc395x/
2785 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
2786 S:      Maintained
2787 F:      Documentation/scsi/dc395x.txt
2788 F:      drivers/scsi/dc395x.*
2789
2790 DCCP PROTOCOL
2791 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
2792 L:      dccp@vger.kernel.org
2793 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
2794 S:      Maintained
2795 F:      include/linux/dccp.h
2796 F:      include/uapi/linux/dccp.h
2797 F:      include/linux/tfrc.h
2798 F:      net/dccp/
2799
2800 DECnet NETWORK LAYER
2801 W:      http://linux-decnet.sourceforge.net
2802 L:      linux-decnet-user@lists.sourceforge.net
2803 S:      Orphan
2804 F:      Documentation/networking/decnet.txt
2805 F:      net/decnet/
2806
2807 DECSTATION PLATFORM SUPPORT
2808 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
2809 L:      linux-mips@linux-mips.org
2810 W:      http://www.linux-mips.org/wiki/DECstation
2811 S:      Maintained
2812 F:      arch/mips/dec/
2813 F:      arch/mips/include/asm/dec/
2814 F:      arch/mips/include/asm/mach-dec/
2815
2816 DEFXX FDDI NETWORK DRIVER
2817 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
2818 S:      Maintained
2819 F:      drivers/net/fddi/defxx.*
2820
2821 DELL LAPTOP DRIVER
2822 M:      Matthew Garrett <mjg59@srcf.ucam.org>
2823 L:      platform-driver-x86@vger.kernel.org
2824 S:      Maintained
2825 F:      drivers/platform/x86/dell-laptop.c
2826
2827 DELL LAPTOP SMM DRIVER
2828 M:      Guenter Roeck <linux@roeck-us.net>
2829 F:      drivers/char/i8k.c
2830 F:      include/uapi/linux/i8k.h
2831
2832 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
2833 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
2834 S:      Maintained
2835 F:      Documentation/dcdbas.txt
2836 F:      drivers/firmware/dcdbas.*
2837
2838 DELL WMI EXTRAS DRIVER
2839 M:      Matthew Garrett <mjg59@srcf.ucam.org>
2840 S:      Maintained
2841 F:      drivers/platform/x86/dell-wmi.c
2842
2843 DESIGNWARE USB2 DRD IP DRIVER
2844 M:      Paul Zimmerman <paulz@synopsys.com>
2845 L:      linux-usb@vger.kernel.org
2846 S:      Maintained
2847 F:      drivers/usb/dwc2/
2848
2849 DESIGNWARE USB3 DRD IP DRIVER
2850 M:      Felipe Balbi <balbi@ti.com>
2851 L:      linux-usb@vger.kernel.org
2852 L:      linux-omap@vger.kernel.org
2853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2854 S:      Maintained
2855 F:      drivers/usb/dwc3/
2856
2857 DEVICE FREQUENCY (DEVFREQ)
2858 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
2859 M:      Kyungmin Park <kyungmin.park@samsung.com>
2860 L:      linux-pm@vger.kernel.org
2861 S:      Maintained
2862 F:      drivers/devfreq/
2863
2864 DEVICE NUMBER REGISTRY
2865 M:      Torben Mathiasen <device@lanana.org>
2866 W:      http://lanana.org/docs/device-list/index.html
2867 S:      Maintained
2868
2869 DEVICE-MAPPER  (LVM)
2870 M:      Alasdair Kergon <agk@redhat.com>
2871 M:      Mike Snitzer <snitzer@redhat.com>
2872 M:      dm-devel@redhat.com
2873 L:      dm-devel@redhat.com
2874 W:      http://sources.redhat.com/dm
2875 Q:      http://patchwork.kernel.org/project/dm-devel/list/
2876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
2877 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
2878 S:      Maintained
2879 F:      Documentation/device-mapper/
2880 F:      drivers/md/dm*
2881 F:      drivers/md/persistent-data/
2882 F:      include/linux/device-mapper.h
2883 F:      include/linux/dm-*.h
2884 F:      include/uapi/linux/dm-*.h
2885
2886 DIALOG SEMICONDUCTOR DRIVERS
2887 M:      Support Opensource <support.opensource@diasemi.com>
2888 W:      http://www.dialog-semiconductor.com/products
2889 S:      Supported
2890 F:      Documentation/hwmon/da90??
2891 F:      drivers/gpio/gpio-da90??.c
2892 F:      drivers/hwmon/da90??-hwmon.c
2893 F:      drivers/input/misc/da90??_onkey.c
2894 F:      drivers/input/touchscreen/da9052_tsi.c
2895 F:      drivers/leds/leds-da90??.c
2896 F:      drivers/mfd/da903x.c
2897 F:      drivers/mfd/da90??-*.c
2898 F:      drivers/power/da9052-battery.c
2899 F:      drivers/regulator/da903x.c
2900 F:      drivers/regulator/da9???-regulator.[ch]
2901 F:      drivers/rtc/rtc-da90??.c
2902 F:      drivers/video/backlight/da90??_bl.c
2903 F:      drivers/watchdog/da90??_wdt.c
2904 F:      include/linux/mfd/da903x.h
2905 F:      include/linux/mfd/da9052/
2906 F:      include/linux/mfd/da9055/
2907 F:      include/linux/mfd/da9063/
2908 F:      include/sound/da[79]*.h
2909 F:      sound/soc/codecs/da[79]*.[ch]
2910
2911 DIGI NEO AND CLASSIC PCI PRODUCTS
2912 M:      Lidza Louina <lidza.louina@gmail.com>
2913 M:      Mark Hounschell <markh@compro.net>
2914 L:      driverdev-devel@linuxdriverproject.org
2915 S:      Maintained
2916 F:      drivers/staging/dgnc/
2917
2918 DIGI EPCA PCI PRODUCTS
2919 M:      Lidza Louina <lidza.louina@gmail.com>
2920 M:      Mark Hounschell <markh@compro.net>
2921 M:      Daeseok Youn <daeseok.youn@gmail.com>
2922 L:      driverdev-devel@linuxdriverproject.org
2923 S:      Maintained
2924 F:      drivers/staging/dgap/
2925
2926 DIOLAN U2C-12 I2C DRIVER
2927 M:      Guenter Roeck <linux@roeck-us.net>
2928 L:      linux-i2c@vger.kernel.org
2929 S:      Maintained
2930 F:      drivers/i2c/busses/i2c-diolan-u2c.c
2931
2932 DIRECTORY NOTIFICATION (DNOTIFY)
2933 M:      Eric Paris <eparis@parisplace.org>
2934 S:      Maintained
2935 F:      Documentation/filesystems/dnotify.txt
2936 F:      fs/notify/dnotify/
2937 F:      include/linux/dnotify.h
2938
2939 DISK GEOMETRY AND PARTITION HANDLING
2940 M:      Andries Brouwer <aeb@cwi.nl>
2941 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2942 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2943 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2944 S:      Maintained
2945
2946 DISKQUOTA
2947 M:      Jan Kara <jack@suse.cz>
2948 S:      Maintained
2949 F:      Documentation/filesystems/quota.txt
2950 F:      fs/quota/
2951 F:      include/linux/quota*.h
2952 F:      include/uapi/linux/quota*.h
2953
2954 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2955 M:      Bernie Thompson <bernie@plugable.com>
2956 L:      linux-fbdev@vger.kernel.org
2957 S:      Maintained
2958 W:      http://plugable.com/category/projects/udlfb/
2959 F:      drivers/video/fbdev/udlfb.c
2960 F:      include/video/udlfb.h
2961 F:      Documentation/fb/udlfb.txt
2962
2963 DISTRIBUTED LOCK MANAGER (DLM)
2964 M:      Christine Caulfield <ccaulfie@redhat.com>
2965 M:      David Teigland <teigland@redhat.com>
2966 L:      cluster-devel@redhat.com
2967 W:      http://sources.redhat.com/cluster/
2968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
2969 S:      Supported
2970 F:      fs/dlm/
2971
2972 DMA BUFFER SHARING FRAMEWORK
2973 M:      Sumit Semwal <sumit.semwal@linaro.org>
2974 S:      Maintained
2975 L:      linux-media@vger.kernel.org
2976 L:      dri-devel@lists.freedesktop.org
2977 L:      linaro-mm-sig@lists.linaro.org
2978 F:      drivers/dma-buf/
2979 F:      include/linux/dma-buf*
2980 F:      include/linux/reservation.h
2981 F:      include/linux/*fence.h
2982 F:      Documentation/dma-buf-sharing.txt
2983 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2984
2985 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
2986 M:      Vinod Koul <vinod.koul@intel.com>
2987 M:      Dan Williams <dan.j.williams@intel.com>
2988 L:      dmaengine@vger.kernel.org
2989 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
2990 S:      Supported
2991 F:      drivers/dma/
2992 F:      include/linux/dma*
2993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2994 T:      git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
2995
2996 DME1737 HARDWARE MONITOR DRIVER
2997 M:      Juerg Haefliger <juergh@gmail.com>
2998 L:      lm-sensors@lm-sensors.org
2999 S:      Maintained
3000 F:      Documentation/hwmon/dme1737
3001 F:      drivers/hwmon/dme1737.c
3002
3003 DOCKING STATION DRIVER
3004 M:      Shaohua Li <shaohua.li@intel.com>
3005 L:      linux-acpi@vger.kernel.org
3006 S:      Supported
3007 F:      drivers/acpi/dock.c
3008
3009 DOCUMENTATION
3010 M:      Randy Dunlap <rdunlap@infradead.org>
3011 L:      linux-doc@vger.kernel.org
3012 T:      quilt http://www.infradead.org/~rdunlap/Doc/patches/
3013 S:      Maintained
3014 F:      Documentation/
3015 X:      Documentation/ABI/
3016 X:      Documentation/devicetree/
3017 X:      Documentation/[a-z][a-z]_[A-Z][A-Z]/
3018
3019 DOUBLETALK DRIVER
3020 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3021 L:      blinux-list@redhat.com
3022 S:      Maintained
3023 F:      drivers/char/dtlk.c
3024 F:      include/linux/dtlk.h
3025
3026 DPT_I2O SCSI RAID DRIVER
3027 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3028 L:      linux-scsi@vger.kernel.org
3029 W:      http://www.adaptec.com/
3030 S:      Maintained
3031 F:      drivers/scsi/dpt*
3032 F:      drivers/scsi/dpt/
3033
3034 DRBD DRIVER
3035 P:      Philipp Reisner
3036 P:      Lars Ellenberg
3037 M:      drbd-dev@lists.linbit.com
3038 L:      drbd-user@lists.linbit.com
3039 W:      http://www.drbd.org
3040 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3041 T:      git git://git.drbd.org/drbd-8.3.git
3042 S:      Supported
3043 F:      drivers/block/drbd/
3044 F:      lib/lru_cache.c
3045 F:      Documentation/blockdev/drbd/
3046
3047 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
3048 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3050 S:      Supported
3051 F:      Documentation/kobject.txt
3052 F:      drivers/base/
3053 F:      fs/sysfs/
3054 F:      fs/debugfs/
3055 F:      include/linux/kobj*
3056 F:      include/linux/debugfs.h
3057 F:      lib/kobj*
3058
3059 DRM DRIVERS
3060 M:      David Airlie <airlied@linux.ie>
3061 L:      dri-devel@lists.freedesktop.org
3062 T:      git git://people.freedesktop.org/~airlied/linux
3063 S:      Maintained
3064 F:      drivers/gpu/drm/
3065 F:      drivers/gpu/vga/
3066 F:      include/drm/
3067 F:      include/uapi/drm/
3068
3069 RADEON DRM DRIVERS
3070 M:      Alex Deucher <alexander.deucher@amd.com>
3071 M:      Christian König <christian.koenig@amd.com>
3072 L:      dri-devel@lists.freedesktop.org
3073 T:      git git://people.freedesktop.org/~agd5f/linux
3074 S:      Supported
3075 F:      drivers/gpu/drm/radeon/
3076 F:      include/uapi/drm/radeon*
3077
3078 DRM PANEL DRIVERS
3079 M:      Thierry Reding <thierry.reding@gmail.com>
3080 L:      dri-devel@lists.freedesktop.org
3081 T:      git git://anongit.freedesktop.org/tegra/linux.git
3082 S:      Maintained
3083 F:      drivers/gpu/drm/drm_panel.c
3084 F:      drivers/gpu/drm/panel/
3085 F:      include/drm/drm_panel.h
3086 F:      Documentation/devicetree/bindings/panel/
3087
3088 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3089 M:      Daniel Vetter <daniel.vetter@ffwll.ch>
3090 M:      Jani Nikula <jani.nikula@linux.intel.com>
3091 L:      intel-gfx@lists.freedesktop.org
3092 L:      dri-devel@lists.freedesktop.org
3093 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3094 T:      git git://anongit.freedesktop.org/drm-intel
3095 S:      Supported
3096 F:      drivers/gpu/drm/i915/
3097 F:      include/drm/i915*
3098 F:      include/uapi/drm/i915*
3099
3100 DRM DRIVERS FOR EXYNOS
3101 M:      Inki Dae <inki.dae@samsung.com>
3102 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3103 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3104 M:      Kyungmin Park <kyungmin.park@samsung.com>
3105 L:      dri-devel@lists.freedesktop.org
3106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3107 S:      Supported
3108 F:      drivers/gpu/drm/exynos/
3109 F:      include/drm/exynos*
3110 F:      include/uapi/drm/exynos*
3111
3112 DRM DRIVERS FOR NVIDIA TEGRA
3113 M:      Thierry Reding <thierry.reding@gmail.com>
3114 M:      Terje Bergström <tbergstrom@nvidia.com>
3115 L:      dri-devel@lists.freedesktop.org
3116 L:      linux-tegra@vger.kernel.org
3117 T:      git git://anongit.freedesktop.org/tegra/linux.git
3118 S:      Supported
3119 F:      drivers/gpu/drm/tegra/
3120 F:      drivers/gpu/host1x/
3121 F:      include/linux/host1x.h
3122 F:      include/uapi/drm/tegra_drm.h
3123 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3124
3125 DSBR100 USB FM RADIO DRIVER
3126 M:      Alexey Klimov <klimov.linux@gmail.com>
3127 L:      linux-media@vger.kernel.org
3128 T:      git git://linuxtv.org/media_tree.git
3129 S:      Maintained
3130 F:      drivers/media/radio/dsbr100.c
3131
3132 DSCC4 DRIVER
3133 M:      Francois Romieu <romieu@fr.zoreil.com>
3134 L:      netdev@vger.kernel.org
3135 S:      Maintained
3136 F:      drivers/net/wan/dscc4.c
3137
3138 DVB_USB_AF9015 MEDIA DRIVER
3139 M:      Antti Palosaari <crope@iki.fi>
3140 L:      linux-media@vger.kernel.org
3141 W:      http://linuxtv.org/
3142 W:      http://palosaari.fi/linux/
3143 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3144 T:      git git://linuxtv.org/anttip/media_tree.git
3145 S:      Maintained
3146 F:      drivers/media/usb/dvb-usb-v2/af9015*
3147
3148 DVB_USB_AF9035 MEDIA DRIVER
3149 M:      Antti Palosaari <crope@iki.fi>
3150 L:      linux-media@vger.kernel.org
3151 W:      http://linuxtv.org/
3152 W:      http://palosaari.fi/linux/
3153 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3154 T:      git git://linuxtv.org/anttip/media_tree.git
3155 S:      Maintained
3156 F:      drivers/media/usb/dvb-usb-v2/af9035*
3157
3158 DVB_USB_ANYSEE MEDIA DRIVER
3159 M:      Antti Palosaari <crope@iki.fi>
3160 L:      linux-media@vger.kernel.org
3161 W:      http://linuxtv.org/
3162 W:      http://palosaari.fi/linux/
3163 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3164 T:      git git://linuxtv.org/anttip/media_tree.git
3165 S:      Maintained
3166 F:      drivers/media/usb/dvb-usb-v2/anysee*
3167
3168 DVB_USB_AU6610 MEDIA DRIVER
3169 M:      Antti Palosaari <crope@iki.fi>
3170 L:      linux-media@vger.kernel.org
3171 W:      http://linuxtv.org/
3172 W:      http://palosaari.fi/linux/
3173 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3174 T:      git git://linuxtv.org/anttip/media_tree.git
3175 S:      Maintained
3176 F:      drivers/media/usb/dvb-usb-v2/au6610*
3177
3178 DVB_USB_CE6230 MEDIA DRIVER
3179 M:      Antti Palosaari <crope@iki.fi>
3180 L:      linux-media@vger.kernel.org
3181 W:      http://linuxtv.org/
3182 W:      http://palosaari.fi/linux/
3183 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3184 T:      git git://linuxtv.org/anttip/media_tree.git
3185 S:      Maintained
3186 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3187
3188 DVB_USB_CXUSB MEDIA DRIVER
3189 M:      Michael Krufky <mkrufky@linuxtv.org>
3190 L:      linux-media@vger.kernel.org
3191 W:      http://linuxtv.org/
3192 W:      http://github.com/mkrufky
3193 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3194 T:      git git://linuxtv.org/media_tree.git
3195 S:      Maintained
3196 F:      drivers/media/usb/dvb-usb/cxusb*
3197
3198 DVB_USB_EC168 MEDIA DRIVER
3199 M:      Antti Palosaari <crope@iki.fi>
3200 L:      linux-media@vger.kernel.org
3201 W:      http://linuxtv.org/
3202 W:      http://palosaari.fi/linux/
3203 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3204 T:      git git://linuxtv.org/anttip/media_tree.git
3205 S:      Maintained
3206 F:      drivers/media/usb/dvb-usb-v2/ec168*
3207
3208 DVB_USB_GL861 MEDIA DRIVER
3209 M:      Antti Palosaari <crope@iki.fi>
3210 L:      linux-media@vger.kernel.org
3211 W:      http://linuxtv.org/
3212 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3213 T:      git git://linuxtv.org/anttip/media_tree.git
3214 S:      Maintained
3215 F:      drivers/media/usb/dvb-usb-v2/gl861*
3216
3217 DVB_USB_MXL111SF MEDIA DRIVER
3218 M:      Michael Krufky <mkrufky@linuxtv.org>
3219 L:      linux-media@vger.kernel.org
3220 W:      http://linuxtv.org/
3221 W:      http://github.com/mkrufky
3222 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3223 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3224 S:      Maintained
3225 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3226
3227 DVB_USB_RTL28XXU MEDIA DRIVER
3228 M:      Antti Palosaari <crope@iki.fi>
3229 L:      linux-media@vger.kernel.org
3230 W:      http://linuxtv.org/
3231 W:      http://palosaari.fi/linux/
3232 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3233 T:      git git://linuxtv.org/anttip/media_tree.git
3234 S:      Maintained
3235 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3236
3237 DVB_USB_V2 MEDIA DRIVER
3238 M:      Antti Palosaari <crope@iki.fi>
3239 L:      linux-media@vger.kernel.org
3240 W:      http://linuxtv.org/
3241 W:      http://palosaari.fi/linux/
3242 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3243 T:      git git://linuxtv.org/anttip/media_tree.git
3244 S:      Maintained
3245 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3246 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3247
3248 DYNAMIC DEBUG
3249 M:      Jason Baron <jbaron@akamai.com>
3250 S:      Maintained
3251 F:      lib/dynamic_debug.c
3252 F:      include/linux/dynamic_debug.h
3253
3254 DZ DECSTATION DZ11 SERIAL DRIVER
3255 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3256 S:      Maintained
3257 F:      drivers/tty/serial/dz.*
3258
3259 E4000 MEDIA DRIVER
3260 M:      Antti Palosaari <crope@iki.fi>
3261 L:      linux-media@vger.kernel.org
3262 W:      http://linuxtv.org/
3263 W:      http://palosaari.fi/linux/
3264 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3265 T:      git git://linuxtv.org/anttip/media_tree.git
3266 S:      Maintained
3267 F:      drivers/media/tuners/e4000*
3268
3269 EATA ISA/EISA/PCI SCSI DRIVER
3270 M:      Dario Ballabio <ballabio_dario@emc.com>
3271 L:      linux-scsi@vger.kernel.org
3272 S:      Maintained
3273 F:      drivers/scsi/eata.c
3274
3275 EC100 MEDIA DRIVER
3276 M:      Antti Palosaari <crope@iki.fi>
3277 L:      linux-media@vger.kernel.org
3278 W:      http://linuxtv.org/
3279 W:      http://palosaari.fi/linux/
3280 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3281 T:      git git://linuxtv.org/anttip/media_tree.git
3282 S:      Maintained
3283 F:      drivers/media/dvb-frontends/ec100*
3284
3285 ECRYPT FILE SYSTEM
3286 M:      Tyler Hicks <tyhicks@canonical.com>
3287 L:      ecryptfs@vger.kernel.org
3288 W:      http://ecryptfs.org
3289 W:      https://launchpad.net/ecryptfs
3290 S:      Supported
3291 F:      Documentation/filesystems/ecryptfs.txt
3292 F:      fs/ecryptfs/
3293
3294 EDAC-CORE
3295 M:      Doug Thompson <dougthompson@xmission.com>
3296 M:      Borislav Petkov <bp@alien8.de>
3297 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3298 L:      linux-edac@vger.kernel.org
3299 W:      bluesmoke.sourceforge.net
3300 S:      Supported
3301 F:      Documentation/edac.txt
3302 F:      drivers/edac/
3303 F:      include/linux/edac.h
3304
3305 EDAC-AMD64
3306 M:      Doug Thompson <dougthompson@xmission.com>
3307 M:      Borislav Petkov <bp@alien8.de>
3308 L:      linux-edac@vger.kernel.org
3309 W:      bluesmoke.sourceforge.net
3310 S:      Maintained
3311 F:      drivers/edac/amd64_edac*
3312
3313 EDAC-CALXEDA
3314 M:      Doug Thompson <dougthompson@xmission.com>
3315 M:      Robert Richter <rric@kernel.org>
3316 L:      linux-edac@vger.kernel.org
3317 W:      bluesmoke.sourceforge.net
3318 S:      Maintained
3319 F:      drivers/edac/highbank*
3320
3321 EDAC-CAVIUM
3322 M:      Ralf Baechle <ralf@linux-mips.org>
3323 M:      David Daney <david.daney@cavium.com>
3324 L:      linux-edac@vger.kernel.org
3325 L:      linux-mips@linux-mips.org
3326 W:      bluesmoke.sourceforge.net
3327 S:      Supported
3328 F:      drivers/edac/octeon_edac*
3329
3330 EDAC-E752X
3331 M:      Mark Gross <mark.gross@intel.com>
3332 M:      Doug Thompson <dougthompson@xmission.com>
3333 L:      linux-edac@vger.kernel.org
3334 W:      bluesmoke.sourceforge.net
3335 S:      Maintained
3336 F:      drivers/edac/e752x_edac.c
3337
3338 EDAC-E7XXX
3339 M:      Doug Thompson <dougthompson@xmission.com>
3340 L:      linux-edac@vger.kernel.org
3341 W:      bluesmoke.sourceforge.net
3342 S:      Maintained
3343 F:      drivers/edac/e7xxx_edac.c
3344
3345 EDAC-GHES
3346 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3347 L:      linux-edac@vger.kernel.org
3348 W:      bluesmoke.sourceforge.net
3349 S:      Maintained
3350 F:      drivers/edac/ghes_edac.c
3351
3352 EDAC-I82443BXGX
3353 M:      Tim Small <tim@buttersideup.com>
3354 L:      linux-edac@vger.kernel.org
3355 W:      bluesmoke.sourceforge.net
3356 S:      Maintained
3357 F:      drivers/edac/i82443bxgx_edac.c
3358
3359 EDAC-I3000
3360 M:      Jason Uhlenkott <juhlenko@akamai.com>
3361 L:      linux-edac@vger.kernel.org
3362 W:      bluesmoke.sourceforge.net
3363 S:      Maintained
3364 F:      drivers/edac/i3000_edac.c
3365
3366 EDAC-I5000
3367 M:      Doug Thompson <dougthompson@xmission.com>
3368 L:      linux-edac@vger.kernel.org
3369 W:      bluesmoke.sourceforge.net
3370 S:      Maintained
3371 F:      drivers/edac/i5000_edac.c
3372
3373 EDAC-I5400
3374 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3375 L:      linux-edac@vger.kernel.org
3376 W:      bluesmoke.sourceforge.net
3377 S:      Maintained
3378 F:      drivers/edac/i5400_edac.c
3379
3380 EDAC-I7300
3381 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3382 L:      linux-edac@vger.kernel.org
3383 W:      bluesmoke.sourceforge.net
3384 S:      Maintained
3385 F:      drivers/edac/i7300_edac.c
3386
3387 EDAC-I7CORE
3388 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3389 L:      linux-edac@vger.kernel.org
3390 W:      bluesmoke.sourceforge.net
3391 S:      Maintained
3392 F:      drivers/edac/i7core_edac.c
3393
3394 EDAC-I82975X
3395 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3396 M:      "Arvind R." <arvino55@gmail.com>
3397 L:      linux-edac@vger.kernel.org
3398 W:      bluesmoke.sourceforge.net
3399 S:      Maintained
3400 F:      drivers/edac/i82975x_edac.c
3401
3402 EDAC-IE31200
3403 M:      Jason Baron <jbaron@akamai.com>
3404 L:      linux-edac@vger.kernel.org
3405 W:      bluesmoke.sourceforge.net
3406 S:      Maintained
3407 F:      drivers/edac/ie31200_edac.c
3408
3409 EDAC-MPC85XX
3410 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
3411 L:      linux-edac@vger.kernel.org
3412 W:      bluesmoke.sourceforge.net
3413 S:      Maintained
3414 F:      drivers/edac/mpc85xx_edac.[ch]
3415
3416 EDAC-PASEMI
3417 M:      Egor Martovetsky <egor@pasemi.com>
3418 L:      linux-edac@vger.kernel.org
3419 W:      bluesmoke.sourceforge.net
3420 S:      Maintained
3421 F:      drivers/edac/pasemi_edac.c
3422
3423 EDAC-R82600
3424 M:      Tim Small <tim@buttersideup.com>
3425 L:      linux-edac@vger.kernel.org
3426 W:      bluesmoke.sourceforge.net
3427 S:      Maintained
3428 F:      drivers/edac/r82600_edac.c
3429
3430 EDAC-SBRIDGE
3431 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3432 L:      linux-edac@vger.kernel.org
3433 W:      bluesmoke.sourceforge.net
3434 S:      Maintained
3435 F:      drivers/edac/sb_edac.c
3436
3437 EDIROL UA-101/UA-1000 DRIVER
3438 M:      Clemens Ladisch <clemens@ladisch.de>
3439 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3440 T:      git git://git.alsa-project.org/alsa-kernel.git
3441 S:      Maintained
3442 F:      sound/usb/misc/ua101.c
3443
3444 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3445 M:      Matt Fleming <matt.fleming@intel.com>
3446 L:      linux-efi@vger.kernel.org
3447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3448 S:      Maintained
3449 F:      Documentation/efi-stub.txt
3450 F:      arch/ia64/kernel/efi.c
3451 F:      arch/x86/boot/compressed/eboot.[ch]
3452 F:      arch/x86/include/asm/efi.h
3453 F:      arch/x86/platform/efi/*
3454 F:      drivers/firmware/efi/*
3455 F:      include/linux/efi*.h
3456
3457 EFI VARIABLE FILESYSTEM
3458 M:      Matthew Garrett <matthew.garrett@nebula.com>
3459 M:      Jeremy Kerr <jk@ozlabs.org>
3460 M:      Matt Fleming <matt.fleming@intel.com>
3461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3462 L:      linux-efi@vger.kernel.org
3463 S:      Maintained
3464 F:      fs/efivarfs/
3465
3466 EFIFB FRAMEBUFFER DRIVER
3467 L:      linux-fbdev@vger.kernel.org
3468 M:      Peter Jones <pjones@redhat.com>
3469 S:      Maintained
3470 F:      drivers/video/fbdev/efifb.c
3471
3472 EFS FILESYSTEM
3473 W:      http://aeschi.ch.eu.org/efs/
3474 S:      Orphan
3475 F:      fs/efs/
3476
3477 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3478 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3479 M:      Christoph Raisch <raisch@de.ibm.com>
3480 L:      linux-rdma@vger.kernel.org
3481 S:      Supported
3482 F:      drivers/infiniband/hw/ehca/
3483
3484 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3485 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3486 L:      netdev@vger.kernel.org
3487 S:      Maintained
3488 F:      drivers/net/ethernet/ibm/ehea/
3489
3490 EM28XX VIDEO4LINUX DRIVER
3491 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
3492 L:      linux-media@vger.kernel.org
3493 W:      http://linuxtv.org
3494 T:      git git://linuxtv.org/media_tree.git
3495 S:      Maintained
3496 F:      drivers/media/usb/em28xx/
3497
3498 EMBEDDED LINUX
3499 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
3500 M:      Matt Mackall <mpm@selenic.com>
3501 M:      David Woodhouse <dwmw2@infradead.org>
3502 L:      linux-embedded@vger.kernel.org
3503 S:      Maintained
3504
3505 EMULEX LPFC FC SCSI DRIVER
3506 M:      James Smart <james.smart@emulex.com>
3507 L:      linux-scsi@vger.kernel.org
3508 W:      http://sourceforge.net/projects/lpfcxxxx
3509 S:      Supported
3510 F:      drivers/scsi/lpfc/
3511
3512 ENE CB710 FLASH CARD READER DRIVER
3513 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
3514 S:      Maintained
3515 F:      drivers/misc/cb710/
3516 F:      drivers/mmc/host/cb710-mmc.*
3517 F:      include/linux/cb710.h
3518
3519 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3520 M:      Maxim Levitsky <maximlevitsky@gmail.com>
3521 S:      Maintained
3522 F:      drivers/media/rc/ene_ir.*
3523
3524 ENHANCED ERROR HANDLING (EEH)
3525 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
3526 L:      linuxppc-dev@lists.ozlabs.org
3527 S:      Supported
3528 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
3529 F:      arch/powerpc/kernel/eeh*.c
3530
3531 EPSON S1D13XXX FRAMEBUFFER DRIVER
3532 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
3533 S:      Maintained
3534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
3535 F:      drivers/video/fbdev/s1d13xxxfb.c
3536 F:      include/video/s1d13xxxfb.h
3537
3538 ETHERNET BRIDGE
3539 M:      Stephen Hemminger <stephen@networkplumber.org>
3540 L:      bridge@lists.linux-foundation.org
3541 L:      netdev@vger.kernel.org
3542 W:      http://www.linuxfoundation.org/en/Net:Bridge
3543 S:      Maintained
3544 F:      include/linux/netfilter_bridge/
3545 F:      net/bridge/
3546
3547 ETHERNET PHY LIBRARY
3548 M:      Florian Fainelli <f.fainelli@gmail.com>
3549 L:      netdev@vger.kernel.org
3550 S:      Maintained
3551 F:      include/linux/phy.h
3552 F:      include/linux/phy_fixed.h
3553 F:      drivers/net/phy/
3554 F:      Documentation/networking/phy.txt
3555 F:      drivers/of/of_mdio.c
3556 F:      drivers/of/of_net.c
3557
3558 EXT2 FILE SYSTEM
3559 M:      Jan Kara <jack@suse.cz>
3560 L:      linux-ext4@vger.kernel.org
3561 S:      Maintained
3562 F:      Documentation/filesystems/ext2.txt
3563 F:      fs/ext2/
3564 F:      include/linux/ext2*
3565
3566 EXT3 FILE SYSTEM
3567 M:      Jan Kara <jack@suse.cz>
3568 M:      Andrew Morton <akpm@linux-foundation.org>
3569 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3570 L:      linux-ext4@vger.kernel.org
3571 S:      Maintained
3572 F:      Documentation/filesystems/ext3.txt
3573 F:      fs/ext3/
3574
3575 EXT4 FILE SYSTEM
3576 M:      "Theodore Ts'o" <tytso@mit.edu>
3577 M:      Andreas Dilger <adilger.kernel@dilger.ca>
3578 L:      linux-ext4@vger.kernel.org
3579 W:      http://ext4.wiki.kernel.org
3580 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
3581 S:      Maintained
3582 F:      Documentation/filesystems/ext4.txt
3583 F:      fs/ext4/
3584
3585 Extended Verification Module (EVM)
3586 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
3587 L:      linux-ima-devel@lists.sourceforge.net
3588 L:      linux-security-module@vger.kernel.org
3589 S:      Supported
3590 F:      security/integrity/evm/
3591
3592 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3593 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3594 M:      Chanwoo Choi <cw00.choi@samsung.com>
3595 L:      linux-kernel@vger.kernel.org
3596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
3597 S:      Maintained
3598 F:      drivers/extcon/
3599 F:      Documentation/extcon/
3600
3601 EXYNOS DP DRIVER
3602 M:      Jingoo Han <jg1.han@samsung.com>
3603 L:      dri-devel@lists.freedesktop.org
3604 S:      Maintained
3605 F:      drivers/gpu/drm/exynos/exynos_dp*
3606
3607 EXYNOS MIPI DISPLAY DRIVERS
3608 M:      Inki Dae <inki.dae@samsung.com>
3609 M:      Donghwa Lee <dh09.lee@samsung.com>
3610 M:      Kyungmin Park <kyungmin.park@samsung.com>
3611 L:      linux-fbdev@vger.kernel.org
3612 S:      Maintained
3613 F:      drivers/video/fbdev/exynos/exynos_mipi*
3614 F:      include/video/exynos_mipi*
3615
3616 F71805F HARDWARE MONITORING DRIVER
3617 M:      Jean Delvare <jdelvare@suse.de>
3618 L:      lm-sensors@lm-sensors.org
3619 S:      Maintained
3620 F:      Documentation/hwmon/f71805f
3621 F:      drivers/hwmon/f71805f.c
3622
3623 FC0011 TUNER DRIVER
3624 M:      Michael Buesch <m@bues.ch>
3625 L:      linux-media@vger.kernel.org
3626 S:      Maintained
3627 F:      drivers/media/tuners/fc0011.h
3628 F:      drivers/media/tuners/fc0011.c
3629
3630 FC2580 MEDIA DRIVER
3631 M:      Antti Palosaari <crope@iki.fi>
3632 L:      linux-media@vger.kernel.org
3633 W:      http://linuxtv.org/
3634 W:      http://palosaari.fi/linux/
3635 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3636 T:      git git://linuxtv.org/anttip/media_tree.git
3637 S:      Maintained
3638 F:      drivers/media/tuners/fc2580*
3639
3640 FANOTIFY
3641 M:      Eric Paris <eparis@redhat.com>
3642 S:      Maintained
3643 F:      fs/notify/fanotify/
3644 F:      include/linux/fanotify.h
3645 F:      include/uapi/linux/fanotify.h
3646
3647 FARSYNC SYNCHRONOUS DRIVER
3648 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
3649 W:      http://www.farsite.co.uk/
3650 S:      Supported
3651 F:      drivers/net/wan/farsync.*
3652
3653 FAULT INJECTION SUPPORT
3654 M:      Akinobu Mita <akinobu.mita@gmail.com>
3655 S:      Supported
3656 F:      Documentation/fault-injection/
3657 F:      lib/fault-inject.c
3658
3659 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3660 M:      Robert Love <robert.w.love@intel.com>
3661 L:      fcoe-devel@open-fcoe.org
3662 W:      www.Open-FCoE.org
3663 S:      Supported
3664 F:      drivers/scsi/libfc/
3665 F:      drivers/scsi/fcoe/
3666 F:      include/scsi/fc/
3667 F:      include/scsi/libfc.h
3668 F:      include/scsi/libfcoe.h
3669 F:      include/uapi/scsi/fc/
3670
3671 FILE LOCKING (flock() and fcntl()/lockf())
3672 M:      Jeff Layton <jlayton@poochiereds.net>
3673 M:      J. Bruce Fields <bfields@fieldses.org>
3674 L:      linux-fsdevel@vger.kernel.org
3675 S:      Maintained
3676 F:      include/linux/fcntl.h
3677 F:      include/linux/fs.h
3678 F:      include/uapi/linux/fcntl.h
3679 F:      include/uapi/linux/fs.h
3680 F:      fs/fcntl.c
3681 F:      fs/locks.c
3682
3683 FILESYSTEMS (VFS and infrastructure)
3684 M:      Alexander Viro <viro@zeniv.linux.org.uk>
3685 L:      linux-fsdevel@vger.kernel.org
3686 S:      Maintained
3687 F:      fs/*
3688
3689 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3690 M:      Riku Voipio <riku.voipio@iki.fi>
3691 L:      lm-sensors@lm-sensors.org
3692 S:      Maintained
3693 F:      drivers/hwmon/f75375s.c
3694 F:      include/linux/f75375s.h
3695
3696 FIREWIRE AUDIO DRIVERS
3697 M:      Clemens Ladisch <clemens@ladisch.de>
3698 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3699 T:      git git://git.alsa-project.org/alsa-kernel.git
3700 S:      Maintained
3701 F:      sound/firewire/
3702
3703 FIREWIRE MEDIA DRIVERS (firedtv)
3704 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
3705 L:      linux-media@vger.kernel.org
3706 L:      linux1394-devel@lists.sourceforge.net
3707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3708 S:      Maintained
3709 F:      drivers/media/firewire/
3710
3711 FIREWIRE SBP-2 TARGET
3712 M:      Chris Boot <bootc@bootc.net>
3713 L:      linux-scsi@vger.kernel.org
3714 L:      target-devel@vger.kernel.org
3715 L:      linux1394-devel@lists.sourceforge.net
3716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3717 S:      Maintained
3718 F:      drivers/target/sbp/
3719
3720 FIREWIRE SUBSYSTEM
3721 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
3722 L:      linux1394-devel@lists.sourceforge.net
3723 W:      http://ieee1394.wiki.kernel.org/
3724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
3725 S:      Maintained
3726 F:      drivers/firewire/
3727 F:      include/linux/firewire.h
3728 F:      include/uapi/linux/firewire*.h
3729 F:      tools/firewire/
3730
3731 FIRMWARE LOADER (request_firmware)
3732 M:      Ming Lei <ming.lei@canonical.com>
3733 L:      linux-kernel@vger.kernel.org
3734 S:      Maintained
3735 F:      Documentation/firmware_class/
3736 F:      drivers/base/firmware*.c
3737 F:      include/linux/firmware.h
3738
3739 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
3740 M:      Joshua Morris <josh.h.morris@us.ibm.com>
3741 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3742 S:      Maintained
3743 F:      drivers/block/rsxx/
3744
3745 FLOPPY DRIVER
3746 M:      Jiri Kosina <jkosina@suse.cz>
3747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3748 S:      Odd fixes
3749 F:      drivers/block/floppy.c
3750
3751 FMC SUBSYSTEM
3752 M:      Alessandro Rubini <rubini@gnudd.com>
3753 W:      http://www.ohwr.org/projects/fmc-bus
3754 S:      Supported
3755 F:      drivers/fmc/
3756 F:      include/linux/fmc*.h
3757 F:      include/linux/ipmi-fru.h
3758 K:      fmc_d.*register
3759
3760 FPU EMULATOR
3761 M:      Bill Metzenthen <billm@melbpc.org.au>
3762 W:      http://floatingpoint.sourceforge.net/emulator/index.html
3763 S:      Maintained
3764 F:      arch/x86/math-emu/
3765
3766 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
3767 L:      netdev@vger.kernel.org
3768 S:      Orphan
3769 F:      drivers/net/wan/dlci.c
3770 F:      drivers/net/wan/sdla.c
3771
3772 FRAMEBUFFER LAYER
3773 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
3774 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
3775 L:      linux-fbdev@vger.kernel.org
3776 W:      http://linux-fbdev.sourceforge.net/
3777 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
3778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
3779 S:      Maintained
3780 F:      Documentation/fb/
3781 F:      Documentation/devicetree/bindings/fb/
3782 F:      drivers/video/
3783 F:      include/video/
3784 F:      include/linux/fb.h
3785 F:      include/uapi/video/
3786 F:      include/uapi/linux/fb.h
3787
3788 FREESCALE DIU FRAMEBUFFER DRIVER
3789 M:      Timur Tabi <timur@tabi.org>
3790 L:      linux-fbdev@vger.kernel.org
3791 S:      Maintained
3792 F:      drivers/video/fbdev/fsl-diu-fb.*
3793
3794 FREESCALE DMA DRIVER
3795 M:      Li Yang <leoli@freescale.com>
3796 M:      Zhang Wei <zw@zh-kernel.org>
3797 L:      linuxppc-dev@lists.ozlabs.org
3798 S:      Maintained
3799 F:      drivers/dma/fsldma.*
3800
3801 FREESCALE I2C CPM DRIVER
3802 M:      Jochen Friedrich <jochen@scram.de>
3803 L:      linuxppc-dev@lists.ozlabs.org
3804 L:      linux-i2c@vger.kernel.org
3805 S:      Maintained
3806 F:      drivers/i2c/busses/i2c-cpm.c
3807
3808 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
3809 M:      Sascha Hauer <kernel@pengutronix.de>
3810 L:      linux-fbdev@vger.kernel.org
3811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3812 S:      Maintained
3813 F:      include/linux/platform_data/video-imxfb.h
3814 F:      drivers/video/fbdev/imxfb.c
3815
3816 FREESCALE SOC FS_ENET DRIVER
3817 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
3818 M:      Vitaly Bordug <vbordug@ru.mvista.com>
3819 L:      linuxppc-dev@lists.ozlabs.org
3820 L:      netdev@vger.kernel.org
3821 S:      Maintained
3822 F:      drivers/net/ethernet/freescale/fs_enet/
3823 F:      include/linux/fs_enet_pd.h
3824
3825 FREESCALE QUICC ENGINE LIBRARY
3826 L:      linuxppc-dev@lists.ozlabs.org
3827 S:      Orphan
3828 F:      arch/powerpc/sysdev/qe_lib/
3829 F:      arch/powerpc/include/asm/*qe.h
3830
3831 FREESCALE USB PERIPHERAL DRIVERS
3832 M:      Li Yang <leoli@freescale.com>
3833 L:      linux-usb@vger.kernel.org
3834 L:      linuxppc-dev@lists.ozlabs.org
3835 S:      Maintained
3836 F:      drivers/usb/gadget/udc/fsl*
3837
3838 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
3839 M:      Li Yang <leoli@freescale.com>
3840 L:      netdev@vger.kernel.org
3841 L:      linuxppc-dev@lists.ozlabs.org
3842 S:      Maintained
3843 F:      drivers/net/ethernet/freescale/ucc_geth*
3844
3845 FREESCALE QUICC ENGINE UCC UART DRIVER
3846 M:      Timur Tabi <timur@tabi.org>
3847 L:      linuxppc-dev@lists.ozlabs.org
3848 S:      Maintained
3849 F:      drivers/tty/serial/ucc_uart.c
3850
3851 FREESCALE SOC SOUND DRIVERS
3852 M:      Timur Tabi <timur@tabi.org>
3853 M:      Nicolin Chen <nicoleotsuka@gmail.com>
3854 M:      Xiubo Li <Li.Xiubo@freescale.com>
3855 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3856 L:      linuxppc-dev@lists.ozlabs.org
3857 S:      Maintained
3858 F:      sound/soc/fsl/fsl*
3859 F:      sound/soc/fsl/imx*
3860 F:      sound/soc/fsl/mpc8610_hpcd.c
3861
3862 FREEVXFS FILESYSTEM
3863 M:      Christoph Hellwig <hch@infradead.org>
3864 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
3865 S:      Maintained
3866 F:      fs/freevxfs/
3867
3868 FREEZER
3869 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3870 M:      Pavel Machek <pavel@ucw.cz>
3871 L:      linux-pm@vger.kernel.org
3872 S:      Supported
3873 F:      Documentation/power/freezing-of-tasks.txt
3874 F:      include/linux/freezer.h
3875 F:      kernel/freezer.c
3876
3877 FRONTSWAP API
3878 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3879 L:      linux-kernel@vger.kernel.org
3880 S:      Maintained
3881 F:      mm/frontswap.c
3882 F:      include/linux/frontswap.h
3883
3884 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
3885 M:      David Howells <dhowells@redhat.com>
3886 L:      linux-cachefs@redhat.com
3887 S:      Supported
3888 F:      Documentation/filesystems/caching/
3889 F:      fs/fscache/
3890 F:      include/linux/fscache*.h
3891
3892 F2FS FILE SYSTEM
3893 M:      Jaegeuk Kim <jaegeuk@kernel.org>
3894 M:      Changman Lee <cm224.lee@samsung.com>
3895 L:      linux-f2fs-devel@lists.sourceforge.net
3896 W:      http://en.wikipedia.org/wiki/F2FS
3897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3898 S:      Maintained
3899 F:      Documentation/filesystems/f2fs.txt
3900 F:      Documentation/ABI/testing/sysfs-fs-f2fs
3901 F:      fs/f2fs/
3902 F:      include/linux/f2fs_fs.h
3903
3904 FUJITSU FR-V (FRV) PORT
3905 M:      David Howells <dhowells@redhat.com>
3906 S:      Maintained
3907 F:      arch/frv/
3908
3909 FUJITSU LAPTOP EXTRAS
3910 M:      Jonathan Woithe <jwoithe@just42.net>
3911 L:      platform-driver-x86@vger.kernel.org
3912 S:      Maintained
3913 F:      drivers/platform/x86/fujitsu-laptop.c
3914
3915 FUJITSU M-5MO LS CAMERA ISP DRIVER
3916 M:      Kyungmin Park <kyungmin.park@samsung.com>
3917 M:      Heungjun Kim <riverful.kim@samsung.com>
3918 L:      linux-media@vger.kernel.org
3919 S:      Maintained
3920 F:      drivers/media/i2c/m5mols/
3921 F:      include/media/m5mols.h
3922
3923 FUJITSU TABLET EXTRAS
3924 M:      Robert Gerlach <khnz@gmx.de>
3925 L:      platform-driver-x86@vger.kernel.org
3926 S:      Maintained
3927 F:      drivers/platform/x86/fujitsu-tablet.c
3928
3929 FUSE: FILESYSTEM IN USERSPACE
3930 M:      Miklos Szeredi <miklos@szeredi.hu>
3931 L:      fuse-devel@lists.sourceforge.net
3932 W:      http://fuse.sourceforge.net/
3933 S:      Maintained
3934 F:      fs/fuse/
3935 F:      include/uapi/linux/fuse.h
3936
3937 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
3938 M:      Rik Faith <faith@cs.unc.edu>
3939 L:      linux-scsi@vger.kernel.org
3940 S:      Odd Fixes (e.g., new signatures)
3941 F:      drivers/scsi/fdomain.*
3942
3943 GCOV BASED KERNEL PROFILING
3944 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
3945 S:      Maintained
3946 F:      kernel/gcov/
3947 F:      Documentation/gcov.txt
3948
3949 GDT SCSI DISK ARRAY CONTROLLER DRIVER
3950 M:      Achim Leubner <achim_leubner@adaptec.com>
3951 L:      linux-scsi@vger.kernel.org
3952 W:      http://www.icp-vortex.com/
3953 S:      Supported
3954 F:      drivers/scsi/gdt*
3955
3956 GEMTEK FM RADIO RECEIVER DRIVER
3957 M:      Hans Verkuil <hverkuil@xs4all.nl>
3958 L:      linux-media@vger.kernel.org
3959 T:      git git://linuxtv.org/media_tree.git
3960 W:      http://linuxtv.org
3961 S:      Maintained
3962 F:      drivers/media/radio/radio-gemtek*
3963
3964 GENERIC GPIO I2C DRIVER
3965 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
3966 S:      Supported
3967 F:      drivers/i2c/busses/i2c-gpio.c
3968 F:      include/linux/i2c-gpio.h
3969
3970 GENERIC GPIO I2C MULTIPLEXER DRIVER
3971 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3972 L:      linux-i2c@vger.kernel.org
3973 S:      Supported
3974 F:      drivers/i2c/muxes/i2c-mux-gpio.c
3975 F:      include/linux/i2c-mux-gpio.h
3976 F:      Documentation/i2c/muxes/i2c-mux-gpio
3977
3978 GENERIC HDLC (WAN) DRIVERS
3979 M:      Krzysztof Halasa <khc@pm.waw.pl>
3980 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
3981 S:      Maintained
3982 F:      drivers/net/wan/c101.c
3983 F:      drivers/net/wan/hd6457*
3984 F:      drivers/net/wan/hdlc*
3985 F:      drivers/net/wan/n2.c
3986 F:      drivers/net/wan/pc300too.c
3987 F:      drivers/net/wan/pci200syn.c
3988 F:      drivers/net/wan/wanxl*
3989
3990 GENERIC INCLUDE/ASM HEADER FILES
3991 M:      Arnd Bergmann <arnd@arndb.de>
3992 L:      linux-arch@vger.kernel.org
3993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3994 S:      Maintained
3995 F:      include/asm-generic/
3996 F:      include/uapi/asm-generic/
3997
3998 GENERIC PHY FRAMEWORK
3999 M:      Kishon Vijay Abraham I <kishon@ti.com>
4000 L:      linux-kernel@vger.kernel.org
4001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4002 S:      Supported
4003 F:      drivers/phy/
4004 F:      include/linux/phy/
4005
4006 GENERIC UIO DRIVER FOR PCI DEVICES
4007 M:      "Michael S. Tsirkin" <mst@redhat.com>
4008 L:      kvm@vger.kernel.org
4009 S:      Supported
4010 F:      drivers/uio/uio_pci_generic.c
4011
4012 GET_MAINTAINER SCRIPT
4013 M:      Joe Perches <joe@perches.com>
4014 S:      Maintained
4015 F:      scripts/get_maintainer.pl
4016
4017 GFS2 FILE SYSTEM
4018 M:      Steven Whitehouse <swhiteho@redhat.com>
4019 L:      cluster-devel@redhat.com
4020 W:      http://sources.redhat.com/cluster/
4021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
4022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
4023 S:      Supported
4024 F:      Documentation/filesystems/gfs2*.txt
4025 F:      fs/gfs2/
4026 F:      include/uapi/linux/gfs2_ondisk.h
4027
4028 GIGASET ISDN DRIVERS
4029 M:      Hansjoerg Lipp <hjlipp@web.de>
4030 M:      Tilman Schmidt <tilman@imap.cc>
4031 L:      gigaset307x-common@lists.sourceforge.net
4032 W:      http://gigaset307x.sourceforge.net/
4033 S:      Maintained
4034 F:      Documentation/isdn/README.gigaset
4035 F:      drivers/isdn/gigaset/
4036 F:      include/uapi/linux/gigaset_dev.h
4037
4038 GO7007 MPEG CODEC
4039 M:      Hans Verkuil <hans.verkuil@cisco.com>
4040 L:      linux-media@vger.kernel.org
4041 S:      Maintained
4042 F:      drivers/media/usb/go7007/
4043
4044 GPIO SUBSYSTEM
4045 M:      Linus Walleij <linus.walleij@linaro.org>
4046 M:      Alexandre Courbot <gnurou@gmail.com>
4047 L:      linux-gpio@vger.kernel.org
4048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4049 S:      Maintained
4050 F:      Documentation/gpio/
4051 F:      drivers/gpio/
4052 F:      include/linux/gpio/
4053 F:      include/linux/gpio.h
4054 F:      include/asm-generic/gpio.h
4055
4056 GRE DEMULTIPLEXER DRIVER
4057 M:      Dmitry Kozlov <xeb@mail.ru>
4058 L:      netdev@vger.kernel.org
4059 S:      Maintained
4060 F:      net/ipv4/gre_demux.c
4061 F:      net/ipv4/gre_offload.c
4062 F:      include/net/gre.h
4063
4064 GRETH 10/100/1G Ethernet MAC device driver
4065 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4066 L:      netdev@vger.kernel.org
4067 S:      Maintained
4068 F:      drivers/net/ethernet/aeroflex/
4069
4070 GSPCA FINEPIX SUBDRIVER
4071 M:      Frank Zago <frank@zago.net>
4072 L:      linux-media@vger.kernel.org
4073 T:      git git://linuxtv.org/media_tree.git
4074 S:      Maintained
4075 F:      drivers/media/usb/gspca/finepix.c
4076
4077 GSPCA GL860 SUBDRIVER
4078 M:      Olivier Lorin <o.lorin@laposte.net>
4079 L:      linux-media@vger.kernel.org
4080 T:      git git://linuxtv.org/media_tree.git
4081 S:      Maintained
4082 F:      drivers/media/usb/gspca/gl860/
4083
4084 GSPCA M5602 SUBDRIVER
4085 M:      Erik Andren <erik.andren@gmail.com>
4086 L:      linux-media@vger.kernel.org
4087 T:      git git://linuxtv.org/media_tree.git
4088 S:      Maintained
4089 F:      drivers/media/usb/gspca/m5602/
4090
4091 GSPCA PAC207 SONIXB SUBDRIVER
4092 M:      Hans de Goede <hdegoede@redhat.com>
4093 L:      linux-media@vger.kernel.org
4094 T:      git git://linuxtv.org/media_tree.git
4095 S:      Maintained
4096 F:      drivers/media/usb/gspca/pac207.c
4097
4098 GSPCA SN9C20X SUBDRIVER
4099 M:      Brian Johnson <brijohn@gmail.com>
4100 L:      linux-media@vger.kernel.org
4101 T:      git git://linuxtv.org/media_tree.git
4102 S:      Maintained
4103 F:      drivers/media/usb/gspca/sn9c20x.c
4104
4105 GSPCA T613 SUBDRIVER
4106 M:      Leandro Costantino <lcostantino@gmail.com>
4107 L:      linux-media@vger.kernel.org
4108 T:      git git://linuxtv.org/media_tree.git
4109 S:      Maintained
4110 F:      drivers/media/usb/gspca/t613.c
4111
4112 GSPCA USB WEBCAM DRIVER
4113 M:      Hans de Goede <hdegoede@redhat.com>
4114 L:      linux-media@vger.kernel.org
4115 T:      git git://linuxtv.org/media_tree.git
4116 S:      Maintained
4117 F:      drivers/media/usb/gspca/
4118
4119 GUID PARTITION TABLE (GPT)
4120 M:      Davidlohr Bueso <davidlohr@hp.com>
4121 L:      linux-efi@vger.kernel.org
4122 S:      Maintained
4123 F:      block/partitions/efi.*
4124
4125 STK1160 USB VIDEO CAPTURE DRIVER
4126 M:      Ezequiel Garcia <elezegarcia@gmail.com>
4127 L:      linux-media@vger.kernel.org
4128 T:      git git://linuxtv.org/media_tree.git
4129 S:      Maintained
4130 F:      drivers/media/usb/stk1160/
4131
4132 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4133 M:      Frank Seidel <frank@f-seidel.de>
4134 L:      platform-driver-x86@vger.kernel.org
4135 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4136 S:      Maintained
4137 F:      drivers/platform/x86/hdaps.c
4138
4139 HDPVR USB VIDEO ENCODER DRIVER
4140 M:      Hans Verkuil <hverkuil@xs4all.nl>
4141 L:      linux-media@vger.kernel.org
4142 T:      git git://linuxtv.org/media_tree.git
4143 W:      http://linuxtv.org
4144 S:      Odd Fixes
4145 F:      drivers/media/usb/hdpvr/
4146
4147 HWPOISON MEMORY FAILURE HANDLING
4148 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4149 L:      linux-mm@kvack.org
4150 S:      Maintained
4151 F:      mm/memory-failure.c
4152 F:      mm/hwpoison-inject.c
4153
4154 HYPERVISOR VIRTUAL CONSOLE DRIVER
4155 L:      linuxppc-dev@lists.ozlabs.org
4156 S:      Odd Fixes
4157 F:      drivers/tty/hvc/
4158
4159 HARDWARE MONITORING
4160 M:      Jean Delvare <jdelvare@suse.de>
4161 M:      Guenter Roeck <linux@roeck-us.net>
4162 L:      lm-sensors@lm-sensors.org
4163 W:      http://www.lm-sensors.org/
4164 T:      quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
4165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4166 S:      Maintained
4167 F:      Documentation/hwmon/
4168 F:      drivers/hwmon/
4169 F:      include/linux/hwmon*.h
4170
4171 HARDWARE RANDOM NUMBER GENERATOR CORE
4172 M:      Matt Mackall <mpm@selenic.com>
4173 M:      Herbert Xu <herbert@gondor.apana.org.au>
4174 S:      Odd fixes
4175 F:      Documentation/hw_random.txt
4176 F:      drivers/char/hw_random/
4177 F:      include/linux/hw_random.h
4178
4179 HARDWARE SPINLOCK CORE
4180 M:      Ohad Ben-Cohen <ohad@wizery.com>
4181 S:      Maintained
4182 F:      Documentation/hwspinlock.txt
4183 F:      drivers/hwspinlock/hwspinlock_*
4184 F:      include/linux/hwspinlock.h
4185
4186 HARMONY SOUND DRIVER
4187 L:      linux-parisc@vger.kernel.org
4188 S:      Maintained
4189 F:      sound/parisc/harmony.*
4190
4191 HD29L2 MEDIA DRIVER
4192 M:      Antti Palosaari <crope@iki.fi>
4193 L:      linux-media@vger.kernel.org
4194 W:      http://linuxtv.org/
4195 W:      http://palosaari.fi/linux/
4196 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4197 T:      git git://linuxtv.org/anttip/media_tree.git
4198 S:      Maintained
4199 F:      drivers/media/dvb-frontends/hd29l2*
4200
4201 HEWLETT-PACKARD SMART2 RAID DRIVER
4202 M:      Chirag Kantharia <chirag.kantharia@hp.com>
4203 L:      iss_storagedev@hp.com
4204 S:      Maintained
4205 F:      Documentation/blockdev/cpqarray.txt
4206 F:      drivers/block/cpqarray.*
4207
4208 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4209 M:      "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
4210 L:      iss_storagedev@hp.com
4211 S:      Supported
4212 F:      Documentation/scsi/hpsa.txt
4213 F:      drivers/scsi/hpsa*.[ch]
4214 F:      include/linux/cciss*.h
4215 F:      include/uapi/linux/cciss*.h
4216
4217 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4218 M:      Mike Miller <mike.miller@hp.com>
4219 L:      iss_storagedev@hp.com
4220 S:      Supported
4221 F:      Documentation/blockdev/cciss.txt
4222 F:      drivers/block/cciss*
4223 F:      include/linux/cciss_ioctl.h
4224 F:      include/uapi/linux/cciss_ioctl.h
4225
4226 HFS FILESYSTEM
4227 L:      linux-fsdevel@vger.kernel.org
4228 S:      Orphan
4229 F:      Documentation/filesystems/hfs.txt
4230 F:      fs/hfs/
4231
4232 HFSPLUS FILESYSTEM
4233 L:      linux-fsdevel@vger.kernel.org
4234 S:      Orphan
4235 F:      Documentation/filesystems/hfsplus.txt
4236 F:      fs/hfsplus/
4237
4238 HGA FRAMEBUFFER DRIVER
4239 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4240 L:      linux-nvidia@lists.surfsouth.com
4241 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4242 S:      Maintained
4243 F:      drivers/video/fbdev/hgafb.c
4244
4245 HIBERNATION (aka Software Suspend, aka swsusp)
4246 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4247 M:      Pavel Machek <pavel@ucw.cz>
4248 L:      linux-pm@vger.kernel.org
4249 S:      Supported
4250 F:      arch/x86/power/
4251 F:      drivers/base/power/
4252 F:      kernel/power/
4253 F:      include/linux/suspend.h
4254 F:      include/linux/freezer.h
4255 F:      include/linux/pm.h
4256 F:      arch/*/include/asm/suspend*.h
4257
4258 HID CORE LAYER
4259 M:      Jiri Kosina <jkosina@suse.cz>
4260 L:      linux-input@vger.kernel.org
4261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4262 S:      Maintained
4263 F:      drivers/hid/
4264 F:      include/linux/hid*
4265 F:      include/uapi/linux/hid*
4266
4267 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4268 M:      Thomas Gleixner <tglx@linutronix.de>
4269 L:      linux-kernel@vger.kernel.org
4270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4271 S:      Maintained
4272 F:      Documentation/timers/
4273 F:      kernel/time/hrtimer.c
4274 F:      kernel/time/clockevents.c
4275 F:      kernel/time/tick*.*
4276 F:      kernel/time/timer_*.c
4277 F:      include/linux/clockchips.h
4278 F:      include/linux/hrtimer.h
4279
4280 HIGH-SPEED SCC DRIVER FOR AX.25
4281 L:      linux-hams@vger.kernel.org
4282 S:      Orphan
4283 F:      drivers/net/hamradio/dmascc.c
4284 F:      drivers/net/hamradio/scc.c
4285
4286 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4287 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4288 W:      http://www.highpoint-tech.com
4289 S:      Supported
4290 F:      Documentation/scsi/hptiop.txt
4291 F:      drivers/scsi/hptiop.c
4292
4293 HIPPI
4294 M:      Jes Sorensen <jes@trained-monkey.org>
4295 L:      linux-hippi@sunsite.dk
4296 S:      Maintained
4297 F:      include/linux/hippidevice.h
4298 F:      include/uapi/linux/if_hippi.h
4299 F:      net/802/hippi.c
4300 F:      drivers/net/hippi/
4301
4302 HOST AP DRIVER
4303 M:      Jouni Malinen <j@w1.fi>
4304 L:      hostap@shmoo.com (subscribers-only)
4305 L:      linux-wireless@vger.kernel.org
4306 W:      http://hostap.epitest.fi/
4307 S:      Maintained
4308 F:      drivers/net/wireless/hostap/
4309
4310 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4311 L:      platform-driver-x86@vger.kernel.org
4312 S:      Orphan
4313 F:      drivers/platform/x86/tc1100-wmi.c
4314
4315 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4316 M:      Jaroslav Kysela <perex@perex.cz>
4317 S:      Maintained
4318 F:      drivers/net/ethernet/hp/hp100.*
4319
4320 HPET:   High Precision Event Timers driver
4321 M:      Clemens Ladisch <clemens@ladisch.de>
4322 S:      Maintained
4323 F:      Documentation/timers/hpet.txt
4324 F:      drivers/char/hpet.c
4325 F:      include/linux/hpet.h
4326 F:      include/uapi/linux/hpet.h
4327
4328 HPET:   x86
4329 S:      Orphan
4330 F:      arch/x86/kernel/hpet.c
4331 F:      arch/x86/include/asm/hpet.h
4332
4333 HPFS FILESYSTEM
4334 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4335 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4336 S:      Maintained
4337 F:      fs/hpfs/
4338
4339 HSI SUBSYSTEM
4340 M:      Sebastian Reichel <sre@kernel.org>
4341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4342 S:      Maintained
4343 F:      Documentation/ABI/testing/sysfs-bus-hsi
4344 F:      Documentation/hsi.txt
4345 F:      drivers/hsi/
4346 F:      include/linux/hsi/
4347 F:      include/uapi/linux/hsi/
4348
4349 HSO 3G MODEM DRIVER
4350 M:      Jan Dumon <j.dumon@option.com>
4351 W:      http://www.pharscape.org
4352 S:      Maintained
4353 F:      drivers/net/usb/hso.c
4354
4355 HSR NETWORK PROTOCOL
4356 M:      Arvid Brodin <arvid.brodin@alten.se>
4357 L:      netdev@vger.kernel.org
4358 S:      Maintained
4359 F:      net/hsr/
4360
4361 HTCPEN TOUCHSCREEN DRIVER
4362 M:      Pau Oliva Fora <pof@eslack.org>
4363 L:      linux-input@vger.kernel.org
4364 S:      Maintained
4365 F:      drivers/input/touchscreen/htcpen.c
4366
4367 HUGETLB FILESYSTEM
4368 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
4369 S:      Maintained
4370 F:      fs/hugetlbfs/
4371
4372 Hyper-V CORE AND DRIVERS
4373 M:      K. Y. Srinivasan <kys@microsoft.com>
4374 M:      Haiyang Zhang <haiyangz@microsoft.com>
4375 L:      devel@linuxdriverproject.org
4376 S:      Maintained
4377 F:      arch/x86/include/asm/mshyperv.h
4378 F:      arch/x86/include/uapi/asm/hyperv.h
4379 F:      arch/x86/kernel/cpu/mshyperv.c
4380 F:      drivers/hid/hid-hyperv.c
4381 F:      drivers/hv/
4382 F:      drivers/input/serio/hyperv-keyboard.c
4383 F:      drivers/net/hyperv/
4384 F:      drivers/scsi/storvsc_drv.c
4385 F:      drivers/video/fbdev/hyperv_fb.c
4386 F:      include/linux/hyperv.h
4387 F:      tools/hv/
4388
4389 I2C OVER PARALLEL PORT
4390 M:      Jean Delvare <jdelvare@suse.de>
4391 L:      linux-i2c@vger.kernel.org
4392 S:      Maintained
4393 F:      Documentation/i2c/busses/i2c-parport
4394 F:      Documentation/i2c/busses/i2c-parport-light
4395 F:      drivers/i2c/busses/i2c-parport.c
4396 F:      drivers/i2c/busses/i2c-parport-light.c
4397
4398 I2C/SMBUS CONTROLLER DRIVERS FOR PC
4399 M:      Jean Delvare <jdelvare@suse.de>
4400 L:      linux-i2c@vger.kernel.org
4401 S:      Maintained
4402 F:      Documentation/i2c/busses/i2c-ali1535
4403 F:      Documentation/i2c/busses/i2c-ali1563
4404 F:      Documentation/i2c/busses/i2c-ali15x3
4405 F:      Documentation/i2c/busses/i2c-amd756
4406 F:      Documentation/i2c/busses/i2c-amd8111
4407 F:      Documentation/i2c/busses/i2c-i801
4408 F:      Documentation/i2c/busses/i2c-nforce2
4409 F:      Documentation/i2c/busses/i2c-piix4
4410 F:      Documentation/i2c/busses/i2c-sis5595
4411 F:      Documentation/i2c/busses/i2c-sis630
4412 F:      Documentation/i2c/busses/i2c-sis96x
4413 F:      Documentation/i2c/busses/i2c-via
4414 F:      Documentation/i2c/busses/i2c-viapro
4415 F:      drivers/i2c/busses/i2c-ali1535.c
4416 F:      drivers/i2c/busses/i2c-ali1563.c
4417 F:      drivers/i2c/busses/i2c-ali15x3.c
4418 F:      drivers/i2c/busses/i2c-amd756.c
4419 F:      drivers/i2c/busses/i2c-amd756-s4882.c
4420 F:      drivers/i2c/busses/i2c-amd8111.c
4421 F:      drivers/i2c/busses/i2c-i801.c
4422 F:      drivers/i2c/busses/i2c-isch.c
4423 F:      drivers/i2c/busses/i2c-nforce2.c
4424 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
4425 F:      drivers/i2c/busses/i2c-piix4.c
4426 F:      drivers/i2c/busses/i2c-sis5595.c
4427 F:      drivers/i2c/busses/i2c-sis630.c
4428 F:      drivers/i2c/busses/i2c-sis96x.c
4429 F:      drivers/i2c/busses/i2c-via.c
4430 F:      drivers/i2c/busses/i2c-viapro.c
4431
4432 I2C/SMBUS ISMT DRIVER
4433 M:      Seth Heasley <seth.heasley@intel.com>
4434 M:      Neil Horman <nhorman@tuxdriver.com>
4435 L:      linux-i2c@vger.kernel.org
4436 F:      drivers/i2c/busses/i2c-ismt.c
4437 F:      Documentation/i2c/busses/i2c-ismt
4438
4439 I2C/SMBUS STUB DRIVER
4440 M:      Jean Delvare <jdelvare@suse.de>
4441 L:      linux-i2c@vger.kernel.org
4442 S:      Maintained
4443 F:      drivers/i2c/i2c-stub.c
4444
4445 I2C SUBSYSTEM
4446 M:      Wolfram Sang <wsa@the-dreams.de>
4447 L:      linux-i2c@vger.kernel.org
4448 W:      https://i2c.wiki.kernel.org/
4449 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
4450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
4451 S:      Maintained
4452 F:      Documentation/i2c/
4453 F:      drivers/i2c/
4454 F:      include/linux/i2c.h
4455 F:      include/linux/i2c-*.h
4456 F:      include/uapi/linux/i2c.h
4457 F:      include/uapi/linux/i2c-*.h
4458
4459 I2C ACPI SUPPORT
4460 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
4461 L:      linux-i2c@vger.kernel.org
4462 L:      linux-acpi@vger.kernel.org
4463 S:      Maintained
4464 F:      drivers/i2c/i2c-acpi.c
4465
4466 I2C-TAOS-EVM DRIVER
4467 M:      Jean Delvare <jdelvare@suse.de>
4468 L:      linux-i2c@vger.kernel.org
4469 S:      Maintained
4470 F:      Documentation/i2c/busses/i2c-taos-evm
4471 F:      drivers/i2c/busses/i2c-taos-evm.c
4472
4473 I2C-TINY-USB DRIVER
4474 M:      Till Harbaum <till@harbaum.org>
4475 L:      linux-i2c@vger.kernel.org
4476 W:      http://www.harbaum.org/till/i2c_tiny_usb
4477 S:      Maintained
4478 F:      drivers/i2c/busses/i2c-tiny-usb.c
4479
4480 i386 BOOT CODE
4481 M:      "H. Peter Anvin" <hpa@zytor.com>
4482 S:      Maintained
4483 F:      arch/x86/boot/
4484
4485 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
4486 M:      "H. Peter Anvin" <hpa@zytor.com>
4487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
4488 S:      Maintained
4489
4490 IA64 (Itanium) PLATFORM
4491 M:      Tony Luck <tony.luck@intel.com>
4492 M:      Fenghua Yu <fenghua.yu@intel.com>
4493 L:      linux-ia64@vger.kernel.org
4494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
4495 S:      Maintained
4496 F:      arch/ia64/
4497
4498 IBM Power in-Nest Crypto Acceleration
4499 M:      Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
4500 M:      Fionnuala Gunter <fin@linux.vnet.ibm.com>
4501 L:      linux-crypto@vger.kernel.org
4502 S:      Supported
4503 F:      drivers/crypto/nx/
4504
4505 IBM Power 842 compression accelerator
4506 M:      Nathan Fontenot <nfont@linux.vnet.ibm.com>
4507 S:      Supported
4508 F:      drivers/crypto/nx/nx-842.c
4509 F:      include/linux/nx842.h
4510
4511 IBM Power Linux RAID adapter
4512 M:      Brian King <brking@us.ibm.com>
4513 S:      Supported
4514 F:      drivers/scsi/ipr.*
4515
4516 IBM Power Virtual Ethernet Device Driver
4517 M:      Santiago Leon <santil@linux.vnet.ibm.com>
4518 L:      netdev@vger.kernel.org
4519 S:      Supported
4520 F:      drivers/net/ethernet/ibm/ibmveth.*
4521
4522 IBM Power Virtual SCSI Device Drivers
4523 M:      Nathan Fontenot <nfont@linux.vnet.ibm.com>
4524 L:      linux-scsi@vger.kernel.org
4525 S:      Supported
4526 F:      drivers/scsi/ibmvscsi/ibmvscsi*
4527 F:      drivers/scsi/ibmvscsi/viosrp.h
4528
4529 IBM Power Virtual FC Device Drivers
4530 M:      Brian King <brking@linux.vnet.ibm.com>
4531 L:      linux-scsi@vger.kernel.org
4532 S:      Supported
4533 F:      drivers/scsi/ibmvscsi/ibmvfc*
4534
4535 IBM ServeRAID RAID DRIVER
4536 S:      Orphan
4537 F:      drivers/scsi/ips.*
4538
4539 ICH LPC AND GPIO DRIVER
4540 M:      Peter Tyser <ptyser@xes-inc.com>
4541 S:      Maintained
4542 F:      drivers/mfd/lpc_ich.c
4543 F:      drivers/gpio/gpio-ich.c
4544
4545 IDE SUBSYSTEM
4546 M:      "David S. Miller" <davem@davemloft.net>
4547 L:      linux-ide@vger.kernel.org
4548 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
4549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
4550 S:      Maintained
4551 F:      Documentation/ide/
4552 F:      drivers/ide/
4553 F:      include/linux/ide.h
4554
4555 IDEAPAD LAPTOP EXTRAS DRIVER
4556 M:      Ike Panhc <ike.pan@canonical.com>
4557 L:      platform-driver-x86@vger.kernel.org
4558 W:      http://launchpad.net/ideapad-laptop
4559 S:      Maintained
4560 F:      drivers/platform/x86/ideapad-laptop.c
4561
4562 IDEAPAD LAPTOP SLIDEBAR DRIVER
4563 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
4564 L:      linux-input@vger.kernel.org
4565 W:      https://github.com/o2genum/ideapad-slidebar
4566 S:      Maintained
4567 F:      drivers/input/misc/ideapad_slidebar.c
4568
4569 IDE/ATAPI DRIVERS
4570 M:      Borislav Petkov <bp@alien8.de>
4571 L:      linux-ide@vger.kernel.org
4572 S:      Maintained
4573 F:      Documentation/cdrom/ide-cd
4574 F:      drivers/ide/ide-cd*
4575
4576 IDLE-I7300
4577 M:      Andy Henroid <andrew.d.henroid@intel.com>
4578 L:      linux-pm@vger.kernel.org
4579 S:      Supported
4580 F:      drivers/idle/i7300_idle.c
4581
4582 IEEE 802.15.4 SUBSYSTEM
4583 M:      Alexander Aring <alex.aring@gmail.com>
4584 L:      linux-wpan@vger.kernel.org
4585 W:      https://github.com/linux-wpan
4586 T:      git git://github.com/linux-wpan/linux-wpan-next.git
4587 S:      Maintained
4588 F:      net/ieee802154/
4589 F:      net/mac802154/
4590 F:      drivers/net/ieee802154/
4591 F:      Documentation/networking/ieee802154.txt
4592
4593 IGUANAWORKS USB IR TRANSCEIVER
4594 M:      Sean Young <sean@mess.org>
4595 L:      linux-media@vger.kernel.org
4596 S:      Maintained
4597 F:      drivers/media/rc/iguanair.c
4598
4599 IIO SUBSYSTEM AND DRIVERS
4600 M:      Jonathan Cameron <jic23@kernel.org>
4601 L:      linux-iio@vger.kernel.org
4602 S:      Maintained
4603 F:      drivers/iio/
4604 F:      drivers/staging/iio/
4605
4606 IKANOS/ADI EAGLE ADSL USB DRIVER
4607 M:      Matthieu Castet <castet.matthieu@free.fr>
4608 M:      Stanislaw Gruszka <stf_xl@wp.pl>
4609 S:      Maintained
4610 F:      drivers/usb/atm/ueagle-atm.c
4611
4612 INA209 HARDWARE MONITOR DRIVER
4613 M:      Guenter Roeck <linux@roeck-us.net>
4614 L:      lm-sensors@lm-sensors.org
4615 S:      Maintained
4616 F:      Documentation/hwmon/ina209
4617 F:      Documentation/devicetree/bindings/i2c/ina209.txt
4618 F:      drivers/hwmon/ina209.c
4619
4620 INA2XX HARDWARE MONITOR DRIVER
4621 M:      Guenter Roeck <linux@roeck-us.net>
4622 L:      lm-sensors@lm-sensors.org
4623 S:      Maintained
4624 F:      Documentation/hwmon/ina2xx
4625 F:      drivers/hwmon/ina2xx.c
4626 F:      include/linux/platform_data/ina2xx.h
4627
4628 INDUSTRY PACK SUBSYSTEM (IPACK)
4629 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4630 M:      Jens Taprogge <jens.taprogge@taprogge.org>
4631 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4632 L:      industrypack-devel@lists.sourceforge.net
4633 W:      http://industrypack.sourceforge.net
4634 S:      Maintained
4635 F:      drivers/ipack/
4636
4637 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
4638 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4639 M:      Dmitry Kasatkin <d.kasatkin@samsung.com>
4640 L:      linux-ima-devel@lists.sourceforge.net
4641 L:      linux-ima-user@lists.sourceforge.net
4642 L:      linux-security-module@vger.kernel.org
4643 S:      Supported
4644 F:      security/integrity/ima/
4645
4646 IMS TWINTURBO FRAMEBUFFER DRIVER
4647 L:      linux-fbdev@vger.kernel.org
4648 S:      Orphan
4649 F:      drivers/video/fbdev/imsttfb.c
4650
4651 INFINIBAND SUBSYSTEM
4652 M:      Roland Dreier <roland@kernel.org>
4653 M:      Sean Hefty <sean.hefty@intel.com>
4654 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
4655 L:      linux-rdma@vger.kernel.org
4656 W:      http://www.openfabrics.org/
4657 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
4658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
4659 S:      Supported
4660 F:      Documentation/infiniband/
4661 F:      drivers/infiniband/
4662 F:      include/uapi/linux/if_infiniband.h
4663
4664 INOTIFY
4665 M:      John McCutchan <john@johnmccutchan.com>
4666 M:      Robert Love <rlove@rlove.org>
4667 M:      Eric Paris <eparis@parisplace.org>
4668 S:      Maintained
4669 F:      Documentation/filesystems/inotify.txt
4670 F:      fs/notify/inotify/
4671 F:      include/linux/inotify.h
4672 F:      include/uapi/linux/inotify.h
4673
4674 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
4675 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
4676 M:      Dmitry Torokhov <dtor@mail.ru>
4677 L:      linux-input@vger.kernel.org
4678 Q:      http://patchwork.kernel.org/project/linux-input/list/
4679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
4680 S:      Maintained
4681 F:      drivers/input/
4682 F:      include/linux/input.h
4683 F:      include/uapi/linux/input.h
4684 F:      include/linux/input/
4685
4686 INPUT MULTITOUCH (MT) PROTOCOL
4687 M:      Henrik Rydberg <rydberg@euromail.se>
4688 L:      linux-input@vger.kernel.org
4689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
4690 S:      Maintained
4691 F:      Documentation/input/multi-touch-protocol.txt
4692 F:      drivers/input/input-mt.c
4693 K:      \b(ABS|SYN)_MT_
4694
4695 INTEL C600 SERIES SAS CONTROLLER DRIVER
4696 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
4697 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
4698 M:      Dave Jiang <dave.jiang@intel.com>
4699 L:      linux-scsi@vger.kernel.org
4700 T:      git git://git.code.sf.net/p/intel-sas/isci
4701 S:      Supported
4702 F:      drivers/scsi/isci/
4703
4704 INTEL IDLE DRIVER
4705 M:      Len Brown <lenb@kernel.org>
4706 L:      linux-pm@vger.kernel.org
4707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
4708 S:      Supported
4709 F:      drivers/idle/intel_idle.c
4710
4711 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
4712 M:      Maik Broemme <mbroemme@plusserver.de>
4713 L:      linux-fbdev@vger.kernel.org
4714 S:      Maintained
4715 F:      Documentation/fb/intelfb.txt
4716 F:      drivers/video/fbdev/intelfb/
4717
4718 INTEL 810/815 FRAMEBUFFER DRIVER
4719 M:      Antonino Daplas <adaplas@gmail.com>
4720 L:      linux-fbdev@vger.kernel.org
4721 S:      Maintained
4722 F:      drivers/video/fbdev/i810/
4723
4724 INTEL MENLOW THERMAL DRIVER
4725 M:      Sujith Thomas <sujith.thomas@intel.com>
4726 L:      platform-driver-x86@vger.kernel.org
4727 W:      https://01.org/linux-acpi
4728 S:      Supported
4729 F:      drivers/platform/x86/intel_menlow.c
4730
4731 INTEL IA32 MICROCODE UPDATE SUPPORT
4732 M:      Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
4733 S:      Maintained
4734 F:      arch/x86/kernel/cpu/microcode/core*
4735 F:      arch/x86/kernel/cpu/microcode/intel*
4736
4737 INTEL I/OAT DMA DRIVER
4738 M:      Dan Williams <dan.j.williams@intel.com>
4739 M:      Dave Jiang <dave.jiang@intel.com>
4740 L:      dmaengine@vger.kernel.org
4741 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4742 S:      Supported
4743 F:      drivers/dma/ioat*
4744
4745 INTEL IOMMU (VT-d)
4746 M:      David Woodhouse <dwmw2@infradead.org>
4747 L:      iommu@lists.linux-foundation.org
4748 T:      git git://git.infradead.org/iommu-2.6.git
4749 S:      Supported
4750 F:      drivers/iommu/intel-iommu.c
4751 F:      include/linux/intel-iommu.h
4752
4753 INTEL IOP-ADMA DMA DRIVER
4754 M:      Dan Williams <dan.j.williams@intel.com>
4755 S:      Odd fixes
4756 F:      drivers/dma/iop-adma.c
4757
4758 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
4759 M:      Krzysztof Halasa <khc@pm.waw.pl>
4760 S:      Maintained
4761 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
4762 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
4763 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4764 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
4765 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
4766 F:      drivers/net/wan/ixp4xx_hss.c
4767
4768 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
4769 M:      Deepak Saxena <dsaxena@plexity.net>
4770 S:      Maintained
4771 F:      drivers/char/hw_random/ixp4xx-rng.c
4772
4773 INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf)
4774 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4775 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
4776 M:      Bruce Allan <bruce.w.allan@intel.com>
4777 M:      Carolyn Wyborny <carolyn.wyborny@intel.com>
4778 M:      Don Skidmore <donald.c.skidmore@intel.com>
4779 M:      Greg Rose <gregory.v.rose@intel.com>
4780 M:      Alex Duyck <alexander.h.duyck@intel.com>
4781 M:      John Ronciak <john.ronciak@intel.com>
4782 M:      Mitch Williams <mitch.a.williams@intel.com>
4783 M:      Linux NICS <linux.nics@intel.com>
4784 L:      e1000-devel@lists.sourceforge.net
4785 W:      http://www.intel.com/support/feedback.htm
4786 W:      http://e1000.sourceforge.net/
4787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
4789 S:      Supported
4790 F:      Documentation/networking/e100.txt
4791 F:      Documentation/networking/e1000.txt
4792 F:      Documentation/networking/e1000e.txt
4793 F:      Documentation/networking/igb.txt
4794 F:      Documentation/networking/igbvf.txt
4795 F:      Documentation/networking/ixgb.txt
4796 F:      Documentation/networking/ixgbe.txt
4797 F:      Documentation/networking/ixgbevf.txt
4798 F:      Documentation/networking/i40e.txt
4799 F:      Documentation/networking/i40evf.txt
4800 F:      drivers/net/ethernet/intel/
4801 F:      drivers/net/ethernet/intel/*/
4802
4803 INTEL-MID GPIO DRIVER
4804 M:      David Cohen <david.a.cohen@linux.intel.com>
4805 L:      linux-gpio@vger.kernel.org
4806 S:      Maintained
4807 F:      drivers/gpio/gpio-intel-mid.c
4808
4809 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4810 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
4811 L:      linux-wireless@vger.kernel.org
4812 S:      Maintained
4813 F:      Documentation/networking/README.ipw2100
4814 F:      Documentation/networking/README.ipw2200
4815 F:      drivers/net/wireless/ipw2x00/
4816
4817 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
4818 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
4819 M:      Gang Wei <gang.wei@intel.com>
4820 M:      Shane Wang <shane.wang@intel.com>
4821 L:      tboot-devel@lists.sourceforge.net
4822 W:      http://tboot.sourceforge.net
4823 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
4824 S:      Supported
4825 F:      Documentation/intel_txt.txt
4826 F:      include/linux/tboot.h
4827 F:      arch/x86/kernel/tboot.c
4828
4829 INTEL WIRELESS WIMAX CONNECTION 2400
4830 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
4831 M:      linux-wimax@intel.com
4832 L:     wimax@linuxwimax.org (subscribers-only)
4833 S:      Supported
4834 W:      http://linuxwimax.org
4835 F:      Documentation/wimax/README.i2400m
4836 F:      drivers/net/wimax/i2400m/
4837 F:      include/uapi/linux/wimax/i2400m.h
4838
4839 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4840 M:      Stanislaw Gruszka <sgruszka@redhat.com>
4841 L:      linux-wireless@vger.kernel.org
4842 S:      Supported
4843 F:      drivers/net/wireless/iwlegacy/
4844
4845 INTEL WIRELESS WIFI LINK (iwlwifi)
4846 M:      Johannes Berg <johannes.berg@intel.com>
4847 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
4848 M:      Intel Linux Wireless <ilw@linux.intel.com>
4849 L:      linux-wireless@vger.kernel.org
4850 W:      http://intellinuxwireless.org
4851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
4852 S:      Supported
4853 F:      drivers/net/wireless/iwlwifi/
4854
4855 INTEL MANAGEMENT ENGINE (mei)
4856 M:      Tomas Winkler <tomas.winkler@intel.com>
4857 L:      linux-kernel@vger.kernel.org
4858 S:      Supported
4859 F:      include/uapi/linux/mei.h
4860 F:      drivers/misc/mei/*
4861 F:      Documentation/misc-devices/mei/*
4862
4863 IOC3 ETHERNET DRIVER
4864 M:      Ralf Baechle <ralf@linux-mips.org>
4865 L:      linux-mips@linux-mips.org
4866 S:      Maintained
4867 F:      drivers/net/ethernet/sgi/ioc3-eth.c
4868
4869 IOC3 SERIAL DRIVER
4870 M:      Pat Gefre <pfg@sgi.com>
4871 L:      linux-serial@vger.kernel.org
4872 S:      Maintained
4873 F:      drivers/tty/serial/ioc3_serial.c
4874
4875 IOMMU DRIVERS
4876 M:      Joerg Roedel <joro@8bytes.org>
4877 L:      iommu@lists.linux-foundation.org
4878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
4879 S:      Maintained
4880 F:      drivers/iommu/
4881
4882 IP MASQUERADING
4883 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
4884 S:      Maintained
4885 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
4886
4887 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
4888 M:      Francois Romieu <romieu@fr.zoreil.com>
4889 M:      Sorbica Shieh <sorbica@icplus.com.tw>
4890 L:      netdev@vger.kernel.org
4891 S:      Maintained
4892 F:      drivers/net/ethernet/icplus/ipg.*
4893
4894 IPATH DRIVER
4895 M:      Mike Marciniszyn <infinipath@intel.com>
4896 L:      linux-rdma@vger.kernel.org
4897 S:      Maintained
4898 F:      drivers/infiniband/hw/ipath/
4899
4900 IPMI SUBSYSTEM
4901 M:      Corey Minyard <minyard@acm.org>
4902 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
4903 W:      http://openipmi.sourceforge.net/
4904 S:      Supported
4905 F:      Documentation/IPMI.txt
4906 F:      drivers/char/ipmi/
4907 F:      include/linux/ipmi*
4908 F:      include/uapi/linux/ipmi*
4909
4910 IPS SCSI RAID DRIVER
4911 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4912 L:      linux-scsi@vger.kernel.org
4913 W:      http://www.adaptec.com/
4914 S:      Maintained
4915 F:      drivers/scsi/ips*
4916
4917 IPVS
4918 M:      Wensong Zhang <wensong@linux-vs.org>
4919 M:      Simon Horman <horms@verge.net.au>
4920 M:      Julian Anastasov <ja@ssi.bg>
4921 L:      netdev@vger.kernel.org
4922 L:      lvs-devel@vger.kernel.org
4923 S:      Maintained
4924 F:      Documentation/networking/ipvs-sysctl.txt
4925 F:      include/net/ip_vs.h
4926 F:      include/uapi/linux/ip_vs.h
4927 F:      net/netfilter/ipvs/
4928
4929 IPWIRELESS DRIVER
4930 M:      Jiri Kosina <jkosina@suse.cz>
4931 M:      David Sterba <dsterba@suse.cz>
4932 S:      Odd Fixes
4933 F:      drivers/tty/ipwireless/
4934
4935 IPX NETWORK LAYER
4936 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
4937 L:      netdev@vger.kernel.org
4938 S:      Maintained
4939 F:      include/net/ipx.h
4940 F:      include/uapi/linux/ipx.h
4941 F:      net/ipx/
4942
4943 IRDA SUBSYSTEM
4944 M:      Samuel Ortiz <samuel@sortiz.org>
4945 L:      irda-users@lists.sourceforge.net (subscribers-only)
4946 L:      netdev@vger.kernel.org
4947 W:      http://irda.sourceforge.net/
4948 S:      Maintained
4949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
4950 F:      Documentation/networking/irda.txt
4951 F:      drivers/net/irda/
4952 F:      include/net/irda/
4953 F:      net/irda/
4954
4955 IRQ SUBSYSTEM
4956 M:      Thomas Gleixner <tglx@linutronix.de>
4957 L:      linux-kernel@vger.kernel.org
4958 S:      Maintained
4959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
4960 F:      kernel/irq/
4961
4962 IRQCHIP DRIVERS
4963 M:      Thomas Gleixner <tglx@linutronix.de>
4964 M:      Jason Cooper <jason@lakedaemon.net>
4965 L:      linux-kernel@vger.kernel.org
4966 S:      Maintained
4967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
4968 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
4969 F:      drivers/irqchip/
4970
4971 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4972 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
4973 S:      Maintained
4974 F:      Documentation/IRQ-domain.txt
4975 F:      include/linux/irqdomain.h
4976 F:      kernel/irq/irqdomain.c
4977
4978 ISAPNP
4979 M:      Jaroslav Kysela <perex@perex.cz>
4980 S:      Maintained
4981 F:      Documentation/isapnp.txt
4982 F:      drivers/pnp/isapnp/
4983 F:      include/linux/isapnp.h
4984
4985 ISA RADIO MODULE
4986 M:      Hans Verkuil <hverkuil@xs4all.nl>
4987 L:      linux-media@vger.kernel.org
4988 T:      git git://linuxtv.org/media_tree.git
4989 W:      http://linuxtv.org
4990 S:      Maintained
4991 F:      drivers/media/radio/radio-isa*
4992
4993 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4994 M:      Peter Jones <pjones@redhat.com>
4995 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
4996 S:      Maintained
4997 F:      drivers/firmware/iscsi_ibft*
4998
4999 ISCSI
5000 M:      Mike Christie <michaelc@cs.wisc.edu>
5001 L:      open-iscsi@googlegroups.com
5002 W:      www.open-iscsi.org
5003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5004 S:      Maintained
5005 F:      drivers/scsi/*iscsi*
5006 F:      include/scsi/*iscsi*
5007
5008 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5009 M:      Or Gerlitz <ogerlitz@mellanox.com>
5010 M:      Roi Dayan <roid@mellanox.com>
5011 L:      linux-rdma@vger.kernel.org
5012 S:      Supported
5013 W:      http://www.openfabrics.org
5014 W:      www.open-iscsi.org
5015 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5016 F:      drivers/infiniband/ulp/iser/
5017
5018 ISDN SUBSYSTEM
5019 M:      Karsten Keil <isdn@linux-pingi.de>
5020 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5021 L:      netdev@vger.kernel.org
5022 W:      http://www.isdn4linux.de
5023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5024 S:      Maintained
5025 F:      Documentation/isdn/
5026 F:      drivers/isdn/
5027 F:      include/linux/isdn.h
5028 F:      include/linux/isdn/
5029 F:      include/uapi/linux/isdn.h
5030 F:      include/uapi/linux/isdn/
5031
5032 ISDN SUBSYSTEM (Eicon active card driver)
5033 M:      Armin Schindler <mac@melware.de>
5034 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5035 W:      http://www.melware.de
5036 S:      Maintained
5037 F:      drivers/isdn/hardware/eicon/
5038
5039 IT87 HARDWARE MONITORING DRIVER
5040 M:      Jean Delvare <jdelvare@suse.de>
5041 L:      lm-sensors@lm-sensors.org
5042 S:      Maintained
5043 F:      Documentation/hwmon/it87
5044 F:      drivers/hwmon/it87.c
5045
5046 IT913X MEDIA DRIVER
5047 M:      Antti Palosaari <crope@iki.fi>
5048 L:      linux-media@vger.kernel.org
5049 W:      http://linuxtv.org/
5050 W:      http://palosaari.fi/linux/
5051 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5052 T:      git git://linuxtv.org/anttip/media_tree.git
5053 S:      Maintained
5054 F:      drivers/media/tuners/tuner_it913x*
5055
5056 IVTV VIDEO4LINUX DRIVER
5057 M:      Andy Walls <awalls@md.metrocast.net>
5058 L:      ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
5059 L:      linux-media@vger.kernel.org
5060 T:      git git://linuxtv.org/media_tree.git
5061 W:      http://www.ivtvdriver.org
5062 S:      Maintained
5063 F:      Documentation/video4linux/*.ivtv
5064 F:      drivers/media/pci/ivtv/
5065 F:      include/uapi/linux/ivtv*
5066
5067 IX2505V MEDIA DRIVER
5068 M:      Malcolm Priestley <tvboxspy@gmail.com>
5069 L:      linux-media@vger.kernel.org
5070 W:      http://linuxtv.org/
5071 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5072 S:      Maintained
5073 F:      drivers/media/dvb-frontends/ix2505v*
5074
5075 JC42.4 TEMPERATURE SENSOR DRIVER
5076 M:      Guenter Roeck <linux@roeck-us.net>
5077 L:      lm-sensors@lm-sensors.org
5078 S:      Maintained
5079 F:      drivers/hwmon/jc42.c
5080 F:      Documentation/hwmon/jc42
5081
5082 JFS FILESYSTEM
5083 M:      Dave Kleikamp <shaggy@kernel.org>
5084 L:      jfs-discussion@lists.sourceforge.net
5085 W:      http://jfs.sourceforge.net/
5086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5087 S:      Maintained
5088 F:      Documentation/filesystems/jfs.txt
5089 F:      fs/jfs/
5090
5091 JME NETWORK DRIVER
5092 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5093 L:      netdev@vger.kernel.org
5094 S:      Maintained
5095 F:      drivers/net/ethernet/jme.*
5096
5097 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5098 M:      David Woodhouse <dwmw2@infradead.org>
5099 L:      linux-mtd@lists.infradead.org
5100 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5101 S:      Maintained
5102 F:      fs/jffs2/
5103 F:      include/uapi/linux/jffs2.h
5104
5105 JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
5106 M:      Andrew Morton <akpm@linux-foundation.org>
5107 M:      Jan Kara <jack@suse.cz>
5108 L:      linux-ext4@vger.kernel.org
5109 S:      Maintained
5110 F:      fs/jbd/
5111 F:      include/linux/jbd.h
5112
5113 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5114 M:      "Theodore Ts'o" <tytso@mit.edu>
5115 L:      linux-ext4@vger.kernel.org
5116 S:      Maintained
5117 F:      fs/jbd2/
5118 F:      include/linux/jbd2.h
5119
5120 JSM Neo PCI based serial card
5121 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5122 L:      linux-serial@vger.kernel.org
5123 S:      Maintained
5124 F:      drivers/tty/serial/jsm/
5125
5126 K10TEMP HARDWARE MONITORING DRIVER
5127 M:      Clemens Ladisch <clemens@ladisch.de>
5128 L:      lm-sensors@lm-sensors.org
5129 S:      Maintained
5130 F:      Documentation/hwmon/k10temp
5131 F:      drivers/hwmon/k10temp.c
5132
5133 K8TEMP HARDWARE MONITORING DRIVER
5134 M:      Rudolf Marek <r.marek@assembler.cz>
5135 L:      lm-sensors@lm-sensors.org
5136 S:      Maintained
5137 F:      Documentation/hwmon/k8temp
5138 F:      drivers/hwmon/k8temp.c
5139
5140 KCONFIG
5141 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5142 L:      linux-kbuild@vger.kernel.org
5143 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5144 S:      Maintained
5145 F:      Documentation/kbuild/kconfig-language.txt
5146 F:      scripts/kconfig/
5147
5148 KDUMP
5149 M:      Vivek Goyal <vgoyal@redhat.com>
5150 M:      Haren Myneni <hbabu@us.ibm.com>
5151 L:      kexec@lists.infradead.org
5152 W:      http://lse.sourceforge.net/kdump/
5153 S:      Maintained
5154 F:      Documentation/kdump/
5155
5156 KEENE FM RADIO TRANSMITTER DRIVER
5157 M:      Hans Verkuil <hverkuil@xs4all.nl>
5158 L:      linux-media@vger.kernel.org
5159 T:      git git://linuxtv.org/media_tree.git
5160 W:      http://linuxtv.org
5161 S:      Maintained
5162 F:      drivers/media/radio/radio-keene*
5163
5164 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5165 M:      Ian Kent <raven@themaw.net>
5166 L:      autofs@vger.kernel.org
5167 S:      Maintained
5168 F:      fs/autofs4/
5169
5170 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5171 M:      Michal Marek <mmarek@suse.cz>
5172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5174 L:      linux-kbuild@vger.kernel.org
5175 S:      Maintained
5176 F:      Documentation/kbuild/
5177 F:      Makefile
5178 F:      scripts/Makefile.*
5179 F:      scripts/basic/
5180 F:      scripts/mk*
5181 F:      scripts/package/
5182
5183 KERNEL JANITORS
5184 L:      kernel-janitors@vger.kernel.org
5185 W:      http://kernelnewbies.org/KernelJanitors
5186 S:      Odd Fixes
5187
5188 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5189 M:      "J. Bruce Fields" <bfields@fieldses.org>
5190 L:      linux-nfs@vger.kernel.org
5191 W:      http://nfs.sourceforge.net/
5192 S:      Supported
5193 F:      fs/nfsd/
5194 F:      include/uapi/linux/nfsd/
5195 F:      fs/lockd/
5196 F:      fs/nfs_common/
5197 F:      net/sunrpc/
5198 F:      include/linux/lockd/
5199 F:      include/linux/sunrpc/
5200 F:      include/uapi/linux/sunrpc/
5201
5202 KERNEL VIRTUAL MACHINE (KVM)
5203 M:      Gleb Natapov <gleb@kernel.org>
5204 M:      Paolo Bonzini <pbonzini@redhat.com>
5205 L:      kvm@vger.kernel.org
5206 W:      http://www.linux-kvm.org
5207 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5208 S:      Supported
5209 F:      Documentation/*/kvm*.txt
5210 F:      Documentation/virtual/kvm/
5211 F:      arch/*/kvm/
5212 F:      arch/*/include/asm/kvm*
5213 F:      include/linux/kvm*
5214 F:      include/uapi/linux/kvm*
5215 F:      virt/kvm/
5216
5217 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5218 M:      Joerg Roedel <joro@8bytes.org>
5219 L:      kvm@vger.kernel.org
5220 W:      http://kvm.qumranet.com
5221 S:      Maintained
5222 F:      arch/x86/include/asm/svm.h
5223 F:      arch/x86/kvm/svm.c
5224
5225 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5226 M:      Alexander Graf <agraf@suse.de>
5227 L:      kvm-ppc@vger.kernel.org
5228 W:      http://kvm.qumranet.com
5229 T:      git git://github.com/agraf/linux-2.6.git
5230 S:      Supported
5231 F:      arch/powerpc/include/asm/kvm*
5232 F:      arch/powerpc/kvm/
5233
5234 KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
5235 M:      Xiantao Zhang <xiantao.zhang@intel.com>
5236 L:      kvm-ia64@vger.kernel.org
5237 W:      http://kvm.qumranet.com
5238 S:      Supported
5239 F:      Documentation/ia64/kvm.txt
5240 F:      arch/ia64/include/asm/kvm*
5241 F:      arch/ia64/kvm/
5242
5243 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5244 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5245 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5246 M:      linux390@de.ibm.com
5247 L:      linux-s390@vger.kernel.org
5248 W:      http://www.ibm.com/developerworks/linux/linux390/
5249 S:      Supported
5250 F:      Documentation/s390/kvm.txt
5251 F:      arch/s390/include/asm/kvm*
5252 F:      arch/s390/kvm/
5253 F:      drivers/s390/kvm/
5254
5255 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5256 M:      Christoffer Dall <christoffer.dall@linaro.org>
5257 M:      Marc Zyngier <marc.zyngier@arm.com>
5258 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5259 L:      kvmarm@lists.cs.columbia.edu
5260 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5261 S:      Supported
5262 F:      arch/arm/include/uapi/asm/kvm*
5263 F:      arch/arm/include/asm/kvm*
5264 F:      arch/arm/kvm/
5265 F:      virt/kvm/arm/
5266 F:      include/kvm/arm_*
5267
5268 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5269 M:      Christoffer Dall <christoffer.dall@linaro.org>
5270 M:      Marc Zyngier <marc.zyngier@arm.com>
5271 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5272 L:      kvmarm@lists.cs.columbia.edu
5273 S:      Maintained
5274 F:      arch/arm64/include/uapi/asm/kvm*
5275 F:      arch/arm64/include/asm/kvm*
5276 F:      arch/arm64/kvm/
5277
5278 KEXEC
5279 M:      Eric Biederman <ebiederm@xmission.com>
5280 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
5281 L:      kexec@lists.infradead.org
5282 S:      Maintained
5283 F:      include/linux/kexec.h
5284 F:      include/uapi/linux/kexec.h
5285 F:      kernel/kexec.c
5286
5287 KEYS/KEYRINGS:
5288 M:      David Howells <dhowells@redhat.com>
5289 L:      keyrings@linux-nfs.org
5290 S:      Maintained
5291 F:      Documentation/security/keys.txt
5292 F:      include/linux/key.h
5293 F:      include/linux/key-type.h
5294 F:      include/keys/
5295 F:      security/keys/
5296
5297 KEYS-TRUSTED
5298 M:      David Safford <safford@us.ibm.com>
5299 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5300 L:      linux-security-module@vger.kernel.org
5301 L:      keyrings@linux-nfs.org
5302 S:      Supported
5303 F:      Documentation/security/keys-trusted-encrypted.txt
5304 F:      include/keys/trusted-type.h
5305 F:      security/keys/trusted.c
5306 F:      security/keys/trusted.h
5307
5308 KEYS-ENCRYPTED
5309 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5310 M:      David Safford <safford@us.ibm.com>
5311 L:      linux-security-module@vger.kernel.org
5312 L:      keyrings@linux-nfs.org
5313 S:      Supported
5314 F:      Documentation/security/keys-trusted-encrypted.txt
5315 F:      include/keys/encrypted-type.h
5316 F:      security/keys/encrypted-keys/
5317
5318 KGDB / KDB /debug_core
5319 M:      Jason Wessel <jason.wessel@windriver.com>
5320 W:      http://kgdb.wiki.kernel.org/
5321 L:      kgdb-bugreport@lists.sourceforge.net
5322 S:      Maintained
5323 F:      Documentation/DocBook/kgdb.tmpl
5324 F:      drivers/misc/kgdbts.c
5325 F:      drivers/tty/serial/kgdboc.c
5326 F:      include/linux/kdb.h
5327 F:      include/linux/kgdb.h
5328 F:      kernel/debug/
5329
5330 KMEMCHECK
5331 M:      Vegard Nossum <vegardno@ifi.uio.no>
5332 M:      Pekka Enberg <penberg@kernel.org>
5333 S:      Maintained
5334 F:      Documentation/kmemcheck.txt
5335 F:      arch/x86/include/asm/kmemcheck.h
5336 F:      arch/x86/mm/kmemcheck/
5337 F:      include/linux/kmemcheck.h
5338 F:      mm/kmemcheck.c
5339
5340 KMEMLEAK
5341 M:      Catalin Marinas <catalin.marinas@arm.com>
5342 S:      Maintained
5343 F:      Documentation/kmemleak.txt
5344 F:      include/linux/kmemleak.h
5345 F:      mm/kmemleak.c
5346 F:      mm/kmemleak-test.c
5347
5348 KPROBES
5349 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
5350 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
5351 M:      "David S. Miller" <davem@davemloft.net>
5352 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
5353 S:      Maintained
5354 F:      Documentation/kprobes.txt
5355 F:      include/linux/kprobes.h
5356 F:      kernel/kprobes.c
5357
5358 KS0108 LCD CONTROLLER DRIVER
5359 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
5360 W:      http://miguelojeda.es/auxdisplay.htm
5361 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
5362 S:      Maintained
5363 F:      Documentation/auxdisplay/ks0108
5364 F:      drivers/auxdisplay/ks0108.c
5365 F:      include/linux/ks0108.h
5366
5367 LAPB module
5368 L:      linux-x25@vger.kernel.org
5369 S:      Orphan
5370 F:      Documentation/networking/lapb-module.txt
5371 F:      include/*/lapb.h
5372 F:      net/lapb/
5373
5374 LASI 53c700 driver for PARISC
5375 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
5376 L:      linux-scsi@vger.kernel.org
5377 S:      Maintained
5378 F:      Documentation/scsi/53c700.txt
5379 F:      drivers/scsi/53c700*
5380
5381 LED SUBSYSTEM
5382 M:      Bryan Wu <cooloney@gmail.com>
5383 M:      Richard Purdie <rpurdie@rpsys.net>
5384 L:      linux-leds@vger.kernel.org
5385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
5386 S:      Maintained
5387 F:      drivers/leds/
5388 F:      include/linux/leds.h
5389
5390 LEGACY EEPROM DRIVER
5391 M:      Jean Delvare <jdelvare@suse.de>
5392 S:      Maintained
5393 F:      Documentation/misc-devices/eeprom
5394 F:      drivers/misc/eeprom/eeprom.c
5395
5396 LEGO USB Tower driver
5397 M:      Juergen Stuber <starblue@users.sourceforge.net>
5398 L:      legousb-devel@lists.sourceforge.net
5399 W:      http://legousb.sourceforge.net/
5400 S:      Maintained
5401 F:      drivers/usb/misc/legousbtower.c
5402
5403 LG2160 MEDIA DRIVER
5404 M:      Michael Krufky <mkrufky@linuxtv.org>
5405 L:      linux-media@vger.kernel.org
5406 W:      http://linuxtv.org/
5407 W:      http://github.com/mkrufky
5408 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5409 T:      git git://linuxtv.org/mkrufky/tuners.git
5410 S:      Maintained
5411 F:      drivers/media/dvb-frontends/lg2160.*
5412
5413 LGDT3305 MEDIA DRIVER
5414 M:      Michael Krufky <mkrufky@linuxtv.org>
5415 L:      linux-media@vger.kernel.org
5416 W:      http://linuxtv.org/
5417 W:      http://github.com/mkrufky
5418 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5419 T:      git git://linuxtv.org/mkrufky/tuners.git
5420 S:      Maintained
5421 F:      drivers/media/dvb-frontends/lgdt3305.*
5422
5423 LGUEST
5424 M:      Rusty Russell <rusty@rustcorp.com.au>
5425 L:      lguest@lists.ozlabs.org
5426 W:      http://lguest.ozlabs.org/
5427 S:      Odd Fixes
5428 F:      arch/x86/include/asm/lguest*.h
5429 F:      arch/x86/lguest/
5430 F:      drivers/lguest/
5431 F:      include/linux/lguest*.h
5432 F:      tools/lguest/
5433
5434 LIBLOCKDEP
5435 M:      Sasha Levin <sasha.levin@oracle.com>
5436 S:      Maintained
5437 F:      tools/lib/lockdep/
5438
5439 LINUX FOR IBM pSERIES (RS/6000)
5440 M:      Paul Mackerras <paulus@au.ibm.com>
5441 W:      http://www.ibm.com/linux/ltc/projects/ppc
5442 S:      Supported
5443 F:      arch/powerpc/boot/rs6000.h
5444
5445 LINUX FOR POWERPC (32-BIT AND 64-BIT)
5446 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5447 M:      Paul Mackerras <paulus@samba.org>
5448 M:      Michael Ellerman <mpe@ellerman.id.au>
5449 W:      http://www.penguinppc.org/
5450 L:      linuxppc-dev@lists.ozlabs.org
5451 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
5452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
5453 S:      Supported
5454 F:      Documentation/powerpc/
5455 F:      arch/powerpc/
5456
5457 LINUX FOR POWER MACINTOSH
5458 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
5459 W:      http://www.penguinppc.org/
5460 L:      linuxppc-dev@lists.ozlabs.org
5461 S:      Maintained
5462 F:      arch/powerpc/platforms/powermac/
5463 F:      drivers/macintosh/
5464
5465 LINUX FOR POWERPC EMBEDDED MPC5XXX
5466 M:      Anatolij Gustschin <agust@denx.de>
5467 L:      linuxppc-dev@lists.ozlabs.org
5468 T:      git git://git.denx.de/linux-2.6-agust.git
5469 S:      Maintained
5470 F:      arch/powerpc/platforms/512x/
5471 F:      arch/powerpc/platforms/52xx/
5472
5473 LINUX FOR POWERPC EMBEDDED PPC4XX
5474 M:  Alistair Popple <alistair@popple.id.au>
5475 M:      Matt Porter <mporter@kernel.crashing.org>
5476 W:      http://www.penguinppc.org/
5477 L:      linuxppc-dev@lists.ozlabs.org
5478 S:      Maintained
5479 F:      arch/powerpc/platforms/40x/
5480 F:      arch/powerpc/platforms/44x/
5481
5482 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
5483 L:      linuxppc-dev@lists.ozlabs.org
5484 S:      Orphan
5485 F:      arch/powerpc/*/*virtex*
5486 F:      arch/powerpc/*/*/*virtex*
5487
5488 LINUX FOR POWERPC EMBEDDED PPC8XX
5489 M:      Vitaly Bordug <vitb@kernel.crashing.org>
5490 W:      http://www.penguinppc.org/
5491 L:      linuxppc-dev@lists.ozlabs.org
5492 S:      Maintained
5493 F:      arch/powerpc/platforms/8xx/
5494
5495 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
5496 M:      Scott Wood <scottwood@freescale.com>
5497 M:      Kumar Gala <galak@kernel.crashing.org>
5498 W:      http://www.penguinppc.org/
5499 L:      linuxppc-dev@lists.ozlabs.org
5500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
5501 S:      Maintained
5502 F:      arch/powerpc/platforms/83xx/
5503 F:      arch/powerpc/platforms/85xx/
5504
5505 LINUX FOR POWERPC PA SEMI PWRFICIENT
5506 M:      Olof Johansson <olof@lixom.net>
5507 L:      linuxppc-dev@lists.ozlabs.org
5508 S:      Maintained
5509 F:      arch/powerpc/platforms/pasemi/
5510 F:      drivers/*/*pasemi*
5511 F:      drivers/*/*/*pasemi*
5512
5513 LINUX SECURITY MODULE (LSM) FRAMEWORK
5514 M:      Chris Wright <chrisw@sous-sol.org>
5515 L:      linux-security-module@vger.kernel.org
5516 S:      Supported
5517
5518 LIS3LV02D ACCELEROMETER DRIVER
5519 M:      Eric Piel <eric.piel@tremplin-utc.net>
5520 S:      Maintained
5521 F:      Documentation/misc-devices/lis3lv02d
5522 F:      drivers/misc/lis3lv02d/
5523 F:      drivers/platform/x86/hp_accel.c
5524
5525 LLC (802.2)
5526 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5527 S:      Maintained
5528 F:      include/linux/llc.h
5529 F:      include/uapi/linux/llc.h
5530 F:      include/net/llc*
5531 F:      net/llc/
5532
5533 LM73 HARDWARE MONITOR DRIVER
5534 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
5535 L:      lm-sensors@lm-sensors.org
5536 S:      Maintained
5537 F:      drivers/hwmon/lm73.c
5538
5539 LM78 HARDWARE MONITOR DRIVER
5540 M:      Jean Delvare <jdelvare@suse.de>
5541 L:      lm-sensors@lm-sensors.org
5542 S:      Maintained
5543 F:      Documentation/hwmon/lm78
5544 F:      drivers/hwmon/lm78.c
5545
5546 LM83 HARDWARE MONITOR DRIVER
5547 M:      Jean Delvare <jdelvare@suse.de>
5548 L:      lm-sensors@lm-sensors.org
5549 S:      Maintained
5550 F:      Documentation/hwmon/lm83
5551 F:      drivers/hwmon/lm83.c
5552
5553 LM90 HARDWARE MONITOR DRIVER
5554 M:      Jean Delvare <jdelvare@suse.de>
5555 L:      lm-sensors@lm-sensors.org
5556 S:      Maintained
5557 F:      Documentation/hwmon/lm90
5558 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
5559 F:      drivers/hwmon/lm90.c
5560
5561 LM95234 HARDWARE MONITOR DRIVER
5562 M:      Guenter Roeck <linux@roeck-us.net>
5563 L:      lm-sensors@lm-sensors.org
5564 S:      Maintained
5565 F:      Documentation/hwmon/lm95234
5566 F:      drivers/hwmon/lm95234.c
5567
5568 LME2510 MEDIA DRIVER
5569 M:      Malcolm Priestley <tvboxspy@gmail.com>
5570 L:      linux-media@vger.kernel.org
5571 W:      http://linuxtv.org/
5572 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5573 S:      Maintained
5574 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
5575
5576 LOCKDEP AND LOCKSTAT
5577 M:      Peter Zijlstra <peterz@infradead.org>
5578 M:      Ingo Molnar <mingo@redhat.com>
5579 L:      linux-kernel@vger.kernel.org
5580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
5581 S:      Maintained
5582 F:      Documentation/lockdep*.txt
5583 F:      Documentation/lockstat.txt
5584 F:      include/linux/lockdep.h
5585 F:      kernel/locking/
5586
5587 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
5588 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
5589 L:      linux-ntfs-dev@lists.sourceforge.net
5590 W:      http://www.linux-ntfs.org/content/view/19/37/
5591 S:      Maintained
5592 F:      Documentation/ldm.txt
5593 F:      block/partitions/ldm.*
5594
5595 LogFS
5596 M:      Joern Engel <joern@logfs.org>
5597 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
5598 L:      logfs@logfs.org
5599 W:      logfs.org
5600 S:      Maintained
5601 F:      fs/logfs/
5602
5603 LPC32XX MACHINE SUPPORT
5604 M:      Roland Stigge <stigge@antcom.de>
5605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5606 S:      Maintained
5607 F:      arch/arm/mach-lpc32xx/
5608
5609 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
5610 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
5611 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
5612 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
5613 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
5614 L:      MPT-FusionLinux.pdl@avagotech.com
5615 L:      linux-scsi@vger.kernel.org
5616 W:      http://www.lsilogic.com/support
5617 S:      Supported
5618 F:      drivers/message/fusion/
5619 F:      drivers/scsi/mpt2sas/
5620 F:      drivers/scsi/mpt3sas/
5621
5622 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
5623 M:      Matthew Wilcox <matthew@wil.cx>
5624 L:      linux-scsi@vger.kernel.org
5625 S:      Maintained
5626 F:      drivers/scsi/sym53c8xx_2/
5627
5628 LTC4261 HARDWARE MONITOR DRIVER
5629 M:      Guenter Roeck <linux@roeck-us.net>
5630 L:      lm-sensors@lm-sensors.org
5631 S:      Maintained
5632 F:      Documentation/hwmon/ltc4261
5633 F:      drivers/hwmon/ltc4261.c
5634
5635 LTP (Linux Test Project)
5636 M:      Mike Frysinger <vapier@gentoo.org>
5637 M:      Cyril Hrubis <chrubis@suse.cz>
5638 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
5639 M:      Jan Stancek <jstancek@redhat.com>
5640 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
5641 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
5642 L:      ltp-list@lists.sourceforge.net (subscribers-only)
5643 W:      http://linux-test-project.github.io/
5644 T:      git git://github.com/linux-test-project/ltp.git
5645 S:      Maintained
5646
5647 M32R ARCHITECTURE
5648 M:      Hirokazu Takata <takata@linux-m32r.org>
5649 L:      linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
5650 L:      linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5651 W:      http://www.linux-m32r.org/
5652 S:      Maintained
5653 F:      arch/m32r/
5654
5655 M68K ARCHITECTURE
5656 M:      Geert Uytterhoeven <geert@linux-m68k.org>
5657 L:      linux-m68k@lists.linux-m68k.org
5658 W:      http://www.linux-m68k.org/
5659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
5660 S:      Maintained
5661 F:      arch/m68k/
5662 F:      drivers/zorro/
5663
5664 M68K ON APPLE MACINTOSH
5665 M:      Joshua Thompson <funaho@jurai.org>
5666 W:      http://www.mac.linux-m68k.org/
5667 L:      linux-m68k@lists.linux-m68k.org
5668 S:      Maintained
5669 F:      arch/m68k/mac/
5670
5671 M68K ON HP9000/300
5672 M:      Philip Blundell <philb@gnu.org>
5673 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
5674 S:      Maintained
5675 F:      arch/m68k/hp300/
5676
5677 M88DS3103 MEDIA DRIVER
5678 M:      Antti Palosaari <crope@iki.fi>
5679 L:      linux-media@vger.kernel.org
5680 W:      http://linuxtv.org/
5681 W:      http://palosaari.fi/linux/
5682 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5683 T:      git git://linuxtv.org/anttip/media_tree.git
5684 S:      Maintained
5685 F:      drivers/media/dvb-frontends/m88ds3103*
5686
5687 M88RS2000 MEDIA DRIVER
5688 M:      Malcolm Priestley <tvboxspy@gmail.com>
5689 L:      linux-media@vger.kernel.org
5690 W:      http://linuxtv.org/
5691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5692 S:      Maintained
5693 F:      drivers/media/dvb-frontends/m88rs2000*
5694
5695 M88TS2022 MEDIA DRIVER
5696 M:      Antti Palosaari <crope@iki.fi>
5697 L:      linux-media@vger.kernel.org
5698 W:      http://linuxtv.org/
5699 W:      http://palosaari.fi/linux/
5700 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5701 T:      git git://linuxtv.org/anttip/media_tree.git
5702 S:      Maintained
5703 F:      drivers/media/tuners/m88ts2022*
5704
5705 MA901 MASTERKIT USB FM RADIO DRIVER
5706 M:      Alexey Klimov <klimov.linux@gmail.com>
5707 L:      linux-media@vger.kernel.org
5708 T:      git git://linuxtv.org/media_tree.git
5709 S:      Maintained
5710 F:      drivers/media/radio/radio-ma901.c
5711
5712 MAC80211
5713 M:      Johannes Berg <johannes@sipsolutions.net>
5714 L:      linux-wireless@vger.kernel.org
5715 W:      http://wireless.kernel.org/
5716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
5718 S:      Maintained
5719 F:      Documentation/networking/mac80211-injection.txt
5720 F:      include/net/mac80211.h
5721 F:      net/mac80211/
5722
5723 MACVLAN DRIVER
5724 M:      Patrick McHardy <kaber@trash.net>
5725 L:      netdev@vger.kernel.org
5726 S:      Maintained
5727 F:      drivers/net/macvlan.c
5728 F:      include/linux/if_macvlan.h
5729
5730 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
5731 M:      Michael Kerrisk <mtk.manpages@gmail.com>
5732 W:      http://www.kernel.org/doc/man-pages
5733 L:      linux-man@vger.kernel.org
5734 S:      Maintained
5735
5736 MARVELL ARMADA DRM SUPPORT
5737 M:      Russell King <rmk+kernel@arm.linux.org.uk>
5738 S:      Maintained
5739 F:      drivers/gpu/drm/armada/
5740
5741 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5742 M:      Mirko Lindner <mlindner@marvell.com>
5743 M:      Stephen Hemminger <stephen@networkplumber.org>
5744 L:      netdev@vger.kernel.org
5745 S:      Maintained
5746 F:      drivers/net/ethernet/marvell/sk*
5747
5748 MARVELL LIBERTAS WIRELESS DRIVER
5749 L:      libertas-dev@lists.infradead.org
5750 S:      Orphan
5751 F:      drivers/net/wireless/libertas/
5752
5753 MARVELL MV643XX ETHERNET DRIVER
5754 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
5755 L:      netdev@vger.kernel.org
5756 S:      Maintained
5757 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
5758 F:      include/linux/mv643xx.h
5759
5760 MARVELL MVNETA ETHERNET DRIVER
5761 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5762 L:      netdev@vger.kernel.org
5763 S:      Maintained
5764 F:      drivers/net/ethernet/marvell/mvneta.*
5765
5766 MARVELL MWIFIEX WIRELESS DRIVER
5767 M:      Amitkumar Karwar <akarwar@marvell.com>
5768 M:      Avinash Patil <patila@marvell.com>
5769 L:      linux-wireless@vger.kernel.org
5770 S:      Maintained
5771 F:      drivers/net/wireless/mwifiex/
5772
5773 MARVELL MWL8K WIRELESS DRIVER
5774 M:      Lennert Buytenhek <buytenh@wantstofly.org>
5775 L:      linux-wireless@vger.kernel.org
5776 S:      Odd Fixes
5777 F:      drivers/net/wireless/mwl8k.c
5778
5779 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
5780 M:      Nicolas Pitre <nico@fluxnic.net>
5781 S:      Odd Fixes
5782 F:      drivers/mmc/host/mvsdio.*
5783
5784 MATROX FRAMEBUFFER DRIVER
5785 L:      linux-fbdev@vger.kernel.org
5786 S:      Orphan
5787 F:      drivers/video/fbdev/matrox/matroxfb_*
5788 F:      include/uapi/linux/matroxfb.h
5789
5790 MAX16065 HARDWARE MONITOR DRIVER
5791 M:      Guenter Roeck <linux@roeck-us.net>
5792 L:      lm-sensors@lm-sensors.org
5793 S:      Maintained
5794 F:      Documentation/hwmon/max16065
5795 F:      drivers/hwmon/max16065.c
5796
5797 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5798 M:      "Hans J. Koch" <hjk@hansjkoch.de>
5799 L:      lm-sensors@lm-sensors.org
5800 S:      Maintained
5801 F:      Documentation/hwmon/max6650
5802 F:      drivers/hwmon/max6650.c
5803
5804 MAX6697 HARDWARE MONITOR DRIVER
5805 M:      Guenter Roeck <linux@roeck-us.net>
5806 L:      lm-sensors@lm-sensors.org
5807 S:      Maintained
5808 F:      Documentation/hwmon/max6697
5809 F:      Documentation/devicetree/bindings/i2c/max6697.txt
5810 F:      drivers/hwmon/max6697.c
5811 F:      include/linux/platform_data/max6697.h
5812
5813 MAXIRADIO FM RADIO RECEIVER DRIVER
5814 M:      Hans Verkuil <hverkuil@xs4all.nl>
5815 L:      linux-media@vger.kernel.org
5816 T:      git git://linuxtv.org/media_tree.git
5817 W:      http://linuxtv.org
5818 S:      Maintained
5819 F:      drivers/media/radio/radio-maxiradio*
5820
5821 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
5822 M:      Mauro Carvalho Chehab <m.chehab@samsung.com>
5823 P:      LinuxTV.org Project
5824 L:      linux-media@vger.kernel.org
5825 W:      http://linuxtv.org
5826 Q:      http://patchwork.kernel.org/project/linux-media/list/
5827 T:      git git://linuxtv.org/media_tree.git
5828 S:      Maintained
5829 F:      Documentation/dvb/
5830 F:      Documentation/video4linux/
5831 F:      Documentation/DocBook/media/
5832 F:      drivers/media/
5833 F:      drivers/staging/media/
5834 F:      include/media/
5835 F:      include/uapi/linux/dvb/
5836 F:      include/uapi/linux/videodev2.h
5837 F:      include/uapi/linux/media.h
5838 F:      include/uapi/linux/v4l2-*
5839 F:      include/uapi/linux/meye.h
5840 F:      include/uapi/linux/ivtv*
5841 F:      include/uapi/linux/uvcvideo.h
5842
5843 MEDIAVISION PRO MOVIE STUDIO DRIVER
5844 M:      Hans Verkuil <hverkuil@xs4all.nl>
5845 L:      linux-media@vger.kernel.org
5846 T:      git git://linuxtv.org/media_tree.git
5847 W:      http://linuxtv.org
5848 S:      Odd Fixes
5849 F:      drivers/media/parport/pms*
5850
5851 MEGARAID SCSI DRIVERS
5852 M:      Neela Syam Kolli <megaraidlinux@lsi.com>
5853 L:      linux-scsi@vger.kernel.org
5854 W:      http://megaraid.lsilogic.com
5855 S:      Maintained
5856 F:      Documentation/scsi/megaraid.txt
5857 F:      drivers/scsi/megaraid.*
5858 F:      drivers/scsi/megaraid/
5859
5860 MELLANOX ETHERNET DRIVER (mlx4_en)
5861 M:      Amir Vadai <amirv@mellanox.com>
5862 L:      netdev@vger.kernel.org
5863 S:      Supported
5864 W:      http://www.mellanox.com
5865 Q:      http://patchwork.ozlabs.org/project/netdev/list/
5866 F:      drivers/net/ethernet/mellanox/mlx4/en_*
5867
5868 MEMORY MANAGEMENT
5869 L:      linux-mm@kvack.org
5870 W:      http://www.linux-mm.org
5871 S:      Maintained
5872 F:      include/linux/mm.h
5873 F:      include/linux/gfp.h
5874 F:      include/linux/mmzone.h
5875 F:      include/linux/memory_hotplug.h
5876 F:      include/linux/vmalloc.h
5877 F:      mm/
5878
5879 MEMORY TECHNOLOGY DEVICES (MTD)
5880 M:      David Woodhouse <dwmw2@infradead.org>
5881 M:      Brian Norris <computersforpeace@gmail.com>
5882 L:      linux-mtd@lists.infradead.org
5883 W:      http://www.linux-mtd.infradead.org/
5884 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
5885 T:      git git://git.infradead.org/linux-mtd.git
5886 S:      Maintained
5887 F:      drivers/mtd/
5888 F:      include/linux/mtd/
5889 F:      include/uapi/mtd/
5890
5891 MEN A21 WATCHDOG DRIVER
5892 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
5893 L:      linux-watchdog@vger.kernel.org
5894 S:      Supported
5895 F:      drivers/watchdog/mena21_wdt.c
5896
5897 MEN CHAMELEON BUS (mcb)
5898 M:      Johannes Thumshirn <johannes.thumshirn@men.de>
5899 S:      Supported
5900 F:      drivers/mcb/
5901 F:      include/linux/mcb.h
5902
5903 METAG ARCHITECTURE
5904 M:      James Hogan <james.hogan@imgtec.com>
5905 L:      linux-metag@vger.kernel.org
5906 S:      Supported
5907 F:      arch/metag/
5908 F:      Documentation/metag/
5909 F:      Documentation/devicetree/bindings/metag/
5910 F:      drivers/clocksource/metag_generic.c
5911 F:      drivers/irqchip/irq-metag.c
5912 F:      drivers/irqchip/irq-metag-ext.c
5913 F:      drivers/tty/metag_da.c
5914
5915 MICROBLAZE ARCHITECTURE
5916 M:      Michal Simek <monstr@monstr.eu>
5917 W:      http://www.monstr.eu/fdt/
5918 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
5919 S:      Supported
5920 F:      arch/microblaze/
5921
5922 MICROTEK X6 SCANNER
5923 M:      Oliver Neukum <oliver@neukum.org>
5924 S:      Maintained
5925 F:      drivers/usb/image/microtek.*
5926
5927 MIPS
5928 M:      Ralf Baechle <ralf@linux-mips.org>
5929 L:      linux-mips@linux-mips.org
5930 W:      http://www.linux-mips.org/
5931 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
5932 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
5933 S:      Supported
5934 F:      Documentation/mips/
5935 F:      arch/mips/
5936
5937 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5938 M:      Hans Verkuil <hverkuil@xs4all.nl>
5939 L:      linux-media@vger.kernel.org
5940 T:      git git://linuxtv.org/media_tree.git
5941 W:      http://linuxtv.org
5942 S:      Odd Fixes
5943 F:      drivers/media/radio/radio-miropcm20*
5944
5945 Mellanox MLX5 core VPI driver
5946 M:      Eli Cohen <eli@mellanox.com>
5947 L:      netdev@vger.kernel.org
5948 L:      linux-rdma@vger.kernel.org
5949 W:      http://www.mellanox.com
5950 Q:      http://patchwork.ozlabs.org/project/netdev/list/
5951 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5952 T:      git git://openfabrics.org/~eli/connect-ib.git
5953 S:      Supported
5954 F:      drivers/net/ethernet/mellanox/mlx5/core/
5955 F:      include/linux/mlx5/
5956
5957 Mellanox MLX5 IB driver
5958 M:      Eli Cohen <eli@mellanox.com>
5959 L:      linux-rdma@vger.kernel.org
5960 W:      http://www.mellanox.com
5961 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5962 T:      git git://openfabrics.org/~eli/connect-ib.git
5963 S:      Supported
5964 F:      include/linux/mlx5/
5965 F:      drivers/infiniband/hw/mlx5/
5966
5967 MODULE SUPPORT
5968 M:      Rusty Russell <rusty@rustcorp.com.au>
5969 S:      Maintained
5970 F:      include/linux/module.h
5971 F:      kernel/module.c
5972
5973 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
5974 W:      http://popies.net/meye/
5975 S:      Orphan
5976 F:      Documentation/video4linux/meye.txt
5977 F:      drivers/media/pci/meye/
5978 F:      include/uapi/linux/meye.h
5979
5980 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
5981 M:      Jiri Slaby <jirislaby@gmail.com>
5982 S:      Maintained
5983 F:      Documentation/serial/moxa-smartio
5984 F:      drivers/tty/mxser.*
5985
5986 MR800 AVERMEDIA USB FM RADIO DRIVER
5987 M:      Alexey Klimov <klimov.linux@gmail.com>
5988 L:      linux-media@vger.kernel.org
5989 T:      git git://linuxtv.org/media_tree.git
5990 S:      Maintained
5991 F:      drivers/media/radio/radio-mr800.c
5992
5993 MRF24J40 IEEE 802.15.4 RADIO DRIVER
5994 M:      Alan Ott <alan@signal11.us>
5995 L:      linux-wpan@vger.kernel.org
5996 S:      Maintained
5997 F:      drivers/net/ieee802154/mrf24j40.c
5998
5999 MSI LAPTOP SUPPORT
6000 M:      "Lee, Chun-Yi" <jlee@suse.com>
6001 L:      platform-driver-x86@vger.kernel.org
6002 S:      Maintained
6003 F:      drivers/platform/x86/msi-laptop.c
6004
6005 MSI WMI SUPPORT
6006 M:      Anisse Astier <anisse@astier.eu>
6007 L:      platform-driver-x86@vger.kernel.org
6008 S:      Supported
6009 F:      drivers/platform/x86/msi-wmi.c
6010
6011 MSI001 MEDIA DRIVER
6012 M:      Antti Palosaari <crope@iki.fi>
6013 L:      linux-media@vger.kernel.org
6014 W:      http://linuxtv.org/
6015 W:      http://palosaari.fi/linux/
6016 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6017 T:      git git://linuxtv.org/anttip/media_tree.git
6018 S:      Maintained
6019 F:      drivers/media/tuners/msi001*
6020
6021 MSI2500 MEDIA DRIVER
6022 M:      Antti Palosaari <crope@iki.fi>
6023 L:      linux-media@vger.kernel.org
6024 W:      http://linuxtv.org/
6025 W:      http://palosaari.fi/linux/
6026 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6027 T:      git git://linuxtv.org/anttip/media_tree.git
6028 S:      Maintained
6029 F:      drivers/media/usb/msi2500/
6030
6031 MT9M032 APTINA SENSOR DRIVER
6032 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6033 L:      linux-media@vger.kernel.org
6034 T:      git git://linuxtv.org/media_tree.git
6035 S:      Maintained
6036 F:      drivers/media/i2c/mt9m032.c
6037 F:      include/media/mt9m032.h
6038
6039 MT9P031 APTINA CAMERA SENSOR
6040 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6041 L:      linux-media@vger.kernel.org
6042 T:      git git://linuxtv.org/media_tree.git
6043 S:      Maintained
6044 F:      drivers/media/i2c/mt9p031.c
6045 F:      include/media/mt9p031.h
6046
6047 MT9T001 APTINA CAMERA SENSOR
6048 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6049 L:      linux-media@vger.kernel.org
6050 T:      git git://linuxtv.org/media_tree.git
6051 S:      Maintained
6052 F:      drivers/media/i2c/mt9t001.c
6053 F:      include/media/mt9t001.h
6054
6055 MT9V032 APTINA CAMERA SENSOR
6056 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6057 L:      linux-media@vger.kernel.org
6058 T:      git git://linuxtv.org/media_tree.git
6059 S:      Maintained
6060 F:      drivers/media/i2c/mt9v032.c
6061 F:      include/media/mt9v032.h
6062
6063 MULTIFUNCTION DEVICES (MFD)
6064 M:      Samuel Ortiz <sameo@linux.intel.com>
6065 M:      Lee Jones <lee.jones@linaro.org>
6066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
6067 S:      Supported
6068 F:      drivers/mfd/
6069 F:      include/linux/mfd/
6070
6071 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
6072 M:      Chris Ball <chris@printf.net>
6073 M:      Ulf Hansson <ulf.hansson@linaro.org>
6074 L:      linux-mmc@vger.kernel.org
6075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6076 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
6077 S:      Maintained
6078 F:      drivers/mmc/
6079 F:      include/linux/mmc/
6080 F:      include/uapi/linux/mmc/
6081
6082 MULTIMEDIA CARD (MMC) ETC. OVER SPI
6083 S:      Orphan
6084 F:      drivers/mmc/host/mmc_spi.c
6085 F:      include/linux/spi/mmc_spi.h
6086
6087 MULTISOUND SOUND DRIVER
6088 M:      Andrew Veliath <andrewtv@usa.net>
6089 S:      Maintained
6090 F:      Documentation/sound/oss/MultiSound
6091 F:      sound/oss/msnd*
6092
6093 MULTITECH MULTIPORT CARD (ISICOM)
6094 S:      Orphan
6095 F:      drivers/tty/isicom.c
6096 F:      include/linux/isicom.h
6097
6098 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
6099 M:      Felipe Balbi <balbi@ti.com>
6100 L:      linux-usb@vger.kernel.org
6101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6102 S:      Maintained
6103 F:      drivers/usb/musb/
6104
6105 MXL5007T MEDIA DRIVER
6106 M:      Michael Krufky <mkrufky@linuxtv.org>
6107 L:      linux-media@vger.kernel.org
6108 W:      http://linuxtv.org/
6109 W:      http://github.com/mkrufky
6110 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6111 T:      git git://linuxtv.org/mkrufky/tuners.git
6112 S:      Maintained
6113 F:      drivers/media/tuners/mxl5007t.*
6114
6115 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
6116 M:      Hyong-Youb Kim <hykim@myri.com>
6117 L:      netdev@vger.kernel.org
6118 W:      https://www.myricom.com/support/downloads/myri10ge.html
6119 S:      Supported
6120 F:      drivers/net/ethernet/myricom/myri10ge/
6121
6122 NATSEMI ETHERNET DRIVER (DP8381x)
6123 S:      Orphan
6124 F:      drivers/net/ethernet/natsemi/natsemi.c
6125
6126 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
6127 M:      Daniel Mack <zonque@gmail.com>
6128 S:      Maintained
6129 L:      alsa-devel@alsa-project.org
6130 W:      http://www.native-instruments.com
6131 F:      sound/usb/caiaq/
6132
6133 NCP FILESYSTEM
6134 M:      Petr Vandrovec <petr@vandrovec.name>
6135 S:      Odd Fixes
6136 F:      fs/ncpfs/
6137
6138 NCR 5380 SCSI DRIVERS
6139 M:      Finn Thain <fthain@telegraphics.com.au>
6140 M:      Michael Schmitz <schmitzmic@gmail.com>
6141 L:      linux-scsi@vger.kernel.org
6142 S:      Maintained
6143 F:      Documentation/scsi/g_NCR5380.txt
6144 F:      drivers/scsi/NCR5380.*
6145 F:      drivers/scsi/arm/cumana_1.c
6146 F:      drivers/scsi/arm/oak.c
6147 F:      drivers/scsi/atari_NCR5380.c
6148 F:      drivers/scsi/atari_scsi.*
6149 F:      drivers/scsi/dmx3191d.c
6150 F:      drivers/scsi/dtc.*
6151 F:      drivers/scsi/g_NCR5380.*
6152 F:      drivers/scsi/g_NCR5380_mmio.c
6153 F:      drivers/scsi/mac_scsi.*
6154 F:      drivers/scsi/pas16.*
6155 F:      drivers/scsi/sun3_NCR5380.c
6156 F:      drivers/scsi/sun3_scsi.*
6157 F:      drivers/scsi/sun3_scsi_vme.c
6158 F:      drivers/scsi/t128.*
6159
6160 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
6161 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6162 L:      linux-scsi@vger.kernel.org
6163 S:      Maintained
6164 F:      drivers/scsi/NCR_D700.*
6165
6166 NCT6775 HARDWARE MONITOR DRIVER
6167 M:      Guenter Roeck <linux@roeck-us.net>
6168 L:      lm-sensors@lm-sensors.org
6169 S:      Maintained
6170 F:      Documentation/hwmon/nct6775
6171 F:      drivers/hwmon/nct6775.c
6172
6173 NETEFFECT IWARP RNIC DRIVER (IW_NES)
6174 M:      Faisal Latif <faisal.latif@intel.com>
6175 L:      linux-rdma@vger.kernel.org
6176 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
6177 S:      Supported
6178 F:      drivers/infiniband/hw/nes/
6179
6180 NETEM NETWORK EMULATOR
6181 M:      Stephen Hemminger <stephen@networkplumber.org>
6182 L:      netem@lists.linux-foundation.org
6183 S:      Maintained
6184 F:      net/sched/sch_netem.c
6185
6186 NETERION 10GbE DRIVERS (s2io/vxge)
6187 M:      Jon Mason <jdmason@kudzu.us>
6188 L:      netdev@vger.kernel.org
6189 S:      Supported
6190 F:      Documentation/networking/s2io.txt
6191 F:      Documentation/networking/vxge.txt
6192 F:      drivers/net/ethernet/neterion/
6193
6194 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
6195 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6196 M:      Patrick McHardy <kaber@trash.net>
6197 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
6198 L:      netfilter-devel@vger.kernel.org
6199 L:      coreteam@netfilter.org
6200 W:      http://www.netfilter.org/
6201 W:      http://www.iptables.org/
6202 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
6203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
6204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
6205 S:      Supported
6206 F:      include/linux/netfilter*
6207 F:      include/linux/netfilter/
6208 F:      include/net/netfilter/
6209 F:      include/uapi/linux/netfilter*
6210 F:      include/uapi/linux/netfilter/
6211 F:      net/*/netfilter.c
6212 F:      net/*/netfilter/
6213 F:      net/netfilter/
6214
6215 NETLABEL
6216 M:      Paul Moore <paul@paul-moore.com>
6217 W:      http://netlabel.sf.net
6218 L:      netdev@vger.kernel.org
6219 S:      Maintained
6220 F:      Documentation/netlabel/
6221 F:      include/net/netlabel.h
6222 F:      net/netlabel/
6223
6224 NETROM NETWORK LAYER
6225 M:      Ralf Baechle <ralf@linux-mips.org>
6226 L:      linux-hams@vger.kernel.org
6227 W:      http://www.linux-ax25.org/
6228 S:      Maintained
6229 F:      include/net/netrom.h
6230 F:      include/uapi/linux/netrom.h
6231 F:      net/netrom/
6232
6233 NETWORK BLOCK DEVICE (NBD)
6234 M:      Paul Clements <Paul.Clements@steeleye.com>
6235 S:      Maintained
6236 L:      nbd-general@lists.sourceforge.net
6237 F:      Documentation/blockdev/nbd.txt
6238 F:      drivers/block/nbd.c
6239 F:      include/linux/nbd.h
6240 F:      include/uapi/linux/nbd.h
6241
6242 NETWORK DROP MONITOR
6243 M:      Neil Horman <nhorman@tuxdriver.com>
6244 L:      netdev@vger.kernel.org
6245 S:      Maintained
6246 W:      https://fedorahosted.org/dropwatch/
6247 F:      net/core/drop_monitor.c
6248
6249 NETWORKING [GENERAL]
6250 M:      "David S. Miller" <davem@davemloft.net>
6251 L:      netdev@vger.kernel.org
6252 W:      http://www.linuxfoundation.org/en/Net
6253 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6256 S:      Maintained
6257 F:      net/
6258 F:      include/net/
6259 F:      include/linux/in.h
6260 F:      include/linux/net.h
6261 F:      include/linux/netdevice.h
6262 F:      include/uapi/linux/in.h
6263 F:      include/uapi/linux/net.h
6264 F:      include/uapi/linux/netdevice.h
6265 F:      tools/net/
6266 F:      tools/testing/selftests/net/
6267 F:      lib/random32.c
6268 F:      lib/test_bpf.c
6269
6270 NETWORKING [IPv4/IPv6]
6271 M:      "David S. Miller" <davem@davemloft.net>
6272 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
6273 M:      James Morris <jmorris@namei.org>
6274 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
6275 M:      Patrick McHardy <kaber@trash.net>
6276 L:      netdev@vger.kernel.org
6277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6278 S:      Maintained
6279 F:      net/ipv4/
6280 F:      net/ipv6/
6281 F:      include/net/ip*
6282 F:      arch/x86/net/*
6283
6284 NETWORKING [IPSEC]
6285 M:      Steffen Klassert <steffen.klassert@secunet.com>
6286 M:      Herbert Xu <herbert@gondor.apana.org.au>
6287 M:      "David S. Miller" <davem@davemloft.net>
6288 L:      netdev@vger.kernel.org
6289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
6290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
6291 S:      Maintained
6292 F:      net/core/flow.c
6293 F:      net/xfrm/
6294 F:      net/key/
6295 F:      net/ipv4/xfrm*
6296 F:      net/ipv4/esp4.c
6297 F:      net/ipv4/ah4.c
6298 F:      net/ipv4/ipcomp.c
6299 F:      net/ipv4/ip_vti.c
6300 F:      net/ipv6/xfrm*
6301 F:      net/ipv6/esp6.c
6302 F:      net/ipv6/ah6.c
6303 F:      net/ipv6/ipcomp6.c
6304 F:      net/ipv6/ip6_vti.c
6305 F:      include/uapi/linux/xfrm.h
6306 F:      include/net/xfrm.h
6307
6308 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
6309 M:      Paul Moore <paul@paul-moore.com>
6310 L:      netdev@vger.kernel.org
6311 S:      Maintained
6312
6313 NETWORKING [WIRELESS]
6314 M:      "John W. Linville" <linville@tuxdriver.com>
6315 L:      linux-wireless@vger.kernel.org
6316 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
6317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
6318 S:      Maintained
6319 F:      net/mac80211/
6320 F:      net/rfkill/
6321 F:      net/wireless/
6322 F:      include/net/ieee80211*
6323 F:      include/linux/wireless.h
6324 F:      include/uapi/linux/wireless.h
6325 F:      include/net/iw_handler.h
6326 F:      drivers/net/wireless/
6327
6328 NETWORKING DRIVERS
6329 L:      netdev@vger.kernel.org
6330 W:      http://www.linuxfoundation.org/en/Net
6331 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6334 S:      Odd Fixes
6335 F:      drivers/net/
6336 F:      include/linux/if_*
6337 F:      include/linux/netdevice.h
6338 F:      include/linux/arcdevice.h
6339 F:      include/linux/etherdevice.h
6340 F:      include/linux/fcdevice.h
6341 F:      include/linux/fddidevice.h
6342 F:      include/linux/hippidevice.h
6343 F:      include/linux/inetdevice.h
6344 F:      include/uapi/linux/if_*
6345 F:      include/uapi/linux/netdevice.h
6346
6347 NETXEN (1/10) GbE SUPPORT
6348 M:      Manish Chopra <manish.chopra@qlogic.com>
6349 M:      Sony Chacko <sony.chacko@qlogic.com>
6350 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
6351 L:      netdev@vger.kernel.org
6352 W:      http://www.qlogic.com
6353 S:      Supported
6354 F:      drivers/net/ethernet/qlogic/netxen/
6355
6356 NFC SUBSYSTEM
6357 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6358 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
6359 M:      Samuel Ortiz <sameo@linux.intel.com>
6360 L:      linux-wireless@vger.kernel.org
6361 L:      linux-nfc@lists.01.org (subscribers-only)
6362 S:      Supported
6363 F:      net/nfc/
6364 F:      include/net/nfc/
6365 F:      include/uapi/linux/nfc.h
6366 F:      drivers/nfc/
6367 F:      include/linux/platform_data/pn544.h
6368 F:      Documentation/devicetree/bindings/net/nfc/
6369
6370 NFS, SUNRPC, AND LOCKD CLIENTS
6371 M:      Trond Myklebust <trond.myklebust@primarydata.com>
6372 L:      linux-nfs@vger.kernel.org
6373 W:      http://client.linux-nfs.org
6374 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
6375 S:      Maintained
6376 F:      fs/lockd/
6377 F:      fs/nfs/
6378 F:      fs/nfs_common/
6379 F:      net/sunrpc/
6380 F:      include/linux/lockd/
6381 F:      include/linux/nfs*
6382 F:      include/linux/sunrpc/
6383 F:      include/uapi/linux/nfs*
6384 F:      include/uapi/linux/sunrpc/
6385
6386 NILFS2 FILESYSTEM
6387 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
6388 L:      linux-nilfs@vger.kernel.org
6389 W:      http://nilfs.sourceforge.net/
6390 T:      git git://github.com/konis/nilfs2.git
6391 S:      Supported
6392 F:      Documentation/filesystems/nilfs2.txt
6393 F:      fs/nilfs2/
6394 F:      include/linux/nilfs2_fs.h
6395
6396 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
6397 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6398 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6399 S:      Maintained
6400 F:      Documentation/scsi/NinjaSCSI.txt
6401 F:      drivers/scsi/pcmcia/nsp_*
6402
6403 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
6404 M:      GOTO Masanori <gotom@debian.or.jp>
6405 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6406 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6407 S:      Maintained
6408 F:      Documentation/scsi/NinjaSCSI.txt
6409 F:      drivers/scsi/nsp32*
6410
6411 NTB DRIVER
6412 M:      Jon Mason <jon.mason@intel.com>
6413 S:      Supported
6414 W:      https://github.com/jonmason/ntb/wiki
6415 T:      git git://github.com/jonmason/ntb.git
6416 F:      drivers/ntb/
6417 F:      drivers/net/ntb_netdev.c
6418 F:      include/linux/ntb.h
6419
6420 NTFS FILESYSTEM
6421 M:      Anton Altaparmakov <anton@tuxera.com>
6422 L:      linux-ntfs-dev@lists.sourceforge.net
6423 W:      http://www.tuxera.com/
6424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
6425 S:      Supported
6426 F:      Documentation/filesystems/ntfs.txt
6427 F:      fs/ntfs/
6428
6429 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
6430 M:      Antonino Daplas <adaplas@gmail.com>
6431 L:      linux-fbdev@vger.kernel.org
6432 S:      Maintained
6433 F:      drivers/video/fbdev/riva/
6434 F:      drivers/video/fbdev/nvidia/
6435
6436 NVM EXPRESS DRIVER
6437 M:      Matthew Wilcox <willy@linux.intel.com>
6438 L:      linux-nvme@lists.infradead.org
6439 T:      git git://git.infradead.org/users/willy/linux-nvme.git
6440 S:      Supported
6441 F:      drivers/block/nvme*
6442 F:      include/linux/nvme.h
6443
6444 NXP TDA998X DRM DRIVER
6445 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6446 S:      Supported
6447 F:      drivers/gpu/drm/i2c/tda998x_drv.c
6448 F:      include/drm/i2c/tda998x.h
6449
6450 OMAP SUPPORT
6451 M:      Tony Lindgren <tony@atomide.com>
6452 L:      linux-omap@vger.kernel.org
6453 W:      http://www.muru.com/linux/omap/
6454 W:      http://linux.omap.com/
6455 Q:      http://patchwork.kernel.org/project/linux-omap/list/
6456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
6457 S:      Maintained
6458 F:      arch/arm/*omap*/
6459 F:      drivers/i2c/busses/i2c-omap.c
6460 F:      include/linux/i2c-omap.h
6461
6462 OMAP DEVICE TREE SUPPORT
6463 M:      Benoît Cousson <bcousson@baylibre.com>
6464 M:      Tony Lindgren <tony@atomide.com>
6465 L:      linux-omap@vger.kernel.org
6466 L:      devicetree@vger.kernel.org
6467 S:      Maintained
6468 F:      arch/arm/boot/dts/*omap*
6469 F:      arch/arm/boot/dts/*am3*
6470
6471 OMAP CLOCK FRAMEWORK SUPPORT
6472 M:      Paul Walmsley <paul@pwsan.com>
6473 L:      linux-omap@vger.kernel.org
6474 S:      Maintained
6475 F:      arch/arm/*omap*/*clock*
6476
6477 OMAP POWER MANAGEMENT SUPPORT
6478 M:      Kevin Hilman <khilman@deeprootsystems.com>
6479 L:      linux-omap@vger.kernel.org
6480 S:      Maintained
6481 F:      arch/arm/*omap*/*pm*
6482 F:      drivers/cpufreq/omap-cpufreq.c
6483
6484 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
6485 M:      Rajendra Nayak <rnayak@ti.com>
6486 M:      Paul Walmsley <paul@pwsan.com>
6487 L:      linux-omap@vger.kernel.org
6488 S:      Maintained
6489 F:      arch/arm/mach-omap2/prm*
6490
6491 OMAP AUDIO SUPPORT
6492 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
6493 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
6494 L:      alsa-devel@alsa-project.org (subscribers-only)
6495 L:      linux-omap@vger.kernel.org
6496 S:      Maintained
6497 F:      sound/soc/omap/
6498
6499 OMAP FRAMEBUFFER SUPPORT
6500 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
6501 L:      linux-fbdev@vger.kernel.org
6502 L:      linux-omap@vger.kernel.org
6503 S:      Maintained
6504 F:      drivers/video/fbdev/omap/
6505
6506 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
6507 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
6508 L:      linux-omap@vger.kernel.org
6509 L:      linux-fbdev@vger.kernel.org
6510 S:      Maintained
6511 F:      drivers/video/fbdev/omap2/
6512 F:      Documentation/arm/OMAP/DSS
6513
6514 OMAP HARDWARE SPINLOCK SUPPORT
6515 M:      Ohad Ben-Cohen <ohad@wizery.com>
6516 L:      linux-omap@vger.kernel.org
6517 S:      Maintained
6518 F:      drivers/hwspinlock/omap_hwspinlock.c
6519 F:      arch/arm/mach-omap2/hwspinlock.c
6520
6521 OMAP MMC SUPPORT
6522 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
6523 L:      linux-omap@vger.kernel.org
6524 S:      Maintained
6525 F:      drivers/mmc/host/omap.c
6526
6527 OMAP HS MMC SUPPORT
6528 M:      Balaji T K <balajitk@ti.com>
6529 L:      linux-mmc@vger.kernel.org
6530 L:      linux-omap@vger.kernel.org
6531 S:      Maintained
6532 F:      drivers/mmc/host/omap_hsmmc.c
6533
6534 OMAP RANDOM NUMBER GENERATOR SUPPORT
6535 M:      Deepak Saxena <dsaxena@plexity.net>
6536 S:      Maintained
6537 F:      drivers/char/hw_random/omap-rng.c
6538
6539 OMAP HWMOD SUPPORT
6540 M:      Benoît Cousson <bcousson@baylibre.com>
6541 M:      Paul Walmsley <paul@pwsan.com>
6542 L:      linux-omap@vger.kernel.org
6543 S:      Maintained
6544 F:      arch/arm/mach-omap2/omap_hwmod.*
6545
6546 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
6547 M:      Benoît Cousson <bcousson@baylibre.com>
6548 L:      linux-omap@vger.kernel.org
6549 S:      Maintained
6550 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
6551
6552 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
6553 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6554 L:      linux-media@vger.kernel.org
6555 S:      Maintained
6556 F:      drivers/media/platform/omap3isp/
6557 F:      drivers/staging/media/omap4iss/
6558
6559 OMAP USB SUPPORT
6560 M:      Felipe Balbi <balbi@ti.com>
6561 L:      linux-usb@vger.kernel.org
6562 L:      linux-omap@vger.kernel.org
6563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6564 S:      Maintained
6565 F:      drivers/usb/*/*omap*
6566 F:      arch/arm/*omap*/usb*
6567
6568 OMAP GPIO DRIVER
6569 M:      Javier Martinez Canillas <javier@dowhile0.org>
6570 M:      Santosh Shilimkar <santosh.shilimkar@ti.com>
6571 M:      Kevin Hilman <khilman@deeprootsystems.com>
6572 L:      linux-omap@vger.kernel.org
6573 S:      Maintained
6574 F:      drivers/gpio/gpio-omap.c
6575
6576 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
6577 M:      Mark Jackson <mpfj@newflow.co.uk>
6578 L:      linux-omap@vger.kernel.org
6579 S:      Maintained
6580 F:      arch/arm/boot/dts/am335x-nano.dts
6581
6582 OMFS FILESYSTEM
6583 M:      Bob Copeland <me@bobcopeland.com>
6584 L:      linux-karma-devel@lists.sourceforge.net
6585 S:      Maintained
6586 F:      Documentation/filesystems/omfs.txt
6587 F:      fs/omfs/
6588
6589 OMNIKEY CARDMAN 4000 DRIVER
6590 M:      Harald Welte <laforge@gnumonks.org>
6591 S:      Maintained
6592 F:      drivers/char/pcmcia/cm4000_cs.c
6593 F:      include/linux/cm4000_cs.h
6594 F:      include/uapi/linux/cm4000_cs.h
6595
6596 OMNIKEY CARDMAN 4040 DRIVER
6597 M:      Harald Welte <laforge@gnumonks.org>
6598 S:      Maintained
6599 F:      drivers/char/pcmcia/cm4040_cs.*
6600
6601 OMNIVISION OV7670 SENSOR DRIVER
6602 M:      Jonathan Corbet <corbet@lwn.net>
6603 L:      linux-media@vger.kernel.org
6604 T:      git git://linuxtv.org/media_tree.git
6605 S:      Maintained
6606 F:      drivers/media/i2c/ov7670.c
6607
6608 ONENAND FLASH DRIVER
6609 M:      Kyungmin Park <kyungmin.park@samsung.com>
6610 L:      linux-mtd@lists.infradead.org
6611 S:      Maintained
6612 F:      drivers/mtd/onenand/
6613 F:      include/linux/mtd/onenand*.h
6614
6615 ONSTREAM SCSI TAPE DRIVER
6616 M:      Willem Riede <osst@riede.org>
6617 L:      osst-users@lists.sourceforge.net
6618 L:      linux-scsi@vger.kernel.org
6619 S:      Maintained
6620 F:      Documentation/scsi/osst.txt
6621 F:      drivers/scsi/osst.*
6622 F:      drivers/scsi/osst_*.h
6623 F:      drivers/scsi/st.h
6624
6625 OPENCORES I2C BUS DRIVER
6626 M:      Peter Korsgaard <jacmet@sunsite.dk>
6627 L:      linux-i2c@vger.kernel.org
6628 S:      Maintained
6629 F:      Documentation/i2c/busses/i2c-ocores
6630 F:      drivers/i2c/busses/i2c-ocores.c
6631
6632 OPEN FIRMWARE AND FLATTENED DEVICE TREE
6633 M:      Grant Likely <grant.likely@linaro.org>
6634 M:      Rob Herring <robh+dt@kernel.org>
6635 L:      devicetree@vger.kernel.org
6636 W:      http://fdt.secretlab.ca
6637 T:      git git://git.secretlab.ca/git/linux-2.6.git
6638 S:      Maintained
6639 F:      drivers/of/
6640 F:      include/linux/of*.h
6641 F:      scripts/dtc/
6642 K:      of_get_property
6643 K:      of_match_table
6644
6645 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
6646 M:      Rob Herring <robh+dt@kernel.org>
6647 M:      Pawel Moll <pawel.moll@arm.com>
6648 M:      Mark Rutland <mark.rutland@arm.com>
6649 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
6650 M:      Kumar Gala <galak@codeaurora.org>
6651 L:      devicetree@vger.kernel.org
6652 S:      Maintained
6653 F:      Documentation/devicetree/
6654 F:      arch/*/boot/dts/
6655 F:      include/dt-bindings/
6656
6657 OPENRISC ARCHITECTURE
6658 M:      Jonas Bonn <jonas@southpole.se>
6659 W:      http://openrisc.net
6660 L:      linux@lists.openrisc.net (moderated for non-subscribers)
6661 S:      Maintained
6662 T:      git git://openrisc.net/~jonas/linux
6663 F:      arch/openrisc/
6664
6665 OPENVSWITCH
6666 M:      Pravin Shelar <pshelar@nicira.com>
6667 L:      dev@openvswitch.org
6668 W:      http://openvswitch.org
6669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pshelar/openvswitch.git
6670 S:      Maintained
6671 F:      net/openvswitch/
6672
6673 OPL4 DRIVER
6674 M:      Clemens Ladisch <clemens@ladisch.de>
6675 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6676 T:      git git://git.alsa-project.org/alsa-kernel.git
6677 S:      Maintained
6678 F:      sound/drivers/opl4/
6679
6680 OPROFILE
6681 M:      Robert Richter <rric@kernel.org>
6682 L:      oprofile-list@lists.sf.net
6683 S:      Maintained
6684 F:      arch/*/include/asm/oprofile*.h
6685 F:      arch/*/oprofile/
6686 F:      drivers/oprofile/
6687 F:      include/linux/oprofile.h
6688
6689 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
6690 M:      Mark Fasheh <mfasheh@suse.com>
6691 M:      Joel Becker <jlbec@evilplan.org>
6692 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
6693 W:      http://oss.oracle.com/projects/ocfs2/
6694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
6695 S:      Supported
6696 F:      Documentation/filesystems/ocfs2.txt
6697 F:      Documentation/filesystems/dlmfs.txt
6698 F:      fs/ocfs2/
6699
6700 ORINOCO DRIVER
6701 L:      linux-wireless@vger.kernel.org
6702 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
6703 W:      http://www.nongnu.org/orinoco/
6704 S:      Orphan
6705 F:      drivers/net/wireless/orinoco/
6706
6707 OSD LIBRARY and FILESYSTEM
6708 M:      Boaz Harrosh <bharrosh@panasas.com>
6709 M:      Benny Halevy <bhalevy@primarydata.com>
6710 L:      osd-dev@open-osd.org
6711 W:      http://open-osd.org
6712 T:      git git://git.open-osd.org/open-osd.git
6713 S:      Maintained
6714 F:      drivers/scsi/osd/
6715 F:      include/scsi/osd_*
6716 F:      fs/exofs/
6717
6718 P54 WIRELESS DRIVER
6719 M:      Christian Lamparter <chunkeey@googlemail.com>
6720 L:      linux-wireless@vger.kernel.org
6721 W:      http://wireless.kernel.org/en/users/Drivers/p54
6722 S:      Maintained
6723 F:      drivers/net/wireless/p54/
6724
6725 PA SEMI ETHERNET DRIVER
6726 M:      Olof Johansson <olof@lixom.net>
6727 L:      netdev@vger.kernel.org
6728 S:      Maintained
6729 F:      drivers/net/ethernet/pasemi/*
6730
6731 PA SEMI SMBUS DRIVER
6732 M:      Olof Johansson <olof@lixom.net>
6733 L:      linux-i2c@vger.kernel.org
6734 S:      Maintained
6735 F:      drivers/i2c/busses/i2c-pasemi.c
6736
6737 PADATA PARALLEL EXECUTION MECHANISM
6738 M:      Steffen Klassert <steffen.klassert@secunet.com>
6739 L:      linux-crypto@vger.kernel.org
6740 S:      Maintained
6741 F:      kernel/padata.c
6742 F:      include/linux/padata.h
6743 F:      Documentation/padata.txt
6744
6745 PANASONIC LAPTOP ACPI EXTRAS DRIVER
6746 M:      Harald Welte <laforge@gnumonks.org>
6747 L:      platform-driver-x86@vger.kernel.org
6748 S:      Maintained
6749 F:      drivers/platform/x86/panasonic-laptop.c
6750
6751 PANASONIC MN10300/AM33/AM34 PORT
6752 M:      David Howells <dhowells@redhat.com>
6753 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
6754 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
6755 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6756 S:      Maintained
6757 F:      Documentation/mn10300/
6758 F:      arch/mn10300/
6759
6760 PARALLEL PORT SUPPORT
6761 L:      linux-parport@lists.infradead.org (subscribers-only)
6762 S:      Orphan
6763 F:      drivers/parport/
6764 F:      include/linux/parport*.h
6765 F:      drivers/char/ppdev.c
6766 F:      include/uapi/linux/ppdev.h
6767
6768 PARAVIRT_OPS INTERFACE
6769 M:      Jeremy Fitzhardinge <jeremy@goop.org>
6770 M:      Chris Wright <chrisw@sous-sol.org>
6771 M:      Alok Kataria <akataria@vmware.com>
6772 M:      Rusty Russell <rusty@rustcorp.com.au>
6773 L:      virtualization@lists.linux-foundation.org
6774 S:      Supported
6775 F:      Documentation/ia64/paravirt_ops.txt
6776 F:      arch/*/kernel/paravirt*
6777 F:      arch/*/include/asm/paravirt.h
6778
6779 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
6780 M:      Tim Waugh <tim@cyberelk.net>
6781 L:      linux-parport@lists.infradead.org (subscribers-only)
6782 W:      http://www.torque.net/linux-pp.html
6783 S:      Maintained
6784 F:      Documentation/blockdev/paride.txt
6785 F:      drivers/block/paride/
6786
6787 PARISC ARCHITECTURE
6788 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
6789 M:      Helge Deller <deller@gmx.de>
6790 L:      linux-parisc@vger.kernel.org
6791 W:      http://www.parisc-linux.org/
6792 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
6793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
6794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
6795 S:      Maintained
6796 F:      arch/parisc/
6797 F:      Documentation/parisc/
6798 F:      drivers/parisc/
6799 F:      drivers/char/agp/parisc-agp.c
6800 F:      drivers/input/serio/gscps2.c
6801 F:      drivers/parport/parport_gsc.*
6802 F:      drivers/tty/serial/8250/8250_gsc.c
6803 F:      drivers/video/fbdev/sti*
6804 F:      drivers/video/console/sti*
6805 F:      drivers/video/logo/logo_parisc*
6806
6807 PC87360 HARDWARE MONITORING DRIVER
6808 M:      Jim Cromie <jim.cromie@gmail.com>
6809 L:      lm-sensors@lm-sensors.org
6810 S:      Maintained
6811 F:      Documentation/hwmon/pc87360
6812 F:      drivers/hwmon/pc87360.c
6813
6814 PC8736x GPIO DRIVER
6815 M:      Jim Cromie <jim.cromie@gmail.com>
6816 S:      Maintained
6817 F:      drivers/char/pc8736x_gpio.c
6818
6819 PC87427 HARDWARE MONITORING DRIVER
6820 M:      Jean Delvare <jdelvare@suse.de>
6821 L:      lm-sensors@lm-sensors.org
6822 S:      Maintained
6823 F:      Documentation/hwmon/pc87427
6824 F:      drivers/hwmon/pc87427.c
6825
6826 PCA9532 LED DRIVER
6827 M:      Riku Voipio <riku.voipio@iki.fi>
6828 S:      Maintained
6829 F:      drivers/leds/leds-pca9532.c
6830 F:      include/linux/leds-pca9532.h
6831
6832 PCA9541 I2C BUS MASTER SELECTOR DRIVER
6833 M:      Guenter Roeck <linux@roeck-us.net>
6834 L:      linux-i2c@vger.kernel.org
6835 S:      Maintained
6836 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
6837
6838 PCDP - PRIMARY CONSOLE AND DEBUG PORT
6839 M:      Khalid Aziz <khalid@gonehiking.org>
6840 S:      Maintained
6841 F:      drivers/firmware/pcdp.*
6842
6843 PCI ERROR RECOVERY
6844 M:      Linas Vepstas <linasvepstas@gmail.com>
6845 L:      linux-pci@vger.kernel.org
6846 S:      Supported
6847 F:      Documentation/PCI/pci-error-recovery.txt
6848
6849 PCI SUBSYSTEM
6850 M:      Bjorn Helgaas <bhelgaas@google.com>
6851 L:      linux-pci@vger.kernel.org
6852 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
6853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
6854 S:      Supported
6855 F:      Documentation/PCI/
6856 F:      drivers/pci/
6857 F:      include/linux/pci*
6858 F:      arch/x86/pci/
6859 F:      arch/x86/kernel/quirks.c
6860
6861 PCI DRIVER FOR IMX6
6862 M:      Richard Zhu <r65037@freescale.com>
6863 M:      Shawn Guo <shawn.guo@freescale.com>
6864 L:      linux-pci@vger.kernel.org
6865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6866 S:      Maintained
6867 F:      drivers/pci/host/*imx6*
6868
6869 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
6870 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6871 M:      Jason Cooper <jason@lakedaemon.net>
6872 L:      linux-pci@vger.kernel.org
6873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6874 S:      Maintained
6875 F:      drivers/pci/host/*mvebu*
6876
6877 PCI DRIVER FOR NVIDIA TEGRA
6878 M:      Thierry Reding <thierry.reding@gmail.com>
6879 L:      linux-tegra@vger.kernel.org
6880 L:      linux-pci@vger.kernel.org
6881 S:      Supported
6882 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
6883 F:      drivers/pci/host/pci-tegra.c
6884
6885 PCI DRIVER FOR TI DRA7XX
6886 M:      Kishon Vijay Abraham I <kishon@ti.com>
6887 L:      linux-omap@vger.kernel.org
6888 L:      linux-pci@vger.kernel.org
6889 S:      Supported
6890 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
6891 F:      drivers/pci/host/pci-dra7xx.c
6892
6893 PCI DRIVER FOR RENESAS R-CAR
6894 M:      Simon Horman <horms@verge.net.au>
6895 L:      linux-pci@vger.kernel.org
6896 L:      linux-sh@vger.kernel.org
6897 S:      Maintained
6898 F:      drivers/pci/host/*rcar*
6899
6900 PCI DRIVER FOR SAMSUNG EXYNOS
6901 M:      Jingoo Han <jg1.han@samsung.com>
6902 L:      linux-pci@vger.kernel.org
6903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6904 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6905 S:      Maintained
6906 F:      drivers/pci/host/pci-exynos.c
6907
6908 PCI DRIVER FOR SYNOPSIS DESIGNWARE
6909 M:      Mohit Kumar <mohit.kumar@st.com>
6910 M:      Jingoo Han <jg1.han@samsung.com>
6911 L:      linux-pci@vger.kernel.org
6912 S:      Maintained
6913 F:      drivers/pci/host/*designware*
6914
6915 PCI DRIVER FOR GENERIC OF HOSTS
6916 M:      Will Deacon <will.deacon@arm.com>
6917 L:      linux-pci@vger.kernel.org
6918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6919 S:      Maintained
6920 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
6921 F:      drivers/pci/host/pci-host-generic.c
6922
6923 PCIE DRIVER FOR ST SPEAR13XX
6924 M:      Mohit Kumar <mohit.kumar@st.com>
6925 L:      linux-pci@vger.kernel.org
6926 S:      Maintained
6927 F:      drivers/pci/host/*spear*
6928
6929 PCMCIA SUBSYSTEM
6930 P:      Linux PCMCIA Team
6931 L:      linux-pcmcia@lists.infradead.org
6932 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
6933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
6934 S:      Maintained
6935 F:      Documentation/pcmcia/
6936 F:      drivers/pcmcia/
6937 F:      include/pcmcia/
6938
6939 PCNET32 NETWORK DRIVER
6940 M:      Don Fry <pcnet32@frontier.com>
6941 L:      netdev@vger.kernel.org
6942 S:      Maintained
6943 F:      drivers/net/ethernet/amd/pcnet32.c
6944
6945 PCRYPT PARALLEL CRYPTO ENGINE
6946 M:      Steffen Klassert <steffen.klassert@secunet.com>
6947 L:      linux-crypto@vger.kernel.org
6948 S:      Maintained
6949 F:      crypto/pcrypt.c
6950 F:      include/crypto/pcrypt.h
6951
6952 PER-CPU MEMORY ALLOCATOR
6953 M:      Tejun Heo <tj@kernel.org>
6954 M:      Christoph Lameter <cl@linux-foundation.org>
6955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6956 S:      Maintained
6957 F:      include/linux/percpu*.h
6958 F:      mm/percpu*.c
6959 F:      arch/*/include/asm/percpu.h
6960
6961 PER-TASK DELAY ACCOUNTING
6962 M:      Balbir Singh <bsingharora@gmail.com>
6963 S:      Maintained
6964 F:      include/linux/delayacct.h
6965 F:      kernel/delayacct.c
6966
6967 PERFORMANCE EVENTS SUBSYSTEM
6968 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
6969 M:      Paul Mackerras <paulus@samba.org>
6970 M:      Ingo Molnar <mingo@redhat.com>
6971 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
6972 L:      linux-kernel@vger.kernel.org
6973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
6974 S:      Supported
6975 F:      kernel/events/*
6976 F:      include/linux/perf_event.h
6977 F:      include/uapi/linux/perf_event.h
6978 F:      arch/*/kernel/perf_event*.c
6979 F:      arch/*/kernel/*/perf_event*.c
6980 F:      arch/*/kernel/*/*/perf_event*.c
6981 F:      arch/*/include/asm/perf_event.h
6982 F:      arch/*/kernel/perf_callchain.c
6983 F:      tools/perf/
6984
6985 PERSONALITY HANDLING
6986 M:      Christoph Hellwig <hch@infradead.org>
6987 L:      linux-abi-devel@lists.sourceforge.net
6988 S:      Maintained
6989 F:      include/linux/personality.h
6990 F:      include/uapi/linux/personality.h
6991
6992 PHONET PROTOCOL
6993 M:      Remi Denis-Courmont <courmisch@gmail.com>
6994 S:      Supported
6995 F:      Documentation/networking/phonet.txt
6996 F:      include/linux/phonet.h
6997 F:      include/net/phonet/
6998 F:      include/uapi/linux/phonet.h
6999 F:      net/phonet/
7000
7001 PHRAM MTD DRIVER
7002 M:      Joern Engel <joern@lazybastard.org>
7003 L:      linux-mtd@lists.infradead.org
7004 S:      Maintained
7005 F:      drivers/mtd/devices/phram.c
7006
7007 PICOLCD HID DRIVER
7008 M:      Bruno Prémont <bonbons@linux-vserver.org>
7009 L:      linux-input@vger.kernel.org
7010 S:      Maintained
7011 F:      drivers/hid/hid-picolcd*
7012
7013 PICOXCELL SUPPORT
7014 M:      Jamie Iles <jamie@jamieiles.com>
7015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7016 T:      git git://github.com/jamieiles/linux-2.6-ji.git
7017 S:      Supported
7018 F:      arch/arm/boot/dts/picoxcell*
7019 F:      arch/arm/mach-picoxcell/
7020 F:      drivers/crypto/picoxcell*
7021
7022 PIN CONTROL SUBSYSTEM
7023 M:      Linus Walleij <linus.walleij@linaro.org>
7024 S:      Maintained
7025 F:      drivers/pinctrl/
7026 F:      include/linux/pinctrl/
7027
7028 PIN CONTROLLER - ATMEL AT91
7029 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
7030 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7031 S:      Maintained
7032 F:      drivers/pinctrl/pinctrl-at91.c
7033
7034 PIN CONTROLLER - RENESAS
7035 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7036 L:      linux-sh@vger.kernel.org
7037 S:      Maintained
7038 F:      drivers/pinctrl/sh-pfc/
7039
7040 PIN CONTROLLER - SAMSUNG
7041 M:      Tomasz Figa <t.figa@samsung.com>
7042 M:      Thomas Abraham <thomas.abraham@linaro.org>
7043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7044 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7045 S:      Maintained
7046 F:      drivers/pinctrl/samsung/
7047
7048 PIN CONTROLLER - ST SPEAR
7049 M:      Viresh Kumar <viresh.linux@gmail.com>
7050 L:      spear-devel@list.st.com
7051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7052 W:      http://www.st.com/spear
7053 S:      Maintained
7054 F:      drivers/pinctrl/spear/
7055
7056 PKTCDVD DRIVER
7057 M:      Jiri Kosina <jkosina@suse.cz>
7058 S:      Maintained
7059 F:      drivers/block/pktcdvd.c
7060 F:      include/linux/pktcdvd.h
7061 F:      include/uapi/linux/pktcdvd.h
7062
7063 PKUNITY SOC DRIVERS
7064 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
7065 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
7066 S:      Maintained
7067 T:      git git://github.com/gxt/linux.git
7068 F:      drivers/input/serio/i8042-unicore32io.h
7069 F:      drivers/i2c/busses/i2c-puv3.c
7070 F:      drivers/video/fbdev/fb-puv3.c
7071 F:      drivers/rtc/rtc-puv3.c
7072
7073 PMBUS HARDWARE MONITORING DRIVERS
7074 M:      Guenter Roeck <linux@roeck-us.net>
7075 L:      lm-sensors@lm-sensors.org
7076 W:      http://www.lm-sensors.org/
7077 W:      http://www.roeck-us.net/linux/drivers/
7078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7079 S:      Maintained
7080 F:      Documentation/hwmon/pmbus
7081 F:      drivers/hwmon/pmbus/
7082 F:      include/linux/i2c/pmbus.h
7083
7084 PMC SIERRA MaxRAID DRIVER
7085 M:      Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
7086 L:      linux-scsi@vger.kernel.org
7087 W:      http://www.pmc-sierra.com/
7088 S:      Supported
7089 F:      drivers/scsi/pmcraid.*
7090
7091 PMC SIERRA PM8001 DRIVER
7092 M:      xjtuwjp@gmail.com
7093 M:      lindar_liu@usish.com
7094 L:      pmchba@pmcs.com
7095 L:      linux-scsi@vger.kernel.org
7096 S:      Supported
7097 F:      drivers/scsi/pm8001/
7098
7099 POSIX CLOCKS and TIMERS
7100 M:      Thomas Gleixner <tglx@linutronix.de>
7101 L:      linux-kernel@vger.kernel.org
7102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7103 S:      Maintained
7104 F:      fs/timerfd.c
7105 F:      include/linux/timer*
7106 F:      kernel/time/*timer*
7107
7108 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
7109 M:      Sebastian Reichel <sre@kernel.org>
7110 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
7111 M:      David Woodhouse <dwmw2@infradead.org>
7112 L:      linux-pm@vger.kernel.org
7113 T:      git git://git.infradead.org/battery-2.6.git
7114 S:      Maintained
7115 F:      include/linux/power_supply.h
7116 F:      drivers/power/
7117
7118 PNP SUPPORT
7119 M:      Rafael J. Wysocki <rafael.j.wysocki@intel.com>
7120 S:      Maintained
7121 F:      drivers/pnp/
7122
7123 PNXxxxx I2C DRIVER
7124 M:      Vitaly Wool <vitalywool@gmail.com>
7125 L:      linux-i2c@vger.kernel.org
7126 S:      Maintained
7127 F:      drivers/i2c/busses/i2c-pnx.c
7128
7129 PPP PROTOCOL DRIVERS AND COMPRESSORS
7130 M:      Paul Mackerras <paulus@samba.org>
7131 L:      linux-ppp@vger.kernel.org
7132 S:      Maintained
7133 F:      drivers/net/ppp/ppp_*
7134
7135 PPP OVER ATM (RFC 2364)
7136 M:      Mitchell Blank Jr <mitch@sfgoth.com>
7137 S:      Maintained
7138 F:      net/atm/pppoatm.c
7139 F:      include/uapi/linux/atmppp.h
7140
7141 PPP OVER ETHERNET
7142 M:      Michal Ostrowski <mostrows@earthlink.net>
7143 S:      Maintained
7144 F:      drivers/net/ppp/pppoe.c
7145 F:      drivers/net/ppp/pppox.c
7146
7147 PPP OVER L2TP
7148 M:      James Chapman <jchapman@katalix.com>
7149 S:      Maintained
7150 F:      net/l2tp/l2tp_ppp.c
7151 F:      include/linux/if_pppol2tp.h
7152 F:      include/uapi/linux/if_pppol2tp.h
7153
7154 PPS SUPPORT
7155 M:      Rodolfo Giometti <giometti@enneenne.com>
7156 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
7157 L:      linuxpps@ml.enneenne.com (subscribers-only)
7158 S:      Maintained
7159 F:      Documentation/pps/
7160 F:      drivers/pps/
7161 F:      include/linux/pps*.h
7162
7163 PPTP DRIVER
7164 M:      Dmitry Kozlov <xeb@mail.ru>
7165 L:      netdev@vger.kernel.org
7166 S:      Maintained
7167 F:      drivers/net/ppp/pptp.c
7168 W:      http://sourceforge.net/projects/accel-pptp
7169
7170 PREEMPTIBLE KERNEL
7171 M:      Robert Love <rml@tech9.net>
7172 L:      kpreempt-tech@lists.sourceforge.net
7173 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
7174 S:      Supported
7175 F:      Documentation/preempt-locking.txt
7176 F:      include/linux/preempt.h
7177
7178 PRISM54 WIRELESS DRIVER
7179 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
7180 L:      linux-wireless@vger.kernel.org
7181 W:      http://wireless.kernel.org/en/users/Drivers/p54
7182 S:      Obsolete
7183 F:      drivers/net/wireless/prism54/
7184
7185 PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
7186 M:      Mikael Pettersson <mikpelinux@gmail.com>
7187 L:      linux-ide@vger.kernel.org
7188 S:      Maintained
7189 F:      drivers/ata/sata_promise.*
7190
7191 PS3 NETWORK SUPPORT
7192 M:      Geoff Levand <geoff@infradead.org>
7193 L:      netdev@vger.kernel.org
7194 L:      cbe-oss-dev@lists.ozlabs.org
7195 S:      Maintained
7196 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
7197
7198 PS3 PLATFORM SUPPORT
7199 M:      Geoff Levand <geoff@infradead.org>
7200 L:      linuxppc-dev@lists.ozlabs.org
7201 L:      cbe-oss-dev@lists.ozlabs.org
7202 S:      Maintained
7203 F:      arch/powerpc/boot/ps3*
7204 F:      arch/powerpc/include/asm/lv1call.h
7205 F:      arch/powerpc/include/asm/ps3*.h
7206 F:      arch/powerpc/platforms/ps3/
7207 F:      drivers/*/ps3*
7208 F:      drivers/ps3/
7209 F:      drivers/rtc/rtc-ps3.c
7210 F:      drivers/usb/host/*ps3.c
7211 F:      sound/ppc/snd_ps3*
7212
7213 PS3VRAM DRIVER
7214 M:      Jim Paris <jim@jtan.com>
7215 L:      cbe-oss-dev@lists.ozlabs.org
7216 S:      Maintained
7217 F:      drivers/block/ps3vram.c
7218
7219 PSTORE FILESYSTEM
7220 M:      Anton Vorontsov <anton@enomsg.org>
7221 M:      Colin Cross <ccross@android.com>
7222 M:      Kees Cook <keescook@chromium.org>
7223 M:      Tony Luck <tony.luck@intel.com>
7224 S:      Maintained
7225 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
7226 F:      fs/pstore/
7227 F:      include/linux/pstore*
7228 F:      drivers/firmware/efi/efi-pstore.c
7229 F:      drivers/acpi/apei/erst.c
7230
7231 PTP HARDWARE CLOCK SUPPORT
7232 M:      Richard Cochran <richardcochran@gmail.com>
7233 L:      netdev@vger.kernel.org
7234 S:      Maintained
7235 W:      http://linuxptp.sourceforge.net/
7236 F:      Documentation/ABI/testing/sysfs-ptp
7237 F:      Documentation/ptp/*
7238 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
7239 F:      drivers/net/phy/dp83640*
7240 F:      drivers/ptp/*
7241 F:      include/linux/ptp_cl*
7242
7243 PTRACE SUPPORT
7244 M:      Roland McGrath <roland@hack.frob.com>
7245 M:      Oleg Nesterov <oleg@redhat.com>
7246 S:      Maintained
7247 F:      include/asm-generic/syscall.h
7248 F:      include/linux/ptrace.h
7249 F:      include/linux/regset.h
7250 F:      include/linux/tracehook.h
7251 F:      include/uapi/linux/ptrace.h
7252 F:      kernel/ptrace.c
7253
7254 PVRUSB2 VIDEO4LINUX DRIVER
7255 M:      Mike Isely <isely@pobox.com>
7256 L:      pvrusb2@isely.net       (subscribers-only)
7257 L:      linux-media@vger.kernel.org
7258 W:      http://www.isely.net/pvrusb2/
7259 T:      git git://linuxtv.org/media_tree.git
7260 S:      Maintained
7261 F:      Documentation/video4linux/README.pvrusb2
7262 F:      drivers/media/usb/pvrusb2/
7263
7264 PWC WEBCAM DRIVER
7265 M:      Hans de Goede <hdegoede@redhat.com>
7266 L:      linux-media@vger.kernel.org
7267 T:      git git://linuxtv.org/media_tree.git
7268 S:      Maintained
7269 F:      drivers/media/usb/pwc/*
7270
7271 PWM SUBSYSTEM
7272 M:      Thierry Reding <thierry.reding@gmail.com>
7273 L:      linux-pwm@vger.kernel.org
7274 S:      Maintained
7275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
7276 F:      Documentation/pwm.txt
7277 F:      Documentation/devicetree/bindings/pwm/
7278 F:      include/linux/pwm.h
7279 F:      drivers/pwm/
7280 F:      drivers/video/backlight/pwm_bl.c
7281 F:      include/linux/pwm_backlight.h
7282
7283 PXA2xx/PXA3xx SUPPORT
7284 M:      Eric Miao <eric.y.miao@gmail.com>
7285 M:      Russell King <linux@arm.linux.org.uk>
7286 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7287 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7288 T:      git git://github.com/hzhuang1/linux.git
7289 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
7290 S:      Maintained
7291 F:      arch/arm/mach-pxa/
7292 F:      drivers/pcmcia/pxa2xx*
7293 F:      drivers/spi/spi-pxa2xx*
7294 F:      drivers/usb/gadget/udc/pxa2*
7295 F:      include/sound/pxa2xx-lib.h
7296 F:      sound/arm/pxa*
7297 F:      sound/soc/pxa/
7298
7299 PXA3xx NAND FLASH DRIVER
7300 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
7301 L:      linux-mtd@lists.infradead.org
7302 S:      Maintained
7303 F:      drivers/mtd/nand/pxa3xx_nand.c
7304
7305 MMP SUPPORT
7306 M:      Eric Miao <eric.y.miao@gmail.com>
7307 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
7308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7309 T:      git git://github.com/hzhuang1/linux.git
7310 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
7311 S:      Maintained
7312 F:      arch/arm/mach-mmp/
7313
7314 PXA MMCI DRIVER
7315 S:      Orphan
7316
7317 PXA RTC DRIVER
7318 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7319 L:      rtc-linux@googlegroups.com
7320 S:      Maintained
7321
7322 QAT DRIVER
7323 M:      Tadeusz Struk <tadeusz.struk@intel.com>
7324 L:      qat-linux@intel.com
7325 S:      Supported
7326 F:      drivers/crypto/qat/
7327
7328 QIB DRIVER
7329 M:      Mike Marciniszyn <infinipath@intel.com>
7330 L:      linux-rdma@vger.kernel.org
7331 S:      Supported
7332 F:      drivers/infiniband/hw/qib/
7333
7334 QLOGIC QLA1280 SCSI DRIVER
7335 M:      Michael Reed <mdr@sgi.com>
7336 L:      linux-scsi@vger.kernel.org
7337 S:      Maintained
7338 F:      drivers/scsi/qla1280.[ch]
7339
7340 QLOGIC QLA2XXX FC-SCSI DRIVER
7341 M:      qla2xxx-upstream@qlogic.com
7342 L:      linux-scsi@vger.kernel.org
7343 S:      Supported
7344 F:      Documentation/scsi/LICENSE.qla2xxx
7345 F:      drivers/scsi/qla2xxx/
7346
7347 QLOGIC QLA4XXX iSCSI DRIVER
7348 M:      Vikas Chaudhary <vikas.chaudhary@qlogic.com>
7349 M:      iscsi-driver@qlogic.com
7350 L:      linux-scsi@vger.kernel.org
7351 S:      Supported
7352 F:      Documentation/scsi/LICENSE.qla4xxx
7353 F:      drivers/scsi/qla4xxx/
7354
7355 QLOGIC QLA3XXX NETWORK DRIVER
7356 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
7357 M:      Ron Mercer <ron.mercer@qlogic.com>
7358 M:      linux-driver@qlogic.com
7359 L:      netdev@vger.kernel.org
7360 S:      Supported
7361 F:      Documentation/networking/LICENSE.qla3xxx
7362 F:      drivers/net/ethernet/qlogic/qla3xxx.*
7363
7364 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
7365 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
7366 M:      Dept-HSGLinuxNICDev@qlogic.com
7367 L:      netdev@vger.kernel.org
7368 S:      Supported
7369 F:      drivers/net/ethernet/qlogic/qlcnic/
7370
7371 QLOGIC QLGE 10Gb ETHERNET DRIVER
7372 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
7373 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
7374 M:      Ron Mercer <ron.mercer@qlogic.com>
7375 M:      linux-driver@qlogic.com
7376 L:      netdev@vger.kernel.org
7377 S:      Supported
7378 F:      drivers/net/ethernet/qlogic/qlge/
7379
7380 QNX4 FILESYSTEM
7381 M:      Anders Larsen <al@alarsen.net>
7382 W:      http://www.alarsen.net/linux/qnx4fs/
7383 S:      Maintained
7384 F:      fs/qnx4/
7385 F:      include/uapi/linux/qnx4_fs.h
7386 F:      include/uapi/linux/qnxtypes.h
7387
7388 QT1010 MEDIA DRIVER
7389 M:      Antti Palosaari <crope@iki.fi>
7390 L:      linux-media@vger.kernel.org
7391 W:      http://linuxtv.org/
7392 W:      http://palosaari.fi/linux/
7393 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7394 T:      git git://linuxtv.org/anttip/media_tree.git
7395 S:      Maintained
7396 F:      drivers/media/tuners/qt1010*
7397
7398 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
7399 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
7400 L:      linux-wireless@vger.kernel.org
7401 L:      ath9k-devel@lists.ath9k.org
7402 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
7403 S:      Supported
7404 F:      drivers/net/wireless/ath/ath9k/
7405
7406 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
7407 M:      Kalle Valo <kvalo@qca.qualcomm.com>
7408 L:      ath10k@lists.infradead.org
7409 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
7410 T:      git git://github.com/kvalo/ath.git
7411 S:      Supported
7412 F:      drivers/net/wireless/ath/ath10k/
7413
7414 QUALCOMM HEXAGON ARCHITECTURE
7415 M:      Richard Kuo <rkuo@codeaurora.org>
7416 L:      linux-hexagon@vger.kernel.org
7417 S:      Supported
7418 F:      arch/hexagon/
7419
7420 QUALCOMM WCN36XX WIRELESS DRIVER
7421 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
7422 L:      wcn36xx@lists.infradead.org
7423 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
7424 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
7425 S:      Supported
7426 F:      drivers/net/wireless/ath/wcn36xx/
7427
7428 QUICKCAM PARALLEL PORT WEBCAMS
7429 M:      Hans Verkuil <hverkuil@xs4all.nl>
7430 L:      linux-media@vger.kernel.org
7431 T:      git git://linuxtv.org/media_tree.git
7432 W:      http://linuxtv.org
7433 S:      Odd Fixes
7434 F:      drivers/media/parport/*-qcam*
7435
7436 RADOS BLOCK DEVICE (RBD)
7437 M:      Yehuda Sadeh <yehuda@inktank.com>
7438 M:      Sage Weil <sage@inktank.com>
7439 M:      Alex Elder <elder@kernel.org>
7440 M:      ceph-devel@vger.kernel.org
7441 W:      http://ceph.com/
7442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
7443 S:      Supported
7444 F:      drivers/block/rbd.c
7445 F:      drivers/block/rbd_types.h
7446
7447 RADEON FRAMEBUFFER DISPLAY DRIVER
7448 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
7449 L:      linux-fbdev@vger.kernel.org
7450 S:      Maintained
7451 F:      drivers/video/fbdev/aty/radeon*
7452 F:      include/uapi/linux/radeonfb.h
7453
7454 RADIOSHARK RADIO DRIVER
7455 M:      Hans de Goede <hdegoede@redhat.com>
7456 L:      linux-media@vger.kernel.org
7457 T:      git git://linuxtv.org/media_tree.git
7458 S:      Maintained
7459 F:      drivers/media/radio/radio-shark.c
7460
7461 RADIOSHARK2 RADIO DRIVER
7462 M:      Hans de Goede <hdegoede@redhat.com>
7463 L:      linux-media@vger.kernel.org
7464 T:      git git://linuxtv.org/media_tree.git
7465 S:      Maintained
7466 F:      drivers/media/radio/radio-shark2.c
7467 F:      drivers/media/radio/radio-tea5777.c
7468
7469 RAGE128 FRAMEBUFFER DISPLAY DRIVER
7470 M:      Paul Mackerras <paulus@samba.org>
7471 L:      linux-fbdev@vger.kernel.org
7472 S:      Maintained
7473 F:      drivers/video/fbdev/aty/aty128fb.c
7474
7475 RALINK RT2X00 WIRELESS LAN DRIVER
7476 P:      rt2x00 project
7477 M:      Ivo van Doorn <IvDoorn@gmail.com>
7478 M:      Helmut Schaa <helmut.schaa@googlemail.com>
7479 L:      linux-wireless@vger.kernel.org
7480 L:      users@rt2x00.serialmonkey.com (moderated for non-subscribers)
7481 W:      http://rt2x00.serialmonkey.com/
7482 S:      Maintained
7483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
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:      */