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