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