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