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