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