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