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