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