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