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