Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | |
Artem Bityutskiy | cc8f9b9 | 2011-07-22 10:55:50 +0300 | [diff] [blame] | 2 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | List of maintainers and how to submit kernel changes |
| 4 | |
| 5 | Please try to follow the guidelines below. This will make things |
| 6 | easier on the maintainers. Not all of these guidelines matter for every |
| 7 | trivial patch so apply some common sense. |
| 8 | |
| 9 | 1. Always _test_ your changes, however small, on at least 4 or |
| 10 | 5 people, preferably many more. |
| 11 | |
| 12 | 2. Try to release a few ALPHA test versions to the net. Announce |
| 13 | them onto the kernel channel and await results. This is especially |
| 14 | important for device drivers, because often that's the only way |
| 15 | you will find things like the fact version 3 firmware needs |
| 16 | a magic fix you didn't know about, or some clown changed the |
| 17 | chips on a board and not its name. (Don't laugh! Look at the |
| 18 | SMC etherpower for that.) |
| 19 | |
| 20 | 3. Make sure your changes compile correctly in multiple |
| 21 | configurations. In particular check that changes work both as a |
| 22 | module and built into the kernel. |
| 23 | |
| 24 | 4. When you are happy with a change make it generally available for |
| 25 | testing and await feedback. |
| 26 | |
| 27 | 5. Make a patch available to the relevant maintainer in the list. Use |
| 28 | 'diff -u' to make the patch easy to merge. Be prepared to get your |
| 29 | changes sent back with seemingly silly requests about formatting |
| 30 | and variable names. These aren't as silly as they seem. One |
| 31 | job the maintainers (and especially Linus) do is to keep things |
| 32 | looking the same. Sometimes this means that the clever hack in |
| 33 | your driver to get around a problem actually needs to become a |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 34 | generalized kernel feature ready for next time. |
| 35 | |
| 36 | PLEASE check your patch with the automated style checker |
Akash Shende | 6f9e245 | 2015-02-16 15:59:48 -0800 | [diff] [blame] | 37 | (scripts/checkpatch.pl) to catch trivial style violations. |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 38 | See Documentation/CodingStyle for guidance here. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Joe Perches | f70f873 | 2009-06-16 15:34:08 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Alan Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 53 | PLEASE remember that submissions must be made under the terms |
Randy Dunlap | 4500371 | 2007-08-30 23:56:37 -0700 | [diff] [blame] | 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. |
Alan Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | 6. Make sure you have the right to send any changes you make. If you |
| 60 | do changes at work you may find your employer owns the patch |
| 61 | not you. |
| 62 | |
Alan Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 63 | 7. When sending security related changes or reports to a maintainer |
| 64 | please Cc: security@kernel.org, especially if the maintainer |
| 65 | does not respond. |
| 66 | |
| 67 | 8. Happy hacking. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 69 | Descriptions of section entries: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 71 | P: Person (obsolete) |
| 72 | M: Mail patches to: FullName <address@domain> |
Paul E. McKenney | eafbaac | 2014-06-02 09:06:37 -0700 | [diff] [blame] | 73 | R: Designated reviewer: FullName <address@domain> |
| 74 | These reviewers should be CCed on patches. |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 75 | L: Mailing list that is relevant to this area |
| 76 | W: Web-page with status/info |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 77 | Q: Patchwork web based patch tracking system site |
Joe Perches | cea8321 | 2014-03-03 15:38:38 -0800 | [diff] [blame] | 78 | T: SCM tree type and location. |
| 79 | Type is one of: git, hg, quilt, stgit, topgit |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 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. |
Stephen Warren | bbbe96e | 2013-04-29 16:17:23 -0700 | [diff] [blame] | 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. |
Joe Perches | 6ab88e0 | 2014-01-23 15:54:22 -0800 | [diff] [blame] | 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. |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 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 |
Stephen Warren | bbbe96e | 2013-04-29 16:17:23 -0700 | [diff] [blame] | 111 | patch or file. For instance: |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 112 | K: of_get_profile |
Stephen Warren | bbbe96e | 2013-04-29 16:17:23 -0700 | [diff] [blame] | 113 | matches patches or files that contain "of_get_profile" |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 114 | K: \b(printk|pr_(info|err))\b |
Stephen Warren | bbbe96e | 2013-04-29 16:17:23 -0700 | [diff] [blame] | 115 | matches patches or files that contain one or more of the words |
| 116 | printk, pr_info or pr_err |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 117 | One regex pattern per line. Multiple K: lines acceptable. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | Note: For the hard of thinking, this list is meant to remain in alphabetical |
| 120 | order. If you could add yourselves to it in alphabetical order that would be |
| 121 | so much easier [Ed] |
| 122 | |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 123 | Maintainers List (try to look for most precise areas first) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 125 | ----------------------------------- |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 126 | |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 127 | 3C59X NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 128 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 129 | L: netdev@vger.kernel.org |
| 130 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 131 | F: Documentation/networking/vortex.txt |
Jeff Kirsher | ca7a8e8 | 2011-03-30 03:47:06 -0700 | [diff] [blame] | 132 | F: drivers/net/ethernet/3com/3c59x.c |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | 3CR990 NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 135 | M: David Dillow <dave@thedillows.org> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 136 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | S: Maintained |
Jeff Kirsher | ca7a8e8 | 2011-03-30 03:47:06 -0700 | [diff] [blame] | 138 | F: drivers/net/ethernet/3com/typhoon* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
adam radford | c4de0ce | 2010-03-08 12:40:36 -0800 | [diff] [blame] | 140 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
| 141 | M: Adam Radford <linuxraid@lsi.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | L: linux-scsi@vger.kernel.org |
adam radford | c4de0ce | 2010-03-08 12:40:36 -0800 | [diff] [blame] | 143 | W: http://www.lsi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | S: Supported |
adam radford | c4de0ce | 2010-03-08 12:40:36 -0800 | [diff] [blame] | 145 | F: drivers/scsi/3w-* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
| 147 | 53C700 AND 53C700-66 SCSI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 148 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | L: linux-scsi@vger.kernel.org |
| 150 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 151 | F: drivers/scsi/53c700* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
Alexander Aring | 68d96dc | 2014-07-11 10:24:19 +0200 | [diff] [blame] | 153 | 6LOWPAN GENERIC (BTLE/IEEE 802.15.4) |
| 154 | M: Alexander Aring <alex.aring@gmail.com> |
Jukka Rissanen | 6970c34 | 2014-09-15 11:03:36 +0300 | [diff] [blame] | 155 | M: Jukka Rissanen <jukka.rissanen@linux.intel.com> |
Alexander Aring | 68d96dc | 2014-07-11 10:24:19 +0200 | [diff] [blame] | 156 | L: linux-bluetooth@vger.kernel.org |
Varka Bhadram | ebef9c1 | 2014-08-08 17:32:45 +0530 | [diff] [blame] | 157 | L: linux-wpan@vger.kernel.org |
Alexander Aring | 68d96dc | 2014-07-11 10:24:19 +0200 | [diff] [blame] | 158 | S: Maintained |
| 159 | F: net/6lowpan/ |
Alexander Aring | 6304f8f | 2014-07-28 15:16:30 +0200 | [diff] [blame] | 160 | F: include/net/6lowpan.h |
Alexander Aring | 68d96dc | 2014-07-11 10:24:19 +0200 | [diff] [blame] | 161 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | 6PACK NETWORK DRIVER FOR AX.25 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 163 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | L: linux-hams@vger.kernel.org |
| 165 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 166 | F: drivers/net/hamradio/6pack.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
Francois Romieu | c8a75b3 | 2011-04-17 17:46:40 -0700 | [diff] [blame] | 169 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 170 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | S: Maintained |
Jeff Kirsher | a8fe65b | 2011-05-19 23:27:55 -0700 | [diff] [blame] | 172 | F: drivers/net/ethernet/realtek/r8169.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 175 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | L: linux-serial@vger.kernel.org |
| 177 | W: http://serial.sourceforge.net |
Greg Kroah-Hartman | 8ee16a1 | 2010-10-06 13:29:44 -0700 | [diff] [blame] | 178 | S: Maintained |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 180 | F: drivers/tty/serial/8250* |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 181 | F: include/linux/serial_8250.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
| 183 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 184 | L: netdev@vger.kernel.org |
Paul Gortmaker | 0cf445c | 2011-01-01 13:28:30 +0000 | [diff] [blame] | 185 | S: Orphan / Obsolete |
Jeff Kirsher | 644570b | 2011-04-02 06:20:12 -0700 | [diff] [blame] | 186 | F: drivers/net/ethernet/8390/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 188 | 9P FILE SYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 189 | M: Eric Van Hensbergen <ericvh@gmail.com> |
| 190 | M: Ron Minnich <rminnich@sandia.gov> |
| 191 | M: Latchesar Ionkov <lucho@ionkov.net> |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 192 | L: v9fs-developer@lists.sourceforge.net |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 193 | W: http://swik.net/v9fs |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 194 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
Joe Perches | eeba444 | 2009-11-11 14:26:44 -0800 | [diff] [blame] | 195 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 196 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 197 | F: Documentation/filesystems/9p.txt |
| 198 | F: fs/9p/ |
Rob Landley | 2315cb1 | 2013-05-28 13:47:58 -0500 | [diff] [blame] | 199 | F: net/9p/ |
| 200 | F: include/net/9p/ |
| 201 | F: include/uapi/linux/virtio_9p.h |
| 202 | F: include/trace/events/9p.h |
| 203 | |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 204 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 205 | A8293 MEDIA DRIVER |
| 206 | M: Antti Palosaari <crope@iki.fi> |
| 207 | L: linux-media@vger.kernel.org |
| 208 | W: http://linuxtv.org/ |
| 209 | W: http://palosaari.fi/linux/ |
| 210 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 211 | T: git git://linuxtv.org/anttip/media_tree.git |
| 212 | S: Maintained |
| 213 | F: drivers/media/dvb-frontends/a8293* |
| 214 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 215 | AACRAID SCSI RAID DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 216 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 217 | L: linux-scsi@vger.kernel.org |
| 218 | W: http://www.adaptec.com/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 220 | F: Documentation/scsi/aacraid.txt |
| 221 | F: drivers/scsi/aacraid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
Josh Triplett | ea8f8fc | 2014-06-06 14:38:27 -0700 | [diff] [blame] | 223 | ABI/API |
| 224 | L: linux-api@vger.kernel.org |
| 225 | F: Documentation/ABI/ |
| 226 | F: include/linux/syscalls.h |
| 227 | F: include/uapi/ |
| 228 | F: kernel/sys_ni.c |
| 229 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 230 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
Hans de Goede | 93d0cc5 | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 231 | M: Hans de Goede <hdegoede@redhat.com> |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 232 | L: lm-sensors@lm-sensors.org |
| 233 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 234 | F: drivers/hwmon/abituguru.c |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 235 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 236 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 237 | M: Alistair John Strachan <alistair@devzero.co.uk> |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 238 | L: lm-sensors@lm-sensors.org |
| 239 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 240 | F: drivers/hwmon/abituguru3.c |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 241 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | ACENIC DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 243 | M: Jes Sorensen <jes@trained-monkey.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | L: linux-acenic@sunsite.dk |
| 245 | S: Maintained |
Jeff Kirsher | 531c4f8 | 2011-08-13 00:37:14 -0700 | [diff] [blame] | 246 | F: drivers/net/ethernet/alteon/acenic* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
Peter Feuerer | e86435e | 2009-06-21 18:53:03 +0200 | [diff] [blame] | 248 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 249 | M: Peter Feuerer <peter@piie.net> |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 250 | L: platform-driver-x86@vger.kernel.org |
Joe Perches | 4fc26e3 | 2009-07-29 15:04:22 -0700 | [diff] [blame] | 251 | W: http://piie.net/?section=acerhdf |
| 252 | S: Maintained |
| 253 | F: drivers/platform/x86/acerhdf.c |
Peter Feuerer | e86435e | 2009-06-21 18:53:03 +0200 | [diff] [blame] | 254 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 255 | ACER WMI LAPTOP EXTRAS |
Lee, Chun-Yi | 182ae55 | 2012-12-14 16:14:24 +0800 | [diff] [blame] | 256 | M: "Lee, Chun-Yi" <jlee@suse.com> |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 257 | L: platform-driver-x86@vger.kernel.org |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 258 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 259 | F: drivers/platform/x86/acer-wmi.c |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | ACPI |
Rafael J. Wysocki | 49db190 | 2013-10-09 01:47:53 +0200 | [diff] [blame] | 262 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
Rafael J. Wysocki | 7fb0608 | 2014-03-20 03:34:47 +0100 | [diff] [blame] | 263 | M: Len Brown <lenb@kernel.org> |
Len Brown | 6968e50 | 2005-12-30 00:32:49 -0500 | [diff] [blame] | 264 | L: linux-acpi@vger.kernel.org |
Rafael J. Wysocki | 360818b | 2013-10-09 01:48:26 +0200 | [diff] [blame] | 265 | W: https://01.org/linux-acpi |
| 266 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ |
| 267 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 268 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 269 | F: drivers/acpi/ |
| 270 | F: drivers/pnp/pnpacpi/ |
| 271 | F: include/linux/acpi.h |
Felipe Contreras | 43368e7 | 2009-09-21 17:04:24 -0700 | [diff] [blame] | 272 | F: include/acpi/ |
Yaowei Bai | 3a75ef0 | 2015-01-17 15:31:07 +0800 | [diff] [blame] | 273 | F: Documentation/acpi/ |
Lv Zheng | 89ca78a | 2013-06-20 08:02:44 +0800 | [diff] [blame] | 274 | F: Documentation/ABI/testing/sysfs-bus-acpi |
Bjorn Helgaas | 15fd830 | 2013-06-26 13:38:37 -0600 | [diff] [blame] | 275 | F: drivers/pci/*acpi* |
| 276 | F: drivers/pci/*/*acpi* |
| 277 | F: drivers/pci/*/*/*acpi* |
Yaowei Bai | 3a75ef0 | 2015-01-17 15:31:07 +0800 | [diff] [blame] | 278 | F: tools/power/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 279 | |
Rafael J. Wysocki | 3774929 | 2013-10-09 01:48:35 +0200 | [diff] [blame] | 280 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
| 281 | M: Robert Moore <robert.moore@intel.com> |
| 282 | M: Lv Zheng <lv.zheng@intel.com> |
| 283 | M: Rafael J. Wysocki <rafael.j.wysocki@intel.com> |
| 284 | L: linux-acpi@vger.kernel.org |
| 285 | L: devel@acpica.org |
| 286 | W: https://acpica.org/ |
| 287 | W: https://github.com/acpica/acpica/ |
| 288 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ |
| 289 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm |
| 290 | S: Supported |
| 291 | F: drivers/acpi/acpica/ |
| 292 | F: include/acpi/ |
Lv Zheng | 2754c44 | 2014-01-15 12:04:24 +0800 | [diff] [blame] | 293 | F: tools/power/acpi/ |
Rafael J. Wysocki | 3774929 | 2013-10-09 01:48:35 +0200 | [diff] [blame] | 294 | |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 295 | ACPI FAN DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 296 | M: Zhang Rui <rui.zhang@intel.com> |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 297 | L: linux-acpi@vger.kernel.org |
Rafael J. Wysocki | 5ca92bd | 2013-10-10 23:03:44 +0200 | [diff] [blame] | 298 | W: https://01.org/linux-acpi |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 299 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 300 | F: drivers/acpi/fan.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 302 | ACPI THERMAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 303 | M: Zhang Rui <rui.zhang@intel.com> |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 304 | L: linux-acpi@vger.kernel.org |
Rafael J. Wysocki | 5ca92bd | 2013-10-10 23:03:44 +0200 | [diff] [blame] | 305 | W: https://01.org/linux-acpi |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 306 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 307 | F: drivers/acpi/*thermal* |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 308 | |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 309 | ACPI VIDEO DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 310 | M: Zhang Rui <rui.zhang@intel.com> |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 311 | L: linux-acpi@vger.kernel.org |
Rafael J. Wysocki | 5ca92bd | 2013-10-10 23:03:44 +0200 | [diff] [blame] | 312 | W: https://01.org/linux-acpi |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 313 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 314 | F: drivers/acpi/video.c |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 315 | |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 316 | ACPI WMI DRIVER |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 317 | L: platform-driver-x86@vger.kernel.org |
Carlos Corbacho | 5b92725 | 2011-05-02 09:57:13 +0100 | [diff] [blame] | 318 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 319 | F: drivers/platform/x86/wmi.c |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 320 | |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 321 | AD1889 ALSA SOUND DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 322 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 323 | W: http://wiki.parisc-linux.org/AD1889 |
| 324 | L: linux-parisc@vger.kernel.org |
| 325 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 326 | F: sound/pci/ad1889.* |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 327 | |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 328 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
| 329 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 330 | W: http://wiki.analog.com/AD5254 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 331 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 332 | S: Supported |
| 333 | F: drivers/misc/ad525x_dpot.c |
| 334 | |
| 335 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) |
| 336 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 337 | W: http://wiki.analog.com/AD5398 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 338 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 339 | S: Supported |
| 340 | F: drivers/regulator/ad5398.c |
| 341 | |
| 342 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) |
| 343 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 344 | W: http://wiki.analog.com/AD7142 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 345 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 346 | S: Supported |
| 347 | F: drivers/input/misc/ad714x.c |
| 348 | |
| 349 | AD7877 TOUCHSCREEN DRIVER |
| 350 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 351 | W: http://wiki.analog.com/AD7877 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 352 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 353 | S: Supported |
| 354 | F: drivers/input/touchscreen/ad7877.c |
| 355 | |
| 356 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) |
| 357 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 358 | W: http://wiki.analog.com/AD7879 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 359 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 360 | S: Supported |
| 361 | F: drivers/input/touchscreen/ad7879.c |
| 362 | |
Jiri Kosina | 1330b0d | 2011-10-31 17:11:41 -0700 | [diff] [blame] | 363 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
| 364 | M: Jiri Kosina <jkosina@suse.cz> |
| 365 | S: Maintained |
| 366 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | ADM1025 HARDWARE MONITOR DRIVER |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 368 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 369 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 371 | F: Documentation/hwmon/adm1025 |
| 372 | F: drivers/hwmon/adm1025.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 374 | ADM1029 HARDWARE MONITOR DRIVER |
LABBE Corentin | fce8ffa | 2014-05-08 16:07:45 +0200 | [diff] [blame] | 375 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 376 | L: lm-sensors@lm-sensors.org |
| 377 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 378 | F: drivers/hwmon/adm1029.c |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 379 | |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 380 | ADM8211 WIRELESS DRIVER |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 381 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 382 | W: http://wireless.kernel.org/ |
John W. Linville | e71bcbd | 2010-07-12 16:03:07 -0400 | [diff] [blame] | 383 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 384 | F: drivers/net/wireless/adm8211.* |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 385 | |
Sakari Ailus | e8e3162 | 2012-11-12 18:14:39 -0300 | [diff] [blame] | 386 | ADP1653 FLASH CONTROLLER DRIVER |
| 387 | M: Sakari Ailus <sakari.ailus@iki.fi> |
| 388 | L: linux-media@vger.kernel.org |
| 389 | S: Maintained |
| 390 | F: drivers/media/i2c/adp1653.c |
| 391 | F: include/media/adp1653.h |
| 392 | |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 393 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
| 394 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 395 | W: http://wiki.analog.com/ADP5520 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 396 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 397 | S: Supported |
| 398 | F: drivers/mfd/adp5520.c |
| 399 | F: drivers/video/backlight/adp5520_bl.c |
Joe Perches | 45b4e0d | 2011-03-22 16:34:27 -0700 | [diff] [blame] | 400 | F: drivers/leds/leds-adp5520.c |
Joe Perches | 77278d5 | 2012-01-10 15:08:44 -0800 | [diff] [blame] | 401 | F: drivers/gpio/gpio-adp5520.c |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 402 | F: drivers/input/keyboard/adp5520-keys.c |
| 403 | |
| 404 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) |
| 405 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 406 | W: http://wiki.analog.com/ADP5588 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 407 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 408 | S: Supported |
| 409 | F: drivers/input/keyboard/adp5588-keys.c |
Joe Perches | 77278d5 | 2012-01-10 15:08:44 -0800 | [diff] [blame] | 410 | F: drivers/gpio/gpio-adp5588.c |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 411 | |
| 412 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) |
| 413 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 414 | W: http://wiki.analog.com/ADP8860 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 415 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 416 | S: Supported |
| 417 | F: drivers/video/backlight/adp8860_bl.c |
| 418 | |
Dirk Eibach | 8c22a8f | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 419 | ADS1015 HARDWARE MONITOR DRIVER |
| 420 | M: Dirk Eibach <eibach@gdsys.de> |
| 421 | L: lm-sensors@lm-sensors.org |
| 422 | S: Maintained |
| 423 | F: Documentation/hwmon/ads1015 |
| 424 | F: drivers/hwmon/ads1015.c |
| 425 | F: include/linux/i2c/ads1015.h |
| 426 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | ADT746X FAN DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 428 | M: Colin Leroy <colin@colino.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 430 | F: drivers/macintosh/therm_adt746x.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | |
Jean Delvare | b058b85 | 2009-12-09 20:36:08 +0100 | [diff] [blame] | 432 | ADT7475 HARDWARE MONITOR DRIVER |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 433 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | b058b85 | 2009-12-09 20:36:08 +0100 | [diff] [blame] | 434 | L: lm-sensors@lm-sensors.org |
| 435 | S: Maintained |
| 436 | F: Documentation/hwmon/adt7475 |
| 437 | F: drivers/hwmon/adt7475.c |
| 438 | |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 439 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
| 440 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 441 | W: http://wiki.analog.com/ADXL345 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 442 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 443 | S: Supported |
| 444 | F: drivers/input/misc/adxl34x.c |
| 445 | |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 446 | ADVANSYS SCSI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 447 | M: Matthew Wilcox <matthew@wil.cx> |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 448 | L: linux-scsi@vger.kernel.org |
| 449 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 450 | F: Documentation/scsi/advansys.txt |
| 451 | F: drivers/scsi/advansys.c |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | AEDSP16 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 454 | M: Riccardo Facchetti <fizban@tin.it> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 456 | F: sound/oss/aedsp16.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 458 | AF9013 MEDIA DRIVER |
| 459 | M: Antti Palosaari <crope@iki.fi> |
| 460 | L: linux-media@vger.kernel.org |
| 461 | W: http://linuxtv.org/ |
| 462 | W: http://palosaari.fi/linux/ |
| 463 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 464 | T: git git://linuxtv.org/anttip/media_tree.git |
| 465 | S: Maintained |
| 466 | F: drivers/media/dvb-frontends/af9013* |
| 467 | |
| 468 | AF9033 MEDIA DRIVER |
| 469 | M: Antti Palosaari <crope@iki.fi> |
| 470 | L: linux-media@vger.kernel.org |
| 471 | W: http://linuxtv.org/ |
| 472 | W: http://palosaari.fi/linux/ |
| 473 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 474 | T: git git://linuxtv.org/anttip/media_tree.git |
| 475 | S: Maintained |
| 476 | F: drivers/media/dvb-frontends/af9033* |
| 477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | AFFS FILE SYSTEM |
Geert Uytterhoeven | 6cf515e | 2011-04-24 10:32:49 +0200 | [diff] [blame] | 479 | L: linux-fsdevel@vger.kernel.org |
| 480 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 481 | F: Documentation/filesystems/affs.txt |
| 482 | F: fs/affs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 484 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 485 | M: David Howells <dhowells@redhat.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 486 | L: linux-afs@lists.infradead.org |
| 487 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 488 | F: fs/afs/ |
| 489 | F: include/net/af_rxrpc.h |
| 490 | F: net/rxrpc/af_rxrpc.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 491 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | AGPGART DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 493 | M: David Airlie <airlied@linux.ie> |
Dave Airlie | 878eaf6 | 2014-02-27 14:51:55 +1000 | [diff] [blame] | 494 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 496 | F: drivers/char/agp/ |
| 497 | F: include/linux/agp* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 498 | F: include/uapi/linux/agp* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | |
| 500 | AHA152X SCSI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 501 | M: "Juergen E. Fischer" <fischer@norbit.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | L: linux-scsi@vger.kernel.org |
| 503 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 504 | F: drivers/scsi/aha152x* |
| 505 | F: drivers/scsi/pcmcia/aha152x* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 507 | AIC7XXX / AIC79XX SCSI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 508 | M: Hannes Reinecke <hare@suse.de> |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 509 | L: linux-scsi@vger.kernel.org |
| 510 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 511 | F: drivers/scsi/aic7xxx/ |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 512 | |
Hans Verkuil | 450500a | 2012-11-23 07:11:33 -0300 | [diff] [blame] | 513 | AIMSLAB FM RADIO RECEIVER DRIVER |
| 514 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 515 | L: linux-media@vger.kernel.org |
| 516 | T: git git://linuxtv.org/media_tree.git |
| 517 | W: http://linuxtv.org |
| 518 | S: Maintained |
| 519 | F: drivers/media/radio/radio-aimslab* |
| 520 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 521 | AIO |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 522 | M: Benjamin LaHaise <bcrl@kvack.org> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 523 | L: linux-aio@kvack.org |
| 524 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 525 | F: fs/aio.c |
| 526 | F: include/linux/*aio*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 527 | |
Antti Palosaari | 469d4ec | 2014-07-17 21:57:14 -0300 | [diff] [blame] | 528 | AIRSPY MEDIA DRIVER |
| 529 | M: Antti Palosaari <crope@iki.fi> |
| 530 | L: linux-media@vger.kernel.org |
| 531 | W: http://linuxtv.org/ |
| 532 | W: http://palosaari.fi/linux/ |
| 533 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 534 | T: git git://linuxtv.org/anttip/media_tree.git |
| 535 | S: Maintained |
| 536 | F: drivers/media/usb/airspy/ |
| 537 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | ALCATEL SPEEDTOUCH USB DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 539 | M: Duncan Sands <duncan.sands@free.fr> |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 540 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | W: http://www.linux-usb.org/SpeedTouch/ |
| 542 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 543 | F: drivers/usb/atm/speedtch.c |
| 544 | F: drivers/usb/atm/usbatm.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 546 | ALCHEMY AU1XX0 MMC DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 547 | M: Manuel Lauss <manuel.lauss@gmail.com> |
Manuel Lauss | 08fcb72 | 2008-06-09 08:40:35 +0200 | [diff] [blame] | 548 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 549 | F: drivers/mmc/host/au1xmmc.c |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 550 | |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 551 | ALI1563 I2C DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 552 | M: Rudolf Marek <r.marek@assembler.cz> |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 553 | L: linux-i2c@vger.kernel.org |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 554 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 555 | F: Documentation/i2c/busses/i2c-ali1563 |
| 556 | F: drivers/i2c/busses/i2c-ali1563.c |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | ALPHA PORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 559 | M: Richard Henderson <rth@twiddle.net> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 560 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
Matt Turner | abd4d60 | 2010-01-14 13:15:20 -0500 | [diff] [blame] | 561 | M: Matt Turner <mattst88@gmail.com> |
Joe Perches | c89f4f9 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 562 | S: Odd Fixes |
Cheng Renquan | a940669 | 2009-03-31 15:23:35 -0700 | [diff] [blame] | 563 | L: linux-alpha@vger.kernel.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 564 | F: arch/alpha/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
Ley Foon Tan | f62092f | 2015-02-04 16:32:18 +0800 | [diff] [blame] | 566 | ALTERA MAILBOX DRIVER |
| 567 | M: Ley Foon Tan <lftan@altera.com> |
| 568 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
| 569 | S: Maintained |
| 570 | F: drivers/mailbox/mailbox-altera.c |
| 571 | |
Tien Hock Loh | c5abbba | 2015-02-24 01:53:03 -0800 | [diff] [blame] | 572 | ALTERA PIO DRIVER |
| 573 | M: Tien Hock Loh <thloh@altera.com> |
| 574 | L: linux-gpio@vger.kernel.org |
| 575 | S: Maintained |
| 576 | F: drivers/gpio/gpio-altera.c |
| 577 | |
Vince Bridgers | 16b8b92 | 2014-03-17 17:52:40 -0500 | [diff] [blame] | 578 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
Vince Bridgers | c53fed0 | 2014-10-09 10:08:42 -0500 | [diff] [blame] | 579 | M: Vince Bridgers <vbridger@opensource.altera.com> |
Vince Bridgers | 16b8b92 | 2014-03-17 17:52:40 -0500 | [diff] [blame] | 580 | L: netdev@vger.kernel.org |
| 581 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
| 582 | S: Maintained |
| 583 | F: drivers/net/ethernet/altera/ |
| 584 | |
Tobias Klauser | adf9251 | 2011-02-09 10:58:29 +0100 | [diff] [blame] | 585 | ALTERA UART/JTAG UART SERIAL DRIVERS |
| 586 | M: Tobias Klauser <tklauser@distanz.ch> |
| 587 | L: linux-serial@vger.kernel.org |
Tobias Klauser | 61bd094 | 2014-02-25 15:01:49 -0800 | [diff] [blame] | 588 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
Tobias Klauser | adf9251 | 2011-02-09 10:58:29 +0100 | [diff] [blame] | 589 | S: Maintained |
| 590 | F: drivers/tty/serial/altera_uart.c |
| 591 | F: drivers/tty/serial/altera_jtaguart.c |
| 592 | F: include/linux/altera_uart.h |
| 593 | F: include/linux/altera_jtaguart.h |
| 594 | |
Tom Lendacky | f4875e1 | 2013-11-12 11:46:57 -0600 | [diff] [blame] | 595 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
| 596 | M: Tom Lendacky <thomas.lendacky@amd.com> |
| 597 | L: linux-crypto@vger.kernel.org |
| 598 | S: Supported |
| 599 | F: drivers/crypto/ccp/ |
| 600 | F: include/linux/ccp.h |
| 601 | |
Andreas Herrmann | 512d102 | 2011-05-25 20:43:31 +0200 | [diff] [blame] | 602 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
Andreas Herrmann | d034fbf | 2012-10-29 18:50:47 +0100 | [diff] [blame] | 603 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
Andreas Herrmann | 512d102 | 2011-05-25 20:43:31 +0200 | [diff] [blame] | 604 | L: lm-sensors@lm-sensors.org |
| 605 | S: Maintained |
| 606 | F: Documentation/hwmon/fam15h_power |
| 607 | F: drivers/hwmon/fam15h_power.c |
| 608 | |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 609 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 610 | M: Thomas Dahlmann <dahlmann.thomas@arcor.de> |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 611 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 612 | S: Supported |
Joe Perches | faf2e1d | 2014-08-08 14:26:18 -0700 | [diff] [blame] | 613 | F: drivers/usb/gadget/udc/amd5536udc.* |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 614 | |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 615 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
Andres Salomon | 6900609 | 2010-12-21 17:24:23 -0800 | [diff] [blame] | 616 | P: Andres Salomon <dilinger@queued.net> |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 617 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 618 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
| 619 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 620 | F: drivers/char/hw_random/geode-rng.c |
| 621 | F: drivers/crypto/geode* |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 622 | F: drivers/video/fbdev/geode/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 623 | F: arch/x86/include/asm/geode.h |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 624 | |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 625 | AMD IOMMU (AMD-VI) |
Joerg Roedel | e411056 | 2012-10-23 16:16:23 +0200 | [diff] [blame] | 626 | M: Joerg Roedel <joro@8bytes.org> |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 627 | L: iommu@lists.linux-foundation.org |
Joerg Roedel | 525b233 | 2012-03-15 11:56:44 +0100 | [diff] [blame] | 628 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
Joerg Roedel | e411056 | 2012-10-23 16:16:23 +0200 | [diff] [blame] | 629 | S: Maintained |
Joe Perches | b2c1639 | 2011-12-08 20:21:40 -0800 | [diff] [blame] | 630 | F: drivers/iommu/amd_iommu*.[ch] |
| 631 | F: include/linux/amd-iommu.h |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 632 | |
Oded Gabbay | 16423d6 | 2014-07-15 13:08:36 +0300 | [diff] [blame] | 633 | AMD KFD |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 634 | M: Oded Gabbay <oded.gabbay@amd.com> |
| 635 | L: dri-devel@lists.freedesktop.org |
| 636 | T: git git://people.freedesktop.org/~gabbayo/linux.git |
| 637 | S: Supported |
| 638 | F: drivers/gpu/drm/amd/amdkfd/ |
Oded Gabbay | 04df25d | 2015-01-05 18:15:45 +0200 | [diff] [blame] | 639 | F: drivers/gpu/drm/amd/include/cik_structs.h |
| 640 | F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 641 | F: drivers/gpu/drm/radeon/radeon_kfd.c |
| 642 | F: drivers/gpu/drm/radeon/radeon_kfd.h |
| 643 | F: include/uapi/linux/kfd_ioctl.h |
Oded Gabbay | 16423d6 | 2014-07-15 13:08:36 +0300 | [diff] [blame] | 644 | |
Peter Oruba | e7f5b30 | 2008-07-28 18:44:11 +0200 | [diff] [blame] | 645 | AMD MICROCODE UPDATE SUPPORT |
Borislav Petkov | ca68a52 | 2015-03-29 15:54:13 +0200 | [diff] [blame] | 646 | M: Borislav Petkov <bp@alien8.de> |
Andreas Herrmann | 943482d | 2012-10-29 18:51:38 +0100 | [diff] [blame] | 647 | S: Maintained |
Joe Perches | 73d425f | 2014-08-08 14:24:57 -0700 | [diff] [blame] | 648 | F: arch/x86/kernel/cpu/microcode/amd* |
Peter Oruba | e7f5b30 | 2008-07-28 18:44:11 +0200 | [diff] [blame] | 649 | |
Lendacky, Thomas | 45198c7 | 2014-06-05 09:15:24 -0500 | [diff] [blame] | 650 | AMD XGBE DRIVER |
| 651 | M: Tom Lendacky <thomas.lendacky@amd.com> |
| 652 | L: netdev@vger.kernel.org |
| 653 | S: Supported |
| 654 | F: drivers/net/ethernet/amd/xgbe/ |
| 655 | F: drivers/net/phy/amd-xgbe-phy.c |
| 656 | |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 657 | AMS (Apple Motion Sensor) DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 658 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 659 | S: Supported |
Jean Delvare | bd5f47e | 2010-10-28 20:31:50 +0200 | [diff] [blame] | 660 | F: drivers/macintosh/ams/ |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 661 | |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 662 | AMSO1100 RNIC DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 663 | M: Tom Tucker <tom@opengridcomputing.com> |
| 664 | M: Steve Wise <swise@opengridcomputing.com> |
Roland Dreier | e6cc0fd | 2009-09-07 21:54:38 -0700 | [diff] [blame] | 665 | L: linux-rdma@vger.kernel.org |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 666 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 667 | F: drivers/infiniband/hw/amso1100/ |
Tom Tucker | f94b533 | 2006-09-22 15:22:48 -0700 | [diff] [blame] | 668 | |
Hans Verkuil | 531fca1 | 2012-11-23 06:53:24 -0300 | [diff] [blame] | 669 | ANALOG DEVICES INC AD9389B DRIVER |
| 670 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 671 | L: linux-media@vger.kernel.org |
| 672 | S: Maintained |
| 673 | F: drivers/media/i2c/ad9389b* |
| 674 | |
Lars-Peter Clausen | 614b438 | 2015-01-23 12:52:34 -0300 | [diff] [blame] | 675 | ANALOG DEVICES INC ADV7180 DRIVER |
| 676 | M: Lars-Peter Clausen <lars@metafoo.de> |
| 677 | L: linux-media@vger.kernel.org |
| 678 | W: http://ez.analog.com/community/linux-device-drivers |
| 679 | S: Supported |
| 680 | F: drivers/media/i2c/adv7180.c |
| 681 | |
Hans Verkuil | c40ddfa | 2013-08-12 10:02:48 -0300 | [diff] [blame] | 682 | ANALOG DEVICES INC ADV7511 DRIVER |
| 683 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 684 | L: linux-media@vger.kernel.org |
| 685 | S: Maintained |
| 686 | F: drivers/media/i2c/adv7511* |
| 687 | |
Hans Verkuil | 531fca1 | 2012-11-23 06:53:24 -0300 | [diff] [blame] | 688 | ANALOG DEVICES INC ADV7604 DRIVER |
| 689 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 690 | L: linux-media@vger.kernel.org |
| 691 | S: Maintained |
| 692 | F: drivers/media/i2c/adv7604* |
| 693 | |
Hans Verkuil | c40ddfa | 2013-08-12 10:02:48 -0300 | [diff] [blame] | 694 | ANALOG DEVICES INC ADV7842 DRIVER |
| 695 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 696 | L: linux-media@vger.kernel.org |
| 697 | S: Maintained |
| 698 | F: drivers/media/i2c/adv7842* |
| 699 | |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 700 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
Lars-Peter Clausen | 535bd16 | 2011-10-17 20:33:05 +0200 | [diff] [blame] | 701 | M: Lars-Peter Clausen <lars@metafoo.de> |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 702 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 703 | W: http://wiki.analog.com/ |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 704 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 705 | S: Supported |
Mark Brown | 39c9d19 | 2011-06-17 11:22:27 +0100 | [diff] [blame] | 706 | F: sound/soc/codecs/adau* |
Lars-Peter Clausen | cc52688 | 2011-06-27 17:04:01 +0200 | [diff] [blame] | 707 | F: sound/soc/codecs/adav* |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 708 | F: sound/soc/codecs/ad1* |
Mark Brown | ae48f5e | 2013-08-07 18:01:08 +0100 | [diff] [blame] | 709 | F: sound/soc/codecs/ad7* |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 710 | F: sound/soc/codecs/ssm* |
Lars-Peter Clausen | 40216ce | 2011-11-28 09:44:17 +0100 | [diff] [blame] | 711 | F: sound/soc/codecs/sigmadsp.* |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 712 | |
Mike Frysinger | 4bdef3b | 2010-08-11 23:52:23 -0400 | [diff] [blame] | 713 | ANALOG DEVICES INC ASOC DRIVERS |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 714 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Mike Frysinger | 4bdef3b | 2010-08-11 23:52:23 -0400 | [diff] [blame] | 715 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 716 | W: http://blackfin.uclinux.org/ |
| 717 | S: Supported |
| 718 | F: sound/soc/blackfin/* |
Rob Herring | 7d1f901 | 2014-12-26 13:47:30 -0600 | [diff] [blame] | 719 | |
Lars-Peter Clausen | 4ce72ab | 2014-08-18 09:08:00 +0100 | [diff] [blame] | 720 | ANALOG DEVICES INC IIO DRIVERS |
| 721 | M: Lars-Peter Clausen <lars@metafoo.de> |
| 722 | M: Michael Hennerich <Michael.Hennerich@analog.com> |
| 723 | W: http://wiki.analog.com/ |
| 724 | W: http://ez.analog.com/community/linux-device-drivers |
| 725 | S: Supported |
| 726 | F: drivers/iio/*/ad* |
| 727 | X: drivers/iio/*/adjd* |
| 728 | F: drivers/staging/iio/*/ad* |
| 729 | F: staging/iio/trigger/iio-trig-bfin-timer.c |
Mike Frysinger | 4bdef3b | 2010-08-11 23:52:23 -0400 | [diff] [blame] | 730 | |
Greg KH | 41c9e95 | 2015-01-18 16:33:24 +0900 | [diff] [blame] | 731 | ANDROID DRIVERS |
| 732 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Baruch Siach | 2768240 | 2015-03-18 21:29:10 +0200 | [diff] [blame] | 733 | M: Arve Hjønnevåg <arve@android.com> |
Greg KH | 41c9e95 | 2015-01-18 16:33:24 +0900 | [diff] [blame] | 734 | M: Riley Andrews <riandrews@android.com> |
| 735 | T: git git://git.kernel.org/pub/scm/linux/kernel/gregkh/staging.git |
| 736 | L: devel@driverdev.osuosl.org |
| 737 | S: Supported |
| 738 | F: drivers/android/ |
| 739 | F: drivers/staging/android/ |
| 740 | |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 741 | AOA (Apple Onboard Audio) ALSA DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 742 | M: Johannes Berg <johannes@sipsolutions.net> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 743 | L: linuxppc-dev@lists.ozlabs.org |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 744 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 745 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 746 | F: sound/aoa/ |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 747 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | APM DRIVER |
Jiri Kosina | 81024fc | 2011-05-04 13:41:31 +0200 | [diff] [blame] | 749 | M: Jiri Kosina <jkosina@suse.cz> |
| 750 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 751 | F: arch/x86/kernel/apm_32.c |
| 752 | F: include/linux/apm_bios.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 753 | F: include/uapi/linux/apm_bios.h |
Jiri Kosina | 81024fc | 2011-05-04 13:41:31 +0200 | [diff] [blame] | 754 | F: drivers/char/apm-emulation.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 756 | APPLE BCM5974 MULTITOUCH DRIVER |
Henrik Rydberg | 75dd112 | 2015-01-08 14:32:21 -0800 | [diff] [blame] | 757 | M: Henrik Rydberg <rydberg@bitmath.org> |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 758 | L: linux-input@vger.kernel.org |
Henrik Rydberg | 75dd112 | 2015-01-08 14:32:21 -0800 | [diff] [blame] | 759 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 760 | F: drivers/input/mouse/bcm5974.c |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 761 | |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 762 | APPLE SMC DRIVER |
Henrik Rydberg | 75dd112 | 2015-01-08 14:32:21 -0800 | [diff] [blame] | 763 | M: Henrik Rydberg <rydberg@bitmath.org> |
Henrik Rydberg | d618540f | 2010-04-14 16:14:11 +0200 | [diff] [blame] | 764 | L: lm-sensors@lm-sensors.org |
Henrik Rydberg | 75dd112 | 2015-01-08 14:32:21 -0800 | [diff] [blame] | 765 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 766 | F: drivers/hwmon/applesmc.c |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 767 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | APPLETALK NETWORK LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 769 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 771 | F: drivers/net/appletalk/ |
| 772 | F: net/appletalk/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | |
Iyappan Subramanian | 2429950 | 2014-08-07 15:14:25 -0700 | [diff] [blame] | 774 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
| 775 | M: Iyappan Subramanian <isubramanian@apm.com> |
| 776 | M: Keyur Chudgar <kchudgar@apm.com> |
Iyappan Subramanian | 2429950 | 2014-08-07 15:14:25 -0700 | [diff] [blame] | 777 | S: Supported |
| 778 | F: drivers/net/ethernet/apm/xgene/ |
| 779 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt |
| 780 | |
Laurent Pinchart | 62a37dc | 2013-08-09 08:46:11 -0300 | [diff] [blame] | 781 | APTINA CAMERA SENSOR PLL |
| 782 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> |
| 783 | L: linux-media@vger.kernel.org |
| 784 | S: Maintained |
| 785 | F: drivers/media/i2c/aptina-pll.* |
| 786 | |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 787 | ARC FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 788 | M: Jaya Kumar <jayalk@intworks.biz> |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 789 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 790 | F: drivers/video/fbdev/arcfb.c |
| 791 | F: drivers/video/fbdev/core/fb_defio.c |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 792 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | ARM MFM AND FLOPPY DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 794 | M: Ian Molton <spyro@f2s.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 796 | F: arch/arm/lib/floppydma.S |
| 797 | F: arch/arm/include/asm/floppy.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | |
Will Deacon | 6f96521 | 2011-07-01 14:38:53 +0100 | [diff] [blame] | 799 | ARM PMU PROFILING AND DEBUGGING |
| 800 | M: Will Deacon <will.deacon@arm.com> |
| 801 | S: Maintained |
| 802 | F: arch/arm/kernel/perf_event* |
| 803 | F: arch/arm/oprofile/common.c |
Will Deacon | 6f96521 | 2011-07-01 14:38:53 +0100 | [diff] [blame] | 804 | F: arch/arm/include/asm/pmu.h |
| 805 | F: arch/arm/kernel/hw_breakpoint.c |
| 806 | F: arch/arm/include/asm/hw_breakpoint.h |
| 807 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 808 | ARM PORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 809 | M: Russell King <linux@arm.linux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 810 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 811 | W: http://www.arm.linux.org.uk/ |
| 812 | S: Maintained |
| 813 | F: arch/arm/ |
| 814 | |
Stephen Boyd | d323c243 | 2012-10-24 11:00:29 -0700 | [diff] [blame] | 815 | ARM SUB-ARCHITECTURES |
| 816 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Zhang Yanfei | 56ca9d9 | 2013-01-11 14:32:04 -0800 | [diff] [blame] | 817 | S: Maintained |
Stephen Boyd | d323c243 | 2012-10-24 11:00:29 -0700 | [diff] [blame] | 818 | F: arch/arm/mach-*/ |
| 819 | F: arch/arm/plat-*/ |
| 820 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git |
| 821 | |
Russell King | cefbf4e | 2009-11-22 17:40:28 +0000 | [diff] [blame] | 822 | ARM PRIMECELL AACI PL041 DRIVER |
| 823 | M: Russell King <linux@arm.linux.org.uk> |
| 824 | S: Maintained |
| 825 | F: sound/arm/aaci.* |
| 826 | |
| 827 | ARM PRIMECELL CLCD PL110 DRIVER |
| 828 | M: Russell King <linux@arm.linux.org.uk> |
| 829 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 830 | F: drivers/video/fbdev/amba-clcd.* |
Russell King | cefbf4e | 2009-11-22 17:40:28 +0000 | [diff] [blame] | 831 | |
| 832 | ARM PRIMECELL KMI PL050 DRIVER |
| 833 | M: Russell King <linux@arm.linux.org.uk> |
| 834 | S: Maintained |
| 835 | F: drivers/input/serio/ambakmi.* |
| 836 | F: include/linux/amba/kmi.h |
| 837 | |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 838 | ARM PRIMECELL MMCI PL180/1 DRIVER |
Russell King | 08a5c9a | 2013-02-11 15:28:51 +0000 | [diff] [blame] | 839 | M: Russell King <linux@arm.linux.org.uk> |
| 840 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 841 | F: drivers/mmc/host/mmci.* |
Russell King | 2f748aa | 2013-02-11 15:28:05 +0000 | [diff] [blame] | 842 | F: include/linux/amba/mmci.h |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 843 | |
Russell King | 1b4304e | 2013-02-11 15:26:27 +0000 | [diff] [blame] | 844 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
| 845 | M: Russell King <linux@arm.linux.org.uk> |
| 846 | S: Maintained |
| 847 | F: drivers/tty/serial/amba-pl01*.c |
| 848 | F: include/linux/amba/serial.h |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 849 | |
Russell King | cefbf4e | 2009-11-22 17:40:28 +0000 | [diff] [blame] | 850 | ARM PRIMECELL BUS SUPPORT |
| 851 | M: Russell King <linux@arm.linux.org.uk> |
| 852 | S: Maintained |
| 853 | F: drivers/amba/ |
| 854 | F: include/linux/amba/bus.h |
| 855 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 856 | ARM/ADS SPHERE MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 857 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 858 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 859 | S: Maintained |
| 860 | |
Sergey Lapin | 9c784f9 | 2008-08-03 02:29:48 +0100 | [diff] [blame] | 861 | ARM/AFEB9260 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 862 | M: Sergey Lapin <slapin@ossfans.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 863 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Sergey Lapin | 9c784f9 | 2008-08-03 02:29:48 +0100 | [diff] [blame] | 864 | S: Maintained |
| 865 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 866 | ARM/AJECO 1ARM MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 867 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 868 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 869 | S: Maintained |
| 870 | |
Maxime Ripard | 1b10669 | 2012-11-15 21:51:26 +0100 | [diff] [blame] | 871 | ARM/Allwinner A1X SoC support |
| 872 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
| 873 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 874 | S: Maintained |
Maxime Ripard | 60b0f38 | 2013-12-30 16:03:33 +0100 | [diff] [blame] | 875 | N: sun[x4567]i |
| 876 | |
| 877 | ARM/Allwinner SoC Clock Support |
| 878 | M: Emilio López <emilio@elopez.com.ar> |
| 879 | S: Maintained |
| 880 | F: drivers/clk/sunxi/ |
Maxime Ripard | 1b10669 | 2012-11-15 21:51:26 +0100 | [diff] [blame] | 881 | |
Carlo Caione | 7c1e387 | 2014-09-12 20:18:31 +0200 | [diff] [blame] | 882 | ARM/Amlogic MesonX SoC support |
| 883 | M: Carlo Caione <carlo@caione.org> |
| 884 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 885 | S: Maintained |
Beniamino Galvani | 12ddbad | 2014-11-18 17:22:34 -0300 | [diff] [blame] | 886 | F: drivers/media/rc/meson-ir.c |
Carlo Caione | 7c1e387 | 2014-09-12 20:18:31 +0200 | [diff] [blame] | 887 | N: meson[x68] |
| 888 | |
Tsahee Zidenberg | eff506f | 2015-03-12 13:53:25 +0200 | [diff] [blame] | 889 | ARM/Annapurna Labs ALPINE ARCHITECTURE |
| 890 | M: Tsahee Zidenberg <tsahee@annapurnalabs.com> |
| 891 | S: Maintained |
| 892 | F: arch/arm/mach-alpine/ |
| 893 | |
Nicolas Ferre | c1fc867 | 2011-01-20 14:44:27 -0800 | [diff] [blame] | 894 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 895 | M: Andrew Victor <linux@maxim.org.za> |
Nicolas Ferre | c1fc867 | 2011-01-20 14:44:27 -0800 | [diff] [blame] | 896 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 897 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 898 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 899 | W: http://maxim.org.za/at91_26.html |
Nicolas Ferre | c1fc867 | 2011-01-20 14:44:27 -0800 | [diff] [blame] | 900 | W: http://www.linux4sam.org |
| 901 | S: Supported |
| 902 | F: arch/arm/mach-at91/ |
Alexandre Belloni | f0a0a58 | 2014-11-07 21:58:21 +0100 | [diff] [blame] | 903 | F: include/soc/at91/ |
Mark Brown | 70e389c | 2013-10-16 12:04:07 +0100 | [diff] [blame] | 904 | F: arch/arm/boot/dts/at91*.dts |
| 905 | F: arch/arm/boot/dts/at91*.dtsi |
| 906 | F: arch/arm/boot/dts/sama*.dts |
| 907 | F: arch/arm/boot/dts/sama*.dtsi |
Alexandre Belloni | 5f58c97 | 2015-01-12 19:42:14 +0100 | [diff] [blame] | 908 | F: arch/arm/include/debug/at91.S |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 909 | |
Boris BREZILLON | 6e05dd4 | 2014-05-27 13:39:28 +0200 | [diff] [blame] | 910 | ARM/ATMEL AT91 Clock Support |
| 911 | M: Boris Brezillon <boris.brezillon@free-electrons.com> |
| 912 | S: Maintained |
| 913 | F: drivers/clk/at91 |
| 914 | |
Rob Herring | 986cf2e | 2011-06-22 11:28:53 -0500 | [diff] [blame] | 915 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
Rob Herring | 5d3ad8a | 2013-12-03 10:20:16 -0600 | [diff] [blame] | 916 | M: Rob Herring <robh@kernel.org> |
Rob Herring | 986cf2e | 2011-06-22 11:28:53 -0500 | [diff] [blame] | 917 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 918 | S: Maintained |
| 919 | F: arch/arm/mach-highbank/ |
| 920 | |
Anton Vorontsov | d94f944 | 2010-03-25 17:12:41 +0300 | [diff] [blame] | 921 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
Krzysztof Hałasa | 5529c2c | 2014-09-30 10:32:58 +0200 | [diff] [blame] | 922 | M: Krzysztof Halasa <khalasa@piap.pl> |
Anton Vorontsov | d94f944 | 2010-03-25 17:12:41 +0300 | [diff] [blame] | 923 | S: Maintained |
| 924 | F: arch/arm/mach-cns3xxx/ |
Anton Vorontsov | d94f944 | 2010-03-25 17:12:41 +0300 | [diff] [blame] | 925 | |
Alexander Shiyan | 386ab51 | 2012-11-17 17:57:24 +0400 | [diff] [blame] | 926 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
| 927 | M: Alexander Shiyan <shc_work@mail.ru> |
| 928 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 929 | S: Odd Fixes |
Alexander Shiyan | b8ba387 | 2014-02-15 12:05:33 +0400 | [diff] [blame] | 930 | N: clps711x |
Alexander Shiyan | 386ab51 | 2012-11-17 17:57:24 +0400 | [diff] [blame] | 931 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 932 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
Russell King | ddd559b | 2009-09-12 12:02:26 +0100 | [diff] [blame] | 933 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
Ryan Mallon | 1c5454e | 2011-06-15 14:45:36 +1000 | [diff] [blame] | 934 | M: Ryan Mallon <rmallon@gmail.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 935 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 936 | S: Maintained |
Hartley Sweeten | d19d366 | 2009-07-10 23:02:59 +0100 | [diff] [blame] | 937 | F: arch/arm/mach-ep93xx/ |
| 938 | F: arch/arm/mach-ep93xx/include/mach/ |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 939 | |
| 940 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 941 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 942 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 943 | S: Maintained |
| 944 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 945 | ARM/CLKDEV SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 946 | M: Russell King <linux@arm.linux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 947 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Joe Perches | 3741704 | 2012-03-23 15:01:58 -0700 | [diff] [blame] | 948 | S: Maintained |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 949 | F: arch/arm/include/asm/clkdev.h |
Joe Perches | 4fa2651 | 2011-03-22 16:34:31 -0700 | [diff] [blame] | 950 | F: drivers/clk/clkdev.c |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 951 | |
Mike Rapoport | d48134e7 | 2008-08-20 09:03:26 +0100 | [diff] [blame] | 952 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 953 | M: Mike Rapoport <mike@compulab.co.il> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 954 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 955 | S: Maintained |
| 956 | |
Hubert Feurstein | 9415009 | 2009-10-07 08:36:07 +0100 | [diff] [blame] | 957 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
| 958 | M: Hubert Feurstein <hubert.feurstein@contec.at> |
| 959 | S: Maintained |
| 960 | F: arch/arm/mach-ep93xx/micro9.c |
| 961 | |
Pratik Patel | a06ae86 | 2014-11-03 11:07:35 -0700 | [diff] [blame] | 962 | ARM/CORESIGHT FRAMEWORK AND DRIVERS |
| 963 | M: Mathieu Poirier <mathieu.poirier@linaro.org> |
| 964 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 965 | S: Maintained |
Mathieu Poirier | 01081f5 | 2015-03-30 14:13:41 -0600 | [diff] [blame] | 966 | F: drivers/hwtracing/coresight/* |
Pratik Patel | a06ae86 | 2014-11-03 11:07:35 -0700 | [diff] [blame] | 967 | F: Documentation/trace/coresight.txt |
| 968 | F: Documentation/devicetree/bindings/arm/coresight.txt |
Mathieu Poirier | 7a25ec8 | 2014-11-10 14:06:42 -0700 | [diff] [blame] | 969 | F: Documentation/ABI/testing/sysfs-bus-coresight-devices-* |
Pratik Patel | a06ae86 | 2014-11-03 11:07:35 -0700 | [diff] [blame] | 970 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | ARM/CORGI MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 972 | M: Richard Purdie <rpurdie@rpsys.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | S: Maintained |
| 974 | |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 975 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
Hans Ulli Kroll | 162500b | 2010-05-13 06:43:59 +0100 | [diff] [blame] | 976 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 977 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Hans Ulli Kroll | 162500b | 2010-05-13 06:43:59 +0100 | [diff] [blame] | 978 | T: git git://git.berlios.de/gemini-board |
| 979 | S: Maintained |
Paulius Zaleckas | f49afbb | 2009-05-28 16:41:36 +0300 | [diff] [blame] | 980 | F: arch/arm/mach-gemini/ |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 981 | |
Barry Song | a990cbd | 2011-07-12 21:44:10 +0800 | [diff] [blame] | 982 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
Barry Song | 5abf58b | 2013-09-29 22:45:10 +0800 | [diff] [blame] | 983 | M: Barry Song <baohua@kernel.org> |
Barry Song | a990cbd | 2011-07-12 21:44:10 +0800 | [diff] [blame] | 984 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Barry Song | 85529d1 | 2013-06-17 09:44:26 +0800 | [diff] [blame] | 985 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
Barry Song | a990cbd | 2011-07-12 21:44:10 +0800 | [diff] [blame] | 986 | S: Maintained |
| 987 | F: arch/arm/mach-prima2/ |
Joe Perches | 4a9c44f | 2014-08-08 14:25:03 -0700 | [diff] [blame] | 988 | F: drivers/clk/sirf/ |
Barry Song | 05f30e8 | 2013-09-29 22:45:09 +0800 | [diff] [blame] | 989 | F: drivers/clocksource/timer-prima2.c |
Barry Song | 5833ac9 | 2015-01-12 00:04:43 +0800 | [diff] [blame] | 990 | F: drivers/clocksource/timer-atlas7.c |
Barry Song | f8505ef | 2014-01-03 11:24:13 +0800 | [diff] [blame] | 991 | N: [^a-z]sirf |
Barry Song | a990cbd | 2011-07-12 21:44:10 +0800 | [diff] [blame] | 992 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 993 | ARM/EBSA110 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 994 | M: Russell King <linux@arm.linux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 995 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 996 | W: http://www.arm.linux.org.uk/ |
| 997 | S: Maintained |
| 998 | F: arch/arm/mach-ebsa110/ |
Jeff Kirsher | b955f6c | 2011-03-30 07:46:36 -0700 | [diff] [blame] | 999 | F: drivers/net/ethernet/amd/am79c961a.* |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1000 | |
Uwe Kleine-König | 4721f3c | 2013-12-20 21:21:59 +0100 | [diff] [blame] | 1001 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
| 1002 | M: Uwe Kleine-König <kernel@pengutronix.de> |
| 1003 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1004 | S: Maintained |
| 1005 | N: efm32 |
| 1006 | |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 1007 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1008 | M: Daniel Ribeiro <drwyrm@gmail.com> |
| 1009 | M: Stefan Schmidt <stefan@openezx.org> |
| 1010 | M: Harald Welte <laforge@openezx.org> |
Paul Bolle | d66f1886 | 2011-04-06 22:34:00 +0200 | [diff] [blame] | 1011 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 1012 | W: http://www.openezx.org/ |
| 1013 | S: Maintained |
Stefan Schmidt | cafc226 | 2009-06-14 01:08:36 +0200 | [diff] [blame] | 1014 | T: topgit git://git.openezx.org/openezx.git |
| 1015 | F: arch/arm/mach-pxa/ezx.c |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 1016 | |
Paulius Zaleckas | 6a915af | 2009-03-25 13:10:20 +0200 | [diff] [blame] | 1017 | ARM/FARADAY FA526 PORT |
Hans Ulli Kroll | 162500b | 2010-05-13 06:43:59 +0100 | [diff] [blame] | 1018 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1019 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Hans Ulli Kroll | 162500b | 2010-05-13 06:43:59 +0100 | [diff] [blame] | 1020 | S: Maintained |
Joe Perches | 1fa7e54 | 2010-10-26 14:23:02 -0700 | [diff] [blame] | 1021 | T: git git://git.berlios.de/gemini-board |
Paulius Zaleckas | f49afbb | 2009-05-28 16:41:36 +0300 | [diff] [blame] | 1022 | F: arch/arm/mm/*-fa* |
Paulius Zaleckas | 6a915af | 2009-03-25 13:10:20 +0200 | [diff] [blame] | 1023 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1024 | ARM/FOOTBRIDGE ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1025 | M: Russell King <linux@arm.linux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1026 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1027 | W: http://www.arm.linux.org.uk/ |
| 1028 | S: Maintained |
| 1029 | F: arch/arm/include/asm/hardware/dec21285.h |
| 1030 | F: arch/arm/mach-footbridge/ |
| 1031 | |
Sascha Hauer | 86183a5 | 2008-07-24 23:50:35 +0200 | [diff] [blame] | 1032 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
Shawn Guo | 5df2782 | 2014-10-08 20:31:29 +0800 | [diff] [blame] | 1033 | M: Shawn Guo <shawn.guo@linaro.org> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1034 | M: Sascha Hauer <kernel@pengutronix.de> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1035 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Sascha Hauer | 86183a5 | 2008-07-24 23:50:35 +0200 | [diff] [blame] | 1036 | S: Maintained |
Shawn Guo | f1c1283 | 2014-03-11 22:57:53 +0800 | [diff] [blame] | 1037 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
Shawn Guo | 2a82f95 | 2013-12-10 22:19:21 +0800 | [diff] [blame] | 1038 | F: arch/arm/mach-imx/ |
Shawn Guo | ce515a6 | 2014-07-02 15:37:10 +0800 | [diff] [blame] | 1039 | F: arch/arm/mach-mxs/ |
Shawn Guo | 2a82f95 | 2013-12-10 22:19:21 +0800 | [diff] [blame] | 1040 | F: arch/arm/boot/dts/imx* |
| 1041 | F: arch/arm/configs/imx*_defconfig |
Shawn Guo | 8bcb976 | 2011-10-07 22:24:18 +0800 | [diff] [blame] | 1042 | |
Stefan Agner | 142109d | 2015-03-02 00:09:02 +0100 | [diff] [blame] | 1043 | ARM/FREESCALE VYBRID ARM ARCHITECTURE |
| 1044 | M: Shawn Guo <shawn.guo@linaro.org> |
| 1045 | M: Sascha Hauer <kernel@pengutronix.de> |
| 1046 | R: Stefan Agner <stefan@agner.ch> |
| 1047 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1048 | S: Maintained |
| 1049 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
| 1050 | F: arch/arm/mach-imx/*vf610* |
| 1051 | F: arch/arm/boot/dts/vf* |
| 1052 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1053 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1054 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1055 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1056 | S: Maintained |
| 1057 | |
Jaya Kumar | 90b8fc3 | 2008-03-15 05:11:07 +0100 | [diff] [blame] | 1058 | ARM/GUMSTIX MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1059 | M: Steve Sakoman <sakoman@gmail.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1060 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Jaya Kumar | 90b8fc3 | 2008-03-15 05:11:07 +0100 | [diff] [blame] | 1061 | S: Maintained |
| 1062 | |
Philipp Zabel | ef47d5f | 2009-05-28 07:07:47 +0200 | [diff] [blame] | 1063 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1064 | M: Philipp Zabel <philipp.zabel@gmail.com> |
Philipp Zabel | 12a93f3 | 2012-02-26 12:40:19 +0100 | [diff] [blame] | 1065 | M: Paul Parsons <lost.distance@yahoo.com> |
| 1066 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Philipp Zabel | ef47d5f | 2009-05-28 07:07:47 +0200 | [diff] [blame] | 1067 | S: Maintained |
| 1068 | F: arch/arm/mach-pxa/hx4700.c |
| 1069 | F: arch/arm/mach-pxa/include/mach/hx4700.h |
Philipp Zabel | 12a93f3 | 2012-02-26 12:40:19 +0100 | [diff] [blame] | 1070 | F: sound/soc/pxa/hx4700.c |
Philipp Zabel | ef47d5f | 2009-05-28 07:07:47 +0200 | [diff] [blame] | 1071 | |
Wei Xu | 4dfad06 | 2014-07-07 10:41:53 +0800 | [diff] [blame] | 1072 | ARM/HISILICON SOC SUPPORT |
| 1073 | M: Wei Xu <xuwei5@hisilicon.com> |
| 1074 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1075 | W: http://www.hisilicon.com |
| 1076 | S: Supported |
| 1077 | T: git git://github.com/hisilicon/linux-hisi.git |
| 1078 | F: arch/arm/mach-hisi/ |
| 1079 | |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 1080 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1081 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 1082 | W: www.jlime.com |
| 1083 | S: Maintained |
Kristoffer Ericson | 084bad9 | 2009-07-29 15:04:32 -0700 | [diff] [blame] | 1084 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
| 1085 | F: arch/arm/mach-sa1100/jornada720.c |
| 1086 | F: arch/arm/mach-sa1100/include/mach/jornada720.h |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 1087 | |
Javier Martinez Canillas | 5e767ab | 2012-10-08 10:47:34 +0200 | [diff] [blame] | 1088 | ARM/IGEP MACHINE SUPPORT |
| 1089 | M: Enric Balletbo i Serra <eballetbo@gmail.com> |
| 1090 | M: Javier Martinez Canillas <javier@dowhile0.org> |
| 1091 | L: linux-omap@vger.kernel.org |
| 1092 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1093 | S: Maintained |
Javier Martinez Canillas | 06ff74f | 2013-10-18 17:37:53 +0200 | [diff] [blame] | 1094 | F: arch/arm/boot/dts/omap3-igep* |
Javier Martinez Canillas | 5e767ab | 2012-10-08 10:47:34 +0200 | [diff] [blame] | 1095 | |
Marek Vasut | 403d297 | 2010-05-22 00:29:39 +0200 | [diff] [blame] | 1096 | ARM/INCOME PXA270 SUPPORT |
| 1097 | M: Marek Vasut <marek.vasut@gmail.com> |
| 1098 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1099 | S: Maintained |
Joe Perches | ec15408 | 2010-10-26 14:22:59 -0700 | [diff] [blame] | 1100 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
Marek Vasut | 403d297 | 2010-05-22 00:29:39 +0200 | [diff] [blame] | 1101 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1102 | ARM/INTEL IOP32X ARM ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1103 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1104 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Dan Williams | f00f510 | 2009-08-18 15:21:50 -0700 | [diff] [blame] | 1105 | S: Maintained |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 1106 | |
| 1107 | ARM/INTEL IOP33X ARM ARCHITECTURE |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1108 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Dan Williams | 08223d8 | 2014-08-19 06:07:56 -0700 | [diff] [blame] | 1109 | S: Orphan |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1110 | |
| 1111 | ARM/INTEL IOP13XX ARM ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1112 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1113 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Dan Williams | f00f510 | 2009-08-18 15:21:50 -0700 | [diff] [blame] | 1114 | S: Maintained |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1115 | |
| 1116 | ARM/INTEL IQ81342EX MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1117 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1118 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Dan Williams | f00f510 | 2009-08-18 15:21:50 -0700 | [diff] [blame] | 1119 | S: Maintained |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1120 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1121 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1122 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1123 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1124 | S: Maintained |
| 1125 | |
Krzysztof Hałasa | dfdd8cc | 2009-09-21 18:31:24 +0200 | [diff] [blame] | 1126 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
| 1127 | M: Imre Kaloz <kaloz@openwrt.org> |
Krzysztof Hałasa | 5529c2c | 2014-09-30 10:32:58 +0200 | [diff] [blame] | 1128 | M: Krzysztof Halasa <khalasa@piap.pl> |
Russell King | baea7b9 | 2009-09-24 21:22:33 +0100 | [diff] [blame] | 1129 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Krzysztof Hałasa | dfdd8cc | 2009-09-21 18:31:24 +0200 | [diff] [blame] | 1130 | S: Maintained |
| 1131 | F: arch/arm/mach-ixp4xx/ |
| 1132 | |
Joe Perches | 838553c | 2010-10-26 14:22:59 -0700 | [diff] [blame] | 1133 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
Jonathan Cameron | 7f49a7f | 2009-10-15 16:39:30 +0100 | [diff] [blame] | 1134 | M: Jonathan Cameron <jic23@cam.ac.uk> |
| 1135 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1136 | S: Maintained |
| 1137 | F: arch/arm/mach-pxa/stargate2.c |
| 1138 | F: drivers/pcmcia/pxa2xx_stargate2.c |
| 1139 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1140 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1141 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1142 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Dan Williams | f00f510 | 2009-08-18 15:21:50 -0700 | [diff] [blame] | 1143 | S: Maintained |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1144 | |
| 1145 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1146 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1147 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1148 | S: Maintained |
| 1149 | |
Santosh Shilimkar | 1154f85 | 2013-08-05 14:11:14 -0400 | [diff] [blame] | 1150 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 1151 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Santosh Shilimkar | 1154f85 | 2013-08-05 14:11:14 -0400 | [diff] [blame] | 1152 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1153 | S: Maintained |
| 1154 | F: arch/arm/mach-keystone/ |
Santosh Shilimkar | 317929c | 2013-11-23 17:31:27 -0500 | [diff] [blame] | 1155 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
Santosh Shilimkar | 1154f85 | 2013-08-05 14:11:14 -0400 | [diff] [blame] | 1156 | |
Santosh Shilimkar | bc6aa56 | 2014-06-22 16:06:22 -0400 | [diff] [blame] | 1157 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 1158 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Santosh Shilimkar | bc6aa56 | 2014-06-22 16:06:22 -0400 | [diff] [blame] | 1159 | L: linux-kernel@vger.kernel.org |
| 1160 | S: Maintained |
| 1161 | F: drivers/clk/keystone/ |
| 1162 | |
| 1163 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 1164 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Santosh Shilimkar | bc6aa56 | 2014-06-22 16:06:22 -0400 | [diff] [blame] | 1165 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1166 | L: linux-kernel@vger.kernel.org |
| 1167 | S: Maintained |
| 1168 | F: drivers/clocksource/timer-keystone.c |
| 1169 | |
| 1170 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 1171 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Santosh Shilimkar | bc6aa56 | 2014-06-22 16:06:22 -0400 | [diff] [blame] | 1172 | L: linux-kernel@vger.kernel.org |
| 1173 | S: Maintained |
| 1174 | F: drivers/power/reset/keystone-reset.c |
| 1175 | |
| 1176 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 1177 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Santosh Shilimkar | bc6aa56 | 2014-06-22 16:06:22 -0400 | [diff] [blame] | 1178 | L: linux-kernel@vger.kernel.org |
| 1179 | S: Maintained |
| 1180 | F: drivers/memory/*emif* |
| 1181 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1182 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1183 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1184 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1185 | S: Maintained |
| 1186 | |
Philipp Zabel | 3b886171 | 2008-07-09 21:27:15 +0100 | [diff] [blame] | 1187 | ARM/MAGICIAN MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1188 | M: Philipp Zabel <philipp.zabel@gmail.com> |
Philipp Zabel | 3b886171 | 2008-07-09 21:27:15 +0100 | [diff] [blame] | 1189 | S: Maintained |
| 1190 | |
Thomas Petazzoni | 75f4127 | 2012-06-01 18:50:52 +0200 | [diff] [blame] | 1191 | ARM/Marvell Armada 370 and Armada XP SOC support |
| 1192 | M: Jason Cooper <jason@lakedaemon.net> |
| 1193 | M: Andrew Lunn <andrew@lunn.ch> |
| 1194 | M: Gregory Clement <gregory.clement@free-electrons.com> |
Jason Cooper | dcb7150 | 2013-10-14 18:32:21 +0000 | [diff] [blame] | 1195 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
Thomas Petazzoni | 75f4127 | 2012-06-01 18:50:52 +0200 | [diff] [blame] | 1196 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1197 | S: Maintained |
| 1198 | F: arch/arm/mach-mvebu/ |
Joe Perches | 59ec967 | 2015-03-25 15:55:17 -0700 | [diff] [blame] | 1199 | F: drivers/rtc/rtc-armada38x.c |
Thomas Petazzoni | 75f4127 | 2012-06-01 18:50:52 +0200 | [diff] [blame] | 1200 | |
Sebastian Hesselbarth | 40f4978 | 2013-10-08 12:52:30 +0200 | [diff] [blame] | 1201 | ARM/Marvell Berlin SoC support |
| 1202 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
| 1203 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1204 | S: Maintained |
| 1205 | F: arch/arm/mach-berlin/ |
| 1206 | |
Andrew Lunn | 4cfab57 | 2014-07-16 22:32:51 +0200 | [diff] [blame] | 1207 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
Nicolas Pitre | 4f1312b | 2012-04-30 13:44:48 -0400 | [diff] [blame] | 1208 | M: Jason Cooper <jason@lakedaemon.net> |
| 1209 | M: Andrew Lunn <andrew@lunn.ch> |
Jason Cooper | dcb7150 | 2013-10-14 18:32:21 +0000 | [diff] [blame] | 1210 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
Gregory CLEMENT | bfda403 | 2015-03-13 14:41:45 +0100 | [diff] [blame] | 1211 | M: Gregory Clement <gregory.clement@free-electrons.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1212 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Nicolas Pitre | 4f1312b | 2012-04-30 13:44:48 -0400 | [diff] [blame] | 1213 | S: Maintained |
| 1214 | F: arch/arm/mach-dove/ |
Nicolas Pitre | 54a246f | 2009-08-11 23:28:51 -0400 | [diff] [blame] | 1215 | F: arch/arm/mach-mv78xx0/ |
| 1216 | F: arch/arm/mach-orion5x/ |
| 1217 | F: arch/arm/plat-orion/ |
| 1218 | |
Alexander Clouter | d69ac13 | 2011-04-14 15:22:02 -0700 | [diff] [blame] | 1219 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
| 1220 | M: Alexander Clouter <alex@digriz.org.uk> |
| 1221 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1222 | W: http://www.digriz.org.uk/ts78xx/kernel |
| 1223 | S: Maintained |
| 1224 | F: arch/arm/mach-orion5x/ts78xx-* |
| 1225 | |
Matthias Brugger | e54951c | 2014-09-26 11:45:55 +0200 | [diff] [blame] | 1226 | ARM/Mediatek SoC support |
| 1227 | M: Matthias Brugger <matthias.bgg@gmail.com> |
| 1228 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Matthias Brugger | 17b199d | 2015-04-16 12:49:21 -0700 | [diff] [blame] | 1229 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
Matthias Brugger | e54951c | 2014-09-26 11:45:55 +0200 | [diff] [blame] | 1230 | S: Maintained |
| 1231 | F: arch/arm/boot/dts/mt6* |
| 1232 | F: arch/arm/boot/dts/mt8* |
| 1233 | F: arch/arm/mach-mediatek/ |
| 1234 | N: mtk |
| 1235 | K: mediatek |
| 1236 | |
Arnd Bergmann | adcb079 | 2012-09-07 12:21:56 +0000 | [diff] [blame] | 1237 | ARM/MICREL KS8695 ARCHITECTURE |
| 1238 | M: Greg Ungerer <gerg@uclinux.org> |
| 1239 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 1240 | F: arch/arm/mach-ks8695/ |
Arnd Bergmann | adcb079 | 2012-09-07 12:21:56 +0000 | [diff] [blame] | 1241 | S: Odd Fixes |
| 1242 | |
Robert Jarzmik | d78ff0a | 2009-06-16 07:51:05 +0200 | [diff] [blame] | 1243 | ARM/MIOA701 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1244 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1245 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Robert Jarzmik | d78ff0a | 2009-06-16 07:51:05 +0200 | [diff] [blame] | 1246 | F: arch/arm/mach-pxa/mioa701.c |
| 1247 | S: Maintained |
| 1248 | |
Kristoffer Ericson | 9624dfe | 2008-10-09 16:50:46 +0100 | [diff] [blame] | 1249 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1250 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
Kristoffer Ericson | 9624dfe | 2008-10-09 16:50:46 +0100 | [diff] [blame] | 1251 | S: Maintained |
| 1252 | |
Alessandro Rubini | e0ee985 | 2009-12-02 14:01:03 +0100 | [diff] [blame] | 1253 | ARM/NOMADIK ARCHITECTURE |
Joe Perches | 28b8e8d | 2010-03-23 13:35:20 -0700 | [diff] [blame] | 1254 | M: Alessandro Rubini <rubini@unipv.it> |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1255 | M: Linus Walleij <linus.walleij@linaro.org> |
Joe Perches | 28b8e8d | 2010-03-23 13:35:20 -0700 | [diff] [blame] | 1256 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1257 | S: Maintained |
| 1258 | F: arch/arm/mach-nomadik/ |
Joe Perches | ecc265f | 2014-08-08 14:26:20 -0700 | [diff] [blame] | 1259 | F: drivers/pinctrl/nomadik/ |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1260 | F: drivers/i2c/busses/i2c-nomadik.c |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1261 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
Alessandro Rubini | e0ee985 | 2009-12-02 14:01:03 +0100 | [diff] [blame] | 1262 | |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 1263 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1264 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 1265 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
| 1266 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner |
| 1267 | S: Supported |
| 1268 | |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 1269 | ARM/TOSA MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1270 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
| 1271 | M: Dirk Opfer <dirk@opfer-online.de> |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 1272 | S: Maintained |
| 1273 | |
Marek Vasut | 5d783a2 | 2009-07-16 13:26:48 +0200 | [diff] [blame] | 1274 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
Joe Perches | 933d35f | 2009-10-01 15:43:59 -0700 | [diff] [blame] | 1275 | M: Marek Vasut <marek.vasut@gmail.com> |
Marek Vasut | 7528078 | 2009-08-22 00:49:53 +0200 | [diff] [blame] | 1276 | L: linux-arm-kernel@lists.infradead.org |
Marek Vašut | b5e4ad5 | 2008-07-07 17:25:46 +0100 | [diff] [blame] | 1277 | W: http://hackndev.com |
| 1278 | S: Maintained |
Joe Perches | 933d35f | 2009-10-01 15:43:59 -0700 | [diff] [blame] | 1279 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
| 1280 | F: arch/arm/mach-pxa/palmtx.c |
| 1281 | F: arch/arm/mach-pxa/include/mach/palmt5.h |
| 1282 | F: arch/arm/mach-pxa/palmt5.c |
| 1283 | F: arch/arm/mach-pxa/include/mach/palmld.h |
| 1284 | F: arch/arm/mach-pxa/palmld.c |
| 1285 | F: arch/arm/mach-pxa/include/mach/palmte2.h |
| 1286 | F: arch/arm/mach-pxa/palmte2.c |
| 1287 | F: arch/arm/mach-pxa/include/mach/palmtc.h |
| 1288 | F: arch/arm/mach-pxa/palmtc.c |
Marek Vašut | b5e4ad5 | 2008-07-07 17:25:46 +0100 | [diff] [blame] | 1289 | |
Joe Perches | b57fe92 | 2009-12-14 18:00:52 -0800 | [diff] [blame] | 1290 | ARM/PALM TREO SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1291 | M: Tomas Cech <sleep_walker@suse.cz> |
Marek Vasut | 7528078 | 2009-08-22 00:49:53 +0200 | [diff] [blame] | 1292 | L: linux-arm-kernel@lists.infradead.org |
Tomas 'Sleep_Walker' Cech | 90af581 | 2009-05-22 16:05:58 +0200 | [diff] [blame] | 1293 | W: http://hackndev.com |
| 1294 | S: Maintained |
Joe Perches | b57fe92 | 2009-12-14 18:00:52 -0800 | [diff] [blame] | 1295 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
| 1296 | F: arch/arm/mach-pxa/palmtreo.c |
Tomas 'Sleep_Walker' Cech | 90af581 | 2009-05-22 16:05:58 +0200 | [diff] [blame] | 1297 | |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 1298 | ARM/PALMZ72 SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1299 | M: Sergey Lapin <slapin@ossfans.org> |
Marek Vasut | 7528078 | 2009-08-22 00:49:53 +0200 | [diff] [blame] | 1300 | L: linux-arm-kernel@lists.infradead.org |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1301 | W: http://hackndev.com |
| 1302 | S: Maintained |
Joe Perches | 933d35f | 2009-10-01 15:43:59 -0700 | [diff] [blame] | 1303 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
| 1304 | F: arch/arm/mach-pxa/palmz72.c |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 1305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | ARM/PLEB SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1307 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
| 1309 | S: Maintained |
| 1310 | |
| 1311 | ARM/PT DIGITAL BOARD PORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1312 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1313 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | W: http://www.arm.linux.org.uk/ |
| 1315 | S: Maintained |
| 1316 | |
Kumar Gala | 8fc1b0f | 2014-01-21 17:14:10 -0600 | [diff] [blame] | 1317 | ARM/QUALCOMM SUPPORT |
| 1318 | M: Kumar Gala <galak@codeaurora.org> |
Andy Gross | f5d3af9 | 2015-01-21 22:39:24 -0600 | [diff] [blame] | 1319 | M: Andy Gross <agross@codeaurora.org> |
Kumar Gala | 8fc1b0f | 2014-01-21 17:14:10 -0600 | [diff] [blame] | 1320 | M: David Brown <davidb@codeaurora.org> |
| 1321 | L: linux-arm-msm@vger.kernel.org |
Andy Gross | f5d3af9 | 2015-01-21 22:39:24 -0600 | [diff] [blame] | 1322 | L: linux-soc@vger.kernel.org |
Kumar Gala | 8fc1b0f | 2014-01-21 17:14:10 -0600 | [diff] [blame] | 1323 | S: Maintained |
| 1324 | F: arch/arm/mach-qcom/ |
Andy Gross | f5d3af9 | 2015-01-21 22:39:24 -0600 | [diff] [blame] | 1325 | F: drivers/soc/qcom/ |
Stephen Boyd | c0c89fa | 2015-03-13 11:09:34 -0700 | [diff] [blame] | 1326 | F: drivers/tty/serial/msm_serial.h |
| 1327 | F: drivers/tty/serial/msm_serial.c |
| 1328 | F: drivers/*/pm8???-* |
| 1329 | F: drivers/mfd/ssbi.c |
Kumar Gala | 916f743 | 2015-02-26 15:49:09 -0600 | [diff] [blame] | 1330 | F: drivers/firmware/qcom_scm.c |
Kumar Gala | 8fc1b0f | 2014-01-21 17:14:10 -0600 | [diff] [blame] | 1331 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git |
| 1332 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1333 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1334 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1335 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1336 | S: Maintained |
| 1337 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1338 | ARM/RISCPC ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1339 | M: Russell King <linux@arm.linux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1340 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1341 | W: http://www.arm.linux.org.uk/ |
| 1342 | S: Maintained |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1343 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
| 1344 | F: arch/arm/include/asm/hardware/ioc.h |
| 1345 | F: arch/arm/include/asm/hardware/iomd.h |
| 1346 | F: arch/arm/include/asm/hardware/memc.h |
| 1347 | F: arch/arm/mach-rpc/ |
Jeff Kirsher | 1a6422f | 2011-11-04 12:58:41 +0000 | [diff] [blame] | 1348 | F: drivers/net/ethernet/8390/etherh.c |
Jeff Kirsher | 9e13fbf | 2011-07-15 03:18:21 -0700 | [diff] [blame] | 1349 | F: drivers/net/ethernet/i825xx/ether1* |
| 1350 | F: drivers/net/ethernet/seeq/ether3* |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1351 | F: drivers/scsi/arm/ |
| 1352 | |
Heiko Stuebner | 08ddbb0 | 2013-10-14 23:19:58 +0200 | [diff] [blame] | 1353 | ARM/Rockchip SoC support |
| 1354 | M: Heiko Stuebner <heiko@sntech.de> |
| 1355 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Heiko Stuebner | 00250b5 | 2014-08-20 12:31:03 +0200 | [diff] [blame] | 1356 | L: linux-rockchip@lists.infradead.org |
Heiko Stuebner | 08ddbb0 | 2013-10-14 23:19:58 +0200 | [diff] [blame] | 1357 | S: Maintained |
Heiko Stübner | 541555e | 2014-08-27 00:05:50 +0200 | [diff] [blame] | 1358 | F: arch/arm/boot/dts/rk3* |
Heiko Stuebner | 08ddbb0 | 2013-10-14 23:19:58 +0200 | [diff] [blame] | 1359 | F: arch/arm/mach-rockchip/ |
Heiko Stübner | 541555e | 2014-08-27 00:05:50 +0200 | [diff] [blame] | 1360 | F: drivers/clk/rockchip/ |
| 1361 | F: drivers/i2c/busses/i2c-rk3x.c |
Heiko Stuebner | 08ddbb0 | 2013-10-14 23:19:58 +0200 | [diff] [blame] | 1362 | F: drivers/*/*rockchip* |
Heiko Stübner | 541555e | 2014-08-27 00:05:50 +0200 | [diff] [blame] | 1363 | F: drivers/*/*/*rockchip* |
| 1364 | F: sound/soc/rockchip/ |
Heiko Stuebner | b4331b4 | 2015-03-14 19:32:06 +0100 | [diff] [blame] | 1365 | N: rockchip |
Heiko Stuebner | 08ddbb0 | 2013-10-14 23:19:58 +0200 | [diff] [blame] | 1366 | |
Kukjin Kim | 5bfb937 | 2014-11-14 16:54:57 +0900 | [diff] [blame] | 1367 | ARM/SAMSUNG EXYNOS ARM ARCHITECTURES |
| 1368 | M: Kukjin Kim <kgene@kernel.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1369 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Mark Brown | 7a549d7 | 2011-12-02 13:52:12 +0900 | [diff] [blame] | 1370 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
Ben Dooks | b21477f | 2009-06-13 10:46:34 +0100 | [diff] [blame] | 1371 | S: Maintained |
Mark Brown | 6f0589c | 2013-10-08 07:18:21 +0900 | [diff] [blame] | 1372 | F: arch/arm/boot/dts/s3c* |
| 1373 | F: arch/arm/boot/dts/exynos* |
Kukjin Kim | 482ce51 | 2010-06-29 15:05:26 -0700 | [diff] [blame] | 1374 | F: arch/arm/plat-samsung/ |
Heiko Stuebner | 769bbb6 | 2011-12-02 13:51:56 +0900 | [diff] [blame] | 1375 | F: arch/arm/mach-s3c24*/ |
| 1376 | F: arch/arm/mach-s3c64xx/ |
Kukjin Kim | 5bfb937 | 2014-11-14 16:54:57 +0900 | [diff] [blame] | 1377 | F: arch/arm/mach-s5p*/ |
| 1378 | F: arch/arm/mach-exynos*/ |
Ben Dooks | eb2ffca | 2011-02-01 15:52:36 -0800 | [diff] [blame] | 1379 | F: drivers/*/*s3c2410* |
| 1380 | F: drivers/*/*/*s3c2410* |
Mark Brown | 40c7666 | 2011-12-02 13:54:25 +0900 | [diff] [blame] | 1381 | F: drivers/spi/spi-s3c* |
| 1382 | F: sound/soc/samsung/* |
Doug Anderson | 33d43cd | 2013-06-18 07:02:23 +0900 | [diff] [blame] | 1383 | N: exynos |
Kukjin Kim | f556cb07 | 2010-09-30 15:15:35 -0700 | [diff] [blame] | 1384 | |
Kyungmin Park | 10ffa96 | 2011-03-04 17:36:26 -0800 | [diff] [blame] | 1385 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
| 1386 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 1387 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1388 | S: Maintained |
Christian Kujau | 004bbd3 | 2014-10-13 15:51:17 -0700 | [diff] [blame] | 1389 | F: arch/arm/mach-s5pv210/ |
Kyungmin Park | 10ffa96 | 2011-03-04 17:36:26 -0800 | [diff] [blame] | 1390 | |
Kamil Debski | 3ce4ccb | 2012-11-28 06:14:22 -0300 | [diff] [blame] | 1391 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
| 1392 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 1393 | M: Kamil Debski <k.debski@samsung.com> |
| 1394 | L: linux-arm-kernel@lists.infradead.org |
| 1395 | L: linux-media@vger.kernel.org |
| 1396 | S: Maintained |
| 1397 | F: drivers/media/platform/s5p-g2d/ |
| 1398 | |
Marek Szyprowski | e6a476f | 2011-08-10 06:32:29 -0300 | [diff] [blame] | 1399 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
| 1400 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 1401 | M: Kamil Debski <k.debski@samsung.com> |
Joe Perches | 6305902 | 2012-06-07 14:21:10 -0700 | [diff] [blame] | 1402 | M: Jeongtae Park <jtp.park@samsung.com> |
Marek Szyprowski | e6a476f | 2011-08-10 06:32:29 -0300 | [diff] [blame] | 1403 | L: linux-arm-kernel@lists.infradead.org |
| 1404 | L: linux-media@vger.kernel.org |
| 1405 | S: Maintained |
Cesar Eduardo Barros | 934455d | 2013-01-04 15:35:17 -0800 | [diff] [blame] | 1406 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 1407 | F: drivers/media/platform/s5p-mfc/ |
Marek Szyprowski | e6a476f | 2011-08-10 06:32:29 -0300 | [diff] [blame] | 1408 | |
| 1409 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT |
| 1410 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 1411 | M: Tomasz Stanislawski <t.stanislaws@samsung.com> |
| 1412 | L: linux-arm-kernel@lists.infradead.org |
| 1413 | L: linux-media@vger.kernel.org |
| 1414 | S: Maintained |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 1415 | F: drivers/media/platform/s5p-tv/ |
Marek Szyprowski | e6a476f | 2011-08-10 06:32:29 -0300 | [diff] [blame] | 1416 | |
Paul Mundt | d48d38e | 2010-02-08 12:50:24 +0900 | [diff] [blame] | 1417 | ARM/SHMOBILE ARM ARCHITECTURE |
Simon Horman | 5e21259 | 2012-11-27 11:41:49 +0900 | [diff] [blame] | 1418 | M: Simon Horman <horms@verge.net.au> |
Paul Mundt | d48d38e | 2010-02-08 12:50:24 +0900 | [diff] [blame] | 1419 | M: Magnus Damm <magnus.damm@gmail.com> |
| 1420 | L: linux-sh@vger.kernel.org |
Paul Mundt | d48d38e | 2010-02-08 12:50:24 +0900 | [diff] [blame] | 1421 | W: http://oss.renesas.com |
Paul Mundt | bbff48f | 2010-04-07 17:17:22 +0900 | [diff] [blame] | 1422 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
Simon Horman | 5e21259 | 2012-11-27 11:41:49 +0900 | [diff] [blame] | 1423 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
Paul Mundt | d48d38e | 2010-02-08 12:50:24 +0900 | [diff] [blame] | 1424 | S: Supported |
Simon Horman | 0b514fd | 2014-05-15 08:48:21 +0900 | [diff] [blame] | 1425 | F: arch/arm/boot/dts/emev2* |
| 1426 | F: arch/arm/boot/dts/r7s* |
| 1427 | F: arch/arm/boot/dts/r8a* |
| 1428 | F: arch/arm/boot/dts/sh* |
Simon Horman | 0b514fd | 2014-05-15 08:48:21 +0900 | [diff] [blame] | 1429 | F: arch/arm/configs/armadillo800eva_defconfig |
| 1430 | F: arch/arm/configs/bockw_defconfig |
Simon Horman | 0b514fd | 2014-05-15 08:48:21 +0900 | [diff] [blame] | 1431 | F: arch/arm/configs/kzm9g_defconfig |
Simon Horman | 0b514fd | 2014-05-15 08:48:21 +0900 | [diff] [blame] | 1432 | F: arch/arm/configs/marzen_defconfig |
| 1433 | F: arch/arm/configs/shmobile_defconfig |
Geert Uytterhoeven | 7a2071c | 2014-11-14 16:49:47 +0100 | [diff] [blame] | 1434 | F: arch/arm/include/debug/renesas-scif.S |
Paul Mundt | d48d38e | 2010-02-08 12:50:24 +0900 | [diff] [blame] | 1435 | F: arch/arm/mach-shmobile/ |
| 1436 | F: drivers/sh/ |
| 1437 | |
Dinh Nguyen | 6631422 | 2012-07-18 16:07:18 -0600 | [diff] [blame] | 1438 | ARM/SOCFPGA ARCHITECTURE |
Dinh Nguyen | ba2b7d0 | 2014-08-06 16:31:27 -0500 | [diff] [blame] | 1439 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
Dinh Nguyen | 6631422 | 2012-07-18 16:07:18 -0600 | [diff] [blame] | 1440 | S: Maintained |
| 1441 | F: arch/arm/mach-socfpga/ |
Dinh Nguyen | ba2b7d0 | 2014-08-06 16:31:27 -0500 | [diff] [blame] | 1442 | W: http://www.rocketboards.org |
| 1443 | T: git://git.rocketboards.org/linux-socfpga.git |
| 1444 | T: git://git.rocketboards.org/linux-socfpga-next.git |
Dinh Nguyen | 6631422 | 2012-07-18 16:07:18 -0600 | [diff] [blame] | 1445 | |
| 1446 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT |
Dinh Nguyen | ba2b7d0 | 2014-08-06 16:31:27 -0500 | [diff] [blame] | 1447 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
Dinh Nguyen | 6631422 | 2012-07-18 16:07:18 -0600 | [diff] [blame] | 1448 | S: Maintained |
| 1449 | F: drivers/clk/socfpga/ |
| 1450 | |
Thor Thayer | 71bcada | 2014-09-03 10:27:54 -0500 | [diff] [blame] | 1451 | ARM/SOCFPGA EDAC SUPPORT |
| 1452 | M: Thor Thayer <tthayer@opensource.altera.com> |
| 1453 | S: Maintained |
| 1454 | F: drivers/edac/altera_edac. |
| 1455 | |
Srinivas Kandagatla | 65ebcc1 | 2013-06-25 12:15:10 +0100 | [diff] [blame] | 1456 | ARM/STI ARCHITECTURE |
Srinivas Kandagatla | a92177e | 2014-03-03 11:28:59 +0000 | [diff] [blame] | 1457 | M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com> |
| 1458 | M: Maxime Coquelin <maxime.coquelin@st.com> |
| 1459 | M: Patrice Chotard <patrice.chotard@st.com> |
Srinivas Kandagatla | 65ebcc1 | 2013-06-25 12:15:10 +0100 | [diff] [blame] | 1460 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1461 | L: kernel@stlinux.com |
| 1462 | W: http://www.stlinux.com |
| 1463 | S: Maintained |
| 1464 | F: arch/arm/mach-sti/ |
Srinivas Kandagatla | a92177e | 2014-03-03 11:28:59 +0000 | [diff] [blame] | 1465 | F: arch/arm/boot/dts/sti* |
| 1466 | F: drivers/clocksource/arm_global_timer.c |
Srinivas Kandagatla | a92177e | 2014-03-03 11:28:59 +0000 | [diff] [blame] | 1467 | F: drivers/i2c/busses/i2c-st.c |
Greg Kroah-Hartman | 346e2e4 | 2014-09-25 13:11:52 +0200 | [diff] [blame] | 1468 | F: drivers/media/rc/st_rc.c |
Peter Griffin | f53b2bf | 2014-06-04 17:30:24 +0100 | [diff] [blame] | 1469 | F: drivers/mmc/host/sdhci-st.c |
Peter Griffin | e95cf39 | 2015-04-01 07:42:41 +0100 | [diff] [blame] | 1470 | F: drivers/phy/phy-miphy28lp.c |
| 1471 | F: drivers/phy/phy-miphy365x.c |
Peter Griffin | 6da969a | 2014-09-11 18:02:46 +0100 | [diff] [blame] | 1472 | F: drivers/phy/phy-stih407-usb.c |
Peter Griffin | 26389c7 | 2014-09-08 11:33:02 +0100 | [diff] [blame] | 1473 | F: drivers/phy/phy-stih41x-usb.c |
Greg Kroah-Hartman | 346e2e4 | 2014-09-25 13:11:52 +0200 | [diff] [blame] | 1474 | F: drivers/pinctrl/pinctrl-st.c |
| 1475 | F: drivers/reset/sti/ |
| 1476 | F: drivers/tty/serial/st-asc.c |
Peter Griffin | eb11ada | 2014-09-05 16:36:32 +0100 | [diff] [blame] | 1477 | F: drivers/usb/dwc3/dwc3-st.c |
Peter Griffin | 62f6f08 | 2014-09-08 13:04:48 +0100 | [diff] [blame] | 1478 | F: drivers/usb/host/ehci-st.c |
| 1479 | F: drivers/usb/host/ohci-st.c |
Peter Griffin | daac6f8 | 2014-11-19 08:44:54 +0000 | [diff] [blame] | 1480 | F: drivers/ata/ahci_st.c |
Srinivas Kandagatla | 65ebcc1 | 2013-06-25 12:15:10 +0100 | [diff] [blame] | 1481 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1482 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1483 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1484 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1485 | S: Maintained |
| 1486 | |
Mark F. Brown | 1bbd708 | 2010-09-12 23:51:34 -0400 | [diff] [blame] | 1487 | ARM/TETON BGA MACHINE SUPPORT |
Joe Perches | 706e69d | 2011-03-22 16:34:26 -0700 | [diff] [blame] | 1488 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
Mark F. Brown | 1bbd708 | 2010-09-12 23:51:34 -0400 | [diff] [blame] | 1489 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1490 | S: Maintained |
| 1491 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1492 | ARM/THECUS N2100 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1493 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1494 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1495 | S: Maintained |
| 1496 | |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 1497 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1498 | M: Wan ZongShun <mcuos.com@gmail.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1499 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1500 | W: http://www.mcuos.com |
| 1501 | S: Maintained |
Wan ZongShun | 4e89e8f | 2010-05-25 23:43:04 -0700 | [diff] [blame] | 1502 | F: arch/arm/mach-w90x900/ |
Wan ZongShun | 4e89e8f | 2010-05-25 23:43:04 -0700 | [diff] [blame] | 1503 | F: drivers/input/keyboard/w90p910_keypad.c |
| 1504 | F: drivers/input/touchscreen/w90p910_ts.c |
| 1505 | F: drivers/watchdog/nuc900_wdt.c |
Jeff Kirsher | 679ec0e | 2011-07-17 00:20:45 -0700 | [diff] [blame] | 1506 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
Joe Perches | 5351684 | 2010-08-09 17:20:37 -0700 | [diff] [blame] | 1507 | F: drivers/mtd/nand/nuc900_nand.c |
Wan ZongShun | 4e89e8f | 2010-05-25 23:43:04 -0700 | [diff] [blame] | 1508 | F: drivers/rtc/rtc-nuc900.c |
Joe Perches | 9df92e6 | 2012-01-10 15:09:06 -0800 | [diff] [blame] | 1509 | F: drivers/spi/spi-nuc900.c |
Wan ZongShun | 4e89e8f | 2010-05-25 23:43:04 -0700 | [diff] [blame] | 1510 | F: drivers/usb/host/ehci-w90x900.c |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 1511 | F: drivers/video/fbdev/nuc900fb.c |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 1512 | |
Linus Walleij | 54274d7 | 2010-04-04 10:58:03 +0100 | [diff] [blame] | 1513 | ARM/U300 MACHINE SUPPORT |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1514 | M: Linus Walleij <linus.walleij@linaro.org> |
Linus Walleij | 54274d7 | 2010-04-04 10:58:03 +0100 | [diff] [blame] | 1515 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1516 | S: Supported |
| 1517 | F: arch/arm/mach-u300/ |
Linus Walleij | 9affbd2 | 2014-01-21 15:04:14 +0100 | [diff] [blame] | 1518 | F: drivers/clocksource/timer-u300.c |
Linus Walleij | 54274d7 | 2010-04-04 10:58:03 +0100 | [diff] [blame] | 1519 | F: drivers/i2c/busses/i2c-stu300.c |
| 1520 | F: drivers/rtc/rtc-coh901331.c |
| 1521 | F: drivers/watchdog/coh901327_wdt.c |
| 1522 | F: drivers/dma/coh901318* |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1523 | F: drivers/mfd/ab3100* |
| 1524 | F: drivers/rtc/rtc-ab3100.c |
| 1525 | F: drivers/rtc/rtc-coh901331.c |
| 1526 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
Linus Walleij | 54274d7 | 2010-04-04 10:58:03 +0100 | [diff] [blame] | 1527 | |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1528 | ARM/Ux500 ARM ARCHITECTURE |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1529 | M: Linus Walleij <linus.walleij@linaro.org> |
Srinidhi Kasagar | 870725d | 2009-12-01 13:41:24 +0100 | [diff] [blame] | 1530 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1531 | S: Maintained |
| 1532 | F: arch/arm/mach-ux500/ |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1533 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1534 | F: drivers/dma/ste_dma40* |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1535 | F: drivers/hwspinlock/u8500_hsem.c |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1536 | F: drivers/mfd/abx500* |
| 1537 | F: drivers/mfd/ab8500* |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1538 | F: drivers/mfd/dbx500* |
| 1539 | F: drivers/mfd/db8500* |
Joe Perches | ecc265f | 2014-08-08 14:26:20 -0700 | [diff] [blame] | 1540 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
| 1541 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1542 | F: drivers/rtc/rtc-ab8500.c |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1543 | F: drivers/rtc/rtc-pl031.c |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1544 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
Srinidhi Kasagar | 870725d | 2009-12-01 13:41:24 +0100 | [diff] [blame] | 1545 | |
Ulf Hansson | e93fde2 | 2013-11-12 11:41:12 +0100 | [diff] [blame] | 1546 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
| 1547 | M: Ulf Hansson <ulf.hansson@linaro.org> |
| 1548 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1549 | T: git git://git.linaro.org/people/ulfh/clk.git |
| 1550 | S: Maintained |
| 1551 | F: drivers/clk/ux500/ |
| 1552 | F: include/linux/platform_data/clk-ux500.h |
| 1553 | |
Pawel Moll | 740d93b | 2014-11-26 12:13:05 +0000 | [diff] [blame] | 1554 | ARM/VERSATILE EXPRESS PLATFORM |
| 1555 | M: Liviu Dudau <liviu.dudau@arm.com> |
| 1556 | M: Sudeep Holla <sudeep.holla@arm.com> |
| 1557 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
| 1558 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1559 | S: Maintained |
| 1560 | F: arch/arm/boot/dts/vexpress* |
| 1561 | F: arch/arm/mach-vexpress/ |
| 1562 | F: */*/vexpress* |
Pawel Moll | 7e8f403 | 2014-12-01 14:16:33 +0000 | [diff] [blame] | 1563 | F: */*/*/vexpress* |
Pawel Moll | 740d93b | 2014-11-26 12:13:05 +0000 | [diff] [blame] | 1564 | F: drivers/clk/versatile/clk-vexpress-osc.c |
| 1565 | F: drivers/clocksource/versatile.c |
| 1566 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1567 | ARM/VFP SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1568 | M: Russell King <linux@arm.linux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1569 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1570 | W: http://www.arm.linux.org.uk/ |
| 1571 | S: Maintained |
| 1572 | F: arch/arm/vfp/ |
| 1573 | |
Marek Vasut | e66b6d8 | 2010-03-26 06:51:32 +0100 | [diff] [blame] | 1574 | ARM/VOIPAC PXA270 SUPPORT |
| 1575 | M: Marek Vasut <marek.vasut@gmail.com> |
| 1576 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1577 | S: Maintained |
| 1578 | F: arch/arm/mach-pxa/vpac270.c |
Joe Perches | e0cca11 | 2010-08-09 17:20:38 -0700 | [diff] [blame] | 1579 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
Marek Vasut | e66b6d8 | 2010-03-26 06:51:32 +0100 | [diff] [blame] | 1580 | |
Tony Prisk | 04529fe | 2012-07-24 04:19:37 +1200 | [diff] [blame] | 1581 | ARM/VT8500 ARM ARCHITECTURE |
| 1582 | M: Tony Prisk <linux@prisktech.co.nz> |
| 1583 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1584 | S: Maintained |
| 1585 | F: arch/arm/mach-vt8500/ |
Tony Prisk | 41fd91b | 2013-02-08 18:18:03 +1300 | [diff] [blame] | 1586 | F: drivers/clocksource/vt8500_timer.c |
Tony Prisk | 560746e | 2013-06-15 09:52:16 +1200 | [diff] [blame] | 1587 | F: drivers/i2c/busses/i2c-wmt.c |
Tony Prisk | 41fd91b | 2013-02-08 18:18:03 +1300 | [diff] [blame] | 1588 | F: drivers/mmc/host/wmt-sdmmc.c |
| 1589 | F: drivers/pwm/pwm-vt8500.c |
| 1590 | F: drivers/rtc/rtc-vt8500.c |
| 1591 | F: drivers/tty/serial/vt8500_serial.c |
Joe Perches | 4f31102 | 2013-09-11 14:23:46 -0700 | [diff] [blame] | 1592 | F: drivers/usb/host/ehci-platform.c |
Tony Prisk | 41fd91b | 2013-02-08 18:18:03 +1300 | [diff] [blame] | 1593 | F: drivers/usb/host/uhci-platform.c |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 1594 | F: drivers/video/fbdev/vt8500lcdfb.* |
| 1595 | F: drivers/video/fbdev/wm8505fb* |
| 1596 | F: drivers/video/fbdev/wmt_ge_rops.* |
Tony Prisk | 04529fe | 2012-07-24 04:19:37 +1200 | [diff] [blame] | 1597 | |
Marek Vasut | e66b6d8 | 2010-03-26 06:51:32 +0100 | [diff] [blame] | 1598 | ARM/ZIPIT Z2 SUPPORT |
| 1599 | M: Marek Vasut <marek.vasut@gmail.com> |
| 1600 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1601 | S: Maintained |
| 1602 | F: arch/arm/mach-pxa/z2.c |
Joe Perches | 6ab2a85 | 2010-08-09 17:20:38 -0700 | [diff] [blame] | 1603 | F: arch/arm/mach-pxa/include/mach/z2.h |
Marek Vasut | e66b6d8 | 2010-03-26 06:51:32 +0100 | [diff] [blame] | 1604 | |
Michal Simek | 51f29d4 | 2013-01-21 17:41:46 +0100 | [diff] [blame] | 1605 | ARM/ZYNQ ARCHITECTURE |
| 1606 | M: Michal Simek <michal.simek@xilinx.com> |
Soren Brinkmann | f0fd9ad | 2014-10-23 09:29:22 -0700 | [diff] [blame] | 1607 | R: Sören Brinkmann <soren.brinkmann@xilinx.com> |
Michal Simek | 51f29d4 | 2013-01-21 17:41:46 +0100 | [diff] [blame] | 1608 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1609 | W: http://wiki.xilinx.com |
| 1610 | T: git git://git.xilinx.com/linux-xlnx.git |
| 1611 | S: Supported |
| 1612 | F: arch/arm/mach-zynq/ |
Michal Simek | bd2a337 | 2013-06-04 07:17:39 +0000 | [diff] [blame] | 1613 | F: drivers/cpuidle/cpuidle-zynq.c |
Michal Simek | fb9d495 | 2014-10-13 15:51:15 -0700 | [diff] [blame] | 1614 | F: drivers/block/xsysace.c |
Michal Simek | c2fd4e3 | 2014-01-02 12:58:50 -0800 | [diff] [blame] | 1615 | N: zynq |
| 1616 | N: xilinx |
| 1617 | F: drivers/clocksource/cadence_ttc_timer.c |
Soren Brinkmann | df8eb56 | 2014-04-04 14:27:55 -0700 | [diff] [blame] | 1618 | F: drivers/i2c/busses/i2c-cadence.c |
Soren Brinkmann | e3ec3a3 | 2013-12-02 10:02:36 -0800 | [diff] [blame] | 1619 | F: drivers/mmc/host/sdhci-of-arasan.c |
Punnaiah Choudary Kalluri | ae9b56e | 2015-01-06 23:13:47 +0530 | [diff] [blame] | 1620 | F: drivers/edac/synopsys_edac.c |
Michal Simek | 51f29d4 | 2013-01-21 17:41:46 +0100 | [diff] [blame] | 1621 | |
Will Deacon | b8f9879 | 2013-06-24 18:31:26 +0100 | [diff] [blame] | 1622 | ARM SMMU DRIVER |
| 1623 | M: Will Deacon <will.deacon@arm.com> |
| 1624 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1625 | S: Maintained |
| 1626 | F: drivers/iommu/arm-smmu.c |
Will Deacon | e1d3c0f | 2014-11-14 17:18:23 +0000 | [diff] [blame] | 1627 | F: drivers/iommu/io-pgtable-arm.c |
Will Deacon | b8f9879 | 2013-06-24 18:31:26 +0100 | [diff] [blame] | 1628 | |
Catalin Marinas | 3807422 | 2012-03-05 11:49:34 +0000 | [diff] [blame] | 1629 | ARM64 PORT (AARCH64 ARCHITECTURE) |
| 1630 | M: Catalin Marinas <catalin.marinas@arm.com> |
Catalin Marinas | d19766e | 2012-12-11 13:58:05 +0000 | [diff] [blame] | 1631 | M: Will Deacon <will.deacon@arm.com> |
Catalin Marinas | 3807422 | 2012-03-05 11:49:34 +0000 | [diff] [blame] | 1632 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1633 | S: Maintained |
| 1634 | F: arch/arm64/ |
Catalin Marinas | d19766e | 2012-12-11 13:58:05 +0000 | [diff] [blame] | 1635 | F: Documentation/arm64/ |
Catalin Marinas | 3807422 | 2012-03-05 11:49:34 +0000 | [diff] [blame] | 1636 | |
Laurent Pinchart | 9d7005f9 | 2012-12-10 20:38:24 -0300 | [diff] [blame] | 1637 | AS3645A LED FLASH CONTROLLER DRIVER |
| 1638 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 1639 | L: linux-media@vger.kernel.org |
| 1640 | T: git git://linuxtv.org/media_tree.git |
| 1641 | S: Maintained |
| 1642 | F: drivers/media/i2c/as3645a.c |
| 1643 | F: include/media/as3645a.h |
| 1644 | |
George Joseph | d58de03 | 2010-03-05 22:17:25 +0100 | [diff] [blame] | 1645 | ASC7621 HARDWARE MONITOR DRIVER |
| 1646 | M: George Joseph <george.joseph@fairview5.com> |
| 1647 | L: lm-sensors@lm-sensors.org |
| 1648 | S: Maintained |
| 1649 | F: Documentation/hwmon/asc7621 |
| 1650 | F: drivers/hwmon/asc7621.c |
| 1651 | |
Corentin Chary | b229ece | 2011-02-26 10:20:40 +0100 | [diff] [blame] | 1652 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
Corentin Chary | 5909c65 | 2012-12-17 16:00:05 -0800 | [diff] [blame] | 1653 | M: Corentin Chary <corentin.chary@gmail.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | L: acpi4asus-user@lists.sourceforge.net |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 1655 | L: platform-driver-x86@vger.kernel.org |
Corentin Chary | 76593d6 | 2009-06-16 19:28:47 +0000 | [diff] [blame] | 1656 | W: http://acpi4asus.sf.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1657 | S: Maintained |
Corentin Chary | b229ece | 2011-02-26 10:20:40 +0100 | [diff] [blame] | 1658 | F: drivers/platform/x86/asus*.c |
| 1659 | F: drivers/platform/x86/eeepc*.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | |
Andrew Morton | 953a647 | 2008-11-06 12:53:28 -0800 | [diff] [blame] | 1661 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
Dan Williams | 08223d8 | 2014-08-19 06:07:56 -0700 | [diff] [blame] | 1662 | R: Dan Williams <dan.j.williams@intel.com> |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1663 | W: http://sourceforge.net/projects/xscaleiop |
Dan Williams | 08223d8 | 2014-08-19 06:07:56 -0700 | [diff] [blame] | 1664 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1665 | F: Documentation/crypto/async-tx-api.txt |
| 1666 | F: crypto/async_tx/ |
| 1667 | F: drivers/dma/ |
| 1668 | F: include/linux/dmaengine.h |
| 1669 | F: include/linux/async_tx.h |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 1670 | |
Wolfram Sang | a1867d3 | 2009-09-18 22:45:51 +0200 | [diff] [blame] | 1671 | AT24 EEPROM DRIVER |
Wolfram Sang | 14d77c4 | 2013-02-08 20:54:40 +0100 | [diff] [blame] | 1672 | M: Wolfram Sang <wsa@the-dreams.de> |
Wolfram Sang | a1867d3 | 2009-09-18 22:45:51 +0200 | [diff] [blame] | 1673 | L: linux-i2c@vger.kernel.org |
| 1674 | S: Maintained |
| 1675 | F: drivers/misc/eeprom/at24.c |
Vivien Didelot | 25f73ed | 2013-09-27 15:06:28 -0400 | [diff] [blame] | 1676 | F: include/linux/platform_data/at24.h |
Wolfram Sang | a1867d3 | 2009-09-18 22:45:51 +0200 | [diff] [blame] | 1677 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 1678 | ATA OVER ETHERNET (AOE) DRIVER |
Ed Cashin | fb90381 | 2015-03-25 15:55:06 -0700 | [diff] [blame] | 1679 | M: "Ed L. Cashin" <ed.cashin@acm.org> |
| 1680 | W: http://www.openaoe.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1682 | F: Documentation/aoe/ |
| 1683 | F: drivers/block/aoe/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | |
Joe Perches | 9a10a87 | 2010-12-01 09:37:55 -0800 | [diff] [blame] | 1685 | ATHEROS ATH GENERIC UTILITIES |
Luis R. Rodriguez | f726ee6 | 2013-12-14 20:11:39 +0100 | [diff] [blame] | 1686 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
Joe Perches | 9a10a87 | 2010-12-01 09:37:55 -0800 | [diff] [blame] | 1687 | L: linux-wireless@vger.kernel.org |
| 1688 | S: Supported |
| 1689 | F: drivers/net/wireless/ath/* |
| 1690 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1691 | ATHEROS ATH5K WIRELESS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1692 | M: Jiri Slaby <jirislaby@gmail.com> |
| 1693 | M: Nick Kossifidis <mickflemm@gmail.com> |
Luis R. Rodriguez | f726ee6 | 2013-12-14 20:11:39 +0100 | [diff] [blame] | 1694 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1695 | L: linux-wireless@vger.kernel.org |
Joe Perches | 72c706b | 2009-09-07 11:34:30 -0700 | [diff] [blame] | 1696 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1697 | S: Maintained |
Joe Perches | fa45175 | 2009-06-18 16:49:22 -0700 | [diff] [blame] | 1698 | F: drivers/net/wireless/ath/ath5k/ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1699 | |
Kalle Valo | 12e62d6 | 2011-09-13 10:21:25 +0300 | [diff] [blame] | 1700 | ATHEROS ATH6KL WIRELESS DRIVER |
| 1701 | M: Kalle Valo <kvalo@qca.qualcomm.com> |
| 1702 | L: linux-wireless@vger.kernel.org |
| 1703 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl |
Kalle Valo | 58cfb68 | 2013-07-22 12:26:12 +0300 | [diff] [blame] | 1704 | T: git git://github.com/kvalo/ath.git |
Kalle Valo | 12e62d6 | 2011-09-13 10:21:25 +0300 | [diff] [blame] | 1705 | S: Supported |
| 1706 | F: drivers/net/wireless/ath/ath6kl/ |
| 1707 | |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 1708 | WILOCITY WIL6210 WIRELESS DRIVER |
| 1709 | M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> |
| 1710 | L: linux-wireless@vger.kernel.org |
| 1711 | L: wil6210@qca.qualcomm.com |
| 1712 | S: Supported |
| 1713 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 |
| 1714 | F: drivers/net/wireless/ath/wil6210/ |
Vladimir Kondratiev | dba4b74 | 2014-10-01 15:05:25 +0300 | [diff] [blame] | 1715 | F: include/uapi/linux/wil6210_uapi.h |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 1716 | |
Christian Lamparter | 1d7e1e6 | 2010-09-06 01:10:25 +0200 | [diff] [blame] | 1717 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
| 1718 | M: Christian Lamparter <chunkeey@googlemail.com> |
| 1719 | L: linux-wireless@vger.kernel.org |
| 1720 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 |
| 1721 | S: Maintained |
| 1722 | F: drivers/net/wireless/ath/carl9170/ |
| 1723 | |
Luca Tettamanti | 2c2a617 | 2009-09-15 17:18:10 +0200 | [diff] [blame] | 1724 | ATK0110 HWMON DRIVER |
| 1725 | M: Luca Tettamanti <kronos.it@gmail.com> |
| 1726 | L: lm-sensors@lm-sensors.org |
| 1727 | S: Maintained |
| 1728 | F: drivers/hwmon/asus_atk0110.c |
| 1729 | |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 1730 | ATI_REMOTE2 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1731 | M: Ville Syrjala <syrjala@sci.fi> |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 1732 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1733 | F: drivers/input/misc/ati_remote2.c |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 1734 | |
Chris Snook | 7ae115b | 2008-09-09 03:26:57 -0400 | [diff] [blame] | 1735 | ATLX ETHERNET DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1736 | M: Jay Cliburn <jcliburn@gmail.com> |
Chris Snook | cb2f33e | 2009-08-06 12:19:31 +0000 | [diff] [blame] | 1737 | M: Chris Snook <chris.snook@gmail.com> |
Chris Snook | e443e38 | 2010-09-16 22:00:28 -0700 | [diff] [blame] | 1738 | L: netdev@vger.kernel.org |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 1739 | W: http://sourceforge.net/projects/atl1 |
| 1740 | W: http://atl1.sourceforge.net |
| 1741 | S: Maintained |
Jeff Kirsher | 2b133ad | 2011-05-20 06:55:16 -0700 | [diff] [blame] | 1742 | F: drivers/net/ethernet/atheros/ |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 1743 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | ATM |
chas williams - CONTRACTOR | 366c1bd | 2015-03-11 16:18:01 -0400 | [diff] [blame] | 1745 | M: Chas Williams <3chas3@gmail.com> |
Joe Perches | 476604d | 2009-10-26 16:49:41 -0700 | [diff] [blame] | 1746 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
Jiri Slaby | 44ae98b | 2008-11-30 23:27:11 -0800 | [diff] [blame] | 1747 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | W: http://linux-atm.sourceforge.net |
| 1749 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1750 | F: drivers/atm/ |
| 1751 | F: include/linux/atm* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 1752 | F: include/uapi/linux/atm* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | |
Nicolas Ferre | 04ac2f4 | 2009-06-16 13:05:50 +0200 | [diff] [blame] | 1754 | ATMEL AT91 / AT32 MCI DRIVER |
Nicolas Ferre | 24e1511 | 2012-02-17 15:40:18 +0100 | [diff] [blame] | 1755 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
Nicolas Ferre | 04ac2f4 | 2009-06-16 13:05:50 +0200 | [diff] [blame] | 1756 | S: Maintained |
| 1757 | F: drivers/mmc/host/atmel-mci.c |
| 1758 | F: drivers/mmc/host/atmel-mci-regs.h |
| 1759 | |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 1760 | ATMEL AT91 / AT32 SERIAL DRIVER |
Nicolas Ferre | a02875a | 2010-06-29 15:05:33 -0700 | [diff] [blame] | 1761 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 1762 | S: Supported |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 1763 | F: drivers/tty/serial/atmel_serial.c |
Haavard Skinnemoen | a1cfac4 | 2008-02-08 04:21:00 -0800 | [diff] [blame] | 1764 | |
Bo Shen | dfae90e | 2014-09-28 09:57:19 +0800 | [diff] [blame] | 1765 | ATMEL Audio ALSA driver |
Nicolas Ferre | 3a82002 | 2015-03-31 15:34:51 +0200 | [diff] [blame] | 1766 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
Bo Shen | dfae90e | 2014-09-28 09:57:19 +0800 | [diff] [blame] | 1767 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 1768 | S: Supported |
| 1769 | F: sound/soc/atmel |
| 1770 | |
Nicolas Ferre | b414dc1 | 2012-03-26 15:50:36 +0200 | [diff] [blame] | 1771 | ATMEL DMA DRIVER |
| 1772 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 1773 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1774 | S: Supported |
| 1775 | F: drivers/dma/at_hdmac.c |
| 1776 | F: drivers/dma/at_hdmac_regs.h |
Cesar Eduardo Barros | 6f0d65a | 2013-01-04 15:35:20 -0800 | [diff] [blame] | 1777 | F: include/linux/platform_data/dma-atmel.h |
Nicolas Ferre | b414dc1 | 2012-03-26 15:50:36 +0200 | [diff] [blame] | 1778 | |
Ludovic Desroches | 6bd0f43 | 2014-10-22 17:22:20 +0200 | [diff] [blame] | 1779 | ATMEL XDMA DRIVER |
| 1780 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
| 1781 | L: linux-arm-kernel@lists.infradead.org |
| 1782 | L: dmaengine@vger.kernel.org |
| 1783 | S: Supported |
| 1784 | F: drivers/dma/at_xdmac.c |
| 1785 | |
Ludovic Desroches | 888f280 | 2013-03-15 05:32:57 +0000 | [diff] [blame] | 1786 | ATMEL I2C DRIVER |
| 1787 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
| 1788 | L: linux-i2c@vger.kernel.org |
| 1789 | S: Supported |
| 1790 | F: drivers/i2c/busses/i2c-at91.c |
| 1791 | |
Josh Wu | 1551554 | 2012-03-23 17:56:29 +0800 | [diff] [blame] | 1792 | ATMEL ISI DRIVER |
| 1793 | M: Josh Wu <josh.wu@atmel.com> |
| 1794 | L: linux-media@vger.kernel.org |
| 1795 | S: Supported |
Cesar Eduardo Barros | f2294c2 | 2013-01-04 15:35:21 -0800 | [diff] [blame] | 1796 | F: drivers/media/platform/soc_camera/atmel-isi.c |
Josh Wu | 1551554 | 2012-03-23 17:56:29 +0800 | [diff] [blame] | 1797 | F: include/media/atmel-isi.h |
| 1798 | |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1799 | ATMEL LCDFB DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1800 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 1801 | L: linux-fbdev@vger.kernel.org |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1802 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 1803 | F: drivers/video/fbdev/atmel_lcdfb.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1804 | F: include/video/atmel_lcdc.h |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 1805 | |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1806 | ATMEL MACB ETHERNET DRIVER |
Nicolas Ferre | a02875a | 2010-06-29 15:05:33 -0700 | [diff] [blame] | 1807 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1808 | S: Supported |
Jeff Kirsher | 9f2f381 | 2011-06-18 01:52:36 -0700 | [diff] [blame] | 1809 | F: drivers/net/ethernet/cadence/ |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 1810 | |
Josh Wu | 5cbac98 | 2014-10-13 15:51:24 -0700 | [diff] [blame] | 1811 | ATMEL NAND DRIVER |
| 1812 | M: Josh Wu <josh.wu@atmel.com> |
| 1813 | L: linux-mtd@lists.infradead.org |
| 1814 | S: Supported |
| 1815 | F: drivers/mtd/nand/atmel_nand* |
| 1816 | |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 1817 | ATMEL SPI DRIVER |
Nicolas Ferre | a02875a | 2010-06-29 15:05:33 -0700 | [diff] [blame] | 1818 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 1819 | S: Supported |
Joe Perches | 9df92e6 | 2012-01-10 15:09:06 -0800 | [diff] [blame] | 1820 | F: drivers/spi/spi-atmel.* |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 1821 | |
Bo Shen | 0ef0901 | 2014-09-28 09:57:18 +0800 | [diff] [blame] | 1822 | ATMEL SSC DRIVER |
Nicolas Ferre | 03515f3 | 2015-03-19 10:49:42 +0100 | [diff] [blame] | 1823 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
Bo Shen | 0ef0901 | 2014-09-28 09:57:18 +0800 | [diff] [blame] | 1824 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1825 | S: Supported |
| 1826 | F: drivers/misc/atmel-ssc.c |
| 1827 | F: include/linux/atmel-ssc.h |
| 1828 | |
Nicolas Ferre | e9cb1c5 | 2012-03-26 15:59:32 +0200 | [diff] [blame] | 1829 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
| 1830 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 1831 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1832 | S: Supported |
| 1833 | F: drivers/misc/atmel_tclib.c |
| 1834 | F: drivers/clocksource/tcb_clksrc.c |
| 1835 | |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 1836 | ATMEL USBA UDC DRIVER |
Nicolas Ferre | a02875a | 2010-06-29 15:05:33 -0700 | [diff] [blame] | 1837 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 1838 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 1839 | S: Supported |
Joe Perches | faf2e1d | 2014-08-08 14:26:18 -0700 | [diff] [blame] | 1840 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 1841 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | ATMEL WIRELESS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1843 | M: Simon Kelley <simon@thekelleys.org.uk> |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 1844 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | W: http://www.thekelleys.org.uk/atmel |
| 1846 | W: http://atmelwlandriver.sourceforge.net/ |
| 1847 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1848 | F: drivers/net/wireless/atmel* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | |
Bradley Grove | 26780d9 | 2013-08-23 10:35:45 -0400 | [diff] [blame] | 1850 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 1851 | M: Bradley Grove <linuxdrivers@attotech.com> |
| 1852 | L: linux-scsi@vger.kernel.org |
| 1853 | W: http://www.attotech.com |
| 1854 | S: Supported |
| 1855 | F: drivers/scsi/esas2r |
Bradley Grove | 26780d9 | 2013-08-23 10:35:45 -0400 | [diff] [blame] | 1856 | |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1857 | AUDIT SUBSYSTEM |
Paul Moore | 915f389 | 2014-10-20 11:59:43 -0400 | [diff] [blame] | 1858 | M: Paul Moore <paul@paul-moore.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1859 | M: Eric Paris <eparis@redhat.com> |
Paul Moore | 915f389 | 2014-10-20 11:59:43 -0400 | [diff] [blame] | 1860 | L: linux-audit@redhat.com (moderated for non-subscribers) |
David Woodhouse | ad3f9a2 | 2005-07-13 15:28:29 +0100 | [diff] [blame] | 1861 | W: http://people.redhat.com/sgrubb/audit/ |
Paul Moore | 915f389 | 2014-10-20 11:59:43 -0400 | [diff] [blame] | 1862 | T: git git://git.infradead.org/users/pcmoore/audit |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1863 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1864 | F: include/linux/audit.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 1865 | F: include/uapi/linux/audit.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1866 | F: kernel/audit* |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 1867 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1868 | AUXILIARY DISPLAY DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1869 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 1870 | W: http://miguelojeda.es/auxdisplay.htm |
| 1871 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1872 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1873 | F: drivers/auxdisplay/ |
| 1874 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 1875 | |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1876 | AVR32 ARCHITECTURE |
Hans-Christian Egtvedt | e336f61 | 2011-06-28 08:43:29 +0200 | [diff] [blame] | 1877 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
| 1878 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1879 | W: http://www.atmel.com/products/AVR32/ |
Matthias Brugger | 249d9d9 | 2013-02-04 14:28:47 -0800 | [diff] [blame] | 1880 | W: http://mirror.egtvedt.no/avr32linux.org/ |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1881 | W: http://avrfreaks.net/ |
Hans-Christian Egtvedt | e336f61 | 2011-06-28 08:43:29 +0200 | [diff] [blame] | 1882 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1883 | F: arch/avr32/ |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1884 | |
| 1885 | AVR32/AT32AP MACHINE SUPPORT |
Hans-Christian Egtvedt | e336f61 | 2011-06-28 08:43:29 +0200 | [diff] [blame] | 1886 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
| 1887 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> |
| 1888 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1889 | F: arch/avr32/mach-at32ap/ |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1891 | AX.25 NETWORK LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1892 | M: Ralf Baechle <ralf@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 1894 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | S: Maintained |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 1896 | F: include/uapi/linux/ax25.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1897 | F: include/net/ax25.h |
| 1898 | F: net/ax25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1899 | |
Mauro Carvalho Chehab | d526939 | 2012-11-02 12:00:30 -0200 | [diff] [blame] | 1900 | AZ6007 DVB DRIVER |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 1901 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | d526939 | 2012-11-02 12:00:30 -0200 | [diff] [blame] | 1902 | L: linux-media@vger.kernel.org |
| 1903 | W: http://linuxtv.org |
| 1904 | T: git git://linuxtv.org/media_tree.git |
| 1905 | S: Maintained |
| 1906 | F: drivers/media/usb/dvb-usb-v2/az6007.c |
| 1907 | |
Hans Verkuil | 6777376 | 2012-11-23 07:09:23 -0300 | [diff] [blame] | 1908 | AZTECH FM RADIO RECEIVER DRIVER |
| 1909 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 1910 | L: linux-media@vger.kernel.org |
| 1911 | T: git git://linuxtv.org/media_tree.git |
| 1912 | W: http://linuxtv.org |
| 1913 | S: Maintained |
| 1914 | F: drivers/media/radio/radio-aztech* |
| 1915 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1916 | B43 WIRELESS DRIVER |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1917 | L: linux-wireless@vger.kernel.org |
Rafał Miłecki | ed072f9 | 2012-01-29 11:59:42 +0100 | [diff] [blame] | 1918 | L: b43-dev@lists.infradead.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 1919 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
Joe Perches | 8a72ed6 | 2015-04-15 16:17:39 -0700 | [diff] [blame] | 1920 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1921 | F: drivers/net/wireless/b43/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1922 | |
| 1923 | B43LEGACY WIRELESS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1924 | M: Larry Finger <Larry.Finger@lwfinger.net> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1925 | L: linux-wireless@vger.kernel.org |
Rafał Miłecki | ed072f9 | 2012-01-29 11:59:42 +0100 | [diff] [blame] | 1926 | L: b43-dev@lists.infradead.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 1927 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1928 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1929 | F: drivers/net/wireless/b43legacy/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1930 | |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 1931 | BACKLIGHT CLASS/SUBSYSTEM |
Jingoo Han | 6212de8 | 2013-07-03 15:05:15 -0700 | [diff] [blame] | 1932 | M: Jingoo Han <jg1.han@samsung.com> |
Jingoo Han | 70d14fc | 2014-04-03 14:48:46 -0700 | [diff] [blame] | 1933 | M: Lee Jones <lee.jones@linaro.org> |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 1934 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1935 | F: drivers/video/backlight/ |
| 1936 | F: include/linux/backlight.h |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 1937 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1938 | BATMAN ADVANCED |
Antonio Quartulli | 207df49 | 2013-09-21 13:46:56 +0200 | [diff] [blame] | 1939 | M: Marek Lindner <mareklindner@neomailbox.ch> |
Simon Wunderlich | c679ff8 | 2013-10-10 23:59:10 +0200 | [diff] [blame] | 1940 | M: Simon Wunderlich <sw@simonwunderlich.de> |
Antonio Quartulli | 207df49 | 2013-09-21 13:46:56 +0200 | [diff] [blame] | 1941 | M: Antonio Quartulli <antonio@meshcoding.com> |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 1942 | L: b.a.t.m.a.n@lists.open-mesh.org |
| 1943 | W: http://www.open-mesh.org/ |
| 1944 | S: Maintained |
| 1945 | F: net/batman-adv/ |
| 1946 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1947 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1948 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1949 | L: linux-hams@vger.kernel.org |
| 1950 | W: http://www.baycom.org/~tom/ham/ham.html |
| 1951 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1952 | F: drivers/net/hamradio/baycom* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1953 | |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 1954 | BCACHE (BLOCK LAYER CACHE) |
Kent Overstreet | 47cd2eb | 2013-07-01 12:19:55 -0700 | [diff] [blame] | 1955 | M: Kent Overstreet <kmo@daterainc.com> |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 1956 | L: linux-bcache@vger.kernel.org |
| 1957 | W: http://bcache.evilpiepirate.org |
| 1958 | S: Maintained: |
| 1959 | F: drivers/md/bcache/ |
| 1960 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1961 | BEFS FILE SYSTEM |
Joe Perches | 55817d3 | 2010-08-09 17:20:52 -0700 | [diff] [blame] | 1962 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1963 | F: Documentation/filesystems/befs.txt |
| 1964 | F: fs/befs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1965 | |
Dariusz Marcinkiewicz | 564ee36 | 2014-08-15 17:50:47 +0200 | [diff] [blame] | 1966 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 1967 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> |
| 1968 | L: netdev@vger.kernel.org |
| 1969 | S: Maintained |
| 1970 | F: drivers/net/ethernet/ec_bhf.c |
Dariusz Marcinkiewicz | 564ee36 | 2014-08-15 17:50:47 +0200 | [diff] [blame] | 1971 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1972 | BFS FILE SYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1973 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1974 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1975 | F: Documentation/filesystems/bfs.txt |
| 1976 | F: fs/bfs/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 1977 | F: include/uapi/linux/bfs_fs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 1978 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1979 | BLACKFIN ARCHITECTURE |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 1980 | M: Steven Miao <realmz6@gmail.com> |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 1981 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Michael Opdenacker | 1443176 | 2014-03-10 15:49:49 -0700 | [diff] [blame] | 1982 | T: git git://git.code.sf.net/p/adi-linux/code |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1983 | W: http://blackfin.uclinux.org |
| 1984 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1985 | F: arch/blackfin/ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1986 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1987 | BLACKFIN EMAC DRIVER |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 1988 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1989 | W: http://blackfin.uclinux.org |
| 1990 | S: Supported |
Jeff Kirsher | 7b35f03 | 2011-06-18 00:01:26 -0700 | [diff] [blame] | 1991 | F: drivers/net/ethernet/adi/ |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1992 | |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1993 | BLACKFIN RTC DRIVER |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 1994 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1995 | W: http://blackfin.uclinux.org |
| 1996 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1997 | F: drivers/rtc/rtc-bfin.c |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 1998 | |
Mike Frysinger | 936ed49 | 2010-03-10 15:20:38 -0800 | [diff] [blame] | 1999 | BLACKFIN SDH DRIVER |
Sonic Zhang | 109ec8c | 2012-08-08 12:16:08 +0800 | [diff] [blame] | 2000 | M: Sonic Zhang <sonic.zhang@analog.com> |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 2001 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Mike Frysinger | 936ed49 | 2010-03-10 15:20:38 -0800 | [diff] [blame] | 2002 | W: http://blackfin.uclinux.org |
| 2003 | S: Supported |
| 2004 | F: drivers/mmc/host/bfin_sdh.c |
| 2005 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 2006 | BLACKFIN SERIAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2007 | M: Sonic Zhang <sonic.zhang@analog.com> |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 2008 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 2009 | W: http://blackfin.uclinux.org |
| 2010 | S: Supported |
Joe Perches | 8460241 | 2012-01-10 15:09:04 -0800 | [diff] [blame] | 2011 | F: drivers/tty/serial/bfin_uart.c |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 2012 | |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 2013 | BLACKFIN WATCHDOG DRIVER |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 2014 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 2015 | W: http://blackfin.uclinux.org |
| 2016 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2017 | F: drivers/watchdog/bfin_wdt.c |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 2018 | |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 2019 | BLACKFIN I2C TWI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2020 | M: Sonic Zhang <sonic.zhang@analog.com> |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 2021 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 2022 | W: http://blackfin.uclinux.org/ |
| 2023 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2024 | F: drivers/i2c/busses/i2c-bfin-twi.c |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 2025 | |
Scott Jiang | 1e20437 | 2013-01-18 17:09:47 -0300 | [diff] [blame] | 2026 | BLACKFIN MEDIA DRIVER |
| 2027 | M: Scott Jiang <scott.jiang.linux@gmail.com> |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 2028 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Scott Jiang | 1e20437 | 2013-01-18 17:09:47 -0300 | [diff] [blame] | 2029 | W: http://blackfin.uclinux.org/ |
| 2030 | S: Supported |
| 2031 | F: drivers/media/platform/blackfin/ |
| 2032 | F: drivers/media/i2c/adv7183* |
| 2033 | F: drivers/media/i2c/vs6624* |
| 2034 | |
Jan-Simon Möller | b54cf35 | 2012-07-20 16:49:06 +0800 | [diff] [blame] | 2035 | BLINKM RGB LED DRIVER |
| 2036 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> |
| 2037 | S: Maintained |
| 2038 | F: drivers/leds/leds-blinkm.c |
| 2039 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2040 | BLOCK LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2041 | M: Jens Axboe <axboe@kernel.dk> |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 2042 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2043 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2044 | F: block/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 2046 | BLOCK2MTD DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2047 | M: Joern Engel <joern@lazybastard.org> |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 2048 | L: linux-mtd@lists.infradead.org |
| 2049 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2050 | F: drivers/mtd/devices/block2mtd.c |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 2051 | |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 2052 | BLUETOOTH DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2053 | M: Marcel Holtmann <marcel@holtmann.org> |
Gustavo Padovan | 960d4d1 | 2012-03-15 15:17:10 -0700 | [diff] [blame] | 2054 | M: Gustavo Padovan <gustavo@padovan.org> |
Johan Hedberg | eb491ec | 2012-03-15 15:17:11 -0700 | [diff] [blame] | 2055 | M: Johan Hedberg <johan.hedberg@gmail.com> |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 2056 | L: linux-bluetooth@vger.kernel.org |
| 2057 | W: http://www.bluez.org/ |
Marcel Holtmann | 22e7a42 | 2012-03-27 18:21:00 +0200 | [diff] [blame] | 2058 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
| 2059 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 2060 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2061 | F: drivers/bluetooth/ |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 2062 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | BLUETOOTH SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2064 | M: Marcel Holtmann <marcel@holtmann.org> |
Gustavo Padovan | 960d4d1 | 2012-03-15 15:17:10 -0700 | [diff] [blame] | 2065 | M: Gustavo Padovan <gustavo@padovan.org> |
Johan Hedberg | eb491ec | 2012-03-15 15:17:11 -0700 | [diff] [blame] | 2066 | M: Johan Hedberg <johan.hedberg@gmail.com> |
Pavel Machek | 781c284 | 2008-03-20 15:41:02 -0700 | [diff] [blame] | 2067 | L: linux-bluetooth@vger.kernel.org |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 2068 | W: http://www.bluez.org/ |
Marcel Holtmann | 22e7a42 | 2012-03-27 18:21:00 +0200 | [diff] [blame] | 2069 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
| 2070 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2072 | F: net/bluetooth/ |
| 2073 | F: include/net/bluetooth/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2074 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | BONDING DRIVER |
Jay Vosburgh | 79b3075 | 2014-03-27 10:33:44 -0700 | [diff] [blame] | 2076 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
Veaceslav Falico | 898602a | 2014-03-27 18:43:50 +0100 | [diff] [blame] | 2077 | M: Veaceslav Falico <vfalico@gmail.com> |
Andy Gospodarek | 31639b9 | 2015-02-25 17:00:16 -0500 | [diff] [blame] | 2078 | M: Andy Gospodarek <gospo@cumulusnetworks.com> |
Simon Horman | a6c36ee | 2010-11-21 09:58:04 -0800 | [diff] [blame] | 2079 | L: netdev@vger.kernel.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2080 | W: http://sourceforge.net/projects/bonding/ |
| 2081 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2082 | F: drivers/net/bonding/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2083 | F: include/uapi/linux/if_bonding.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | |
Alexei Starovoitov | b5f4df3 | 2014-07-22 23:01:59 -0700 | [diff] [blame] | 2085 | BPF (Safe dynamic programs and tools) |
| 2086 | M: Alexei Starovoitov <ast@kernel.org> |
| 2087 | L: netdev@vger.kernel.org |
| 2088 | L: linux-kernel@vger.kernel.org |
| 2089 | S: Supported |
| 2090 | F: kernel/bpf/ |
| 2091 | |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 2092 | BROADCOM B44 10/100 ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2093 | M: Gary Zambrano <zambrano@broadcom.com> |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 2094 | L: netdev@vger.kernel.org |
| 2095 | S: Supported |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 2096 | F: drivers/net/ethernet/broadcom/b44.* |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 2097 | |
Florian Fainelli | 32ec90d | 2014-02-13 16:08:51 -0800 | [diff] [blame] | 2098 | BROADCOM GENET ETHERNET DRIVER |
| 2099 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2100 | L: netdev@vger.kernel.org |
| 2101 | S: Supported |
| 2102 | F: drivers/net/ethernet/broadcom/genet/ |
| 2103 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 2104 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
Jitendra Kalsaria | f1d1bae | 2014-06-23 15:10:35 -0400 | [diff] [blame] | 2105 | M: Sony Chacko <sony.chacko@qlogic.com> |
| 2106 | M: Dept-HSGLinuxNICDev@qlogic.com |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 2107 | L: netdev@vger.kernel.org |
| 2108 | S: Supported |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 2109 | F: drivers/net/ethernet/broadcom/bnx2.* |
| 2110 | F: drivers/net/ethernet/broadcom/bnx2_* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 2111 | |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 2112 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
Ariel Elior | 08f6dd8 | 2014-05-27 13:11:36 +0300 | [diff] [blame] | 2113 | M: Ariel Elior <ariel.elior@qlogic.com> |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 2114 | L: netdev@vger.kernel.org |
| 2115 | S: Supported |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 2116 | F: drivers/net/ethernet/broadcom/bnx2x/ |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 2117 | |
Matt Porter | 90f4c59 | 2014-05-06 12:09:45 -0400 | [diff] [blame] | 2118 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
Christian Daudt | 497a045 | 2013-09-24 15:27:47 -0700 | [diff] [blame] | 2119 | M: Christian Daudt <bcm@fixthebug.org> |
Florian Fainelli | f18cf05 | 2014-09-19 11:17:12 -0700 | [diff] [blame] | 2120 | M: Florian Fainelli <f.fainelli@gmail.com> |
Christian Daudt | 497a045 | 2013-09-24 15:27:47 -0700 | [diff] [blame] | 2121 | L: bcm-kernel-feedback-list@broadcom.com |
Matt Porter | 90f4c59 | 2014-05-06 12:09:45 -0400 | [diff] [blame] | 2122 | T: git git://github.com/broadcom/mach-bcm |
Christian Daudt | af4b8e3 | 2013-09-11 14:23:49 -0700 | [diff] [blame] | 2123 | S: Maintained |
| 2124 | F: arch/arm/mach-bcm/ |
| 2125 | F: arch/arm/boot/dts/bcm113* |
Matt Porter | 90f4c59 | 2014-05-06 12:09:45 -0400 | [diff] [blame] | 2126 | F: arch/arm/boot/dts/bcm216* |
Christian Daudt | af4b8e3 | 2013-09-11 14:23:49 -0700 | [diff] [blame] | 2127 | F: arch/arm/boot/dts/bcm281* |
| 2128 | F: arch/arm/configs/bcm_defconfig |
Joe Perches | e4ef47f | 2014-08-08 14:25:08 -0700 | [diff] [blame] | 2129 | F: drivers/mmc/host/sdhci-bcm-kona.c |
Christian Daudt | af4b8e3 | 2013-09-11 14:23:49 -0700 | [diff] [blame] | 2130 | F: drivers/clocksource/bcm_kona_timer.c |
| 2131 | |
Scott Branden | 9209bec | 2014-10-16 21:57:16 -0600 | [diff] [blame] | 2132 | BROADCOM BCM2835 ARM ARCHITECTURE |
Stephen Warren | f680f25 | 2012-09-15 00:18:54 -0600 | [diff] [blame] | 2133 | M: Stephen Warren <swarren@wwwdotorg.org> |
Stephen Warren | 8bcdd92 | 2014-11-04 20:27:17 -0700 | [diff] [blame] | 2134 | M: Lee Jones <lee@kernel.org> |
Stephen Warren | f680f25 | 2012-09-15 00:18:54 -0600 | [diff] [blame] | 2135 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) |
Stephen Warren | 8bcdd92 | 2014-11-04 20:27:17 -0700 | [diff] [blame] | 2136 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git |
Stephen Warren | f680f25 | 2012-09-15 00:18:54 -0600 | [diff] [blame] | 2137 | S: Maintained |
Scott Branden | 9209bec | 2014-10-16 21:57:16 -0600 | [diff] [blame] | 2138 | N: bcm2835 |
Stephen Warren | f680f25 | 2012-09-15 00:18:54 -0600 | [diff] [blame] | 2139 | |
Kevin Cernekee | a2f6734 | 2014-10-20 21:28:06 -0700 | [diff] [blame] | 2140 | BROADCOM BCM33XX MIPS ARCHITECTURE |
| 2141 | M: Kevin Cernekee <cernekee@gmail.com> |
| 2142 | L: linux-mips@linux-mips.org |
| 2143 | S: Maintained |
| 2144 | F: arch/mips/bcm3384/* |
| 2145 | F: arch/mips/include/asm/mach-bcm3384/* |
| 2146 | F: arch/mips/kernel/*bmips* |
| 2147 | |
Scott Branden | 9209bec | 2014-10-16 21:57:16 -0600 | [diff] [blame] | 2148 | BROADCOM BCM5301X ARM ARCHITECTURE |
Hauke Mehrtens | 5b293eb | 2014-02-04 00:01:43 +0100 | [diff] [blame] | 2149 | M: Hauke Mehrtens <hauke@hauke-m.de> |
| 2150 | L: linux-arm-kernel@lists.infradead.org |
| 2151 | S: Maintained |
| 2152 | F: arch/arm/mach-bcm/bcm_5301x.c |
| 2153 | F: arch/arm/boot/dts/bcm5301x.dtsi |
| 2154 | F: arch/arm/boot/dts/bcm470* |
| 2155 | |
Florian Fainelli | e076e96 | 2014-03-04 18:14:58 -0800 | [diff] [blame] | 2156 | BROADCOM BCM63XX ARM ARCHITECTURE |
| 2157 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2158 | L: linux-arm-kernel@lists.infradead.org |
Florian Fainelli | eb6725d | 2015-01-29 15:21:56 -0800 | [diff] [blame] | 2159 | T: git git://github.com/broadcom/arm-bcm63xx.git |
Florian Fainelli | e076e96 | 2014-03-04 18:14:58 -0800 | [diff] [blame] | 2160 | S: Maintained |
| 2161 | F: arch/arm/mach-bcm/bcm63xx.c |
| 2162 | F: arch/arm/include/debug/bcm63xx.S |
| 2163 | |
Kevin Cernekee | 7110e227 | 2014-10-20 21:28:07 -0700 | [diff] [blame] | 2164 | BROADCOM BCM63XX/BCM33XX UDC DRIVER |
| 2165 | M: Kevin Cernekee <cernekee@gmail.com> |
| 2166 | L: linux-usb@vger.kernel.org |
| 2167 | S: Maintained |
| 2168 | F: drivers/usb/gadget/udc/bcm63xx_udc.* |
| 2169 | |
Brian Norris | 2df94fd | 2014-07-14 18:06:03 -0700 | [diff] [blame] | 2170 | BROADCOM BCM7XXX ARM ARCHITECTURE |
| 2171 | M: Marc Carino <marc.ceeeee@gmail.com> |
| 2172 | M: Brian Norris <computersforpeace@gmail.com> |
Florian Fainelli | 3b4b6fe | 2014-11-14 12:53:43 -0800 | [diff] [blame] | 2173 | M: Gregory Fong <gregory.0xf0@gmail.com> |
| 2174 | M: Florian Fainelli <f.fainelli@gmail.com> |
Brian Norris | 2df94fd | 2014-07-14 18:06:03 -0700 | [diff] [blame] | 2175 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Florian Fainelli | eb6725d | 2015-01-29 15:21:56 -0800 | [diff] [blame] | 2176 | T: git git://github.com/broadcom/stblinux.git |
Brian Norris | 2df94fd | 2014-07-14 18:06:03 -0700 | [diff] [blame] | 2177 | S: Maintained |
| 2178 | F: arch/arm/mach-bcm/*brcmstb* |
| 2179 | F: arch/arm/boot/dts/bcm7*.dts* |
Florian Fainelli | e36661e | 2014-11-14 12:53:44 -0800 | [diff] [blame] | 2180 | F: drivers/bus/brcmstb_gisb.c |
Brian Norris | 2df94fd | 2014-07-14 18:06:03 -0700 | [diff] [blame] | 2181 | |
Kevin Cernekee | 70371ce | 2014-11-15 16:17:45 -0800 | [diff] [blame] | 2182 | BROADCOM BMIPS MIPS ARCHITECTURE |
| 2183 | M: Kevin Cernekee <cernekee@gmail.com> |
| 2184 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2185 | L: linux-mips@linux-mips.org |
Florian Fainelli | eb6725d | 2015-01-29 15:21:56 -0800 | [diff] [blame] | 2186 | T: git git://github.com/broadcom/stblinux.git |
Kevin Cernekee | 70371ce | 2014-11-15 16:17:45 -0800 | [diff] [blame] | 2187 | S: Maintained |
| 2188 | F: arch/mips/bmips/* |
| 2189 | F: arch/mips/include/asm/mach-bmips/* |
| 2190 | F: arch/mips/kernel/*bmips* |
| 2191 | F: arch/mips/boot/dts/bcm*.dts* |
| 2192 | F: drivers/irqchip/irq-bcm7* |
| 2193 | F: drivers/irqchip/irq-brcmstb* |
| 2194 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 2195 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
Prashant Sreedharan | 2362947 | 2014-06-27 16:21:50 -0700 | [diff] [blame] | 2196 | M: Prashant Sreedharan <prashant@broadcom.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2197 | M: Michael Chan <mchan@broadcom.com> |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 2198 | L: netdev@vger.kernel.org |
| 2199 | S: Supported |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 2200 | F: drivers/net/ethernet/broadcom/tg3.* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 2201 | |
Henry Ptasinski | a9533e7 | 2010-09-08 21:04:42 -0700 | [diff] [blame] | 2202 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
| 2203 | M: Brett Rudley <brudley@broadcom.com> |
Henry Ptasinski | 818c07b | 2010-12-08 13:09:49 -0800 | [diff] [blame] | 2204 | M: Arend van Spriel <arend@broadcom.com> |
Roland Vossen | 85d6368 | 2011-06-01 13:44:56 +0200 | [diff] [blame] | 2205 | M: Franky (Zhenhui) Lin <frankyl@broadcom.com> |
Arend van Spriel | 006a8f1 | 2012-11-28 21:44:04 +0100 | [diff] [blame] | 2206 | M: Hante Meuleman <meuleman@broadcom.com> |
Henry Ptasinski | a9533e7 | 2010-09-08 21:04:42 -0700 | [diff] [blame] | 2207 | L: linux-wireless@vger.kernel.org |
Arend van Spriel | 5615171 | 2012-06-14 14:16:27 +0200 | [diff] [blame] | 2208 | L: brcm80211-dev-list@broadcom.com |
Henry Ptasinski | a9533e7 | 2010-09-08 21:04:42 -0700 | [diff] [blame] | 2209 | S: Supported |
Joe Perches | f62ebdd | 2011-12-09 00:12:52 -0800 | [diff] [blame] | 2210 | F: drivers/net/wireless/brcm80211/ |
Henry Ptasinski | a9533e7 | 2010-09-08 21:04:42 -0700 | [diff] [blame] | 2211 | |
Bhanu Prakash Gollapudi | 9958d6f | 2011-05-27 11:48:10 -0700 | [diff] [blame] | 2212 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
Vikas Chaudhary | 3b7f040 | 2014-07-03 08:18:29 -0400 | [diff] [blame] | 2213 | M: QLogic-Storage-Upstream@qlogic.com |
Bhanu Prakash Gollapudi | 9958d6f | 2011-05-27 11:48:10 -0700 | [diff] [blame] | 2214 | L: linux-scsi@vger.kernel.org |
| 2215 | S: Supported |
| 2216 | F: drivers/scsi/bnx2fc/ |
| 2217 | |
Eddie Wai | 6a6b5ad0 | 2013-07-11 17:15:56 -0700 | [diff] [blame] | 2218 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
Vikas Chaudhary | 3b7f040 | 2014-07-03 08:18:29 -0400 | [diff] [blame] | 2219 | M: QLogic-Storage-Upstream@qlogic.com |
Eddie Wai | 6a6b5ad0 | 2013-07-11 17:15:56 -0700 | [diff] [blame] | 2220 | L: linux-scsi@vger.kernel.org |
| 2221 | S: Supported |
| 2222 | F: drivers/scsi/bnx2i/ |
| 2223 | |
Scott Branden | 36c0237 | 2014-09-12 16:50:56 -0700 | [diff] [blame] | 2224 | BROADCOM CYGNUS/IPROC ARM ARCHITECTURE |
| 2225 | M: Ray Jui <rjui@broadcom.com> |
| 2226 | M: Scott Branden <sbranden@broadcom.com> |
| 2227 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 2228 | L: bcm-kernel-feedback-list@broadcom.com |
Florian Fainelli | eb6725d | 2015-01-29 15:21:56 -0800 | [diff] [blame] | 2229 | T: git git://github.com/broadcom/cygnus-linux.git |
Scott Branden | 36c0237 | 2014-09-12 16:50:56 -0700 | [diff] [blame] | 2230 | S: Maintained |
| 2231 | N: iproc |
| 2232 | N: cygnus |
| 2233 | N: bcm9113* |
| 2234 | N: bcm9583* |
| 2235 | N: bcm583* |
| 2236 | N: bcm113* |
| 2237 | |
Markus Mayer | 7b7f588 | 2014-02-12 15:42:27 -0800 | [diff] [blame] | 2238 | BROADCOM KONA GPIO DRIVER |
Markus Mayer | 5e16390 | 2014-07-29 11:10:07 -0700 | [diff] [blame] | 2239 | M: Ray Jui <rjui@broadcom.com> |
Markus Mayer | 7b7f588 | 2014-02-12 15:42:27 -0800 | [diff] [blame] | 2240 | L: bcm-kernel-feedback-list@broadcom.com |
| 2241 | S: Supported |
| 2242 | F: drivers/gpio/gpio-bcm-kona.c |
| 2243 | F: Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt |
| 2244 | |
Rafał Miłecki | c9678d8 | 2012-01-13 22:55:05 +0100 | [diff] [blame] | 2245 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
| 2246 | M: Rafał Miłecki <zajec5@gmail.com> |
| 2247 | L: linux-wireless@vger.kernel.org |
| 2248 | S: Maintained |
| 2249 | F: drivers/bcma/ |
| 2250 | F: include/linux/bcma/ |
| 2251 | |
Florian Fainelli | b830220 | 2014-04-24 18:09:00 -0700 | [diff] [blame] | 2252 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
| 2253 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2254 | L: netdev@vger.kernel.org |
| 2255 | S: Supported |
| 2256 | F: drivers/net/ethernet/broadcom/bcmsysport.* |
| 2257 | |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 2258 | BROCADE BFA FC SCSI DRIVER |
Anil Gurumurthy | aa80337 | 2014-02-26 06:08:42 -0500 | [diff] [blame] | 2259 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
| 2260 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> |
Joe Perches | 455518e | 2009-11-11 14:26:10 -0800 | [diff] [blame] | 2261 | L: linux-scsi@vger.kernel.org |
| 2262 | S: Supported |
| 2263 | F: drivers/scsi/bfa/ |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 2264 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2265 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
Rasesh Mody | 439e957 | 2014-10-01 17:20:41 -0400 | [diff] [blame] | 2266 | M: Rasesh Mody <rasesh.mody@qlogic.com> |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2267 | L: netdev@vger.kernel.org |
| 2268 | S: Supported |
Jeff Kirsher | f844a0e | 2011-05-13 01:00:03 -0700 | [diff] [blame] | 2269 | F: drivers/net/ethernet/brocade/bna/ |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2270 | |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 2271 | BSG (block layer generic sg v4 driver) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2272 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 2273 | L: linux-scsi@vger.kernel.org |
| 2274 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2275 | F: block/bsg.c |
| 2276 | F: include/linux/bsg.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2277 | F: include/uapi/linux/bsg.h |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 2278 | |
Clemens Ladisch | af39917 | 2011-01-10 16:32:54 +0100 | [diff] [blame] | 2279 | BT87X AUDIO DRIVER |
| 2280 | M: Clemens Ladisch <clemens@ladisch.de> |
| 2281 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 2282 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 2283 | S: Maintained |
| 2284 | F: Documentation/sound/alsa/Bt87x.txt |
| 2285 | F: sound/pci/bt87x.c |
| 2286 | |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 2287 | BT8XXGPIO DRIVER |
Michael Büsch | eb032b9 | 2011-07-04 20:50:05 +0200 | [diff] [blame] | 2288 | M: Michael Buesch <m@bues.ch> |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 2289 | W: http://bu3sch.de/btgpio.php |
| 2290 | S: Maintained |
Joe Perches | 72dbb70 | 2012-01-10 15:08:46 -0800 | [diff] [blame] | 2291 | F: drivers/gpio/gpio-bt8xx.c |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 2292 | |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 2293 | BTRFS FILE SYSTEM |
Chris Mason | c0778e2 | 2013-12-03 20:16:03 -0500 | [diff] [blame] | 2294 | M: Chris Mason <clm@fb.com> |
| 2295 | M: Josef Bacik <jbacik@fb.com> |
Chris Mason | 4e0c4a4 | 2014-12-30 09:00:02 -0800 | [diff] [blame] | 2296 | M: David Sterba <dsterba@suse.cz> |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 2297 | L: linux-btrfs@vger.kernel.org |
| 2298 | W: http://btrfs.wiki.kernel.org/ |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 2299 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
Liu Bo | 9c10640 | 2012-06-14 02:23:25 -0600 | [diff] [blame] | 2300 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 2301 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2302 | F: Documentation/filesystems/btrfs.txt |
| 2303 | F: fs/btrfs/ |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 2304 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | BTTV VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 2306 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2307 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 96b6aba | 2005-06-28 20:45:20 -0700 | [diff] [blame] | 2308 | W: http://linuxtv.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 2309 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | f96236e | 2012-11-02 11:14:18 -0200 | [diff] [blame] | 2310 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2311 | F: Documentation/video4linux/bttv/ |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 2312 | F: drivers/media/pci/bt8xx/bttv* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2313 | |
Khalid Aziz | 1f34923 | 2013-06-25 09:57:27 -0600 | [diff] [blame] | 2314 | BUSLOGIC SCSI DRIVER |
| 2315 | M: Khalid Aziz <khalid@gonehiking.org> |
| 2316 | L: linux-scsi@vger.kernel.org |
| 2317 | S: Maintained |
| 2318 | F: drivers/scsi/BusLogic.* |
| 2319 | F: drivers/scsi/FlashPoint.* |
| 2320 | |
Clemens Ladisch | af39917 | 2011-01-10 16:32:54 +0100 | [diff] [blame] | 2321 | C-MEDIA CMI8788 DRIVER |
| 2322 | M: Clemens Ladisch <clemens@ladisch.de> |
| 2323 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 2324 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 2325 | S: Maintained |
| 2326 | F: sound/pci/oxygen/ |
| 2327 | |
Mark Salter | 2141355 | 2011-10-04 11:21:42 -0400 | [diff] [blame] | 2328 | C6X ARCHITECTURE |
| 2329 | M: Mark Salter <msalter@redhat.com> |
| 2330 | M: Aurelien Jacquiot <a-jacquiot@ti.com> |
| 2331 | L: linux-c6x-dev@linux-c6x.org |
| 2332 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page |
| 2333 | S: Maintained |
| 2334 | F: arch/c6x/ |
| 2335 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 2336 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2337 | M: David Howells <dhowells@redhat.com> |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 2338 | L: linux-cachefs@redhat.com |
| 2339 | S: Supported |
| 2340 | F: Documentation/filesystems/caching/cachefiles.txt |
| 2341 | F: fs/cachefiles/ |
| 2342 | |
Hans Verkuil | c815ca3 | 2012-11-23 07:05:54 -0300 | [diff] [blame] | 2343 | CADET FM/AM RADIO RECEIVER DRIVER |
| 2344 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 2345 | L: linux-media@vger.kernel.org |
| 2346 | T: git git://linuxtv.org/media_tree.git |
| 2347 | W: http://linuxtv.org |
| 2348 | S: Maintained |
| 2349 | F: drivers/media/radio/radio-cadet* |
| 2350 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 2351 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2352 | M: Jonathan Corbet <corbet@lwn.net> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2353 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 2354 | T: git git://linuxtv.org/media_tree.git |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 2355 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2356 | F: Documentation/video4linux/cafe_ccic |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 2357 | F: drivers/media/platform/marvell-ccic/ |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 2358 | |
Joe Perches | 201b6ba | 2010-09-07 20:33:24 +0000 | [diff] [blame] | 2359 | CAIF NETWORK LAYER |
sjur.brandeland@stericsson.com | 5c574f5 | 2013-04-22 23:57:00 +0000 | [diff] [blame] | 2360 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
Joe Perches | 201b6ba | 2010-09-07 20:33:24 +0000 | [diff] [blame] | 2361 | L: netdev@vger.kernel.org |
| 2362 | S: Supported |
| 2363 | F: Documentation/networking/caif/ |
| 2364 | F: drivers/net/caif/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2365 | F: include/uapi/linux/caif/ |
Joe Perches | 201b6ba | 2010-09-07 20:33:24 +0000 | [diff] [blame] | 2366 | F: include/net/caif/ |
| 2367 | F: net/caif/ |
| 2368 | |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 2369 | CALGARY x86-64 IOMMU |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2370 | M: Muli Ben-Yehuda <muli@il.ibm.com> |
| 2371 | M: "Jon D. Mason" <jdmason@kudzu.us> |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 2372 | L: discuss@x86-64.org |
| 2373 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2374 | F: arch/x86/kernel/pci-calgary_64.c |
| 2375 | F: arch/x86/kernel/tce_64.c |
| 2376 | F: arch/x86/include/asm/calgary.h |
| 2377 | F: arch/x86/include/asm/tce.h |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 2378 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2379 | CAN NETWORK LAYER |
Oliver Hartkopp | 8d15d38 | 2010-03-06 08:31:50 +0000 | [diff] [blame] | 2380 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
Marc Kleine-Budde | f7214cf | 2015-03-06 09:00:38 +0100 | [diff] [blame] | 2381 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
Marc Kleine-Budde | 1caa60b | 2011-10-17 09:31:59 +0000 | [diff] [blame] | 2382 | L: linux-can@vger.kernel.org |
Marc Kleine-Budde | 84b0d71 | 2015-03-06 08:58:33 +0100 | [diff] [blame] | 2383 | W: https://github.com/linux-can |
Marc Kleine-Budde | 870482a | 2015-01-15 16:56:26 +0100 | [diff] [blame] | 2384 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
| 2385 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2386 | S: Maintained |
John Whitmore | f35f6c8 | 2013-12-06 12:49:08 +0000 | [diff] [blame] | 2387 | F: Documentation/networking/can.txt |
Oliver Hartkopp | 8d15d38 | 2010-03-06 08:31:50 +0000 | [diff] [blame] | 2388 | F: net/can/ |
Oliver Hartkopp | 8d15d38 | 2010-03-06 08:31:50 +0000 | [diff] [blame] | 2389 | F: include/linux/can/core.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2390 | F: include/uapi/linux/can.h |
| 2391 | F: include/uapi/linux/can/bcm.h |
| 2392 | F: include/uapi/linux/can/raw.h |
| 2393 | F: include/uapi/linux/can/gw.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2394 | |
Wolfgang Grandegger | 4261a20 | 2009-05-15 23:39:28 +0000 | [diff] [blame] | 2395 | CAN NETWORK DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2396 | M: Wolfgang Grandegger <wg@grandegger.com> |
Oliver Hartkopp | ec78213 | 2012-01-03 08:40:28 +0000 | [diff] [blame] | 2397 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
Marc Kleine-Budde | 1caa60b | 2011-10-17 09:31:59 +0000 | [diff] [blame] | 2398 | L: linux-can@vger.kernel.org |
Marc Kleine-Budde | 84b0d71 | 2015-03-06 08:58:33 +0100 | [diff] [blame] | 2399 | W: https://github.com/linux-can |
Marc Kleine-Budde | 870482a | 2015-01-15 16:56:26 +0100 | [diff] [blame] | 2400 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
| 2401 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git |
Wolfgang Grandegger | 4261a20 | 2009-05-15 23:39:28 +0000 | [diff] [blame] | 2402 | S: Maintained |
Oliver Hartkopp | 8d15d38 | 2010-03-06 08:31:50 +0000 | [diff] [blame] | 2403 | F: drivers/net/can/ |
| 2404 | F: include/linux/can/dev.h |
Oliver Hartkopp | 8d15d38 | 2010-03-06 08:31:50 +0000 | [diff] [blame] | 2405 | F: include/linux/can/platform/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2406 | F: include/uapi/linux/can/error.h |
| 2407 | F: include/uapi/linux/can/netlink.h |
Wolfgang Grandegger | 4261a20 | 2009-05-15 23:39:28 +0000 | [diff] [blame] | 2408 | |
James Morris | 95d16c7 | 2012-03-16 12:05:48 +1100 | [diff] [blame] | 2409 | CAPABILITIES |
| 2410 | M: Serge Hallyn <serge.hallyn@canonical.com> |
| 2411 | L: linux-security-module@vger.kernel.org |
Joe Perches | 6305902 | 2012-06-07 14:21:10 -0700 | [diff] [blame] | 2412 | S: Supported |
James Morris | 95d16c7 | 2012-03-16 12:05:48 +1100 | [diff] [blame] | 2413 | F: include/linux/capability.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2414 | F: include/uapi/linux/capability.h |
James Morris | 95d16c7 | 2012-03-16 12:05:48 +1100 | [diff] [blame] | 2415 | F: security/capability.c |
Joe Perches | 6305902 | 2012-06-07 14:21:10 -0700 | [diff] [blame] | 2416 | F: security/commoncap.c |
James Morris | 38a9411 | 2012-04-09 11:03:36 +1000 | [diff] [blame] | 2417 | F: kernel/capability.c |
James Morris | 95d16c7 | 2012-03-16 12:05:48 +1100 | [diff] [blame] | 2418 | |
Kevin Tsai | b84894c | 2015-01-15 17:41:04 -0800 | [diff] [blame] | 2419 | CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER |
| 2420 | M: Kevin Tsai <ktsai@capellamicro.com> |
| 2421 | S: Maintained |
| 2422 | F: drivers/iio/light/cm* |
| 2423 | F: Documentation/devicetree/bindings/i2c/trivial-devices.txt |
| 2424 | |
Varka Bhadram | ef0bbac | 2014-10-29 16:15:22 +0530 | [diff] [blame] | 2425 | CC2520 IEEE-802.15.4 RADIO DRIVER |
| 2426 | M: Varka Bhadram <varkabhadram@gmail.com> |
| 2427 | L: linux-wpan@vger.kernel.org |
| 2428 | S: Maintained |
| 2429 | F: drivers/net/ieee802154/cc2520.c |
| 2430 | F: include/linux/spi/cc2520.h |
| 2431 | F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt |
| 2432 | |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 2433 | CELL BROADBAND ENGINE ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2434 | M: Arnd Bergmann <arnd@arndb.de> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 2435 | L: linuxppc-dev@lists.ozlabs.org |
| 2436 | L: cbe-oss-dev@lists.ozlabs.org |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 2437 | W: http://www.ibm.com/developerworks/power/cell/ |
| 2438 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2439 | F: arch/powerpc/include/asm/cell*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2440 | F: arch/powerpc/include/asm/spu*.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2441 | F: arch/powerpc/include/uapi/asm/spu*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2442 | F: arch/powerpc/oprofile/*cell* |
| 2443 | F: arch/powerpc/platforms/cell/ |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 2444 | |
Sage Weil | 9030aaf | 2009-10-06 11:31:15 -0700 | [diff] [blame] | 2445 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
Sage Weil | 0f5417c | 2015-02-19 10:10:40 -0800 | [diff] [blame] | 2446 | M: Yan, Zheng <zyan@redhat.com> |
| 2447 | M: Sage Weil <sage@redhat.com> |
Sage Weil | 82593f8 | 2010-03-29 09:53:23 -0700 | [diff] [blame] | 2448 | L: ceph-devel@vger.kernel.org |
Sage Weil | 09d9032 | 2012-07-30 16:27:48 -0700 | [diff] [blame] | 2449 | W: http://ceph.com/ |
Sage Weil | fb99f88 | 2009-12-03 15:04:08 -0800 | [diff] [blame] | 2450 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
Sage Weil | 9030aaf | 2009-10-06 11:31:15 -0700 | [diff] [blame] | 2451 | S: Supported |
| 2452 | F: Documentation/filesystems/ceph.txt |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 2453 | F: fs/ceph/ |
| 2454 | F: net/ceph/ |
| 2455 | F: include/linux/ceph/ |
| 2456 | F: include/linux/crush/ |
Sage Weil | 9030aaf | 2009-10-06 11:31:15 -0700 | [diff] [blame] | 2457 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 2458 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 2459 | L: linux-usb@vger.kernel.org |
David Vrabel | 10c6c9c | 2010-10-25 14:05:36 +0100 | [diff] [blame] | 2460 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2461 | F: Documentation/usb/WUSB-Design-overview.txt |
| 2462 | F: Documentation/usb/wusb-cbaf |
David Vrabel | 355ffe6 | 2009-12-22 13:13:28 +0000 | [diff] [blame] | 2463 | F: drivers/usb/host/hwa-hc.c |
| 2464 | F: drivers/usb/host/whci/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2465 | F: drivers/usb/wusbcore/ |
| 2466 | F: include/linux/usb/wusb* |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 2467 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 2468 | CFAG12864B LCD DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2469 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 2470 | W: http://miguelojeda.es/auxdisplay.htm |
| 2471 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 2472 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2473 | F: drivers/auxdisplay/cfag12864b.c |
| 2474 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 2475 | |
| 2476 | CFAG12864BFB LCD FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2477 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 2478 | W: http://miguelojeda.es/auxdisplay.htm |
| 2479 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 2480 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2481 | F: drivers/auxdisplay/cfag12864bfb.c |
| 2482 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 2483 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 2484 | CFG80211 and NL80211 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2485 | M: Johannes Berg <johannes@sipsolutions.net> |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 2486 | L: linux-wireless@vger.kernel.org |
Johannes Berg | ce46657 | 2012-06-05 15:42:55 +0200 | [diff] [blame] | 2487 | W: http://wireless.kernel.org/ |
| 2488 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
| 2489 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 2490 | S: Maintained |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2491 | F: include/uapi/linux/nl80211.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2492 | F: include/net/cfg80211.h |
| 2493 | F: net/wireless/* |
| 2494 | X: net/wireless/wext* |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 2495 | |
Greg Kroah-Hartman | 46e6426 | 2011-10-30 07:34:04 -0700 | [diff] [blame] | 2496 | CHAR and MISC DRIVERS |
| 2497 | M: Arnd Bergmann <arnd@arndb.de> |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 2498 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Greg Kroah-Hartman | 46e6426 | 2011-10-30 07:34:04 -0700 | [diff] [blame] | 2499 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 2500 | S: Supported |
Greg Kroah-Hartman | 46e6426 | 2011-10-30 07:34:04 -0700 | [diff] [blame] | 2501 | F: drivers/char/* |
| 2502 | F: drivers/misc/* |
Robert P. J. Day | 471322a | 2014-05-16 04:41:09 -0400 | [diff] [blame] | 2503 | F: include/linux/miscdevice.h |
Greg Kroah-Hartman | 46e6426 | 2011-10-30 07:34:04 -0700 | [diff] [blame] | 2504 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2505 | CHECKPATCH |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2506 | M: Andy Whitcroft <apw@canonical.com> |
Joe Perches | 10d83f0 | 2013-02-21 16:44:15 -0800 | [diff] [blame] | 2507 | M: Joe Perches <joe@perches.com> |
| 2508 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2509 | F: scripts/checkpatch.pl |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 2510 | |
Harry Wei | f8407f2 | 2011-02-25 14:44:15 -0800 | [diff] [blame] | 2511 | CHINESE DOCUMENTATION |
| 2512 | M: Harry Wei <harryxiyou@gmail.com> |
Joe Perches | 9740153 | 2012-12-17 16:00:00 -0800 | [diff] [blame] | 2513 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
Harry Wei | f8407f2 | 2011-02-25 14:44:15 -0800 | [diff] [blame] | 2514 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
| 2515 | S: Maintained |
| 2516 | F: Documentation/zh_CN/ |
| 2517 | |
Alexander Shishkin | 2721ea2 | 2012-05-11 17:25:59 +0300 | [diff] [blame] | 2518 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
Greg Kroah-Hartman | eee52f9 | 2013-12-02 15:43:48 -0800 | [diff] [blame] | 2519 | M: Peter Chen <Peter.Chen@freescale.com> |
Peter Chen | 8373856 | 2015-03-23 19:57:36 +0800 | [diff] [blame] | 2520 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
Alexander Shishkin | 2721ea2 | 2012-05-11 17:25:59 +0300 | [diff] [blame] | 2521 | L: linux-usb@vger.kernel.org |
| 2522 | S: Maintained |
| 2523 | F: drivers/usb/chipidea/ |
| 2524 | |
Hans de Goede | a93ad65 | 2015-03-21 20:40:45 -0700 | [diff] [blame] | 2525 | CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER |
| 2526 | M: Hans de Goede <hdegoede@redhat.com> |
| 2527 | L: linux-input@vger.kernel.org |
| 2528 | S: Maintained |
| 2529 | F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt |
| 2530 | F: drivers/input/touchscreen/chipone_icn8318.c |
| 2531 | |
Olof Johansson | ab04310 | 2013-11-07 14:25:45 -0800 | [diff] [blame] | 2532 | CHROME HARDWARE PLATFORM SUPPORT |
| 2533 | M: Olof Johansson <olof@lixom.net> |
| 2534 | S: Maintained |
| 2535 | F: drivers/platform/chrome/ |
| 2536 | |
Vasanthy Kolluri | 641cb85 | 2010-03-18 16:20:04 +0000 | [diff] [blame] | 2537 | CISCO VIC ETHERNET NIC DRIVER |
Vasanthy Kolluri | 2360d2e | 2011-02-04 16:17:26 +0000 | [diff] [blame] | 2538 | M: Christian Benvenuti <benve@cisco.com> |
govindarajulu.v | 001e1c1 | 2013-09-04 11:17:18 +0530 | [diff] [blame] | 2539 | M: Sujith Sankar <ssujith@cisco.com> |
Govindarajulu Varadarajan | c327e8f | 2014-05-20 03:14:32 +0530 | [diff] [blame] | 2540 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
Neel Patel | 5c6652f | 2012-02-03 08:25:25 +0000 | [diff] [blame] | 2541 | M: Neel Patel <neepatel@cisco.com> |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 2542 | S: Supported |
Jeff Kirsher | a6a5580 | 2011-05-13 22:20:35 -0700 | [diff] [blame] | 2543 | F: drivers/net/ethernet/cisco/enic/ |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 2544 | |
Upinder Malhi | e3cf00d | 2013-09-10 03:38:16 +0000 | [diff] [blame] | 2545 | CISCO VIC LOW LATENCY NIC DRIVER |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 2546 | M: Upinder Malhi <umalhi@cisco.com> |
| 2547 | S: Supported |
| 2548 | F: drivers/infiniband/hw/usnic |
Upinder Malhi | e3cf00d | 2013-09-10 03:38:16 +0000 | [diff] [blame] | 2549 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 2550 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
H Hartley Sweeten | 5587912 | 2011-06-09 15:00:21 -0700 | [diff] [blame] | 2551 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 2552 | L: netdev@vger.kernel.org |
| 2553 | S: Maintained |
Jeff Kirsher | 57d0b7a | 2011-07-16 23:50:52 -0700 | [diff] [blame] | 2554 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 2555 | |
Mark Brown | 3d4cfdc | 2014-02-04 20:28:12 +0000 | [diff] [blame] | 2556 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
| 2557 | M: Brian Austin <brian.austin@cirrus.com> |
| 2558 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> |
| 2559 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 2560 | S: Maintained |
| 2561 | F: sound/soc/codecs/cs* |
| 2562 | |
Konrad Rzeszutek Wilk | 94574d9 | 2012-03-19 11:47:18 -0400 | [diff] [blame] | 2563 | CLEANCACHE API |
| 2564 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
| 2565 | L: linux-kernel@vger.kernel.org |
| 2566 | S: Maintained |
| 2567 | F: mm/cleancache.c |
| 2568 | F: include/linux/cleancache.h |
| 2569 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 2570 | CLK API |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2571 | M: Russell King <linux@arm.linux.org.uk> |
Paul Walmsley | aa571b1 | 2015-03-25 18:32:59 +0000 | [diff] [blame] | 2572 | L: linux-clk@vger.kernel.org |
Joe Perches | 3741704 | 2012-03-23 15:01:58 -0700 | [diff] [blame] | 2573 | S: Maintained |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 2574 | F: include/linux/clk.h |
| 2575 | |
John Stultz | 9222d24 | 2013-07-16 16:45:31 +0200 | [diff] [blame] | 2576 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
| 2577 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
| 2578 | M: Thomas Gleixner <tglx@linutronix.de> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 2579 | L: linux-kernel@vger.kernel.org |
John Stultz | 9222d24 | 2013-07-16 16:45:31 +0200 | [diff] [blame] | 2580 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
| 2581 | S: Supported |
| 2582 | F: drivers/clocksource |
| 2583 | |
Abhijeet Joglekar | 5df6d73 | 2009-04-17 18:33:26 -0700 | [diff] [blame] | 2584 | CISCO FCOE HBA DRIVER |
Hiral Patel | 8fc89a7 | 2012-12-10 01:21:29 -0800 | [diff] [blame] | 2585 | M: Hiral Patel <hiralpat@cisco.com> |
| 2586 | M: Suma Ramars <sramars@cisco.com> |
Abhijeet Joglekar | d7e01dc | 2011-06-13 21:21:17 -0700 | [diff] [blame] | 2587 | M: Brian Uchino <buchino@cisco.com> |
Abhijeet Joglekar | 5df6d73 | 2009-04-17 18:33:26 -0700 | [diff] [blame] | 2588 | L: linux-scsi@vger.kernel.org |
| 2589 | S: Supported |
Joe Perches | 2a99921 | 2009-06-16 15:34:09 -0700 | [diff] [blame] | 2590 | F: drivers/scsi/fnic/ |
Abhijeet Joglekar | 5df6d73 | 2009-04-17 18:33:26 -0700 | [diff] [blame] | 2591 | |
Thadeu Lima de Souza Cascardo | 529aa8c | 2009-12-21 16:20:01 -0800 | [diff] [blame] | 2592 | CMPC ACPI DRIVER |
| 2593 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> |
| 2594 | M: Daniel Oliveira Nascimento <don@syst.com.br> |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 2595 | L: platform-driver-x86@vger.kernel.org |
Thadeu Lima de Souza Cascardo | 529aa8c | 2009-12-21 16:20:01 -0800 | [diff] [blame] | 2596 | S: Supported |
| 2597 | F: drivers/platform/x86/classmate-laptop.c |
| 2598 | |
Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 2599 | COCCINELLE/Semantic Patches (SmPL) |
Nicolas Palix | 26de9c2 | 2012-09-20 22:52:42 +0200 | [diff] [blame] | 2600 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 2601 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
Nicolas Palix | 26de9c2 | 2012-09-20 22:52:42 +0200 | [diff] [blame] | 2602 | M: Nicolas Palix <nicolas.palix@imag.fr> |
Nicolas Palix | c00b511 | 2013-06-06 23:39:53 +0200 | [diff] [blame] | 2603 | M: Michal Marek <mmarek@suse.cz> |
Nicolas Palix | 26de9c2 | 2012-09-20 22:52:42 +0200 | [diff] [blame] | 2604 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
Nicolas Palix | c00b511 | 2013-06-06 23:39:53 +0200 | [diff] [blame] | 2605 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 2606 | W: http://coccinelle.lip6.fr/ |
| 2607 | S: Supported |
Nicolas Palix | 4b92b2a | 2013-06-20 13:10:55 +0200 | [diff] [blame] | 2608 | F: Documentation/coccinelle.txt |
Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 2609 | F: scripts/coccinelle/ |
| 2610 | F: scripts/coccicheck |
| 2611 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2612 | CODA FILE SYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2613 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2614 | M: coda@cs.cmu.edu |
| 2615 | L: codalist@coda.cs.cmu.edu |
| 2616 | W: http://www.coda.cs.cmu.edu/ |
| 2617 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2618 | F: Documentation/filesystems/coda.txt |
| 2619 | F: fs/coda/ |
| 2620 | F: include/linux/coda*.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2621 | F: include/uapi/linux/coda*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2622 | |
Philipp Zabel | 0b14261 | 2014-11-04 07:26:35 -0300 | [diff] [blame] | 2623 | CODA V4L2 MEM2MEM DRIVER |
| 2624 | M: Philipp Zabel <p.zabel@pengutronix.de> |
| 2625 | L: linux-media@vger.kernel.org |
| 2626 | S: Maintained |
| 2627 | F: Documentation/devicetree/bindings/media/coda.txt |
| 2628 | F: drivers/media/platform/coda/ |
| 2629 | |
Mike Turquette | 7704add | 2012-05-02 18:37:45 -0700 | [diff] [blame] | 2630 | COMMON CLK FRAMEWORK |
Mike Turquette | 7704add | 2012-05-02 18:37:45 -0700 | [diff] [blame] | 2631 | M: Mike Turquette <mturquette@linaro.org> |
Michael Turquette | f956165 | 2014-11-12 16:43:47 -0800 | [diff] [blame] | 2632 | M: Stephen Boyd <sboyd@codeaurora.org> |
Paul Walmsley | aa571b1 | 2015-03-25 18:32:59 +0000 | [diff] [blame] | 2633 | L: linux-clk@vger.kernel.org |
Michael Turquette | baeb0d9 | 2014-11-13 17:18:20 -0800 | [diff] [blame] | 2634 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git |
Mike Turquette | 7704add | 2012-05-02 18:37:45 -0700 | [diff] [blame] | 2635 | S: Maintained |
Stephen Warren | 60bea3b | 2013-06-05 09:50:30 -0600 | [diff] [blame] | 2636 | F: drivers/clk/ |
| 2637 | X: drivers/clk/clkdev.c |
Mike Turquette | 7704add | 2012-05-02 18:37:45 -0700 | [diff] [blame] | 2638 | F: include/linux/clk-pr* |
Stephen Warren | 60bea3b | 2013-06-05 09:50:30 -0600 | [diff] [blame] | 2639 | F: include/linux/clk/ |
Mike Turquette | 7704add | 2012-05-02 18:37:45 -0700 | [diff] [blame] | 2640 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2641 | COMMON INTERNET FILE SYSTEM (CIFS) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2642 | M: Steve French <sfrench@samba.org> |
Jeff Layton | 51223df | 2010-06-06 08:05:58 -0400 | [diff] [blame] | 2643 | L: linux-cifs@vger.kernel.org |
KOSAKI Motohiro | d1f2895 | 2009-12-14 18:00:52 -0800 | [diff] [blame] | 2644 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2645 | W: http://linux-cifs.samba.org/ |
Kevin Cernekee | bb1d5dd | 2014-11-10 13:09:24 -0800 | [diff] [blame] | 2646 | T: git git://git.samba.org/sfrench/cifs-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2647 | S: Supported |
Joe Perches | ec421a7 | 2014-08-08 14:24:59 -0700 | [diff] [blame] | 2648 | F: Documentation/filesystems/cifs/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2649 | F: fs/cifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2650 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2651 | COMPACTPCI HOTPLUG CORE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2652 | M: Scott Murray <scott@spiteful.org> |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 2653 | L: linux-pci@vger.kernel.org |
Joe Perches | 82c4dfc | 2009-07-29 15:04:27 -0700 | [diff] [blame] | 2654 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2655 | F: drivers/pci/hotplug/cpci_hotplug* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2656 | |
| 2657 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2658 | M: Scott Murray <scott@spiteful.org> |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 2659 | L: linux-pci@vger.kernel.org |
Joe Perches | 82c4dfc | 2009-07-29 15:04:27 -0700 | [diff] [blame] | 2660 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2661 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2662 | |
| 2663 | COMPACTPCI HOTPLUG GENERIC DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2664 | M: Scott Murray <scott@spiteful.org> |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 2665 | L: linux-pci@vger.kernel.org |
Joe Perches | 82c4dfc | 2009-07-29 15:04:27 -0700 | [diff] [blame] | 2666 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2667 | F: drivers/pci/hotplug/cpcihp_generic.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2668 | |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 2669 | COMPAL LAPTOP SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2670 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 2671 | L: platform-driver-x86@vger.kernel.org |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 2672 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2673 | F: drivers/platform/x86/compal-laptop.c |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 2674 | |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 2675 | CONEXANT ACCESSRUNNER USB DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2676 | M: Simon Arlott <cxacru@fire.lp0.eu> |
Simon Arlott | 9ae5e3b | 2007-05-09 08:38:10 +0200 | [diff] [blame] | 2677 | L: accessrunner-general@lists.sourceforge.net |
| 2678 | W: http://accessrunner.sourceforge.net/ |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 2679 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2680 | F: drivers/usb/atm/cxacru.c |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 2681 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2682 | CONFIGFS |
Joel Becker | d6351db | 2011-01-07 18:10:32 -0800 | [diff] [blame] | 2683 | M: Joel Becker <jlbec@evilplan.org> |
| 2684 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2685 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2686 | F: fs/configfs/ |
| 2687 | F: include/linux/configfs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2688 | |
Evgeniy Polyakov | acb9c1b | 2009-07-21 12:43:51 -0700 | [diff] [blame] | 2689 | CONNECTOR |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2690 | M: Evgeniy Polyakov <zbr@ioremap.net> |
Evgeniy Polyakov | acb9c1b | 2009-07-21 12:43:51 -0700 | [diff] [blame] | 2691 | L: netdev@vger.kernel.org |
| 2692 | S: Maintained |
| 2693 | F: drivers/connector/ |
| 2694 | |
Tejun Heo | a3e3354 | 2014-05-13 15:49:58 -0400 | [diff] [blame] | 2695 | CONTROL GROUP (CGROUP) |
Paul Menage | 860ca0e | 2011-11-18 14:22:09 -0800 | [diff] [blame] | 2696 | M: Tejun Heo <tj@kernel.org> |
Li Zefan | ad50c15 | 2012-03-29 08:53:30 -0700 | [diff] [blame] | 2697 | M: Li Zefan <lizefan@huawei.com> |
Tejun Heo | 4d20567 | 2015-06-12 17:15:23 -0500 | [diff] [blame^] | 2698 | M: Johannes Weiner <hannes@cmpxchg.org> |
KAMEZAWA Hiroyuki | 1234031 | 2011-11-15 14:35:59 -0800 | [diff] [blame] | 2699 | L: cgroups@vger.kernel.org |
Paul Menage | 860ca0e | 2011-11-18 14:22:09 -0800 | [diff] [blame] | 2700 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 2701 | S: Maintained |
Tejun Heo | a3e3354 | 2014-05-13 15:49:58 -0400 | [diff] [blame] | 2702 | F: Documentation/cgroups/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2703 | F: include/linux/cgroup* |
| 2704 | F: kernel/cgroup* |
Tejun Heo | a3e3354 | 2014-05-13 15:49:58 -0400 | [diff] [blame] | 2705 | |
| 2706 | CONTROL GROUP - CPUSET |
| 2707 | M: Li Zefan <lizefan@huawei.com> |
| 2708 | L: cgroups@vger.kernel.org |
| 2709 | W: http://www.bullopensource.org/cpuset/ |
| 2710 | W: http://oss.sgi.com/projects/cpusets/ |
| 2711 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
| 2712 | S: Maintained |
| 2713 | F: Documentation/cgroups/cpusets.txt |
| 2714 | F: include/linux/cpuset.h |
| 2715 | F: kernel/cpuset.c |
| 2716 | |
| 2717 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) |
| 2718 | M: Johannes Weiner <hannes@cmpxchg.org> |
| 2719 | M: Michal Hocko <mhocko@suse.cz> |
| 2720 | L: cgroups@vger.kernel.org |
| 2721 | L: linux-mm@kvack.org |
| 2722 | S: Maintained |
| 2723 | F: mm/memcontrol.c |
Johannes Weiner | 5d1ea48 | 2014-12-10 15:44:55 -0800 | [diff] [blame] | 2724 | F: mm/swap_cgroup.c |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 2725 | |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 2726 | CORETEMP HARDWARE MONITORING DRIVER |
Fenghua Yu | 9685912 | 2010-08-25 15:42:14 +0200 | [diff] [blame] | 2727 | M: Fenghua Yu <fenghua.yu@intel.com> |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 2728 | L: lm-sensors@lm-sensors.org |
| 2729 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2730 | F: Documentation/hwmon/coretemp |
| 2731 | F: drivers/hwmon/coretemp.c |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 2732 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2733 | COSA/SRP SYNC SERIAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2734 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2735 | W: http://www.fi.muni.cz/~kas/cosa/ |
| 2736 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2737 | F: drivers/net/wan/cosa* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2738 | |
Florian Fainelli | 4371ee3 | 2009-06-01 02:43:17 -0700 | [diff] [blame] | 2739 | CPMAC ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2740 | M: Florian Fainelli <florian@openwrt.org> |
Florian Fainelli | 4371ee3 | 2009-06-01 02:43:17 -0700 | [diff] [blame] | 2741 | L: netdev@vger.kernel.org |
| 2742 | S: Maintained |
Jeff Kirsher | b544dba | 2011-06-14 12:56:50 -0700 | [diff] [blame] | 2743 | F: drivers/net/ethernet/ti/cpmac.c |
Florian Fainelli | 4371ee3 | 2009-06-01 02:43:17 -0700 | [diff] [blame] | 2744 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | CPU FREQUENCY DRIVERS |
Rafael J. Wysocki | 49db190 | 2013-10-09 01:47:53 +0200 | [diff] [blame] | 2746 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
viresh kumar | 45c009a | 2013-04-26 12:53:16 +0000 | [diff] [blame] | 2747 | M: Viresh Kumar <viresh.kumar@linaro.org> |
Rafael J. Wysocki | a6c072c | 2012-05-11 21:35:45 +0200 | [diff] [blame] | 2748 | L: linux-pm@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2749 | S: Maintained |
Viresh Kumar | 27209d9 | 2013-05-29 12:23:14 +0530 | [diff] [blame] | 2750 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
| 2751 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2752 | F: drivers/cpufreq/ |
| 2753 | F: include/linux/cpufreq.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2754 | |
Viresh Kumar | 8a67f0e | 2013-04-01 12:57:49 +0000 | [diff] [blame] | 2755 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
| 2756 | M: Viresh Kumar <viresh.kumar@linaro.org> |
Sudeep Holla | 171d0ba | 2014-02-11 11:42:32 +0000 | [diff] [blame] | 2757 | M: Sudeep Holla <sudeep.holla@arm.com> |
Viresh Kumar | 8a67f0e | 2013-04-01 12:57:49 +0000 | [diff] [blame] | 2758 | L: linux-pm@vger.kernel.org |
| 2759 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php |
| 2760 | S: Maintained |
| 2761 | F: drivers/cpufreq/arm_big_little.h |
| 2762 | F: drivers/cpufreq/arm_big_little.c |
| 2763 | F: drivers/cpufreq/arm_big_little_dt.c |
| 2764 | |
Lorenzo Pieralisi | 14d2c34 | 2013-06-12 17:40:01 +0200 | [diff] [blame] | 2765 | CPUIDLE DRIVER - ARM BIG LITTLE |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 2766 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
| 2767 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
| 2768 | L: linux-pm@vger.kernel.org |
| 2769 | L: linux-arm-kernel@lists.infradead.org |
Joe Perches | cea8321 | 2014-03-03 15:38:38 -0800 | [diff] [blame] | 2770 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 2771 | S: Maintained |
| 2772 | F: drivers/cpuidle/cpuidle-big_little.c |
Lorenzo Pieralisi | 14d2c34 | 2013-06-12 17:40:01 +0200 | [diff] [blame] | 2773 | |
Bartlomiej Zolnierkiewicz | 0c570c1 | 2014-12-02 16:41:35 +0100 | [diff] [blame] | 2774 | CPUIDLE DRIVER - ARM EXYNOS |
| 2775 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
| 2776 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
| 2777 | M: Kukjin Kim <kgene@kernel.org> |
| 2778 | L: linux-pm@vger.kernel.org |
| 2779 | L: linux-samsung-soc@vger.kernel.org |
| 2780 | S: Supported |
| 2781 | F: drivers/cpuidle/cpuidle-exynos.c |
| 2782 | F: arch/arm/mach-exynos/pm.c |
| 2783 | |
Daniel Lezcano | a8e39c3 | 2013-04-26 11:05:44 +0000 | [diff] [blame] | 2784 | CPUIDLE DRIVERS |
Rafael J. Wysocki | 49db190 | 2013-10-09 01:47:53 +0200 | [diff] [blame] | 2785 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
Daniel Lezcano | a8e39c3 | 2013-04-26 11:05:44 +0000 | [diff] [blame] | 2786 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
| 2787 | L: linux-pm@vger.kernel.org |
| 2788 | S: Maintained |
Joe Perches | cea8321 | 2014-03-03 15:38:38 -0800 | [diff] [blame] | 2789 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
Daniel Lezcano | a8e39c3 | 2013-04-26 11:05:44 +0000 | [diff] [blame] | 2790 | F: drivers/cpuidle/* |
| 2791 | F: include/linux/cpuidle.h |
| 2792 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2793 | CPUID/MSR DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2794 | M: "H. Peter Anvin" <hpa@zytor.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2795 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2796 | F: arch/x86/kernel/cpuid.c |
| 2797 | F: arch/x86/kernel/msr.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2798 | |
Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 2799 | CPU POWER MONITORING SUBSYSTEM |
Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 2800 | M: Thomas Renninger <trenn@suse.de> |
Thomas Renninger | 103f179 | 2014-07-22 16:06:01 +0200 | [diff] [blame] | 2801 | L: linux-pm@vger.kernel.org |
Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 2802 | S: Maintained |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 2803 | F: tools/power/cpupower/ |
Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 2804 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2805 | CRAMFS FILESYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2806 | W: http://sourceforge.net/projects/cramfs/ |
Michael Opdenacker | 54886a7 | 2013-11-12 15:08:35 -0800 | [diff] [blame] | 2807 | S: Orphan / Obsolete |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2808 | F: Documentation/filesystems/cramfs.txt |
| 2809 | F: fs/cramfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2810 | |
| 2811 | CRIS PORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2812 | M: Mikael Starvik <starvik@axis.com> |
| 2813 | M: Jesper Nilsson <jesper.nilsson@axis.com> |
Jesper Nilsson | 9937ac0 | 2009-06-24 09:33:19 +0200 | [diff] [blame] | 2814 | L: linux-cris-kernel@axis.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2815 | W: http://developer.axis.com |
| 2816 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2817 | F: arch/cris/ |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 2818 | F: drivers/tty/serial/crisv10.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2819 | |
| 2820 | CRYPTO API |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2821 | M: Herbert Xu <herbert@gondor.apana.org.au> |
| 2822 | M: "David S. Miller" <davem@davemloft.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2823 | L: linux-crypto@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 2824 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2825 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2826 | F: Documentation/crypto/ |
Stephan Mueller | 2ca87a1 | 2015-03-06 21:36:21 +0100 | [diff] [blame] | 2827 | F: Documentation/DocBook/crypto-API.tmpl |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2828 | F: arch/*/crypto/ |
| 2829 | F: crypto/ |
| 2830 | F: drivers/crypto/ |
| 2831 | F: include/crypto/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2832 | |
Neil Horman | 5b07bd5 | 2009-02-05 16:03:04 +1100 | [diff] [blame] | 2833 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2834 | M: Neil Horman <nhorman@tuxdriver.com> |
Neil Horman | 5b07bd5 | 2009-02-05 16:03:04 +1100 | [diff] [blame] | 2835 | L: linux-crypto@vger.kernel.org |
| 2836 | S: Maintained |
Joe Perches | 51a2228 | 2010-08-09 17:20:45 -0700 | [diff] [blame] | 2837 | F: crypto/ansi_cprng.c |
| 2838 | F: crypto/rng.c |
Neil Horman | 5b07bd5 | 2009-02-05 16:03:04 +1100 | [diff] [blame] | 2839 | |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 2840 | CS5535 Audio ALSA driver |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2841 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 2842 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2843 | F: sound/pci/cs5535audio/ |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 2844 | |
Solomon Peachy | a910e4a | 2013-05-24 20:04:38 -0400 | [diff] [blame] | 2845 | CW1200 WLAN driver |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 2846 | M: Solomon Peachy <pizza@shaftnet.org> |
| 2847 | S: Maintained |
| 2848 | F: drivers/net/wireless/cw1200/ |
Solomon Peachy | a910e4a | 2013-05-24 20:04:38 -0400 | [diff] [blame] | 2849 | |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 2850 | CX18 VIDEO4LINUX DRIVER |
Andy Walls | 6afdeaf | 2010-05-23 18:53:35 -0300 | [diff] [blame] | 2851 | M: Andy Walls <awalls@md.metrocast.net> |
Joe Perches | 7b212ed | 2014-12-10 15:51:24 -0800 | [diff] [blame] | 2852 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2853 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 2854 | T: git git://linuxtv.org/media_tree.git |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 2855 | W: http://linuxtv.org |
Joe Perches | 30e1099 | 2009-07-29 15:04:21 -0700 | [diff] [blame] | 2856 | W: http://www.ivtvdriver.org/index.php/Cx18 |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 2857 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2858 | F: Documentation/video4linux/cx18.txt |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 2859 | F: drivers/media/pci/cx18/ |
Mauro Carvalho Chehab | 6c0f035 | 2012-11-02 11:56:03 -0200 | [diff] [blame] | 2860 | F: include/uapi/linux/ivtv* |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 2861 | |
Hans Verkuil | 3f101d9 | 2012-11-23 07:00:02 -0300 | [diff] [blame] | 2862 | CX2341X MPEG ENCODER HELPER MODULE |
| 2863 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 2864 | L: linux-media@vger.kernel.org |
| 2865 | T: git git://linuxtv.org/media_tree.git |
| 2866 | W: http://linuxtv.org |
| 2867 | S: Maintained |
Cesar Eduardo Barros | c368360b | 2013-03-02 21:53:42 -0300 | [diff] [blame] | 2868 | F: drivers/media/common/cx2341x* |
Hans Verkuil | 3f101d9 | 2012-11-23 07:00:02 -0300 | [diff] [blame] | 2869 | F: include/media/cx2341x* |
| 2870 | |
Mauro Carvalho Chehab | 2035757 | 2012-11-02 11:33:44 -0200 | [diff] [blame] | 2871 | CX88 VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 2872 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | 2035757 | 2012-11-02 11:33:44 -0200 | [diff] [blame] | 2873 | L: linux-media@vger.kernel.org |
| 2874 | W: http://linuxtv.org |
| 2875 | T: git git://linuxtv.org/media_tree.git |
| 2876 | S: Odd fixes |
| 2877 | F: Documentation/video4linux/cx88/ |
| 2878 | F: drivers/media/pci/cx88/ |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 2879 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 2880 | CXD2820R MEDIA DRIVER |
| 2881 | M: Antti Palosaari <crope@iki.fi> |
| 2882 | L: linux-media@vger.kernel.org |
| 2883 | W: http://linuxtv.org/ |
| 2884 | W: http://palosaari.fi/linux/ |
| 2885 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 2886 | T: git git://linuxtv.org/anttip/media_tree.git |
| 2887 | S: Maintained |
| 2888 | F: drivers/media/dvb-frontends/cxd2820r* |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 2889 | |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 2890 | CXGB3 ETHERNET DRIVER (CXGB3) |
Divy Le Ray | cdc9923 | 2013-11-11 15:01:39 -0800 | [diff] [blame] | 2891 | M: Santosh Raspatur <santosh@chelsio.com> |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 2892 | L: netdev@vger.kernel.org |
| 2893 | W: http://www.chelsio.com |
| 2894 | S: Supported |
Jeff Kirsher | f7917c0 | 2011-04-07 06:57:17 -0700 | [diff] [blame] | 2895 | F: drivers/net/ethernet/chelsio/cxgb3/ |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 2896 | |
Anish Bhatt | d8ae3c3 | 2014-11-04 15:19:22 -0800 | [diff] [blame] | 2897 | CXGB3 ISCSI DRIVER (CXGB3I) |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 2898 | M: Karen Xie <kxie@chelsio.com> |
| 2899 | L: linux-scsi@vger.kernel.org |
| 2900 | W: http://www.chelsio.com |
| 2901 | S: Supported |
| 2902 | F: drivers/scsi/cxgbi/cxgb3i |
Anish Bhatt | d8ae3c3 | 2014-11-04 15:19:22 -0800 | [diff] [blame] | 2903 | |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 2904 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2905 | M: Steve Wise <swise@chelsio.com> |
Roland Dreier | e6cc0fd | 2009-09-07 21:54:38 -0700 | [diff] [blame] | 2906 | L: linux-rdma@vger.kernel.org |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 2907 | W: http://www.openfabrics.org |
| 2908 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2909 | F: drivers/infiniband/hw/cxgb3/ |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 2910 | |
Roland Dreier | be4c9ba | 2010-05-05 14:45:40 -0700 | [diff] [blame] | 2911 | CXGB4 ETHERNET DRIVER (CXGB4) |
Dimitris Michailidis | 56f16c7 | 2014-06-13 14:11:14 -0700 | [diff] [blame] | 2912 | M: Hariprasad S <hariprasad@chelsio.com> |
Roland Dreier | be4c9ba | 2010-05-05 14:45:40 -0700 | [diff] [blame] | 2913 | L: netdev@vger.kernel.org |
| 2914 | W: http://www.chelsio.com |
| 2915 | S: Supported |
Jeff Kirsher | f7917c0 | 2011-04-07 06:57:17 -0700 | [diff] [blame] | 2916 | F: drivers/net/ethernet/chelsio/cxgb4/ |
Roland Dreier | be4c9ba | 2010-05-05 14:45:40 -0700 | [diff] [blame] | 2917 | |
Anish Bhatt | d8ae3c3 | 2014-11-04 15:19:22 -0800 | [diff] [blame] | 2918 | CXGB4 ISCSI DRIVER (CXGB4I) |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 2919 | M: Karen Xie <kxie@chelsio.com> |
| 2920 | L: linux-scsi@vger.kernel.org |
| 2921 | W: http://www.chelsio.com |
| 2922 | S: Supported |
| 2923 | F: drivers/scsi/cxgbi/cxgb4i |
Anish Bhatt | d8ae3c3 | 2014-11-04 15:19:22 -0800 | [diff] [blame] | 2924 | |
Roland Dreier | be4c9ba | 2010-05-05 14:45:40 -0700 | [diff] [blame] | 2925 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
| 2926 | M: Steve Wise <swise@chelsio.com> |
| 2927 | L: linux-rdma@vger.kernel.org |
| 2928 | W: http://www.openfabrics.org |
| 2929 | S: Supported |
| 2930 | F: drivers/infiniband/hw/cxgb4/ |
| 2931 | |
Casey Leedom | 5c20a5c | 2010-07-19 17:55:33 -0700 | [diff] [blame] | 2932 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
| 2933 | M: Casey Leedom <leedom@chelsio.com> |
| 2934 | L: netdev@vger.kernel.org |
| 2935 | W: http://www.chelsio.com |
| 2936 | S: Supported |
Jeff Kirsher | f7917c0 | 2011-04-07 06:57:17 -0700 | [diff] [blame] | 2937 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
Casey Leedom | 5c20a5c | 2010-07-19 17:55:33 -0700 | [diff] [blame] | 2938 | |
Ian Munsie | a9282d0 | 2014-10-08 19:55:05 +1100 | [diff] [blame] | 2939 | CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER |
| 2940 | M: Ian Munsie <imunsie@au1.ibm.com> |
| 2941 | M: Michael Neuling <mikey@neuling.org> |
| 2942 | L: linuxppc-dev@lists.ozlabs.org |
| 2943 | S: Supported |
| 2944 | F: drivers/misc/cxl/ |
| 2945 | F: include/misc/cxl.h |
| 2946 | F: include/uapi/misc/cxl.h |
| 2947 | F: Documentation/powerpc/cxl.txt |
| 2948 | F: Documentation/powerpc/cxl.txt |
| 2949 | F: Documentation/ABI/testing/sysfs-class-cxl |
| 2950 | |
Giuseppe Cavallaro | b52b97a | 2010-11-18 09:32:02 -0800 | [diff] [blame] | 2951 | STMMAC ETHERNET DRIVER |
| 2952 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> |
| 2953 | L: netdev@vger.kernel.org |
| 2954 | W: http://www.stlinux.com |
| 2955 | S: Supported |
Jeff Kirsher | 7ac6653 | 2011-05-16 00:05:19 -0700 | [diff] [blame] | 2956 | F: drivers/net/ethernet/stmicro/stmmac/ |
Giuseppe Cavallaro | b52b97a | 2010-11-18 09:32:02 -0800 | [diff] [blame] | 2957 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2958 | CYBERPRO FB DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2959 | M: Russell King <linux@arm.linux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 2960 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2961 | W: http://www.arm.linux.org.uk/ |
| 2962 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 2963 | F: drivers/video/fbdev/cyber2000fb.* |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 2964 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2965 | CYCLADES ASYNC MUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2966 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 2967 | S: Orphan |
Joe Perches | c897401 | 2011-04-14 15:22:05 -0700 | [diff] [blame] | 2968 | F: drivers/tty/cyclades.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2969 | F: include/linux/cyclades.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2970 | F: include/uapi/linux/cyclades.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2971 | |
| 2972 | CYCLADES PC300 DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2973 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 2974 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2975 | F: drivers/net/wan/pc300* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2976 | |
Antti Palosaari | 402f6ae | 2013-04-09 21:30:41 -0300 | [diff] [blame] | 2977 | CYPRESS_FIRMWARE MEDIA DRIVER |
| 2978 | M: Antti Palosaari <crope@iki.fi> |
| 2979 | L: linux-media@vger.kernel.org |
| 2980 | W: http://linuxtv.org/ |
| 2981 | W: http://palosaari.fi/linux/ |
| 2982 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 2983 | T: git git://linuxtv.org/anttip/media_tree.git |
| 2984 | S: Maintained |
| 2985 | F: drivers/media/common/cypress_firmware* |
| 2986 | |
Javier Martinez Canillas | e3ae3525 | 2012-03-04 09:26:14 -0800 | [diff] [blame] | 2987 | CYTTSP TOUCHSCREEN DRIVER |
Javier Martinez Canillas | be9a6f4 | 2013-08-29 08:43:58 -0700 | [diff] [blame] | 2988 | M: Ferruh Yigit <fery@cypress.com> |
Joe Perches | 6305902 | 2012-06-07 14:21:10 -0700 | [diff] [blame] | 2989 | L: linux-input@vger.kernel.org |
Javier Martinez Canillas | be9a6f4 | 2013-08-29 08:43:58 -0700 | [diff] [blame] | 2990 | S: Supported |
Joe Perches | 6305902 | 2012-06-07 14:21:10 -0700 | [diff] [blame] | 2991 | F: drivers/input/touchscreen/cyttsp* |
| 2992 | F: include/linux/input/cyttsp.h |
Javier Martinez Canillas | e3ae3525 | 2012-03-04 09:26:14 -0800 | [diff] [blame] | 2993 | |
Joshua Kinard | aaaf5fb | 2015-02-16 16:00:26 -0800 | [diff] [blame] | 2994 | DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK |
| 2995 | M: Joshua Kinard <kumba@gentoo.org> |
| 2996 | S: Maintained |
| 2997 | F: drivers/rtc/rtc-ds1685.c |
| 2998 | F: include/linux/rtc/ds1685.h |
| 2999 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3000 | DAMA SLAVE for AX.25 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3001 | M: Joerg Reuter <jreuter@yaina.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3002 | W: http://yaina.de/jreuter/ |
| 3003 | W: http://www.qsl.net/dl1bke/ |
| 3004 | L: linux-hams@vger.kernel.org |
| 3005 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3006 | F: net/ax25/af_ax25.c |
| 3007 | F: net/ax25/ax25_dev.c |
| 3008 | F: net/ax25/ax25_ds_* |
| 3009 | F: net/ax25/ax25_in.c |
| 3010 | F: net/ax25/ax25_out.c |
| 3011 | F: net/ax25/ax25_timer.c |
| 3012 | F: net/ax25/sysctl_net_ax25.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3013 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3014 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3015 | L: netdev@vger.kernel.org |
Joe Perches | 5ff7742 | 2011-05-24 17:13:22 -0700 | [diff] [blame] | 3016 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3017 | F: Documentation/networking/dmfe.txt |
Joe Perches | 0f04e2a | 2012-01-10 15:08:56 -0800 | [diff] [blame] | 3018 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3019 | |
| 3020 | DC390/AM53C974 SCSI driver |
Hannes Reinecke | 71bd849 | 2014-11-24 15:37:30 +0100 | [diff] [blame] | 3021 | M: Hannes Reinecke <hare@suse.de> |
| 3022 | L: linux-scsi@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3023 | S: Maintained |
Hannes Reinecke | 71bd849 | 2014-11-24 15:37:30 +0100 | [diff] [blame] | 3024 | F: drivers/scsi/am53c974.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3025 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3026 | DC395x SCSI driver |
Oliver Neukum | 61eee9a | 2012-08-01 14:32:55 +0200 | [diff] [blame] | 3027 | M: Oliver Neukum <oliver@neukum.org> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3028 | M: Ali Akcaagac <aliakc@web.de> |
| 3029 | M: Jamie Lenehan <lenehan@twibble.org> |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 3030 | L: dc395x@twibble.org |
Joe Perches | cf015e9 | 2014-02-25 15:01:47 -0800 | [diff] [blame] | 3031 | W: http://twibble.org/dist/dc395x/ |
| 3032 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3033 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3034 | F: Documentation/scsi/dc395x.txt |
| 3035 | F: drivers/scsi/dc395x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3036 | |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 3037 | DCCP PROTOCOL |
Arnaldo Carvalho de Melo | a89d030 | 2011-02-26 16:28:54 +0000 | [diff] [blame] | 3038 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 3039 | L: dccp@vger.kernel.org |
Michael Witten | c996d8b | 2010-11-15 19:55:34 +0000 | [diff] [blame] | 3040 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 3041 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3042 | F: include/linux/dccp.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3043 | F: include/uapi/linux/dccp.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3044 | F: include/linux/tfrc.h |
| 3045 | F: net/dccp/ |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 3046 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3047 | DECnet NETWORK LAYER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3048 | W: http://linux-decnet.sourceforge.net |
| 3049 | L: linux-decnet-user@lists.sourceforge.net |
Chrissie Caulfield | f546444 | 2010-02-18 01:33:13 +0000 | [diff] [blame] | 3050 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3051 | F: Documentation/networking/decnet.txt |
| 3052 | F: net/decnet/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3053 | |
Maciej W. Rozycki | ebff05b | 2014-04-06 23:04:00 +0100 | [diff] [blame] | 3054 | DECSTATION PLATFORM SUPPORT |
| 3055 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
| 3056 | L: linux-mips@linux-mips.org |
| 3057 | W: http://www.linux-mips.org/wiki/DECstation |
| 3058 | S: Maintained |
| 3059 | F: arch/mips/dec/ |
| 3060 | F: arch/mips/include/asm/dec/ |
| 3061 | F: arch/mips/include/asm/mach-dec/ |
| 3062 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3063 | DEFXX FDDI NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3064 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3065 | S: Maintained |
Jeff Kirsher | 33f810b | 2011-07-31 00:06:29 -0700 | [diff] [blame] | 3066 | F: drivers/net/fddi/defxx.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3067 | |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 3068 | DELL LAPTOP DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3069 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 3070 | L: platform-driver-x86@vger.kernel.org |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 3071 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3072 | F: drivers/platform/x86/dell-laptop.c |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 3073 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3074 | DELL LAPTOP SMM DRIVER |
Guenter Roeck | a1406d8 | 2013-12-14 09:30:12 -0800 | [diff] [blame] | 3075 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | ef3522f | 2014-12-21 20:54:37 +0100 | [diff] [blame] | 3076 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3077 | F: drivers/char/i8k.c |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3078 | F: include/uapi/linux/i8k.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3079 | |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 3080 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3081 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 3082 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3083 | F: Documentation/dcdbas.txt |
| 3084 | F: drivers/firmware/dcdbas.* |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 3085 | |
Matthew Garrett | 0b3f610 | 2009-01-09 20:17:11 +0000 | [diff] [blame] | 3086 | DELL WMI EXTRAS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3087 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
Matthew Garrett | 0b3f610 | 2009-01-09 20:17:11 +0000 | [diff] [blame] | 3088 | S: Maintained |
Joe Perches | 36b3a96 | 2010-08-09 17:20:46 -0700 | [diff] [blame] | 3089 | F: drivers/platform/x86/dell-wmi.c |
Matthew Garrett | 0b3f610 | 2009-01-09 20:17:11 +0000 | [diff] [blame] | 3090 | |
Paul Zimmerman | 5efc75e | 2013-03-11 17:48:03 -0700 | [diff] [blame] | 3091 | DESIGNWARE USB2 DRD IP DRIVER |
Paul Zimmerman | 16272ae | 2015-01-15 20:14:10 +0000 | [diff] [blame] | 3092 | M: John Youn <johnyoun@synopsys.com> |
Paul Zimmerman | 5efc75e | 2013-03-11 17:48:03 -0700 | [diff] [blame] | 3093 | L: linux-usb@vger.kernel.org |
Paul Zimmerman | 18f340f | 2014-09-19 14:49:36 -0700 | [diff] [blame] | 3094 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
Paul Zimmerman | 5efc75e | 2013-03-11 17:48:03 -0700 | [diff] [blame] | 3095 | S: Maintained |
Paul Zimmerman | 197ba5f | 2014-01-13 13:50:09 -0800 | [diff] [blame] | 3096 | F: drivers/usb/dwc2/ |
Paul Zimmerman | 5efc75e | 2013-03-11 17:48:03 -0700 | [diff] [blame] | 3097 | |
Felipe Balbi | 94ab23d | 2011-08-19 18:10:59 +0300 | [diff] [blame] | 3098 | DESIGNWARE USB3 DRD IP DRIVER |
| 3099 | M: Felipe Balbi <balbi@ti.com> |
| 3100 | L: linux-usb@vger.kernel.org |
| 3101 | L: linux-omap@vger.kernel.org |
| 3102 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
| 3103 | S: Maintained |
| 3104 | F: drivers/usb/dwc3/ |
| 3105 | |
Johannes Berg | 833c954 | 2014-09-12 09:01:56 +0200 | [diff] [blame] | 3106 | DEVICE COREDUMP (DEV_COREDUMP) |
| 3107 | M: Johannes Berg <johannes@sipsolutions.net> |
| 3108 | L: linux-kernel@vger.kernel.org |
| 3109 | S: Maintained |
| 3110 | F: drivers/base/devcoredump.c |
| 3111 | F: include/linux/devcoredump.h |
| 3112 | |
Kyungmin Park | 89d0776 | 2012-01-10 15:09:09 -0800 | [diff] [blame] | 3113 | DEVICE FREQUENCY (DEVFREQ) |
| 3114 | M: MyungJoo Ham <myungjoo.ham@samsung.com> |
| 3115 | M: Kyungmin Park <kyungmin.park@samsung.com> |
MyungJoo Ham | 88476d3 | 2013-03-14 17:28:24 +0900 | [diff] [blame] | 3116 | L: linux-pm@vger.kernel.org |
Kyungmin Park | 89d0776 | 2012-01-10 15:09:09 -0800 | [diff] [blame] | 3117 | S: Maintained |
| 3118 | F: drivers/devfreq/ |
| 3119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3120 | DEVICE NUMBER REGISTRY |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3121 | M: Torben Mathiasen <device@lanana.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3122 | W: http://lanana.org/docs/device-list/index.html |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3123 | S: Maintained |
| 3124 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3125 | DEVICE-MAPPER (LVM) |
Alasdair G Kergon | 854ecaa | 2012-03-28 18:41:23 +0100 | [diff] [blame] | 3126 | M: Alasdair Kergon <agk@redhat.com> |
Alasdair G Kergon | 8504eed | 2013-07-10 23:41:19 +0100 | [diff] [blame] | 3127 | M: Mike Snitzer <snitzer@redhat.com> |
Alasdair G Kergon | 854ecaa | 2012-03-28 18:41:23 +0100 | [diff] [blame] | 3128 | M: dm-devel@redhat.com |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3129 | L: dm-devel@redhat.com |
| 3130 | W: http://sources.redhat.com/dm |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 3131 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
Mike Snitzer | 41d35d2 | 2013-11-04 19:42:38 -0500 | [diff] [blame] | 3132 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
Alasdair G Kergon | 854ecaa | 2012-03-28 18:41:23 +0100 | [diff] [blame] | 3133 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3134 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3135 | F: Documentation/device-mapper/ |
| 3136 | F: drivers/md/dm* |
Alasdair G Kergon | 854ecaa | 2012-03-28 18:41:23 +0100 | [diff] [blame] | 3137 | F: drivers/md/persistent-data/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3138 | F: include/linux/device-mapper.h |
| 3139 | F: include/linux/dm-*.h |
Alasdair G Kergon | 8504eed | 2013-07-10 23:41:19 +0100 | [diff] [blame] | 3140 | F: include/uapi/linux/dm-*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3141 | |
Opensource [Steve Twiss] | c0d995a | 2014-04-03 14:48:51 -0700 | [diff] [blame] | 3142 | DIALOG SEMICONDUCTOR DRIVERS |
| 3143 | M: Support Opensource <support.opensource@diasemi.com> |
| 3144 | W: http://www.dialog-semiconductor.com/products |
| 3145 | S: Supported |
| 3146 | F: Documentation/hwmon/da90?? |
| 3147 | F: drivers/gpio/gpio-da90??.c |
| 3148 | F: drivers/hwmon/da90??-hwmon.c |
Adam Thomson | 7be72c2 | 2015-02-18 14:08:37 +0000 | [diff] [blame] | 3149 | F: drivers/iio/adc/da91??-*.c |
Opensource [Steve Twiss] | c0d995a | 2014-04-03 14:48:51 -0700 | [diff] [blame] | 3150 | F: drivers/input/misc/da90??_onkey.c |
| 3151 | F: drivers/input/touchscreen/da9052_tsi.c |
| 3152 | F: drivers/leds/leds-da90??.c |
| 3153 | F: drivers/mfd/da903x.c |
| 3154 | F: drivers/mfd/da90??-*.c |
Adam Thomson | 7be72c2 | 2015-02-18 14:08:37 +0000 | [diff] [blame] | 3155 | F: drivers/mfd/da91??-*.c |
Opensource [Steve Twiss] | c0d995a | 2014-04-03 14:48:51 -0700 | [diff] [blame] | 3156 | F: drivers/power/da9052-battery.c |
Adam Thomson | 7be72c2 | 2015-02-18 14:08:37 +0000 | [diff] [blame] | 3157 | F: drivers/power/da91??-*.c |
Opensource [Steve Twiss] | c0d995a | 2014-04-03 14:48:51 -0700 | [diff] [blame] | 3158 | F: drivers/regulator/da903x.c |
| 3159 | F: drivers/regulator/da9???-regulator.[ch] |
| 3160 | F: drivers/rtc/rtc-da90??.c |
| 3161 | F: drivers/video/backlight/da90??_bl.c |
| 3162 | F: drivers/watchdog/da90??_wdt.c |
| 3163 | F: include/linux/mfd/da903x.h |
| 3164 | F: include/linux/mfd/da9052/ |
| 3165 | F: include/linux/mfd/da9055/ |
| 3166 | F: include/linux/mfd/da9063/ |
Adam Thomson | 7be72c2 | 2015-02-18 14:08:37 +0000 | [diff] [blame] | 3167 | F: include/linux/mfd/da9150/ |
Opensource [Steve Twiss] | c0d995a | 2014-04-03 14:48:51 -0700 | [diff] [blame] | 3168 | F: include/sound/da[79]*.h |
| 3169 | F: sound/soc/codecs/da[79]*.[ch] |
| 3170 | |
Lidza Louina | 599aa69 | 2013-09-23 16:13:15 -0400 | [diff] [blame] | 3171 | DIGI NEO AND CLASSIC PCI PRODUCTS |
| 3172 | M: Lidza Louina <lidza.louina@gmail.com> |
Mark Hounschell | 542f3d5 | 2014-04-25 14:32:15 -0400 | [diff] [blame] | 3173 | M: Mark Hounschell <markh@compro.net> |
Lidza Louina | 599aa69 | 2013-09-23 16:13:15 -0400 | [diff] [blame] | 3174 | L: driverdev-devel@linuxdriverproject.org |
| 3175 | S: Maintained |
| 3176 | F: drivers/staging/dgnc/ |
| 3177 | |
| 3178 | DIGI EPCA PCI PRODUCTS |
| 3179 | M: Lidza Louina <lidza.louina@gmail.com> |
Mark Hounschell | abeb935 | 2014-05-16 08:08:53 -0400 | [diff] [blame] | 3180 | M: Mark Hounschell <markh@compro.net> |
Daeseok Youn | 6d825f7 | 2014-07-12 01:25:42 +0900 | [diff] [blame] | 3181 | M: Daeseok Youn <daeseok.youn@gmail.com> |
Lidza Louina | 599aa69 | 2013-09-23 16:13:15 -0400 | [diff] [blame] | 3182 | L: driverdev-devel@linuxdriverproject.org |
| 3183 | S: Maintained |
| 3184 | F: drivers/staging/dgap/ |
| 3185 | |
Guenter Roeck | 335d7c5 | 2011-01-26 11:45:49 -0800 | [diff] [blame] | 3186 | DIOLAN U2C-12 I2C DRIVER |
Guenter Roeck | ca46208 | 2012-06-01 23:28:23 -0700 | [diff] [blame] | 3187 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 335d7c5 | 2011-01-26 11:45:49 -0800 | [diff] [blame] | 3188 | L: linux-i2c@vger.kernel.org |
| 3189 | S: Maintained |
| 3190 | F: drivers/i2c/busses/i2c-diolan-u2c.c |
| 3191 | |
Matthew Wilcox | d475c63 | 2015-02-16 15:58:56 -0800 | [diff] [blame] | 3192 | DIRECT ACCESS (DAX) |
| 3193 | M: Matthew Wilcox <willy@linux.intel.com> |
| 3194 | L: linux-fsdevel@vger.kernel.org |
| 3195 | S: Supported |
| 3196 | F: fs/dax.c |
| 3197 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 3198 | DIRECTORY NOTIFICATION (DNOTIFY) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3199 | M: Eric Paris <eparis@parisplace.org> |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 3200 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3201 | F: Documentation/filesystems/dnotify.txt |
| 3202 | F: fs/notify/dnotify/ |
| 3203 | F: include/linux/dnotify.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3204 | |
| 3205 | DISK GEOMETRY AND PARTITION HANDLING |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3206 | M: Andries Brouwer <aeb@cwi.nl> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3207 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
| 3208 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html |
| 3209 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html |
| 3210 | S: Maintained |
| 3211 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 3212 | DISKQUOTA |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3213 | M: Jan Kara <jack@suse.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3214 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3215 | F: Documentation/filesystems/quota.txt |
| 3216 | F: fs/quota/ |
| 3217 | F: include/linux/quota*.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3218 | F: include/uapi/linux/quota*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3219 | |
Bernie Thompson | 702686a | 2012-03-01 13:52:13 -0800 | [diff] [blame] | 3220 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
| 3221 | M: Bernie Thompson <bernie@plugable.com> |
| 3222 | L: linux-fbdev@vger.kernel.org |
| 3223 | S: Maintained |
| 3224 | W: http://plugable.com/category/projects/udlfb/ |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 3225 | F: drivers/video/fbdev/udlfb.c |
Bernie Thompson | 702686a | 2012-03-01 13:52:13 -0800 | [diff] [blame] | 3226 | F: include/video/udlfb.h |
| 3227 | F: Documentation/fb/udlfb.txt |
| 3228 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 3229 | DISTRIBUTED LOCK MANAGER (DLM) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3230 | M: Christine Caulfield <ccaulfie@redhat.com> |
| 3231 | M: David Teigland <teigland@redhat.com> |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 3232 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 3233 | W: http://sources.redhat.com/cluster/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3234 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 3235 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3236 | F: fs/dlm/ |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 3237 | |
Sumit Semwal | 53b6b3e | 2012-01-20 15:04:25 +0530 | [diff] [blame] | 3238 | DMA BUFFER SHARING FRAMEWORK |
| 3239 | M: Sumit Semwal <sumit.semwal@linaro.org> |
| 3240 | S: Maintained |
| 3241 | L: linux-media@vger.kernel.org |
| 3242 | L: dri-devel@lists.freedesktop.org |
Randy Dunlap | 8ada6d2 | 2014-10-13 15:51:19 -0700 | [diff] [blame] | 3243 | L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers) |
Maarten Lankhorst | 35fac7e | 2014-07-01 12:57:08 +0200 | [diff] [blame] | 3244 | F: drivers/dma-buf/ |
Joe Perches | e46d12c | 2014-08-08 14:26:16 -0700 | [diff] [blame] | 3245 | F: include/linux/dma-buf* |
| 3246 | F: include/linux/reservation.h |
| 3247 | F: include/linux/*fence.h |
Sumit Semwal | 53b6b3e | 2012-01-20 15:04:25 +0530 | [diff] [blame] | 3248 | F: Documentation/dma-buf-sharing.txt |
| 3249 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git |
| 3250 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 3251 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
Dan Williams | 4abed0a | 2011-02-14 00:42:08 -0800 | [diff] [blame] | 3252 | M: Vinod Koul <vinod.koul@intel.com> |
Vinod Koul | 17b5956 | 2013-10-22 12:58:56 +0530 | [diff] [blame] | 3253 | L: dmaengine@vger.kernel.org |
| 3254 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ |
Dan Williams | 08223d8 | 2014-08-19 06:07:56 -0700 | [diff] [blame] | 3255 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3256 | F: drivers/dma/ |
Vinod Koul | 0ce3c06 | 2014-12-22 20:57:13 +0530 | [diff] [blame] | 3257 | F: include/linux/dmaengine.h |
Vinod Koul | 979a281e | 2014-11-06 11:21:17 +0530 | [diff] [blame] | 3258 | F: Documentation/dmaengine/ |
| 3259 | T: git git://git.infradead.org/users/vkoul/slave-dma.git |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 3260 | |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 3261 | DME1737 HARDWARE MONITOR DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3262 | M: Juerg Haefliger <juergh@gmail.com> |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 3263 | L: lm-sensors@lm-sensors.org |
| 3264 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3265 | F: Documentation/hwmon/dme1737 |
| 3266 | F: drivers/hwmon/dme1737.c |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 3267 | |
Jean Delvare | 1f31e1b | 2015-03-25 15:55:31 -0700 | [diff] [blame] | 3268 | DMI/SMBIOS SUPPORT |
| 3269 | M: Jean Delvare <jdelvare@suse.de> |
| 3270 | S: Maintained |
| 3271 | F: drivers/firmware/dmi-id.c |
| 3272 | F: drivers/firmware/dmi_scan.c |
| 3273 | F: include/linux/dmi.h |
| 3274 | |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 3275 | DOCKING STATION DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3276 | M: Shaohua Li <shaohua.li@intel.com> |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 3277 | L: linux-acpi@vger.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 3278 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3279 | F: drivers/acpi/dock.c |
Kristen Carlson Accardi | 5b9c9bf | 2006-07-26 13:59:00 -0400 | [diff] [blame] | 3280 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 3281 | DOCUMENTATION |
Jonathan Corbet | ad3118b | 2014-10-17 08:59:26 -0400 | [diff] [blame] | 3282 | M: Jonathan Corbet <corbet@lwn.net> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 3283 | L: linux-doc@vger.kernel.org |
| 3284 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3285 | F: Documentation/ |
Randy Dunlap | 97be078 | 2014-06-27 18:28:56 -0700 | [diff] [blame] | 3286 | X: Documentation/ABI/ |
| 3287 | X: Documentation/devicetree/ |
Jonathan Corbet | 933a46b | 2015-03-26 10:25:17 -0600 | [diff] [blame] | 3288 | X: Documentation/acpi |
| 3289 | X: Documentation/power |
| 3290 | X: Documentation/spi |
Jonathan Corbet | e71e2c6 | 2014-12-29 16:17:36 -0700 | [diff] [blame] | 3291 | T: git git://git.lwn.net/linux-2.6.git docs-next |
Randy Dunlap | abbaeff | 2008-07-04 09:59:57 -0700 | [diff] [blame] | 3292 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3293 | DOUBLETALK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3294 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3295 | L: blinux-list@redhat.com |
| 3296 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3297 | F: drivers/char/dtlk.c |
| 3298 | F: include/linux/dtlk.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3299 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3300 | DPT_I2O SCSI RAID DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3301 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3302 | L: linux-scsi@vger.kernel.org |
| 3303 | W: http://www.adaptec.com/ |
| 3304 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3305 | F: drivers/scsi/dpt* |
| 3306 | F: drivers/scsi/dpt/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3307 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 3308 | DRBD DRIVER |
Joe Perches | 28b8e8d | 2010-03-23 13:35:20 -0700 | [diff] [blame] | 3309 | P: Philipp Reisner |
| 3310 | P: Lars Ellenberg |
| 3311 | M: drbd-dev@lists.linbit.com |
| 3312 | L: drbd-user@lists.linbit.com |
| 3313 | W: http://www.drbd.org |
| 3314 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd |
| 3315 | T: git git://git.drbd.org/drbd-8.3.git |
| 3316 | S: Supported |
| 3317 | F: drivers/block/drbd/ |
| 3318 | F: lib/lru_cache.c |
| 3319 | F: Documentation/blockdev/drbd/ |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 3320 | |
Greg Kroah-Hartman | 8754465 | 2010-09-21 06:39:23 -0700 | [diff] [blame] | 3321 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 3322 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 3323 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3324 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3325 | F: Documentation/kobject.txt |
Joe Perches | 7cfc51b | 2009-04-08 10:04:18 -0700 | [diff] [blame] | 3326 | F: drivers/base/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3327 | F: fs/sysfs/ |
Greg Kroah-Hartman | 8754465 | 2010-09-21 06:39:23 -0700 | [diff] [blame] | 3328 | F: fs/debugfs/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3329 | F: include/linux/kobj* |
Greg Kroah-Hartman | 8754465 | 2010-09-21 06:39:23 -0700 | [diff] [blame] | 3330 | F: include/linux/debugfs.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3331 | F: lib/kobj* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3332 | |
| 3333 | DRM DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3334 | M: David Airlie <airlied@linux.ie> |
Valdis.Kletnieks@vt.edu | 4c6a399 | 2010-04-22 14:29:10 -0400 | [diff] [blame] | 3335 | L: dri-devel@lists.freedesktop.org |
Alex Deucher | b044788 | 2014-02-18 10:03:44 -0500 | [diff] [blame] | 3336 | T: git git://people.freedesktop.org/~airlied/linux |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3337 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3338 | F: drivers/gpu/drm/ |
Daniel Vetter | 433e3b3 | 2014-05-26 23:44:42 +0200 | [diff] [blame] | 3339 | F: drivers/gpu/vga/ |
Joe Perches | 850e941 | 2010-08-09 17:20:45 -0700 | [diff] [blame] | 3340 | F: include/drm/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3341 | F: include/uapi/drm/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3342 | |
Alex Deucher | 566f593 | 2014-02-18 10:03:43 -0500 | [diff] [blame] | 3343 | RADEON DRM DRIVERS |
| 3344 | M: Alex Deucher <alexander.deucher@amd.com> |
| 3345 | M: Christian König <christian.koenig@amd.com> |
| 3346 | L: dri-devel@lists.freedesktop.org |
| 3347 | T: git git://people.freedesktop.org/~agd5f/linux |
| 3348 | S: Supported |
| 3349 | F: drivers/gpu/drm/radeon/ |
Alex Deucher | 566f593 | 2014-02-18 10:03:43 -0500 | [diff] [blame] | 3350 | F: include/uapi/drm/radeon* |
| 3351 | |
Thierry Reding | 03e255b | 2014-04-04 08:59:18 +0200 | [diff] [blame] | 3352 | DRM PANEL DRIVERS |
| 3353 | M: Thierry Reding <thierry.reding@gmail.com> |
| 3354 | L: dri-devel@lists.freedesktop.org |
| 3355 | T: git git://anongit.freedesktop.org/tegra/linux.git |
| 3356 | S: Maintained |
| 3357 | F: drivers/gpu/drm/drm_panel.c |
| 3358 | F: drivers/gpu/drm/panel/ |
| 3359 | F: include/drm/drm_panel.h |
| 3360 | F: Documentation/devicetree/bindings/panel/ |
| 3361 | |
Chris Wilson | 8daf747 | 2010-09-28 14:07:26 +0100 | [diff] [blame] | 3362 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
Daniel Vetter | cbce710 | 2014-08-28 12:17:42 +0200 | [diff] [blame] | 3363 | M: Daniel Vetter <daniel.vetter@intel.com> |
Daniel Vetter | 47f9564 | 2014-01-07 09:24:31 +0100 | [diff] [blame] | 3364 | M: Jani Nikula <jani.nikula@linux.intel.com> |
Daniel Vetter | 362132d | 2013-03-13 22:28:46 +0100 | [diff] [blame] | 3365 | L: intel-gfx@lists.freedesktop.org |
Chris Wilson | 8daf747 | 2010-09-28 14:07:26 +0100 | [diff] [blame] | 3366 | L: dri-devel@lists.freedesktop.org |
Daniel Vetter | 47f9564 | 2014-01-07 09:24:31 +0100 | [diff] [blame] | 3367 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
Daniel Vetter | 89258a9 | 2014-02-04 19:57:38 +0100 | [diff] [blame] | 3368 | T: git git://anongit.freedesktop.org/drm-intel |
Chris Wilson | 8daf747 | 2010-09-28 14:07:26 +0100 | [diff] [blame] | 3369 | S: Supported |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 3370 | F: drivers/gpu/drm/i915/ |
Chris Wilson | 8daf747 | 2010-09-28 14:07:26 +0100 | [diff] [blame] | 3371 | F: include/drm/i915* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3372 | F: include/uapi/drm/i915* |
Chris Wilson | 8daf747 | 2010-09-28 14:07:26 +0100 | [diff] [blame] | 3373 | |
Kyungmin Park | 398a6d4 | 2011-11-02 11:33:16 +0900 | [diff] [blame] | 3374 | DRM DRIVERS FOR EXYNOS |
| 3375 | M: Inki Dae <inki.dae@samsung.com> |
Inki Dae | f150130 | 2012-01-17 14:08:55 +0900 | [diff] [blame] | 3376 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
| 3377 | M: Seung-Woo Kim <sw0312.kim@samsung.com> |
| 3378 | M: Kyungmin Park <kyungmin.park@samsung.com> |
Kyungmin Park | 398a6d4 | 2011-11-02 11:33:16 +0900 | [diff] [blame] | 3379 | L: dri-devel@lists.freedesktop.org |
Inki Dae | 25a5803 | 2012-10-30 16:08:05 +0900 | [diff] [blame] | 3380 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
Kyungmin Park | 398a6d4 | 2011-11-02 11:33:16 +0900 | [diff] [blame] | 3381 | S: Supported |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 3382 | F: drivers/gpu/drm/exynos/ |
Kyungmin Park | 398a6d4 | 2011-11-02 11:33:16 +0900 | [diff] [blame] | 3383 | F: include/drm/exynos* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3384 | F: include/uapi/drm/exynos* |
Kyungmin Park | 398a6d4 | 2011-11-02 11:33:16 +0900 | [diff] [blame] | 3385 | |
Philipp Zabel | 0a3d775 | 2014-11-24 16:33:35 +0100 | [diff] [blame] | 3386 | DRM DRIVERS FOR FREESCALE IMX |
| 3387 | M: Philipp Zabel <p.zabel@pengutronix.de> |
| 3388 | L: dri-devel@lists.freedesktop.org |
| 3389 | S: Maintained |
| 3390 | F: drivers/gpu/drm/imx/ |
| 3391 | F: Documentation/devicetree/bindings/drm/imx/ |
| 3392 | |
Thierry Reding | bd3b49f | 2012-11-28 20:45:28 +0100 | [diff] [blame] | 3393 | DRM DRIVERS FOR NVIDIA TEGRA |
Thierry Reding | a5ad7a6 | 2013-05-19 14:19:21 +0200 | [diff] [blame] | 3394 | M: Thierry Reding <thierry.reding@gmail.com> |
| 3395 | M: Terje Bergström <tbergstrom@nvidia.com> |
Thierry Reding | bd3b49f | 2012-11-28 20:45:28 +0100 | [diff] [blame] | 3396 | L: dri-devel@lists.freedesktop.org |
| 3397 | L: linux-tegra@vger.kernel.org |
Thierry Reding | a5ad7a6 | 2013-05-19 14:19:21 +0200 | [diff] [blame] | 3398 | T: git git://anongit.freedesktop.org/tegra/linux.git |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 3399 | S: Supported |
Thierry Reding | dee8268 | 2013-10-09 10:32:49 +0200 | [diff] [blame] | 3400 | F: drivers/gpu/drm/tegra/ |
Thierry Reding | a5ad7a6 | 2013-05-19 14:19:21 +0200 | [diff] [blame] | 3401 | F: drivers/gpu/host1x/ |
Thierry Reding | e1e9064 | 2013-09-24 13:59:01 +0200 | [diff] [blame] | 3402 | F: include/linux/host1x.h |
Thierry Reding | a5ad7a6 | 2013-05-19 14:19:21 +0200 | [diff] [blame] | 3403 | F: include/uapi/drm/tegra_drm.h |
Thierry Reding | bd3b49f | 2012-11-28 20:45:28 +0100 | [diff] [blame] | 3404 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
| 3405 | |
Laurent Pinchart | a284e9d | 2014-08-19 23:04:31 +0200 | [diff] [blame] | 3406 | DRM DRIVERS FOR RENESAS |
| 3407 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 3408 | L: dri-devel@lists.freedesktop.org |
| 3409 | L: linux-sh@vger.kernel.org |
| 3410 | T: git git://people.freedesktop.org/~airlied/linux |
| 3411 | S: Supported |
| 3412 | F: drivers/gpu/drm/rcar-du/ |
| 3413 | F: drivers/gpu/drm/shmobile/ |
Laurent Pinchart | a284e9d | 2014-08-19 23:04:31 +0200 | [diff] [blame] | 3414 | F: include/linux/platform_data/shmob_drm.h |
| 3415 | |
Alexey Klimov | 598df1a | 2012-11-28 17:16:32 -0300 | [diff] [blame] | 3416 | DSBR100 USB FM RADIO DRIVER |
| 3417 | M: Alexey Klimov <klimov.linux@gmail.com> |
| 3418 | L: linux-media@vger.kernel.org |
| 3419 | T: git git://linuxtv.org/media_tree.git |
| 3420 | S: Maintained |
| 3421 | F: drivers/media/radio/dsbr100.c |
| 3422 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3423 | DSCC4 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3424 | M: Francois Romieu <romieu@fr.zoreil.com> |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 3425 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3426 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3427 | F: drivers/net/wan/dscc4.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3428 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 3429 | DVB_USB_AF9015 MEDIA DRIVER |
| 3430 | M: Antti Palosaari <crope@iki.fi> |
| 3431 | L: linux-media@vger.kernel.org |
| 3432 | W: http://linuxtv.org/ |
| 3433 | W: http://palosaari.fi/linux/ |
| 3434 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3435 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3436 | S: Maintained |
| 3437 | F: drivers/media/usb/dvb-usb-v2/af9015* |
| 3438 | |
| 3439 | DVB_USB_AF9035 MEDIA DRIVER |
| 3440 | M: Antti Palosaari <crope@iki.fi> |
| 3441 | L: linux-media@vger.kernel.org |
| 3442 | W: http://linuxtv.org/ |
| 3443 | W: http://palosaari.fi/linux/ |
| 3444 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3445 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3446 | S: Maintained |
| 3447 | F: drivers/media/usb/dvb-usb-v2/af9035* |
| 3448 | |
| 3449 | DVB_USB_ANYSEE MEDIA DRIVER |
| 3450 | M: Antti Palosaari <crope@iki.fi> |
| 3451 | L: linux-media@vger.kernel.org |
| 3452 | W: http://linuxtv.org/ |
| 3453 | W: http://palosaari.fi/linux/ |
| 3454 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3455 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3456 | S: Maintained |
| 3457 | F: drivers/media/usb/dvb-usb-v2/anysee* |
| 3458 | |
| 3459 | DVB_USB_AU6610 MEDIA DRIVER |
| 3460 | M: Antti Palosaari <crope@iki.fi> |
| 3461 | L: linux-media@vger.kernel.org |
| 3462 | W: http://linuxtv.org/ |
| 3463 | W: http://palosaari.fi/linux/ |
| 3464 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3465 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3466 | S: Maintained |
| 3467 | F: drivers/media/usb/dvb-usb-v2/au6610* |
| 3468 | |
| 3469 | DVB_USB_CE6230 MEDIA DRIVER |
| 3470 | M: Antti Palosaari <crope@iki.fi> |
| 3471 | L: linux-media@vger.kernel.org |
| 3472 | W: http://linuxtv.org/ |
| 3473 | W: http://palosaari.fi/linux/ |
| 3474 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3475 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3476 | S: Maintained |
| 3477 | F: drivers/media/usb/dvb-usb-v2/ce6230* |
| 3478 | |
Michael Krufky | d099dea | 2012-10-02 00:56:20 -0300 | [diff] [blame] | 3479 | DVB_USB_CXUSB MEDIA DRIVER |
| 3480 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 3481 | L: linux-media@vger.kernel.org |
| 3482 | W: http://linuxtv.org/ |
| 3483 | W: http://github.com/mkrufky |
| 3484 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3485 | T: git git://linuxtv.org/media_tree.git |
| 3486 | S: Maintained |
Cesar Eduardo Barros | 9819da6 | 2013-01-04 15:35:25 -0800 | [diff] [blame] | 3487 | F: drivers/media/usb/dvb-usb/cxusb* |
Michael Krufky | d099dea | 2012-10-02 00:56:20 -0300 | [diff] [blame] | 3488 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 3489 | DVB_USB_EC168 MEDIA DRIVER |
| 3490 | M: Antti Palosaari <crope@iki.fi> |
| 3491 | L: linux-media@vger.kernel.org |
| 3492 | W: http://linuxtv.org/ |
| 3493 | W: http://palosaari.fi/linux/ |
| 3494 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3495 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3496 | S: Maintained |
| 3497 | F: drivers/media/usb/dvb-usb-v2/ec168* |
| 3498 | |
Antti Palosaari | 5560983 | 2013-04-09 20:30:42 -0300 | [diff] [blame] | 3499 | DVB_USB_GL861 MEDIA DRIVER |
| 3500 | M: Antti Palosaari <crope@iki.fi> |
| 3501 | L: linux-media@vger.kernel.org |
| 3502 | W: http://linuxtv.org/ |
| 3503 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3504 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3505 | S: Maintained |
| 3506 | F: drivers/media/usb/dvb-usb-v2/gl861* |
| 3507 | |
Michael Krufky | 8856f5f | 2012-10-02 00:55:50 -0300 | [diff] [blame] | 3508 | DVB_USB_MXL111SF MEDIA DRIVER |
| 3509 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 3510 | L: linux-media@vger.kernel.org |
| 3511 | W: http://linuxtv.org/ |
| 3512 | W: http://github.com/mkrufky |
| 3513 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3514 | T: git git://linuxtv.org/mkrufky/mxl111sf.git |
| 3515 | S: Maintained |
| 3516 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* |
| 3517 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 3518 | DVB_USB_RTL28XXU MEDIA DRIVER |
| 3519 | M: Antti Palosaari <crope@iki.fi> |
| 3520 | L: linux-media@vger.kernel.org |
| 3521 | W: http://linuxtv.org/ |
| 3522 | W: http://palosaari.fi/linux/ |
| 3523 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3524 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3525 | S: Maintained |
| 3526 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* |
| 3527 | |
| 3528 | DVB_USB_V2 MEDIA DRIVER |
| 3529 | M: Antti Palosaari <crope@iki.fi> |
| 3530 | L: linux-media@vger.kernel.org |
| 3531 | W: http://linuxtv.org/ |
| 3532 | W: http://palosaari.fi/linux/ |
| 3533 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3534 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3535 | S: Maintained |
| 3536 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* |
| 3537 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c |
| 3538 | |
Jason Baron | ac0ac38 | 2011-08-11 14:36:43 -0400 | [diff] [blame] | 3539 | DYNAMIC DEBUG |
Joe Perches | 5c4a97d | 2013-07-31 13:53:32 -0700 | [diff] [blame] | 3540 | M: Jason Baron <jbaron@akamai.com> |
Jason Baron | ac0ac38 | 2011-08-11 14:36:43 -0400 | [diff] [blame] | 3541 | S: Maintained |
| 3542 | F: lib/dynamic_debug.c |
| 3543 | F: include/linux/dynamic_debug.h |
| 3544 | |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 3545 | DZ DECSTATION DZ11 SERIAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3546 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 3547 | S: Maintained |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 3548 | F: drivers/tty/serial/dz.* |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 3549 | |
Moritz Fischer | f17effb | 2015-01-10 14:10:59 -0800 | [diff] [blame] | 3550 | E3X0 POWER BUTTON DRIVER |
| 3551 | M: Moritz Fischer <moritz.fischer@ettus.com> |
| 3552 | L: usrp-users@lists.ettus.com |
| 3553 | W: http://www.ettus.com |
| 3554 | S: Supported |
| 3555 | F: drivers/input/misc/e3x0-button.c |
| 3556 | F: Documentation/devicetree/bindings/input/e3x0-button.txt |
| 3557 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 3558 | E4000 MEDIA DRIVER |
| 3559 | M: Antti Palosaari <crope@iki.fi> |
| 3560 | L: linux-media@vger.kernel.org |
| 3561 | W: http://linuxtv.org/ |
| 3562 | W: http://palosaari.fi/linux/ |
| 3563 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3564 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3565 | S: Maintained |
| 3566 | F: drivers/media/tuners/e4000* |
| 3567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3568 | EATA ISA/EISA/PCI SCSI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3569 | M: Dario Ballabio <ballabio_dario@emc.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3570 | L: linux-scsi@vger.kernel.org |
| 3571 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3572 | F: drivers/scsi/eata.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3573 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 3574 | EC100 MEDIA DRIVER |
| 3575 | M: Antti Palosaari <crope@iki.fi> |
| 3576 | L: linux-media@vger.kernel.org |
| 3577 | W: http://linuxtv.org/ |
| 3578 | W: http://palosaari.fi/linux/ |
| 3579 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3580 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3581 | S: Maintained |
| 3582 | F: drivers/media/dvb-frontends/ec100* |
| 3583 | |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 3584 | ECRYPT FILE SYSTEM |
Tyler Hicks | 0de9adf | 2011-11-05 09:04:47 -0400 | [diff] [blame] | 3585 | M: Tyler Hicks <tyhicks@canonical.com> |
Tyler Hicks | a058bfb | 2011-05-27 11:47:59 -0500 | [diff] [blame] | 3586 | L: ecryptfs@vger.kernel.org |
Dustin Kirkland | 24a923e | 2013-05-31 10:41:43 -0500 | [diff] [blame] | 3587 | W: http://ecryptfs.org |
Michael Halcrow | 6dc7516 | 2008-12-15 13:54:17 -0800 | [diff] [blame] | 3588 | W: https://launchpad.net/ecryptfs |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 3589 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3590 | F: Documentation/filesystems/ecryptfs.txt |
| 3591 | F: fs/ecryptfs/ |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 3592 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 3593 | EDAC-CORE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3594 | M: Doug Thompson <dougthompson@xmission.com> |
Borislav Petkov | aa15aa0 | 2014-03-03 15:38:17 -0800 | [diff] [blame] | 3595 | M: Borislav Petkov <bp@alien8.de> |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 3596 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 3597 | L: linux-edac@vger.kernel.org |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 3598 | W: bluesmoke.sourceforge.net |
Borislav Petkov | 7a85951 | 2015-02-06 17:46:07 +0100 | [diff] [blame] | 3599 | T: git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next |
| 3600 | T: git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 3601 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3602 | F: Documentation/edac.txt |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 3603 | F: drivers/edac/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3604 | F: include/linux/edac.h |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 3605 | |
Borislav Petkov | c476c23 | 2009-05-20 20:31:58 +0200 | [diff] [blame] | 3606 | EDAC-AMD64 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3607 | M: Doug Thompson <dougthompson@xmission.com> |
Borislav Petkov | 487ba8e | 2012-10-29 18:40:10 +0100 | [diff] [blame] | 3608 | M: Borislav Petkov <bp@alien8.de> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 3609 | L: linux-edac@vger.kernel.org |
Borislav Petkov | c476c23 | 2009-05-20 20:31:58 +0200 | [diff] [blame] | 3610 | W: bluesmoke.sourceforge.net |
Borislav Petkov | 487ba8e | 2012-10-29 18:40:10 +0100 | [diff] [blame] | 3611 | S: Maintained |
Borislav Petkov | c476c23 | 2009-05-20 20:31:58 +0200 | [diff] [blame] | 3612 | F: drivers/edac/amd64_edac* |
| 3613 | |
Robert Richter | 836dae5 | 2013-10-18 09:24:52 +0200 | [diff] [blame] | 3614 | EDAC-CALXEDA |
| 3615 | M: Doug Thompson <dougthompson@xmission.com> |
| 3616 | M: Robert Richter <rric@kernel.org> |
| 3617 | L: linux-edac@vger.kernel.org |
| 3618 | W: bluesmoke.sourceforge.net |
| 3619 | S: Maintained |
| 3620 | F: drivers/edac/highbank* |
| 3621 | |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 3622 | EDAC-CAVIUM |
| 3623 | M: Ralf Baechle <ralf@linux-mips.org> |
| 3624 | M: David Daney <david.daney@cavium.com> |
| 3625 | L: linux-edac@vger.kernel.org |
| 3626 | L: linux-mips@linux-mips.org |
| 3627 | W: bluesmoke.sourceforge.net |
| 3628 | S: Supported |
| 3629 | F: drivers/edac/octeon_edac* |
| 3630 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 3631 | EDAC-E752X |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3632 | M: Mark Gross <mark.gross@intel.com> |
| 3633 | M: Doug Thompson <dougthompson@xmission.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 3634 | L: linux-edac@vger.kernel.org |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 3635 | W: bluesmoke.sourceforge.net |
| 3636 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3637 | F: drivers/edac/e752x_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 3638 | |
| 3639 | EDAC-E7XXX |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3640 | M: Doug Thompson <dougthompson@xmission.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 3641 | L: linux-edac@vger.kernel.org |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 3642 | W: bluesmoke.sourceforge.net |
| 3643 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3644 | F: drivers/edac/e7xxx_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 3645 | |
Mauro Carvalho Chehab | 77c5f5d | 2013-02-15 06:11:57 -0300 | [diff] [blame] | 3646 | EDAC-GHES |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 3647 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | 77c5f5d | 2013-02-15 06:11:57 -0300 | [diff] [blame] | 3648 | L: linux-edac@vger.kernel.org |
| 3649 | W: bluesmoke.sourceforge.net |
| 3650 | S: Maintained |
Joe Perches | 2caa67a | 2013-09-11 14:23:40 -0700 | [diff] [blame] | 3651 | F: drivers/edac/ghes_edac.c |
Mauro Carvalho Chehab | 77c5f5d | 2013-02-15 06:11:57 -0300 | [diff] [blame] | 3652 | |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 3653 | EDAC-I82443BXGX |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3654 | M: Tim Small <tim@buttersideup.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 3655 | L: linux-edac@vger.kernel.org |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 3656 | W: bluesmoke.sourceforge.net |
| 3657 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3658 | F: drivers/edac/i82443bxgx_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 3659 | |
| 3660 | EDAC-I3000 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3661 | M: Jason Uhlenkott <juhlenko@akamai.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 3662 | L: linux-edac@vger.kernel.org |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 3663 | W: bluesmoke.sourceforge.net |
| 3664 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3665 | F: drivers/edac/i3000_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 3666 | |
| 3667 | EDAC-I5000 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3668 | M: Doug Thompson <dougthompson@xmission.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 3669 | L: linux-edac@vger.kernel.org |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 3670 | W: bluesmoke.sourceforge.net |
| 3671 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3672 | F: drivers/edac/i5000_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 3673 | |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 3674 | EDAC-I5400 |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 3675 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | 67c8931 | 2010-06-30 01:45:28 -0300 | [diff] [blame] | 3676 | L: linux-edac@vger.kernel.org |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 3677 | W: bluesmoke.sourceforge.net |
| 3678 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3679 | F: drivers/edac/i5400_edac.c |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 3680 | |
Mauro Carvalho Chehab | 3c9c92b | 2010-09-22 09:36:54 -0300 | [diff] [blame] | 3681 | EDAC-I7300 |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 3682 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | 3c9c92b | 2010-09-22 09:36:54 -0300 | [diff] [blame] | 3683 | L: linux-edac@vger.kernel.org |
| 3684 | W: bluesmoke.sourceforge.net |
| 3685 | S: Maintained |
| 3686 | F: drivers/edac/i7300_edac.c |
| 3687 | |
Mauro Carvalho Chehab | 67c8931 | 2010-06-30 01:45:28 -0300 | [diff] [blame] | 3688 | EDAC-I7CORE |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 3689 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | 67c8931 | 2010-06-30 01:45:28 -0300 | [diff] [blame] | 3690 | L: linux-edac@vger.kernel.org |
| 3691 | W: bluesmoke.sourceforge.net |
| 3692 | S: Maintained |
Joe Perches | 70aff0c | 2010-07-12 17:45:49 -0300 | [diff] [blame] | 3693 | F: drivers/edac/i7core_edac.c |
Mauro Carvalho Chehab | 67c8931 | 2010-06-30 01:45:28 -0300 | [diff] [blame] | 3694 | |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 3695 | EDAC-I82975X |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3696 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
Arvind R | 2552788 | 2011-01-21 23:13:37 +0530 | [diff] [blame] | 3697 | M: "Arvind R." <arvino55@gmail.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 3698 | L: linux-edac@vger.kernel.org |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 3699 | W: bluesmoke.sourceforge.net |
| 3700 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3701 | F: drivers/edac/i82975x_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 3702 | |
Jason Baron | 791b470 | 2014-07-09 21:13:11 +0000 | [diff] [blame] | 3703 | EDAC-IE31200 |
| 3704 | M: Jason Baron <jbaron@akamai.com> |
| 3705 | L: linux-edac@vger.kernel.org |
| 3706 | W: bluesmoke.sourceforge.net |
| 3707 | S: Maintained |
| 3708 | F: drivers/edac/ie31200_edac.c |
| 3709 | |
Johannes Thumshirn | ccdfb97 | 2013-11-17 19:25:12 +0100 | [diff] [blame] | 3710 | EDAC-MPC85XX |
| 3711 | M: Johannes Thumshirn <johannes.thumshirn@men.de> |
| 3712 | L: linux-edac@vger.kernel.org |
| 3713 | W: bluesmoke.sourceforge.net |
| 3714 | S: Maintained |
| 3715 | F: drivers/edac/mpc85xx_edac.[ch] |
| 3716 | |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 3717 | EDAC-PASEMI |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3718 | M: Egor Martovetsky <egor@pasemi.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 3719 | L: linux-edac@vger.kernel.org |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 3720 | W: bluesmoke.sourceforge.net |
| 3721 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3722 | F: drivers/edac/pasemi_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 3723 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 3724 | EDAC-R82600 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3725 | M: Tim Small <tim@buttersideup.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 3726 | L: linux-edac@vger.kernel.org |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 3727 | W: bluesmoke.sourceforge.net |
| 3728 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3729 | F: drivers/edac/r82600_edac.c |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 3730 | |
Mauro Carvalho Chehab | 4d096ca | 2011-11-01 10:03:24 -0200 | [diff] [blame] | 3731 | EDAC-SBRIDGE |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 3732 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | 4d096ca | 2011-11-01 10:03:24 -0200 | [diff] [blame] | 3733 | L: linux-edac@vger.kernel.org |
| 3734 | W: bluesmoke.sourceforge.net |
| 3735 | S: Maintained |
| 3736 | F: drivers/edac/sb_edac.c |
| 3737 | |
Clemens Ladisch | af39917 | 2011-01-10 16:32:54 +0100 | [diff] [blame] | 3738 | EDIROL UA-101/UA-1000 DRIVER |
| 3739 | M: Clemens Ladisch <clemens@ladisch.de> |
| 3740 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 3741 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 3742 | S: Maintained |
| 3743 | F: sound/usb/misc/ua101.c |
| 3744 | |
Matt Fleming | 1f7df95 | 2012-10-03 10:04:02 +0100 | [diff] [blame] | 3745 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
| 3746 | M: Matt Fleming <matt.fleming@intel.com> |
| 3747 | L: linux-efi@vger.kernel.org |
Matt Fleming | 78bef24 | 2012-10-08 11:33:05 +0100 | [diff] [blame] | 3748 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
Matt Fleming | 1f7df95 | 2012-10-03 10:04:02 +0100 | [diff] [blame] | 3749 | S: Maintained |
Joe Perches | fb2efb5 | 2014-08-08 14:25:01 -0700 | [diff] [blame] | 3750 | F: Documentation/efi-stub.txt |
Matt Fleming | 1f7df95 | 2012-10-03 10:04:02 +0100 | [diff] [blame] | 3751 | F: arch/ia64/kernel/efi.c |
| 3752 | F: arch/x86/boot/compressed/eboot.[ch] |
| 3753 | F: arch/x86/include/asm/efi.h |
| 3754 | F: arch/x86/platform/efi/* |
Tom Gundersen | a9499fa | 2013-02-08 15:37:06 +0000 | [diff] [blame] | 3755 | F: drivers/firmware/efi/* |
Matt Fleming | 1f7df95 | 2012-10-03 10:04:02 +0100 | [diff] [blame] | 3756 | F: include/linux/efi*.h |
| 3757 | |
Matt Fleming | d68772b | 2013-02-08 16:27:24 +0000 | [diff] [blame] | 3758 | EFI VARIABLE FILESYSTEM |
| 3759 | M: Matthew Garrett <matthew.garrett@nebula.com> |
| 3760 | M: Jeremy Kerr <jk@ozlabs.org> |
| 3761 | M: Matt Fleming <matt.fleming@intel.com> |
| 3762 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
| 3763 | L: linux-efi@vger.kernel.org |
| 3764 | S: Maintained |
| 3765 | F: fs/efivarfs/ |
| 3766 | |
Peter Jones | 85a00d9 | 2010-09-22 13:05:04 -0700 | [diff] [blame] | 3767 | EFIFB FRAMEBUFFER DRIVER |
| 3768 | L: linux-fbdev@vger.kernel.org |
| 3769 | M: Peter Jones <pjones@redhat.com> |
| 3770 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 3771 | F: drivers/video/fbdev/efifb.c |
Peter Jones | 85a00d9 | 2010-09-22 13:05:04 -0700 | [diff] [blame] | 3772 | |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 3773 | EFS FILESYSTEM |
| 3774 | W: http://aeschi.ch.eu.org/efs/ |
| 3775 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3776 | F: fs/efs/ |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 3777 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 3778 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3779 | M: Hoang-Nam Nguyen <hnguyen@de.ibm.com> |
| 3780 | M: Christoph Raisch <raisch@de.ibm.com> |
Roland Dreier | e6cc0fd | 2009-09-07 21:54:38 -0700 | [diff] [blame] | 3781 | L: linux-rdma@vger.kernel.org |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 3782 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3783 | F: drivers/infiniband/hw/ehca/ |
Heiko J Schick | fab9722 | 2006-09-22 15:22:22 -0700 | [diff] [blame] | 3784 | |
Breno Leitao | aa8a9e2 | 2010-09-01 13:10:53 -0700 | [diff] [blame] | 3785 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
Thadeu Lima de Souza Cascardo | 34b1901 | 2011-10-13 09:56:19 +0000 | [diff] [blame] | 3786 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
Breno Leitao | aa8a9e2 | 2010-09-01 13:10:53 -0700 | [diff] [blame] | 3787 | L: netdev@vger.kernel.org |
| 3788 | S: Maintained |
Jeff Kirsher | 9aa3283 | 2011-05-13 14:29:12 -0700 | [diff] [blame] | 3789 | F: drivers/net/ethernet/ibm/ehea/ |
Breno Leitao | aa8a9e2 | 2010-09-01 13:10:53 -0700 | [diff] [blame] | 3790 | |
Mauro Carvalho Chehab | f0319ef | 2012-11-02 11:38:23 -0200 | [diff] [blame] | 3791 | EM28XX VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 3792 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | f0319ef | 2012-11-02 11:38:23 -0200 | [diff] [blame] | 3793 | L: linux-media@vger.kernel.org |
| 3794 | W: http://linuxtv.org |
| 3795 | T: git git://linuxtv.org/media_tree.git |
| 3796 | S: Maintained |
| 3797 | F: drivers/media/usb/em28xx/ |
| 3798 | |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 3799 | EMBEDDED LINUX |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3800 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
| 3801 | M: Matt Mackall <mpm@selenic.com> |
| 3802 | M: David Woodhouse <dwmw2@infradead.org> |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 3803 | L: linux-embedded@vger.kernel.org |
| 3804 | S: Maintained |
| 3805 | |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 3806 | EMULEX LPFC FC SCSI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3807 | M: James Smart <james.smart@emulex.com> |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3808 | L: linux-scsi@vger.kernel.org |
| 3809 | W: http://sourceforge.net/projects/lpfcxxxx |
| 3810 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3811 | F: drivers/scsi/lpfc/ |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 3812 | |
Michał Mirosław | 5f5bac8 | 2009-05-22 20:33:59 +0200 | [diff] [blame] | 3813 | ENE CB710 FLASH CARD READER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3814 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
Michał Mirosław | 5f5bac8 | 2009-05-22 20:33:59 +0200 | [diff] [blame] | 3815 | S: Maintained |
| 3816 | F: drivers/misc/cb710/ |
| 3817 | F: drivers/mmc/host/cb710-mmc.* |
| 3818 | F: include/linux/cb710.h |
| 3819 | |
Maxim Levitsky | 931e39a | 2010-07-31 11:59:26 -0300 | [diff] [blame] | 3820 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
| 3821 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
| 3822 | S: Maintained |
Joe Perches | 2a83744 | 2011-03-22 16:34:32 -0700 | [diff] [blame] | 3823 | F: drivers/media/rc/ene_ir.* |
Maxim Levitsky | 931e39a | 2010-07-31 11:59:26 -0300 | [diff] [blame] | 3824 | |
Gavin Shan | ec207dc | 2013-06-28 21:12:14 +0800 | [diff] [blame] | 3825 | ENHANCED ERROR HANDLING (EEH) |
| 3826 | M: Gavin Shan <shangw@linux.vnet.ibm.com> |
| 3827 | L: linuxppc-dev@lists.ozlabs.org |
| 3828 | S: Supported |
| 3829 | F: Documentation/powerpc/eeh-pci-error-recovery.txt |
| 3830 | F: arch/powerpc/kernel/eeh*.c |
| 3831 | |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 3832 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3833 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 3834 | S: Maintained |
Kristoffer Ericson | 084bad9 | 2009-07-29 15:04:32 -0700 | [diff] [blame] | 3835 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 3836 | F: drivers/video/fbdev/s1d13xxxfb.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3837 | F: include/video/s1d13xxxfb.h |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 3838 | |
Mark Einon | 38df649 | 2014-09-30 22:29:46 +0100 | [diff] [blame] | 3839 | ET131X NETWORK DRIVER |
| 3840 | M: Mark Einon <mark.einon@gmail.com> |
| 3841 | S: Odd Fixes |
| 3842 | F: drivers/net/ethernet/agere/ |
| 3843 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3844 | ETHERNET BRIDGE |
Stephen Hemminger | adbbf69 | 2013-01-16 09:55:57 -0800 | [diff] [blame] | 3845 | M: Stephen Hemminger <stephen@networkplumber.org> |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 3846 | L: bridge@lists.linux-foundation.org |
David S. Miller | 4c32531 | 2010-03-04 00:42:30 -0800 | [diff] [blame] | 3847 | L: netdev@vger.kernel.org |
Michael Witten | c996d8b | 2010-11-15 19:55:34 +0000 | [diff] [blame] | 3848 | W: http://www.linuxfoundation.org/en/Net:Bridge |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3849 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3850 | F: include/linux/netfilter_bridge/ |
| 3851 | F: net/bridge/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3852 | |
Florian Fainelli | 22f08ad | 2014-02-18 09:47:49 -0800 | [diff] [blame] | 3853 | ETHERNET PHY LIBRARY |
| 3854 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 3855 | L: netdev@vger.kernel.org |
| 3856 | S: Maintained |
| 3857 | F: include/linux/phy.h |
| 3858 | F: include/linux/phy_fixed.h |
| 3859 | F: drivers/net/phy/ |
| 3860 | F: Documentation/networking/phy.txt |
| 3861 | F: drivers/of/of_mdio.c |
| 3862 | F: drivers/of/of_net.c |
| 3863 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3864 | EXT2 FILE SYSTEM |
Jan Kara | 0197195 | 2010-07-19 14:57:11 +0200 | [diff] [blame] | 3865 | M: Jan Kara <jack@suse.cz> |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 3866 | L: linux-ext4@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3867 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3868 | F: Documentation/filesystems/ext2.txt |
| 3869 | F: fs/ext2/ |
| 3870 | F: include/linux/ext2* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3871 | |
| 3872 | EXT3 FILE SYSTEM |
Jan Kara | 0197195 | 2010-07-19 14:57:11 +0200 | [diff] [blame] | 3873 | M: Jan Kara <jack@suse.cz> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3874 | M: Andrew Morton <akpm@linux-foundation.org> |
Andreas Dilger | 3c373a5 | 2010-07-19 14:55:38 +0200 | [diff] [blame] | 3875 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 3876 | L: linux-ext4@vger.kernel.org |
| 3877 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3878 | F: Documentation/filesystems/ext3.txt |
| 3879 | F: fs/ext3/ |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 3880 | |
| 3881 | EXT4 FILE SYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3882 | M: "Theodore Ts'o" <tytso@mit.edu> |
Andreas Dilger | 3c373a5 | 2010-07-19 14:55:38 +0200 | [diff] [blame] | 3883 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 3884 | L: linux-ext4@vger.kernel.org |
Theodore Ts'o | 08a225f | 2008-10-06 20:58:09 -0400 | [diff] [blame] | 3885 | W: http://ext4.wiki.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 3886 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3887 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3888 | F: Documentation/filesystems/ext4.txt |
| 3889 | F: fs/ext4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3890 | |
Mimi Zohar | c5532b0 | 2011-08-17 18:52:24 -0400 | [diff] [blame] | 3891 | Extended Verification Module (EVM) |
Mimi Zohar | 74dd744 | 2014-02-27 08:44:45 -0500 | [diff] [blame] | 3892 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
| 3893 | L: linux-ima-devel@lists.sourceforge.net |
| 3894 | L: linux-security-module@vger.kernel.org |
Mimi Zohar | c5532b0 | 2011-08-17 18:52:24 -0400 | [diff] [blame] | 3895 | S: Supported |
| 3896 | F: security/integrity/evm/ |
| 3897 | |
MyungJoo Ham | df6b3cf | 2012-06-25 16:33:36 +0900 | [diff] [blame] | 3898 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
| 3899 | M: MyungJoo Ham <myungjoo.ham@samsung.com> |
| 3900 | M: Chanwoo Choi <cw00.choi@samsung.com> |
| 3901 | L: linux-kernel@vger.kernel.org |
Chanwoo Choi | 81df63a | 2013-09-28 15:04:37 +0900 | [diff] [blame] | 3902 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
MyungJoo Ham | df6b3cf | 2012-06-25 16:33:36 +0900 | [diff] [blame] | 3903 | S: Maintained |
| 3904 | F: drivers/extcon/ |
| 3905 | F: Documentation/extcon/ |
| 3906 | |
Jingoo Han | e2a75c4 | 2014-04-10 20:24:03 +0900 | [diff] [blame] | 3907 | EXYNOS DP DRIVER |
| 3908 | M: Jingoo Han <jg1.han@samsung.com> |
| 3909 | L: dri-devel@lists.freedesktop.org |
| 3910 | S: Maintained |
| 3911 | F: drivers/gpu/drm/exynos/exynos_dp* |
| 3912 | |
Donghwa Lee | 33ad391 | 2012-03-06 11:44:58 +0900 | [diff] [blame] | 3913 | EXYNOS MIPI DISPLAY DRIVERS |
| 3914 | M: Inki Dae <inki.dae@samsung.com> |
| 3915 | M: Donghwa Lee <dh09.lee@samsung.com> |
| 3916 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 3917 | L: linux-fbdev@vger.kernel.org |
| 3918 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 3919 | F: drivers/video/fbdev/exynos/exynos_mipi* |
Donghwa Lee | 33ad391 | 2012-03-06 11:44:58 +0900 | [diff] [blame] | 3920 | F: include/video/exynos_mipi* |
| 3921 | |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 3922 | F71805F HARDWARE MONITORING DRIVER |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 3923 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 3924 | L: lm-sensors@lm-sensors.org |
| 3925 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3926 | F: Documentation/hwmon/f71805f |
| 3927 | F: drivers/hwmon/f71805f.c |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 3928 | |
Michael Büsch | eea977e | 2012-04-02 12:14:32 -0300 | [diff] [blame] | 3929 | FC0011 TUNER DRIVER |
| 3930 | M: Michael Buesch <m@bues.ch> |
| 3931 | L: linux-media@vger.kernel.org |
| 3932 | S: Maintained |
Mauro Carvalho Chehab | ccae7af | 2012-06-14 16:35:59 -0300 | [diff] [blame] | 3933 | F: drivers/media/tuners/fc0011.h |
| 3934 | F: drivers/media/tuners/fc0011.c |
Michael Büsch | eea977e | 2012-04-02 12:14:32 -0300 | [diff] [blame] | 3935 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 3936 | FC2580 MEDIA DRIVER |
| 3937 | M: Antti Palosaari <crope@iki.fi> |
| 3938 | L: linux-media@vger.kernel.org |
| 3939 | W: http://linuxtv.org/ |
| 3940 | W: http://palosaari.fi/linux/ |
| 3941 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3942 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3943 | S: Maintained |
| 3944 | F: drivers/media/tuners/fc2580* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3945 | |
Eric Paris | 88b2dbd | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 3946 | FANOTIFY |
| 3947 | M: Eric Paris <eparis@redhat.com> |
| 3948 | S: Maintained |
| 3949 | F: fs/notify/fanotify/ |
| 3950 | F: include/linux/fanotify.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3951 | F: include/uapi/linux/fanotify.h |
Eric Paris | 88b2dbd | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 3952 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3953 | FARSYNC SYNCHRONOUS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3954 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3955 | W: http://www.farsite.co.uk/ |
| 3956 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3957 | F: drivers/net/wan/farsync.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3958 | |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 3959 | FAULT INJECTION SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3960 | M: Akinobu Mita <akinobu.mita@gmail.com> |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 3961 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3962 | F: Documentation/fault-injection/ |
| 3963 | F: lib/fault-inject.c |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 3964 | |
Noralf Trønnes | 053e514 | 2015-01-23 19:29:07 +0100 | [diff] [blame] | 3965 | FBTFT Framebuffer drivers |
| 3966 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 3967 | M: Noralf Trønnes <noralf@tronnes.org> |
| 3968 | S: Maintained |
| 3969 | F: drivers/staging/fbtft/ |
| 3970 | |
Robert Love | cae727d | 2010-02-16 12:16:00 -0800 | [diff] [blame] | 3971 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
Robert Love | 3bd746c | 2014-05-28 14:19:01 -0700 | [diff] [blame] | 3972 | M: Vasu Dev <vasu.dev@intel.com> |
Neil Horman | f4aaea6 | 2013-05-03 19:38:10 +0000 | [diff] [blame] | 3973 | L: fcoe-devel@open-fcoe.org |
Robert Love | cae727d | 2010-02-16 12:16:00 -0800 | [diff] [blame] | 3974 | W: www.Open-FCoE.org |
| 3975 | S: Supported |
| 3976 | F: drivers/scsi/libfc/ |
| 3977 | F: drivers/scsi/fcoe/ |
| 3978 | F: include/scsi/fc/ |
| 3979 | F: include/scsi/libfc.h |
| 3980 | F: include/scsi/libfcoe.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3981 | F: include/uapi/scsi/fc/ |
Robert Love | cae727d | 2010-02-16 12:16:00 -0800 | [diff] [blame] | 3982 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3983 | FILE LOCKING (flock() and fcntl()/lockf()) |
Jeff Layton | 8c836fa | 2014-04-30 13:28:17 -0400 | [diff] [blame] | 3984 | M: Jeff Layton <jlayton@poochiereds.net> |
Jeff Layton | 18156e7 | 2014-02-03 12:13:08 -0500 | [diff] [blame] | 3985 | M: J. Bruce Fields <bfields@fieldses.org> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3986 | L: linux-fsdevel@vger.kernel.org |
| 3987 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3988 | F: include/linux/fcntl.h |
| 3989 | F: include/linux/fs.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3990 | F: include/uapi/linux/fcntl.h |
| 3991 | F: include/uapi/linux/fs.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3992 | F: fs/fcntl.c |
| 3993 | F: fs/locks.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3994 | |
| 3995 | FILESYSTEMS (VFS and infrastructure) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3996 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3997 | L: linux-fsdevel@vger.kernel.org |
| 3998 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3999 | F: fs/* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4000 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 4001 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
Jean Delvare | 05576a1 | 2009-10-09 20:35:19 +0200 | [diff] [blame] | 4002 | M: Riku Voipio <riku.voipio@iki.fi> |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 4003 | L: lm-sensors@lm-sensors.org |
| 4004 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 4005 | F: drivers/hwmon/f75375s.c |
| 4006 | F: include/linux/f75375s.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 4007 | |
Clemens Ladisch | a331b0c | 2011-05-25 09:48:48 +0200 | [diff] [blame] | 4008 | FIREWIRE AUDIO DRIVERS |
| 4009 | M: Clemens Ladisch <clemens@ladisch.de> |
| 4010 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 4011 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 4012 | S: Maintained |
| 4013 | F: sound/firewire/ |
| 4014 | |
Stefan Richter | eb86ec5 | 2012-11-03 09:25:20 +0100 | [diff] [blame] | 4015 | FIREWIRE MEDIA DRIVERS (firedtv) |
| 4016 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
| 4017 | L: linux-media@vger.kernel.org |
| 4018 | L: linux1394-devel@lists.sourceforge.net |
| 4019 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git |
| 4020 | S: Maintained |
| 4021 | F: drivers/media/firewire/ |
| 4022 | |
Chris Boot | a511ce3 | 2012-04-14 17:50:35 -0700 | [diff] [blame] | 4023 | FIREWIRE SBP-2 TARGET |
| 4024 | M: Chris Boot <bootc@bootc.net> |
| 4025 | L: linux-scsi@vger.kernel.org |
| 4026 | L: target-devel@vger.kernel.org |
| 4027 | L: linux1394-devel@lists.sourceforge.net |
| 4028 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master |
| 4029 | S: Maintained |
| 4030 | F: drivers/target/sbp/ |
| 4031 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 4032 | FIREWIRE SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4033 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4034 | L: linux1394-devel@lists.sourceforge.net |
Stefan Richter | 958a29c | 2009-12-26 01:36:12 +0100 | [diff] [blame] | 4035 | W: http://ieee1394.wiki.kernel.org/ |
Stefan Richter | 2ca526b | 2011-12-20 21:23:28 +0100 | [diff] [blame] | 4036 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4037 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4038 | F: drivers/firewire/ |
Stefan Richter | 8f06ce3 | 2012-12-17 16:00:07 -0800 | [diff] [blame] | 4039 | F: include/linux/firewire.h |
| 4040 | F: include/uapi/linux/firewire*.h |
Stefan Richter | 9f6d3c4 | 2010-07-22 11:58:05 +0200 | [diff] [blame] | 4041 | F: tools/firewire/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4042 | |
| 4043 | FIRMWARE LOADER (request_firmware) |
Ming Lei | 39e6808 | 2012-08-20 19:04:17 +0800 | [diff] [blame] | 4044 | M: Ming Lei <ming.lei@canonical.com> |
| 4045 | L: linux-kernel@vger.kernel.org |
| 4046 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4047 | F: Documentation/firmware_class/ |
| 4048 | F: drivers/base/firmware*.c |
| 4049 | F: include/linux/firmware.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4050 | |
Philip J Kelleher | f730e3d | 2013-06-18 14:43:58 -0500 | [diff] [blame] | 4051 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
Philip J Kelleher | 9bb3c44 | 2013-02-27 09:24:59 -0600 | [diff] [blame] | 4052 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
| 4053 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> |
| 4054 | S: Maintained |
| 4055 | F: drivers/block/rsxx/ |
| 4056 | |
Jiri Kosina | 8206f66 | 2012-05-18 13:52:29 +0200 | [diff] [blame] | 4057 | FLOPPY DRIVER |
| 4058 | M: Jiri Kosina <jkosina@suse.cz> |
| 4059 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git |
| 4060 | S: Odd fixes |
| 4061 | F: drivers/block/floppy.c |
| 4062 | |
Alessandro Rubini | 9c9f32e | 2013-06-12 09:13:25 +0200 | [diff] [blame] | 4063 | FMC SUBSYSTEM |
| 4064 | M: Alessandro Rubini <rubini@gnudd.com> |
| 4065 | W: http://www.ohwr.org/projects/fmc-bus |
| 4066 | S: Supported |
| 4067 | F: drivers/fmc/ |
| 4068 | F: include/linux/fmc*.h |
| 4069 | F: include/linux/ipmi-fru.h |
| 4070 | K: fmc_d.*register |
| 4071 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4072 | FPU EMULATOR |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4073 | M: Bill Metzenthen <billm@melbpc.org.au> |
Joe Perches | e769980 | 2009-04-07 21:12:18 -0700 | [diff] [blame] | 4074 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4075 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4076 | F: arch/x86/math-emu/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4077 | |
| 4078 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4079 | L: netdev@vger.kernel.org |
Joe Perches | c173bfa | 2011-07-28 10:54:23 +0000 | [diff] [blame] | 4080 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4081 | F: drivers/net/wan/dlci.c |
| 4082 | F: drivers/net/wan/sdla.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4083 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4084 | FRAMEBUFFER LAYER |
Jean-Christophe PLAGNIOL-VILLARD | 5489e94 | 2013-05-30 22:23:44 +0200 | [diff] [blame] | 4085 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
| 4086 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 4087 | L: linux-fbdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4088 | W: http://linux-fbdev.sourceforge.net/ |
Paul Mundt | b22fe37 | 2010-11-17 13:08:58 +0900 | [diff] [blame] | 4089 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
Jean-Christophe PLAGNIOL-VILLARD | 5489e94 | 2013-05-30 22:23:44 +0200 | [diff] [blame] | 4090 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
Paul Mundt | 56be141 | 2011-03-23 08:29:07 +0900 | [diff] [blame] | 4091 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4092 | F: Documentation/fb/ |
Paul Mundt | d958c62 | 2011-03-23 08:22:41 +0900 | [diff] [blame] | 4093 | F: Documentation/devicetree/bindings/fb/ |
Paul Mundt | b22fe37 | 2010-11-17 13:08:58 +0900 | [diff] [blame] | 4094 | F: drivers/video/ |
| 4095 | F: include/video/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4096 | F: include/linux/fb.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 4097 | F: include/uapi/video/ |
| 4098 | F: include/uapi/linux/fb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4099 | |
Timur Tabi | a57c188 | 2012-10-16 17:33:42 -0500 | [diff] [blame] | 4100 | FREESCALE DIU FRAMEBUFFER DRIVER |
Timur Tabi | c4ef9bc | 2013-01-15 14:19:45 -0600 | [diff] [blame] | 4101 | M: Timur Tabi <timur@tabi.org> |
Timur Tabi | a57c188 | 2012-10-16 17:33:42 -0500 | [diff] [blame] | 4102 | L: linux-fbdev@vger.kernel.org |
Timur Tabi | c4ef9bc | 2013-01-15 14:19:45 -0600 | [diff] [blame] | 4103 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 4104 | F: drivers/video/fbdev/fsl-diu-fb.* |
Timur Tabi | a57c188 | 2012-10-16 17:33:42 -0500 | [diff] [blame] | 4105 | |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 4106 | FREESCALE DMA DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4107 | M: Li Yang <leoli@freescale.com> |
| 4108 | M: Zhang Wei <zw@zh-kernel.org> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 4109 | L: linuxppc-dev@lists.ozlabs.org |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 4110 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4111 | F: drivers/dma/fsldma.* |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 4112 | |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 4113 | FREESCALE I2C CPM DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4114 | M: Jochen Friedrich <jochen@scram.de> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 4115 | L: linuxppc-dev@lists.ozlabs.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4116 | L: linux-i2c@vger.kernel.org |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 4117 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4118 | F: drivers/i2c/busses/i2c-cpm.c |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 4119 | |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 4120 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4121 | M: Sascha Hauer <kernel@pengutronix.de> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 4122 | L: linux-fbdev@vger.kernel.org |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 4123 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 4124 | S: Maintained |
Cesar Eduardo Barros | bad985a | 2013-01-04 15:35:28 -0800 | [diff] [blame] | 4125 | F: include/linux/platform_data/video-imxfb.h |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 4126 | F: drivers/video/fbdev/imxfb.c |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 4127 | |
Han Xu | 4d8e2ce | 2015-01-16 03:29:17 +0800 | [diff] [blame] | 4128 | FREESCALE QUAD SPI DRIVER |
| 4129 | M: Han Xu <han.xu@freescale.com> |
| 4130 | L: linux-mtd@lists.infradead.org |
| 4131 | S: Maintained |
| 4132 | F: drivers/mtd/spi-nor/fsl-quadspi.c |
| 4133 | |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 4134 | FREESCALE SOC FS_ENET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4135 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
| 4136 | M: Vitaly Bordug <vbordug@ru.mvista.com> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 4137 | L: linuxppc-dev@lists.ozlabs.org |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 4138 | L: netdev@vger.kernel.org |
| 4139 | S: Maintained |
Jeff Kirsher | ec21e2e | 2011-06-11 02:29:36 -0700 | [diff] [blame] | 4140 | F: drivers/net/ethernet/freescale/fs_enet/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4141 | F: include/linux/fs_enet_pd.h |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 4142 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 4143 | FREESCALE QUICC ENGINE LIBRARY |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 4144 | L: linuxppc-dev@lists.ozlabs.org |
Timur Tabi | c4ef9bc | 2013-01-15 14:19:45 -0600 | [diff] [blame] | 4145 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4146 | F: arch/powerpc/sysdev/qe_lib/ |
| 4147 | F: arch/powerpc/include/asm/*qe.h |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 4148 | |
Joe Perches | b55ef92 | 2009-10-26 16:49:46 -0700 | [diff] [blame] | 4149 | FREESCALE USB PERIPHERAL DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4150 | M: Li Yang <leoli@freescale.com> |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 4151 | L: linux-usb@vger.kernel.org |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 4152 | L: linuxppc-dev@lists.ozlabs.org |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 4153 | S: Maintained |
Joe Perches | faf2e1d | 2014-08-08 14:26:18 -0700 | [diff] [blame] | 4154 | F: drivers/usb/gadget/udc/fsl* |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 4155 | |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 4156 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4157 | M: Li Yang <leoli@freescale.com> |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 4158 | L: netdev@vger.kernel.org |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 4159 | L: linuxppc-dev@lists.ozlabs.org |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 4160 | S: Maintained |
Jeff Kirsher | ec21e2e | 2011-06-11 02:29:36 -0700 | [diff] [blame] | 4161 | F: drivers/net/ethernet/freescale/ucc_geth* |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 4162 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 4163 | FREESCALE QUICC ENGINE UCC UART DRIVER |
Timur Tabi | c4ef9bc | 2013-01-15 14:19:45 -0600 | [diff] [blame] | 4164 | M: Timur Tabi <timur@tabi.org> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 4165 | L: linuxppc-dev@lists.ozlabs.org |
Timur Tabi | c4ef9bc | 2013-01-15 14:19:45 -0600 | [diff] [blame] | 4166 | S: Maintained |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 4167 | F: drivers/tty/serial/ucc_uart.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 4168 | |
| 4169 | FREESCALE SOC SOUND DRIVERS |
Timur Tabi | c4ef9bc | 2013-01-15 14:19:45 -0600 | [diff] [blame] | 4170 | M: Timur Tabi <timur@tabi.org> |
Mark Brown | dc85950 | 2014-08-07 10:47:24 +0100 | [diff] [blame] | 4171 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
Xiubo Li | b4b9829 | 2014-12-12 16:54:14 -0800 | [diff] [blame] | 4172 | M: Xiubo Li <Xiubo.Lee@gmail.com> |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 4173 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 4174 | L: linuxppc-dev@lists.ozlabs.org |
Timur Tabi | c4ef9bc | 2013-01-15 14:19:45 -0600 | [diff] [blame] | 4175 | S: Maintained |
Joe Perches | 69aefce | 2009-04-09 10:39:22 -0700 | [diff] [blame] | 4176 | F: sound/soc/fsl/fsl* |
Mark Brown | dc85950 | 2014-08-07 10:47:24 +0100 | [diff] [blame] | 4177 | F: sound/soc/fsl/imx* |
Joe Perches | 69aefce | 2009-04-09 10:39:22 -0700 | [diff] [blame] | 4178 | F: sound/soc/fsl/mpc8610_hpcd.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 4179 | |
J. German Rivera | 31c8896 | 2015-03-05 19:29:09 -0600 | [diff] [blame] | 4180 | FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER |
| 4181 | M: J. German Rivera <German.Rivera@freescale.com> |
| 4182 | L: linux-kernel@vger.kernel.org |
| 4183 | S: Maintained |
| 4184 | F: drivers/staging/fsl-mc/ |
| 4185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4186 | FREEVXFS FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4187 | M: Christoph Hellwig <hch@infradead.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4188 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
| 4189 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4190 | F: fs/freevxfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4191 | |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 4192 | FREEZER |
Rafael J. Wysocki | 49db190 | 2013-10-09 01:47:53 +0200 | [diff] [blame] | 4193 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
Rafael J. Wysocki | 7fb0608 | 2014-03-20 03:34:47 +0100 | [diff] [blame] | 4194 | M: Pavel Machek <pavel@ucw.cz> |
WANG Cong | bf1c138 | 2011-10-08 20:57:50 +0200 | [diff] [blame] | 4195 | L: linux-pm@vger.kernel.org |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 4196 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4197 | F: Documentation/power/freezing-of-tasks.txt |
| 4198 | F: include/linux/freezer.h |
| 4199 | F: kernel/freezer.c |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 4200 | |
Konrad Rzeszutek Wilk | 839a1f7 | 2012-04-16 17:06:35 -0400 | [diff] [blame] | 4201 | FRONTSWAP API |
| 4202 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
| 4203 | L: linux-kernel@vger.kernel.org |
| 4204 | S: Maintained |
| 4205 | F: mm/frontswap.c |
| 4206 | F: include/linux/frontswap.h |
| 4207 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 4208 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4209 | M: David Howells <dhowells@redhat.com> |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 4210 | L: linux-cachefs@redhat.com |
| 4211 | S: Supported |
| 4212 | F: Documentation/filesystems/caching/ |
| 4213 | F: fs/fscache/ |
| 4214 | F: include/linux/fscache*.h |
| 4215 | |
Jaegeuk Kim | f58ad8f | 2012-12-21 12:12:27 +0900 | [diff] [blame] | 4216 | F2FS FILE SYSTEM |
Jaegeuk Kim | 9b29d48 | 2014-05-30 08:20:08 +0900 | [diff] [blame] | 4217 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
Jaegeuk Kim | f6238a7 | 2014-05-31 01:00:49 +0900 | [diff] [blame] | 4218 | M: Changman Lee <cm224.lee@samsung.com> |
Jaegeuk Kim | f58ad8f | 2012-12-21 12:12:27 +0900 | [diff] [blame] | 4219 | L: linux-f2fs-devel@lists.sourceforge.net |
| 4220 | W: http://en.wikipedia.org/wiki/F2FS |
| 4221 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git |
| 4222 | S: Maintained |
| 4223 | F: Documentation/filesystems/f2fs.txt |
Jaegeuk Kim | 3bac380 | 2014-01-09 21:00:06 +0900 | [diff] [blame] | 4224 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
Jaegeuk Kim | f58ad8f | 2012-12-21 12:12:27 +0900 | [diff] [blame] | 4225 | F: fs/f2fs/ |
| 4226 | F: include/linux/f2fs_fs.h |
| 4227 | |
David Howells | 5ab7ffe | 2007-04-10 15:10:45 +0100 | [diff] [blame] | 4228 | FUJITSU FR-V (FRV) PORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4229 | M: David Howells <dhowells@redhat.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4230 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4231 | F: arch/frv/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4232 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 4233 | FUJITSU LAPTOP EXTRAS |
Jonathan Woithe | 409a3e9 | 2012-03-27 13:01:01 +1030 | [diff] [blame] | 4234 | M: Jonathan Woithe <jwoithe@just42.net> |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 4235 | L: platform-driver-x86@vger.kernel.org |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 4236 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4237 | F: drivers/platform/x86/fujitsu-laptop.c |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 4238 | |
Heungjun Kim | 4da621b | 2011-11-11 08:05:33 -0300 | [diff] [blame] | 4239 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
| 4240 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 4241 | M: Heungjun Kim <riverful.kim@samsung.com> |
| 4242 | L: linux-media@vger.kernel.org |
| 4243 | S: Maintained |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 4244 | F: drivers/media/i2c/m5mols/ |
Heungjun Kim | 4da621b | 2011-11-11 08:05:33 -0300 | [diff] [blame] | 4245 | F: include/media/m5mols.h |
| 4246 | |
Robert Gerlach | 2d24c49 | 2012-01-18 14:26:22 +0100 | [diff] [blame] | 4247 | FUJITSU TABLET EXTRAS |
| 4248 | M: Robert Gerlach <khnz@gmx.de> |
| 4249 | L: platform-driver-x86@vger.kernel.org |
| 4250 | S: Maintained |
| 4251 | F: drivers/platform/x86/fujitsu-tablet.c |
| 4252 | |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 4253 | FUSE: FILESYSTEM IN USERSPACE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4254 | M: Miklos Szeredi <miklos@szeredi.hu> |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 4255 | L: fuse-devel@lists.sourceforge.net |
| 4256 | W: http://fuse.sourceforge.net/ |
| 4257 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4258 | F: fs/fuse/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 4259 | F: include/uapi/linux/fuse.h |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 4260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4261 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4262 | M: Rik Faith <faith@cs.unc.edu> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4263 | L: linux-scsi@vger.kernel.org |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 4264 | S: Odd Fixes (e.g., new signatures) |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4265 | F: drivers/scsi/fdomain.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4266 | |
Peter Oberparleiter | d8e2162 | 2013-10-16 13:46:49 -0700 | [diff] [blame] | 4267 | GCOV BASED KERNEL PROFILING |
| 4268 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> |
| 4269 | S: Maintained |
| 4270 | F: kernel/gcov/ |
| 4271 | F: Documentation/gcov.txt |
| 4272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4273 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4274 | M: Achim Leubner <achim_leubner@adaptec.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4275 | L: linux-scsi@vger.kernel.org |
| 4276 | W: http://www.icp-vortex.com/ |
| 4277 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4278 | F: drivers/scsi/gdt* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4279 | |
Jan Kiszka | 158daf1 | 2015-02-17 13:47:49 -0800 | [diff] [blame] | 4280 | GDB KERNEL DEBUGGING HELPER SCRIPTS |
| 4281 | M: Jan Kiszka <jan.kiszka@siemens.com> |
| 4282 | S: Supported |
| 4283 | F: scripts/gdb/ |
| 4284 | |
Hans Verkuil | 3169a1c | 2012-11-23 07:11:58 -0300 | [diff] [blame] | 4285 | GEMTEK FM RADIO RECEIVER DRIVER |
| 4286 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 4287 | L: linux-media@vger.kernel.org |
| 4288 | T: git git://linuxtv.org/media_tree.git |
| 4289 | W: http://linuxtv.org |
| 4290 | S: Maintained |
| 4291 | F: drivers/media/radio/radio-gemtek* |
| 4292 | |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 4293 | GENERIC GPIO I2C DRIVER |
Andrew Morton | 880b0e2 | 2010-10-07 12:59:28 -0700 | [diff] [blame] | 4294 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 4295 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4296 | F: drivers/i2c/busses/i2c-gpio.c |
| 4297 | F: include/linux/i2c-gpio.h |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 4298 | |
Peter Korsgaard | 92ed1a7 | 2011-01-10 22:11:23 +0100 | [diff] [blame] | 4299 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
| 4300 | M: Peter Korsgaard <peter.korsgaard@barco.com> |
| 4301 | L: linux-i2c@vger.kernel.org |
| 4302 | S: Supported |
Jean Delvare | e7065e2 | 2012-04-28 15:32:06 +0200 | [diff] [blame] | 4303 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
| 4304 | F: include/linux/i2c-mux-gpio.h |
| 4305 | F: Documentation/i2c/muxes/i2c-mux-gpio |
Peter Korsgaard | 92ed1a7 | 2011-01-10 22:11:23 +0100 | [diff] [blame] | 4306 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 4307 | GENERIC HDLC (WAN) DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4308 | M: Krzysztof Halasa <khc@pm.waw.pl> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4309 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
| 4310 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4311 | F: drivers/net/wan/c101.c |
| 4312 | F: drivers/net/wan/hd6457* |
| 4313 | F: drivers/net/wan/hdlc* |
| 4314 | F: drivers/net/wan/n2.c |
| 4315 | F: drivers/net/wan/pc300too.c |
| 4316 | F: drivers/net/wan/pci200syn.c |
| 4317 | F: drivers/net/wan/wanxl* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4318 | |
Arnd Bergmann | 1527aab | 2009-06-14 22:46:16 +0200 | [diff] [blame] | 4319 | GENERIC INCLUDE/ASM HEADER FILES |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4320 | M: Arnd Bergmann <arnd@arndb.de> |
Arnd Bergmann | 1527aab | 2009-06-14 22:46:16 +0200 | [diff] [blame] | 4321 | L: linux-arch@vger.kernel.org |
| 4322 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git |
| 4323 | S: Maintained |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 4324 | F: include/asm-generic/ |
| 4325 | F: include/uapi/asm-generic/ |
Arnd Bergmann | 1527aab | 2009-06-14 22:46:16 +0200 | [diff] [blame] | 4326 | |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 4327 | GENERIC PHY FRAMEWORK |
| 4328 | M: Kishon Vijay Abraham I <kishon@ti.com> |
| 4329 | L: linux-kernel@vger.kernel.org |
| 4330 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git |
| 4331 | S: Supported |
| 4332 | F: drivers/phy/ |
| 4333 | F: include/linux/phy/ |
| 4334 | |
Kevin Hilman | eea97ae | 2015-03-12 10:33:46 -0700 | [diff] [blame] | 4335 | GENERIC PM DOMAINS |
| 4336 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
| 4337 | M: Kevin Hilman <khilman@kernel.org> |
| 4338 | M: Ulf Hansson <ulf.hansson@linaro.org> |
| 4339 | L: linux-pm@vger.kernel.org |
| 4340 | S: Supported |
| 4341 | F: drivers/base/power/domain*.c |
| 4342 | F: include/linux/pm_domain.h |
| 4343 | |
Michael S. Tsirkin | ccb86a6 | 2009-07-20 10:29:34 +0300 | [diff] [blame] | 4344 | GENERIC UIO DRIVER FOR PCI DEVICES |
Joe Perches | bda2562 | 2009-10-26 16:49:39 -0700 | [diff] [blame] | 4345 | M: "Michael S. Tsirkin" <mst@redhat.com> |
Michael S. Tsirkin | ccb86a6 | 2009-07-20 10:29:34 +0300 | [diff] [blame] | 4346 | L: kvm@vger.kernel.org |
Michael S. Tsirkin | ccb86a6 | 2009-07-20 10:29:34 +0300 | [diff] [blame] | 4347 | S: Supported |
| 4348 | F: drivers/uio/uio_pci_generic.c |
| 4349 | |
Joe Perches | f8f1ec7 | 2014-06-04 16:05:31 -0700 | [diff] [blame] | 4350 | GET_MAINTAINER SCRIPT |
| 4351 | M: Joe Perches <joe@perches.com> |
| 4352 | S: Maintained |
| 4353 | F: scripts/get_maintainer.pl |
| 4354 | |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 4355 | GFS2 FILE SYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4356 | M: Steven Whitehouse <swhiteho@redhat.com> |
Bob Peterson | 28666d6 | 2015-02-13 11:23:11 -0600 | [diff] [blame] | 4357 | M: Bob Peterson <rpeterso@redhat.com> |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 4358 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 4359 | W: http://sources.redhat.com/cluster/ |
Bob Peterson | 28666d6 | 2015-02-13 11:23:11 -0600 | [diff] [blame] | 4360 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 4361 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4362 | F: Documentation/filesystems/gfs2*.txt |
| 4363 | F: fs/gfs2/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 4364 | F: include/uapi/linux/gfs2_ondisk.h |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 4365 | |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 4366 | GIGASET ISDN DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4367 | M: Hansjoerg Lipp <hjlipp@web.de> |
| 4368 | M: Tilman Schmidt <tilman@imap.cc> |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 4369 | L: gigaset307x-common@lists.sourceforge.net |
| 4370 | W: http://gigaset307x.sourceforge.net/ |
| 4371 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4372 | F: Documentation/isdn/README.gigaset |
| 4373 | F: drivers/isdn/gigaset/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 4374 | F: include/uapi/linux/gigaset_dev.h |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 4375 | |
Joe Perches | 7eea35f | 2014-07-30 05:09:23 -0300 | [diff] [blame] | 4376 | GO7007 MPEG CODEC |
| 4377 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 4378 | L: linux-media@vger.kernel.org |
| 4379 | S: Maintained |
| 4380 | F: drivers/media/usb/go7007/ |
| 4381 | |
Bastien Nocera | ca96ea8 | 2014-10-31 09:26:16 -0700 | [diff] [blame] | 4382 | GOODIX TOUCHSCREEN |
| 4383 | M: Bastien Nocera <hadess@hadess.net> |
| 4384 | L: linux-input@vger.kernel.org |
| 4385 | S: Maintained |
| 4386 | F: drivers/input/touchscreen/goodix.c |
| 4387 | |
Grant Likely | a0dc00b | 2011-02-12 01:48:14 -0700 | [diff] [blame] | 4388 | GPIO SUBSYSTEM |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 4389 | M: Linus Walleij <linus.walleij@linaro.org> |
Linus Walleij | f2fa75c | 2013-12-10 09:43:09 +0100 | [diff] [blame] | 4390 | M: Alexandre Courbot <gnurou@gmail.com> |
Alexandre Courbot | d15b717 | 2013-05-26 11:50:54 +0900 | [diff] [blame] | 4391 | L: linux-gpio@vger.kernel.org |
Linus Walleij | f2fa75c | 2013-12-10 09:43:09 +0100 | [diff] [blame] | 4392 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
| 4393 | S: Maintained |
| 4394 | F: Documentation/gpio/ |
Grant Likely | a0dc00b | 2011-02-12 01:48:14 -0700 | [diff] [blame] | 4395 | F: drivers/gpio/ |
Alexandre Courbot | bdc6e95 | 2014-08-04 13:06:58 +0900 | [diff] [blame] | 4396 | F: include/linux/gpio/ |
| 4397 | F: include/linux/gpio.h |
Yang Bai | 9b69234 | 2012-10-04 17:12:35 -0700 | [diff] [blame] | 4398 | F: include/asm-generic/gpio.h |
Grant Likely | a0dc00b | 2011-02-12 01:48:14 -0700 | [diff] [blame] | 4399 | |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 4400 | GRE DEMULTIPLEXER DRIVER |
| 4401 | M: Dmitry Kozlov <xeb@mail.ru> |
| 4402 | L: netdev@vger.kernel.org |
| 4403 | S: Maintained |
Joe Perches | 11c2677 | 2013-09-11 14:23:48 -0700 | [diff] [blame] | 4404 | F: net/ipv4/gre_demux.c |
| 4405 | F: net/ipv4/gre_offload.c |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 4406 | F: include/net/gre.h |
| 4407 | |
Kristoffer Glembo | d4c4113 | 2010-02-15 03:33:44 +0000 | [diff] [blame] | 4408 | GRETH 10/100/1G Ethernet MAC device driver |
| 4409 | M: Kristoffer Glembo <kristoffer@gaisler.com> |
| 4410 | L: netdev@vger.kernel.org |
| 4411 | S: Maintained |
Joe Perches | a31a96a | 2012-01-10 15:08:58 -0800 | [diff] [blame] | 4412 | F: drivers/net/ethernet/aeroflex/ |
Kristoffer Glembo | d4c4113 | 2010-02-15 03:33:44 +0000 | [diff] [blame] | 4413 | |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 4414 | GSPCA FINEPIX SUBDRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4415 | M: Frank Zago <frank@zago.net> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4416 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 4417 | T: git git://linuxtv.org/media_tree.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 4418 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 4419 | F: drivers/media/usb/gspca/finepix.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 4420 | |
Olivier Lorin | 4b3fa3c | 2009-10-03 19:09:10 -0300 | [diff] [blame] | 4421 | GSPCA GL860 SUBDRIVER |
| 4422 | M: Olivier Lorin <o.lorin@laposte.net> |
| 4423 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 4424 | T: git git://linuxtv.org/media_tree.git |
Olivier Lorin | 4b3fa3c | 2009-10-03 19:09:10 -0300 | [diff] [blame] | 4425 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 4426 | F: drivers/media/usb/gspca/gl860/ |
Olivier Lorin | 4b3fa3c | 2009-10-03 19:09:10 -0300 | [diff] [blame] | 4427 | |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 4428 | GSPCA M5602 SUBDRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4429 | M: Erik Andren <erik.andren@gmail.com> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4430 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 4431 | T: git git://linuxtv.org/media_tree.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 4432 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 4433 | F: drivers/media/usb/gspca/m5602/ |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 4434 | |
| 4435 | GSPCA PAC207 SONIXB SUBDRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4436 | M: Hans de Goede <hdegoede@redhat.com> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4437 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 4438 | T: git git://linuxtv.org/media_tree.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 4439 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 4440 | F: drivers/media/usb/gspca/pac207.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 4441 | |
Brian Johnson | 261982f | 2009-07-19 15:58:56 -0300 | [diff] [blame] | 4442 | GSPCA SN9C20X SUBDRIVER |
Joe Perches | d95c5b0 | 2009-08-16 20:03:51 -0300 | [diff] [blame] | 4443 | M: Brian Johnson <brijohn@gmail.com> |
Brian Johnson | 261982f | 2009-07-19 15:58:56 -0300 | [diff] [blame] | 4444 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 4445 | T: git git://linuxtv.org/media_tree.git |
Brian Johnson | 261982f | 2009-07-19 15:58:56 -0300 | [diff] [blame] | 4446 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 4447 | F: drivers/media/usb/gspca/sn9c20x.c |
Brian Johnson | 261982f | 2009-07-19 15:58:56 -0300 | [diff] [blame] | 4448 | |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 4449 | GSPCA T613 SUBDRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4450 | M: Leandro Costantino <lcostantino@gmail.com> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4451 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 4452 | T: git git://linuxtv.org/media_tree.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 4453 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 4454 | F: drivers/media/usb/gspca/t613.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 4455 | |
| 4456 | GSPCA USB WEBCAM DRIVER |
Jean-Francois Moine | fc3f906 | 2012-05-24 07:29:41 -0300 | [diff] [blame] | 4457 | M: Hans de Goede <hdegoede@redhat.com> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 4458 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 4459 | T: git git://linuxtv.org/media_tree.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 4460 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 4461 | F: drivers/media/usb/gspca/ |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 4462 | |
Davidlohr Bueso | 584ec97 | 2013-12-18 17:08:55 -0800 | [diff] [blame] | 4463 | GUID PARTITION TABLE (GPT) |
| 4464 | M: Davidlohr Bueso <davidlohr@hp.com> |
| 4465 | L: linux-efi@vger.kernel.org |
| 4466 | S: Maintained |
| 4467 | F: block/partitions/efi.* |
| 4468 | |
Ezequiel Garcia | aa3c598 | 2012-10-01 12:41:16 -0300 | [diff] [blame] | 4469 | STK1160 USB VIDEO CAPTURE DRIVER |
Ezequiel Garcia | 3259aa5 | 2015-03-10 11:43:20 -0300 | [diff] [blame] | 4470 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> |
Ezequiel Garcia | aa3c598 | 2012-10-01 12:41:16 -0300 | [diff] [blame] | 4471 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 4472 | T: git git://linuxtv.org/media_tree.git |
Ezequiel Garcia | aa3c598 | 2012-10-01 12:41:16 -0300 | [diff] [blame] | 4473 | S: Maintained |
| 4474 | F: drivers/media/usb/stk1160/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4475 | |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 4476 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
| 4477 | M: Frank Seidel <frank@f-seidel.de> |
| 4478 | L: platform-driver-x86@vger.kernel.org |
| 4479 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ |
| 4480 | S: Maintained |
| 4481 | F: drivers/platform/x86/hdaps.c |
| 4482 | |
Hans Verkuil | 48fc9e2 | 2013-04-11 03:36:49 -0300 | [diff] [blame] | 4483 | HDPVR USB VIDEO ENCODER DRIVER |
| 4484 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 4485 | L: linux-media@vger.kernel.org |
| 4486 | T: git git://linuxtv.org/media_tree.git |
| 4487 | W: http://linuxtv.org |
| 4488 | S: Odd Fixes |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 4489 | F: drivers/media/usb/hdpvr/ |
Hans Verkuil | 48fc9e2 | 2013-04-11 03:36:49 -0300 | [diff] [blame] | 4490 | |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 4491 | HWPOISON MEMORY FAILURE HANDLING |
Andi Kleen | f9625c4 | 2014-06-04 16:05:32 -0700 | [diff] [blame] | 4492 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 4493 | L: linux-mm@kvack.org |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 4494 | S: Maintained |
| 4495 | F: mm/memory-failure.c |
| 4496 | F: mm/hwpoison-inject.c |
| 4497 | |
| 4498 | HYPERVISOR VIRTUAL CONSOLE DRIVER |
| 4499 | L: linuxppc-dev@lists.ozlabs.org |
| 4500 | S: Odd Fixes |
| 4501 | F: drivers/tty/hvc/ |
| 4502 | |
Antti Palosaari | e5ab147 | 2014-09-10 04:20:15 -0300 | [diff] [blame] | 4503 | HACKRF MEDIA DRIVER |
| 4504 | M: Antti Palosaari <crope@iki.fi> |
| 4505 | L: linux-media@vger.kernel.org |
| 4506 | W: http://linuxtv.org/ |
| 4507 | W: http://palosaari.fi/linux/ |
| 4508 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4509 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4510 | S: Maintained |
| 4511 | F: drivers/media/usb/hackrf/ |
| 4512 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 4513 | HARDWARE MONITORING |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 4514 | M: Jean Delvare <jdelvare@suse.de> |
Guenter Roeck | ca46208 | 2012-06-01 23:28:23 -0700 | [diff] [blame] | 4515 | M: Guenter Roeck <linux@roeck-us.net> |
Robert Love | 860e1d6 | 2005-08-31 23:57:59 -0400 | [diff] [blame] | 4516 | L: lm-sensors@lm-sensors.org |
| 4517 | W: http://www.lm-sensors.org/ |
Jean Delvare | 9e012c1 | 2010-09-17 17:24:11 +0200 | [diff] [blame] | 4518 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
Guenter Roeck | 885374e | 2010-09-24 08:43:44 -0700 | [diff] [blame] | 4519 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
Jean Delvare | 9e012c1 | 2010-09-17 17:24:11 +0200 | [diff] [blame] | 4520 | S: Maintained |
Jean Delvare | 047f4ec | 2009-12-09 20:35:46 +0100 | [diff] [blame] | 4521 | F: Documentation/hwmon/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4522 | F: drivers/hwmon/ |
Jean Delvare | 047f4ec | 2009-12-09 20:35:46 +0100 | [diff] [blame] | 4523 | F: include/linux/hwmon*.h |
Robert Love | 860e1d6 | 2005-08-31 23:57:59 -0400 | [diff] [blame] | 4524 | |
| 4525 | HARDWARE RANDOM NUMBER GENERATOR CORE |
Joe Perches | c0d0787 | 2009-09-23 15:57:17 -0700 | [diff] [blame] | 4526 | M: Matt Mackall <mpm@selenic.com> |
| 4527 | M: Herbert Xu <herbert@gondor.apana.org.au> |
Michael S. Tsirkin | 3eda7167 | 2015-01-16 09:16:00 +0200 | [diff] [blame] | 4528 | L: linux-crypto@vger.kernel.org |
Joe Perches | c0d0787 | 2009-09-23 15:57:17 -0700 | [diff] [blame] | 4529 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4530 | F: Documentation/hw_random.txt |
| 4531 | F: drivers/char/hw_random/ |
| 4532 | F: include/linux/hw_random.h |
Robert Love | 860e1d6 | 2005-08-31 23:57:59 -0400 | [diff] [blame] | 4533 | |
Ohad Ben-Cohen | 8b37fcf | 2011-09-12 10:43:01 +0300 | [diff] [blame] | 4534 | HARDWARE SPINLOCK CORE |
| 4535 | M: Ohad Ben-Cohen <ohad@wizery.com> |
| 4536 | S: Maintained |
| 4537 | F: Documentation/hwspinlock.txt |
| 4538 | F: drivers/hwspinlock/hwspinlock_* |
| 4539 | F: include/linux/hwspinlock.h |
| 4540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4541 | HARMONY SOUND DRIVER |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 4542 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4543 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4544 | F: sound/parisc/harmony.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4545 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4546 | HD29L2 MEDIA DRIVER |
| 4547 | M: Antti Palosaari <crope@iki.fi> |
| 4548 | L: linux-media@vger.kernel.org |
| 4549 | W: http://linuxtv.org/ |
| 4550 | W: http://palosaari.fi/linux/ |
| 4551 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4552 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4553 | S: Maintained |
| 4554 | F: drivers/media/dvb-frontends/hd29l2* |
| 4555 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4556 | HEWLETT-PACKARD SMART2 RAID DRIVER |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4557 | L: iss_storagedev@hp.com |
Michael Opdenacker | af9f1b3 | 2014-10-13 15:51:28 -0700 | [diff] [blame] | 4558 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4559 | F: Documentation/blockdev/cpqarray.txt |
| 4560 | F: drivers/block/cpqarray.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4561 | |
Stephen M. Cameron | 9257aa4 | 2010-05-27 15:14:44 -0500 | [diff] [blame] | 4562 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
Don Brace | 693373d | 2014-10-15 22:32:41 +0000 | [diff] [blame] | 4563 | M: Don Brace <don.brace@pmcs.com> |
Stephen M. Cameron | 9257aa4 | 2010-05-27 15:14:44 -0500 | [diff] [blame] | 4564 | L: iss_storagedev@hp.com |
Don Brace | 693373d | 2014-10-15 22:32:41 +0000 | [diff] [blame] | 4565 | L: storagedev@pmcs.com |
| 4566 | L: linux-scsi@vger.kernel.org |
Stephen M. Cameron | 9257aa4 | 2010-05-27 15:14:44 -0500 | [diff] [blame] | 4567 | S: Supported |
| 4568 | F: Documentation/scsi/hpsa.txt |
| 4569 | F: drivers/scsi/hpsa*.[ch] |
| 4570 | F: include/linux/cciss*.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 4571 | F: include/uapi/linux/cciss*.h |
Stephen M. Cameron | 9257aa4 | 2010-05-27 15:14:44 -0500 | [diff] [blame] | 4572 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4573 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
Don Brace | 693373d | 2014-10-15 22:32:41 +0000 | [diff] [blame] | 4574 | M: Don Brace <don.brace@pmcs.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4575 | L: iss_storagedev@hp.com |
Don Brace | 693373d | 2014-10-15 22:32:41 +0000 | [diff] [blame] | 4576 | L: storagedev@pmcs.com |
| 4577 | L: linux-scsi@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4578 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4579 | F: Documentation/blockdev/cciss.txt |
| 4580 | F: drivers/block/cciss* |
| 4581 | F: include/linux/cciss_ioctl.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 4582 | F: include/uapi/linux/cciss_ioctl.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4583 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4584 | HFS FILESYSTEM |
Geert Uytterhoeven | 6cf515e | 2011-04-24 10:32:49 +0200 | [diff] [blame] | 4585 | L: linux-fsdevel@vger.kernel.org |
| 4586 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4587 | F: Documentation/filesystems/hfs.txt |
| 4588 | F: fs/hfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4589 | |
Geert Uytterhoeven | ef575f4 | 2014-01-23 15:54:21 -0800 | [diff] [blame] | 4590 | HFSPLUS FILESYSTEM |
| 4591 | L: linux-fsdevel@vger.kernel.org |
| 4592 | S: Orphan |
| 4593 | F: Documentation/filesystems/hfsplus.txt |
| 4594 | F: fs/hfsplus/ |
| 4595 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4596 | HGA FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4597 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4598 | L: linux-nvidia@lists.surfsouth.com |
| 4599 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml |
| 4600 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 4601 | F: drivers/video/fbdev/hgafb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4602 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 4603 | HIBERNATION (aka Software Suspend, aka swsusp) |
Rafael J. Wysocki | 49db190 | 2013-10-09 01:47:53 +0200 | [diff] [blame] | 4604 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
Rafael J. Wysocki | 7fb0608 | 2014-03-20 03:34:47 +0100 | [diff] [blame] | 4605 | M: Pavel Machek <pavel@ucw.cz> |
WANG Cong | bf1c138 | 2011-10-08 20:57:50 +0200 | [diff] [blame] | 4606 | L: linux-pm@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4607 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4608 | F: arch/x86/power/ |
| 4609 | F: drivers/base/power/ |
| 4610 | F: kernel/power/ |
| 4611 | F: include/linux/suspend.h |
| 4612 | F: include/linux/freezer.h |
| 4613 | F: include/linux/pm.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4614 | F: arch/*/include/asm/suspend*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4615 | |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 4616 | HID CORE LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4617 | M: Jiri Kosina <jkosina@suse.cz> |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 4618 | L: linux-input@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4619 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 4620 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4621 | F: drivers/hid/ |
| 4622 | F: include/linux/hid* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 4623 | F: include/uapi/linux/hid* |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 4624 | |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 4625 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4626 | M: Thomas Gleixner <tglx@linutronix.de> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 4627 | L: linux-kernel@vger.kernel.org |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 4628 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 4629 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4630 | F: Documentation/timers/ |
Thomas Gleixner | 5cee964 | 2014-06-22 12:06:40 +0200 | [diff] [blame] | 4631 | F: kernel/time/hrtimer.c |
Thomas Gleixner | 88606e8 | 2010-12-14 21:37:13 +0100 | [diff] [blame] | 4632 | F: kernel/time/clockevents.c |
| 4633 | F: kernel/time/tick*.* |
| 4634 | F: kernel/time/timer_*.c |
Joe Perches | 05ed849 | 2011-07-25 17:13:14 -0700 | [diff] [blame] | 4635 | F: include/linux/clockchips.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4636 | F: include/linux/hrtimer.h |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 4637 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4638 | HIGH-SPEED SCC DRIVER FOR AX.25 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4639 | L: linux-hams@vger.kernel.org |
Uwe Kleine-König | 8b64f2a | 2012-05-29 15:07:11 -0700 | [diff] [blame] | 4640 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4641 | F: drivers/net/hamradio/dmascc.c |
| 4642 | F: drivers/net/hamradio/scc.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4643 | |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 4644 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4645 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 4646 | W: http://www.highpoint-tech.com |
| 4647 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4648 | F: Documentation/scsi/hptiop.txt |
| 4649 | F: drivers/scsi/hptiop.c |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 4650 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4651 | HIPPI |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4652 | M: Jes Sorensen <jes@trained-monkey.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4653 | L: linux-hippi@sunsite.dk |
| 4654 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4655 | F: include/linux/hippidevice.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 4656 | F: include/uapi/linux/if_hippi.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4657 | F: net/802/hippi.c |
Jeff Kirsher | ff5a3b5 | 2011-08-01 22:48:13 -0700 | [diff] [blame] | 4658 | F: drivers/net/hippi/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4659 | |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 4660 | HOST AP DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4661 | M: Jouni Malinen <j@w1.fi> |
Jouni Malinen | 85d32e7 | 2007-03-24 17:15:30 -0700 | [diff] [blame] | 4662 | L: hostap@shmoo.com (subscribers-only) |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 4663 | L: linux-wireless@vger.kernel.org |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 4664 | W: http://hostap.epitest.fi/ |
| 4665 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4666 | F: drivers/net/wireless/hostap/ |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 4667 | |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 4668 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 4669 | L: platform-driver-x86@vger.kernel.org |
Carlos Corbacho | 95c7021 | 2011-05-02 09:57:08 +0100 | [diff] [blame] | 4670 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4671 | F: drivers/platform/x86/tc1100-wmi.c |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 4672 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4673 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4674 | M: Jaroslav Kysela <perex@perex.cz> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4675 | S: Maintained |
Jeff Kirsher | 7e25d72 | 2011-07-24 13:19:50 -0700 | [diff] [blame] | 4676 | F: drivers/net/ethernet/hp/hp100.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4677 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 4678 | HPET: High Precision Event Timers driver |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4679 | M: Clemens Ladisch <clemens@ladisch.de> |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 4680 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4681 | F: Documentation/timers/hpet.txt |
| 4682 | F: drivers/char/hpet.c |
| 4683 | F: include/linux/hpet.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 4684 | F: include/uapi/linux/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 4685 | |
Jiri Kosina | e07b5d7 | 2010-03-18 10:59:57 +0100 | [diff] [blame] | 4686 | HPET: x86 |
Joe Perches | 9e06f63 | 2014-04-03 14:48:53 -0700 | [diff] [blame] | 4687 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4688 | F: arch/x86/kernel/hpet.c |
| 4689 | F: arch/x86/include/asm/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 4690 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4691 | HPFS FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4692 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4693 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
| 4694 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4695 | F: fs/hpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4696 | |
Sebastian Reichel | 3441cde | 2013-11-27 10:17:22 +0100 | [diff] [blame] | 4697 | HSI SUBSYSTEM |
Sebastian Reichel | 56459ea | 2014-03-28 19:57:59 +0100 | [diff] [blame] | 4698 | M: Sebastian Reichel <sre@kernel.org> |
| 4699 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git |
Sebastian Reichel | 3441cde | 2013-11-27 10:17:22 +0100 | [diff] [blame] | 4700 | S: Maintained |
| 4701 | F: Documentation/ABI/testing/sysfs-bus-hsi |
Sebastian Reichel | 56459ea | 2014-03-28 19:57:59 +0100 | [diff] [blame] | 4702 | F: Documentation/hsi.txt |
Sebastian Reichel | 3441cde | 2013-11-27 10:17:22 +0100 | [diff] [blame] | 4703 | F: drivers/hsi/ |
| 4704 | F: include/linux/hsi/ |
| 4705 | F: include/uapi/linux/hsi/ |
| 4706 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 4707 | HSO 3G MODEM DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4708 | M: Jan Dumon <j.dumon@option.com> |
Denis Joseph Barrow | 11cd29b | 2009-01-02 13:50:36 +0000 | [diff] [blame] | 4709 | W: http://www.pharscape.org |
| 4710 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4711 | F: drivers/net/usb/hso.c |
Denis Joseph Barrow | 11cd29b | 2009-01-02 13:50:36 +0000 | [diff] [blame] | 4712 | |
Arvid Brodin | 19990e2 | 2013-11-29 23:36:00 +0100 | [diff] [blame] | 4713 | HSR NETWORK PROTOCOL |
| 4714 | M: Arvid Brodin <arvid.brodin@alten.se> |
| 4715 | L: netdev@vger.kernel.org |
| 4716 | S: Maintained |
| 4717 | F: net/hsr/ |
| 4718 | |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 4719 | HTCPEN TOUCHSCREEN DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4720 | M: Pau Oliva Fora <pof@eslack.org> |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 4721 | L: linux-input@vger.kernel.org |
| 4722 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4723 | F: drivers/input/touchscreen/htcpen.c |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 4724 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4725 | HUGETLB FILESYSTEM |
Nadia Yvette Chambers | 6d49e35 | 2012-12-06 10:39:54 +0100 | [diff] [blame] | 4726 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4727 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4728 | F: fs/hugetlbfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4729 | |
K. Y. Srinivasan | 0518318 | 2011-12-01 14:31:30 -0800 | [diff] [blame] | 4730 | Hyper-V CORE AND DRIVERS |
| 4731 | M: K. Y. Srinivasan <kys@microsoft.com> |
| 4732 | M: Haiyang Zhang <haiyangz@microsoft.com> |
| 4733 | L: devel@linuxdriverproject.org |
| 4734 | S: Maintained |
Haiyang Zhang | a416274 | 2013-05-09 14:34:55 -0700 | [diff] [blame] | 4735 | F: arch/x86/include/asm/mshyperv.h |
| 4736 | F: arch/x86/include/uapi/asm/hyperv.h |
| 4737 | F: arch/x86/kernel/cpu/mshyperv.c |
K. Y. Srinivasan | 0518318 | 2011-12-01 14:31:30 -0800 | [diff] [blame] | 4738 | F: drivers/hid/hid-hyperv.c |
Haiyang Zhang | a416274 | 2013-05-09 14:34:55 -0700 | [diff] [blame] | 4739 | F: drivers/hv/ |
Haiyang Zhang | f92ca80 | 2013-11-21 14:32:10 -0800 | [diff] [blame] | 4740 | F: drivers/input/serio/hyperv-keyboard.c |
K. Y. Srinivasan | 0518318 | 2011-12-01 14:31:30 -0800 | [diff] [blame] | 4741 | F: drivers/net/hyperv/ |
Haiyang Zhang | a416274 | 2013-05-09 14:34:55 -0700 | [diff] [blame] | 4742 | F: drivers/scsi/storvsc_drv.c |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 4743 | F: drivers/video/fbdev/hyperv_fb.c |
Haiyang Zhang | a416274 | 2013-05-09 14:34:55 -0700 | [diff] [blame] | 4744 | F: include/linux/hyperv.h |
| 4745 | F: tools/hv/ |
K. Y. Srinivasan | 0518318 | 2011-12-01 14:31:30 -0800 | [diff] [blame] | 4746 | |
Jean Delvare | d85c8a6a | 2012-11-13 22:27:19 +0100 | [diff] [blame] | 4747 | I2C OVER PARALLEL PORT |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 4748 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | d85c8a6a | 2012-11-13 22:27:19 +0100 | [diff] [blame] | 4749 | L: linux-i2c@vger.kernel.org |
| 4750 | S: Maintained |
| 4751 | F: Documentation/i2c/busses/i2c-parport |
| 4752 | F: Documentation/i2c/busses/i2c-parport-light |
| 4753 | F: drivers/i2c/busses/i2c-parport.c |
| 4754 | F: drivers/i2c/busses/i2c-parport-light.c |
| 4755 | |
| 4756 | I2C/SMBUS CONTROLLER DRIVERS FOR PC |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 4757 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | d85c8a6a | 2012-11-13 22:27:19 +0100 | [diff] [blame] | 4758 | L: linux-i2c@vger.kernel.org |
| 4759 | S: Maintained |
| 4760 | F: Documentation/i2c/busses/i2c-ali1535 |
| 4761 | F: Documentation/i2c/busses/i2c-ali1563 |
| 4762 | F: Documentation/i2c/busses/i2c-ali15x3 |
| 4763 | F: Documentation/i2c/busses/i2c-amd756 |
| 4764 | F: Documentation/i2c/busses/i2c-amd8111 |
| 4765 | F: Documentation/i2c/busses/i2c-i801 |
| 4766 | F: Documentation/i2c/busses/i2c-nforce2 |
| 4767 | F: Documentation/i2c/busses/i2c-piix4 |
| 4768 | F: Documentation/i2c/busses/i2c-sis5595 |
| 4769 | F: Documentation/i2c/busses/i2c-sis630 |
| 4770 | F: Documentation/i2c/busses/i2c-sis96x |
| 4771 | F: Documentation/i2c/busses/i2c-via |
| 4772 | F: Documentation/i2c/busses/i2c-viapro |
| 4773 | F: drivers/i2c/busses/i2c-ali1535.c |
| 4774 | F: drivers/i2c/busses/i2c-ali1563.c |
| 4775 | F: drivers/i2c/busses/i2c-ali15x3.c |
| 4776 | F: drivers/i2c/busses/i2c-amd756.c |
| 4777 | F: drivers/i2c/busses/i2c-amd756-s4882.c |
| 4778 | F: drivers/i2c/busses/i2c-amd8111.c |
| 4779 | F: drivers/i2c/busses/i2c-i801.c |
| 4780 | F: drivers/i2c/busses/i2c-isch.c |
| 4781 | F: drivers/i2c/busses/i2c-nforce2.c |
| 4782 | F: drivers/i2c/busses/i2c-nforce2-s4985.c |
| 4783 | F: drivers/i2c/busses/i2c-piix4.c |
| 4784 | F: drivers/i2c/busses/i2c-sis5595.c |
| 4785 | F: drivers/i2c/busses/i2c-sis630.c |
| 4786 | F: drivers/i2c/busses/i2c-sis96x.c |
| 4787 | F: drivers/i2c/busses/i2c-via.c |
| 4788 | F: drivers/i2c/busses/i2c-viapro.c |
| 4789 | |
Neil Horman | cb7f07a | 2013-02-10 11:59:03 -0500 | [diff] [blame] | 4790 | I2C/SMBUS ISMT DRIVER |
| 4791 | M: Seth Heasley <seth.heasley@intel.com> |
| 4792 | M: Neil Horman <nhorman@tuxdriver.com> |
| 4793 | L: linux-i2c@vger.kernel.org |
| 4794 | F: drivers/i2c/busses/i2c-ismt.c |
| 4795 | F: Documentation/i2c/busses/i2c-ismt |
| 4796 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 4797 | I2C/SMBUS STUB DRIVER |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 4798 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4799 | L: linux-i2c@vger.kernel.org |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 4800 | S: Maintained |
Cesar Eduardo Barros | 8547a5b | 2012-12-16 21:11:54 +0100 | [diff] [blame] | 4801 | F: drivers/i2c/i2c-stub.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 4802 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 4803 | I2C SUBSYSTEM |
Wolfram Sang | 14d77c4 | 2013-02-08 20:54:40 +0100 | [diff] [blame] | 4804 | M: Wolfram Sang <wsa@the-dreams.de> |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4805 | L: linux-i2c@vger.kernel.org |
Wolfram Sang | 9d4ea27 | 2014-04-02 20:25:59 +0200 | [diff] [blame] | 4806 | W: https://i2c.wiki.kernel.org/ |
| 4807 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ |
Wolfram Sang | 14d77c4 | 2013-02-08 20:54:40 +0100 | [diff] [blame] | 4808 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4809 | S: Maintained |
Wolfram Sang | 40ed1b4 | 2014-12-08 10:53:13 +0100 | [diff] [blame] | 4810 | F: Documentation/devicetree/bindings/i2c/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4811 | F: Documentation/i2c/ |
| 4812 | F: drivers/i2c/ |
| 4813 | F: include/linux/i2c.h |
Jean Delvare | 03b70d6 | 2009-11-26 09:22:32 +0100 | [diff] [blame] | 4814 | F: include/linux/i2c-*.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 4815 | F: include/uapi/linux/i2c.h |
| 4816 | F: include/uapi/linux/i2c-*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4817 | |
Wolfram Sang | 4560d67 | 2014-08-19 10:08:35 -0500 | [diff] [blame] | 4818 | I2C ACPI SUPPORT |
| 4819 | M: Mika Westerberg <mika.westerberg@linux.intel.com> |
| 4820 | L: linux-i2c@vger.kernel.org |
| 4821 | L: linux-acpi@vger.kernel.org |
| 4822 | S: Maintained |
Wolfram Sang | 4560d67 | 2014-08-19 10:08:35 -0500 | [diff] [blame] | 4823 | |
Jean Delvare | d85c8a6a | 2012-11-13 22:27:19 +0100 | [diff] [blame] | 4824 | I2C-TAOS-EVM DRIVER |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 4825 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | d85c8a6a | 2012-11-13 22:27:19 +0100 | [diff] [blame] | 4826 | L: linux-i2c@vger.kernel.org |
| 4827 | S: Maintained |
| 4828 | F: Documentation/i2c/busses/i2c-taos-evm |
| 4829 | F: drivers/i2c/busses/i2c-taos-evm.c |
| 4830 | |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 4831 | I2C-TINY-USB DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4832 | M: Till Harbaum <till@harbaum.org> |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 4833 | L: linux-i2c@vger.kernel.org |
Joe Perches | 932d187 | 2009-04-07 21:10:58 -0700 | [diff] [blame] | 4834 | W: http://www.harbaum.org/till/i2c_tiny_usb |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 4835 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4836 | F: drivers/i2c/busses/i2c-tiny-usb.c |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 4837 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4838 | i386 BOOT CODE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4839 | M: "H. Peter Anvin" <hpa@zytor.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4840 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4841 | F: arch/x86/boot/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4842 | |
| 4843 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4844 | M: "H. Peter Anvin" <hpa@zytor.com> |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 4845 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4846 | S: Maintained |
| 4847 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4848 | IA64 (Itanium) PLATFORM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4849 | M: Tony Luck <tony.luck@intel.com> |
| 4850 | M: Fenghua Yu <fenghua.yu@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4851 | L: linux-ia64@vger.kernel.org |
Tony Luck | 6b1c70b | 2011-10-11 15:40:38 -0700 | [diff] [blame] | 4852 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4853 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4854 | F: arch/ia64/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4855 | |
Kent Yoder | 956c203 | 2012-09-07 04:17:01 +0800 | [diff] [blame] | 4856 | IBM Power in-Nest Crypto Acceleration |
Kent Yoder | 5b88e27 | 2013-05-22 10:56:58 -0500 | [diff] [blame] | 4857 | M: Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com> |
| 4858 | M: Fionnuala Gunter <fin@linux.vnet.ibm.com> |
Kent Yoder | 956c203 | 2012-09-07 04:17:01 +0800 | [diff] [blame] | 4859 | L: linux-crypto@vger.kernel.org |
| 4860 | S: Supported |
| 4861 | F: drivers/crypto/nx/ |
| 4862 | |
Seth Jennings | 0e16aaf | 2012-07-19 09:42:40 -0500 | [diff] [blame] | 4863 | IBM Power 842 compression accelerator |
Dan Streetman | d1e66e6 | 2014-10-17 19:19:59 -0400 | [diff] [blame] | 4864 | M: Dan Streetman <ddstreet@us.ibm.com> |
Seth Jennings | 0e16aaf | 2012-07-19 09:42:40 -0500 | [diff] [blame] | 4865 | S: Supported |
| 4866 | F: drivers/crypto/nx/nx-842.c |
| 4867 | F: include/linux/nx842.h |
| 4868 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4869 | IBM Power Linux RAID adapter |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4870 | M: Brian King <brking@us.ibm.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4871 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4872 | F: drivers/scsi/ipr.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4873 | |
Santiago Leon | 9d348af | 2010-09-03 18:29:53 +0000 | [diff] [blame] | 4874 | IBM Power Virtual Ethernet Device Driver |
Thomas Falcon | eddd63a | 2015-01-09 14:29:40 -0600 | [diff] [blame] | 4875 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
Santiago Leon | 9d348af | 2010-09-03 18:29:53 +0000 | [diff] [blame] | 4876 | L: netdev@vger.kernel.org |
| 4877 | S: Supported |
Jeff Kirsher | 9aa3283 | 2011-05-13 14:29:12 -0700 | [diff] [blame] | 4878 | F: drivers/net/ethernet/ibm/ibmveth.* |
Santiago Leon | 9d348af | 2010-09-03 18:29:53 +0000 | [diff] [blame] | 4879 | |
Nathan Fontenot | e6babec | 2014-04-09 13:32:06 -0500 | [diff] [blame] | 4880 | IBM Power Virtual SCSI Device Drivers |
Tyrel Datwyler | bcbde52 | 2015-01-12 16:31:34 -0800 | [diff] [blame] | 4881 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
Robert Jennings | 4b7652c | 2012-07-31 12:34:36 -0500 | [diff] [blame] | 4882 | L: linux-scsi@vger.kernel.org |
| 4883 | S: Supported |
Nathan Fontenot | e6babec | 2014-04-09 13:32:06 -0500 | [diff] [blame] | 4884 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
| 4885 | F: drivers/scsi/ibmvscsi/viosrp.h |
| 4886 | |
| 4887 | IBM Power Virtual FC Device Drivers |
Tyrel Datwyler | 44b4dad | 2015-01-12 16:31:35 -0800 | [diff] [blame] | 4888 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
Nathan Fontenot | e6babec | 2014-04-09 13:32:06 -0500 | [diff] [blame] | 4889 | L: linux-scsi@vger.kernel.org |
| 4890 | S: Supported |
| 4891 | F: drivers/scsi/ibmvscsi/ibmvfc* |
Robert Jennings | 4b7652c | 2012-07-31 12:34:36 -0500 | [diff] [blame] | 4892 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4893 | IBM ServeRAID RAID DRIVER |
Michael Opdenacker | f9213e7 | 2014-08-08 14:23:50 -0700 | [diff] [blame] | 4894 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4895 | F: drivers/scsi/ips.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4896 | |
Peter Tyser | 6ed9f9c | 2012-04-18 09:48:24 -0500 | [diff] [blame] | 4897 | ICH LPC AND GPIO DRIVER |
| 4898 | M: Peter Tyser <ptyser@xes-inc.com> |
| 4899 | S: Maintained |
| 4900 | F: drivers/mfd/lpc_ich.c |
| 4901 | F: drivers/gpio/gpio-ich.c |
| 4902 | |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 4903 | IDE SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4904 | M: "David S. Miller" <davem@davemloft.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4905 | L: linux-ide@vger.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 4906 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 4907 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4908 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4909 | F: Documentation/ide/ |
| 4910 | F: drivers/ide/ |
| 4911 | F: include/linux/ide.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4912 | |
Ike Panhc | 6cb8c13 | 2011-08-25 22:28:45 +0800 | [diff] [blame] | 4913 | IDEAPAD LAPTOP EXTRAS DRIVER |
| 4914 | M: Ike Panhc <ike.pan@canonical.com> |
| 4915 | L: platform-driver-x86@vger.kernel.org |
| 4916 | W: http://launchpad.net/ideapad-laptop |
| 4917 | S: Maintained |
| 4918 | F: drivers/platform/x86/ideapad-laptop.c |
| 4919 | |
Andrey Moiseev | 1ea4c16 | 2013-08-25 22:51:15 -0700 | [diff] [blame] | 4920 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
| 4921 | M: Andrey Moiseev <o2g.org.ru@gmail.com> |
| 4922 | L: linux-input@vger.kernel.org |
| 4923 | W: https://github.com/o2genum/ideapad-slidebar |
| 4924 | S: Maintained |
| 4925 | F: drivers/input/misc/ideapad_slidebar.c |
| 4926 | |
Bartlomiej Zolnierkiewicz | 0f861e8 | 2009-03-31 20:15:31 +0200 | [diff] [blame] | 4927 | IDE/ATAPI DRIVERS |
Borislav Petkov | 487ba8e | 2012-10-29 18:40:10 +0100 | [diff] [blame] | 4928 | M: Borislav Petkov <bp@alien8.de> |
Jens Axboe | 9c5b0ce | 2007-01-03 18:15:20 +0100 | [diff] [blame] | 4929 | L: linux-ide@vger.kernel.org |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 4930 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4931 | F: Documentation/cdrom/ide-cd |
| 4932 | F: drivers/ide/ide-cd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4933 | |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 4934 | IDLE-I7300 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4935 | M: Andy Henroid <andrew.d.henroid@intel.com> |
WANG Cong | bf1c138 | 2011-10-08 20:57:50 +0200 | [diff] [blame] | 4936 | L: linux-pm@vger.kernel.org |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 4937 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4938 | F: drivers/idle/i7300_idle.c |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 4939 | |
Sergey Lapin | 02cf228 | 2009-06-08 12:18:50 +0000 | [diff] [blame] | 4940 | IEEE 802.15.4 SUBSYSTEM |
Alexander Aring | b6e195f | 2014-07-03 23:13:19 +0200 | [diff] [blame] | 4941 | M: Alexander Aring <alex.aring@gmail.com> |
Varka Bhadram | ebef9c1 | 2014-08-08 17:32:45 +0530 | [diff] [blame] | 4942 | L: linux-wpan@vger.kernel.org |
| 4943 | W: https://github.com/linux-wpan |
| 4944 | T: git git://github.com/linux-wpan/linux-wpan-next.git |
Sergey Lapin | 02cf228 | 2009-06-08 12:18:50 +0000 | [diff] [blame] | 4945 | S: Maintained |
| 4946 | F: net/ieee802154/ |
Dmitry Eremin-Solenikov | 6865335 | 2012-07-13 20:15:34 +0000 | [diff] [blame] | 4947 | F: net/mac802154/ |
Cesar Eduardo Barros | 251741b | 2013-01-04 15:35:30 -0800 | [diff] [blame] | 4948 | F: drivers/net/ieee802154/ |
Alexander Aring | 580947d | 2014-10-25 09:41:05 +0200 | [diff] [blame] | 4949 | F: include/linux/nl802154.h |
| 4950 | F: include/linux/ieee802154.h |
| 4951 | F: include/net/nl802154.h |
| 4952 | F: include/net/mac802154.h |
| 4953 | F: include/net/af_ieee802154.h |
| 4954 | F: include/net/cfg802154.h |
| 4955 | F: include/net/ieee802154_netdev.h |
Varka Bhadram | ebef9c1 | 2014-08-08 17:32:45 +0530 | [diff] [blame] | 4956 | F: Documentation/networking/ieee802154.txt |
Sergey Lapin | 02cf228 | 2009-06-08 12:18:50 +0000 | [diff] [blame] | 4957 | |
Sean Young | b1c9719 | 2014-10-23 17:58:22 -0300 | [diff] [blame] | 4958 | IGORPLUG-USB IR RECEIVER |
| 4959 | M: Sean Young <sean@mess.org> |
| 4960 | L: linux-media@vger.kernel.org |
| 4961 | S: Maintained |
| 4962 | F: drivers/media/rc/igorplugusb.c |
| 4963 | |
Sean Young | 40ad4a3 | 2012-11-19 10:32:53 -0300 | [diff] [blame] | 4964 | IGUANAWORKS USB IR TRANSCEIVER |
| 4965 | M: Sean Young <sean@mess.org> |
| 4966 | L: linux-media@vger.kernel.org |
| 4967 | S: Maintained |
| 4968 | F: drivers/media/rc/iguanair.c |
| 4969 | |
Ameya Palande | 9545f86 | 2012-01-10 09:00:58 -0800 | [diff] [blame] | 4970 | IIO SUBSYSTEM AND DRIVERS |
Sachin Kamat | 030a13d | 2013-09-11 11:00:00 +0100 | [diff] [blame] | 4971 | M: Jonathan Cameron <jic23@kernel.org> |
Lars-Peter Clausen | f0d6116 | 2014-08-18 09:29:00 +0100 | [diff] [blame] | 4972 | R: Hartmut Knaack <knaack.h@gmx.de> |
| 4973 | R: Lars-Peter Clausen <lars@metafoo.de> |
| 4974 | R: Peter Meerwald <pmeerw@pmeerw.net> |
Ameya Palande | 9545f86 | 2012-01-10 09:00:58 -0800 | [diff] [blame] | 4975 | L: linux-iio@vger.kernel.org |
| 4976 | S: Maintained |
Lars-Peter Clausen | 03e7c25 | 2012-04-26 13:46:42 +0200 | [diff] [blame] | 4977 | F: drivers/iio/ |
Ameya Palande | 9545f86 | 2012-01-10 09:00:58 -0800 | [diff] [blame] | 4978 | F: drivers/staging/iio/ |
Daniel Baluta | 8fe671f | 2014-11-13 15:19:47 -0800 | [diff] [blame] | 4979 | F: include/linux/iio/ |
Roberta Dobrescu | 817020c | 2015-02-26 10:49:25 +0200 | [diff] [blame] | 4980 | F: tools/iio/ |
Ameya Palande | 9545f86 | 2012-01-10 09:00:58 -0800 | [diff] [blame] | 4981 | |
Stanislaw Gruszka | 6551926 | 2011-01-08 15:19:40 +0100 | [diff] [blame] | 4982 | IKANOS/ADI EAGLE ADSL USB DRIVER |
| 4983 | M: Matthieu Castet <castet.matthieu@free.fr> |
| 4984 | M: Stanislaw Gruszka <stf_xl@wp.pl> |
| 4985 | S: Maintained |
| 4986 | F: drivers/usb/atm/ueagle-atm.c |
| 4987 | |
Guenter Roeck | e89ab51 | 2013-03-08 08:13:09 -0800 | [diff] [blame] | 4988 | INA209 HARDWARE MONITOR DRIVER |
| 4989 | M: Guenter Roeck <linux@roeck-us.net> |
| 4990 | L: lm-sensors@lm-sensors.org |
| 4991 | S: Maintained |
| 4992 | F: Documentation/hwmon/ina209 |
| 4993 | F: Documentation/devicetree/bindings/i2c/ina209.txt |
| 4994 | F: drivers/hwmon/ina209.c |
| 4995 | |
| 4996 | INA2XX HARDWARE MONITOR DRIVER |
| 4997 | M: Guenter Roeck <linux@roeck-us.net> |
| 4998 | L: lm-sensors@lm-sensors.org |
| 4999 | S: Maintained |
| 5000 | F: Documentation/hwmon/ina2xx |
| 5001 | F: drivers/hwmon/ina2xx.c |
| 5002 | F: include/linux/platform_data/ina2xx.h |
| 5003 | |
Samuel Iglesias Gonsalvez | 14dc124 | 2012-11-16 16:19:59 +0100 | [diff] [blame] | 5004 | INDUSTRY PACK SUBSYSTEM (IPACK) |
| 5005 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> |
| 5006 | M: Jens Taprogge <jens.taprogge@taprogge.org> |
| 5007 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 5008 | L: industrypack-devel@lists.sourceforge.net |
| 5009 | W: http://industrypack.sourceforge.net |
| 5010 | S: Maintained |
| 5011 | F: drivers/ipack/ |
| 5012 | |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 5013 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
Mimi Zohar | 74dd744 | 2014-02-27 08:44:45 -0500 | [diff] [blame] | 5014 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
Dmitry Kasatkin | bfd33c4 | 2015-01-15 14:18:18 +0200 | [diff] [blame] | 5015 | M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com> |
Mimi Zohar | 74dd744 | 2014-02-27 08:44:45 -0500 | [diff] [blame] | 5016 | L: linux-ima-devel@lists.sourceforge.net |
| 5017 | L: linux-ima-user@lists.sourceforge.net |
| 5018 | L: linux-security-module@vger.kernel.org |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 5019 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5020 | F: security/integrity/ima/ |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 5021 | |
James Hogan | 9a4ea5a | 2014-11-17 09:17:49 -0300 | [diff] [blame] | 5022 | IMGTEC IR DECODER DRIVER |
| 5023 | M: James Hogan <james.hogan@imgtec.com> |
| 5024 | S: Maintained |
| 5025 | F: drivers/media/rc/img-ir/ |
| 5026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5027 | IMS TWINTURBO FRAMEBUFFER DRIVER |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 5028 | L: linux-fbdev@vger.kernel.org |
Paul Mundt | 843393d | 2007-11-19 13:11:04 +0900 | [diff] [blame] | 5029 | S: Orphan |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 5030 | F: drivers/video/fbdev/imsttfb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5031 | |
| 5032 | INFINIBAND SUBSYSTEM |
Roland Dreier | db9fd84 | 2011-01-20 16:23:08 -0800 | [diff] [blame] | 5033 | M: Roland Dreier <roland@kernel.org> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5034 | M: Sean Hefty <sean.hefty@intel.com> |
| 5035 | M: Hal Rosenstock <hal.rosenstock@gmail.com> |
Roland Dreier | e6cc0fd | 2009-09-07 21:54:38 -0700 | [diff] [blame] | 5036 | L: linux-rdma@vger.kernel.org |
Roland Dreier | 605841f | 2010-09-27 17:51:24 -0700 | [diff] [blame] | 5037 | W: http://www.openfabrics.org/ |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 5038 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5039 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5040 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5041 | F: Documentation/infiniband/ |
| 5042 | F: drivers/infiniband/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5043 | F: include/uapi/linux/if_infiniband.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5044 | |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 5045 | INOTIFY |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5046 | M: John McCutchan <john@johnmccutchan.com> |
| 5047 | M: Robert Love <rlove@rlove.org> |
| 5048 | M: Eric Paris <eparis@parisplace.org> |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 5049 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5050 | F: Documentation/filesystems/inotify.txt |
| 5051 | F: fs/notify/inotify/ |
| 5052 | F: include/linux/inotify.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5053 | F: include/uapi/linux/inotify.h |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 5054 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5055 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5056 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5057 | L: linux-input@vger.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 5058 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5059 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5060 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5061 | F: drivers/input/ |
Dmitry Torokhov | f4eea7e | 2012-05-10 22:31:59 -0700 | [diff] [blame] | 5062 | F: include/linux/input.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5063 | F: include/uapi/linux/input.h |
Dmitry Torokhov | f4eea7e | 2012-05-10 22:31:59 -0700 | [diff] [blame] | 5064 | F: include/linux/input/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5065 | |
Henrik Rydberg | 3267a87 | 2010-06-24 19:10:40 -0700 | [diff] [blame] | 5066 | INPUT MULTITOUCH (MT) PROTOCOL |
Henrik Rydberg | 75dd112 | 2015-01-08 14:32:21 -0800 | [diff] [blame] | 5067 | M: Henrik Rydberg <rydberg@bitmath.org> |
Henrik Rydberg | 3267a87 | 2010-06-24 19:10:40 -0700 | [diff] [blame] | 5068 | L: linux-input@vger.kernel.org |
Henrik Rydberg | 7f9c245 | 2010-12-07 09:18:28 +0100 | [diff] [blame] | 5069 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
Henrik Rydberg | 75dd112 | 2015-01-08 14:32:21 -0800 | [diff] [blame] | 5070 | S: Odd fixes |
Henrik Rydberg | 3267a87 | 2010-06-24 19:10:40 -0700 | [diff] [blame] | 5071 | F: Documentation/input/multi-touch-protocol.txt |
Henrik Rydberg | 7f9c245 | 2010-12-07 09:18:28 +0100 | [diff] [blame] | 5072 | F: drivers/input/input-mt.c |
Henrik Rydberg | 3267a87 | 2010-06-24 19:10:40 -0700 | [diff] [blame] | 5073 | K: \b(ABS|SYN)_MT_ |
| 5074 | |
Jie Yang | 97fa99a | 2015-02-02 16:55:27 +0800 | [diff] [blame] | 5075 | INTEL ASoC BDW/HSW DRIVERS |
| 5076 | M: Jie Yang <yang.jie@linux.intel.com> |
| 5077 | L: alsa-devel@alsa-project.org |
| 5078 | S: Supported |
| 5079 | F: sound/soc/intel/sst-haswell* |
| 5080 | F: sound/soc/intel/sst-dsp* |
| 5081 | F: sound/soc/intel/sst-firmware.c |
| 5082 | F: sound/soc/intel/broadwell.c |
| 5083 | F: sound/soc/intel/haswell.c |
| 5084 | |
Dave Jiang | 4ac13e1 | 2011-07-29 17:16:55 -0700 | [diff] [blame] | 5085 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
| 5086 | M: Intel SCU Linux support <intel-linux-scu@intel.com> |
Lukasz Dorau | fdc5813 | 2014-04-07 15:39:58 -0700 | [diff] [blame] | 5087 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
Dave Jiang | 4ac13e1 | 2011-07-29 17:16:55 -0700 | [diff] [blame] | 5088 | L: linux-scsi@vger.kernel.org |
Dave Jiang | 7106891 | 2012-09-25 15:24:56 -0700 | [diff] [blame] | 5089 | T: git git://git.code.sf.net/p/intel-sas/isci |
| 5090 | S: Supported |
Dave Jiang | 4ac13e1 | 2011-07-29 17:16:55 -0700 | [diff] [blame] | 5091 | F: drivers/scsi/isci/ |
Dave Jiang | 4ac13e1 | 2011-07-29 17:16:55 -0700 | [diff] [blame] | 5092 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 5093 | INTEL IDLE DRIVER |
| 5094 | M: Len Brown <lenb@kernel.org> |
WANG Cong | bf1c138 | 2011-10-08 20:57:50 +0200 | [diff] [blame] | 5095 | L: linux-pm@vger.kernel.org |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 5096 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 5097 | S: Supported |
| 5098 | F: drivers/idle/intel_idle.c |
| 5099 | |
Kristen Carlson Accardi | 7c1ac18 | 2014-12-15 15:58:24 -0800 | [diff] [blame] | 5100 | INTEL PSTATE DRIVER |
| 5101 | M: Kristen Carlson Accardi <kristen@linux.intel.com> |
| 5102 | L: linux-pm@vger.kernel.org |
| 5103 | S: Supported |
| 5104 | F: drivers/cpufreq/intel_pstate.c |
| 5105 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 5106 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
Maik Broemme | 55a23c4 | 2010-03-10 15:21:44 -0800 | [diff] [blame] | 5107 | M: Maik Broemme <mbroemme@plusserver.de> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 5108 | L: linux-fbdev@vger.kernel.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5109 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5110 | F: Documentation/fb/intelfb.txt |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 5111 | F: drivers/video/fbdev/intelfb/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 5112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5113 | INTEL 810/815 FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5114 | M: Antonino Daplas <adaplas@gmail.com> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 5115 | L: linux-fbdev@vger.kernel.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5116 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 5117 | F: drivers/video/fbdev/i810/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5118 | |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 5119 | INTEL MENLOW THERMAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5120 | M: Sujith Thomas <sujith.thomas@intel.com> |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 5121 | L: platform-driver-x86@vger.kernel.org |
Rafael J. Wysocki | 5ca92bd | 2013-10-10 23:03:44 +0200 | [diff] [blame] | 5122 | W: https://01.org/linux-acpi |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 5123 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5124 | F: drivers/platform/x86/intel_menlow.c |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 5125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5126 | INTEL IA32 MICROCODE UPDATE SUPPORT |
Borislav Petkov | ca68a52 | 2015-03-29 15:54:13 +0200 | [diff] [blame] | 5127 | M: Borislav Petkov <bp@alien8.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5128 | S: Maintained |
Joe Perches | 73d425f | 2014-08-08 14:24:57 -0700 | [diff] [blame] | 5129 | F: arch/x86/kernel/cpu/microcode/core* |
| 5130 | F: arch/x86/kernel/cpu/microcode/intel* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5131 | |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 5132 | INTEL I/OAT DMA DRIVER |
Dave Jiang | 18ebd56 | 2013-10-22 15:29:20 -0700 | [diff] [blame] | 5133 | M: Dave Jiang <dave.jiang@intel.com> |
Dan Williams | 08223d8 | 2014-08-19 06:07:56 -0700 | [diff] [blame] | 5134 | R: Dan Williams <dan.j.williams@intel.com> |
Dave Jiang | 18ebd56 | 2013-10-22 15:29:20 -0700 | [diff] [blame] | 5135 | L: dmaengine@vger.kernel.org |
| 5136 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ |
| 5137 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5138 | F: drivers/dma/ioat* |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 5139 | |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 5140 | INTEL IOMMU (VT-d) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5141 | M: David Woodhouse <dwmw2@infradead.org> |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 5142 | L: iommu@lists.linux-foundation.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5143 | T: git git://git.infradead.org/iommu-2.6.git |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 5144 | S: Supported |
Roland Dreier | 3fb3961 | 2011-10-10 17:07:15 -0700 | [diff] [blame] | 5145 | F: drivers/iommu/intel-iommu.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5146 | F: include/linux/intel-iommu.h |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 5147 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 5148 | INTEL IOP-ADMA DMA DRIVER |
Dan Williams | 08223d8 | 2014-08-19 06:07:56 -0700 | [diff] [blame] | 5149 | R: Dan Williams <dan.j.williams@intel.com> |
Dan Williams | 1dd8372 | 2012-08-15 19:20:02 -0700 | [diff] [blame] | 5150 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5151 | F: drivers/dma/iop-adma.c |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 5152 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 5153 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
Krzysztof Hałasa | 5529c2c | 2014-09-30 10:32:58 +0200 | [diff] [blame] | 5154 | M: Krzysztof Halasa <khalasa@piap.pl> |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 5155 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5156 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
| 5157 | F: arch/arm/mach-ixp4xx/include/mach/npe.h |
| 5158 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c |
| 5159 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c |
Jeff Kirsher | b47da97 | 2011-07-14 22:13:23 -0700 | [diff] [blame] | 5160 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5161 | F: drivers/net/wan/ixp4xx_hss.c |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 5162 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 5163 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5164 | M: Deepak Saxena <dsaxena@plexity.net> |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 5165 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5166 | F: drivers/char/hw_random/ixp4xx-rng.c |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 5167 | |
Jeff Kirsher | 2f30232 | 2015-03-25 17:01:03 -0700 | [diff] [blame] | 5168 | INTEL ETHERNET DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5169 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
Jeff Kirsher | 2f30232 | 2015-03-25 17:01:03 -0700 | [diff] [blame] | 5170 | R: Jesse Brandeburg <jesse.brandeburg@intel.com> |
| 5171 | R: Shannon Nelson <shannon.nelson@intel.com> |
| 5172 | R: Carolyn Wyborny <carolyn.wyborny@intel.com> |
| 5173 | R: Don Skidmore <donald.c.skidmore@intel.com> |
| 5174 | R: Matthew Vick <matthew.vick@intel.com> |
| 5175 | R: John Ronciak <john.ronciak@intel.com> |
| 5176 | R: Mitch Williams <mitch.a.williams@intel.com> |
| 5177 | L: intel-wired-lan@lists.osuosl.org |
Jesse Brandeburg | f6fde11 | 2012-10-09 02:52:14 +0000 | [diff] [blame] | 5178 | W: http://www.intel.com/support/feedback.htm |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 5179 | W: http://e1000.sourceforge.net/ |
Jeff Kirsher | 2f30232 | 2015-03-25 17:01:03 -0700 | [diff] [blame] | 5180 | Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/ |
| 5181 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git |
| 5182 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5183 | S: Supported |
Jeff Kirsher | 0d16440 | 2010-10-05 01:15:17 +0000 | [diff] [blame] | 5184 | F: Documentation/networking/e100.txt |
| 5185 | F: Documentation/networking/e1000.txt |
| 5186 | F: Documentation/networking/e1000e.txt |
| 5187 | F: Documentation/networking/igb.txt |
| 5188 | F: Documentation/networking/igbvf.txt |
| 5189 | F: Documentation/networking/ixgb.txt |
| 5190 | F: Documentation/networking/ixgbe.txt |
| 5191 | F: Documentation/networking/ixgbevf.txt |
Jesse Brandeburg | 1bff652 | 2013-09-11 08:40:23 +0000 | [diff] [blame] | 5192 | F: Documentation/networking/i40e.txt |
Greg Rose | 105bf2f | 2013-12-21 06:13:16 +0000 | [diff] [blame] | 5193 | F: Documentation/networking/i40evf.txt |
Jeff Kirsher | dee1ad4 | 2011-04-07 07:42:33 -0700 | [diff] [blame] | 5194 | F: drivers/net/ethernet/intel/ |
Joe Perches | bc90d29 | 2014-02-25 13:35:53 -0800 | [diff] [blame] | 5195 | F: drivers/net/ethernet/intel/*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5196 | |
Linus Walleij | 0963d59b | 2013-10-19 15:39:17 +0200 | [diff] [blame] | 5197 | INTEL-MID GPIO DRIVER |
| 5198 | M: David Cohen <david.a.cohen@linux.intel.com> |
| 5199 | L: linux-gpio@vger.kernel.org |
| 5200 | S: Maintained |
| 5201 | F: drivers/gpio/gpio-intel-mid.c |
| 5202 | |
Stanislav Yakovlev | ca907a9 | 2012-03-24 03:41:01 -0400 | [diff] [blame] | 5203 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
| 5204 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 5205 | L: linux-wireless@vger.kernel.org |
Stanislav Yakovlev | ca907a9 | 2012-03-24 03:41:01 -0400 | [diff] [blame] | 5206 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5207 | F: Documentation/networking/README.ipw2100 |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5208 | F: Documentation/networking/README.ipw2200 |
Stanislav Yakovlev | ca907a9 | 2012-03-24 03:41:01 -0400 | [diff] [blame] | 5209 | F: drivers/net/wireless/ipw2x00/ |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 5210 | |
Shane Wang | 4bd96a7 | 2010-03-10 14:36:10 +0800 | [diff] [blame] | 5211 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
Gang Wei | e9b7d7c | 2012-09-17 14:08:59 -0700 | [diff] [blame] | 5212 | M: Richard L Maliszewski <richard.l.maliszewski@intel.com> |
| 5213 | M: Gang Wei <gang.wei@intel.com> |
Shane Wang | 4bd96a7 | 2010-03-10 14:36:10 +0800 | [diff] [blame] | 5214 | M: Shane Wang <shane.wang@intel.com> |
| 5215 | L: tboot-devel@lists.sourceforge.net |
| 5216 | W: http://tboot.sourceforge.net |
Gang Wei | e9b7d7c | 2012-09-17 14:08:59 -0700 | [diff] [blame] | 5217 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
Shane Wang | 4bd96a7 | 2010-03-10 14:36:10 +0800 | [diff] [blame] | 5218 | S: Supported |
| 5219 | F: Documentation/intel_txt.txt |
| 5220 | F: include/linux/tboot.h |
| 5221 | F: arch/x86/kernel/tboot.c |
| 5222 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 5223 | INTEL WIRELESS WIMAX CONNECTION 2400 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5224 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 5225 | M: linux-wimax@intel.com |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 5226 | L: wimax@linuxwimax.org (subscribers-only) |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 5227 | S: Supported |
| 5228 | W: http://linuxwimax.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5229 | F: Documentation/wimax/README.i2400m |
| 5230 | F: drivers/net/wimax/i2400m/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5231 | F: include/uapi/linux/wimax/i2400m.h |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 5232 | |
Stanislaw Gruszka | 1c0ce89 | 2011-03-25 17:59:39 +0100 | [diff] [blame] | 5233 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
| 5234 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
Wey-Yi Guy | efa3144 | 2011-02-22 16:43:05 -0800 | [diff] [blame] | 5235 | L: linux-wireless@vger.kernel.org |
Stanislaw Gruszka | 1c0ce89 | 2011-03-25 17:59:39 +0100 | [diff] [blame] | 5236 | S: Supported |
Wey-Yi Guy | efa3144 | 2011-02-22 16:43:05 -0800 | [diff] [blame] | 5237 | F: drivers/net/wireless/iwlegacy/ |
| 5238 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5239 | INTEL WIRELESS WIFI LINK (iwlwifi) |
Wey-Yi Guy | 15fae50 | 2012-04-16 12:03:35 -0700 | [diff] [blame] | 5240 | M: Johannes Berg <johannes.berg@intel.com> |
Johannes Berg | 6161b02 | 2013-07-23 14:03:39 +0200 | [diff] [blame] | 5241 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
Reinette Chatre | a0bf797 | 2009-08-21 14:03:51 -0700 | [diff] [blame] | 5242 | M: Intel Linux Wireless <ilw@linux.intel.com> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5243 | L: linux-wireless@vger.kernel.org |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5244 | W: http://intellinuxwireless.org |
Wey-Yi Guy | b62ff718 | 2011-09-22 15:14:49 -0700 | [diff] [blame] | 5245 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5246 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5247 | F: drivers/net/wireless/iwlwifi/ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 5248 | |
Tomas Winkler | de8fe02 | 2012-05-09 16:39:02 +0300 | [diff] [blame] | 5249 | INTEL MANAGEMENT ENGINE (mei) |
| 5250 | M: Tomas Winkler <tomas.winkler@intel.com> |
| 5251 | L: linux-kernel@vger.kernel.org |
| 5252 | S: Supported |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5253 | F: include/uapi/linux/mei.h |
Tomas Winkler | de8fe02 | 2012-05-09 16:39:02 +0300 | [diff] [blame] | 5254 | F: drivers/misc/mei/* |
Cesar Eduardo Barros | e07950a | 2013-01-04 15:35:36 -0800 | [diff] [blame] | 5255 | F: Documentation/misc-devices/mei/* |
Tomas Winkler | de8fe02 | 2012-05-09 16:39:02 +0300 | [diff] [blame] | 5256 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 5257 | IOC3 ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5258 | M: Ralf Baechle <ralf@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5259 | L: linux-mips@linux-mips.org |
| 5260 | S: Maintained |
Jeff Kirsher | 8862bf1 | 2011-05-20 07:50:27 -0700 | [diff] [blame] | 5261 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5262 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 5263 | IOC3 SERIAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5264 | M: Pat Gefre <pfg@sgi.com> |
Ralf Baechle | d39e072 | 2010-10-19 18:32:41 +0100 | [diff] [blame] | 5265 | L: linux-serial@vger.kernel.org |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 5266 | S: Maintained |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 5267 | F: drivers/tty/serial/ioc3_serial.c |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 5268 | |
Stephen Warren | 0b6e856 | 2013-09-13 13:10:27 -0600 | [diff] [blame] | 5269 | IOMMU DRIVERS |
| 5270 | M: Joerg Roedel <joro@8bytes.org> |
| 5271 | L: iommu@lists.linux-foundation.org |
| 5272 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
| 5273 | S: Maintained |
| 5274 | F: drivers/iommu/ |
| 5275 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5276 | IP MASQUERADING |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5277 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5278 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5279 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5280 | |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 5281 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5282 | M: Francois Romieu <romieu@fr.zoreil.com> |
| 5283 | M: Sorbica Shieh <sorbica@icplus.com.tw> |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 5284 | L: netdev@vger.kernel.org |
| 5285 | S: Maintained |
Jeff Kirsher | 7443713a | 2011-06-16 15:02:54 -0700 | [diff] [blame] | 5286 | F: drivers/net/ethernet/icplus/ipg.* |
Francois Romieu | 1202d6f | 2007-09-17 17:13:55 -0700 | [diff] [blame] | 5287 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5288 | IPATH DRIVER |
Mike Marciniszyn | 8473c60 | 2012-05-10 09:25:20 -0400 | [diff] [blame] | 5289 | M: Mike Marciniszyn <infinipath@intel.com> |
Roland Dreier | e6cc0fd | 2009-09-07 21:54:38 -0700 | [diff] [blame] | 5290 | L: linux-rdma@vger.kernel.org |
Mike Marciniszyn | 52a09a0 | 2011-07-13 09:19:10 -0700 | [diff] [blame] | 5291 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5292 | F: drivers/infiniband/hw/ipath/ |
Bryan O'Sullivan | 77d8798 | 2006-03-29 15:23:39 -0800 | [diff] [blame] | 5293 | |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 5294 | IPMI SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5295 | M: Corey Minyard <minyard@acm.org> |
Randy Dunlap | b0c9065 | 2009-11-11 14:26:13 -0800 | [diff] [blame] | 5296 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 5297 | W: http://openipmi.sourceforge.net/ |
| 5298 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5299 | F: Documentation/IPMI.txt |
| 5300 | F: drivers/char/ipmi/ |
| 5301 | F: include/linux/ipmi* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5302 | F: include/uapi/linux/ipmi* |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 5303 | |
Kenneth Westfield | 2d80089 | 2015-03-03 16:21:50 -0800 | [diff] [blame] | 5304 | QCOM AUDIO (ASoC) DRIVERS |
| 5305 | M: Patrick Lai <plai@codeaurora.org> |
| 5306 | M: Banajit Goswami <bgoswami@codeaurora.org> |
| 5307 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 5308 | S: Supported |
| 5309 | F: sound/soc/qcom/ |
| 5310 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5311 | IPS SCSI RAID DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5312 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5313 | L: linux-scsi@vger.kernel.org |
| 5314 | W: http://www.adaptec.com/ |
| 5315 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5316 | F: drivers/scsi/ips* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5317 | |
| 5318 | IPVS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5319 | M: Wensong Zhang <wensong@linux-vs.org> |
| 5320 | M: Simon Horman <horms@verge.net.au> |
| 5321 | M: Julian Anastasov <ja@ssi.bg> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 5322 | L: netdev@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5323 | L: lvs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5324 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5325 | F: Documentation/networking/ipvs-sysctl.txt |
Hannes Eder | b61d4a71 | 2009-09-21 17:04:12 -0700 | [diff] [blame] | 5326 | F: include/net/ip_vs.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5327 | F: include/uapi/linux/ip_vs.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5328 | F: net/netfilter/ipvs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5329 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 5330 | IPWIRELESS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5331 | M: Jiri Kosina <jkosina@suse.cz> |
| 5332 | M: David Sterba <dsterba@suse.cz> |
Jiri Kosina | 92094aa | 2011-11-13 21:41:00 +0100 | [diff] [blame] | 5333 | S: Odd Fixes |
Greg Kroah-Hartman | 282361a | 2011-02-22 16:23:22 -0800 | [diff] [blame] | 5334 | F: drivers/tty/ipwireless/ |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 5335 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5336 | IPX NETWORK LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5337 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5338 | L: netdev@vger.kernel.org |
| 5339 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5340 | F: include/net/ipx.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5341 | F: include/uapi/linux/ipx.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5342 | F: net/ipx/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5343 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5344 | IRDA SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5345 | M: Samuel Ortiz <samuel@sortiz.org> |
Olaf Hering | a2ac953 | 2005-07-12 13:58:35 -0700 | [diff] [blame] | 5346 | L: irda-users@lists.sourceforge.net (subscribers-only) |
Wolfram Sang | ced649e | 2011-01-31 22:21:46 +0100 | [diff] [blame] | 5347 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5348 | W: http://irda.sourceforge.net/ |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 5349 | S: Maintained |
Samuel Ortiz | e005797 | 2009-06-05 16:12:00 +0200 | [diff] [blame] | 5350 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5351 | F: Documentation/networking/irda.txt |
| 5352 | F: drivers/net/irda/ |
| 5353 | F: include/net/irda/ |
| 5354 | F: net/irda/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5355 | |
Thomas Gleixner | a800c7c | 2010-09-21 11:33:54 +0200 | [diff] [blame] | 5356 | IRQ SUBSYSTEM |
| 5357 | M: Thomas Gleixner <tglx@linutronix.de> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 5358 | L: linux-kernel@vger.kernel.org |
Thomas Gleixner | a800c7c | 2010-09-21 11:33:54 +0200 | [diff] [blame] | 5359 | S: Maintained |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 5360 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
Thomas Gleixner | a800c7c | 2010-09-21 11:33:54 +0200 | [diff] [blame] | 5361 | F: kernel/irq/ |
Jason Cooper | 2ed9fd2 | 2014-05-13 18:47:01 +0000 | [diff] [blame] | 5362 | |
| 5363 | IRQCHIP DRIVERS |
| 5364 | M: Thomas Gleixner <tglx@linutronix.de> |
| 5365 | M: Jason Cooper <jason@lakedaemon.net> |
| 5366 | L: linux-kernel@vger.kernel.org |
| 5367 | S: Maintained |
| 5368 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
| 5369 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core |
Geert Uytterhoeven | 5b5a906 | 2014-08-28 09:56:47 +0200 | [diff] [blame] | 5370 | F: Documentation/devicetree/bindings/interrupt-controller/ |
Thomas Petazzoni | edd9690 | 2012-10-28 10:05:40 +0100 | [diff] [blame] | 5371 | F: drivers/irqchip/ |
Thomas Gleixner | a800c7c | 2010-09-21 11:33:54 +0200 | [diff] [blame] | 5372 | |
Grant Likely | 7ab3a83 | 2012-02-14 14:06:47 -0700 | [diff] [blame] | 5373 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
| 5374 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
Grant Likely | 7ab3a83 | 2012-02-14 14:06:47 -0700 | [diff] [blame] | 5375 | S: Maintained |
| 5376 | F: Documentation/IRQ-domain.txt |
| 5377 | F: include/linux/irqdomain.h |
| 5378 | F: kernel/irq/irqdomain.c |
| 5379 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5380 | ISAPNP |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5381 | M: Jaroslav Kysela <perex@perex.cz> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5382 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5383 | F: Documentation/isapnp.txt |
| 5384 | F: drivers/pnp/isapnp/ |
| 5385 | F: include/linux/isapnp.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5386 | |
Hans Verkuil | d39b842 | 2012-11-23 07:07:02 -0300 | [diff] [blame] | 5387 | ISA RADIO MODULE |
| 5388 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 5389 | L: linux-media@vger.kernel.org |
| 5390 | T: git git://linuxtv.org/media_tree.git |
| 5391 | W: http://linuxtv.org |
| 5392 | S: Maintained |
| 5393 | F: drivers/media/radio/radio-isa* |
| 5394 | |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 5395 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
| 5396 | M: Peter Jones <pjones@redhat.com> |
| 5397 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> |
| 5398 | S: Maintained |
| 5399 | F: drivers/firmware/iscsi_ibft* |
| 5400 | |
Mike Christie | 14816b1 | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 5401 | ISCSI |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5402 | M: Mike Christie <michaelc@cs.wisc.edu> |
Mike Christie | 14816b1 | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 5403 | L: open-iscsi@googlegroups.com |
| 5404 | W: www.open-iscsi.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5405 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
Mike Christie | 14816b1 | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 5406 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5407 | F: drivers/scsi/*iscsi* |
| 5408 | F: include/scsi/*iscsi* |
Mike Christie | 14816b1 | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 5409 | |
Or Gerlitz | 1e65eb4 | 2013-05-08 12:21:19 +0000 | [diff] [blame] | 5410 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
| 5411 | M: Or Gerlitz <ogerlitz@mellanox.com> |
Or Gerlitz | b261aea | 2014-10-01 14:02:17 +0300 | [diff] [blame] | 5412 | M: Sagi Grimberg <sagig@mellanox.com> |
Or Gerlitz | 1e65eb4 | 2013-05-08 12:21:19 +0000 | [diff] [blame] | 5413 | M: Roi Dayan <roid@mellanox.com> |
| 5414 | L: linux-rdma@vger.kernel.org |
| 5415 | S: Supported |
| 5416 | W: http://www.openfabrics.org |
| 5417 | W: www.open-iscsi.org |
| 5418 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 5419 | F: drivers/infiniband/ulp/iser/ |
Or Gerlitz | 1e65eb4 | 2013-05-08 12:21:19 +0000 | [diff] [blame] | 5420 | |
Sagi Grimberg | 2b70e5f | 2015-01-07 12:54:44 +0200 | [diff] [blame] | 5421 | ISCSI EXTENSIONS FOR RDMA (ISER) TARGET |
| 5422 | M: Sagi Grimberg <sagig@mellanox.com> |
| 5423 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
| 5424 | L: linux-rdma@vger.kernel.org |
| 5425 | L: target-devel@vger.kernel.org |
| 5426 | S: Supported |
| 5427 | W: http://www.linux-iscsi.org |
| 5428 | F: drivers/infiniband/ulp/isert |
| 5429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5430 | ISDN SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5431 | M: Karsten Keil <isdn@linux-pingi.de> |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 5432 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
David S. Miller | 3da0ae6 | 2010-03-25 20:32:39 -0700 | [diff] [blame] | 5433 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5434 | W: http://www.isdn4linux.de |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5435 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5436 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5437 | F: Documentation/isdn/ |
| 5438 | F: drivers/isdn/ |
| 5439 | F: include/linux/isdn.h |
| 5440 | F: include/linux/isdn/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5441 | F: include/uapi/linux/isdn.h |
| 5442 | F: include/uapi/linux/isdn/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5443 | |
| 5444 | ISDN SUBSYSTEM (Eicon active card driver) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5445 | M: Armin Schindler <mac@melware.de> |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 5446 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5447 | W: http://www.melware.de |
| 5448 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5449 | F: drivers/isdn/hardware/eicon/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5450 | |
Jean Delvare | d624870 | 2010-03-05 22:17:20 +0100 | [diff] [blame] | 5451 | IT87 HARDWARE MONITORING DRIVER |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 5452 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | d624870 | 2010-03-05 22:17:20 +0100 | [diff] [blame] | 5453 | L: lm-sensors@lm-sensors.org |
| 5454 | S: Maintained |
| 5455 | F: Documentation/hwmon/it87 |
| 5456 | F: drivers/hwmon/it87.c |
| 5457 | |
Malcolm Priestley | 68620bd | 2012-11-04 19:16:31 +0100 | [diff] [blame] | 5458 | IT913X MEDIA DRIVER |
Antti Palosaari | d7104bf | 2013-03-09 22:58:13 -0300 | [diff] [blame] | 5459 | M: Antti Palosaari <crope@iki.fi> |
| 5460 | L: linux-media@vger.kernel.org |
| 5461 | W: http://linuxtv.org/ |
| 5462 | W: http://palosaari.fi/linux/ |
| 5463 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 5464 | T: git git://linuxtv.org/anttip/media_tree.git |
| 5465 | S: Maintained |
Antti Palosaari | 249c697 | 2014-09-01 19:44:59 -0300 | [diff] [blame] | 5466 | F: drivers/media/tuners/it913x* |
Antti Palosaari | d7104bf | 2013-03-09 22:58:13 -0300 | [diff] [blame] | 5467 | |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 5468 | IVTV VIDEO4LINUX DRIVER |
Andy Walls | 6afdeaf | 2010-05-23 18:53:35 -0300 | [diff] [blame] | 5469 | M: Andy Walls <awalls@md.metrocast.net> |
Joe Perches | 7b212ed | 2014-12-10 15:51:24 -0800 | [diff] [blame] | 5470 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5471 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 5472 | T: git git://linuxtv.org/media_tree.git |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 5473 | W: http://www.ivtvdriver.org |
| 5474 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5475 | F: Documentation/video4linux/*.ivtv |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 5476 | F: drivers/media/pci/ivtv/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5477 | F: include/uapi/linux/ivtv* |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 5478 | |
Malcolm Priestley | 68620bd | 2012-11-04 19:16:31 +0100 | [diff] [blame] | 5479 | IX2505V MEDIA DRIVER |
| 5480 | M: Malcolm Priestley <tvboxspy@gmail.com> |
| 5481 | L: linux-media@vger.kernel.org |
| 5482 | W: http://linuxtv.org/ |
| 5483 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 5484 | S: Maintained |
| 5485 | F: drivers/media/dvb-frontends/ix2505v* |
| 5486 | |
Guenter Roeck | 4453d73 | 2010-08-09 17:21:08 -0700 | [diff] [blame] | 5487 | JC42.4 TEMPERATURE SENSOR DRIVER |
| 5488 | M: Guenter Roeck <linux@roeck-us.net> |
| 5489 | L: lm-sensors@lm-sensors.org |
| 5490 | S: Maintained |
| 5491 | F: drivers/hwmon/jc42.c |
| 5492 | F: Documentation/hwmon/jc42 |
| 5493 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5494 | JFS FILESYSTEM |
Dave Kleikamp | 3256f80 | 2011-03-04 10:13:47 -0600 | [diff] [blame] | 5495 | M: Dave Kleikamp <shaggy@kernel.org> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5496 | L: jfs-discussion@lists.sourceforge.net |
| 5497 | W: http://jfs.sourceforge.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5498 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
Dave Kleikamp | 8f8f013 | 2009-07-13 11:02:24 -0500 | [diff] [blame] | 5499 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5500 | F: Documentation/filesystems/jfs.txt |
| 5501 | F: fs/jfs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5502 | |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 5503 | JME NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5504 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 5505 | L: netdev@vger.kernel.org |
| 5506 | S: Maintained |
Jeff Kirsher | 63d24a0 | 2011-06-15 10:17:58 -0700 | [diff] [blame] | 5507 | F: drivers/net/ethernet/jme.* |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 5508 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5509 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5510 | M: David Woodhouse <dwmw2@infradead.org> |
David Woodhouse | 6d85d06 | 2007-10-27 10:39:48 -0400 | [diff] [blame] | 5511 | L: linux-mtd@lists.infradead.org |
| 5512 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5513 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5514 | F: fs/jffs2/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5515 | F: include/uapi/linux/jffs2.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5516 | |
Josh Triplett | de456d3 | 2006-07-30 03:04:00 -0700 | [diff] [blame] | 5517 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5518 | M: Andrew Morton <akpm@linux-foundation.org> |
Jan Kara | 19003c1 | 2009-08-03 19:00:57 +0200 | [diff] [blame] | 5519 | M: Jan Kara <jack@suse.cz> |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 5520 | L: linux-ext4@vger.kernel.org |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 5521 | S: Maintained |
Theodore Ts'o | d183e11 | 2011-05-26 09:53:09 -0400 | [diff] [blame] | 5522 | F: fs/jbd/ |
Theodore Ts'o | d183e11 | 2011-05-26 09:53:09 -0400 | [diff] [blame] | 5523 | F: include/linux/jbd.h |
| 5524 | |
| 5525 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) |
| 5526 | M: "Theodore Ts'o" <tytso@mit.edu> |
| 5527 | L: linux-ext4@vger.kernel.org |
| 5528 | S: Maintained |
| 5529 | F: fs/jbd2/ |
| 5530 | F: include/linux/jbd2.h |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 5531 | |
Breno Leitao | fd8b6cb | 2010-10-06 13:04:48 -0300 | [diff] [blame] | 5532 | JSM Neo PCI based serial card |
Thadeu Lima de Souza Cascardo | 9d141cb | 2013-05-22 15:15:24 -0300 | [diff] [blame] | 5533 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
Breno Leitao | fd8b6cb | 2010-10-06 13:04:48 -0300 | [diff] [blame] | 5534 | L: linux-serial@vger.kernel.org |
| 5535 | S: Maintained |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 5536 | F: drivers/tty/serial/jsm/ |
Breno Leitao | fd8b6cb | 2010-10-06 13:04:48 -0300 | [diff] [blame] | 5537 | |
Clemens Ladisch | af39917 | 2011-01-10 16:32:54 +0100 | [diff] [blame] | 5538 | K10TEMP HARDWARE MONITORING DRIVER |
| 5539 | M: Clemens Ladisch <clemens@ladisch.de> |
| 5540 | L: lm-sensors@lm-sensors.org |
| 5541 | S: Maintained |
| 5542 | F: Documentation/hwmon/k10temp |
| 5543 | F: drivers/hwmon/k10temp.c |
| 5544 | |
Rudolf Marek | 4660cb3 | 2006-10-08 22:01:26 +0200 | [diff] [blame] | 5545 | K8TEMP HARDWARE MONITORING DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5546 | M: Rudolf Marek <r.marek@assembler.cz> |
Rudolf Marek | 4660cb3 | 2006-10-08 22:01:26 +0200 | [diff] [blame] | 5547 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5548 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5549 | F: Documentation/hwmon/k8temp |
| 5550 | F: drivers/hwmon/k8temp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5551 | |
| 5552 | KCONFIG |
Michal Marek | 5eb1f99 | 2013-10-30 12:02:27 +0100 | [diff] [blame] | 5553 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 5554 | L: linux-kbuild@vger.kernel.org |
Joe Perches | cea8321 | 2014-03-03 15:38:38 -0800 | [diff] [blame] | 5555 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
Michal Marek | 5eb1f99 | 2013-10-30 12:02:27 +0100 | [diff] [blame] | 5556 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5557 | F: Documentation/kbuild/kconfig-language.txt |
| 5558 | F: scripts/kconfig/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5559 | |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 5560 | KDUMP |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5561 | M: Vivek Goyal <vgoyal@redhat.com> |
| 5562 | M: Haren Myneni <hbabu@us.ibm.com> |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 5563 | L: kexec@lists.infradead.org |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 5564 | W: http://lse.sourceforge.net/kdump/ |
| 5565 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 5566 | F: Documentation/kdump/ |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 5567 | |
Hans Verkuil | f41bf02 | 2012-11-23 07:04:36 -0300 | [diff] [blame] | 5568 | KEENE FM RADIO TRANSMITTER DRIVER |
| 5569 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 5570 | L: linux-media@vger.kernel.org |
| 5571 | T: git git://linuxtv.org/media_tree.git |
| 5572 | W: http://linuxtv.org |
| 5573 | S: Maintained |
| 5574 | F: drivers/media/radio/radio-keene* |
| 5575 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5576 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5577 | M: Ian Kent <raven@themaw.net> |
Ian Kent | f694fc9 | 2012-02-27 08:03:38 +0800 | [diff] [blame] | 5578 | L: autofs@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5579 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5580 | F: fs/autofs4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5581 | |
Michal Marek | 70fb7ba | 2010-01-29 14:22:43 +0100 | [diff] [blame] | 5582 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
Michal Marek | 5ce4596 | 2009-12-14 17:57:43 -0800 | [diff] [blame] | 5583 | M: Michal Marek <mmarek@suse.cz> |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 5584 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
| 5585 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 5586 | L: linux-kbuild@vger.kernel.org |
Michal Marek | 5ce4596 | 2009-12-14 17:57:43 -0800 | [diff] [blame] | 5587 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5588 | F: Documentation/kbuild/ |
| 5589 | F: Makefile |
| 5590 | F: scripts/Makefile.* |
Michal Marek | 70fb7ba | 2010-01-29 14:22:43 +0100 | [diff] [blame] | 5591 | F: scripts/basic/ |
| 5592 | F: scripts/mk* |
| 5593 | F: scripts/package/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5594 | |
| 5595 | KERNEL JANITORS |
maximilian attems | c3000e0 | 2007-07-06 11:17:32 -0700 | [diff] [blame] | 5596 | L: kernel-janitors@vger.kernel.org |
Justin P. Mattock | 10466f5 | 2010-08-26 15:30:03 -0700 | [diff] [blame] | 5597 | W: http://kernelnewbies.org/KernelJanitors |
Joe Perches | ee709b0 | 2009-10-26 16:49:43 -0700 | [diff] [blame] | 5598 | S: Odd Fixes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5599 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 5600 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5601 | M: "J. Bruce Fields" <bfields@fieldses.org> |
Neil Brown | 16141c0 | 2007-12-11 16:16:12 -0800 | [diff] [blame] | 5602 | L: linux-nfs@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5603 | W: http://nfs.sourceforge.net/ |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 5604 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5605 | F: fs/nfsd/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5606 | F: include/uapi/linux/nfsd/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5607 | F: fs/lockd/ |
| 5608 | F: fs/nfs_common/ |
| 5609 | F: net/sunrpc/ |
| 5610 | F: include/linux/lockd/ |
| 5611 | F: include/linux/sunrpc/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5612 | F: include/uapi/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5613 | |
Shuah Khan | 13b122b | 2014-10-13 15:51:21 -0700 | [diff] [blame] | 5614 | KERNEL SELFTEST FRAMEWORK |
| 5615 | M: Shuah Khan <shuahkh@osg.samsung.com> |
| 5616 | L: linux-api@vger.kernel.org |
| 5617 | T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest |
| 5618 | S: Maintained |
| 5619 | F: tools/testing/selftests |
| 5620 | |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 5621 | KERNEL VIRTUAL MACHINE (KVM) |
Gleb Natapov | 0a00a77 | 2013-11-27 16:35:22 +0200 | [diff] [blame] | 5622 | M: Gleb Natapov <gleb@kernel.org> |
Paolo Bonzini | c93a64f | 2013-05-15 19:02:24 +0200 | [diff] [blame] | 5623 | M: Paolo Bonzini <pbonzini@redhat.com> |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 5624 | L: kvm@vger.kernel.org |
Ramkumar Ramachandra | e3e5847 | 2013-10-31 16:16:34 +0530 | [diff] [blame] | 5625 | W: http://www.linux-kvm.org |
Ramkumar Ramachandra | a94b40a | 2013-10-31 16:29:23 +0530 | [diff] [blame] | 5626 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 5627 | S: Supported |
Paolo Bonzini | c93a64f | 2013-05-15 19:02:24 +0200 | [diff] [blame] | 5628 | F: Documentation/*/kvm*.txt |
| 5629 | F: Documentation/virtual/kvm/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5630 | F: arch/*/kvm/ |
Christian Borntraeger | 1662e86 | 2015-03-12 14:59:26 +0100 | [diff] [blame] | 5631 | F: arch/x86/kernel/kvm.c |
| 5632 | F: arch/x86/kernel/kvmclock.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5633 | F: arch/*/include/asm/kvm* |
| 5634 | F: include/linux/kvm* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5635 | F: include/uapi/linux/kvm* |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5636 | F: virt/kvm/ |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 5637 | |
Joerg Roedel | ad8003d | 2008-09-10 20:01:07 +0200 | [diff] [blame] | 5638 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
Joerg Roedel | 7de609c | 2012-10-29 19:08:21 +0100 | [diff] [blame] | 5639 | M: Joerg Roedel <joro@8bytes.org> |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 5640 | L: kvm@vger.kernel.org |
| 5641 | W: http://kvm.qumranet.com |
Joerg Roedel | 7de609c | 2012-10-29 19:08:21 +0100 | [diff] [blame] | 5642 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5643 | F: arch/x86/include/asm/svm.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5644 | F: arch/x86/kvm/svm.c |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 5645 | |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 5646 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
Alexander Graf | ddf0289 | 2009-12-20 22:24:07 +0100 | [diff] [blame] | 5647 | M: Alexander Graf <agraf@suse.de> |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 5648 | L: kvm-ppc@vger.kernel.org |
| 5649 | W: http://kvm.qumranet.com |
Michael Ellerman | 6a7f972 | 2012-10-15 19:01:05 +0000 | [diff] [blame] | 5650 | T: git git://github.com/agraf/linux-2.6.git |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 5651 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5652 | F: arch/powerpc/include/asm/kvm* |
| 5653 | F: arch/powerpc/kvm/ |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 5654 | |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 5655 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5656 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
Christian Borntraeger | 4ae57b6 | 2012-06-05 13:05:02 +0200 | [diff] [blame] | 5657 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 5658 | M: linux390@de.ibm.com |
| 5659 | L: linux-s390@vger.kernel.org |
| 5660 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 5661 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5662 | F: Documentation/s390/kvm.txt |
| 5663 | F: arch/s390/include/asm/kvm* |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 5664 | F: arch/s390/kvm/ |
Joe Perches | a968cd3 | 2009-12-07 12:52:10 +0100 | [diff] [blame] | 5665 | F: drivers/s390/kvm/ |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 5666 | |
Christoffer Dall | a749474 | 2013-01-20 18:42:26 -0500 | [diff] [blame] | 5667 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
Christoffer Dall | 0f4ca79 | 2013-06-21 13:54:36 -0700 | [diff] [blame] | 5668 | M: Christoffer Dall <christoffer.dall@linaro.org> |
Marc Zyngier | 5c8818b | 2014-04-26 03:43:01 -0700 | [diff] [blame] | 5669 | M: Marc Zyngier <marc.zyngier@arm.com> |
| 5670 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Christoffer Dall | a749474 | 2013-01-20 18:42:26 -0500 | [diff] [blame] | 5671 | L: kvmarm@lists.cs.columbia.edu |
| 5672 | W: http://systems.cs.columbia.edu/projects/kvm-arm |
Christoffer Dall | 0f4ca79 | 2013-06-21 13:54:36 -0700 | [diff] [blame] | 5673 | S: Supported |
Christoffer Dall | a749474 | 2013-01-20 18:42:26 -0500 | [diff] [blame] | 5674 | F: arch/arm/include/uapi/asm/kvm* |
| 5675 | F: arch/arm/include/asm/kvm* |
| 5676 | F: arch/arm/kvm/ |
Marc Zyngier | 5c8818b | 2014-04-26 03:43:01 -0700 | [diff] [blame] | 5677 | F: virt/kvm/arm/ |
| 5678 | F: include/kvm/arm_* |
Christoffer Dall | a749474 | 2013-01-20 18:42:26 -0500 | [diff] [blame] | 5679 | |
Marc Zyngier | 6394a3e | 2013-04-02 17:49:40 +0100 | [diff] [blame] | 5680 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
Marc Zyngier | 5c8818b | 2014-04-26 03:43:01 -0700 | [diff] [blame] | 5681 | M: Christoffer Dall <christoffer.dall@linaro.org> |
Marc Zyngier | 6394a3e | 2013-04-02 17:49:40 +0100 | [diff] [blame] | 5682 | M: Marc Zyngier <marc.zyngier@arm.com> |
| 5683 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 5684 | L: kvmarm@lists.cs.columbia.edu |
| 5685 | S: Maintained |
| 5686 | F: arch/arm64/include/uapi/asm/kvm* |
| 5687 | F: arch/arm64/include/asm/kvm* |
| 5688 | F: arch/arm64/kvm/ |
| 5689 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 5690 | KEXEC |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5691 | M: Eric Biederman <ebiederm@xmission.com> |
Simon Horman | 2f327da | 2010-09-09 16:37:33 -0700 | [diff] [blame] | 5692 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 5693 | L: kexec@lists.infradead.org |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 5694 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5695 | F: include/linux/kexec.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5696 | F: include/uapi/linux/kexec.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5697 | F: kernel/kexec.c |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 5698 | |
David Howells | e971461 | 2010-03-29 23:42:09 +0100 | [diff] [blame] | 5699 | KEYS/KEYRINGS: |
| 5700 | M: David Howells <dhowells@redhat.com> |
| 5701 | L: keyrings@linux-nfs.org |
| 5702 | S: Maintained |
Randy Dunlap | d410fa4 | 2011-05-19 15:59:38 -0700 | [diff] [blame] | 5703 | F: Documentation/security/keys.txt |
David Howells | e971461 | 2010-03-29 23:42:09 +0100 | [diff] [blame] | 5704 | F: include/linux/key.h |
| 5705 | F: include/linux/key-type.h |
| 5706 | F: include/keys/ |
| 5707 | F: security/keys/ |
| 5708 | |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 5709 | KEYS-TRUSTED |
Mimi Zohar | 74dd744 | 2014-02-27 08:44:45 -0500 | [diff] [blame] | 5710 | M: David Safford <safford@us.ibm.com> |
| 5711 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 5712 | L: linux-security-module@vger.kernel.org |
| 5713 | L: keyrings@linux-nfs.org |
| 5714 | S: Supported |
Randy Dunlap | d410fa4 | 2011-05-19 15:59:38 -0700 | [diff] [blame] | 5715 | F: Documentation/security/keys-trusted-encrypted.txt |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 5716 | F: include/keys/trusted-type.h |
| 5717 | F: security/keys/trusted.c |
| 5718 | F: security/keys/trusted.h |
| 5719 | |
| 5720 | KEYS-ENCRYPTED |
Mimi Zohar | 74dd744 | 2014-02-27 08:44:45 -0500 | [diff] [blame] | 5721 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
| 5722 | M: David Safford <safford@us.ibm.com> |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 5723 | L: linux-security-module@vger.kernel.org |
| 5724 | L: keyrings@linux-nfs.org |
| 5725 | S: Supported |
Randy Dunlap | d410fa4 | 2011-05-19 15:59:38 -0700 | [diff] [blame] | 5726 | F: Documentation/security/keys-trusted-encrypted.txt |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 5727 | F: include/keys/encrypted-type.h |
Joe Perches | 19c90aa | 2012-01-10 15:09:00 -0800 | [diff] [blame] | 5728 | F: security/keys/encrypted-keys/ |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 5729 | |
Jason Wessel | 5b778da | 2010-05-20 21:04:28 -0500 | [diff] [blame] | 5730 | KGDB / KDB /debug_core |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5731 | M: Jason Wessel <jason.wessel@windriver.com> |
Jason Wessel | 4063eb5 | 2010-05-20 21:04:19 -0500 | [diff] [blame] | 5732 | W: http://kgdb.wiki.kernel.org/ |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 5733 | L: kgdb-bugreport@lists.sourceforge.net |
| 5734 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5735 | F: Documentation/DocBook/kgdb.tmpl |
| 5736 | F: drivers/misc/kgdbts.c |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 5737 | F: drivers/tty/serial/kgdboc.c |
Jason Wessel | 5b778da | 2010-05-20 21:04:28 -0500 | [diff] [blame] | 5738 | F: include/linux/kdb.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5739 | F: include/linux/kgdb.h |
Jason Wessel | 4063eb5 | 2010-05-20 21:04:19 -0500 | [diff] [blame] | 5740 | F: kernel/debug/ |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 5741 | |
Pekka Enberg | 456db8c | 2008-04-28 22:47:29 +0300 | [diff] [blame] | 5742 | KMEMCHECK |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5743 | M: Vegard Nossum <vegardno@ifi.uio.no> |
Pekka Enberg | 2ed1c52 | 2011-01-15 13:30:04 +0200 | [diff] [blame] | 5744 | M: Pekka Enberg <penberg@kernel.org> |
Pekka Enberg | 456db8c | 2008-04-28 22:47:29 +0300 | [diff] [blame] | 5745 | S: Maintained |
Joe Perches | 410d7a9 | 2009-11-17 14:06:15 -0800 | [diff] [blame] | 5746 | F: Documentation/kmemcheck.txt |
| 5747 | F: arch/x86/include/asm/kmemcheck.h |
| 5748 | F: arch/x86/mm/kmemcheck/ |
| 5749 | F: include/linux/kmemcheck.h |
| 5750 | F: mm/kmemcheck.c |
Pekka Enberg | 456db8c | 2008-04-28 22:47:29 +0300 | [diff] [blame] | 5751 | |
Catalin Marinas | c3bb4d2 | 2009-06-12 09:35:22 +0100 | [diff] [blame] | 5752 | KMEMLEAK |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5753 | M: Catalin Marinas <catalin.marinas@arm.com> |
Catalin Marinas | c3bb4d2 | 2009-06-12 09:35:22 +0100 | [diff] [blame] | 5754 | S: Maintained |
| 5755 | F: Documentation/kmemleak.txt |
| 5756 | F: include/linux/kmemleak.h |
| 5757 | F: mm/kmemleak.c |
| 5758 | F: mm/kmemleak-test.c |
| 5759 | |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 5760 | KPROBES |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5761 | M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> |
| 5762 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
| 5763 | M: "David S. Miller" <davem@davemloft.net> |
Masami Hiramatsu | 97c29e7 | 2010-06-29 15:05:32 -0700 | [diff] [blame] | 5764 | M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 5765 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5766 | F: Documentation/kprobes.txt |
| 5767 | F: include/linux/kprobes.h |
| 5768 | F: kernel/kprobes.c |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 5769 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 5770 | KS0108 LCD CONTROLLER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5771 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 5772 | W: http://miguelojeda.es/auxdisplay.htm |
| 5773 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 5774 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5775 | F: Documentation/auxdisplay/ks0108 |
| 5776 | F: drivers/auxdisplay/ks0108.c |
| 5777 | F: include/linux/ks0108.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 5778 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5779 | LAPB module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5780 | L: linux-x25@vger.kernel.org |
David S. Miller | bf9915c | 2006-07-21 14:55:17 -0700 | [diff] [blame] | 5781 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5782 | F: Documentation/networking/lapb-module.txt |
| 5783 | F: include/*/lapb.h |
| 5784 | F: net/lapb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5785 | |
| 5786 | LASI 53c700 driver for PARISC |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5787 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5788 | L: linux-scsi@vger.kernel.org |
| 5789 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5790 | F: Documentation/scsi/53c700.txt |
| 5791 | F: drivers/scsi/53c700* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5792 | |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 5793 | LED SUBSYSTEM |
Bryan Wu | c772fc2 | 2012-10-16 12:55:19 -0700 | [diff] [blame] | 5794 | M: Bryan Wu <cooloney@gmail.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5795 | M: Richard Purdie <rpurdie@rpsys.net> |
Bryan Wu | aa69cb8 | 2012-05-31 19:51:37 +0800 | [diff] [blame] | 5796 | L: linux-leds@vger.kernel.org |
| 5797 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 5798 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5799 | F: drivers/leds/ |
| 5800 | F: include/linux/leds.h |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 5801 | |
Jean Delvare | b0461a4 | 2011-06-15 15:08:46 -0700 | [diff] [blame] | 5802 | LEGACY EEPROM DRIVER |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 5803 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | b0461a4 | 2011-06-15 15:08:46 -0700 | [diff] [blame] | 5804 | S: Maintained |
| 5805 | F: Documentation/misc-devices/eeprom |
| 5806 | F: drivers/misc/eeprom/eeprom.c |
| 5807 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5808 | LEGO USB Tower driver |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5809 | M: Juergen Stuber <starblue@users.sourceforge.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5810 | L: legousb-devel@lists.sourceforge.net |
| 5811 | W: http://legousb.sourceforge.net/ |
| 5812 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5813 | F: drivers/usb/misc/legousbtower.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5814 | |
Michael Krufky | 055616a | 2012-10-02 00:56:06 -0300 | [diff] [blame] | 5815 | LG2160 MEDIA DRIVER |
| 5816 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 5817 | L: linux-media@vger.kernel.org |
| 5818 | W: http://linuxtv.org/ |
| 5819 | W: http://github.com/mkrufky |
| 5820 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 5821 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 5822 | S: Maintained |
| 5823 | F: drivers/media/dvb-frontends/lg2160.* |
| 5824 | |
Michael Krufky | 6f0e772 | 2012-10-02 00:56:00 -0300 | [diff] [blame] | 5825 | LGDT3305 MEDIA DRIVER |
| 5826 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 5827 | L: linux-media@vger.kernel.org |
| 5828 | W: http://linuxtv.org/ |
| 5829 | W: http://github.com/mkrufky |
| 5830 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 5831 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 5832 | S: Maintained |
| 5833 | F: drivers/media/dvb-frontends/lgdt3305.* |
| 5834 | |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 5835 | LGUEST |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5836 | M: Rusty Russell <rusty@rustcorp.com.au> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5837 | L: lguest@lists.ozlabs.org |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 5838 | W: http://lguest.ozlabs.org/ |
Rusty Russell | 72e9186 | 2010-08-27 08:39:51 -0600 | [diff] [blame] | 5839 | S: Odd Fixes |
Joe Perches | 070f420 | 2012-02-03 15:37:13 -0800 | [diff] [blame] | 5840 | F: arch/x86/include/asm/lguest*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5841 | F: arch/x86/lguest/ |
| 5842 | F: drivers/lguest/ |
| 5843 | F: include/linux/lguest*.h |
Joe Perches | 070f420 | 2012-02-03 15:37:13 -0800 | [diff] [blame] | 5844 | F: tools/lguest/ |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 5845 | |
Tejun Heo | 32ac7cb | 2015-01-06 18:36:44 -0500 | [diff] [blame] | 5846 | LIBATA SUBSYSTEM (Serial and Parallel ATA drivers) |
| 5847 | M: Tejun Heo <tj@kernel.org> |
| 5848 | L: linux-ide@vger.kernel.org |
| 5849 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 5850 | S: Maintained |
| 5851 | F: drivers/ata/ |
| 5852 | F: include/linux/ata.h |
| 5853 | F: include/linux/libata.h |
| 5854 | |
| 5855 | LIBATA PATA ARASAN COMPACT FLASH CONTROLLER |
| 5856 | M: Viresh Kumar <viresh.linux@gmail.com> |
| 5857 | L: linux-ide@vger.kernel.org |
| 5858 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 5859 | S: Maintained |
| 5860 | F: include/linux/pata_arasan_cf_data.h |
| 5861 | F: drivers/ata/pata_arasan_cf.c |
| 5862 | |
Bartlomiej Zolnierkiewicz | c7fa056 | 2014-12-02 17:29:08 +0100 | [diff] [blame] | 5863 | LIBATA PATA DRIVERS |
| 5864 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
| 5865 | M: Tejun Heo <tj@kernel.org> |
| 5866 | L: linux-ide@vger.kernel.org |
| 5867 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 5868 | S: Maintained |
| 5869 | F: drivers/ata/pata_*.c |
| 5870 | F: drivers/ata/ata_generic.c |
| 5871 | |
Tejun Heo | 32ac7cb | 2015-01-06 18:36:44 -0500 | [diff] [blame] | 5872 | LIBATA SATA AHCI PLATFORM devices support |
| 5873 | M: Hans de Goede <hdegoede@redhat.com> |
| 5874 | M: Tejun Heo <tj@kernel.org> |
| 5875 | L: linux-ide@vger.kernel.org |
| 5876 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 5877 | S: Maintained |
| 5878 | F: drivers/ata/ahci_platform.c |
| 5879 | F: drivers/ata/libahci_platform.c |
| 5880 | F: include/linux/ahci_platform.h |
| 5881 | |
| 5882 | LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER |
| 5883 | M: Mikael Pettersson <mikpelinux@gmail.com> |
| 5884 | L: linux-ide@vger.kernel.org |
| 5885 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 5886 | S: Maintained |
| 5887 | F: drivers/ata/sata_promise.* |
| 5888 | |
Sasha Levin | 1acd437 | 2013-06-13 18:41:24 -0400 | [diff] [blame] | 5889 | LIBLOCKDEP |
| 5890 | M: Sasha Levin <sasha.levin@oracle.com> |
| 5891 | S: Maintained |
| 5892 | F: tools/lib/lockdep/ |
| 5893 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5894 | LINUX FOR IBM pSERIES (RS/6000) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5895 | M: Paul Mackerras <paulus@au.ibm.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5896 | W: http://www.ibm.com/linux/ltc/projects/ppc |
| 5897 | S: Supported |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 5898 | F: arch/powerpc/boot/rs6000.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5899 | |
Paul Mackerras | 852bb9f | 2008-07-04 21:04:42 +1000 | [diff] [blame] | 5900 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5901 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
| 5902 | M: Paul Mackerras <paulus@samba.org> |
Benjamin Herrenschmidt | ea66893 | 2014-07-28 13:54:37 +1000 | [diff] [blame] | 5903 | M: Michael Ellerman <mpe@ellerman.id.au> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5904 | W: http://www.penguinppc.org/ |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5905 | L: linuxppc-dev@lists.ozlabs.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 5906 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 5907 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5908 | S: Supported |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 5909 | F: Documentation/powerpc/ |
| 5910 | F: arch/powerpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5911 | |
| 5912 | LINUX FOR POWER MACINTOSH |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5913 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5914 | W: http://www.penguinppc.org/ |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5915 | L: linuxppc-dev@lists.ozlabs.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5916 | S: Maintained |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 5917 | F: arch/powerpc/platforms/powermac/ |
| 5918 | F: drivers/macintosh/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5919 | |
Grant Likely | 77a7636 | 2008-07-12 12:11:43 -0600 | [diff] [blame] | 5920 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
Anatolij Gustschin | a149507 | 2011-07-20 19:04:25 +0000 | [diff] [blame] | 5921 | M: Anatolij Gustschin <agust@denx.de> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5922 | L: linuxppc-dev@lists.ozlabs.org |
Anatolij Gustschin | cba5b1c | 2014-10-02 16:16:59 -0700 | [diff] [blame] | 5923 | T: git git://git.denx.de/linux-denx-agust.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5924 | S: Maintained |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 5925 | F: arch/powerpc/platforms/512x/ |
| 5926 | F: arch/powerpc/platforms/52xx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5927 | |
| 5928 | LINUX FOR POWERPC EMBEDDED PPC4XX |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 5929 | M: Alistair Popple <alistair@popple.id.au> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5930 | M: Matt Porter <mporter@kernel.crashing.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5931 | W: http://www.penguinppc.org/ |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5932 | L: linuxppc-dev@lists.ozlabs.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5933 | S: Maintained |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 5934 | F: arch/powerpc/platforms/40x/ |
| 5935 | F: arch/powerpc/platforms/44x/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5936 | |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 5937 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5938 | L: linuxppc-dev@lists.ozlabs.org |
Grant Likely | cdeb899 | 2013-07-22 01:38:32 +0100 | [diff] [blame] | 5939 | S: Orphan |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 5940 | F: arch/powerpc/*/*virtex* |
| 5941 | F: arch/powerpc/*/*/*virtex* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5942 | |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 5943 | LINUX FOR POWERPC EMBEDDED PPC8XX |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5944 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 5945 | W: http://www.penguinppc.org/ |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5946 | L: linuxppc-dev@lists.ozlabs.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 5947 | S: Maintained |
Joe Perches | a2b1f7c | 2010-08-09 17:20:47 -0700 | [diff] [blame] | 5948 | F: arch/powerpc/platforms/8xx/ |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 5949 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5950 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
Scott Wood | a1e0fb4 | 2014-05-05 20:46:43 -0500 | [diff] [blame] | 5951 | M: Scott Wood <scottwood@freescale.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5952 | M: Kumar Gala <galak@kernel.crashing.org> |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5953 | W: http://www.penguinppc.org/ |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5954 | L: linuxppc-dev@lists.ozlabs.org |
Scott Wood | a1e0fb4 | 2014-05-05 20:46:43 -0500 | [diff] [blame] | 5955 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 5956 | S: Maintained |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 5957 | F: arch/powerpc/platforms/83xx/ |
Baruch Siach | 4c8f581 | 2011-06-20 08:00:22 +0300 | [diff] [blame] | 5958 | F: arch/powerpc/platforms/85xx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5959 | |
Olof Johansson | ab06ff3 | 2006-09-06 14:44:54 -0500 | [diff] [blame] | 5960 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5961 | M: Olof Johansson <olof@lixom.net> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5962 | L: linuxppc-dev@lists.ozlabs.org |
Olof Johansson | 92e1970 | 2010-05-22 05:17:38 +0000 | [diff] [blame] | 5963 | S: Maintained |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 5964 | F: arch/powerpc/platforms/pasemi/ |
| 5965 | F: drivers/*/*pasemi* |
| 5966 | F: drivers/*/*/*pasemi* |
Olof Johansson | ab06ff3 | 2006-09-06 14:44:54 -0500 | [diff] [blame] | 5967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5968 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5969 | M: Chris Wright <chrisw@sous-sol.org> |
Chris Wright | 1a4520b | 2006-03-11 03:27:20 -0800 | [diff] [blame] | 5970 | L: linux-security-module@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5971 | S: Supported |
| 5972 | |
Harry Wei | a23ce6d | 2011-02-11 16:52:20 +0100 | [diff] [blame] | 5973 | LIS3LV02D ACCELEROMETER DRIVER |
| 5974 | M: Eric Piel <eric.piel@tremplin-utc.net> |
| 5975 | S: Maintained |
Jean Delvare | ff60667 | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 5976 | F: Documentation/misc-devices/lis3lv02d |
| 5977 | F: drivers/misc/lis3lv02d/ |
Éric Piel | bd35665 | 2011-10-31 17:10:41 -0700 | [diff] [blame] | 5978 | F: drivers/platform/x86/hp_accel.c |
Harry Wei | a23ce6d | 2011-02-11 16:52:20 +0100 | [diff] [blame] | 5979 | |
Seth Jennings | b700e7f | 2014-12-16 11:58:19 -0600 | [diff] [blame] | 5980 | LIVE PATCHING |
| 5981 | M: Josh Poimboeuf <jpoimboe@redhat.com> |
| 5982 | M: Seth Jennings <sjenning@redhat.com> |
| 5983 | M: Jiri Kosina <jkosina@suse.cz> |
| 5984 | M: Vojtech Pavlik <vojtech@suse.cz> |
| 5985 | S: Maintained |
| 5986 | F: kernel/livepatch/ |
| 5987 | F: include/linux/livepatch.h |
| 5988 | F: arch/x86/include/asm/livepatch.h |
| 5989 | F: arch/x86/kernel/livepatch.c |
| 5990 | F: Documentation/ABI/testing/sysfs-kernel-livepatch |
Seth Jennings | 13d1cf7 | 2014-12-16 11:58:20 -0600 | [diff] [blame] | 5991 | F: samples/livepatch/ |
Seth Jennings | b700e7f | 2014-12-16 11:58:19 -0600 | [diff] [blame] | 5992 | L: live-patching@vger.kernel.org |
Jiri Kosina | 74d50da | 2014-12-22 13:40:20 +0100 | [diff] [blame] | 5993 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git |
Seth Jennings | b700e7f | 2014-12-16 11:58:19 -0600 | [diff] [blame] | 5994 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5995 | LLC (802.2) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5996 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5997 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5998 | F: include/linux/llc.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5999 | F: include/uapi/linux/llc.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6000 | F: include/net/llc* |
| 6001 | F: net/llc/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6002 | |
Adrien Demarez | 4e233cb | 2009-12-09 20:35:50 +0100 | [diff] [blame] | 6003 | LM73 HARDWARE MONITOR DRIVER |
| 6004 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> |
| 6005 | L: lm-sensors@lm-sensors.org |
| 6006 | S: Maintained |
| 6007 | F: drivers/hwmon/lm73.c |
| 6008 | |
Jean Delvare | 156e2d1 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 6009 | LM78 HARDWARE MONITOR DRIVER |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 6010 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | 156e2d1 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 6011 | L: lm-sensors@lm-sensors.org |
| 6012 | S: Maintained |
| 6013 | F: Documentation/hwmon/lm78 |
| 6014 | F: drivers/hwmon/lm78.c |
| 6015 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6016 | LM83 HARDWARE MONITOR DRIVER |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 6017 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 6018 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6019 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6020 | F: Documentation/hwmon/lm83 |
| 6021 | F: drivers/hwmon/lm83.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6022 | |
| 6023 | LM90 HARDWARE MONITOR DRIVER |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 6024 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | cc0b07e | 2005-05-22 09:39:11 +0200 | [diff] [blame] | 6025 | L: lm-sensors@lm-sensors.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6026 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6027 | F: Documentation/hwmon/lm90 |
Wei Ni | aae7bce | 2013-11-15 10:40:39 +0100 | [diff] [blame] | 6028 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6029 | F: drivers/hwmon/lm90.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6030 | |
Guenter Roeck | 917cc4e | 2013-05-19 20:44:27 -0700 | [diff] [blame] | 6031 | LM95234 HARDWARE MONITOR DRIVER |
| 6032 | M: Guenter Roeck <linux@roeck-us.net> |
| 6033 | L: lm-sensors@lm-sensors.org |
| 6034 | S: Maintained |
| 6035 | F: Documentation/hwmon/lm95234 |
| 6036 | F: drivers/hwmon/lm95234.c |
| 6037 | |
Malcolm Priestley | 68620bd | 2012-11-04 19:16:31 +0100 | [diff] [blame] | 6038 | LME2510 MEDIA DRIVER |
| 6039 | M: Malcolm Priestley <tvboxspy@gmail.com> |
| 6040 | L: linux-media@vger.kernel.org |
| 6041 | W: http://linuxtv.org/ |
| 6042 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 6043 | S: Maintained |
| 6044 | F: drivers/media/usb/dvb-usb-v2/lmedm04* |
| 6045 | |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 6046 | LOCKDEP AND LOCKSTAT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6047 | M: Peter Zijlstra <peterz@infradead.org> |
| 6048 | M: Ingo Molnar <mingo@redhat.com> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 6049 | L: linux-kernel@vger.kernel.org |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 6050 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 6051 | S: Maintained |
Davidlohr Bueso | 214e0ae | 2014-07-30 13:41:55 -0700 | [diff] [blame] | 6052 | F: Documentation/locking/lockdep*.txt |
| 6053 | F: Documentation/locking/lockstat.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6054 | F: include/linux/lockdep.h |
Joe Perches | 7486d6d | 2013-11-14 14:59:45 -0800 | [diff] [blame] | 6055 | F: kernel/locking/ |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 6056 | |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 6057 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6058 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 6059 | L: linux-ntfs-dev@lists.sourceforge.net |
| 6060 | W: http://www.linux-ntfs.org/content/view/19/37/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6061 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6062 | F: Documentation/ldm.txt |
Joe Perches | 20d16fe | 2012-02-03 15:37:11 -0800 | [diff] [blame] | 6063 | F: block/partitions/ldm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6064 | |
Joern Engel | ef6ada3 | 2009-11-20 22:17:12 +0100 | [diff] [blame] | 6065 | LogFS |
| 6066 | M: Joern Engel <joern@logfs.org> |
Prasad Joshi | 756ccb3 | 2011-09-13 23:04:11 +0530 | [diff] [blame] | 6067 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
Joern Engel | ef6ada3 | 2009-11-20 22:17:12 +0100 | [diff] [blame] | 6068 | L: logfs@logfs.org |
| 6069 | W: logfs.org |
| 6070 | S: Maintained |
| 6071 | F: fs/logfs/ |
| 6072 | |
Roland Stigge | b62d794 | 2013-04-02 19:37:11 +0200 | [diff] [blame] | 6073 | LPC32XX MACHINE SUPPORT |
| 6074 | M: Roland Stigge <stigge@antcom.de> |
| 6075 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 6076 | S: Maintained |
| 6077 | F: arch/arm/mach-lpc32xx/ |
| 6078 | |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 6079 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
Reddy, Sreekanth | 3a98050 | 2014-06-13 20:48:04 +0530 | [diff] [blame] | 6080 | M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com> |
| 6081 | M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com> |
| 6082 | M: Sreekanth Reddy <sreekanth.reddy@avagotech.com> |
| 6083 | M: Abhijit Mahajan <abhijit.mahajan@avagotech.com> |
| 6084 | L: MPT-FusionLinux.pdl@avagotech.com |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 6085 | L: linux-scsi@vger.kernel.org |
| 6086 | W: http://www.lsilogic.com/support |
| 6087 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6088 | F: drivers/message/fusion/ |
sreekanth.reddy@lsi.com | 500c152 | 2012-10-09 11:04:22 +0530 | [diff] [blame] | 6089 | F: drivers/scsi/mpt2sas/ |
| 6090 | F: drivers/scsi/mpt3sas/ |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 6091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6092 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6093 | M: Matthew Wilcox <matthew@wil.cx> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6094 | L: linux-scsi@vger.kernel.org |
| 6095 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6096 | F: drivers/scsi/sym53c8xx_2/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6097 | |
Guenter Roeck | e5f5c99 | 2010-06-25 11:59:54 -0700 | [diff] [blame] | 6098 | LTC4261 HARDWARE MONITOR DRIVER |
| 6099 | M: Guenter Roeck <linux@roeck-us.net> |
| 6100 | L: lm-sensors@lm-sensors.org |
| 6101 | S: Maintained |
| 6102 | F: Documentation/hwmon/ltc4261 |
| 6103 | F: drivers/hwmon/ltc4261.c |
| 6104 | |
Mike Frysinger | 81365c3 | 2008-10-29 14:01:12 -0700 | [diff] [blame] | 6105 | LTP (Linux Test Project) |
Joe Perches | 28b8e8d | 2010-03-23 13:35:20 -0700 | [diff] [blame] | 6106 | M: Mike Frysinger <vapier@gentoo.org> |
Wanlong Gao | 7d1ae8a | 2012-03-23 15:01:58 -0700 | [diff] [blame] | 6107 | M: Cyril Hrubis <chrubis@suse.cz> |
Wanlong Gao | 7d1ae8a | 2012-03-23 15:01:58 -0700 | [diff] [blame] | 6108 | M: Wanlong Gao <gaowanlong@cn.fujitsu.com> |
Cyril Hrubis | f2eb7f6 | 2014-05-09 15:36:58 -0700 | [diff] [blame] | 6109 | M: Jan Stancek <jstancek@redhat.com> |
| 6110 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> |
| 6111 | M: Alexey Kodanev <alexey.kodanev@oracle.com> |
Mike Frysinger | 81365c3 | 2008-10-29 14:01:12 -0700 | [diff] [blame] | 6112 | L: ltp-list@lists.sourceforge.net (subscribers-only) |
Cyril Hrubis | f2eb7f6 | 2014-05-09 15:36:58 -0700 | [diff] [blame] | 6113 | W: http://linux-test-project.github.io/ |
Wanlong Gao | 7d1ae8a | 2012-03-23 15:01:58 -0700 | [diff] [blame] | 6114 | T: git git://github.com/linux-test-project/ltp.git |
Mike Frysinger | 81365c3 | 2008-10-29 14:01:12 -0700 | [diff] [blame] | 6115 | S: Maintained |
| 6116 | |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 6117 | M32R ARCHITECTURE |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 6118 | W: http://www.linux-m32r.org/ |
Michael Opdenacker | b417486 | 2014-10-13 15:51:26 -0700 | [diff] [blame] | 6119 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6120 | F: arch/m32r/ |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 6121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6122 | M68K ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6123 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6124 | L: linux-m68k@lists.linux-m68k.org |
| 6125 | W: http://www.linux-m68k.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6126 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6127 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6128 | F: arch/m68k/ |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 6129 | F: drivers/zorro/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6130 | |
| 6131 | M68K ON APPLE MACINTOSH |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6132 | M: Joshua Thompson <funaho@jurai.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6133 | W: http://www.mac.linux-m68k.org/ |
Finn Thain | 9bb9f22 | 2007-11-18 11:10:05 +0100 | [diff] [blame] | 6134 | L: linux-m68k@lists.linux-m68k.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6135 | S: Maintained |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 6136 | F: arch/m68k/mac/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6137 | |
| 6138 | M68K ON HP9000/300 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6139 | M: Philip Blundell <philb@gnu.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6140 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
| 6141 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6142 | F: arch/m68k/hp300/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6143 | |
Antti Palosaari | 7442554 | 2013-11-06 14:03:32 -0300 | [diff] [blame] | 6144 | M88DS3103 MEDIA DRIVER |
| 6145 | M: Antti Palosaari <crope@iki.fi> |
| 6146 | L: linux-media@vger.kernel.org |
| 6147 | W: http://linuxtv.org/ |
| 6148 | W: http://palosaari.fi/linux/ |
| 6149 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 6150 | T: git git://linuxtv.org/anttip/media_tree.git |
| 6151 | S: Maintained |
| 6152 | F: drivers/media/dvb-frontends/m88ds3103* |
| 6153 | |
Malcolm Priestley | 68620bd | 2012-11-04 19:16:31 +0100 | [diff] [blame] | 6154 | M88RS2000 MEDIA DRIVER |
| 6155 | M: Malcolm Priestley <tvboxspy@gmail.com> |
| 6156 | L: linux-media@vger.kernel.org |
| 6157 | W: http://linuxtv.org/ |
| 6158 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 6159 | S: Maintained |
| 6160 | F: drivers/media/dvb-frontends/m88rs2000* |
| 6161 | |
Alexey Klimov | 07a092f | 2012-11-12 02:57:32 -0300 | [diff] [blame] | 6162 | MA901 MASTERKIT USB FM RADIO DRIVER |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 6163 | M: Alexey Klimov <klimov.linux@gmail.com> |
| 6164 | L: linux-media@vger.kernel.org |
| 6165 | T: git git://linuxtv.org/media_tree.git |
| 6166 | S: Maintained |
| 6167 | F: drivers/media/radio/radio-ma901.c |
Alexey Klimov | 07a092f | 2012-11-12 02:57:32 -0300 | [diff] [blame] | 6168 | |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 6169 | MAC80211 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6170 | M: Johannes Berg <johannes@sipsolutions.net> |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 6171 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 6172 | W: http://wireless.kernel.org/ |
Johannes Berg | ce46657 | 2012-06-05 15:42:55 +0200 | [diff] [blame] | 6173 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
| 6174 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 6175 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6176 | F: Documentation/networking/mac80211-injection.txt |
| 6177 | F: include/net/mac80211.h |
| 6178 | F: net/mac80211/ |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 6179 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 6180 | MACVLAN DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6181 | M: Patrick McHardy <kaber@trash.net> |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 6182 | L: netdev@vger.kernel.org |
| 6183 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6184 | F: drivers/net/macvlan.c |
| 6185 | F: include/linux/if_macvlan.h |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 6186 | |
Jassi Brar | 2b6d83e | 2014-06-12 22:31:19 +0530 | [diff] [blame] | 6187 | MAILBOX API |
| 6188 | M: Jassi Brar <jassisinghbrar@gmail.com> |
| 6189 | L: linux-kernel@vger.kernel.org |
| 6190 | S: Maintained |
| 6191 | F: drivers/mailbox/ |
| 6192 | F: include/linux/mailbox_client.h |
| 6193 | F: include/linux/mailbox_controller.h |
| 6194 | |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 6195 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6196 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6197 | W: http://www.kernel.org/doc/man-pages |
Michael Kerrisk | bd7ebec | 2008-10-03 15:23:44 -0700 | [diff] [blame] | 6198 | L: linux-man@vger.kernel.org |
Michael Kerrisk | 1b53dc7 | 2009-03-12 14:31:32 -0700 | [diff] [blame] | 6199 | S: Maintained |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 6200 | |
Russell King | 8427def | 2014-02-28 22:40:53 +0000 | [diff] [blame] | 6201 | MARVELL ARMADA DRM SUPPORT |
| 6202 | M: Russell King <rmk+kernel@arm.linux.org.uk> |
| 6203 | S: Maintained |
| 6204 | F: drivers/gpu/drm/armada/ |
| 6205 | |
Guenter Roeck | 3ad50cc | 2014-10-29 10:44:56 -0700 | [diff] [blame] | 6206 | MARVELL 88E6352 DSA support |
| 6207 | M: Guenter Roeck <linux@roeck-us.net> |
| 6208 | S: Maintained |
| 6209 | F: drivers/net/dsa/mv88e6352.c |
| 6210 | |
stephen hemminger | 44c14c1 | 2012-04-02 12:59:47 +0000 | [diff] [blame] | 6211 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
| 6212 | M: Mirko Lindner <mlindner@marvell.com> |
Stephen Hemminger | adbbf69 | 2013-01-16 09:55:57 -0800 | [diff] [blame] | 6213 | M: Stephen Hemminger <stephen@networkplumber.org> |
stephen hemminger | 44c14c1 | 2012-04-02 12:59:47 +0000 | [diff] [blame] | 6214 | L: netdev@vger.kernel.org |
| 6215 | S: Maintained |
| 6216 | F: drivers/net/ethernet/marvell/sk* |
| 6217 | |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 6218 | MARVELL LIBERTAS WIRELESS DRIVER |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 6219 | L: libertas-dev@lists.infradead.org |
Dan Williams | 8ac3e99 | 2013-03-26 14:40:51 -0500 | [diff] [blame] | 6220 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6221 | F: drivers/net/wireless/libertas/ |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 6222 | |
Dale Farnsworth | b60d697 | 2006-01-16 16:45:45 -0700 | [diff] [blame] | 6223 | MARVELL MV643XX ETHERNET DRIVER |
Sebastian Hesselbarth | 4e3faf8 | 2013-10-04 12:56:39 +0200 | [diff] [blame] | 6224 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 6225 | L: netdev@vger.kernel.org |
Lennert Buytenhek | f5ca850 | 2010-02-22 22:34:54 +0000 | [diff] [blame] | 6226 | S: Maintained |
Jeff Kirsher | 527a626 | 2011-05-20 20:18:55 -0700 | [diff] [blame] | 6227 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6228 | F: include/linux/mv643xx.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6229 | |
Thomas Petazzoni | 370b8ed | 2012-09-04 15:06:42 +0200 | [diff] [blame] | 6230 | MARVELL MVNETA ETHERNET DRIVER |
| 6231 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 6232 | L: netdev@vger.kernel.org |
| 6233 | S: Maintained |
| 6234 | F: drivers/net/ethernet/marvell/mvneta.* |
| 6235 | |
Bing Zhao | fcad584 | 2011-07-13 13:11:58 -0700 | [diff] [blame] | 6236 | MARVELL MWIFIEX WIRELESS DRIVER |
Bing Zhao | b9d3170 | 2014-07-30 13:57:16 -0700 | [diff] [blame] | 6237 | M: Amitkumar Karwar <akarwar@marvell.com> |
| 6238 | M: Avinash Patil <patila@marvell.com> |
Bing Zhao | fcad584 | 2011-07-13 13:11:58 -0700 | [diff] [blame] | 6239 | L: linux-wireless@vger.kernel.org |
| 6240 | S: Maintained |
| 6241 | F: drivers/net/wireless/mwifiex/ |
| 6242 | |
Lennert Buytenhek | a2c3f65 | 2009-08-18 05:13:48 +0200 | [diff] [blame] | 6243 | MARVELL MWL8K WIRELESS DRIVER |
Lennert Buytenhek | a040d53 | 2010-02-23 09:34:38 +0100 | [diff] [blame] | 6244 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
Lennert Buytenhek | a2c3f65 | 2009-08-18 05:13:48 +0200 | [diff] [blame] | 6245 | L: linux-wireless@vger.kernel.org |
Lennert Buytenhek | 1634591 | 2010-07-29 01:47:04 +0200 | [diff] [blame] | 6246 | S: Odd Fixes |
Lennert Buytenhek | a2c3f65 | 2009-08-18 05:13:48 +0200 | [diff] [blame] | 6247 | F: drivers/net/wireless/mwl8k.c |
| 6248 | |
Pierre Ossman | 2a69567 | 2009-03-16 19:52:26 +0100 | [diff] [blame] | 6249 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
Nicolas Pitre | 2f82af0 | 2009-09-14 03:25:28 -0400 | [diff] [blame] | 6250 | M: Nicolas Pitre <nico@fluxnic.net> |
Nicolas Pitre | 18e2842 | 2010-05-03 16:43:47 -0400 | [diff] [blame] | 6251 | S: Odd Fixes |
Joe Perches | 1fa7e54 | 2010-10-26 14:23:02 -0700 | [diff] [blame] | 6252 | F: drivers/mmc/host/mvsdio.* |
Pierre Ossman | 2a69567 | 2009-03-16 19:52:26 +0100 | [diff] [blame] | 6253 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6254 | MATROX FRAMEBUFFER DRIVER |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 6255 | L: linux-fbdev@vger.kernel.org |
Petr Vandrovec | 5265319 | 2010-09-30 15:15:34 -0700 | [diff] [blame] | 6256 | S: Orphan |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 6257 | F: drivers/video/fbdev/matrox/matroxfb_* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6258 | F: include/uapi/linux/matroxfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6259 | |
Guenter Roeck | ca46208 | 2012-06-01 23:28:23 -0700 | [diff] [blame] | 6260 | MAX16065 HARDWARE MONITOR DRIVER |
| 6261 | M: Guenter Roeck <linux@roeck-us.net> |
| 6262 | L: lm-sensors@lm-sensors.org |
| 6263 | S: Maintained |
| 6264 | F: Documentation/hwmon/max16065 |
| 6265 | F: drivers/hwmon/max16065.c |
| 6266 | |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 6267 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
Hans J. Koch | 6a534c9 | 2011-04-14 15:22:16 -0700 | [diff] [blame] | 6268 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 6269 | L: lm-sensors@lm-sensors.org |
| 6270 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6271 | F: Documentation/hwmon/max6650 |
| 6272 | F: drivers/hwmon/max6650.c |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 6273 | |
Guenter Roeck | e89ab51 | 2013-03-08 08:13:09 -0800 | [diff] [blame] | 6274 | MAX6697 HARDWARE MONITOR DRIVER |
| 6275 | M: Guenter Roeck <linux@roeck-us.net> |
| 6276 | L: lm-sensors@lm-sensors.org |
| 6277 | S: Maintained |
| 6278 | F: Documentation/hwmon/max6697 |
| 6279 | F: Documentation/devicetree/bindings/i2c/max6697.txt |
| 6280 | F: drivers/hwmon/max6697.c |
| 6281 | F: include/linux/platform_data/max6697.h |
| 6282 | |
Krzysztof Kozlowski | f8f847b | 2015-01-20 11:00:56 +0100 | [diff] [blame] | 6283 | MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS |
| 6284 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
| 6285 | L: linux-pm@vger.kernel.org |
| 6286 | S: Supported |
| 6287 | F: drivers/power/max14577_charger.c |
| 6288 | F: drivers/power/max77693_charger.c |
| 6289 | |
Krzysztof Kozlowski | befeb59 | 2015-02-16 16:00:23 -0800 | [diff] [blame] | 6290 | MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS |
| 6291 | M: Chanwoo Choi <cw00.choi@samsung.com> |
| 6292 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
| 6293 | L: linux-kernel@vger.kernel.org |
| 6294 | S: Supported |
| 6295 | F: drivers/*/max14577.c |
| 6296 | F: drivers/*/max77686.c |
| 6297 | F: drivers/*/max77693.c |
| 6298 | F: drivers/extcon/extcon-max14577.c |
| 6299 | F: drivers/extcon/extcon-max77693.c |
| 6300 | F: drivers/rtc/rtc-max77686.c |
| 6301 | F: drivers/clk/clk-max77686.c |
| 6302 | F: Documentation/devicetree/bindings/mfd/max14577.txt |
| 6303 | F: Documentation/devicetree/bindings/mfd/max77686.txt |
| 6304 | F: Documentation/devicetree/bindings/mfd/max77693.txt |
| 6305 | F: Documentation/devicetree/bindings/clock/maxim,max77686.txt |
| 6306 | F: include/linux/mfd/max14577*.h |
| 6307 | F: include/linux/mfd/max77686*.h |
| 6308 | F: include/linux/mfd/max77693*.h |
| 6309 | |
Hans Verkuil | 9be3c9a | 2012-11-23 07:12:43 -0300 | [diff] [blame] | 6310 | MAXIRADIO FM RADIO RECEIVER DRIVER |
| 6311 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 6312 | L: linux-media@vger.kernel.org |
| 6313 | T: git git://linuxtv.org/media_tree.git |
| 6314 | W: http://linuxtv.org |
| 6315 | S: Maintained |
| 6316 | F: drivers/media/radio/radio-maxiradio* |
| 6317 | |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 6318 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 6319 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 6320 | P: LinuxTV.org Project |
| 6321 | L: linux-media@vger.kernel.org |
| 6322 | W: http://linuxtv.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 6323 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 6324 | T: git git://linuxtv.org/media_tree.git |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 6325 | S: Maintained |
| 6326 | F: Documentation/dvb/ |
| 6327 | F: Documentation/video4linux/ |
Mauro Carvalho Chehab | ffe0619 | 2011-11-24 19:22:10 -0200 | [diff] [blame] | 6328 | F: Documentation/DocBook/media/ |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 6329 | F: drivers/media/ |
Mauro Carvalho Chehab | ffe0619 | 2011-11-24 19:22:10 -0200 | [diff] [blame] | 6330 | F: drivers/staging/media/ |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 6331 | F: include/media/ |
Mauro Carvalho Chehab | 6c0f035 | 2012-11-02 11:56:03 -0200 | [diff] [blame] | 6332 | F: include/uapi/linux/dvb/ |
| 6333 | F: include/uapi/linux/videodev2.h |
| 6334 | F: include/uapi/linux/media.h |
| 6335 | F: include/uapi/linux/v4l2-* |
| 6336 | F: include/uapi/linux/meye.h |
| 6337 | F: include/uapi/linux/ivtv* |
| 6338 | F: include/uapi/linux/uvcvideo.h |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 6339 | |
Sumit.Saxena@avagotech.com | e399065 | 2014-11-17 15:24:03 +0530 | [diff] [blame] | 6340 | MEGARAID SCSI/SAS DRIVERS |
| 6341 | M: Kashyap Desai <kashyap.desai@avagotech.com> |
| 6342 | M: Sumit Saxena <sumit.saxena@avagotech.com> |
| 6343 | M: Uday Lingala <uday.lingala@avagotech.com> |
| 6344 | L: megaraidlinux.pdl@avagotech.com |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 6345 | L: linux-scsi@vger.kernel.org |
Sumit.Saxena@avagotech.com | e399065 | 2014-11-17 15:24:03 +0530 | [diff] [blame] | 6346 | W: http://www.lsi.com |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 6347 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6348 | F: Documentation/scsi/megaraid.txt |
| 6349 | F: drivers/scsi/megaraid.* |
| 6350 | F: drivers/scsi/megaraid/ |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 6351 | |
Amir Vadai | 2c46c9d | 2012-12-02 03:49:21 +0000 | [diff] [blame] | 6352 | MELLANOX ETHERNET DRIVER (mlx4_en) |
| 6353 | M: Amir Vadai <amirv@mellanox.com> |
Or Gerlitz | db60304 | 2015-04-02 16:31:23 +0300 | [diff] [blame] | 6354 | M: Ido Shamay <idos@mellanox.com> |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 6355 | L: netdev@vger.kernel.org |
Amir Vadai | 2c46c9d | 2012-12-02 03:49:21 +0000 | [diff] [blame] | 6356 | S: Supported |
| 6357 | W: http://www.mellanox.com |
| 6358 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
| 6359 | F: drivers/net/ethernet/mellanox/mlx4/en_* |
| 6360 | |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 6361 | MEMORY MANAGEMENT |
| 6362 | L: linux-mm@kvack.org |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 6363 | W: http://www.linux-mm.org |
| 6364 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6365 | F: include/linux/mm.h |
Cody P Schafer | 551450b | 2013-02-21 16:43:13 -0800 | [diff] [blame] | 6366 | F: include/linux/gfp.h |
| 6367 | F: include/linux/mmzone.h |
| 6368 | F: include/linux/memory_hotplug.h |
| 6369 | F: include/linux/vmalloc.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6370 | F: mm/ |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 6371 | |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 6372 | MEMORY TECHNOLOGY DEVICES (MTD) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6373 | M: David Woodhouse <dwmw2@infradead.org> |
Brian Norris | 242c325 | 2013-12-04 15:28:45 -0800 | [diff] [blame] | 6374 | M: Brian Norris <computersforpeace@gmail.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6375 | L: linux-mtd@lists.infradead.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 6376 | W: http://www.linux-mtd.infradead.org/ |
| 6377 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ |
Brian Norris | 242c325 | 2013-12-04 15:28:45 -0800 | [diff] [blame] | 6378 | T: git git://git.infradead.org/linux-mtd.git |
Brian Norris | ab95eac | 2014-09-15 21:56:17 -0700 | [diff] [blame] | 6379 | T: git git://git.infradead.org/l2-mtd.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6380 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6381 | F: drivers/mtd/ |
| 6382 | F: include/linux/mtd/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6383 | F: include/uapi/mtd/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6384 | |
Johannes Thumshirn | 26c57ef | 2013-06-18 17:19:45 +0200 | [diff] [blame] | 6385 | MEN A21 WATCHDOG DRIVER |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 6386 | M: Johannes Thumshirn <johannes.thumshirn@men.de> |
Johannes Thumshirn | 26c57ef | 2013-06-18 17:19:45 +0200 | [diff] [blame] | 6387 | L: linux-watchdog@vger.kernel.org |
| 6388 | S: Supported |
| 6389 | F: drivers/watchdog/mena21_wdt.c |
| 6390 | |
Johannes Thumshirn | 3764e82 | 2014-02-26 17:29:05 +0100 | [diff] [blame] | 6391 | MEN CHAMELEON BUS (mcb) |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 6392 | M: Johannes Thumshirn <johannes.thumshirn@men.de> |
Johannes Thumshirn | 3764e82 | 2014-02-26 17:29:05 +0100 | [diff] [blame] | 6393 | S: Supported |
| 6394 | F: drivers/mcb/ |
| 6395 | F: include/linux/mcb.h |
| 6396 | |
Andreas Werner | 48b490d | 2014-09-15 09:36:30 +0200 | [diff] [blame] | 6397 | MEN F21BMC (Board Management Controller) |
| 6398 | M: Andreas Werner <andreas.werner@men.de> |
| 6399 | S: Supported |
| 6400 | F: drivers/mfd/menf21bmc.c |
| 6401 | F: drivers/watchdog/menf21bmc_wdt.c |
| 6402 | F: drivers/leds/leds-menf21bmc.c |
| 6403 | F: drivers/hwmon/menf21bmc_hwmon.c |
| 6404 | F: Documentation/hwmon/menf21bmc |
| 6405 | |
James Hogan | 1228594 | 2012-10-10 12:59:49 +0100 | [diff] [blame] | 6406 | METAG ARCHITECTURE |
| 6407 | M: James Hogan <james.hogan@imgtec.com> |
James Hogan | d668d9e | 2013-07-22 09:51:38 +0100 | [diff] [blame] | 6408 | L: linux-metag@vger.kernel.org |
James Hogan | 1228594 | 2012-10-10 12:59:49 +0100 | [diff] [blame] | 6409 | S: Supported |
| 6410 | F: arch/metag/ |
| 6411 | F: Documentation/metag/ |
| 6412 | F: Documentation/devicetree/bindings/metag/ |
James Hogan | a2c5d4e | 2012-10-09 10:54:39 +0100 | [diff] [blame] | 6413 | F: drivers/clocksource/metag_generic.c |
James Hogan | 5698c50 | 2012-10-09 10:54:47 +0100 | [diff] [blame] | 6414 | F: drivers/irqchip/irq-metag.c |
| 6415 | F: drivers/irqchip/irq-metag-ext.c |
James Hogan | ae85ac7 | 2012-09-21 17:38:15 +0100 | [diff] [blame] | 6416 | F: drivers/tty/metag_da.c |
James Hogan | 1228594 | 2012-10-10 12:59:49 +0100 | [diff] [blame] | 6417 | |
Michal Simek | c6375b0 | 2009-03-27 14:25:52 +0100 | [diff] [blame] | 6418 | MICROBLAZE ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6419 | M: Michal Simek <monstr@monstr.eu> |
Michal Simek | c6375b0 | 2009-03-27 14:25:52 +0100 | [diff] [blame] | 6420 | W: http://www.monstr.eu/fdt/ |
| 6421 | T: git git://git.monstr.eu/linux-2.6-microblaze.git |
| 6422 | S: Supported |
Michal Simek | 0a8c791 | 2009-04-14 11:38:57 +0200 | [diff] [blame] | 6423 | F: arch/microblaze/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6424 | |
| 6425 | MICROTEK X6 SCANNER |
Oliver Neukum | 61eee9a | 2012-08-01 14:32:55 +0200 | [diff] [blame] | 6426 | M: Oliver Neukum <oliver@neukum.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6427 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6428 | F: drivers/usb/image/microtek.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6429 | |
| 6430 | MIPS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6431 | M: Ralf Baechle <ralf@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6432 | L: linux-mips@linux-mips.org |
Ralf Baechle | 6097050 | 2011-06-09 10:32:22 +0100 | [diff] [blame] | 6433 | W: http://www.linux-mips.org/ |
Ralf Baechle | b05e988 | 2011-11-14 12:58:16 +0000 | [diff] [blame] | 6434 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
Ralf Baechle | 6097050 | 2011-06-09 10:32:22 +0100 | [diff] [blame] | 6435 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
Ralf Baechle | 7425b34 | 2006-03-10 13:47:21 +0000 | [diff] [blame] | 6436 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6437 | F: Documentation/mips/ |
| 6438 | F: arch/mips/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6439 | |
Hans Verkuil | 08b7620 | 2012-11-23 07:15:42 -0300 | [diff] [blame] | 6440 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
| 6441 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 6442 | L: linux-media@vger.kernel.org |
| 6443 | T: git git://linuxtv.org/media_tree.git |
| 6444 | W: http://linuxtv.org |
| 6445 | S: Odd Fixes |
| 6446 | F: drivers/media/radio/radio-miropcm20* |
| 6447 | |
Eli Cohen | e126ba9 | 2013-07-07 17:25:49 +0300 | [diff] [blame] | 6448 | Mellanox MLX5 core VPI driver |
| 6449 | M: Eli Cohen <eli@mellanox.com> |
| 6450 | L: netdev@vger.kernel.org |
| 6451 | L: linux-rdma@vger.kernel.org |
| 6452 | W: http://www.mellanox.com |
| 6453 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
| 6454 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
Joe Perches | cea8321 | 2014-03-03 15:38:38 -0800 | [diff] [blame] | 6455 | T: git git://openfabrics.org/~eli/connect-ib.git |
Eli Cohen | e126ba9 | 2013-07-07 17:25:49 +0300 | [diff] [blame] | 6456 | S: Supported |
| 6457 | F: drivers/net/ethernet/mellanox/mlx5/core/ |
| 6458 | F: include/linux/mlx5/ |
| 6459 | |
| 6460 | Mellanox MLX5 IB driver |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 6461 | M: Eli Cohen <eli@mellanox.com> |
| 6462 | L: linux-rdma@vger.kernel.org |
| 6463 | W: http://www.mellanox.com |
| 6464 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
Joe Perches | cea8321 | 2014-03-03 15:38:38 -0800 | [diff] [blame] | 6465 | T: git git://openfabrics.org/~eli/connect-ib.git |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 6466 | S: Supported |
| 6467 | F: include/linux/mlx5/ |
| 6468 | F: drivers/infiniband/hw/mlx5/ |
Eli Cohen | e126ba9 | 2013-07-07 17:25:49 +0300 | [diff] [blame] | 6469 | |
Antti Palosaari | 0ce277e | 2014-11-12 00:35:42 -0300 | [diff] [blame] | 6470 | MN88472 MEDIA DRIVER |
| 6471 | M: Antti Palosaari <crope@iki.fi> |
| 6472 | L: linux-media@vger.kernel.org |
| 6473 | W: http://linuxtv.org/ |
| 6474 | W: http://palosaari.fi/linux/ |
| 6475 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 6476 | T: git git://linuxtv.org/anttip/media_tree.git |
| 6477 | S: Maintained |
| 6478 | F: drivers/staging/media/mn88472/ |
| 6479 | F: drivers/media/dvb-frontends/mn88472.h |
| 6480 | |
Antti Palosaari | 4f4d238 | 2014-11-12 00:53:57 -0300 | [diff] [blame] | 6481 | MN88473 MEDIA DRIVER |
| 6482 | M: Antti Palosaari <crope@iki.fi> |
| 6483 | L: linux-media@vger.kernel.org |
| 6484 | W: http://linuxtv.org/ |
| 6485 | W: http://palosaari.fi/linux/ |
| 6486 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 6487 | T: git git://linuxtv.org/anttip/media_tree.git |
| 6488 | S: Maintained |
| 6489 | F: drivers/staging/media/mn88473/ |
| 6490 | F: drivers/media/dvb-frontends/mn88473.h |
| 6491 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6492 | MODULE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6493 | M: Rusty Russell <rusty@rustcorp.com.au> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6494 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6495 | F: include/linux/module.h |
| 6496 | F: kernel/module.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6497 | |
| 6498 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6499 | W: http://popies.net/meye/ |
Stelian Pop | b7788e1 | 2011-01-12 16:59:53 -0800 | [diff] [blame] | 6500 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6501 | F: Documentation/video4linux/meye.txt |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 6502 | F: drivers/media/pci/meye/ |
Mauro Carvalho Chehab | 6c0f035 | 2012-11-02 11:56:03 -0200 | [diff] [blame] | 6503 | F: include/uapi/linux/meye.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6504 | |
Jiri Slaby | b9705b6 | 2008-04-30 00:53:48 -0700 | [diff] [blame] | 6505 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6506 | M: Jiri Slaby <jirislaby@gmail.com> |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 6507 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6508 | F: Documentation/serial/moxa-smartio |
Joe Perches | c897401 | 2011-04-14 15:22:05 -0700 | [diff] [blame] | 6509 | F: drivers/tty/mxser.* |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 6510 | |
Alexey Klimov | 889b2f8 | 2012-11-16 17:43:59 -0300 | [diff] [blame] | 6511 | MR800 AVERMEDIA USB FM RADIO DRIVER |
| 6512 | M: Alexey Klimov <klimov.linux@gmail.com> |
| 6513 | L: linux-media@vger.kernel.org |
| 6514 | T: git git://linuxtv.org/media_tree.git |
| 6515 | S: Maintained |
| 6516 | F: drivers/media/radio/radio-mr800.c |
| 6517 | |
Alan Ott | d715569 | 2014-08-16 17:09:03 -0400 | [diff] [blame] | 6518 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
| 6519 | M: Alan Ott <alan@signal11.us> |
| 6520 | L: linux-wpan@vger.kernel.org |
| 6521 | S: Maintained |
| 6522 | F: drivers/net/ieee802154/mrf24j40.c |
| 6523 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 6524 | MSI LAPTOP SUPPORT |
Lee, Chun-Yi | 182ae55 | 2012-12-14 16:14:24 +0800 | [diff] [blame] | 6525 | M: "Lee, Chun-Yi" <jlee@suse.com> |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 6526 | L: platform-driver-x86@vger.kernel.org |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 6527 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6528 | F: drivers/platform/x86/msi-laptop.c |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 6529 | |
Anisse Astier | 0f1006b | 2009-12-17 11:28:49 +0100 | [diff] [blame] | 6530 | MSI WMI SUPPORT |
| 6531 | M: Anisse Astier <anisse@astier.eu> |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 6532 | L: platform-driver-x86@vger.kernel.org |
Anisse Astier | 0f1006b | 2009-12-17 11:28:49 +0100 | [diff] [blame] | 6533 | S: Supported |
| 6534 | F: drivers/platform/x86/msi-wmi.c |
| 6535 | |
Antti Palosaari | 19a628a | 2014-02-02 23:51:30 -0300 | [diff] [blame] | 6536 | MSI001 MEDIA DRIVER |
| 6537 | M: Antti Palosaari <crope@iki.fi> |
| 6538 | L: linux-media@vger.kernel.org |
| 6539 | W: http://linuxtv.org/ |
| 6540 | W: http://palosaari.fi/linux/ |
| 6541 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 6542 | T: git git://linuxtv.org/anttip/media_tree.git |
| 6543 | S: Maintained |
Antti Palosaari | 0185e19 | 2014-07-12 08:58:32 -0300 | [diff] [blame] | 6544 | F: drivers/media/tuners/msi001* |
Antti Palosaari | 19a628a | 2014-02-02 23:51:30 -0300 | [diff] [blame] | 6545 | |
Antti Palosaari | 7570589 | 2014-07-13 21:35:47 -0300 | [diff] [blame] | 6546 | MSI2500 MEDIA DRIVER |
Antti Palosaari | 2c57213 | 2014-02-02 23:55:12 -0300 | [diff] [blame] | 6547 | M: Antti Palosaari <crope@iki.fi> |
| 6548 | L: linux-media@vger.kernel.org |
| 6549 | W: http://linuxtv.org/ |
| 6550 | W: http://palosaari.fi/linux/ |
| 6551 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 6552 | T: git git://linuxtv.org/anttip/media_tree.git |
| 6553 | S: Maintained |
Antti Palosaari | 7570589 | 2014-07-13 21:35:47 -0300 | [diff] [blame] | 6554 | F: drivers/media/usb/msi2500/ |
Antti Palosaari | 2c57213 | 2014-02-02 23:55:12 -0300 | [diff] [blame] | 6555 | |
Laurent Pinchart | 62a37dc | 2013-08-09 08:46:11 -0300 | [diff] [blame] | 6556 | MT9M032 APTINA SENSOR DRIVER |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 6557 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 6558 | L: linux-media@vger.kernel.org |
| 6559 | T: git git://linuxtv.org/media_tree.git |
| 6560 | S: Maintained |
| 6561 | F: drivers/media/i2c/mt9m032.c |
| 6562 | F: include/media/mt9m032.h |
| 6563 | |
Laurent Pinchart | 62a37dc | 2013-08-09 08:46:11 -0300 | [diff] [blame] | 6564 | MT9P031 APTINA CAMERA SENSOR |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 6565 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 6566 | L: linux-media@vger.kernel.org |
| 6567 | T: git git://linuxtv.org/media_tree.git |
| 6568 | S: Maintained |
| 6569 | F: drivers/media/i2c/mt9p031.c |
| 6570 | F: include/media/mt9p031.h |
| 6571 | |
Laurent Pinchart | 62a37dc | 2013-08-09 08:46:11 -0300 | [diff] [blame] | 6572 | MT9T001 APTINA CAMERA SENSOR |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 6573 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 6574 | L: linux-media@vger.kernel.org |
| 6575 | T: git git://linuxtv.org/media_tree.git |
| 6576 | S: Maintained |
| 6577 | F: drivers/media/i2c/mt9t001.c |
| 6578 | F: include/media/mt9t001.h |
| 6579 | |
Laurent Pinchart | 62a37dc | 2013-08-09 08:46:11 -0300 | [diff] [blame] | 6580 | MT9V032 APTINA CAMERA SENSOR |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 6581 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 6582 | L: linux-media@vger.kernel.org |
| 6583 | T: git git://linuxtv.org/media_tree.git |
| 6584 | S: Maintained |
Laurent Pinchart | f2272e1 | 2014-01-01 14:40:35 -0300 | [diff] [blame] | 6585 | F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 6586 | F: drivers/media/i2c/mt9v032.c |
| 6587 | F: include/media/mt9v032.h |
| 6588 | |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 6589 | MULTIFUNCTION DEVICES (MFD) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6590 | M: Samuel Ortiz <sameo@linux.intel.com> |
Samuel Ortiz | f7d3210 | 2013-05-17 00:53:42 +0200 | [diff] [blame] | 6591 | M: Lee Jones <lee.jones@linaro.org> |
Lee Jones | 7caa799 | 2014-07-22 13:24:38 +0100 | [diff] [blame] | 6592 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 6593 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6594 | F: drivers/mfd/ |
Mark Brown | 55b5940 | 2013-06-28 15:14:11 +0100 | [diff] [blame] | 6595 | F: include/linux/mfd/ |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 6596 | |
Pierre Ossman | 5c4e6f1 | 2007-05-21 20:23:20 +0200 | [diff] [blame] | 6597 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
Ulf Hansson | e18eaf8 | 2014-02-19 00:01:05 +0100 | [diff] [blame] | 6598 | M: Ulf Hansson <ulf.hansson@linaro.org> |
Andrew Morton | b2503a9 | 2009-08-18 14:11:12 -0700 | [diff] [blame] | 6599 | L: linux-mmc@vger.kernel.org |
Ulf Hansson | 708dce3 | 2014-05-14 14:32:53 +0200 | [diff] [blame] | 6600 | T: git git://git.linaro.org/people/ulf.hansson/mmc.git |
Chris Ball | 245feaa | 2010-09-10 12:05:24 -0400 | [diff] [blame] | 6601 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6602 | F: drivers/mmc/ |
| 6603 | F: include/linux/mmc/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6604 | F: include/uapi/linux/mmc/ |
Russell King | baca2da | 2006-06-04 17:36:31 +0100 | [diff] [blame] | 6605 | |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 6606 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
Grant Likely | 22b174f | 2011-06-06 00:40:48 -0600 | [diff] [blame] | 6607 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6608 | F: drivers/mmc/host/mmc_spi.c |
| 6609 | F: include/linux/spi/mmc_spi.h |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 6610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6611 | MULTISOUND SOUND DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6612 | M: Andrew Veliath <andrewtv@usa.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6613 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6614 | F: Documentation/sound/oss/MultiSound |
| 6615 | F: sound/oss/msnd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6616 | |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 6617 | MULTITECH MULTIPORT CARD (ISICOM) |
Jiri Slaby | d86b300 | 2010-08-31 17:08:52 +0200 | [diff] [blame] | 6618 | S: Orphan |
Joe Perches | c897401 | 2011-04-14 15:22:05 -0700 | [diff] [blame] | 6619 | F: drivers/tty/isicom.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6620 | F: include/linux/isicom.h |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 6621 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 6622 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
Felipe Balbi | f299470 | 2010-09-09 09:04:25 +0300 | [diff] [blame] | 6623 | M: Felipe Balbi <balbi@ti.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6624 | L: linux-usb@vger.kernel.org |
Felipe Balbi | 43b416e | 2011-05-13 15:21:47 +0300 | [diff] [blame] | 6625 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 6626 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6627 | F: drivers/usb/musb/ |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 6628 | |
Michael Krufky | ea0af5f | 2012-10-02 00:55:41 -0300 | [diff] [blame] | 6629 | MXL5007T MEDIA DRIVER |
| 6630 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 6631 | L: linux-media@vger.kernel.org |
| 6632 | W: http://linuxtv.org/ |
| 6633 | W: http://github.com/mkrufky |
| 6634 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 6635 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 6636 | S: Maintained |
| 6637 | F: drivers/media/tuners/mxl5007t.* |
| 6638 | |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 6639 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
Hyong-Youb Kim | 205057a | 2013-08-12 02:20:02 -0700 | [diff] [blame] | 6640 | M: Hyong-Youb Kim <hykim@myri.com> |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 6641 | L: netdev@vger.kernel.org |
Hyong-Youb Kim | 205057a | 2013-08-12 02:20:02 -0700 | [diff] [blame] | 6642 | W: https://www.myricom.com/support/downloads/myri10ge.html |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 6643 | S: Supported |
Jeff Kirsher | 93f7848 | 2011-05-13 02:24:46 -0700 | [diff] [blame] | 6644 | F: drivers/net/ethernet/myricom/myri10ge/ |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 6645 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6646 | NATSEMI ETHERNET DRIVER (DP8381x) |
David S. Miller | 09d208e | 2012-04-10 21:10:43 -0400 | [diff] [blame] | 6647 | S: Orphan |
Jeff Kirsher | d9fb9f3 | 2011-05-18 05:14:22 -0700 | [diff] [blame] | 6648 | F: drivers/net/ethernet/natsemi/natsemi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6649 | |
Daniel Mack | 23dc05a | 2011-05-18 11:28:38 +0200 | [diff] [blame] | 6650 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
| 6651 | M: Daniel Mack <zonque@gmail.com> |
| 6652 | S: Maintained |
| 6653 | L: alsa-devel@alsa-project.org |
| 6654 | W: http://www.native-instruments.com |
| 6655 | F: sound/usb/caiaq/ |
| 6656 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6657 | NCP FILESYSTEM |
Petr Vandrovec | 5265319 | 2010-09-30 15:15:34 -0700 | [diff] [blame] | 6658 | M: Petr Vandrovec <petr@vandrovec.name> |
| 6659 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6660 | F: fs/ncpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6661 | |
Finn Thain | a79b032 | 2014-05-05 15:35:30 +1000 | [diff] [blame] | 6662 | NCR 5380 SCSI DRIVERS |
| 6663 | M: Finn Thain <fthain@telegraphics.com.au> |
| 6664 | M: Michael Schmitz <schmitzmic@gmail.com> |
| 6665 | L: linux-scsi@vger.kernel.org |
| 6666 | S: Maintained |
| 6667 | F: Documentation/scsi/g_NCR5380.txt |
| 6668 | F: drivers/scsi/NCR5380.* |
| 6669 | F: drivers/scsi/arm/cumana_1.c |
| 6670 | F: drivers/scsi/arm/oak.c |
| 6671 | F: drivers/scsi/atari_NCR5380.c |
| 6672 | F: drivers/scsi/atari_scsi.* |
| 6673 | F: drivers/scsi/dmx3191d.c |
| 6674 | F: drivers/scsi/dtc.* |
| 6675 | F: drivers/scsi/g_NCR5380.* |
| 6676 | F: drivers/scsi/g_NCR5380_mmio.c |
| 6677 | F: drivers/scsi/mac_scsi.* |
| 6678 | F: drivers/scsi/pas16.* |
Finn Thain | a79b032 | 2014-05-05 15:35:30 +1000 | [diff] [blame] | 6679 | F: drivers/scsi/sun3_scsi.* |
| 6680 | F: drivers/scsi/sun3_scsi_vme.c |
| 6681 | F: drivers/scsi/t128.* |
| 6682 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6683 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6684 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6685 | L: linux-scsi@vger.kernel.org |
| 6686 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6687 | F: drivers/scsi/NCR_D700.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6688 | |
Guenter Roeck | 4aa3eb4 | 2013-04-03 14:12:11 -0700 | [diff] [blame] | 6689 | NCT6775 HARDWARE MONITOR DRIVER |
| 6690 | M: Guenter Roeck <linux@roeck-us.net> |
| 6691 | L: lm-sensors@lm-sensors.org |
| 6692 | S: Maintained |
| 6693 | F: Documentation/hwmon/nct6775 |
| 6694 | F: drivers/hwmon/nct6775.c |
| 6695 | |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 6696 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6697 | M: Faisal Latif <faisal.latif@intel.com> |
Roland Dreier | e6cc0fd | 2009-09-07 21:54:38 -0700 | [diff] [blame] | 6698 | L: linux-rdma@vger.kernel.org |
Chien Tung | e3d33cb | 2010-11-02 16:29:54 +0000 | [diff] [blame] | 6699 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 6700 | S: Supported |
| 6701 | F: drivers/infiniband/hw/nes/ |
| 6702 | |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 6703 | NETEM NETWORK EMULATOR |
Stephen Hemminger | adbbf69 | 2013-01-16 09:55:57 -0800 | [diff] [blame] | 6704 | M: Stephen Hemminger <stephen@networkplumber.org> |
David Brownell | f318a63 | 2007-04-23 14:41:06 -0700 | [diff] [blame] | 6705 | L: netem@lists.linux-foundation.org |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 6706 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6707 | F: net/sched/sch_netem.c |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 6708 | |
Jon Mason | b2f5a05 | 2010-07-15 08:47:27 +0000 | [diff] [blame] | 6709 | NETERION 10GbE DRIVERS (s2io/vxge) |
Jon Mason | e380688 | 2011-03-07 07:02:01 +0000 | [diff] [blame] | 6710 | M: Jon Mason <jdmason@kudzu.us> |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 6711 | L: netdev@vger.kernel.org |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 6712 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6713 | F: Documentation/networking/s2io.txt |
Jon Mason | b2f5a05 | 2010-07-15 08:47:27 +0000 | [diff] [blame] | 6714 | F: Documentation/networking/vxge.txt |
Jeff Kirsher | 86387e1 | 2011-05-13 02:51:01 -0700 | [diff] [blame] | 6715 | F: drivers/net/ethernet/neterion/ |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 6716 | |
Pablo Neira Ayuso | db9cf3a | 2014-06-16 13:01:52 +0200 | [diff] [blame] | 6717 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
Pablo Neira Ayuso | 0e05e19 | 2011-11-01 09:44:56 +0100 | [diff] [blame] | 6718 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6719 | M: Patrick McHardy <kaber@trash.net> |
Pablo Neira Ayuso | 42010ed | 2013-05-06 12:22:57 +0200 | [diff] [blame] | 6720 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 6721 | L: netfilter-devel@vger.kernel.org |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 6722 | L: coreteam@netfilter.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6723 | W: http://www.netfilter.org/ |
| 6724 | W: http://www.iptables.org/ |
Pablo Neira Ayuso | 42010ed | 2013-05-06 12:22:57 +0200 | [diff] [blame] | 6725 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
| 6726 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git |
| 6727 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6728 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6729 | F: include/linux/netfilter* |
| 6730 | F: include/linux/netfilter/ |
| 6731 | F: include/net/netfilter/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6732 | F: include/uapi/linux/netfilter* |
| 6733 | F: include/uapi/linux/netfilter/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6734 | F: net/*/netfilter.c |
| 6735 | F: net/*/netfilter/ |
| 6736 | F: net/netfilter/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6737 | |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 6738 | NETLABEL |
Paul Moore | 87a0874 | 2011-08-01 11:10:26 +0000 | [diff] [blame] | 6739 | M: Paul Moore <paul@paul-moore.com> |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 6740 | W: http://netlabel.sf.net |
| 6741 | L: netdev@vger.kernel.org |
Paul Moore | 87a0874 | 2011-08-01 11:10:26 +0000 | [diff] [blame] | 6742 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 6743 | F: Documentation/netlabel/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6744 | F: include/net/netlabel.h |
| 6745 | F: net/netlabel/ |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 6746 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6747 | NETROM NETWORK LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6748 | M: Ralf Baechle <ralf@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6749 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 6750 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6751 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6752 | F: include/net/netrom.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6753 | F: include/uapi/linux/netrom.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6754 | F: net/netrom/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6755 | |
Pavel Machek | 5ddb88c | 2006-09-29 02:01:29 -0700 | [diff] [blame] | 6756 | NETWORK BLOCK DEVICE (NBD) |
Markus Pargmann | 4ca5829 | 2015-01-28 19:35:38 +0100 | [diff] [blame] | 6757 | M: Markus Pargmann <mpa@pengutronix.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6758 | S: Maintained |
Wouter Verhelst | 5e4b269 | 2013-02-27 17:05:27 -0800 | [diff] [blame] | 6759 | L: nbd-general@lists.sourceforge.net |
Markus Pargmann | 4ca5829 | 2015-01-28 19:35:38 +0100 | [diff] [blame] | 6760 | T: git git://git.pengutronix.de/git/mpa/linux-nbd.git |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6761 | F: Documentation/blockdev/nbd.txt |
| 6762 | F: drivers/block/nbd.c |
| 6763 | F: include/linux/nbd.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6764 | F: include/uapi/linux/nbd.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6765 | |
Neil Horman | 6e43650 | 2009-10-05 03:56:55 +0000 | [diff] [blame] | 6766 | NETWORK DROP MONITOR |
| 6767 | M: Neil Horman <nhorman@tuxdriver.com> |
| 6768 | L: netdev@vger.kernel.org |
| 6769 | S: Maintained |
| 6770 | W: https://fedorahosted.org/dropwatch/ |
| 6771 | F: net/core/drop_monitor.c |
| 6772 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6773 | NETWORKING [GENERAL] |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6774 | M: "David S. Miller" <davem@davemloft.net> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 6775 | L: netdev@vger.kernel.org |
Joe Perches | b1e8fd5 | 2009-04-16 09:38:46 +0000 | [diff] [blame] | 6776 | W: http://www.linuxfoundation.org/en/Net |
Joe Perches | 11e9802 | 2012-11-24 11:18:25 +0000 | [diff] [blame] | 6777 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
Nicolas de Pesloüan | 814fd60 | 2011-08-23 23:31:42 +0000 | [diff] [blame] | 6778 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
| 6779 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6780 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6781 | F: net/ |
| 6782 | F: include/net/ |
Joe Perches | 018d21e | 2009-08-07 06:43:01 +0000 | [diff] [blame] | 6783 | F: include/linux/in.h |
| 6784 | F: include/linux/net.h |
| 6785 | F: include/linux/netdevice.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6786 | F: include/uapi/linux/in.h |
| 6787 | F: include/uapi/linux/net.h |
| 6788 | F: include/uapi/linux/netdevice.h |
Nicolas Dichtel | 0c7aecd | 2015-01-15 15:11:15 +0100 | [diff] [blame] | 6789 | F: include/uapi/linux/net_namespace.h |
Tobias Klauser | 7e814a6 | 2014-03-11 12:06:24 +0100 | [diff] [blame] | 6790 | F: tools/net/ |
Daniel Borkmann | f4e53f9 | 2014-03-13 10:18:53 +0100 | [diff] [blame] | 6791 | F: tools/testing/selftests/net/ |
Sasha Levin | 335a67d | 2014-03-27 02:01:34 -0400 | [diff] [blame] | 6792 | F: lib/random32.c |
Daniel Borkmann | a101ccd | 2014-06-10 12:31:10 +0200 | [diff] [blame] | 6793 | F: lib/test_bpf.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6794 | |
| 6795 | NETWORKING [IPv4/IPv6] |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6796 | M: "David S. Miller" <davem@davemloft.net> |
| 6797 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6798 | M: James Morris <jmorris@namei.org> |
| 6799 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> |
| 6800 | M: Patrick McHardy <kaber@trash.net> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 6801 | L: netdev@vger.kernel.org |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 6802 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6803 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6804 | F: net/ipv4/ |
| 6805 | F: net/ipv6/ |
| 6806 | F: include/net/ip* |
Eric Dumazet | 0a14842 | 2011-04-20 09:27:32 +0000 | [diff] [blame] | 6807 | F: arch/x86/net/* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6808 | |
David S. Miller | 73b7656 | 2012-10-16 14:08:40 -0400 | [diff] [blame] | 6809 | NETWORKING [IPSEC] |
| 6810 | M: Steffen Klassert <steffen.klassert@secunet.com> |
| 6811 | M: Herbert Xu <herbert@gondor.apana.org.au> |
| 6812 | M: "David S. Miller" <davem@davemloft.net> |
| 6813 | L: netdev@vger.kernel.org |
Steffen Klassert | d1fc502 | 2013-12-13 12:56:05 +0100 | [diff] [blame] | 6814 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
| 6815 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git |
David S. Miller | 73b7656 | 2012-10-16 14:08:40 -0400 | [diff] [blame] | 6816 | S: Maintained |
Fan Du | 5826bdd | 2014-01-18 09:55:28 +0800 | [diff] [blame] | 6817 | F: net/core/flow.c |
David S. Miller | 73b7656 | 2012-10-16 14:08:40 -0400 | [diff] [blame] | 6818 | F: net/xfrm/ |
| 6819 | F: net/key/ |
| 6820 | F: net/ipv4/xfrm* |
Steffen Klassert | d1fc502 | 2013-12-13 12:56:05 +0100 | [diff] [blame] | 6821 | F: net/ipv4/esp4.c |
| 6822 | F: net/ipv4/ah4.c |
| 6823 | F: net/ipv4/ipcomp.c |
| 6824 | F: net/ipv4/ip_vti.c |
David S. Miller | 73b7656 | 2012-10-16 14:08:40 -0400 | [diff] [blame] | 6825 | F: net/ipv6/xfrm* |
Steffen Klassert | d1fc502 | 2013-12-13 12:56:05 +0100 | [diff] [blame] | 6826 | F: net/ipv6/esp6.c |
| 6827 | F: net/ipv6/ah6.c |
| 6828 | F: net/ipv6/ipcomp6.c |
| 6829 | F: net/ipv6/ip6_vti.c |
David S. Miller | 73b7656 | 2012-10-16 14:08:40 -0400 | [diff] [blame] | 6830 | F: include/uapi/linux/xfrm.h |
| 6831 | F: include/net/xfrm.h |
| 6832 | |
James Morris | 10e2ff1 | 2007-08-25 14:41:28 -0700 | [diff] [blame] | 6833 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
Paul Moore | 87a0874 | 2011-08-01 11:10:26 +0000 | [diff] [blame] | 6834 | M: Paul Moore <paul@paul-moore.com> |
James Morris | 10e2ff1 | 2007-08-25 14:41:28 -0700 | [diff] [blame] | 6835 | L: netdev@vger.kernel.org |
| 6836 | S: Maintained |
| 6837 | |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 6838 | NETWORKING [WIRELESS] |
Randy Dunlap | 2cb4abd | 2007-02-07 15:52:36 -0800 | [diff] [blame] | 6839 | L: linux-wireless@vger.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 6840 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 6841 | |
Joe Perches | 788873a | 2009-04-16 09:38:45 +0000 | [diff] [blame] | 6842 | NETWORKING DRIVERS |
| 6843 | L: netdev@vger.kernel.org |
| 6844 | W: http://www.linuxfoundation.org/en/Net |
Joe Perches | 11e9802 | 2012-11-24 11:18:25 +0000 | [diff] [blame] | 6845 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 6846 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
| 6847 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git |
Joe Perches | 788873a | 2009-04-16 09:38:45 +0000 | [diff] [blame] | 6848 | S: Odd Fixes |
| 6849 | F: drivers/net/ |
Joe Perches | 018d21e | 2009-08-07 06:43:01 +0000 | [diff] [blame] | 6850 | F: include/linux/if_* |
Jean Delvare | 0b63bf1 | 2012-10-18 22:11:38 +0200 | [diff] [blame] | 6851 | F: include/linux/netdevice.h |
| 6852 | F: include/linux/arcdevice.h |
| 6853 | F: include/linux/etherdevice.h |
| 6854 | F: include/linux/fcdevice.h |
| 6855 | F: include/linux/fddidevice.h |
| 6856 | F: include/linux/hippidevice.h |
| 6857 | F: include/linux/inetdevice.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6858 | F: include/uapi/linux/if_* |
| 6859 | F: include/uapi/linux/netdevice.h |
Joe Perches | 788873a | 2009-04-16 09:38:45 +0000 | [diff] [blame] | 6860 | |
John W. Linville | 0e324cf | 2014-12-17 12:07:05 -0500 | [diff] [blame] | 6861 | NETWORKING DRIVERS (WIRELESS) |
| 6862 | M: Kalle Valo <kvalo@codeaurora.org> |
| 6863 | L: linux-wireless@vger.kernel.org |
| 6864 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
| 6865 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/ |
| 6866 | S: Maintained |
| 6867 | F: drivers/net/wireless/ |
| 6868 | |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 6869 | NETXEN (1/10) GbE SUPPORT |
Manish Chopra | 8622315 | 2013-03-28 23:54:08 +0000 | [diff] [blame] | 6870 | M: Manish Chopra <manish.chopra@qlogic.com> |
Amit Kumar Salecha | 83c07dd | 2011-08-18 04:12:32 -0700 | [diff] [blame] | 6871 | M: Sony Chacko <sony.chacko@qlogic.com> |
| 6872 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 6873 | L: netdev@vger.kernel.org |
Amit Kumar Salecha | 9c2b5bd | 2009-11-13 16:37:37 +0000 | [diff] [blame] | 6874 | W: http://www.qlogic.com |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 6875 | S: Supported |
Jeff Kirsher | aa43c21 | 2011-04-08 19:06:30 -0700 | [diff] [blame] | 6876 | F: drivers/net/ethernet/qlogic/netxen/ |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 6877 | |
Aloisio Almeida Jr | 6423d30 | 2011-08-19 16:09:49 -0300 | [diff] [blame] | 6878 | NFC SUBSYSTEM |
| 6879 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> |
| 6880 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> |
| 6881 | M: Samuel Ortiz <sameo@linux.intel.com> |
| 6882 | L: linux-wireless@vger.kernel.org |
Dan Carpenter | 1eb3b21 | 2014-08-11 13:14:25 +0300 | [diff] [blame] | 6883 | L: linux-nfc@lists.01.org (subscribers-only) |
Samuel Ortiz | 0293ba2 | 2013-06-24 14:39:35 +0200 | [diff] [blame] | 6884 | S: Supported |
Aloisio Almeida Jr | 6423d30 | 2011-08-19 16:09:49 -0300 | [diff] [blame] | 6885 | F: net/nfc/ |
Ilan Elias | 55eb94f | 2011-09-18 11:19:34 +0300 | [diff] [blame] | 6886 | F: include/net/nfc/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6887 | F: include/uapi/linux/nfc.h |
Aloisio Almeida Jr | 6423d30 | 2011-08-19 16:09:49 -0300 | [diff] [blame] | 6888 | F: drivers/nfc/ |
Marcel Holtmann | 08eaa1e | 2012-10-24 11:45:38 -0700 | [diff] [blame] | 6889 | F: include/linux/platform_data/pn544.h |
Mark A. Greer | 7ebb88e | 2014-03-10 11:56:25 -0700 | [diff] [blame] | 6890 | F: Documentation/devicetree/bindings/net/nfc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6891 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 6892 | NFS, SUNRPC, AND LOCKD CLIENTS |
Trond Myklebust | cd7b996 | 2013-12-04 12:29:49 -0500 | [diff] [blame] | 6893 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
Trond Myklebust | 0e3b137 | 2015-02-03 17:13:58 -0500 | [diff] [blame] | 6894 | M: Anna Schumaker <anna.schumaker@netapp.com> |
Trond Myklebust | 78f5815 | 2007-12-12 20:16:06 -0500 | [diff] [blame] | 6895 | L: linux-nfs@vger.kernel.org |
| 6896 | W: http://client.linux-nfs.org |
Trond Myklebust | cd7b996 | 2013-12-04 12:29:49 -0500 | [diff] [blame] | 6897 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6898 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6899 | F: fs/lockd/ |
| 6900 | F: fs/nfs/ |
| 6901 | F: fs/nfs_common/ |
| 6902 | F: net/sunrpc/ |
| 6903 | F: include/linux/lockd/ |
| 6904 | F: include/linux/nfs* |
| 6905 | F: include/linux/sunrpc/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6906 | F: include/uapi/linux/nfs* |
| 6907 | F: include/uapi/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6908 | |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 6909 | NILFS2 FILESYSTEM |
Ryusuke Konishi | e212693 | 2014-04-03 14:50:25 -0700 | [diff] [blame] | 6910 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
Ryusuke Konishi | 6aff43f | 2010-01-02 21:41:53 +0900 | [diff] [blame] | 6911 | L: linux-nilfs@vger.kernel.org |
Ryusuke Konishi | f947226 | 2014-04-03 14:50:32 -0700 | [diff] [blame] | 6912 | W: http://nilfs.sourceforge.net/ |
Ryusuke Konishi | e212693 | 2014-04-03 14:50:25 -0700 | [diff] [blame] | 6913 | T: git git://github.com/konis/nilfs2.git |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 6914 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6915 | F: Documentation/filesystems/nilfs2.txt |
| 6916 | F: fs/nilfs2/ |
| 6917 | F: include/linux/nilfs2_fs.h |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 6918 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6919 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6920 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6921 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 6922 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6923 | F: Documentation/scsi/NinjaSCSI.txt |
| 6924 | F: drivers/scsi/pcmcia/nsp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6925 | |
| 6926 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6927 | M: GOTO Masanori <gotom@debian.or.jp> |
| 6928 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6929 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 6930 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6931 | F: Documentation/scsi/NinjaSCSI.txt |
| 6932 | F: drivers/scsi/nsp32* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6933 | |
Ley Foon Tan | 383b8fb | 2014-11-06 15:20:14 +0800 | [diff] [blame] | 6934 | NIOS2 ARCHITECTURE |
| 6935 | M: Ley Foon Tan <lftan@altera.com> |
| 6936 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
Ley Foon Tan | 08c283c | 2015-02-16 11:05:31 +0800 | [diff] [blame] | 6937 | T: git git://git.rocketboards.org/linux-socfpga-next.git |
Ley Foon Tan | 383b8fb | 2014-11-06 15:20:14 +0800 | [diff] [blame] | 6938 | S: Maintained |
| 6939 | F: arch/nios2/ |
| 6940 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 6941 | NTB DRIVER |
Jon Mason | 9ef6bf6 | 2014-06-19 10:44:24 -0700 | [diff] [blame] | 6942 | M: Jon Mason <jdmason@kudzu.us> |
| 6943 | M: Dave Jiang <dave.jiang@intel.com> |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 6944 | S: Supported |
Jon Mason | 2984411 | 2013-07-30 16:29:48 -0700 | [diff] [blame] | 6945 | W: https://github.com/jonmason/ntb/wiki |
| 6946 | T: git git://github.com/jonmason/ntb.git |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 6947 | F: drivers/ntb/ |
Jon Mason | 548c237 | 2012-11-16 19:27:13 -0700 | [diff] [blame] | 6948 | F: drivers/net/ntb_netdev.c |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 6949 | F: include/linux/ntb.h |
| 6950 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6951 | NTFS FILESYSTEM |
Anton Altaparmakov | 2818ef5 | 2011-01-12 10:34:35 +0000 | [diff] [blame] | 6952 | M: Anton Altaparmakov <anton@tuxera.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6953 | L: linux-ntfs-dev@lists.sourceforge.net |
Anton Altaparmakov | 2818ef5 | 2011-01-12 10:34:35 +0000 | [diff] [blame] | 6954 | W: http://www.tuxera.com/ |
Anton Altaparmakov | e6f4dee | 2012-02-27 09:08:33 +0000 | [diff] [blame] | 6955 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
Anton Altaparmakov | 2818ef5 | 2011-01-12 10:34:35 +0000 | [diff] [blame] | 6956 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6957 | F: Documentation/filesystems/ntfs.txt |
| 6958 | F: fs/ntfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6959 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 6960 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6961 | M: Antonino Daplas <adaplas@gmail.com> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 6962 | L: linux-fbdev@vger.kernel.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 6963 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 6964 | F: drivers/video/fbdev/riva/ |
| 6965 | F: drivers/video/fbdev/nvidia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6966 | |
Matthew Wilcox | 7946168 | 2012-11-10 08:54:53 -0500 | [diff] [blame] | 6967 | NVM EXPRESS DRIVER |
| 6968 | M: Matthew Wilcox <willy@linux.intel.com> |
| 6969 | L: linux-nvme@lists.infradead.org |
| 6970 | T: git git://git.infradead.org/users/willy/linux-nvme.git |
| 6971 | S: Supported |
Dan Carpenter | 5be37bf | 2013-05-13 18:00:42 +0300 | [diff] [blame] | 6972 | F: drivers/block/nvme* |
Matthew Wilcox | 7946168 | 2012-11-10 08:54:53 -0500 | [diff] [blame] | 6973 | F: include/linux/nvme.h |
| 6974 | |
Clément Perrochaud | dece458 | 2015-03-09 11:12:04 +0100 | [diff] [blame] | 6975 | NXP-NCI NFC DRIVER |
| 6976 | M: Clément Perrochaud <clement.perrochaud@effinnov.com> |
| 6977 | R: Charles Gorand <charles.gorand@effinnov.com> |
| 6978 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
| 6979 | S: Supported |
| 6980 | F: drivers/nfc/nxp-nci |
| 6981 | |
Russell King | f50d714 | 2014-03-03 12:18:14 +0000 | [diff] [blame] | 6982 | NXP TDA998X DRM DRIVER |
| 6983 | M: Russell King <rmk+kernel@arm.linux.org.uk> |
| 6984 | S: Supported |
| 6985 | F: drivers/gpu/drm/i2c/tda998x_drv.c |
| 6986 | F: include/drm/i2c/tda998x.h |
| 6987 | |
Peter Rosin | fbace43 | 2014-11-08 14:40:17 +0100 | [diff] [blame] | 6988 | NXP TFA9879 DRIVER |
| 6989 | M: Peter Rosin <peda@axentia.se> |
| 6990 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 6991 | S: Maintained |
| 6992 | F: sound/soc/codecs/tfa9879* |
| 6993 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 6994 | OMAP SUPPORT |
Joe Perches | 0e24bdd | 2009-10-26 16:49:40 -0700 | [diff] [blame] | 6995 | M: Tony Lindgren <tony@atomide.com> |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 6996 | L: linux-omap@vger.kernel.org |
| 6997 | W: http://www.muru.com/linux/omap/ |
| 6998 | W: http://linux.omap.com/ |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 6999 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
Jarkko Nikula | 30bd012 | 2011-11-04 13:18:02 +0200 | [diff] [blame] | 7000 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7001 | S: Maintained |
Felipe Contreras | 4e04d5a | 2009-09-21 17:04:25 -0700 | [diff] [blame] | 7002 | F: arch/arm/*omap*/ |
Felipe Balbi | 026da81 | 2015-01-19 16:13:53 -0600 | [diff] [blame] | 7003 | F: arch/arm/configs/omap1_defconfig |
| 7004 | F: arch/arm/configs/omap2plus_defconfig |
Jean Delvare | 046d0a3 | 2012-01-12 20:32:05 +0100 | [diff] [blame] | 7005 | F: drivers/i2c/busses/i2c-omap.c |
Felipe Balbi | dc68cd1 | 2014-11-06 08:37:19 -0600 | [diff] [blame] | 7006 | F: drivers/irqchip/irq-omap-intc.c |
| 7007 | F: drivers/mfd/*omap*.c |
| 7008 | F: drivers/mfd/menelaus.c |
| 7009 | F: drivers/mfd/palmas.c |
| 7010 | F: drivers/mfd/tps65217.c |
| 7011 | F: drivers/mfd/tps65218.c |
| 7012 | F: drivers/mfd/tps65910.c |
| 7013 | F: drivers/mfd/twl-core.[ch] |
| 7014 | F: drivers/mfd/twl4030*.c |
| 7015 | F: drivers/mfd/twl6030*.c |
| 7016 | F: drivers/mfd/twl6040*.c |
| 7017 | F: drivers/regulator/palmas-regulator*.c |
| 7018 | F: drivers/regulator/pbias-regulator.c |
| 7019 | F: drivers/regulator/tps65217-regulator.c |
| 7020 | F: drivers/regulator/tps65218-regulator.c |
| 7021 | F: drivers/regulator/tps65910-regulator.c |
| 7022 | F: drivers/regulator/twl-regulator.c |
Jean Delvare | 046d0a3 | 2012-01-12 20:32:05 +0100 | [diff] [blame] | 7023 | F: include/linux/i2c-omap.h |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7024 | |
Tony Lindgren | 50f29fb | 2012-12-16 11:29:59 -0800 | [diff] [blame] | 7025 | OMAP DEVICE TREE SUPPORT |
Benoit Cousson | cdb55ab | 2013-08-09 23:19:15 +0200 | [diff] [blame] | 7026 | M: Benoît Cousson <bcousson@baylibre.com> |
Tony Lindgren | 50f29fb | 2012-12-16 11:29:59 -0800 | [diff] [blame] | 7027 | M: Tony Lindgren <tony@atomide.com> |
| 7028 | L: linux-omap@vger.kernel.org |
Grant Likely | d0fb18c | 2013-07-19 20:10:12 -0700 | [diff] [blame] | 7029 | L: devicetree@vger.kernel.org |
Tony Lindgren | 50f29fb | 2012-12-16 11:29:59 -0800 | [diff] [blame] | 7030 | S: Maintained |
| 7031 | F: arch/arm/boot/dts/*omap* |
| 7032 | F: arch/arm/boot/dts/*am3* |
Nishanth Menon | 05eb20f | 2014-10-21 09:24:22 -0500 | [diff] [blame] | 7033 | F: arch/arm/boot/dts/*am4* |
| 7034 | F: arch/arm/boot/dts/*am5* |
| 7035 | F: arch/arm/boot/dts/*dra7* |
Tony Lindgren | 50f29fb | 2012-12-16 11:29:59 -0800 | [diff] [blame] | 7036 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7037 | OMAP CLOCK FRAMEWORK SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7038 | M: Paul Walmsley <paul@pwsan.com> |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7039 | L: linux-omap@vger.kernel.org |
| 7040 | S: Maintained |
| 7041 | F: arch/arm/*omap*/*clock* |
| 7042 | |
| 7043 | OMAP POWER MANAGEMENT SUPPORT |
Kevin Hilman | c69d72a | 2012-11-28 15:46:45 -0800 | [diff] [blame] | 7044 | M: Kevin Hilman <khilman@deeprootsystems.com> |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7045 | L: linux-omap@vger.kernel.org |
| 7046 | S: Maintained |
| 7047 | F: arch/arm/*omap*/*pm* |
Kevin Hilman | c46938d | 2012-07-11 14:02:40 -0700 | [diff] [blame] | 7048 | F: drivers/cpufreq/omap-cpufreq.c |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7049 | |
Joe Perches | d21db56 | 2013-09-11 14:23:35 -0700 | [diff] [blame] | 7050 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
Paul Walmsley | 692ab1f | 2011-03-09 18:44:28 -0700 | [diff] [blame] | 7051 | M: Rajendra Nayak <rnayak@ti.com> |
| 7052 | M: Paul Walmsley <paul@pwsan.com> |
| 7053 | L: linux-omap@vger.kernel.org |
| 7054 | S: Maintained |
Joe Perches | d21db56 | 2013-09-11 14:23:35 -0700 | [diff] [blame] | 7055 | F: arch/arm/mach-omap2/prm* |
Paul Walmsley | 692ab1f | 2011-03-09 18:44:28 -0700 | [diff] [blame] | 7056 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7057 | OMAP AUDIO SUPPORT |
Jarkko Nikula | 6c28490 | 2012-04-03 09:45:43 +0300 | [diff] [blame] | 7058 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
Jarkko Nikula | 7ec41ee | 2011-08-11 15:44:57 +0300 | [diff] [blame] | 7059 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7060 | L: alsa-devel@alsa-project.org (subscribers-only) |
| 7061 | L: linux-omap@vger.kernel.org |
| 7062 | S: Maintained |
| 7063 | F: sound/soc/omap/ |
| 7064 | |
Tony Lindgren | 1864019 | 2014-11-20 09:13:42 -0800 | [diff] [blame] | 7065 | OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT |
| 7066 | M: Roger Quadros <rogerq@ti.com> |
| 7067 | M: Tony Lindgren <tony@atomide.com> |
| 7068 | L: linux-omap@vger.kernel.org |
| 7069 | S: Maintained |
| 7070 | F: drivers/memory/omap-gpmc.c |
| 7071 | F: arch/arm/mach-omap2/*gpmc* |
| 7072 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7073 | OMAP FRAMEBUFFER SUPPORT |
Tomi Valkeinen | 830e638 | 2011-02-23 16:34:17 +0200 | [diff] [blame] | 7074 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 7075 | L: linux-fbdev@vger.kernel.org |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7076 | L: linux-omap@vger.kernel.org |
| 7077 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 7078 | F: drivers/video/fbdev/omap/ |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7079 | |
Tomi Valkeinen | 676eec0 | 2010-01-07 13:18:04 +0200 | [diff] [blame] | 7080 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
Tomi Valkeinen | 830e638 | 2011-02-23 16:34:17 +0200 | [diff] [blame] | 7081 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
Tomi Valkeinen | 178ff4c | 2009-09-22 13:30:24 +0300 | [diff] [blame] | 7082 | L: linux-omap@vger.kernel.org |
Tomi Valkeinen | 676eec0 | 2010-01-07 13:18:04 +0200 | [diff] [blame] | 7083 | L: linux-fbdev@vger.kernel.org |
Tomi Valkeinen | 178ff4c | 2009-09-22 13:30:24 +0300 | [diff] [blame] | 7084 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 7085 | F: drivers/video/fbdev/omap2/ |
Tomi Valkeinen | 178ff4c | 2009-09-22 13:30:24 +0300 | [diff] [blame] | 7086 | F: Documentation/arm/OMAP/DSS |
| 7087 | |
Ohad Ben-Cohen | 8b37fcf | 2011-09-12 10:43:01 +0300 | [diff] [blame] | 7088 | OMAP HARDWARE SPINLOCK SUPPORT |
| 7089 | M: Ohad Ben-Cohen <ohad@wizery.com> |
| 7090 | L: linux-omap@vger.kernel.org |
| 7091 | S: Maintained |
| 7092 | F: drivers/hwspinlock/omap_hwspinlock.c |
| 7093 | F: arch/arm/mach-omap2/hwspinlock.c |
| 7094 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7095 | OMAP MMC SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7096 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7097 | L: linux-omap@vger.kernel.org |
| 7098 | S: Maintained |
Madhusudhan Chikkature | 653f41b | 2009-09-22 16:45:06 -0700 | [diff] [blame] | 7099 | F: drivers/mmc/host/omap.c |
| 7100 | |
| 7101 | OMAP HS MMC SUPPORT |
Venkatraman S | 0a4585c | 2012-08-17 23:59:53 +0530 | [diff] [blame] | 7102 | L: linux-mmc@vger.kernel.org |
Madhusudhan Chikkature | 653f41b | 2009-09-22 16:45:06 -0700 | [diff] [blame] | 7103 | L: linux-omap@vger.kernel.org |
Balaji T K | dfa5d19 | 2014-09-17 22:50:11 +0530 | [diff] [blame] | 7104 | S: Orphan |
Madhusudhan Chikkature | 653f41b | 2009-09-22 16:45:06 -0700 | [diff] [blame] | 7105 | F: drivers/mmc/host/omap_hsmmc.c |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7106 | |
| 7107 | OMAP RANDOM NUMBER GENERATOR SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7108 | M: Deepak Saxena <dsaxena@plexity.net> |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7109 | S: Maintained |
| 7110 | F: drivers/char/hw_random/omap-rng.c |
| 7111 | |
Paul Walmsley | f400c82 | 2010-12-06 19:08:54 -0700 | [diff] [blame] | 7112 | OMAP HWMOD SUPPORT |
Benoit Cousson | cdb55ab | 2013-08-09 23:19:15 +0200 | [diff] [blame] | 7113 | M: Benoît Cousson <bcousson@baylibre.com> |
Paul Walmsley | f400c82 | 2010-12-06 19:08:54 -0700 | [diff] [blame] | 7114 | M: Paul Walmsley <paul@pwsan.com> |
| 7115 | L: linux-omap@vger.kernel.org |
| 7116 | S: Maintained |
Zhang Yanfei | 8fc8b12 | 2013-01-11 14:32:03 -0800 | [diff] [blame] | 7117 | F: arch/arm/mach-omap2/omap_hwmod.* |
Paul Walmsley | f400c82 | 2010-12-06 19:08:54 -0700 | [diff] [blame] | 7118 | |
Paul Walmsley | 8633fb3 | 2015-01-19 23:49:50 -0700 | [diff] [blame] | 7119 | OMAP HWMOD DATA |
| 7120 | M: Paul Walmsley <paul@pwsan.com> |
| 7121 | L: linux-omap@vger.kernel.org |
| 7122 | S: Maintained |
| 7123 | F: arch/arm/mach-omap2/omap_hwmod*data* |
| 7124 | |
Paul Walmsley | f400c82 | 2010-12-06 19:08:54 -0700 | [diff] [blame] | 7125 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
Benoit Cousson | cdb55ab | 2013-08-09 23:19:15 +0200 | [diff] [blame] | 7126 | M: Benoît Cousson <bcousson@baylibre.com> |
Paul Walmsley | f400c82 | 2010-12-06 19:08:54 -0700 | [diff] [blame] | 7127 | L: linux-omap@vger.kernel.org |
| 7128 | S: Maintained |
| 7129 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c |
| 7130 | |
Laurent Pinchart | 0db83ce | 2014-06-06 12:08:59 -0300 | [diff] [blame] | 7131 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
Laurent Pinchart | 7e8970e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 7132 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 7133 | L: linux-media@vger.kernel.org |
| 7134 | S: Maintained |
Sakari Ailus | 7eec52d | 2015-03-19 01:50:22 +0200 | [diff] [blame] | 7135 | F: Documentation/devicetree/bindings/media/ti,omap3isp.txt |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 7136 | F: drivers/media/platform/omap3isp/ |
Laurent Pinchart | 0db83ce | 2014-06-06 12:08:59 -0300 | [diff] [blame] | 7137 | F: drivers/staging/media/omap4iss/ |
Laurent Pinchart | 7e8970e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 7138 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7139 | OMAP USB SUPPORT |
Felipe Balbi | f299470 | 2010-09-09 09:04:25 +0300 | [diff] [blame] | 7140 | M: Felipe Balbi <balbi@ti.com> |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7141 | L: linux-usb@vger.kernel.org |
| 7142 | L: linux-omap@vger.kernel.org |
Felipe Balbi | 43b416e | 2011-05-13 15:21:47 +0300 | [diff] [blame] | 7143 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7144 | S: Maintained |
Joe Perches | a16fbd6 | 2010-08-09 17:20:48 -0700 | [diff] [blame] | 7145 | F: drivers/usb/*/*omap* |
| 7146 | F: arch/arm/*omap*/usb* |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 7147 | |
Kevin Hilman | 6d99471 | 2012-07-16 10:05:07 -0700 | [diff] [blame] | 7148 | OMAP GPIO DRIVER |
Javier Martinez Canillas | a1415a8 | 2014-04-06 16:58:17 +0200 | [diff] [blame] | 7149 | M: Javier Martinez Canillas <javier@dowhile0.org> |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 7150 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Kevin Hilman | c69d72a | 2012-11-28 15:46:45 -0800 | [diff] [blame] | 7151 | M: Kevin Hilman <khilman@deeprootsystems.com> |
Kevin Hilman | 6d99471 | 2012-07-16 10:05:07 -0700 | [diff] [blame] | 7152 | L: linux-omap@vger.kernel.org |
| 7153 | S: Maintained |
| 7154 | F: drivers/gpio/gpio-omap.c |
| 7155 | |
Mark Jackson | c351e29 | 2013-10-04 09:15:01 +0100 | [diff] [blame] | 7156 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
| 7157 | M: Mark Jackson <mpfj@newflow.co.uk> |
| 7158 | L: linux-omap@vger.kernel.org |
| 7159 | S: Maintained |
| 7160 | F: arch/arm/boot/dts/am335x-nano.dts |
| 7161 | |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 7162 | OMFS FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7163 | M: Bob Copeland <me@bobcopeland.com> |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 7164 | L: linux-karma-devel@lists.sourceforge.net |
| 7165 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7166 | F: Documentation/filesystems/omfs.txt |
| 7167 | F: fs/omfs/ |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 7168 | |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 7169 | OMNIKEY CARDMAN 4000 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7170 | M: Harald Welte <laforge@gnumonks.org> |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 7171 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7172 | F: drivers/char/pcmcia/cm4000_cs.c |
| 7173 | F: include/linux/cm4000_cs.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7174 | F: include/uapi/linux/cm4000_cs.h |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 7175 | |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 7176 | OMNIKEY CARDMAN 4040 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7177 | M: Harald Welte <laforge@gnumonks.org> |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 7178 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7179 | F: drivers/char/pcmcia/cm4040_cs.* |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 7180 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 7181 | OMNIVISION OV7670 SENSOR DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7182 | M: Jonathan Corbet <corbet@lwn.net> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 7183 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 7184 | T: git git://linuxtv.org/media_tree.git |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 7185 | S: Maintained |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 7186 | F: drivers/media/i2c/ov7670.c |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 7187 | |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 7188 | ONENAND FLASH DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7189 | M: Kyungmin Park <kyungmin.park@samsung.com> |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 7190 | L: linux-mtd@lists.infradead.org |
| 7191 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7192 | F: drivers/mtd/onenand/ |
| 7193 | F: include/linux/mtd/onenand*.h |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 7194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7195 | ONSTREAM SCSI TAPE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7196 | M: Willem Riede <osst@riede.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7197 | L: osst-users@lists.sourceforge.net |
| 7198 | L: linux-scsi@vger.kernel.org |
| 7199 | S: Maintained |
Jean Delvare | f7269cf | 2013-07-03 15:05:08 -0700 | [diff] [blame] | 7200 | F: Documentation/scsi/osst.txt |
| 7201 | F: drivers/scsi/osst.* |
| 7202 | F: drivers/scsi/osst_*.h |
| 7203 | F: drivers/scsi/st.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7204 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7205 | OPENCORES I2C BUS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7206 | M: Peter Korsgaard <jacmet@sunsite.dk> |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 7207 | L: linux-i2c@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7208 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7209 | F: Documentation/i2c/busses/i2c-ocores |
| 7210 | F: drivers/i2c/busses/i2c-ocores.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7211 | |
Grant Likely | 860c44c | 2009-10-26 16:49:49 -0700 | [diff] [blame] | 7212 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
Grant Likely | 1962423 | 2013-04-08 11:51:42 +0100 | [diff] [blame] | 7213 | M: Grant Likely <grant.likely@linaro.org> |
Rob Herring | 5d3ad8a | 2013-12-03 10:20:16 -0600 | [diff] [blame] | 7214 | M: Rob Herring <robh+dt@kernel.org> |
Grant Likely | d0fb18c | 2013-07-19 20:10:12 -0700 | [diff] [blame] | 7215 | L: devicetree@vger.kernel.org |
Rob Herring | a7fefe9 | 2014-12-26 14:05:54 -0600 | [diff] [blame] | 7216 | W: http://www.devicetree.org/ |
| 7217 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git |
Grant Likely | 860c44c | 2009-10-26 16:49:49 -0700 | [diff] [blame] | 7218 | S: Maintained |
Grant Likely | f882820 | 2013-07-19 18:57:39 -0700 | [diff] [blame] | 7219 | F: drivers/of/ |
Grant Likely | 860c44c | 2009-10-26 16:49:49 -0700 | [diff] [blame] | 7220 | F: include/linux/of*.h |
Grant Likely | f882820 | 2013-07-19 18:57:39 -0700 | [diff] [blame] | 7221 | F: scripts/dtc/ |
Grant Likely | 860c44c | 2009-10-26 16:49:49 -0700 | [diff] [blame] | 7222 | |
Grant Likely | f882820 | 2013-07-19 18:57:39 -0700 | [diff] [blame] | 7223 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
Rob Herring | 5d3ad8a | 2013-12-03 10:20:16 -0600 | [diff] [blame] | 7224 | M: Rob Herring <robh+dt@kernel.org> |
Grant Likely | f882820 | 2013-07-19 18:57:39 -0700 | [diff] [blame] | 7225 | M: Pawel Moll <pawel.moll@arm.com> |
| 7226 | M: Mark Rutland <mark.rutland@arm.com> |
Ian Campbell | de80963 | 2013-08-30 09:50:42 +0100 | [diff] [blame] | 7227 | M: Ian Campbell <ijc+devicetree@hellion.org.uk> |
Kumar Gala | bdbff6b | 2013-08-08 10:51:15 -0500 | [diff] [blame] | 7228 | M: Kumar Gala <galak@codeaurora.org> |
Grant Likely | f882820 | 2013-07-19 18:57:39 -0700 | [diff] [blame] | 7229 | L: devicetree@vger.kernel.org |
| 7230 | S: Maintained |
| 7231 | F: Documentation/devicetree/ |
| 7232 | F: arch/*/boot/dts/ |
| 7233 | F: include/dt-bindings/ |
| 7234 | |
Pantelis Antoniou | 2bb65f5 | 2015-03-17 22:30:57 +0200 | [diff] [blame] | 7235 | OPEN FIRMWARE AND DEVICE TREE OVERLAYS |
| 7236 | M: Pantelis Antoniou <pantelis.antoniou@konsulko.com> |
| 7237 | L: devicetree@vger.kernel.org |
| 7238 | S: Maintained |
| 7239 | F: Documentation/devicetree/dynamic-resolution-notes.txt |
| 7240 | F: Documentation/devicetree/overlay-notes.txt |
| 7241 | F: drivers/of/overlay.c |
| 7242 | F: drivers/of/resolver.c |
| 7243 | |
Jonas Bonn | 19f9d39 | 2011-06-04 22:00:38 +0300 | [diff] [blame] | 7244 | OPENRISC ARCHITECTURE |
| 7245 | M: Jonas Bonn <jonas@southpole.se> |
| 7246 | W: http://openrisc.net |
Paul Bolle | eab7c1c | 2011-10-14 21:00:37 +0200 | [diff] [blame] | 7247 | L: linux@lists.openrisc.net (moderated for non-subscribers) |
Jonas Bonn | 19f9d39 | 2011-06-04 22:00:38 +0300 | [diff] [blame] | 7248 | S: Maintained |
| 7249 | T: git git://openrisc.net/~jonas/linux |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 7250 | F: arch/openrisc/ |
Jonas Bonn | 19f9d39 | 2011-06-04 22:00:38 +0300 | [diff] [blame] | 7251 | |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 7252 | OPENVSWITCH |
Jesse Gross | 4f337ed | 2014-05-16 15:57:59 -0700 | [diff] [blame] | 7253 | M: Pravin Shelar <pshelar@nicira.com> |
Pravin B Shelar | b422da7 | 2015-01-02 11:18:21 -0800 | [diff] [blame] | 7254 | L: netdev@vger.kernel.org |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 7255 | L: dev@openvswitch.org |
| 7256 | W: http://openvswitch.org |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 7257 | S: Maintained |
| 7258 | F: net/openvswitch/ |
Pravin B Shelar | b422da7 | 2015-01-02 11:18:21 -0800 | [diff] [blame] | 7259 | F: include/uapi/linux/openvswitch.h |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 7260 | |
Clemens Ladisch | af39917 | 2011-01-10 16:32:54 +0100 | [diff] [blame] | 7261 | OPL4 DRIVER |
| 7262 | M: Clemens Ladisch <clemens@ladisch.de> |
| 7263 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 7264 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 7265 | S: Maintained |
| 7266 | F: sound/drivers/opl4/ |
| 7267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7268 | OPROFILE |
Robert Richter | 4cf7e71 | 2012-10-29 18:53:25 +0100 | [diff] [blame] | 7269 | M: Robert Richter <rric@kernel.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7270 | L: oprofile-list@lists.sf.net |
| 7271 | S: Maintained |
Robert Richter | 81c4a8a | 2010-04-22 19:14:49 +0200 | [diff] [blame] | 7272 | F: arch/*/include/asm/oprofile*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7273 | F: arch/*/oprofile/ |
| 7274 | F: drivers/oprofile/ |
| 7275 | F: include/linux/oprofile.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7276 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7277 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7278 | M: Mark Fasheh <mfasheh@suse.com> |
Joel Becker | d6351db | 2011-01-07 18:10:32 -0800 | [diff] [blame] | 7279 | M: Joel Becker <jlbec@evilplan.org> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7280 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
Mark Fasheh | 01945fa | 2015-02-27 15:51:40 -0800 | [diff] [blame] | 7281 | W: http://ocfs2.wiki.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7282 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7283 | F: Documentation/filesystems/ocfs2.txt |
| 7284 | F: Documentation/filesystems/dlmfs.txt |
| 7285 | F: fs/ocfs2/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7287 | ORINOCO DRIVER |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 7288 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 7289 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
Pavel Roskin | ecffdde | 2005-05-05 16:16:01 -0700 | [diff] [blame] | 7290 | W: http://www.nongnu.org/orinoco/ |
David Kilroy | 3a59bab | 2010-08-21 12:13:45 +0100 | [diff] [blame] | 7291 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7292 | F: drivers/net/wireless/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7293 | |
Boaz Harrosh | 42c55aa | 2009-06-17 16:54:34 +0300 | [diff] [blame] | 7294 | OSD LIBRARY and FILESYSTEM |
Boaz Harrosh | fadc075 | 2014-10-19 19:19:57 +0300 | [diff] [blame] | 7295 | M: Boaz Harrosh <ooo@electrozaur.com> |
Benny Halevy | f1f6630 | 2014-02-10 11:57:29 +0200 | [diff] [blame] | 7296 | M: Benny Halevy <bhalevy@primarydata.com> |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 7297 | L: osd-dev@open-osd.org |
| 7298 | W: http://open-osd.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 7299 | T: git git://git.open-osd.org/open-osd.git |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 7300 | S: Maintained |
Boaz Harrosh | 42c55aa | 2009-06-17 16:54:34 +0300 | [diff] [blame] | 7301 | F: drivers/scsi/osd/ |
Joe Perches | 6b6f0b6 | 2009-08-18 14:11:06 -0700 | [diff] [blame] | 7302 | F: include/scsi/osd_* |
Boaz Harrosh | 42c55aa | 2009-06-17 16:54:34 +0300 | [diff] [blame] | 7303 | F: fs/exofs/ |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 7304 | |
Miklos Szeredi | ef94b18 | 2014-11-20 16:39:59 +0100 | [diff] [blame] | 7305 | OVERLAY FILESYSTEM |
Neil Brown | 7c37fbd | 2014-10-24 00:14:39 +0200 | [diff] [blame] | 7306 | M: Miklos Szeredi <miklos@szeredi.hu> |
Miklos Szeredi | 1d11373 | 2014-11-20 16:40:01 +0100 | [diff] [blame] | 7307 | L: linux-unionfs@vger.kernel.org |
| 7308 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git |
Neil Brown | 7c37fbd | 2014-10-24 00:14:39 +0200 | [diff] [blame] | 7309 | S: Supported |
Miklos Szeredi | 1d11373 | 2014-11-20 16:40:01 +0100 | [diff] [blame] | 7310 | F: fs/overlayfs/ |
Neil Brown | 7c37fbd | 2014-10-24 00:14:39 +0200 | [diff] [blame] | 7311 | F: Documentation/filesystems/overlayfs.txt |
| 7312 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7313 | P54 WIRELESS DRIVER |
Christian Lamparter | 084cb0f | 2010-07-12 19:01:41 +0200 | [diff] [blame] | 7314 | M: Christian Lamparter <chunkeey@googlemail.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7315 | L: linux-wireless@vger.kernel.org |
Christian Lamparter | 084cb0f | 2010-07-12 19:01:41 +0200 | [diff] [blame] | 7316 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7317 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7318 | F: drivers/net/wireless/p54/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7319 | |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 7320 | PA SEMI ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7321 | M: Olof Johansson <olof@lixom.net> |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 7322 | L: netdev@vger.kernel.org |
| 7323 | S: Maintained |
Jeff Kirsher | ded19ad | 2011-05-15 20:56:37 -0700 | [diff] [blame] | 7324 | F: drivers/net/ethernet/pasemi/* |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 7325 | |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 7326 | PA SEMI SMBUS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7327 | M: Olof Johansson <olof@lixom.net> |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 7328 | L: linux-i2c@vger.kernel.org |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 7329 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7330 | F: drivers/i2c/busses/i2c-pasemi.c |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 7331 | |
Steffen Klassert | 48fc267 | 2010-08-13 10:10:46 -0400 | [diff] [blame] | 7332 | PADATA PARALLEL EXECUTION MECHANISM |
| 7333 | M: Steffen Klassert <steffen.klassert@secunet.com> |
Steffen Klassert | 48fc267 | 2010-08-13 10:10:46 -0400 | [diff] [blame] | 7334 | L: linux-crypto@vger.kernel.org |
| 7335 | S: Maintained |
| 7336 | F: kernel/padata.c |
| 7337 | F: include/linux/padata.h |
| 7338 | F: Documentation/padata.txt |
| 7339 | |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 7340 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7341 | M: Harald Welte <laforge@gnumonks.org> |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 7342 | L: platform-driver-x86@vger.kernel.org |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 7343 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7344 | F: drivers/platform/x86/panasonic-laptop.c |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 7345 | |
Akira Takeuchi | 368dd5a | 2010-10-27 17:28:55 +0100 | [diff] [blame] | 7346 | PANASONIC MN10300/AM33/AM34 PORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7347 | M: David Howells <dhowells@redhat.com> |
| 7348 | M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 7349 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
| 7350 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ |
| 7351 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7352 | F: Documentation/mn10300/ |
| 7353 | F: arch/mn10300/ |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 7354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7355 | PARALLEL PORT SUPPORT |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 7356 | L: linux-parport@lists.infradead.org (subscribers-only) |
David Brownell | 5fdc2ab | 2007-03-05 00:30:13 -0800 | [diff] [blame] | 7357 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7358 | F: drivers/parport/ |
| 7359 | F: include/linux/parport*.h |
| 7360 | F: drivers/char/ppdev.c |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7361 | F: include/uapi/linux/ppdev.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7362 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7363 | PARAVIRT_OPS INTERFACE |
Jeremy Fitzhardinge | d633180 | 2011-11-18 15:56:06 -0800 | [diff] [blame] | 7364 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7365 | M: Chris Wright <chrisw@sous-sol.org> |
| 7366 | M: Alok Kataria <akataria@vmware.com> |
| 7367 | M: Rusty Russell <rusty@rustcorp.com.au> |
Michael Witten | c996d8b | 2010-11-15 19:55:34 +0000 | [diff] [blame] | 7368 | L: virtualization@lists.linux-foundation.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7369 | S: Supported |
Luis R. Rodriguez | a2e1999 | 2015-02-13 17:13:40 +1030 | [diff] [blame] | 7370 | F: Documentation/virtual/paravirt_ops.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7371 | F: arch/*/kernel/paravirt* |
| 7372 | F: arch/*/include/asm/paravirt.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7374 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7375 | M: Tim Waugh <tim@cyberelk.net> |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 7376 | L: linux-parport@lists.infradead.org (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7377 | W: http://www.torque.net/linux-pp.html |
| 7378 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7379 | F: Documentation/blockdev/paride.txt |
| 7380 | F: drivers/block/paride/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7381 | |
| 7382 | PARISC ARCHITECTURE |
James Bottomley | b882877 | 2009-08-04 23:59:55 +0000 | [diff] [blame] | 7383 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
Kyle McMartin | b38a03b | 2012-02-24 10:36:16 -0500 | [diff] [blame] | 7384 | M: Helge Deller <deller@gmx.de> |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 7385 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7386 | W: http://www.parisc-linux.org/ |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 7387 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 7388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
Helge Deller | fbb46caa | 2013-05-16 21:00:16 +0000 | [diff] [blame] | 7389 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7390 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7391 | F: arch/parisc/ |
Helge Deller | 2b6bac9 | 2013-05-30 13:48:07 +0000 | [diff] [blame] | 7392 | F: Documentation/parisc/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7393 | F: drivers/parisc/ |
Helge Deller | 2b6bac9 | 2013-05-30 13:48:07 +0000 | [diff] [blame] | 7394 | F: drivers/char/agp/parisc-agp.c |
| 7395 | F: drivers/input/serio/gscps2.c |
| 7396 | F: drivers/parport/parport_gsc.* |
| 7397 | F: drivers/tty/serial/8250/8250_gsc.c |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 7398 | F: drivers/video/fbdev/sti* |
Helge Deller | 2b6bac9 | 2013-05-30 13:48:07 +0000 | [diff] [blame] | 7399 | F: drivers/video/console/sti* |
| 7400 | F: drivers/video/logo/logo_parisc* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7401 | |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 7402 | PC87360 HARDWARE MONITORING DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7403 | M: Jim Cromie <jim.cromie@gmail.com> |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 7404 | L: lm-sensors@lm-sensors.org |
| 7405 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7406 | F: Documentation/hwmon/pc87360 |
| 7407 | F: drivers/hwmon/pc87360.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 7408 | |
| 7409 | PC8736x GPIO DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7410 | M: Jim Cromie <jim.cromie@gmail.com> |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 7411 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7412 | F: drivers/char/pc8736x_gpio.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 7413 | |
Jean Delvare | 1ad107f | 2010-08-14 21:09:00 +0200 | [diff] [blame] | 7414 | PC87427 HARDWARE MONITORING DRIVER |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 7415 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | 1ad107f | 2010-08-14 21:09:00 +0200 | [diff] [blame] | 7416 | L: lm-sensors@lm-sensors.org |
| 7417 | S: Maintained |
| 7418 | F: Documentation/hwmon/pc87427 |
| 7419 | F: drivers/hwmon/pc87427.c |
| 7420 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 7421 | PCA9532 LED DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7422 | M: Riku Voipio <riku.voipio@iki.fi> |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 7423 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 7424 | F: drivers/leds/leds-pca9532.c |
| 7425 | F: include/linux/leds-pca9532.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 7426 | |
Guenter Roeck | 5ce914a | 2010-10-24 18:16:59 +0200 | [diff] [blame] | 7427 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
Guenter Roeck | ca46208 | 2012-06-01 23:28:23 -0700 | [diff] [blame] | 7428 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 5ce914a | 2010-10-24 18:16:59 +0200 | [diff] [blame] | 7429 | L: linux-i2c@vger.kernel.org |
| 7430 | S: Maintained |
Wolfram Sang | b4f0b74 | 2012-04-25 22:29:43 +0200 | [diff] [blame] | 7431 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
Guenter Roeck | 5ce914a | 2010-10-24 18:16:59 +0200 | [diff] [blame] | 7432 | |
Khalid Aziz | 3971dae | 2012-04-12 12:49:13 -0700 | [diff] [blame] | 7433 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
Khalid Aziz | 055e72f | 2012-10-04 17:12:40 -0700 | [diff] [blame] | 7434 | M: Khalid Aziz <khalid@gonehiking.org> |
Khalid Aziz | 3971dae | 2012-04-12 12:49:13 -0700 | [diff] [blame] | 7435 | S: Maintained |
| 7436 | F: drivers/firmware/pcdp.* |
| 7437 | |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 7438 | PCI ERROR RECOVERY |
Joe Perches | 6305902 | 2012-06-07 14:21:10 -0700 | [diff] [blame] | 7439 | M: Linas Vepstas <linasvepstas@gmail.com> |
Jesse Barnes | c1f69db | 2008-05-19 15:28:16 -0700 | [diff] [blame] | 7440 | L: linux-pci@vger.kernel.org |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 7441 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7442 | F: Documentation/PCI/pci-error-recovery.txt |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 7443 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7444 | PCI SUBSYSTEM |
Jesse Barnes | 5ac3a6d | 2012-03-20 11:55:20 -0700 | [diff] [blame] | 7445 | M: Bjorn Helgaas <bhelgaas@google.com> |
Jesse Barnes | 2905474 | 2008-05-03 08:35:49 -0700 | [diff] [blame] | 7446 | L: linux-pci@vger.kernel.org |
Bjorn Helgaas | 99662dd | 2012-05-07 08:36:08 -0600 | [diff] [blame] | 7447 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
Bjorn Helgaas | c0233ed | 2012-05-24 14:18:14 -0600 | [diff] [blame] | 7448 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7449 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7450 | F: Documentation/PCI/ |
| 7451 | F: drivers/pci/ |
| 7452 | F: include/linux/pci* |
Bjorn Helgaas | 6b49ee4 | 2013-10-09 14:39:08 -0600 | [diff] [blame] | 7453 | F: arch/x86/pci/ |
Bjorn Helgaas | cad01f9 | 2014-04-05 15:07:00 -0600 | [diff] [blame] | 7454 | F: arch/x86/kernel/quirks.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7455 | |
Rob Herring | b7e7817 | 2015-01-28 10:16:18 -0600 | [diff] [blame] | 7456 | PCI DRIVER FOR ARM VERSATILE PLATFORM |
| 7457 | M: Rob Herring <robh@kernel.org> |
| 7458 | L: linux-pci@vger.kernel.org |
| 7459 | L: linux-arm-kernel@lists.infradead.org |
| 7460 | S: Maintained |
| 7461 | F: Documentation/devicetree/bindings/pci/versatile.txt |
| 7462 | F: drivers/pci/host/pci-versatile.c |
| 7463 | |
Tanmay Inamdar | 5f6b6cc | 2014-10-01 13:01:35 -0600 | [diff] [blame] | 7464 | PCI DRIVER FOR APPLIEDMICRO XGENE |
| 7465 | M: Tanmay Inamdar <tinamdar@apm.com> |
| 7466 | L: linux-pci@vger.kernel.org |
| 7467 | L: linux-arm-kernel@lists.infradead.org |
| 7468 | S: Maintained |
| 7469 | F: Documentation/devicetree/bindings/pci/xgene-pci.txt |
| 7470 | F: drivers/pci/host/pci-xgene.c |
| 7471 | |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 7472 | PCI DRIVER FOR FREESCALE LAYERSCAPE |
| 7473 | M: Minghuan Lian <minghuan.Lian@freescale.com> |
| 7474 | M: Mingkai Hu <mingkai.hu@freescale.com> |
| 7475 | M: Roy Zang <tie-fei.zang@freescale.com> |
| 7476 | L: linuxppc-dev@lists.ozlabs.org |
| 7477 | L: linux-pci@vger.kernel.org |
| 7478 | L: linux-arm-kernel@lists.infradead.org |
| 7479 | S: Maintained |
| 7480 | F: drivers/pci/host/*layerscape* |
| 7481 | |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 7482 | PCI DRIVER FOR IMX6 |
Lucas Stach | f175aa2 | 2015-01-19 11:17:31 +0100 | [diff] [blame] | 7483 | M: Richard Zhu <Richard.Zhu@freescale.com> |
Lucas Stach | 1ba55f5 | 2014-07-31 20:16:04 +0200 | [diff] [blame] | 7484 | M: Lucas Stach <l.stach@pengutronix.de> |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 7485 | L: linux-pci@vger.kernel.org |
| 7486 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 7487 | S: Maintained |
| 7488 | F: drivers/pci/host/*imx6* |
| 7489 | |
Murali Karicheri | 0c4ffcf | 2014-09-02 17:26:19 -0600 | [diff] [blame] | 7490 | PCI DRIVER FOR TI KEYSTONE |
| 7491 | M: Murali Karicheri <m-karicheri2@ti.com> |
| 7492 | L: linux-pci@vger.kernel.org |
| 7493 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 7494 | S: Maintained |
| 7495 | F: drivers/pci/host/*keystone* |
| 7496 | |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 7497 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
| 7498 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 7499 | M: Jason Cooper <jason@lakedaemon.net> |
| 7500 | L: linux-pci@vger.kernel.org |
| 7501 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 7502 | S: Maintained |
| 7503 | F: drivers/pci/host/*mvebu* |
| 7504 | |
Thierry Reding | 0447cfd | 2013-08-09 16:49:32 +0200 | [diff] [blame] | 7505 | PCI DRIVER FOR NVIDIA TEGRA |
| 7506 | M: Thierry Reding <thierry.reding@gmail.com> |
| 7507 | L: linux-tegra@vger.kernel.org |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 7508 | L: linux-pci@vger.kernel.org |
Thierry Reding | 0447cfd | 2013-08-09 16:49:32 +0200 | [diff] [blame] | 7509 | S: Supported |
| 7510 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt |
| 7511 | F: drivers/pci/host/pci-tegra.c |
| 7512 | |
Kishon Vijay Abraham I | 47ff3de | 2014-07-22 15:23:45 -0600 | [diff] [blame] | 7513 | PCI DRIVER FOR TI DRA7XX |
| 7514 | M: Kishon Vijay Abraham I <kishon@ti.com> |
| 7515 | L: linux-omap@vger.kernel.org |
| 7516 | L: linux-pci@vger.kernel.org |
| 7517 | S: Supported |
| 7518 | F: Documentation/devicetree/bindings/pci/ti-pci.txt |
| 7519 | F: drivers/pci/host/pci-dra7xx.c |
| 7520 | |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 7521 | PCI DRIVER FOR RENESAS R-CAR |
| 7522 | M: Simon Horman <horms@verge.net.au> |
| 7523 | L: linux-pci@vger.kernel.org |
| 7524 | L: linux-sh@vger.kernel.org |
| 7525 | S: Maintained |
| 7526 | F: drivers/pci/host/*rcar* |
| 7527 | |
Jingoo Han | 4af8225 | 2013-09-12 20:29:24 +0900 | [diff] [blame] | 7528 | PCI DRIVER FOR SAMSUNG EXYNOS |
| 7529 | M: Jingoo Han <jg1.han@samsung.com> |
| 7530 | L: linux-pci@vger.kernel.org |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 7531 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 7532 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
Jingoo Han | 4af8225 | 2013-09-12 20:29:24 +0900 | [diff] [blame] | 7533 | S: Maintained |
| 7534 | F: drivers/pci/host/pci-exynos.c |
| 7535 | |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 7536 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 7537 | M: Jingoo Han <jg1.han@samsung.com> |
| 7538 | L: linux-pci@vger.kernel.org |
| 7539 | S: Maintained |
| 7540 | F: drivers/pci/host/*designware* |
| 7541 | |
Will Deacon | cf28855 | 2014-05-01 12:04:28 +0100 | [diff] [blame] | 7542 | PCI DRIVER FOR GENERIC OF HOSTS |
| 7543 | M: Will Deacon <will.deacon@arm.com> |
| 7544 | L: linux-pci@vger.kernel.org |
| 7545 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 7546 | S: Maintained |
| 7547 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt |
| 7548 | F: drivers/pci/host/pci-host-generic.c |
| 7549 | |
Pratyush Anand | 51b66a6 | 2014-02-11 11:39:26 +0530 | [diff] [blame] | 7550 | PCIE DRIVER FOR ST SPEAR13XX |
Pratyush Anand | 51b66a6 | 2014-02-11 11:39:26 +0530 | [diff] [blame] | 7551 | L: linux-pci@vger.kernel.org |
Bjorn Helgaas | af539e9 | 2015-04-21 14:57:45 -0500 | [diff] [blame] | 7552 | S: Orphan |
Pratyush Anand | 51b66a6 | 2014-02-11 11:39:26 +0530 | [diff] [blame] | 7553 | F: drivers/pci/host/*spear* |
| 7554 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7555 | PCMCIA SUBSYSTEM |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 7556 | P: Linux PCMCIA Team |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 7557 | L: linux-pcmcia@lists.infradead.org |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 7558 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 7559 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 7560 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7561 | F: Documentation/pcmcia/ |
| 7562 | F: drivers/pcmcia/ |
| 7563 | F: include/pcmcia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7564 | |
| 7565 | PCNET32 NETWORK DRIVER |
Don Fry | 227fb92 | 2010-12-21 19:58:15 -0800 | [diff] [blame] | 7566 | M: Don Fry <pcnet32@frontier.com> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 7567 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7568 | S: Maintained |
Jeff Kirsher | b955f6c | 2011-03-30 07:46:36 -0700 | [diff] [blame] | 7569 | F: drivers/net/ethernet/amd/pcnet32.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7570 | |
Steffen Klassert | 48fc267 | 2010-08-13 10:10:46 -0400 | [diff] [blame] | 7571 | PCRYPT PARALLEL CRYPTO ENGINE |
| 7572 | M: Steffen Klassert <steffen.klassert@secunet.com> |
| 7573 | L: linux-crypto@vger.kernel.org |
| 7574 | S: Maintained |
| 7575 | F: crypto/pcrypt.c |
| 7576 | F: include/crypto/pcrypt.h |
| 7577 | |
Tejun Heo | e72df0b | 2010-12-10 17:02:49 +0100 | [diff] [blame] | 7578 | PER-CPU MEMORY ALLOCATOR |
| 7579 | M: Tejun Heo <tj@kernel.org> |
| 7580 | M: Christoph Lameter <cl@linux-foundation.org> |
Tejun Heo | e72df0b | 2010-12-10 17:02:49 +0100 | [diff] [blame] | 7581 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
| 7582 | S: Maintained |
| 7583 | F: include/linux/percpu*.h |
| 7584 | F: mm/percpu*.c |
| 7585 | F: arch/*/include/asm/percpu.h |
| 7586 | |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 7587 | PER-TASK DELAY ACCOUNTING |
Balbir Singh | 185e595 | 2011-06-15 15:08:30 -0700 | [diff] [blame] | 7588 | M: Balbir Singh <bsingharora@gmail.com> |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 7589 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7590 | F: include/linux/delayacct.h |
| 7591 | F: kernel/delayacct.c |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 7592 | |
Ingo Molnar | 57c0c15 | 2009-09-21 12:20:38 +0200 | [diff] [blame] | 7593 | PERFORMANCE EVENTS SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7594 | M: Peter Zijlstra <a.p.zijlstra@chello.nl> |
| 7595 | M: Paul Mackerras <paulus@samba.org> |
Ingo Molnar | dd9b238 | 2012-03-19 21:03:46 +0100 | [diff] [blame] | 7596 | M: Ingo Molnar <mingo@redhat.com> |
Arnaldo Carvalho de Melo | f80c539 | 2014-03-27 17:36:14 -0300 | [diff] [blame] | 7597 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 7598 | L: linux-kernel@vger.kernel.org |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 7599 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
Paul Mackerras | 6c0b324 | 2009-04-09 09:27:37 +1000 | [diff] [blame] | 7600 | S: Supported |
Geunsik Lim | d53e836 | 2011-08-18 16:44:57 +0900 | [diff] [blame] | 7601 | F: kernel/events/* |
Vincent Legoll | a003236 | 2009-10-13 14:48:14 +0200 | [diff] [blame] | 7602 | F: include/linux/perf_event.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7603 | F: include/uapi/linux/perf_event.h |
Robert Richter | 141c429 | 2010-03-17 12:49:11 +0100 | [diff] [blame] | 7604 | F: arch/*/kernel/perf_event*.c |
| 7605 | F: arch/*/kernel/*/perf_event*.c |
| 7606 | F: arch/*/kernel/*/*/perf_event*.c |
Vincent Legoll | a003236 | 2009-10-13 14:48:14 +0200 | [diff] [blame] | 7607 | F: arch/*/include/asm/perf_event.h |
Vincent Legoll | a003236 | 2009-10-13 14:48:14 +0200 | [diff] [blame] | 7608 | F: arch/*/kernel/perf_callchain.c |
| 7609 | F: tools/perf/ |
Paul Mackerras | 6c0b324 | 2009-04-09 09:27:37 +1000 | [diff] [blame] | 7610 | |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 7611 | PERSONALITY HANDLING |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7612 | M: Christoph Hellwig <hch@infradead.org> |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 7613 | L: linux-abi-devel@lists.sourceforge.net |
| 7614 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7615 | F: include/linux/personality.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7616 | F: include/uapi/linux/personality.h |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 7617 | |
Rémi Denis-Courmont | 838e7a0 | 2010-10-08 04:02:00 +0000 | [diff] [blame] | 7618 | PHONET PROTOCOL |
Rémi Denis-Courmont | 2a06b40 | 2012-04-12 03:39:18 +0000 | [diff] [blame] | 7619 | M: Remi Denis-Courmont <courmisch@gmail.com> |
Rémi Denis-Courmont | 838e7a0 | 2010-10-08 04:02:00 +0000 | [diff] [blame] | 7620 | S: Supported |
| 7621 | F: Documentation/networking/phonet.txt |
| 7622 | F: include/linux/phonet.h |
| 7623 | F: include/net/phonet/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7624 | F: include/uapi/linux/phonet.h |
Rémi Denis-Courmont | 838e7a0 | 2010-10-08 04:02:00 +0000 | [diff] [blame] | 7625 | F: net/phonet/ |
| 7626 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7627 | PHRAM MTD DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7628 | M: Joern Engel <joern@lazybastard.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7629 | L: linux-mtd@lists.infradead.org |
| 7630 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7631 | F: drivers/mtd/devices/phram.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7632 | |
Bruno Prémont | efdbb10 | 2012-07-30 21:39:03 +0200 | [diff] [blame] | 7633 | PICOLCD HID DRIVER |
| 7634 | M: Bruno Prémont <bonbons@linux-vserver.org> |
| 7635 | L: linux-input@vger.kernel.org |
| 7636 | S: Maintained |
| 7637 | F: drivers/hid/hid-picolcd* |
| 7638 | |
Jamie Iles | a53bfa0 | 2011-12-12 20:28:42 +0000 | [diff] [blame] | 7639 | PICOXCELL SUPPORT |
| 7640 | M: Jamie Iles <jamie@jamieiles.com> |
| 7641 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 7642 | T: git git://github.com/jamieiles/linux-2.6-ji.git |
| 7643 | S: Supported |
Joe Perches | b873398 | 2014-08-08 14:25:12 -0700 | [diff] [blame] | 7644 | F: arch/arm/boot/dts/picoxcell* |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 7645 | F: arch/arm/mach-picoxcell/ |
Joe Perches | b873398 | 2014-08-08 14:25:12 -0700 | [diff] [blame] | 7646 | F: drivers/crypto/picoxcell* |
Jamie Iles | a53bfa0 | 2011-12-12 20:28:42 +0000 | [diff] [blame] | 7647 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 7648 | PIN CONTROL SUBSYSTEM |
| 7649 | M: Linus Walleij <linus.walleij@linaro.org> |
David Cohen | c11f042 | 2014-10-16 19:06:59 -0700 | [diff] [blame] | 7650 | L: linux-gpio@vger.kernel.org |
Linus Walleij | dbe752a | 2015-01-19 11:27:19 +0100 | [diff] [blame] | 7651 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 7652 | S: Maintained |
Stephen Warren | 07f29ba | 2011-12-08 15:16:19 -0700 | [diff] [blame] | 7653 | F: drivers/pinctrl/ |
Uwe Kleine-König | 8e406fe | 2012-07-30 18:38:34 +0200 | [diff] [blame] | 7654 | F: include/linux/pinctrl/ |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 7655 | |
Jean-Christophe PLAGNIOL-VILLARD | 2201bbb | 2012-10-27 19:53:12 +0200 | [diff] [blame] | 7656 | PIN CONTROLLER - ATMEL AT91 |
| 7657 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
| 7658 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 7659 | S: Maintained |
Alexandre Belloni | c654b6b | 2014-10-17 11:49:40 +0200 | [diff] [blame] | 7660 | F: drivers/pinctrl/pinctrl-at91.* |
Jean-Christophe PLAGNIOL-VILLARD | 2201bbb | 2012-10-27 19:53:12 +0200 | [diff] [blame] | 7661 | |
Mika Westerberg | cbd1b65 | 2014-10-24 15:16:53 +0300 | [diff] [blame] | 7662 | PIN CONTROLLER - INTEL |
| 7663 | M: Mika Westerberg <mika.westerberg@linux.intel.com> |
| 7664 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> |
| 7665 | S: Maintained |
| 7666 | F: drivers/pinctrl/intel/ |
Viresh Kumar | deda828 | 2012-03-28 22:27:07 +0530 | [diff] [blame] | 7667 | |
Laurent Pinchart | 9963b53 | 2014-07-02 16:33:31 +0200 | [diff] [blame] | 7668 | PIN CONTROLLER - RENESAS |
| 7669 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 7670 | L: linux-sh@vger.kernel.org |
| 7671 | S: Maintained |
| 7672 | F: drivers/pinctrl/sh-pfc/ |
| 7673 | |
Doug Anderson | b75e60d | 2013-06-16 15:17:46 -0700 | [diff] [blame] | 7674 | PIN CONTROLLER - SAMSUNG |
Tomasz Figa | fea685e | 2014-08-26 16:30:53 +0200 | [diff] [blame] | 7675 | M: Tomasz Figa <tomasz.figa@gmail.com> |
Doug Anderson | b75e60d | 2013-06-16 15:17:46 -0700 | [diff] [blame] | 7676 | M: Thomas Abraham <thomas.abraham@linaro.org> |
| 7677 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 7678 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
| 7679 | S: Maintained |
Sachin Kamat | 9b5b33f | 2014-07-11 14:29:50 +0530 | [diff] [blame] | 7680 | F: drivers/pinctrl/samsung/ |
Doug Anderson | b75e60d | 2013-06-16 15:17:46 -0700 | [diff] [blame] | 7681 | |
Viresh Kumar | deda828 | 2012-03-28 22:27:07 +0530 | [diff] [blame] | 7682 | PIN CONTROLLER - ST SPEAR |
| 7683 | M: Viresh Kumar <viresh.linux@gmail.com> |
| 7684 | L: spear-devel@list.st.com |
| 7685 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 7686 | W: http://www.st.com/spear |
| 7687 | S: Maintained |
Uwe Kleine-König | 8e406fe | 2012-07-30 18:38:34 +0200 | [diff] [blame] | 7688 | F: drivers/pinctrl/spear/ |
Viresh Kumar | deda828 | 2012-03-28 22:27:07 +0530 | [diff] [blame] | 7689 | |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 7690 | PKTCDVD DRIVER |
Jiri Kosina | dbd4713 | 2012-09-04 11:07:38 +0200 | [diff] [blame] | 7691 | M: Jiri Kosina <jkosina@suse.cz> |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 7692 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7693 | F: drivers/block/pktcdvd.c |
| 7694 | F: include/linux/pktcdvd.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7695 | F: include/uapi/linux/pktcdvd.h |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 7696 | |
GuanXuetao | b31d827 | 2011-01-16 00:35:49 +0800 | [diff] [blame] | 7697 | PKUNITY SOC DRIVERS |
| 7698 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> |
| 7699 | W: http://mprc.pku.edu.cn/~guanxuetao/linux |
| 7700 | S: Maintained |
Guan Xuetao | ceebf4d | 2014-05-27 07:53:10 +0800 | [diff] [blame] | 7701 | T: git git://github.com/gxt/linux.git |
GuanXuetao | b31d827 | 2011-01-16 00:35:49 +0800 | [diff] [blame] | 7702 | F: drivers/input/serio/i8042-unicore32io.h |
GuanXuetao | d10e4a6 | 2011-02-26 21:29:29 +0800 | [diff] [blame] | 7703 | F: drivers/i2c/busses/i2c-puv3.c |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 7704 | F: drivers/video/fbdev/fb-puv3.c |
Guan Xuetao | 2809e80 | 2011-05-26 16:43:27 +0800 | [diff] [blame] | 7705 | F: drivers/rtc/rtc-puv3.c |
GuanXuetao | b31d827 | 2011-01-16 00:35:49 +0800 | [diff] [blame] | 7706 | |
Guenter Roeck | 9d2ecfb | 2011-07-12 07:15:19 -0700 | [diff] [blame] | 7707 | PMBUS HARDWARE MONITORING DRIVERS |
Guenter Roeck | ca46208 | 2012-06-01 23:28:23 -0700 | [diff] [blame] | 7708 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 9d2ecfb | 2011-07-12 07:15:19 -0700 | [diff] [blame] | 7709 | L: lm-sensors@lm-sensors.org |
| 7710 | W: http://www.lm-sensors.org/ |
| 7711 | W: http://www.roeck-us.net/linux/drivers/ |
| 7712 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
| 7713 | S: Maintained |
| 7714 | F: Documentation/hwmon/pmbus |
| 7715 | F: drivers/hwmon/pmbus/ |
| 7716 | F: include/linux/i2c/pmbus.h |
| 7717 | |
Anil Ravindranath | 89a3681 | 2009-08-25 17:35:18 -0700 | [diff] [blame] | 7718 | PMC SIERRA MaxRAID DRIVER |
Joe Perches | 076cfaa | 2009-09-21 17:04:26 -0700 | [diff] [blame] | 7719 | M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com> |
Anil Ravindranath | 89a3681 | 2009-08-25 17:35:18 -0700 | [diff] [blame] | 7720 | L: linux-scsi@vger.kernel.org |
| 7721 | W: http://www.pmc-sierra.com/ |
| 7722 | S: Supported |
| 7723 | F: drivers/scsi/pmcraid.* |
| 7724 | |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 7725 | PMC SIERRA PM8001 DRIVER |
Jack Wang | 4f0e359 | 2013-03-06 10:38:34 +0800 | [diff] [blame] | 7726 | M: xjtuwjp@gmail.com |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 7727 | M: lindar_liu@usish.com |
Suresh Thiagarajan | f5a7b52 | 2014-07-30 17:37:43 +0530 | [diff] [blame] | 7728 | L: pmchba@pmcs.com |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 7729 | L: linux-scsi@vger.kernel.org |
| 7730 | S: Supported |
| 7731 | F: drivers/scsi/pm8001/ |
| 7732 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7733 | POSIX CLOCKS and TIMERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7734 | M: Thomas Gleixner <tglx@linutronix.de> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 7735 | L: linux-kernel@vger.kernel.org |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 7736 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
Thomas Gleixner | 5cee964 | 2014-06-22 12:06:40 +0200 | [diff] [blame] | 7737 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7738 | F: fs/timerfd.c |
| 7739 | F: include/linux/timer* |
Thomas Gleixner | 5cee964 | 2014-06-22 12:06:40 +0200 | [diff] [blame] | 7740 | F: kernel/time/*timer* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7741 | |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 7742 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
Sebastian Reichel | ad8464a | 2014-07-16 20:14:30 +0200 | [diff] [blame] | 7743 | M: Sebastian Reichel <sre@kernel.org> |
Dmitry Eremin-Solenikov | 5731893 | 2014-01-21 03:33:09 +0400 | [diff] [blame] | 7744 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7745 | M: David Woodhouse <dwmw2@infradead.org> |
Sebastian Reichel | ad8464a | 2014-07-16 20:14:30 +0200 | [diff] [blame] | 7746 | L: linux-pm@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 7747 | T: git git://git.infradead.org/battery-2.6.git |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 7748 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7749 | F: include/linux/power_supply.h |
Anton Vorontsov | 8cd725a | 2012-05-05 03:37:15 -0700 | [diff] [blame] | 7750 | F: drivers/power/ |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 7751 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7752 | PNP SUPPORT |
Rafael J. Wysocki | 46a1f21 | 2013-03-29 22:59:53 +0100 | [diff] [blame] | 7753 | M: Rafael J. Wysocki <rafael.j.wysocki@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7754 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7755 | F: drivers/pnp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7756 | |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 7757 | PNXxxxx I2C DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7758 | M: Vitaly Wool <vitalywool@gmail.com> |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 7759 | L: linux-i2c@vger.kernel.org |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 7760 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7761 | F: drivers/i2c/busses/i2c-pnx.c |
Vitaly Wool | 999445d | 2007-01-04 13:07:03 +0100 | [diff] [blame] | 7762 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7763 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7764 | M: Paul Mackerras <paulus@samba.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7765 | L: linux-ppp@vger.kernel.org |
| 7766 | S: Maintained |
Jeff Kirsher | 224cf5a | 2011-07-31 02:38:19 -0700 | [diff] [blame] | 7767 | F: drivers/net/ppp/ppp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7768 | |
| 7769 | PPP OVER ATM (RFC 2364) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7770 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7771 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7772 | F: net/atm/pppoatm.c |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7773 | F: include/uapi/linux/atmppp.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7774 | |
| 7775 | PPP OVER ETHERNET |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7776 | M: Michal Ostrowski <mostrows@earthlink.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7777 | S: Maintained |
Jeff Kirsher | 224cf5a | 2011-07-31 02:38:19 -0700 | [diff] [blame] | 7778 | F: drivers/net/ppp/pppoe.c |
| 7779 | F: drivers/net/ppp/pppox.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7780 | |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 7781 | PPP OVER L2TP |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7782 | M: James Chapman <jchapman@katalix.com> |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 7783 | S: Maintained |
Joe Perches | 90ca28d | 2010-08-09 17:20:40 -0700 | [diff] [blame] | 7784 | F: net/l2tp/l2tp_ppp.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7785 | F: include/linux/if_pppol2tp.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7786 | F: include/uapi/linux/if_pppol2tp.h |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 7787 | |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 7788 | PPS SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7789 | M: Rodolfo Giometti <giometti@enneenne.com> |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 7790 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
| 7791 | L: linuxpps@ml.enneenne.com (subscribers-only) |
| 7792 | S: Maintained |
Joe Perches | cabaaf4 | 2009-07-29 15:04:24 -0700 | [diff] [blame] | 7793 | F: Documentation/pps/ |
| 7794 | F: drivers/pps/ |
| 7795 | F: include/linux/pps*.h |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 7796 | |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 7797 | PPTP DRIVER |
| 7798 | M: Dmitry Kozlov <xeb@mail.ru> |
| 7799 | L: netdev@vger.kernel.org |
| 7800 | S: Maintained |
Jeff Kirsher | 224cf5a | 2011-07-31 02:38:19 -0700 | [diff] [blame] | 7801 | F: drivers/net/ppp/pptp.c |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 7802 | W: http://sourceforge.net/projects/accel-pptp |
| 7803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7804 | PREEMPTIBLE KERNEL |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7805 | M: Robert Love <rml@tech9.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7806 | L: kpreempt-tech@lists.sourceforge.net |
| 7807 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel |
| 7808 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7809 | F: Documentation/preempt-locking.txt |
| 7810 | F: include/linux/preempt.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7811 | |
| 7812 | PRISM54 WIRELESS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7813 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 7814 | L: linux-wireless@vger.kernel.org |
John W. Linville | 9ef8080 | 2010-08-27 09:44:12 -0400 | [diff] [blame] | 7815 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
John W. Linville | 1d89cae | 2010-07-22 14:25:40 -0400 | [diff] [blame] | 7816 | S: Obsolete |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7817 | F: drivers/net/wireless/prism54/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7818 | |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 7819 | PS3 NETWORK SUPPORT |
Geoff Levand | b809b9c | 2010-04-15 09:11:34 +0000 | [diff] [blame] | 7820 | M: Geoff Levand <geoff@infradead.org> |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 7821 | L: netdev@vger.kernel.org |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 7822 | L: cbe-oss-dev@lists.ozlabs.org |
Geoff Levand | b809b9c | 2010-04-15 09:11:34 +0000 | [diff] [blame] | 7823 | S: Maintained |
Jeff Kirsher | 8df158a | 2011-07-30 00:36:02 -0700 | [diff] [blame] | 7824 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 7825 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 7826 | PS3 PLATFORM SUPPORT |
Geoff Levand | b809b9c | 2010-04-15 09:11:34 +0000 | [diff] [blame] | 7827 | M: Geoff Levand <geoff@infradead.org> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 7828 | L: linuxppc-dev@lists.ozlabs.org |
| 7829 | L: cbe-oss-dev@lists.ozlabs.org |
Geoff Levand | b809b9c | 2010-04-15 09:11:34 +0000 | [diff] [blame] | 7830 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7831 | F: arch/powerpc/boot/ps3* |
| 7832 | F: arch/powerpc/include/asm/lv1call.h |
| 7833 | F: arch/powerpc/include/asm/ps3*.h |
| 7834 | F: arch/powerpc/platforms/ps3/ |
| 7835 | F: drivers/*/ps3* |
| 7836 | F: drivers/ps3/ |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 7837 | F: drivers/rtc/rtc-ps3.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7838 | F: drivers/usb/host/*ps3.c |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 7839 | F: sound/ppc/snd_ps3* |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 7840 | |
Jim Paris | cffb4add | 2009-01-06 11:32:10 +0000 | [diff] [blame] | 7841 | PS3VRAM DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7842 | M: Jim Paris <jim@jtan.com> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 7843 | L: cbe-oss-dev@lists.ozlabs.org |
Jim Paris | cffb4add | 2009-01-06 11:32:10 +0000 | [diff] [blame] | 7844 | S: Maintained |
Joe Perches | 8a3977c | 2010-08-09 17:20:49 -0700 | [diff] [blame] | 7845 | F: drivers/block/ps3vram.c |
Jim Paris | cffb4add | 2009-01-06 11:32:10 +0000 | [diff] [blame] | 7846 | |
Anton Vorontsov | 8defe59 | 2012-08-03 18:07:20 -0700 | [diff] [blame] | 7847 | PSTORE FILESYSTEM |
Anton Vorontsov | 9d5e2a0 | 2013-06-09 09:41:23 -0700 | [diff] [blame] | 7848 | M: Anton Vorontsov <anton@enomsg.org> |
Anton Vorontsov | 8defe59 | 2012-08-03 18:07:20 -0700 | [diff] [blame] | 7849 | M: Colin Cross <ccross@android.com> |
| 7850 | M: Kees Cook <keescook@chromium.org> |
| 7851 | M: Tony Luck <tony.luck@intel.com> |
| 7852 | S: Maintained |
| 7853 | T: git git://git.infradead.org/users/cbou/linux-pstore.git |
| 7854 | F: fs/pstore/ |
| 7855 | F: include/linux/pstore* |
Matt Fleming | 0485177 | 2013-02-08 15:48:51 +0000 | [diff] [blame] | 7856 | F: drivers/firmware/efi/efi-pstore.c |
Anton Vorontsov | 8defe59 | 2012-08-03 18:07:20 -0700 | [diff] [blame] | 7857 | F: drivers/acpi/apei/erst.c |
| 7858 | |
Richard Cochran | 7fbc415 | 2012-03-10 01:55:53 +0000 | [diff] [blame] | 7859 | PTP HARDWARE CLOCK SUPPORT |
| 7860 | M: Richard Cochran <richardcochran@gmail.com> |
Jiri Benc | e7333e3 | 2013-03-26 04:01:12 +0000 | [diff] [blame] | 7861 | L: netdev@vger.kernel.org |
Richard Cochran | 7fbc415 | 2012-03-10 01:55:53 +0000 | [diff] [blame] | 7862 | S: Maintained |
| 7863 | W: http://linuxptp.sourceforge.net/ |
| 7864 | F: Documentation/ABI/testing/sysfs-ptp |
| 7865 | F: Documentation/ptp/* |
Joe Perches | 0ecb3cd | 2012-10-04 17:12:37 -0700 | [diff] [blame] | 7866 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
Richard Cochran | 7fbc415 | 2012-03-10 01:55:53 +0000 | [diff] [blame] | 7867 | F: drivers/net/phy/dp83640* |
| 7868 | F: drivers/ptp/* |
| 7869 | F: include/linux/ptp_cl* |
| 7870 | |
Christoph Hellwig | cf94a4d | 2009-04-30 15:08:12 -0700 | [diff] [blame] | 7871 | PTRACE SUPPORT |
Richard Weinberger | e846ee5 | 2014-08-08 14:23:46 -0700 | [diff] [blame] | 7872 | M: Roland McGrath <roland@hack.frob.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7873 | M: Oleg Nesterov <oleg@redhat.com> |
Christoph Hellwig | cf94a4d | 2009-04-30 15:08:12 -0700 | [diff] [blame] | 7874 | S: Maintained |
| 7875 | F: include/asm-generic/syscall.h |
| 7876 | F: include/linux/ptrace.h |
| 7877 | F: include/linux/regset.h |
| 7878 | F: include/linux/tracehook.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7879 | F: include/uapi/linux/ptrace.h |
Christoph Hellwig | cf94a4d | 2009-04-30 15:08:12 -0700 | [diff] [blame] | 7880 | F: kernel/ptrace.c |
| 7881 | |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 7882 | PVRUSB2 VIDEO4LINUX DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7883 | M: Mike Isely <isely@pobox.com> |
Mike Isely | 16e9495 | 2007-01-03 18:08:06 -0300 | [diff] [blame] | 7884 | L: pvrusb2@isely.net (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 7885 | L: linux-media@vger.kernel.org |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 7886 | W: http://www.isely.net/pvrusb2/ |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 7887 | T: git git://linuxtv.org/media_tree.git |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 7888 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7889 | F: Documentation/video4linux/README.pvrusb2 |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 7890 | F: drivers/media/usb/pvrusb2/ |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 7891 | |
Hans de Goede | 39532e6 | 2012-11-04 17:05:59 -0300 | [diff] [blame] | 7892 | PWC WEBCAM DRIVER |
| 7893 | M: Hans de Goede <hdegoede@redhat.com> |
| 7894 | L: linux-media@vger.kernel.org |
| 7895 | T: git git://linuxtv.org/media_tree.git |
| 7896 | S: Maintained |
| 7897 | F: drivers/media/usb/pwc/* |
| 7898 | |
Kamil Debski | 93c090b | 2014-08-20 11:29:23 +0200 | [diff] [blame] | 7899 | PWM FAN DRIVER |
| 7900 | M: Kamil Debski <k.debski@samsung.com> |
| 7901 | L: lm-sensors@lm-sensors.org |
| 7902 | S: Supported |
| 7903 | F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt |
| 7904 | F: Documentation/hwmon/pwm-fan |
| 7905 | F: drivers/hwmon/pwm-fan.c |
| 7906 | |
Thierry Reding | 200efed | 2012-03-27 13:16:18 +0200 | [diff] [blame] | 7907 | PWM SUBSYSTEM |
Thierry Reding | aa3495f | 2013-05-06 12:50:36 +0200 | [diff] [blame] | 7908 | M: Thierry Reding <thierry.reding@gmail.com> |
| 7909 | L: linux-pwm@vger.kernel.org |
Sascha Hauer | 0c2498f | 2011-01-28 09:40:40 +0100 | [diff] [blame] | 7910 | S: Maintained |
Thierry Reding | 006e854 | 2013-11-01 11:15:05 +0100 | [diff] [blame] | 7911 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
Thierry Reding | 200efed | 2012-03-27 13:16:18 +0200 | [diff] [blame] | 7912 | F: Documentation/pwm.txt |
| 7913 | F: Documentation/devicetree/bindings/pwm/ |
| 7914 | F: include/linux/pwm.h |
Sascha Hauer | 0c2498f | 2011-01-28 09:40:40 +0100 | [diff] [blame] | 7915 | F: drivers/pwm/ |
Thierry Reding | a140b98 | 2012-09-24 17:17:30 -0700 | [diff] [blame] | 7916 | F: drivers/video/backlight/pwm_bl.c |
| 7917 | F: include/linux/pwm_backlight.h |
Sascha Hauer | 0c2498f | 2011-01-28 09:40:40 +0100 | [diff] [blame] | 7918 | |
Eric Miao | 30ec261 | 2008-06-12 15:21:41 -0700 | [diff] [blame] | 7919 | PXA2xx/PXA3xx SUPPORT |
Robert Jarzmik | 8da5e30 | 2014-09-24 23:08:00 +0200 | [diff] [blame] | 7920 | M: Daniel Mack <daniel@zonque.org> |
Haojian Zhuang | a323f66 | 2012-03-14 18:33:07 +0800 | [diff] [blame] | 7921 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
Robert Jarzmik | 8da5e30 | 2014-09-24 23:08:00 +0200 | [diff] [blame] | 7922 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 7923 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Haojian Zhuang | 3f640c6 | 2011-12-09 09:58:41 +0800 | [diff] [blame] | 7924 | T: git git://github.com/hzhuang1/linux.git |
Robert Jarzmik | 8da5e30 | 2014-09-24 23:08:00 +0200 | [diff] [blame] | 7925 | T: git git://github.com/rjarzmik/linux.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7926 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7927 | F: arch/arm/mach-pxa/ |
| 7928 | F: drivers/pcmcia/pxa2xx* |
Joe Perches | 9df92e6 | 2012-01-10 15:09:06 -0800 | [diff] [blame] | 7929 | F: drivers/spi/spi-pxa2xx* |
Joe Perches | faf2e1d | 2014-08-08 14:26:18 -0700 | [diff] [blame] | 7930 | F: drivers/usb/gadget/udc/pxa2* |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7931 | F: include/sound/pxa2xx-lib.h |
Mark Brown | bec4c99 | 2009-05-06 10:36:34 +0100 | [diff] [blame] | 7932 | F: sound/arm/pxa* |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 7933 | F: sound/soc/pxa/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7934 | |
Ezequiel Garcia | ec64d3b | 2013-12-04 15:28:46 -0800 | [diff] [blame] | 7935 | PXA3xx NAND FLASH DRIVER |
| 7936 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> |
| 7937 | L: linux-mtd@lists.infradead.org |
| 7938 | S: Maintained |
Joe Perches | 9a67f09 | 2014-08-08 14:25:10 -0700 | [diff] [blame] | 7939 | F: drivers/mtd/nand/pxa3xx_nand.c |
Ezequiel Garcia | ec64d3b | 2013-12-04 15:28:46 -0800 | [diff] [blame] | 7940 | |
Haojian Zhuang | 3f640c6 | 2011-12-09 09:58:41 +0800 | [diff] [blame] | 7941 | MMP SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7942 | M: Eric Miao <eric.y.miao@gmail.com> |
Haojian Zhuang | a323f66 | 2012-03-14 18:33:07 +0800 | [diff] [blame] | 7943 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
Eric Miao | e8e6cb3 | 2010-01-05 15:28:26 +0800 | [diff] [blame] | 7944 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Haojian Zhuang | 3f640c6 | 2011-12-09 09:58:41 +0800 | [diff] [blame] | 7945 | T: git git://github.com/hzhuang1/linux.git |
| 7946 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git |
Eric Miao | e8e6cb3 | 2010-01-05 15:28:26 +0800 | [diff] [blame] | 7947 | S: Maintained |
Haojian Zhuang | 3f640c6 | 2011-12-09 09:58:41 +0800 | [diff] [blame] | 7948 | F: arch/arm/mach-mmp/ |
Eric Miao | e8e6cb3 | 2010-01-05 15:28:26 +0800 | [diff] [blame] | 7949 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 7950 | PXA MMCI DRIVER |
| 7951 | S: Orphan |
| 7952 | |
Robert Jarzmik | 57f63bc | 2009-02-11 13:04:19 -0800 | [diff] [blame] | 7953 | PXA RTC DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7954 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
Robert Jarzmik | 57f63bc | 2009-02-11 13:04:19 -0800 | [diff] [blame] | 7955 | L: rtc-linux@googlegroups.com |
| 7956 | S: Maintained |
| 7957 | |
Tadeusz Struk | cea4001 | 2014-06-05 13:44:39 -0700 | [diff] [blame] | 7958 | QAT DRIVER |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 7959 | M: Tadeusz Struk <tadeusz.struk@intel.com> |
| 7960 | L: qat-linux@intel.com |
| 7961 | S: Supported |
| 7962 | F: drivers/crypto/qat/ |
Tadeusz Struk | cea4001 | 2014-06-05 13:44:39 -0700 | [diff] [blame] | 7963 | |
Mike Marciniszyn | 52a09a0 | 2011-07-13 09:19:10 -0700 | [diff] [blame] | 7964 | QIB DRIVER |
Mike Marciniszyn | 8473c60 | 2012-05-10 09:25:20 -0400 | [diff] [blame] | 7965 | M: Mike Marciniszyn <infinipath@intel.com> |
Mike Marciniszyn | 52a09a0 | 2011-07-13 09:19:10 -0700 | [diff] [blame] | 7966 | L: linux-rdma@vger.kernel.org |
| 7967 | S: Supported |
| 7968 | F: drivers/infiniband/hw/qib/ |
| 7969 | |
Jes Sorensen | 5e9772b | 2010-06-30 15:37:38 +0200 | [diff] [blame] | 7970 | QLOGIC QLA1280 SCSI DRIVER |
| 7971 | M: Michael Reed <mdr@sgi.com> |
| 7972 | L: linux-scsi@vger.kernel.org |
| 7973 | S: Maintained |
| 7974 | F: drivers/scsi/qla1280.[ch] |
| 7975 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7976 | QLOGIC QLA2XXX FC-SCSI DRIVER |
Saurav Kashyap | 2c804eb | 2013-10-30 03:38:28 -0400 | [diff] [blame] | 7977 | M: qla2xxx-upstream@qlogic.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7978 | L: linux-scsi@vger.kernel.org |
| 7979 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7980 | F: Documentation/scsi/LICENSE.qla2xxx |
| 7981 | F: drivers/scsi/qla2xxx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7982 | |
Ravi Anand | 883c98f | 2010-04-28 11:45:49 +0530 | [diff] [blame] | 7983 | QLOGIC QLA4XXX iSCSI DRIVER |
Nilesh Javali | 1018b8b | 2015-01-07 00:49:23 -0500 | [diff] [blame] | 7984 | M: QLogic-Storage-Upstream@qlogic.com |
Ravi Anand | 883c98f | 2010-04-28 11:45:49 +0530 | [diff] [blame] | 7985 | L: linux-scsi@vger.kernel.org |
| 7986 | S: Supported |
Vikas Chaudhary | bacfb81 | 2013-07-11 02:09:43 -0400 | [diff] [blame] | 7987 | F: Documentation/scsi/LICENSE.qla4xxx |
Ravi Anand | 883c98f | 2010-04-28 11:45:49 +0530 | [diff] [blame] | 7988 | F: drivers/scsi/qla4xxx/ |
| 7989 | |
Ron Mercer | 5a4faa8 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 7990 | QLOGIC QLA3XXX NETWORK DRIVER |
Jitendra Kalsaria | 0a955c3 | 2011-12-16 11:41:37 +0000 | [diff] [blame] | 7991 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7992 | M: Ron Mercer <ron.mercer@qlogic.com> |
Ron Mercer | 5a4faa8 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 7993 | M: linux-driver@qlogic.com |
| 7994 | L: netdev@vger.kernel.org |
| 7995 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7996 | F: Documentation/networking/LICENSE.qla3xxx |
Jeff Kirsher | aa43c21 | 2011-04-08 19:06:30 -0700 | [diff] [blame] | 7997 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
Ron Mercer | 5a4faa8 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 7998 | |
Amit Kumar Salecha | 0ec00f0 | 2010-01-13 00:37:26 +0000 | [diff] [blame] | 7999 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
Sony Chacko | 195ca38 | 2013-03-06 13:03:25 +0000 | [diff] [blame] | 8000 | M: Shahed Shaikh <shahed.shaikh@qlogic.com> |
Shahed Shaikh | 9f35a3c | 2014-08-27 12:43:21 -0400 | [diff] [blame] | 8001 | M: Dept-GELinuxNICDev@qlogic.com |
Amit Kumar Salecha | 0ec00f0 | 2010-01-13 00:37:26 +0000 | [diff] [blame] | 8002 | L: netdev@vger.kernel.org |
| 8003 | S: Supported |
Jeff Kirsher | aa43c21 | 2011-04-08 19:06:30 -0700 | [diff] [blame] | 8004 | F: drivers/net/ethernet/qlogic/qlcnic/ |
Amit Kumar Salecha | 0ec00f0 | 2010-01-13 00:37:26 +0000 | [diff] [blame] | 8005 | |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 8006 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
Harish Patil | c9b1a5b | 2014-09-18 17:27:25 -0400 | [diff] [blame] | 8007 | M: Harish Patil <harish.patil@qlogic.com> |
| 8008 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> |
| 8009 | M: Dept-GELinuxNICDev@qlogic.com |
Joe Perches | 4cbfbe2 | 2009-07-29 15:04:21 -0700 | [diff] [blame] | 8010 | M: linux-driver@qlogic.com |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 8011 | L: netdev@vger.kernel.org |
| 8012 | S: Supported |
Jeff Kirsher | aa43c21 | 2011-04-08 19:06:30 -0700 | [diff] [blame] | 8013 | F: drivers/net/ethernet/qlogic/qlge/ |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 8014 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8015 | QNX4 FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8016 | M: Anders Larsen <al@alarsen.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8017 | W: http://www.alarsen.net/linux/qnx4fs/ |
| 8018 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 8019 | F: fs/qnx4/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8020 | F: include/uapi/linux/qnx4_fs.h |
| 8021 | F: include/uapi/linux/qnxtypes.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8022 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 8023 | QT1010 MEDIA DRIVER |
| 8024 | M: Antti Palosaari <crope@iki.fi> |
| 8025 | L: linux-media@vger.kernel.org |
| 8026 | W: http://linuxtv.org/ |
| 8027 | W: http://palosaari.fi/linux/ |
| 8028 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 8029 | T: git git://linuxtv.org/anttip/media_tree.git |
| 8030 | S: Maintained |
| 8031 | F: drivers/media/tuners/qt1010* |
| 8032 | |
Sujith Manoharan | 966fb5e | 2013-11-06 10:43:27 +0530 | [diff] [blame] | 8033 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
| 8034 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> |
| 8035 | L: linux-wireless@vger.kernel.org |
| 8036 | L: ath9k-devel@lists.ath9k.org |
| 8037 | W: http://wireless.kernel.org/en/users/Drivers/ath9k |
| 8038 | S: Supported |
| 8039 | F: drivers/net/wireless/ath/ath9k/ |
| 8040 | |
Kalle Valo | 2ea0ffc | 2013-07-22 12:22:19 +0300 | [diff] [blame] | 8041 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
| 8042 | M: Kalle Valo <kvalo@qca.qualcomm.com> |
| 8043 | L: ath10k@lists.infradead.org |
| 8044 | W: http://wireless.kernel.org/en/users/Drivers/ath10k |
| 8045 | T: git git://github.com/kvalo/ath.git |
| 8046 | S: Supported |
| 8047 | F: drivers/net/wireless/ath/ath10k/ |
| 8048 | |
Richard Kuo | 4f4567c | 2011-10-31 18:56:38 -0500 | [diff] [blame] | 8049 | QUALCOMM HEXAGON ARCHITECTURE |
| 8050 | M: Richard Kuo <rkuo@codeaurora.org> |
| 8051 | L: linux-hexagon@vger.kernel.org |
| 8052 | S: Supported |
| 8053 | F: arch/hexagon/ |
| 8054 | |
Eugene Krasnikov | 8e84c25 | 2013-10-08 21:25:58 +0100 | [diff] [blame] | 8055 | QUALCOMM WCN36XX WIRELESS DRIVER |
| 8056 | M: Eugene Krasnikov <k.eugene.e@gmail.com> |
| 8057 | L: wcn36xx@lists.infradead.org |
| 8058 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx |
| 8059 | T: git git://github.com/KrasnikovEugene/wcn36xx.git |
| 8060 | S: Supported |
| 8061 | F: drivers/net/wireless/ath/wcn36xx/ |
| 8062 | |
Yehuda Sadeh | 602adf4 | 2010-08-12 16:11:25 -0700 | [diff] [blame] | 8063 | RADOS BLOCK DEVICE (RBD) |
Sage Weil | 0f5417c | 2015-02-19 10:10:40 -0800 | [diff] [blame] | 8064 | M: Ilya Dryomov <idryomov@gmail.com> |
| 8065 | M: Sage Weil <sage@redhat.com> |
Alex Elder | 527a88b | 2013-12-26 08:37:43 -0600 | [diff] [blame] | 8066 | M: Alex Elder <elder@kernel.org> |
Yehuda Sadeh | 602adf4 | 2010-08-12 16:11:25 -0700 | [diff] [blame] | 8067 | M: ceph-devel@vger.kernel.org |
Sage Weil | 09d9032 | 2012-07-30 16:27:48 -0700 | [diff] [blame] | 8068 | W: http://ceph.com/ |
| 8069 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
Yehuda Sadeh | 602adf4 | 2010-08-12 16:11:25 -0700 | [diff] [blame] | 8070 | S: Supported |
| 8071 | F: drivers/block/rbd.c |
| 8072 | F: drivers/block/rbd_types.h |
| 8073 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8074 | RADEON FRAMEBUFFER DISPLAY DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8075 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 8076 | L: linux-fbdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8077 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 8078 | F: drivers/video/fbdev/aty/radeon* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8079 | F: include/uapi/linux/radeonfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8080 | |
Hans de Goede | c6c9b34 | 2012-11-04 17:03:58 -0300 | [diff] [blame] | 8081 | RADIOSHARK RADIO DRIVER |
| 8082 | M: Hans de Goede <hdegoede@redhat.com> |
| 8083 | L: linux-media@vger.kernel.org |
| 8084 | T: git git://linuxtv.org/media_tree.git |
| 8085 | S: Maintained |
| 8086 | F: drivers/media/radio/radio-shark.c |
| 8087 | |
| 8088 | RADIOSHARK2 RADIO DRIVER |
| 8089 | M: Hans de Goede <hdegoede@redhat.com> |
| 8090 | L: linux-media@vger.kernel.org |
| 8091 | T: git git://linuxtv.org/media_tree.git |
| 8092 | S: Maintained |
| 8093 | F: drivers/media/radio/radio-shark2.c |
| 8094 | F: drivers/media/radio/radio-tea5777.c |
| 8095 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8096 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8097 | M: Paul Mackerras <paulus@samba.org> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 8098 | L: linux-fbdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8099 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 8100 | F: drivers/video/fbdev/aty/aty128fb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8101 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 8102 | RALINK RT2X00 WIRELESS LAN DRIVER |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 8103 | P: rt2x00 project |
Stanislaw Gruszka | b182427 | 2014-09-28 14:03:06 +0200 | [diff] [blame] | 8104 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
Helmut Schaa | f198f98 | 2011-01-30 13:21:41 +0100 | [diff] [blame] | 8105 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 8106 | L: linux-wireless@vger.kernel.org |
Bartlomiej Zolnierkiewicz | 83fc9c8 | 2009-10-26 20:14:33 +0100 | [diff] [blame] | 8107 | L: users@rt2x00.serialmonkey.com (moderated for non-subscribers) |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 8108 | W: http://rt2x00.serialmonkey.com/ |
| 8109 | S: Maintained |
| 8110 | F: drivers/net/wireless/rt2x00/ |
| 8111 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 8112 | RAMDISK RAM BLOCK DEVICE DRIVER |
Ross Zwisler | ea7618e | 2015-03-17 12:56:30 -0600 | [diff] [blame] | 8113 | M: Jens Axboe <axboe@kernel.dk> |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 8114 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8115 | F: Documentation/blockdev/ramdisk.txt |
| 8116 | F: drivers/block/brd.c |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 8117 | |
Ross Zwisler | 9e853f2 | 2015-04-01 09:12:19 +0200 | [diff] [blame] | 8118 | PERSISTENT MEMORY DRIVER |
| 8119 | M: Ross Zwisler <ross.zwisler@linux.intel.com> |
| 8120 | L: linux-nvdimm@lists.01.org |
| 8121 | S: Supported |
| 8122 | F: drivers/block/pmem.c |
| 8123 | |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 8124 | RANDOM NUMBER DRIVER |
Christoph Hellwig | 0624bca | 2014-04-25 01:12:01 -0700 | [diff] [blame] | 8125 | M: "Theodore Ts'o" <tytso@mit.edu> |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 8126 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8127 | F: drivers/char/random.c |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 8128 | |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 8129 | RAPIDIO SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8130 | M: Matt Porter <mporter@kernel.crashing.org> |
Alexandre Bounine | b8bc1dd | 2011-03-04 17:36:28 -0800 | [diff] [blame] | 8131 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 8132 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8133 | F: drivers/rapidio/ |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 8134 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 8135 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 8136 | L: linux-wireless@vger.kernel.org |
John W. Linville | f52a549 | 2010-07-22 14:36:52 -0400 | [diff] [blame] | 8137 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8138 | F: drivers/net/wireless/ray* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 8139 | |
| 8140 | RCUTORTURE MODULE |
Josh Triplett | e0198b2 | 2014-07-30 16:08:42 -0700 | [diff] [blame] | 8141 | M: Josh Triplett <josh@joshtriplett.org> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8142 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 8143 | L: linux-kernel@vger.kernel.org |
Paul E. McKenney | f9094d8 | 2010-01-04 16:04:00 -0800 | [diff] [blame] | 8144 | S: Supported |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 8145 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8146 | F: Documentation/RCU/torture.txt |
Joe Perches | 34e2d56 | 2014-07-03 15:08:00 -0700 | [diff] [blame] | 8147 | F: kernel/rcu/rcutorture.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 8148 | |
Paul E. McKenney | c87b9c6 | 2013-09-28 14:12:21 -0700 | [diff] [blame] | 8149 | RCUTORTURE TEST FRAMEWORK |
| 8150 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
Paul E. McKenney | ab0afd6 | 2014-06-03 08:17:06 -0700 | [diff] [blame] | 8151 | M: Josh Triplett <josh@joshtriplett.org> |
Paul E. McKenney | 4632a19 | 2014-05-30 15:37:24 -0700 | [diff] [blame] | 8152 | R: Steven Rostedt <rostedt@goodmis.org> |
| 8153 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
| 8154 | R: Lai Jiangshan <laijs@cn.fujitsu.com> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 8155 | L: linux-kernel@vger.kernel.org |
Paul E. McKenney | c87b9c6 | 2013-09-28 14:12:21 -0700 | [diff] [blame] | 8156 | S: Supported |
| 8157 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
| 8158 | F: tools/testing/selftests/rcutorture |
| 8159 | |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 8160 | RDC R-321X SoC |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8161 | M: Florian Fainelli <florian@openwrt.org> |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 8162 | S: Maintained |
| 8163 | |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 8164 | RDC R6040 FAST ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8165 | M: Florian Fainelli <florian@openwrt.org> |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 8166 | L: netdev@vger.kernel.org |
| 8167 | S: Maintained |
Jeff Kirsher | 58565a3 | 2011-07-23 23:26:01 -0700 | [diff] [blame] | 8168 | F: drivers/net/ethernet/rdc/r6040.c |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 8169 | |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 8170 | RDS - RELIABLE DATAGRAM SOCKETS |
Venkat Venkatsubra | 8a85ac4 | 2014-01-30 13:28:47 -0800 | [diff] [blame] | 8171 | M: Chien Yen <chien.yen@oracle.com> |
Kyle McMartin | fbb5a55 | 2009-04-09 14:09:47 +0000 | [diff] [blame] | 8172 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 8173 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8174 | F: net/rds/ |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 8175 | |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 8176 | READ-COPY UPDATE (RCU) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8177 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
Paul E. McKenney | ab0afd6 | 2014-06-03 08:17:06 -0700 | [diff] [blame] | 8178 | M: Josh Triplett <josh@joshtriplett.org> |
Paul E. McKenney | 4632a19 | 2014-05-30 15:37:24 -0700 | [diff] [blame] | 8179 | R: Steven Rostedt <rostedt@goodmis.org> |
| 8180 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
| 8181 | R: Lai Jiangshan <laijs@cn.fujitsu.com> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 8182 | L: linux-kernel@vger.kernel.org |
Paul E. McKenney | 9fab9787 | 2012-05-07 09:36:34 -0700 | [diff] [blame] | 8183 | W: http://www.rdrop.com/users/paulmck/RCU/ |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 8184 | S: Supported |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 8185 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
Paul E. McKenney | f9094d8 | 2010-01-04 16:04:00 -0800 | [diff] [blame] | 8186 | F: Documentation/RCU/ |
Paul E. McKenney | 9fab9787 | 2012-05-07 09:36:34 -0700 | [diff] [blame] | 8187 | X: Documentation/RCU/torture.txt |
Paul E. McKenney | f9094d8 | 2010-01-04 16:04:00 -0800 | [diff] [blame] | 8188 | F: include/linux/rcu* |
Paul E. McKenney | 4102ada | 2013-10-08 20:23:47 -0700 | [diff] [blame] | 8189 | X: include/linux/srcu.h |
| 8190 | F: kernel/rcu/ |
Joe Perches | 34e2d56 | 2014-07-03 15:08:00 -0700 | [diff] [blame] | 8191 | X: kernel/torture.c |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 8192 | |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 8193 | REAL TIME CLOCK (RTC) SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8194 | M: Alessandro Zummo <a.zummo@towertech.it> |
Alexandre Belloni | 7c6f84f | 2015-04-16 12:45:43 -0700 | [diff] [blame] | 8195 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
Alessandro Zummo | 7646549 | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 8196 | L: rtc-linux@googlegroups.com |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 8197 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 8198 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8199 | F: Documentation/rtc.txt |
| 8200 | F: drivers/rtc/ |
| 8201 | F: include/linux/rtc.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8202 | F: include/uapi/linux/rtc.h |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 8203 | |
Mark Brown | 0e400c5 | 2014-07-31 12:38:31 +0100 | [diff] [blame] | 8204 | REALTEK AUDIO CODECS |
| 8205 | M: Bard Liao <bardliao@realtek.com> |
| 8206 | M: Oder Chiou <oder_chiou@realtek.com> |
| 8207 | S: Maintained |
| 8208 | F: sound/soc/codecs/rt* |
| 8209 | F: include/sound/rt*.h |
| 8210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8211 | REISERFS FILE SYSTEM |
Jeff Mahoney | 76c4e5e | 2007-06-08 13:47:02 -0700 | [diff] [blame] | 8212 | L: reiserfs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8213 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8214 | F: fs/reiserfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8215 | |
Mark Brown | b83a313 | 2011-05-11 19:59:58 +0200 | [diff] [blame] | 8216 | REGISTER MAP ABSTRACTION |
Mark Brown | b02e48f | 2013-04-12 11:39:57 +0100 | [diff] [blame] | 8217 | M: Mark Brown <broonie@kernel.org> |
Mark Brown | dd060bc | 2014-08-16 12:30:58 +0100 | [diff] [blame] | 8218 | L: linux-kernel@vger.kernel.org |
Mark Brown | b83a313 | 2011-05-11 19:59:58 +0200 | [diff] [blame] | 8219 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
| 8220 | S: Supported |
| 8221 | F: drivers/base/regmap/ |
| 8222 | F: include/linux/regmap.h |
| 8223 | |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 8224 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
| 8225 | M: Ohad Ben-Cohen <ohad@wizery.com> |
Ohad Ben-Cohen | 6bb697b | 2012-06-19 10:22:35 +0300 | [diff] [blame] | 8226 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 8227 | S: Maintained |
| 8228 | F: drivers/remoteproc/ |
| 8229 | F: Documentation/remoteproc.txt |
Joe Perches | 6fc2648 | 2012-04-05 14:25:13 -0700 | [diff] [blame] | 8230 | F: include/linux/remoteproc.h |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 8231 | |
Ohad Ben-Cohen | d8115db | 2013-04-16 20:34:49 +0300 | [diff] [blame] | 8232 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
| 8233 | M: Ohad Ben-Cohen <ohad@wizery.com> |
| 8234 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git |
| 8235 | S: Maintained |
| 8236 | F: drivers/rpmsg/ |
| 8237 | F: Documentation/rpmsg.txt |
| 8238 | F: include/linux/rpmsg.h |
| 8239 | |
Philipp Zabel | 1b0fe6b | 2014-05-27 15:58:09 +0200 | [diff] [blame] | 8240 | RESET CONTROLLER FRAMEWORK |
| 8241 | M: Philipp Zabel <p.zabel@pengutronix.de> |
| 8242 | S: Maintained |
| 8243 | F: drivers/reset/ |
| 8244 | F: Documentation/devicetree/bindings/reset/ |
| 8245 | F: include/linux/reset.h |
| 8246 | F: include/linux/reset-controller.h |
| 8247 | |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 8248 | RFKILL |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8249 | M: Johannes Berg <johannes@sipsolutions.net> |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 8250 | L: linux-wireless@vger.kernel.org |
Johannes Berg | ce46657 | 2012-06-05 15:42:55 +0200 | [diff] [blame] | 8251 | W: http://wireless.kernel.org/ |
| 8252 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
| 8253 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 8254 | S: Maintained |
Joe Perches | 505c924 | 2009-11-12 14:55:00 -0800 | [diff] [blame] | 8255 | F: Documentation/rfkill.txt |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 8256 | F: net/rfkill/ |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 8257 | |
Thomas Graf | 933685c | 2015-01-13 01:01:24 +0100 | [diff] [blame] | 8258 | RHASHTABLE |
| 8259 | M: Thomas Graf <tgraf@suug.ch> |
| 8260 | L: netdev@vger.kernel.org |
| 8261 | S: Maintained |
| 8262 | F: lib/rhashtable.c |
| 8263 | F: include/linux/rhashtable.h |
| 8264 | |
Maxim Levitsky | 67e054e | 2010-02-22 20:39:42 +0200 | [diff] [blame] | 8265 | RICOH SMARTMEDIA/XD DRIVER |
| 8266 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
| 8267 | S: Maintained |
Joe Perches | 21c26f5 | 2010-08-09 17:20:40 -0700 | [diff] [blame] | 8268 | F: drivers/mtd/nand/r852.c |
| 8269 | F: drivers/mtd/nand/r852.h |
Maxim Levitsky | 67e054e | 2010-02-22 20:39:42 +0200 | [diff] [blame] | 8270 | |
Maxim Levitsky | 9263412 | 2011-03-25 01:56:59 -0700 | [diff] [blame] | 8271 | RICOH R5C592 MEMORYSTICK DRIVER |
| 8272 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
| 8273 | S: Maintained |
| 8274 | F: drivers/memstick/host/r592.* |
| 8275 | |
Stefan Achatz | 27f1d2f | 2013-09-05 06:36:01 +0200 | [diff] [blame] | 8276 | ROCCAT DRIVERS |
| 8277 | M: Stefan Achatz <erazor_de@users.sourceforge.net> |
| 8278 | W: http://sourceforge.net/projects/roccat/ |
| 8279 | S: Maintained |
| 8280 | F: drivers/hid/hid-roccat* |
| 8281 | F: include/linux/hid-roccat* |
| 8282 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* |
| 8283 | |
Jiri Pirko | 4b8ac96 | 2014-11-28 14:34:26 +0100 | [diff] [blame] | 8284 | ROCKER DRIVER |
| 8285 | M: Jiri Pirko <jiri@resnulli.us> |
| 8286 | M: Scott Feldman <sfeldma@gmail.com> |
| 8287 | L: netdev@vger.kernel.org |
| 8288 | S: Supported |
| 8289 | F: drivers/net/ethernet/rocker/ |
| 8290 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8291 | ROCKETPORT DRIVER |
| 8292 | P: Comtrol Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8293 | W: http://www.comtrol.com |
| 8294 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8295 | F: Documentation/serial/rocket.txt |
Joe Perches | c897401 | 2011-04-14 15:22:05 -0700 | [diff] [blame] | 8296 | F: drivers/tty/rocket* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8297 | |
Kevin Cernekee | 7645c2f | 2014-10-21 15:23:06 -0700 | [diff] [blame] | 8298 | ROCKETPORT EXPRESS/INFINITY DRIVER |
| 8299 | M: Kevin Cernekee <cernekee@gmail.com> |
| 8300 | L: linux-serial@vger.kernel.org |
| 8301 | S: Odd Fixes |
| 8302 | F: drivers/tty/serial/rp2.* |
| 8303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8304 | ROSE NETWORK LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8305 | M: Ralf Baechle <ralf@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8306 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 8307 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8308 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8309 | F: include/net/rose.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8310 | F: include/uapi/linux/rose.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8311 | F: net/rose/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8312 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 8313 | RTL2830 MEDIA DRIVER |
| 8314 | M: Antti Palosaari <crope@iki.fi> |
| 8315 | L: linux-media@vger.kernel.org |
| 8316 | W: http://linuxtv.org/ |
| 8317 | W: http://palosaari.fi/linux/ |
| 8318 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 8319 | T: git git://linuxtv.org/anttip/media_tree.git |
| 8320 | S: Maintained |
| 8321 | F: drivers/media/dvb-frontends/rtl2830* |
| 8322 | |
Antti Palosaari | 27a0aac | 2013-04-09 20:30:43 -0300 | [diff] [blame] | 8323 | RTL2832 MEDIA DRIVER |
| 8324 | M: Antti Palosaari <crope@iki.fi> |
| 8325 | L: linux-media@vger.kernel.org |
| 8326 | W: http://linuxtv.org/ |
| 8327 | W: http://palosaari.fi/linux/ |
| 8328 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 8329 | T: git git://linuxtv.org/anttip/media_tree.git |
| 8330 | S: Maintained |
| 8331 | F: drivers/media/dvb-frontends/rtl2832* |
| 8332 | |
Antti Palosaari | ba6e6f6 | 2014-02-03 00:00:32 -0300 | [diff] [blame] | 8333 | RTL2832_SDR MEDIA DRIVER |
| 8334 | M: Antti Palosaari <crope@iki.fi> |
| 8335 | L: linux-media@vger.kernel.org |
| 8336 | W: http://linuxtv.org/ |
| 8337 | W: http://palosaari.fi/linux/ |
| 8338 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 8339 | T: git git://linuxtv.org/anttip/media_tree.git |
| 8340 | S: Maintained |
Antti Palosaari | b4bb1c2 | 2014-07-14 21:19:29 -0300 | [diff] [blame] | 8341 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
Antti Palosaari | ba6e6f6 | 2014-02-03 00:00:32 -0300 | [diff] [blame] | 8342 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 8343 | RTL8180 WIRELESS DRIVER |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 8344 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 8345 | W: http://wireless.kernel.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 8346 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
John W. Linville | 7be6ff6 | 2014-12-04 16:52:41 -0500 | [diff] [blame] | 8347 | S: Orphan |
John W. Linville | 3cfeb0c | 2010-12-20 15:16:53 -0500 | [diff] [blame] | 8348 | F: drivers/net/wireless/rtl818x/rtl8180/ |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 8349 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 8350 | RTL8187 WIRELESS DRIVER |
Herton Ronaldo Krzesinski | 9f0939b | 2011-02-24 15:18:07 -0300 | [diff] [blame] | 8351 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8352 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
| 8353 | M: Larry Finger <Larry.Finger@lwfinger.net> |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 8354 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 8355 | W: http://wireless.kernel.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 8356 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 8357 | S: Maintained |
John W. Linville | 3cfeb0c | 2010-12-20 15:16:53 -0500 | [diff] [blame] | 8358 | F: drivers/net/wireless/rtl818x/rtl8187/ |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 8359 | |
Larry Finger | 3cf0c8a | 2010-12-16 09:13:21 -0600 | [diff] [blame] | 8360 | RTL8192CE WIRELESS DRIVER |
| 8361 | M: Larry Finger <Larry.Finger@lwfinger.net> |
| 8362 | M: Chaoming Li <chaoming_li@realsil.com.cn> |
| 8363 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 8364 | W: http://wireless.kernel.org/ |
Larry Finger | 3cf0c8a | 2010-12-16 09:13:21 -0600 | [diff] [blame] | 8365 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
| 8366 | S: Maintained |
| 8367 | F: drivers/net/wireless/rtlwifi/ |
Larry Finger | f0b3e4b | 2010-12-17 16:04:11 -0600 | [diff] [blame] | 8368 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
Martin Schwidefsky | 8301425 | 2006-09-20 15:58:58 +0200 | [diff] [blame] | 8369 | |
| 8370 | S3 SAVAGE FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8371 | M: Antonino Daplas <adaplas@gmail.com> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 8372 | L: linux-fbdev@vger.kernel.org |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 8373 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 8374 | F: drivers/video/fbdev/savage/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 8375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8376 | S390 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8377 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
| 8378 | M: Heiko Carstens <heiko.carstens@de.ibm.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8379 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 8380 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 8381 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 8382 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8383 | F: arch/s390/ |
Joe Perches | a968cd3 | 2009-12-07 12:52:10 +0100 | [diff] [blame] | 8384 | F: drivers/s390/ |
Jonathan Nieder | 3bfe685 | 2010-05-26 23:27:13 +0200 | [diff] [blame] | 8385 | F: Documentation/s390/ |
| 8386 | F: Documentation/DocBook/s390* |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 8387 | |
Sebastian Ott | 322986c | 2014-02-17 15:16:30 +0100 | [diff] [blame] | 8388 | S390 COMMON I/O LAYER |
| 8389 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> |
| 8390 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> |
| 8391 | L: linux-s390@vger.kernel.org |
| 8392 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 8393 | S: Supported |
| 8394 | F: drivers/s390/cio/ |
| 8395 | |
| 8396 | S390 DASD DRIVER |
| 8397 | M: Stefan Weinhuber <wein@de.ibm.com> |
| 8398 | M: Stefan Haberland <stefan.haberland@de.ibm.com> |
| 8399 | L: linux-s390@vger.kernel.org |
| 8400 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 8401 | S: Supported |
| 8402 | F: drivers/s390/block/dasd* |
| 8403 | F: block/partitions/ibm.c |
| 8404 | |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 8405 | S390 NETWORK DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8406 | M: Ursula Braun <ursula.braun@de.ibm.com> |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 8407 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 8408 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 8409 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 8410 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8411 | F: drivers/s390/net/ |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 8412 | |
Sebastian Ott | 322986c | 2014-02-17 15:16:30 +0100 | [diff] [blame] | 8413 | S390 PCI SUBSYSTEM |
| 8414 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> |
| 8415 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> |
| 8416 | L: linux-s390@vger.kernel.org |
| 8417 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 8418 | S: Supported |
| 8419 | F: arch/s390/pci/ |
| 8420 | F: drivers/pci/hotplug/s390_pci_hpc.c |
| 8421 | |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 8422 | S390 ZCRYPT DRIVER |
Ingo Tuchscherer | 5c8d098 | 2013-01-14 10:07:05 +0100 | [diff] [blame] | 8423 | M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com> |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 8424 | M: linux390@de.ibm.com |
| 8425 | L: linux-s390@vger.kernel.org |
Joe Perches | a968cd3 | 2009-12-07 12:52:10 +0100 | [diff] [blame] | 8426 | W: http://www.ibm.com/developerworks/linux/linux390/ |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 8427 | S: Supported |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 8428 | F: drivers/s390/crypto/ |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 8429 | |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 8430 | S390 ZFCP DRIVER |
Christof Schmitt | d38e19d | 2011-01-10 11:12:40 +0100 | [diff] [blame] | 8431 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 8432 | M: linux390@de.ibm.com |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 8433 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 8434 | W: http://www.ibm.com/developerworks/linux/linux390/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8435 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8436 | F: drivers/s390/scsi/zfcp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8437 | |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 8438 | S390 IUCV NETWORK LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8439 | M: Ursula Braun <ursula.braun@de.ibm.com> |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 8440 | M: linux390@de.ibm.com |
| 8441 | L: linux-s390@vger.kernel.org |
| 8442 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 8443 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8444 | F: drivers/s390/net/*iucv* |
| 8445 | F: include/net/iucv/ |
| 8446 | F: net/iucv/ |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 8447 | |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 8448 | S3C24XX SD/MMC Driver |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8449 | M: Ben Dooks <ben-linux@fluff.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 8450 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 8451 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8452 | F: drivers/mmc/host/s3cmci.* |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 8453 | |
Hans Verkuil | 1f15a22 | 2012-11-23 07:45:29 -0300 | [diff] [blame] | 8454 | SAA6588 RDS RECEIVER DRIVER |
| 8455 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 8456 | L: linux-media@vger.kernel.org |
| 8457 | T: git git://linuxtv.org/media_tree.git |
| 8458 | W: http://linuxtv.org |
| 8459 | S: Odd Fixes |
| 8460 | F: drivers/media/i2c/saa6588* |
| 8461 | |
Mauro Carvalho Chehab | 98ed12e | 2012-11-02 11:34:14 -0200 | [diff] [blame] | 8462 | SAA7134 VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 8463 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | 98ed12e | 2012-11-02 11:34:14 -0200 | [diff] [blame] | 8464 | L: linux-media@vger.kernel.org |
| 8465 | W: http://linuxtv.org |
| 8466 | T: git git://linuxtv.org/media_tree.git |
| 8467 | S: Odd fixes |
Cesar Eduardo Barros | e42bf50 | 2013-03-02 21:53:47 -0300 | [diff] [blame] | 8468 | F: Documentation/video4linux/*.saa7134 |
Mauro Carvalho Chehab | 98ed12e | 2012-11-02 11:34:14 -0200 | [diff] [blame] | 8469 | F: drivers/media/pci/saa7134/ |
| 8470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8471 | SAA7146 VIDEO4LINUX-2 DRIVER |
Hans Verkuil | 566b815 | 2012-11-23 09:58:12 -0300 | [diff] [blame] | 8472 | M: Hans Verkuil <hverkuil@xs4all.nl> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 8473 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 8474 | T: git git://linuxtv.org/media_tree.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8475 | S: Maintained |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 8476 | F: drivers/media/common/saa7146/ |
| 8477 | F: drivers/media/pci/saa7146/ |
| 8478 | F: include/media/saa7146* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8479 | |
Corentin Chary | 92304a4 | 2011-12-05 12:38:35 -0500 | [diff] [blame] | 8480 | SAMSUNG LAPTOP DRIVER |
Corentin Chary | 5909c65 | 2012-12-17 16:00:05 -0800 | [diff] [blame] | 8481 | M: Corentin Chary <corentin.chary@gmail.com> |
Corentin Chary | 92304a4 | 2011-12-05 12:38:35 -0500 | [diff] [blame] | 8482 | L: platform-driver-x86@vger.kernel.org |
| 8483 | S: Maintained |
| 8484 | F: drivers/platform/x86/samsung-laptop.c |
| 8485 | |
Mark Brown | 4a109cc | 2010-09-24 10:50:46 +0100 | [diff] [blame] | 8486 | SAMSUNG AUDIO (ASoC) DRIVERS |
Sangbeom Kim | 250b685 | 2011-08-23 19:36:59 +0900 | [diff] [blame] | 8487 | M: Sangbeom Kim <sbkim73@samsung.com> |
Mark Brown | 4a109cc | 2010-09-24 10:50:46 +0100 | [diff] [blame] | 8488 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 8489 | S: Supported |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 8490 | F: sound/soc/samsung/ |
Mark Brown | 4a109cc | 2010-09-24 10:50:46 +0100 | [diff] [blame] | 8491 | |
Jingoo Han | 0d89a28 | 2011-12-19 11:09:35 +0900 | [diff] [blame] | 8492 | SAMSUNG FRAMEBUFFER DRIVER |
| 8493 | M: Jingoo Han <jg1.han@samsung.com> |
| 8494 | L: linux-fbdev@vger.kernel.org |
| 8495 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 8496 | F: drivers/video/fbdev/s3c-fb.c |
Jingoo Han | 0d89a28 | 2011-12-19 11:09:35 +0900 | [diff] [blame] | 8497 | |
Sangbeom Kim | f69d3a1 | 2012-07-11 21:08:22 +0900 | [diff] [blame] | 8498 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
| 8499 | M: Sangbeom Kim <sbkim73@samsung.com> |
| 8500 | L: linux-kernel@vger.kernel.org |
| 8501 | S: Supported |
| 8502 | F: drivers/mfd/sec*.c |
| 8503 | F: drivers/regulator/s2m*.c |
| 8504 | F: drivers/regulator/s5m*.c |
Sangbeom Kim | f69d3a1 | 2012-07-11 21:08:22 +0900 | [diff] [blame] | 8505 | F: include/linux/mfd/samsung/ |
| 8506 | |
Sylwester Nawrocki | 038f5c4 | 2013-05-28 18:26:20 -0300 | [diff] [blame] | 8507 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
| 8508 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 8509 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
| 8510 | L: linux-media@vger.kernel.org |
| 8511 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ |
| 8512 | S: Supported |
| 8513 | F: drivers/media/platform/exynos4-is/ |
Sylwester Nawrocki | 038f5c4 | 2013-05-28 18:26:20 -0300 | [diff] [blame] | 8514 | |
Sylwester Nawrocki | 6fd86ab | 2012-11-15 18:05:15 -0300 | [diff] [blame] | 8515 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
| 8516 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> |
| 8517 | L: linux-media@vger.kernel.org |
| 8518 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
| 8519 | S: Maintained |
| 8520 | F: drivers/media/platform/s3c-camif/ |
| 8521 | F: include/media/s3c_camif.h |
| 8522 | |
Andrzej Hajda | b84ef24 | 2013-01-31 07:03:05 -0300 | [diff] [blame] | 8523 | SAMSUNG S5C73M3 CAMERA DRIVER |
| 8524 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 8525 | M: Andrzej Hajda <a.hajda@samsung.com> |
| 8526 | L: linux-media@vger.kernel.org |
| 8527 | S: Supported |
| 8528 | F: drivers/media/i2c/s5c73m3/* |
| 8529 | |
Andrzej Hajda | 7d45993 | 2013-12-05 08:38:39 -0300 | [diff] [blame] | 8530 | SAMSUNG S5K5BAF CAMERA DRIVER |
| 8531 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 8532 | M: Andrzej Hajda <a.hajda@samsung.com> |
| 8533 | L: linux-media@vger.kernel.org |
| 8534 | S: Supported |
| 8535 | F: drivers/media/i2c/s5k5baf.c |
| 8536 | |
Tomasz Figa | 310e39c | 2013-11-09 03:17:34 +0100 | [diff] [blame] | 8537 | SAMSUNG SOC CLOCK DRIVERS |
Tomasz Figa | fea685e | 2014-08-26 16:30:53 +0200 | [diff] [blame] | 8538 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
| 8539 | M: Tomasz Figa <tomasz.figa@gmail.com> |
Tomasz Figa | 310e39c | 2013-11-09 03:17:34 +0100 | [diff] [blame] | 8540 | S: Supported |
| 8541 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
| 8542 | F: drivers/clk/samsung/ |
| 8543 | |
Byungho An | 66890ed | 2014-03-25 12:11:07 -0700 | [diff] [blame] | 8544 | SAMSUNG SXGBE DRIVERS |
| 8545 | M: Byungho An <bh74.an@samsung.com> |
| 8546 | M: Girish K S <ks.giri@samsung.com> |
Byungho An | 66890ed | 2014-03-25 12:11:07 -0700 | [diff] [blame] | 8547 | M: Vipul Pandya <vipul.pandya@samsung.com> |
| 8548 | S: Supported |
| 8549 | L: netdev@vger.kernel.org |
| 8550 | F: drivers/net/ethernet/samsung/sxgbe/ |
| 8551 | |
Lukasz Majewski | 93c537a | 2015-02-24 16:31:28 +0100 | [diff] [blame] | 8552 | SAMSUNG THERMAL DRIVER |
| 8553 | M: Lukasz Majewski <l.majewski@samsung.com> |
| 8554 | L: linux-pm@vger.kernel.org |
| 8555 | L: linux-samsung-soc@vger.kernel.org |
| 8556 | S: Supported |
| 8557 | T: https://github.com/lmajewski/linux-samsung-thermal.git |
| 8558 | F: drivers/thermal/samsung/ |
| 8559 | |
Kamil Debski | e296cd3 | 2014-08-21 11:33:37 +0200 | [diff] [blame] | 8560 | SAMSUNG USB2 PHY DRIVER |
| 8561 | M: Kamil Debski <k.debski@samsung.com> |
| 8562 | L: linux-kernel@vger.kernel.org |
| 8563 | S: Supported |
| 8564 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt |
| 8565 | F: Documentation/phy/samsung-usb2.txt |
| 8566 | F: drivers/phy/phy-exynos4210-usb2.c |
| 8567 | F: drivers/phy/phy-exynos4x12-usb2.c |
| 8568 | F: drivers/phy/phy-exynos5250-usb2.c |
| 8569 | F: drivers/phy/phy-s5pv210-usb2.c |
| 8570 | F: drivers/phy/phy-samsung-usb2.c |
| 8571 | F: drivers/phy/phy-samsung-usb2.h |
| 8572 | |
Alan Cox | ca749e2 | 2011-03-18 13:56:14 +0000 | [diff] [blame] | 8573 | SERIAL DRIVERS |
Greg Kroah-Hartman | 5e30bbb | 2013-01-23 15:45:23 -0800 | [diff] [blame] | 8574 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Alan Cox | ca749e2 | 2011-03-18 13:56:14 +0000 | [diff] [blame] | 8575 | L: linux-serial@vger.kernel.org |
Greg Kroah-Hartman | 5e30bbb | 2013-01-23 15:45:23 -0800 | [diff] [blame] | 8576 | S: Maintained |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 8577 | F: drivers/tty/serial/ |
Alan Cox | ca749e2 | 2011-03-18 13:56:14 +0000 | [diff] [blame] | 8578 | |
Viresh Kumar | aecb7b6 | 2011-05-24 14:04:09 +0530 | [diff] [blame] | 8579 | SYNOPSYS DESIGNWARE DMAC DRIVER |
Andy Shevchenko | 2d8a3b3 | 2012-10-04 17:12:39 -0700 | [diff] [blame] | 8580 | M: Viresh Kumar <viresh.linux@gmail.com> |
Viresh Kumar | 337ae47c | 2013-07-19 09:13:58 +0530 | [diff] [blame] | 8581 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
Viresh Kumar | aecb7b6 | 2011-05-24 14:04:09 +0530 | [diff] [blame] | 8582 | S: Maintained |
Andy Shevchenko | 1fb200d | 2015-01-19 18:23:06 +0200 | [diff] [blame] | 8583 | F: include/linux/dma/dw.h |
Andy Shevchenko | 3d598f4 | 2014-08-19 20:29:12 +0300 | [diff] [blame] | 8584 | F: include/linux/platform_data/dma-dw.h |
Andy Shevchenko | 61a7649 | 2013-06-05 15:26:44 +0300 | [diff] [blame] | 8585 | F: drivers/dma/dw/ |
Viresh Kumar | aecb7b6 | 2011-05-24 14:04:09 +0530 | [diff] [blame] | 8586 | |
Seungwon Jeon | f9e3713 | 2013-01-17 21:33:23 +0900 | [diff] [blame] | 8587 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
| 8588 | M: Seungwon Jeon <tgih.jun@samsung.com> |
| 8589 | M: Jaehoon Chung <jh80.chung@samsung.com> |
| 8590 | L: linux-mmc@vger.kernel.org |
| 8591 | S: Maintained |
| 8592 | F: include/linux/mmc/dw_mmc.h |
| 8593 | F: drivers/mmc/host/dw_mmc* |
| 8594 | |
Andreas Noever | 1db121d | 2014-07-10 18:58:04 +0200 | [diff] [blame] | 8595 | THUNDERBOLT DRIVER |
| 8596 | M: Andreas Noever <andreas.noever@gmail.com> |
| 8597 | S: Maintained |
| 8598 | F: drivers/thunderbolt/ |
| 8599 | |
John Stultz | 9222d24 | 2013-07-16 16:45:31 +0200 | [diff] [blame] | 8600 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
John Stultz | 5036373 | 2012-12-13 13:08:47 -0500 | [diff] [blame] | 8601 | M: John Stultz <john.stultz@linaro.org> |
Thomas Gleixner | 88606e8 | 2010-12-14 21:37:13 +0100 | [diff] [blame] | 8602 | M: Thomas Gleixner <tglx@linutronix.de> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 8603 | L: linux-kernel@vger.kernel.org |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 8604 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
Thomas Gleixner | 88606e8 | 2010-12-14 21:37:13 +0100 | [diff] [blame] | 8605 | S: Supported |
| 8606 | F: include/linux/clocksource.h |
| 8607 | F: include/linux/time.h |
| 8608 | F: include/linux/timex.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8609 | F: include/uapi/linux/time.h |
| 8610 | F: include/uapi/linux/timex.h |
Thomas Gleixner | 88606e8 | 2010-12-14 21:37:13 +0100 | [diff] [blame] | 8611 | F: kernel/time/clocksource.c |
| 8612 | F: kernel/time/time*.c |
| 8613 | F: kernel/time/ntp.c |
John Stultz | 7fe5f1c | 2015-03-11 17:40:15 -0700 | [diff] [blame] | 8614 | F: tools/testing/selftests/timers/ |
Thomas Gleixner | 88606e8 | 2010-12-14 21:37:13 +0100 | [diff] [blame] | 8615 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8616 | SC1200 WDT DRIVER |
Jean Delvare | b300645 | 2013-11-12 15:08:56 -0800 | [diff] [blame] | 8617 | M: Zwane Mwaikambo <zwanem@gmail.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8618 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8619 | F: drivers/watchdog/sc1200wdt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8620 | |
| 8621 | SCHEDULER |
Ingo Molnar | dd9b238 | 2012-03-19 21:03:46 +0100 | [diff] [blame] | 8622 | M: Ingo Molnar <mingo@redhat.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8623 | M: Peter Zijlstra <peterz@infradead.org> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 8624 | L: linux-kernel@vger.kernel.org |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 8625 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8626 | S: Maintained |
Namhyung Kim | 95c0d71 | 2012-07-03 23:37:31 +0900 | [diff] [blame] | 8627 | F: kernel/sched/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8628 | F: include/linux/sched.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8629 | F: include/uapi/linux/sched.h |
Peter Zijlstra | c2eb505 | 2013-10-02 11:49:47 +0200 | [diff] [blame] | 8630 | F: include/linux/wait.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8631 | |
Chen Liqin | 6bcf673 | 2009-06-13 15:24:33 +0800 | [diff] [blame] | 8632 | SCORE ARCHITECTURE |
Lennox Wu | ed38665 | 2013-09-26 01:41:22 +0800 | [diff] [blame] | 8633 | M: Chen Liqin <liqin.linux@gmail.com> |
Joe Perches | a2681a7 | 2009-10-26 16:49:43 -0700 | [diff] [blame] | 8634 | M: Lennox Wu <lennox.wu@gmail.com> |
Lennox Wu | ed38665 | 2013-09-26 01:41:22 +0800 | [diff] [blame] | 8635 | W: http://www.sunplus.com |
Chen Liqin | 6bcf673 | 2009-06-13 15:24:33 +0800 | [diff] [blame] | 8636 | S: Supported |
Joe Perches | a2681a7 | 2009-10-26 16:49:43 -0700 | [diff] [blame] | 8637 | F: arch/score/ |
Chen Liqin | 6bcf673 | 2009-06-13 15:24:33 +0800 | [diff] [blame] | 8638 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8639 | SCSI CDROM DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8640 | M: Jens Axboe <axboe@kernel.dk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8641 | L: linux-scsi@vger.kernel.org |
| 8642 | W: http://www.kernel.dk |
| 8643 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8644 | F: drivers/scsi/sr* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8645 | |
Roland Dreier | fb50a83 | 2010-10-07 09:54:53 -0700 | [diff] [blame] | 8646 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
Bart Van Assche | 3453bddb | 2015-02-06 15:27:56 +0100 | [diff] [blame] | 8647 | M: Bart Van Assche <bart.vanassche@sandisk.com> |
Roland Dreier | fb50a83 | 2010-10-07 09:54:53 -0700 | [diff] [blame] | 8648 | L: linux-rdma@vger.kernel.org |
| 8649 | S: Supported |
| 8650 | W: http://www.openfabrics.org |
| 8651 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
| 8652 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git |
| 8653 | F: drivers/infiniband/ulp/srp/ |
| 8654 | F: include/scsi/srp.h |
| 8655 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8656 | SCSI SG DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8657 | M: Doug Gilbert <dgilbert@interlog.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8658 | L: linux-scsi@vger.kernel.org |
Douglas Gilbert | 59ab3c9 | 2013-10-31 09:10:46 -0400 | [diff] [blame] | 8659 | W: http://sg.danny.cz/sg |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8660 | S: Maintained |
Douglas Gilbert | 59ab3c9 | 2013-10-31 09:10:46 -0400 | [diff] [blame] | 8661 | F: Documentation/scsi/scsi-generic.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8662 | F: drivers/scsi/sg.c |
| 8663 | F: include/scsi/sg.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8664 | |
| 8665 | SCSI SUBSYSTEM |
James Bottomley | 0351b8f | 2015-04-01 09:09:36 +0000 | [diff] [blame] | 8666 | M: "James E.J. Bottomley" <JBottomley@odin.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8667 | L: linux-scsi@vger.kernel.org |
James Bottomley | 0351b8f | 2015-04-01 09:09:36 +0000 | [diff] [blame] | 8668 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8669 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8670 | F: drivers/scsi/ |
| 8671 | F: include/scsi/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8672 | |
| 8673 | SCSI TAPE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8674 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8675 | L: linux-scsi@vger.kernel.org |
| 8676 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8677 | F: Documentation/scsi/st.txt |
Jean Delvare | f7269cf | 2013-07-03 15:05:08 -0700 | [diff] [blame] | 8678 | F: drivers/scsi/st.* |
| 8679 | F: drivers/scsi/st_*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8680 | |
| 8681 | SCTP PROTOCOL |
Vlad Yasevich | 8b6efb7 | 2012-04-26 10:27:18 +0000 | [diff] [blame] | 8682 | M: Vlad Yasevich <vyasevich@gmail.com> |
Neil Horman | 02c38d0 | 2012-10-24 09:26:51 +0000 | [diff] [blame] | 8683 | M: Neil Horman <nhorman@tuxdriver.com> |
Vlad Yasevich | 1a41879 | 2008-04-12 18:55:42 -0700 | [diff] [blame] | 8684 | L: linux-sctp@vger.kernel.org |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 8685 | W: http://lksctp.sourceforge.net |
Vlad Yasevich | 8b6efb7 | 2012-04-26 10:27:18 +0000 | [diff] [blame] | 8686 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8687 | F: Documentation/networking/sctp.txt |
| 8688 | F: include/linux/sctp.h |
Daniel Borkmann | 4d58c02 | 2013-07-23 14:51:48 +0200 | [diff] [blame] | 8689 | F: include/uapi/linux/sctp.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8690 | F: include/net/sctp/ |
| 8691 | F: net/sctp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8692 | |
| 8693 | SCx200 CPU SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8694 | M: Jim Cromie <jim.cromie@gmail.com> |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 8695 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8696 | F: Documentation/i2c/busses/scx200_acb |
Joe Perches | 390889b | 2011-03-22 16:34:34 -0700 | [diff] [blame] | 8697 | F: arch/x86/platform/scx200/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8698 | F: drivers/watchdog/scx200_wdt.c |
| 8699 | F: drivers/i2c/busses/scx200* |
| 8700 | F: drivers/mtd/maps/scx200_docflash.c |
| 8701 | F: include/linux/scx200.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 8702 | |
| 8703 | SCx200 GPIO DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8704 | M: Jim Cromie <jim.cromie@gmail.com> |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 8705 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8706 | F: drivers/char/scx200_gpio.c |
| 8707 | F: include/linux/scx200_gpio.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 8708 | |
| 8709 | SCx200 HRT CLOCKSOURCE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8710 | M: Jim Cromie <jim.cromie@gmail.com> |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 8711 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8712 | F: drivers/clocksource/scx200_hrt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8713 | |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 8714 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8715 | M: Sascha Sommer <saschasommer@freenet.de> |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 8716 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
| 8717 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8718 | F: drivers/mmc/host/sdricoh_cs.c |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 8719 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 8720 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
Joe Perches | 7a241d6 | 2009-10-26 16:49:42 -0700 | [diff] [blame] | 8721 | L: linux-mmc@vger.kernel.org |
Ulf Hansson | a1cb1d1 | 2015-03-13 13:39:03 +0100 | [diff] [blame] | 8722 | S: Orphan |
Joe Perches | 7a241d6 | 2009-10-26 16:49:42 -0700 | [diff] [blame] | 8723 | F: drivers/mmc/host/sdhci.* |
Joe Perches | d4a4578 | 2012-01-10 15:08:54 -0800 | [diff] [blame] | 8724 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 8725 | |
Kees Cook | c04f9d6 | 2014-07-18 11:28:33 -0700 | [diff] [blame] | 8726 | SECURE COMPUTING |
| 8727 | M: Kees Cook <keescook@chromium.org> |
Kees Cook | a0cfd75 | 2014-08-12 15:41:17 -0700 | [diff] [blame] | 8728 | R: Andy Lutomirski <luto@amacapital.net> |
| 8729 | R: Will Drewry <wad@chromium.org> |
Kees Cook | c04f9d6 | 2014-07-18 11:28:33 -0700 | [diff] [blame] | 8730 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp |
| 8731 | S: Supported |
| 8732 | F: kernel/seccomp.c |
| 8733 | F: include/uapi/linux/seccomp.h |
| 8734 | F: include/linux/seccomp.h |
| 8735 | K: \bsecure_computing |
| 8736 | K: \bTIF_SECCOMP\b |
| 8737 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 8738 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8739 | M: Ben Dooks <ben-linux@fluff.org> |
Ulf Hansson | dc52488 | 2015-03-20 10:15:29 +0100 | [diff] [blame] | 8740 | M: Jaehoon Chung <jh80.chung@samsung.com> |
Joe Perches | 7a241d6 | 2009-10-26 16:49:42 -0700 | [diff] [blame] | 8741 | L: linux-mmc@vger.kernel.org |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 8742 | S: Maintained |
Ulf Hansson | dc52488 | 2015-03-20 10:15:29 +0100 | [diff] [blame] | 8743 | F: drivers/mmc/host/sdhci-s3c* |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 8744 | |
Viresh KUMAR | c63b3cb | 2010-05-26 14:42:10 -0700 | [diff] [blame] | 8745 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
Andy Shevchenko | 2d8a3b3 | 2012-10-04 17:12:39 -0700 | [diff] [blame] | 8746 | M: Viresh Kumar <viresh.linux@gmail.com> |
Viresh Kumar | fbfa074 | 2012-03-15 15:17:09 -0700 | [diff] [blame] | 8747 | L: spear-devel@list.st.com |
Viresh KUMAR | c63b3cb | 2010-05-26 14:42:10 -0700 | [diff] [blame] | 8748 | L: linux-mmc@vger.kernel.org |
| 8749 | S: Maintained |
| 8750 | F: drivers/mmc/host/sdhci-spear.c |
| 8751 | |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 8752 | SECURITY SUBSYSTEM |
James Morris | 9b45c0d | 2012-02-22 12:45:07 +1100 | [diff] [blame] | 8753 | M: James Morris <james.l.morris@oracle.com> |
James Morris | 70b4a25 | 2014-06-18 18:57:50 +1000 | [diff] [blame] | 8754 | M: Serge E. Hallyn <serge@hallyn.com> |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 8755 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
James Morris | 89879a7 | 2012-01-18 10:40:44 +1100 | [diff] [blame] | 8756 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
James Morris | 9ccf010 | 2012-04-09 15:48:07 +1000 | [diff] [blame] | 8757 | W: http://kernsec.org/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 8758 | S: Supported |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 8759 | F: security/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 8760 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8761 | SECURITY CONTACT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8762 | M: Security Officers <security@kernel.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8763 | S: Supported |
| 8764 | |
| 8765 | SELINUX SECURITY MODULE |
Paul Moore | 5a5f2ac | 2013-09-18 13:14:04 -0400 | [diff] [blame] | 8766 | M: Paul Moore <paul@paul-moore.com> |
Paul Moore | e0238b4 | 2014-02-06 07:51:54 -0500 | [diff] [blame] | 8767 | M: Stephen Smalley <sds@tycho.nsa.gov> |
| 8768 | M: Eric Paris <eparis@parisplace.org> |
| 8769 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
Stephen Smalley | f058925 | 2008-09-11 09:20:26 -0400 | [diff] [blame] | 8770 | W: http://selinuxproject.org |
Paul Moore | 5a5f2ac | 2013-09-18 13:14:04 -0400 | [diff] [blame] | 8771 | T: git git://git.infradead.org/users/pcmoore/selinux |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8772 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8773 | F: include/linux/selinux* |
| 8774 | F: security/selinux/ |
Eric Paris | 6bde95c | 2011-04-01 17:09:41 -0400 | [diff] [blame] | 8775 | F: scripts/selinux/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8776 | |
John Johansen | c1c124e | 2010-07-29 14:48:09 -0700 | [diff] [blame] | 8777 | APPARMOR SECURITY MODULE |
| 8778 | M: John Johansen <john.johansen@canonical.com> |
| 8779 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) |
| 8780 | W: apparmor.wiki.kernel.org |
| 8781 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git |
| 8782 | S: Supported |
| 8783 | F: security/apparmor/ |
| 8784 | |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 8785 | SENSABLE PHANTOM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8786 | M: Jiri Slaby <jirislaby@gmail.com> |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 8787 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8788 | F: drivers/misc/phantom.c |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8789 | F: include/uapi/linux/phantom.h |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 8790 | |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 8791 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
Jayamohan Kallickal | 0ca43cc | 2011-03-25 14:23:58 -0700 | [diff] [blame] | 8792 | M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com> |
Joe Perches | 3387f65 | 2009-11-11 14:26:11 -0800 | [diff] [blame] | 8793 | L: linux-scsi@vger.kernel.org |
Jayamohan Kallickal | 0ca43cc | 2011-03-25 14:23:58 -0700 | [diff] [blame] | 8794 | W: http://www.emulex.com |
Joe Perches | 3387f65 | 2009-11-11 14:26:11 -0800 | [diff] [blame] | 8795 | S: Supported |
| 8796 | F: drivers/scsi/be2iscsi/ |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 8797 | |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 8798 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
Ajit Khaparde | fea3af6 | 2011-02-04 13:03:35 -0800 | [diff] [blame] | 8799 | M: Sathya Perla <sathya.perla@emulex.com> |
| 8800 | M: Subbu Seetharaman <subbu.seetharaman@emulex.com> |
| 8801 | M: Ajit Khaparde <ajit.khaparde@emulex.com> |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 8802 | L: netdev@vger.kernel.org |
Ajit Khaparde | fea3af6 | 2011-02-04 13:03:35 -0800 | [diff] [blame] | 8803 | W: http://www.emulex.com |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 8804 | S: Supported |
Jeff Kirsher | 9aebddd | 2011-05-13 00:37:27 -0700 | [diff] [blame] | 8805 | F: drivers/net/ethernet/emulex/benet/ |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 8806 | |
Selvin Xavier | d2928a8 | 2015-03-15 00:09:41 +0530 | [diff] [blame] | 8807 | EMULEX ONECONNECT ROCE DRIVER |
| 8808 | M: Selvin Xavier <selvin.xavier@emulex.com> |
| 8809 | M: Devesh Sharma <devesh.sharma@emulex.com> |
| 8810 | M: Mitesh Ahuja <mitesh.ahuja@emulex.com> |
| 8811 | L: linux-rdma@vger.kernel.org |
| 8812 | W: http://www.emulex.com |
| 8813 | S: Supported |
| 8814 | F: drivers/infiniband/hw/ocrdma/ |
| 8815 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 8816 | SFC NETWORK DRIVER |
Joe Perches | c06f51e | 2009-08-26 08:47:47 +0000 | [diff] [blame] | 8817 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
Shradha Shah | 8533ccf | 2014-01-23 13:19:55 +0000 | [diff] [blame] | 8818 | M: Shradha Shah <sshah@solarflare.com> |
Joe Perches | c06f51e | 2009-08-26 08:47:47 +0000 | [diff] [blame] | 8819 | L: netdev@vger.kernel.org |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 8820 | S: Supported |
Jeff Kirsher | 874aeea | 2011-05-13 00:17:42 -0700 | [diff] [blame] | 8821 | F: drivers/net/ethernet/sfc/ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 8822 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 8823 | SGI GRU DRIVER |
Bjorn Helgaas | cc883af | 2013-01-29 15:48:37 -0700 | [diff] [blame] | 8824 | M: Dimitri Sivanich <sivanich@sgi.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 8825 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8826 | F: drivers/misc/sgi-gru/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 8827 | |
| 8828 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8829 | M: Pat Gefre <pfg@sgi.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 8830 | L: linux-ia64@vger.kernel.org |
| 8831 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8832 | F: Documentation/ia64/serial.txt |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 8833 | F: drivers/tty/serial/ioc?_serial.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8834 | F: include/linux/ioc?.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 8835 | |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 8836 | SGI XP/XPC/XPNET DRIVER |
Robin Holt | e180383 | 2013-08-16 18:01:42 -0500 | [diff] [blame] | 8837 | M: Cliff Whickman <cpw@sgi.com> |
| 8838 | M: Robin Holt <robinmholt@gmail.com> |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 8839 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8840 | F: drivers/misc/sgi-xp/ |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 8841 | |
Antti Palosaari | 46eacf3 | 2014-04-15 06:21:03 -0300 | [diff] [blame] | 8842 | SI2157 MEDIA DRIVER |
| 8843 | M: Antti Palosaari <crope@iki.fi> |
| 8844 | L: linux-media@vger.kernel.org |
| 8845 | W: http://linuxtv.org/ |
| 8846 | W: http://palosaari.fi/linux/ |
| 8847 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 8848 | T: git git://linuxtv.org/anttip/media_tree.git |
| 8849 | S: Maintained |
| 8850 | F: drivers/media/tuners/si2157* |
| 8851 | |
Antti Palosaari | 75e2d5b | 2014-04-15 06:17:53 -0300 | [diff] [blame] | 8852 | SI2168 MEDIA DRIVER |
| 8853 | M: Antti Palosaari <crope@iki.fi> |
| 8854 | L: linux-media@vger.kernel.org |
| 8855 | W: http://linuxtv.org/ |
| 8856 | W: http://palosaari.fi/linux/ |
| 8857 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 8858 | T: git git://linuxtv.org/anttip/media_tree.git |
| 8859 | S: Maintained |
| 8860 | F: drivers/media/dvb-frontends/si2168* |
| 8861 | |
Hans Verkuil | 49cc629 | 2012-11-30 07:13:29 -0300 | [diff] [blame] | 8862 | SI470X FM RADIO RECEIVER I2C DRIVER |
| 8863 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 8864 | L: linux-media@vger.kernel.org |
| 8865 | T: git git://linuxtv.org/media_tree.git |
| 8866 | W: http://linuxtv.org |
| 8867 | S: Odd Fixes |
| 8868 | F: drivers/media/radio/si470x/radio-si470x-i2c.c |
| 8869 | |
| 8870 | SI470X FM RADIO RECEIVER USB DRIVER |
| 8871 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 8872 | L: linux-media@vger.kernel.org |
| 8873 | T: git git://linuxtv.org/media_tree.git |
| 8874 | W: http://linuxtv.org |
| 8875 | S: Maintained |
| 8876 | F: drivers/media/radio/si470x/radio-si470x-common.c |
| 8877 | F: drivers/media/radio/si470x/radio-si470x.h |
| 8878 | F: drivers/media/radio/si470x/radio-si470x-usb.c |
| 8879 | |
Eduardo Valentin | c937ca0 | 2013-02-27 10:37:39 -0300 | [diff] [blame] | 8880 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
| 8881 | M: Eduardo Valentin <edubezval@gmail.com> |
| 8882 | L: linux-media@vger.kernel.org |
| 8883 | T: git git://linuxtv.org/media_tree.git |
| 8884 | W: http://linuxtv.org |
| 8885 | S: Odd Fixes |
Dinesh Ram | 99995de | 2013-10-15 12:24:43 -0300 | [diff] [blame] | 8886 | F: drivers/media/radio/si4713/si4713.? |
Eduardo Valentin | c937ca0 | 2013-02-27 10:37:39 -0300 | [diff] [blame] | 8887 | |
| 8888 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER |
| 8889 | M: Eduardo Valentin <edubezval@gmail.com> |
| 8890 | L: linux-media@vger.kernel.org |
| 8891 | T: git git://linuxtv.org/media_tree.git |
| 8892 | W: http://linuxtv.org |
| 8893 | S: Odd Fixes |
Dinesh Ram | 99995de | 2013-10-15 12:24:43 -0300 | [diff] [blame] | 8894 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
| 8895 | |
| 8896 | SI4713 FM RADIO TRANSMITTER USB DRIVER |
| 8897 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 8898 | L: linux-media@vger.kernel.org |
| 8899 | T: git git://linuxtv.org/media_tree.git |
| 8900 | W: http://linuxtv.org |
| 8901 | S: Maintained |
| 8902 | F: drivers/media/radio/si4713/radio-usb-si4713.c |
Eduardo Valentin | c937ca0 | 2013-02-27 10:37:39 -0300 | [diff] [blame] | 8903 | |
Mauro Carvalho Chehab | beb91d4 | 2013-03-19 12:42:45 -0300 | [diff] [blame] | 8904 | SIANO DVB DRIVER |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 8905 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | beb91d4 | 2013-03-19 12:42:45 -0300 | [diff] [blame] | 8906 | L: linux-media@vger.kernel.org |
| 8907 | W: http://linuxtv.org |
| 8908 | T: git git://linuxtv.org/media_tree.git |
| 8909 | S: Odd fixes |
| 8910 | F: drivers/media/common/siano/ |
Mauro Carvalho Chehab | beb91d4 | 2013-03-19 12:42:45 -0300 | [diff] [blame] | 8911 | F: drivers/media/usb/siano/ |
Mauro Carvalho Chehab | beb91d4 | 2013-03-19 12:42:45 -0300 | [diff] [blame] | 8912 | F: drivers/media/usb/siano/ |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 8913 | F: drivers/media/mmc/siano/ |
Mauro Carvalho Chehab | beb91d4 | 2013-03-19 12:42:45 -0300 | [diff] [blame] | 8914 | |
Hans de Goede | 6f15b60 | 2014-11-14 13:26:46 +0100 | [diff] [blame] | 8915 | SIMPLEFB FB DRIVER |
| 8916 | M: Hans de Goede <hdegoede@redhat.com> |
| 8917 | L: linux-fbdev@vger.kernel.org |
| 8918 | S: Maintained |
| 8919 | F: Documentation/devicetree/bindings/video/simple-framebuffer.txt |
| 8920 | F: drivers/video/fbdev/simplefb.c |
| 8921 | F: include/linux/platform_data/simplefb.h |
| 8922 | |
Guennadi Liakhovetski | b618b69 | 2012-11-29 06:57:30 -0300 | [diff] [blame] | 8923 | SH_VEU V4L2 MEM2MEM DRIVER |
Guennadi Liakhovetski | b618b69 | 2012-11-29 06:57:30 -0300 | [diff] [blame] | 8924 | L: linux-media@vger.kernel.org |
Guennadi Liakhovetski | bb60fcb | 2013-11-24 17:44:08 -0300 | [diff] [blame] | 8925 | S: Orphan |
Guennadi Liakhovetski | b618b69 | 2012-11-29 06:57:30 -0300 | [diff] [blame] | 8926 | F: drivers/media/platform/sh_veu.c |
Guennadi Liakhovetski | b618b69 | 2012-11-29 06:57:30 -0300 | [diff] [blame] | 8927 | |
| 8928 | SH_VOU V4L2 OUTPUT DRIVER |
Guennadi Liakhovetski | b618b69 | 2012-11-29 06:57:30 -0300 | [diff] [blame] | 8929 | L: linux-media@vger.kernel.org |
Guennadi Liakhovetski | bb60fcb | 2013-11-24 17:44:08 -0300 | [diff] [blame] | 8930 | S: Orphan |
Guennadi Liakhovetski | b618b69 | 2012-11-29 06:57:30 -0300 | [diff] [blame] | 8931 | F: drivers/media/platform/sh_vou.c |
| 8932 | F: include/media/sh_vou.h |
| 8933 | |
Len Brown | 6349d99 | 2009-08-14 15:07:14 -0400 | [diff] [blame] | 8934 | SIMPLE FIRMWARE INTERFACE (SFI) |
Joe Perches | 2bf822d | 2009-10-26 16:49:44 -0700 | [diff] [blame] | 8935 | M: Len Brown <lenb@kernel.org> |
Len Brown | 6349d99 | 2009-08-14 15:07:14 -0400 | [diff] [blame] | 8936 | L: sfi-devel@simplefirmware.org |
| 8937 | W: http://simplefirmware.org/ |
| 8938 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 8939 | S: Supported |
Joe Perches | 943fc81 | 2011-03-22 16:34:36 -0700 | [diff] [blame] | 8940 | F: arch/x86/platform/sfi/ |
Len Brown | 6349d99 | 2009-08-14 15:07:14 -0400 | [diff] [blame] | 8941 | F: drivers/sfi/ |
| 8942 | F: include/linux/sfi*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 8943 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8944 | SIMTEC EB110ATX (Chalice CATS) |
| 8945 | P: Ben Dooks |
Ben Dooks | b16957c | 2011-02-01 15:52:38 -0800 | [diff] [blame] | 8946 | P: Vincent Sanders <vince@simtec.co.uk> |
| 8947 | M: Simtec Linux Team <linux@simtec.co.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8948 | W: http://www.simtec.co.uk/products/EB110ATX/ |
| 8949 | S: Supported |
| 8950 | |
| 8951 | SIMTEC EB2410ITX (BAST) |
| 8952 | P: Ben Dooks |
Ben Dooks | b16957c | 2011-02-01 15:52:38 -0800 | [diff] [blame] | 8953 | P: Vincent Sanders <vince@simtec.co.uk> |
| 8954 | M: Simtec Linux Team <linux@simtec.co.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8955 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
| 8956 | S: Supported |
Joe Perches | 15dba38 | 2013-09-11 14:23:36 -0700 | [diff] [blame] | 8957 | F: arch/arm/mach-s3c24xx/mach-bast.c |
| 8958 | F: arch/arm/mach-s3c24xx/bast-ide.c |
| 8959 | F: arch/arm/mach-s3c24xx/bast-irq.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8960 | |
Kevin Hilman | 4c5adde | 2009-06-19 12:02:33 -0700 | [diff] [blame] | 8961 | TI DAVINCI MACHINE SUPPORT |
Kevin Hilman | 3ba789c | 2011-02-08 13:23:09 -0800 | [diff] [blame] | 8962 | M: Sekhar Nori <nsekhar@ti.com> |
Kevin Hilman | c69d72a | 2012-11-28 15:46:45 -0800 | [diff] [blame] | 8963 | M: Kevin Hilman <khilman@deeprootsystems.com> |
Sekhar Nori | c9f46a8 | 2012-01-27 21:12:20 +0530 | [diff] [blame] | 8964 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 8965 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
Kevin Hilman | 4c5adde | 2009-06-19 12:02:33 -0700 | [diff] [blame] | 8966 | S: Supported |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 8967 | F: arch/arm/mach-davinci/ |
Jean Delvare | 046d0a3 | 2012-01-12 20:32:05 +0100 | [diff] [blame] | 8968 | F: drivers/i2c/busses/i2c-davinci.c |
Kevin Hilman | 4c5adde | 2009-06-19 12:02:33 -0700 | [diff] [blame] | 8969 | |
Lad, Prabhakar | 8d4b3f0 | 2012-11-19 05:48:21 -0300 | [diff] [blame] | 8970 | TI DAVINCI SERIES MEDIA DRIVER |
Lad, Prabhakar | 9ce5eca | 2013-04-15 01:32:44 -0300 | [diff] [blame] | 8971 | M: Lad, Prabhakar <prabhakar.csengg@gmail.com> |
Lad, Prabhakar | 8d4b3f0 | 2012-11-19 05:48:21 -0300 | [diff] [blame] | 8972 | L: linux-media@vger.kernel.org |
Lad, Prabhakar | 8d4b3f0 | 2012-11-19 05:48:21 -0300 | [diff] [blame] | 8973 | W: http://linuxtv.org/ |
| 8974 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 8975 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git |
Lad, Prabhakar | 9ce5eca | 2013-04-15 01:32:44 -0300 | [diff] [blame] | 8976 | S: Maintained |
Lad, Prabhakar | 8d4b3f0 | 2012-11-19 05:48:21 -0300 | [diff] [blame] | 8977 | F: drivers/media/platform/davinci/ |
| 8978 | F: include/media/davinci/ |
| 8979 | |
Benoit Parrot | 417d2e5 | 2014-12-09 16:43:44 -0300 | [diff] [blame] | 8980 | TI AM437X VPFE DRIVER |
| 8981 | M: Lad, Prabhakar <prabhakar.csengg@gmail.com> |
| 8982 | L: linux-media@vger.kernel.org |
| 8983 | W: http://linuxtv.org/ |
| 8984 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 8985 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git |
| 8986 | S: Maintained |
| 8987 | F: drivers/media/platform/am437x/ |
| 8988 | |
Benoit Parrot | c4c0283 | 2015-03-20 18:03:52 -0300 | [diff] [blame] | 8989 | OV2659 OMNIVISION SENSOR DRIVER |
| 8990 | M: Lad, Prabhakar <prabhakar.csengg@gmail.com> |
| 8991 | L: linux-media@vger.kernel.org |
| 8992 | W: http://linuxtv.org/ |
| 8993 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 8994 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git |
| 8995 | S: Maintained |
| 8996 | F: drivers/media/i2c/ov2659.c |
| 8997 | F: include/media/ov2659.h |
| 8998 | |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 8999 | SIS 190 ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9000 | M: Francois Romieu <romieu@fr.zoreil.com> |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 9001 | L: netdev@vger.kernel.org |
| 9002 | S: Maintained |
Jeff Kirsher | 8c7de40 | 2011-06-13 08:43:49 -0700 | [diff] [blame] | 9003 | F: drivers/net/ethernet/sis/sis190.c |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 9004 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9005 | SIS 900/7016 FAST ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9006 | M: Daniele Venzano <venza@brownhat.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9007 | W: http://www.brownhat.org/sis900.html |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 9008 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9009 | S: Maintained |
Jeff Kirsher | 8c7de40 | 2011-06-13 08:43:49 -0700 | [diff] [blame] | 9010 | F: drivers/net/ethernet/sis/sis900.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9011 | |
| 9012 | SIS FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9013 | M: Thomas Winischhofer <thomas@winischhofer.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9014 | W: http://www.winischhofer.net/linuxsisvga.shtml |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 9015 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9016 | F: Documentation/fb/sisfb.txt |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 9017 | F: drivers/video/fbdev/sis/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9018 | F: include/video/sisfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9019 | |
| 9020 | SIS USB2VGA DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9021 | M: Thomas Winischhofer <thomas@winischhofer.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9022 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
| 9023 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9024 | F: drivers/usb/misc/sisusbvga/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9025 | |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 9026 | SLAB ALLOCATOR |
Christoph Lameter | 16e943b | 2014-06-23 13:22:03 -0700 | [diff] [blame] | 9027 | M: Christoph Lameter <cl@linux.com> |
Pekka Enberg | 2ed1c52 | 2011-01-15 13:30:04 +0200 | [diff] [blame] | 9028 | M: Pekka Enberg <penberg@kernel.org> |
Christoph Lameter | 16e943b | 2014-06-23 13:22:03 -0700 | [diff] [blame] | 9029 | M: David Rientjes <rientjes@google.com> |
| 9030 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> |
| 9031 | M: Andrew Morton <akpm@linux-foundation.org> |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 9032 | L: linux-mm@kvack.org |
| 9033 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9034 | F: include/linux/sl?b*.h |
Christoph Lameter | 16e943b | 2014-06-23 13:22:03 -0700 | [diff] [blame] | 9035 | F: mm/sl?b* |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 9036 | |
Paul E. McKenney | 9fab9787 | 2012-05-07 09:36:34 -0700 | [diff] [blame] | 9037 | SLEEPABLE READ-COPY UPDATE (SRCU) |
| 9038 | M: Lai Jiangshan <laijs@cn.fujitsu.com> |
| 9039 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
Paul E. McKenney | ab0afd6 | 2014-06-03 08:17:06 -0700 | [diff] [blame] | 9040 | M: Josh Triplett <josh@joshtriplett.org> |
Paul E. McKenney | 4632a19 | 2014-05-30 15:37:24 -0700 | [diff] [blame] | 9041 | R: Steven Rostedt <rostedt@goodmis.org> |
| 9042 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 9043 | L: linux-kernel@vger.kernel.org |
Paul E. McKenney | 9fab9787 | 2012-05-07 09:36:34 -0700 | [diff] [blame] | 9044 | W: http://www.rdrop.com/users/paulmck/RCU/ |
| 9045 | S: Supported |
| 9046 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
Paul E. McKenney | 4102ada | 2013-10-08 20:23:47 -0700 | [diff] [blame] | 9047 | F: include/linux/srcu.h |
| 9048 | F: kernel/rcu/srcu.c |
Paul E. McKenney | 9fab9787 | 2012-05-07 09:36:34 -0700 | [diff] [blame] | 9049 | |
Casey Schaufler | 6637284 | 2012-05-23 18:34:52 -0700 | [diff] [blame] | 9050 | SMACK SECURITY MODULE |
| 9051 | M: Casey Schaufler <casey@schaufler-ca.com> |
| 9052 | L: linux-security-module@vger.kernel.org |
| 9053 | W: http://schaufler-ca.com |
| 9054 | T: git git://git.gitorious.org/smack-next/kernel.git |
| 9055 | S: Maintained |
| 9056 | F: Documentation/security/Smack.txt |
| 9057 | F: security/smack/ |
| 9058 | |
Kevin Hilman | 20651e0 | 2014-09-24 16:30:00 -0700 | [diff] [blame] | 9059 | DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
Kevin Hilman | 68ace3e | 2013-08-06 16:57:14 -0700 | [diff] [blame] | 9060 | M: Kevin Hilman <khilman@kernel.org> |
| 9061 | M: Nishanth Menon <nm@ti.com> |
| 9062 | S: Maintained |
Kevin Hilman | 20651e0 | 2014-09-24 16:30:00 -0700 | [diff] [blame] | 9063 | F: drivers/power/avs/ |
Kevin Hilman | 68ace3e | 2013-08-06 16:57:14 -0700 | [diff] [blame] | 9064 | F: include/linux/power/smartreflex.h |
| 9065 | L: linux-pm@vger.kernel.org |
| 9066 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9067 | SMC91x ETHERNET DRIVER |
Nicolas Pitre | 2f82af0 | 2009-09-14 03:25:28 -0400 | [diff] [blame] | 9068 | M: Nicolas Pitre <nico@fluxnic.net> |
Nicolas Pitre | 18e2842 | 2010-05-03 16:43:47 -0400 | [diff] [blame] | 9069 | S: Odd Fixes |
Jeff Kirsher | ae15043 | 2011-05-12 20:21:07 -0700 | [diff] [blame] | 9070 | F: drivers/net/ethernet/smsc/smc91x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9071 | |
Sakari Ailus | e8e3162 | 2012-11-12 18:14:39 -0300 | [diff] [blame] | 9072 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
| 9073 | M: Sakari Ailus <sakari.ailus@iki.fi> |
| 9074 | L: linux-media@vger.kernel.org |
| 9075 | S: Maintained |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 9076 | F: drivers/media/i2c/smiapp/ |
Sakari Ailus | e8e3162 | 2012-11-12 18:14:39 -0300 | [diff] [blame] | 9077 | F: include/media/smiapp.h |
| 9078 | F: drivers/media/i2c/smiapp-pll.c |
| 9079 | F: drivers/media/i2c/smiapp-pll.h |
Sakari Ailus | fd2bfdc | 2014-11-16 12:08:44 -0300 | [diff] [blame] | 9080 | F: include/uapi/linux/smiapp.h |
Sakari Ailus | a2cec3c | 2014-11-06 18:16:13 -0300 | [diff] [blame] | 9081 | F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt |
Sakari Ailus | e8e3162 | 2012-11-12 18:14:39 -0300 | [diff] [blame] | 9082 | |
Guenter Roeck | 920fa1f | 2010-08-09 17:21:06 -0700 | [diff] [blame] | 9083 | SMM665 HARDWARE MONITOR DRIVER |
| 9084 | M: Guenter Roeck <linux@roeck-us.net> |
| 9085 | L: lm-sensors@lm-sensors.org |
| 9086 | S: Maintained |
| 9087 | F: Documentation/hwmon/smm665 |
| 9088 | F: drivers/hwmon/smm665.c |
| 9089 | |
Steve Glendinning | 9df7305 | 2010-08-14 21:08:54 +0200 | [diff] [blame] | 9090 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 9091 | M: Steve Glendinning <steve.glendinning@shawell.net> |
Steve Glendinning | 9df7305 | 2010-08-14 21:08:54 +0200 | [diff] [blame] | 9092 | L: lm-sensors@lm-sensors.org |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 9093 | S: Maintained |
Steve Glendinning | 9df7305 | 2010-08-14 21:08:54 +0200 | [diff] [blame] | 9094 | F: Documentation/hwmon/emc2103 |
| 9095 | F: drivers/hwmon/emc2103.c |
| 9096 | |
Hans de Goede | a98d506 | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 9097 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
| 9098 | M: Hans de Goede <hdegoede@redhat.com> |
| 9099 | L: lm-sensors@lm-sensors.org |
| 9100 | S: Supported |
| 9101 | F: Documentation/hwmon/sch5627 |
| 9102 | F: drivers/hwmon/sch5627.c |
| 9103 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 9104 | SMSC47B397 HARDWARE MONITOR DRIVER |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 9105 | M: Jean Delvare <jdelvare@suse.de> |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 9106 | L: lm-sensors@lm-sensors.org |
| 9107 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9108 | F: Documentation/hwmon/smsc47b397 |
| 9109 | F: drivers/hwmon/smsc47b397.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 9110 | |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 9111 | SMSC911x ETHERNET DRIVER |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 9112 | M: Steve Glendinning <steve.glendinning@shawell.net> |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 9113 | L: netdev@vger.kernel.org |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 9114 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9115 | F: include/linux/smsc911x.h |
Jeff Kirsher | ae15043 | 2011-05-12 20:21:07 -0700 | [diff] [blame] | 9116 | F: drivers/net/ethernet/smsc/smsc911x.* |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 9117 | |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 9118 | SMSC9420 PCI ETHERNET DRIVER |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 9119 | M: Steve Glendinning <steve.glendinning@shawell.net> |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 9120 | L: netdev@vger.kernel.org |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 9121 | S: Maintained |
Jeff Kirsher | ae15043 | 2011-05-12 20:21:07 -0700 | [diff] [blame] | 9122 | F: drivers/net/ethernet/smsc/smsc9420.* |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 9123 | |
Steve Glendinning | 3c8a63e | 2011-08-18 15:20:07 +0100 | [diff] [blame] | 9124 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 9125 | M: Steve Glendinning <steve.glendinning@shawell.net> |
Steve Glendinning | 3c8a63e | 2011-08-18 15:20:07 +0100 | [diff] [blame] | 9126 | L: linux-fbdev@vger.kernel.org |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 9127 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 9128 | F: drivers/video/fbdev/smscufx.c |
Steve Glendinning | 3c8a63e | 2011-08-18 15:20:07 +0100 | [diff] [blame] | 9129 | |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 9130 | SOC-CAMERA V4L2 SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9131 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 9132 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 9133 | T: git git://linuxtv.org/media_tree.git |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 9134 | S: Maintained |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 9135 | F: include/media/soc* |
| 9136 | F: drivers/media/i2c/soc_camera/ |
| 9137 | F: drivers/media/platform/soc_camera/ |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 9138 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9139 | SOEKRIS NET48XX LED SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9140 | M: Chris Boot <bootc@bootc.net> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9141 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9142 | F: drivers/leds/leds-net48xx.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9143 | |
Joe Perches | e3994db | 2014-07-30 00:38:42 -0300 | [diff] [blame] | 9144 | SOFTLOGIC 6x10 MPEG CODEC |
Andrey Utkin | 9661975d | 2014-11-17 13:59:23 -0300 | [diff] [blame] | 9145 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> |
| 9146 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> |
| 9147 | M: Andrey Utkin <andrey.krieger.utkin@gmail.com> |
Ismael Luceno | 1f141f6 | 2015-01-20 11:43:50 -0300 | [diff] [blame] | 9148 | M: Ismael Luceno <ismael@iodev.co.uk> |
Joe Perches | e3994db | 2014-07-30 00:38:42 -0300 | [diff] [blame] | 9149 | L: linux-media@vger.kernel.org |
| 9150 | S: Supported |
| 9151 | F: drivers/media/pci/solo6x10/ |
| 9152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9153 | SOFTWARE RAID (Multiple Disks) SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9154 | M: Neil Brown <neilb@suse.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9155 | L: linux-raid@vger.kernel.org |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 9156 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9157 | F: drivers/md/ |
| 9158 | F: include/linux/raid/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 9159 | F: include/uapi/linux/raid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9161 | SONIC NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9162 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 9163 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9164 | S: Maintained |
Jeff Kirsher | d9fb9f3 | 2011-05-18 05:14:22 -0700 | [diff] [blame] | 9165 | F: drivers/net/ethernet/natsemi/sonic.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9166 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 9167 | SONICS SILICON BACKPLANE DRIVER (SSB) |
Michael Büsch | eb032b9 | 2011-07-04 20:50:05 +0200 | [diff] [blame] | 9168 | M: Michael Buesch <m@bues.ch> |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 9169 | L: netdev@vger.kernel.org |
| 9170 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9171 | F: drivers/ssb/ |
| 9172 | F: include/linux/ssb/ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 9173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9174 | SONY VAIO CONTROL DEVICE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9175 | M: Mattia Dongili <malattia@linux.it> |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 9176 | L: platform-driver-x86@vger.kernel.org |
Mattia Dongili | 5b18167 | 2007-03-12 21:43:57 +0100 | [diff] [blame] | 9177 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9178 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9179 | F: Documentation/laptops/sony-laptop.txt |
| 9180 | F: drivers/char/sonypi.c |
| 9181 | F: drivers/platform/x86/sony-laptop.c |
| 9182 | F: include/linux/sony-laptop.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9183 | |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 9184 | SONY MEMORYSTICK CARD SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9185 | M: Alex Dubov <oakad@yahoo.com> |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 9186 | W: http://tifmxx.berlios.de/ |
| 9187 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9188 | F: drivers/memstick/host/tifm_ms.c |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 9189 | |
Maxim Levitsky | 0ab3049 | 2013-09-11 14:26:02 -0700 | [diff] [blame] | 9190 | SONY MEMORYSTICK STANDARD SUPPORT |
| 9191 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
| 9192 | S: Maintained |
| 9193 | F: drivers/memstick/core/ms_block.* |
| 9194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9195 | SOUND |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9196 | M: Jaroslav Kysela <perex@perex.cz> |
| 9197 | M: Takashi Iwai <tiwai@suse.de> |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 9198 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 9199 | W: http://www.alsa-project.org/ |
Takashi Iwai | dde7ad8 | 2011-10-25 10:00:22 +0200 | [diff] [blame] | 9200 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 9201 | T: git git://git.alsa-project.org/alsa-kernel.git |
Takashi Iwai | ff4a8f3 | 2014-05-13 14:55:51 +0200 | [diff] [blame] | 9202 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9203 | S: Maintained |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 9204 | F: Documentation/sound/ |
| 9205 | F: include/sound/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 9206 | F: include/uapi/sound/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9207 | F: sound/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9208 | |
Mark Brown | 33bbe14 | 2013-08-09 18:10:50 +0100 | [diff] [blame] | 9209 | SOUND - COMPRESSED AUDIO |
| 9210 | M: Vinod Koul <vinod.koul@intel.com> |
| 9211 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 9212 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
| 9213 | S: Supported |
Vinod Koul | f672f31 | 2013-08-12 11:15:27 +0530 | [diff] [blame] | 9214 | F: Documentation/sound/alsa/compress_offload.txt |
Mark Brown | 33bbe14 | 2013-08-09 18:10:50 +0100 | [diff] [blame] | 9215 | F: include/sound/compress_driver.h |
Vinod Koul | f672f31 | 2013-08-12 11:15:27 +0530 | [diff] [blame] | 9216 | F: include/uapi/sound/compress_* |
Mark Brown | 33bbe14 | 2013-08-09 18:10:50 +0100 | [diff] [blame] | 9217 | F: sound/core/compress_offload.c |
| 9218 | F: sound/soc/soc-compress.c |
| 9219 | |
Mark Brown | bd903bd | 2008-11-19 19:16:05 +0000 | [diff] [blame] | 9220 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
Liam Girdwood | 6b9cf5c | 2013-01-15 15:13:27 +0000 | [diff] [blame] | 9221 | M: Liam Girdwood <lgirdwood@gmail.com> |
Mark Brown | b02e48f | 2013-04-12 11:39:57 +0100 | [diff] [blame] | 9222 | M: Mark Brown <broonie@kernel.org> |
Mark Brown | 86f14df | 2011-11-02 21:36:32 +0000 | [diff] [blame] | 9223 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 9224 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Liam Girdwood | b0b8daf | 2008-09-18 14:36:37 +0100 | [diff] [blame] | 9225 | W: http://alsa-project.org/main/index.php/ASoC |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 9226 | S: Supported |
Mark Brown | 2820f61 | 2013-08-11 19:35:11 +0100 | [diff] [blame] | 9227 | F: Documentation/sound/alsa/soc/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9228 | F: sound/soc/ |
Mark Brown | e6e5512 | 2009-05-05 11:10:24 +0100 | [diff] [blame] | 9229 | F: include/sound/soc* |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 9230 | |
Mark Brown | d7f8761 | 2013-10-19 14:33:54 +0100 | [diff] [blame] | 9231 | SOUND - DMAENGINE HELPERS |
| 9232 | M: Lars-Peter Clausen <lars@metafoo.de> |
| 9233 | S: Supported |
| 9234 | F: include/sound/dmaengine_pcm.h |
| 9235 | F: sound/core/pcm_dmaengine.c |
| 9236 | F: sound/soc/soc-generic-dmaengine-pcm.c |
| 9237 | |
Olli Salonen | 990a6a9 | 2014-08-22 13:50:42 -0300 | [diff] [blame] | 9238 | SP2 MEDIA DRIVER |
| 9239 | M: Olli Salonen <olli.salonen@iki.fi> |
| 9240 | L: linux-media@vger.kernel.org |
| 9241 | W: http://linuxtv.org/ |
| 9242 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9243 | S: Maintained |
| 9244 | F: drivers/media/dvb-frontends/sp2* |
| 9245 | |
Sam Ravnborg | 473321f | 2009-01-04 15:47:49 -0800 | [diff] [blame] | 9246 | SPARC + UltraSPARC (sparc/sparc64) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9247 | M: "David S. Miller" <davem@davemloft.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9248 | L: sparclinux@vger.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 9249 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 9250 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
| 9251 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9252 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9253 | F: arch/sparc/ |
David S. Miller | 7765b8b | 2010-07-20 23:37:12 -0700 | [diff] [blame] | 9254 | F: drivers/sbus/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9255 | |
David S. Miller | 6404fcc | 2010-03-16 01:00:17 -0700 | [diff] [blame] | 9256 | SPARC SERIAL DRIVERS |
| 9257 | M: "David S. Miller" <davem@davemloft.net> |
| 9258 | L: sparclinux@vger.kernel.org |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 9259 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
| 9260 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git |
David S. Miller | 6404fcc | 2010-03-16 01:00:17 -0700 | [diff] [blame] | 9261 | S: Maintained |
Paul Gortmaker | 6816383 | 2012-02-09 18:48:19 -0500 | [diff] [blame] | 9262 | F: include/linux/sunserialcore.h |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 9263 | F: drivers/tty/serial/suncore.c |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 9264 | F: drivers/tty/serial/sunhv.c |
| 9265 | F: drivers/tty/serial/sunsab.c |
| 9266 | F: drivers/tty/serial/sunsab.h |
| 9267 | F: drivers/tty/serial/sunsu.c |
| 9268 | F: drivers/tty/serial/sunzilog.c |
| 9269 | F: drivers/tty/serial/sunzilog.h |
David S. Miller | 6404fcc | 2010-03-16 01:00:17 -0700 | [diff] [blame] | 9270 | |
Christopher Li | 389325b | 2012-04-05 14:25:14 -0700 | [diff] [blame] | 9271 | SPARSE CHECKER |
| 9272 | M: "Christopher Li" <sparse@chrisli.org> |
| 9273 | L: linux-sparse@vger.kernel.org |
| 9274 | W: https://sparse.wiki.kernel.org/ |
| 9275 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git |
| 9276 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git |
| 9277 | S: Maintained |
| 9278 | F: include/linux/compiler.h |
| 9279 | |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 9280 | SPEAR PLATFORM SUPPORT |
Andy Shevchenko | 2d8a3b3 | 2012-10-04 17:12:39 -0700 | [diff] [blame] | 9281 | M: Viresh Kumar <viresh.linux@gmail.com> |
Viresh Kumar | 9cc2368 | 2014-04-18 15:07:16 -0700 | [diff] [blame] | 9282 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
Viresh Kumar | fbfa074 | 2012-03-15 15:17:09 -0700 | [diff] [blame] | 9283 | L: spear-devel@list.st.com |
| 9284 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 9285 | W: http://www.st.com/spear |
| 9286 | S: Maintained |
Joe Perches | 281e192 | 2013-09-11 14:23:37 -0700 | [diff] [blame] | 9287 | F: arch/arm/mach-spear/ |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 9288 | |
| 9289 | SPEAR CLOCK FRAMEWORK SUPPORT |
Andy Shevchenko | 2d8a3b3 | 2012-10-04 17:12:39 -0700 | [diff] [blame] | 9290 | M: Viresh Kumar <viresh.linux@gmail.com> |
Viresh Kumar | fbfa074 | 2012-03-15 15:17:09 -0700 | [diff] [blame] | 9291 | L: spear-devel@list.st.com |
| 9292 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 9293 | W: http://www.st.com/spear |
| 9294 | S: Maintained |
Viresh Kumar | 5df33a6 | 2012-04-10 09:02:35 +0530 | [diff] [blame] | 9295 | F: drivers/clk/spear/ |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 9296 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9297 | SPI SUBSYSTEM |
Mark Brown | b02e48f | 2013-04-12 11:39:57 +0100 | [diff] [blame] | 9298 | M: Mark Brown <broonie@kernel.org> |
Mark Brown | dfbe403 | 2013-05-17 13:12:52 +0100 | [diff] [blame] | 9299 | L: linux-spi@vger.kernel.org |
Mark Brown | e7e4e13 | 2013-04-18 18:18:47 +0100 | [diff] [blame] | 9300 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 9301 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9302 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9303 | F: Documentation/spi/ |
| 9304 | F: drivers/spi/ |
| 9305 | F: include/linux/spi/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 9306 | F: include/uapi/linux/spi/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9307 | |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 9308 | SPIDERNET NETWORK DRIVER for CELL |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9309 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
| 9310 | M: Jens Osterkamp <jens@de.ibm.com> |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 9311 | L: netdev@vger.kernel.org |
| 9312 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9313 | F: Documentation/networking/spider_net.txt |
Jeff Kirsher | 8df158a | 2011-07-30 00:36:02 -0700 | [diff] [blame] | 9314 | F: drivers/net/ethernet/toshiba/spider_net* |
Jim Lewis | 2752e40 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 9315 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9316 | SPU FILE SYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9317 | M: Jeremy Kerr <jk@ozlabs.org> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 9318 | L: linuxppc-dev@lists.ozlabs.org |
| 9319 | L: cbe-oss-dev@lists.ozlabs.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9320 | W: http://www.ibm.com/developerworks/power/cell/ |
| 9321 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9322 | F: Documentation/filesystems/spufs.txt |
| 9323 | F: arch/powerpc/platforms/cell/spufs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9324 | |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 9325 | SQUASHFS FILE SYSTEM |
Phillip Lougher | d7f2ff6 | 2011-05-26 10:39:56 +0100 | [diff] [blame] | 9326 | M: Phillip Lougher <phillip@squashfs.org.uk> |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 9327 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
| 9328 | W: http://squashfs.org.uk |
| 9329 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9330 | F: Documentation/filesystems/squashfs.txt |
| 9331 | F: fs/squashfs/ |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 9332 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9333 | SRM (Alpha) environment access |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9334 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9335 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9336 | F: arch/alpha/kernel/srm_env.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9337 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 9338 | STABLE BRANCH |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 9339 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Joe Perches | bc7a2f3 | 2011-12-09 13:54:34 -0800 | [diff] [blame] | 9340 | L: stable@vger.kernel.org |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 9341 | S: Supported |
Greg Kroah-Hartman | 7b175c4 | 2013-06-18 12:58:12 -0700 | [diff] [blame] | 9342 | F: Documentation/stable_kernel_rules.txt |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9343 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 9344 | STAGING SUBSYSTEM |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 9345 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Greg Kroah-Hartman | 630081f | 2011-10-03 16:02:41 -0700 | [diff] [blame] | 9346 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
Greg Kroah-Hartman | 1c6ccf6 | 2009-06-05 11:23:47 -0700 | [diff] [blame] | 9347 | L: devel@driverdev.osuosl.org |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 9348 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9349 | F: drivers/staging/ |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 9350 | |
Joe Perches | ebd3d01 | 2011-07-05 09:42:02 -0700 | [diff] [blame] | 9351 | STAGING - COMEDI |
| 9352 | M: Ian Abbott <abbotti@mev.co.uk> |
Lidza Louina | 81b884c | 2013-07-24 11:29:33 -0400 | [diff] [blame] | 9353 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
Joe Perches | ebd3d01 | 2011-07-05 09:42:02 -0700 | [diff] [blame] | 9354 | S: Odd Fixes |
| 9355 | F: drivers/staging/comedi/ |
| 9356 | |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 9357 | STAGING - FLARION FT1000 DRIVERS |
| 9358 | M: Marek Belisko <marek.belisko@gmail.com> |
| 9359 | S: Odd Fixes |
| 9360 | F: drivers/staging/ft1000/ |
| 9361 | |
Joe Perches | 6c1bb42 | 2011-07-05 09:42:07 -0700 | [diff] [blame] | 9362 | STAGING - INDUSTRIAL IO |
Sachin Kamat | 030a13d | 2013-09-11 11:00:00 +0100 | [diff] [blame] | 9363 | M: Jonathan Cameron <jic23@kernel.org> |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 9364 | L: linux-iio@vger.kernel.org |
Joe Perches | 6c1bb42 | 2011-07-05 09:42:07 -0700 | [diff] [blame] | 9365 | S: Odd Fixes |
| 9366 | F: drivers/staging/iio/ |
| 9367 | |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 9368 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
| 9369 | M: Jarod Wilson <jarod@wilsonet.com> |
| 9370 | W: http://www.lirc.org/ |
| 9371 | S: Odd Fixes |
Joe Perches | b2b0186 | 2012-01-10 15:09:01 -0800 | [diff] [blame] | 9372 | F: drivers/staging/media/lirc/ |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 9373 | |
Oleg Drokin | f5e5de1 | 2014-08-15 12:48:14 -0400 | [diff] [blame] | 9374 | STAGING - LUSTRE PARALLEL FILESYSTEM |
| 9375 | M: Oleg Drokin <oleg.drokin@intel.com> |
| 9376 | M: Andreas Dilger <andreas.dilger@intel.com> |
| 9377 | L: HPDD-discuss@lists.01.org (moderated for non-subscribers) |
| 9378 | W: http://lustre.opensfs.org/ |
| 9379 | S: Maintained |
| 9380 | F: drivers/staging/lustre |
| 9381 | |
Marc Dietrich | 7c6b6c7 | 2011-09-27 19:00:46 +0200 | [diff] [blame] | 9382 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
Julian Andres Klode | b812538 | 2011-09-27 19:01:05 +0200 | [diff] [blame] | 9383 | M: Julian Andres Klode <jak@jak-linux.org> |
Marc Dietrich | 7c6b6c7 | 2011-09-27 19:00:46 +0200 | [diff] [blame] | 9384 | M: Marc Dietrich <marvin24@gmx.de> |
| 9385 | L: ac100@lists.launchpad.net (moderated for non-subscribers) |
Stephen Warren | 5d96bf4 | 2013-02-27 17:02:54 -0800 | [diff] [blame] | 9386 | L: linux-tegra@vger.kernel.org |
Marc Dietrich | 7c6b6c7 | 2011-09-27 19:00:46 +0200 | [diff] [blame] | 9387 | S: Maintained |
| 9388 | F: drivers/staging/nvec/ |
| 9389 | |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 9390 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
Jens Frederich | 3140b45 | 2013-08-04 20:57:43 +0200 | [diff] [blame] | 9391 | M: Jens Frederich <jfrederich@gmail.com> |
| 9392 | M: Daniel Drake <dsd@laptop.org> |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 9393 | M: Jon Nettleton <jon.nettleton@gmail.com> |
| 9394 | W: http://wiki.laptop.org/go/DCON |
Jens Frederich | 3140b45 | 2013-08-04 20:57:43 +0200 | [diff] [blame] | 9395 | S: Maintained |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 9396 | F: drivers/staging/olpc_dcon/ |
| 9397 | |
Chris Kelly | 94cfdd1 | 2012-03-14 10:55:42 +0000 | [diff] [blame] | 9398 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
Rupesh Gujare | 96747a8 | 2014-05-19 15:17:30 +0100 | [diff] [blame] | 9399 | M: Shigekatsu Tateno <shigekatsu.tateno@atmel.com> |
Chris Kelly | 94cfdd1 | 2012-03-14 10:55:42 +0000 | [diff] [blame] | 9400 | S: Maintained |
| 9401 | F: drivers/staging/ozwpan/ |
| 9402 | |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 9403 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
Joe Perches | 29e7017 | 2011-07-05 09:42:08 -0700 | [diff] [blame] | 9404 | M: Willy Tarreau <willy@meta-x.org> |
| 9405 | S: Odd Fixes |
| 9406 | F: drivers/staging/panel/ |
| 9407 | |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 9408 | STAGING - REALTEK RTL8712U DRIVERS |
| 9409 | M: Larry Finger <Larry.Finger@lwfinger.net> |
| 9410 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. |
| 9411 | S: Odd Fixes |
| 9412 | F: drivers/staging/rtl8712/ |
| 9413 | |
Jes Sorensen | 7591ba8 | 2014-04-26 18:54:48 +0200 | [diff] [blame] | 9414 | STAGING - REALTEK RTL8723U WIRELESS DRIVER |
| 9415 | M: Larry Finger <Larry.Finger@lwfinger.net> |
| 9416 | M: Jes Sorensen <Jes.Sorensen@redhat.com> |
| 9417 | L: linux-wireless@vger.kernel.org |
| 9418 | S: Maintained |
| 9419 | F: drivers/staging/rtl8723au/ |
| 9420 | |
Sudip Mukherjee | 13e4e9b | 2015-01-19 13:41:02 +0530 | [diff] [blame] | 9421 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
| 9422 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> |
| 9423 | M: Teddy Wang <teddy.wang@siliconmotion.com> |
| 9424 | M: Sudip Mukherjee <sudip@vectorindia.org> |
| 9425 | L: linux-fbdev@vger.kernel.org |
| 9426 | S: Maintained |
| 9427 | F: drivers/staging/sm7xxfb/ |
| 9428 | |
Sudip Mukherjee | 980ac4d | 2015-03-03 16:21:07 +0530 | [diff] [blame] | 9429 | STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER |
| 9430 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> |
| 9431 | M: Teddy Wang <teddy.wang@siliconmotion.com> |
| 9432 | M: Sudip Mukherjee <sudip@vectorindia.org> |
| 9433 | L: linux-fbdev@vger.kernel.org |
| 9434 | S: Maintained |
| 9435 | F: drivers/staging/sm750fb/ |
| 9436 | |
Joe Perches | 510fa408 | 2014-02-10 16:37:56 -0800 | [diff] [blame] | 9437 | STAGING - SLICOSS |
| 9438 | M: Lior Dotan <liodot@gmail.com> |
| 9439 | M: Christopher Harrer <charrer@alacritech.com> |
| 9440 | S: Odd Fixes |
| 9441 | F: drivers/staging/slicoss/ |
| 9442 | |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 9443 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
| 9444 | M: William Hubbs <w.d.hubbs@gmail.com> |
| 9445 | M: Chris Brannon <chris@the-brannons.com> |
William Hubbs | d33bce3 | 2013-05-12 13:49:54 -0500 | [diff] [blame] | 9446 | M: Kirk Reiser <kirk@reisers.ca> |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 9447 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
Samuel Thibault | e6a152e | 2014-07-17 23:34:58 +0200 | [diff] [blame] | 9448 | L: speakup@linux-speakup.org |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 9449 | W: http://www.linux-speakup.org/ |
| 9450 | S: Odd Fixes |
| 9451 | F: drivers/staging/speakup/ |
| 9452 | |
Joe Perches | b3e871c | 2011-07-05 09:42:10 -0700 | [diff] [blame] | 9453 | STAGING - VIA VT665X DRIVERS |
| 9454 | M: Forest Bond <forest@alittletooquiet.net> |
| 9455 | S: Odd Fixes |
| 9456 | F: drivers/staging/vt665?/ |
| 9457 | |
Joe Perches | 709bcb0 | 2011-07-05 09:42:13 -0700 | [diff] [blame] | 9458 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
Aaro Koskinen | 3e39e66 | 2011-12-09 20:22:04 +0200 | [diff] [blame] | 9459 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
Joe Perches | 709bcb0 | 2011-07-05 09:42:13 -0700 | [diff] [blame] | 9460 | S: Odd Fixes |
| 9461 | F: drivers/staging/xgifb/ |
| 9462 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9463 | STARFIRE/DURALAN NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9464 | M: Ion Badulescu <ionut@badula.org> |
Joe Perches | b4f9018 | 2009-06-30 11:41:32 -0700 | [diff] [blame] | 9465 | S: Odd Fixes |
Jeff Kirsher | 9bba23b | 2011-07-24 02:13:24 -0700 | [diff] [blame] | 9466 | F: drivers/net/ethernet/adaptec/starfire* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9467 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9468 | SUN3/3X |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9469 | M: Sam Creasey <sammy@sammy.net> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9470 | W: http://sammy.net/sun3/ |
| 9471 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9472 | F: arch/m68k/kernel/*sun3* |
| 9473 | F: arch/m68k/sun3*/ |
| 9474 | F: arch/m68k/include/asm/sun3* |
Jeff Kirsher | e689cf4 | 2011-05-12 23:04:46 -0700 | [diff] [blame] | 9475 | F: drivers/net/ethernet/i825xx/sun3* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9476 | |
Hans de Goede | af6a5af | 2014-12-18 09:24:50 -0800 | [diff] [blame] | 9477 | SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER |
| 9478 | M: Hans de Goede <hdegoede@redhat.com> |
| 9479 | L: linux-input@vger.kernel.org |
| 9480 | S: Maintained |
| 9481 | F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt |
| 9482 | F: drivers/input/keyboard/sun4i-lradc-keys.c |
| 9483 | |
Denis Kirjanov | 2bc9ff0 | 2013-08-17 09:08:49 +0400 | [diff] [blame] | 9484 | SUNDANCE NETWORK DRIVER |
| 9485 | M: Denis Kirjanov <kda@linux-powerpc.org> |
| 9486 | L: netdev@vger.kernel.org |
| 9487 | S: Maintained |
| 9488 | F: drivers/net/ethernet/dlink/sundance.c |
| 9489 | |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 9490 | SUPERH |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 9491 | L: linux-sh@vger.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 9492 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
Geert Uytterhoeven | dcaa57d | 2014-04-03 14:48:47 -0700 | [diff] [blame] | 9493 | S: Orphan |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 9494 | F: Documentation/sh/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9495 | F: arch/sh/ |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 9496 | F: drivers/sh/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9497 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 9498 | SUSPEND TO RAM |
Rafael J. Wysocki | 7fb0608 | 2014-03-20 03:34:47 +0100 | [diff] [blame] | 9499 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9500 | M: Len Brown <len.brown@intel.com> |
| 9501 | M: Pavel Machek <pavel@ucw.cz> |
WANG Cong | bf1c138 | 2011-10-08 20:57:50 +0200 | [diff] [blame] | 9502 | L: linux-pm@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9503 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9504 | F: Documentation/power/ |
| 9505 | F: arch/x86/kernel/acpi/ |
| 9506 | F: drivers/base/power/ |
| 9507 | F: kernel/power/ |
| 9508 | F: include/linux/suspend.h |
| 9509 | F: include/linux/freezer.h |
| 9510 | F: include/linux/pm.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9511 | |
| 9512 | SVGA HANDLING |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9513 | M: Martin Mares <mj@ucw.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9514 | L: linux-video@atrey.karlin.mff.cuni.cz |
| 9515 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9516 | F: Documentation/svga.txt |
| 9517 | F: arch/x86/boot/video* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9518 | |
Konrad Rzeszutek Wilk | 6e28b76 | 2012-10-08 16:28:05 -0700 | [diff] [blame] | 9519 | SWIOTLB SUBSYSTEM |
| 9520 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
| 9521 | L: linux-kernel@vger.kernel.org |
| 9522 | S: Supported |
| 9523 | F: lib/swiotlb.c |
| 9524 | F: arch/*/kernel/pci-swiotlb.c |
| 9525 | F: include/linux/swiotlb.h |
| 9526 | |
Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 9527 | SWITCHDEV |
| 9528 | M: Jiri Pirko <jiri@resnulli.us> |
| 9529 | L: netdev@vger.kernel.org |
| 9530 | S: Supported |
| 9531 | F: net/switchdev/ |
| 9532 | F: include/net/switchdev.h |
| 9533 | |
Vineet Gupta | db8e35d | 2013-01-18 15:12:25 +0530 | [diff] [blame] | 9534 | SYNOPSYS ARC ARCHITECTURE |
| 9535 | M: Vineet Gupta <vgupta@synopsys.com> |
Vineet Gupta | db8e35d | 2013-01-18 15:12:25 +0530 | [diff] [blame] | 9536 | S: Supported |
| 9537 | F: arch/arc/ |
Vineet Gupta | 6659a20 | 2013-03-07 13:50:16 +0530 | [diff] [blame] | 9538 | F: Documentation/devicetree/bindings/arc/ |
Joe Perches | c6a0fe4 | 2013-09-11 14:23:45 -0700 | [diff] [blame] | 9539 | F: drivers/tty/serial/arc_uart.c |
Vineet Gupta | db8e35d | 2013-01-18 15:12:25 +0530 | [diff] [blame] | 9540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9541 | SYSV FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9542 | M: Christoph Hellwig <hch@infradead.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9543 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9544 | F: Documentation/filesystems/sysv-fs.txt |
| 9545 | F: fs/sysv/ |
| 9546 | F: include/linux/sysv_fs.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9547 | |
Nicholas Bellinger | 86cfa7f | 2011-05-23 14:10:32 -0700 | [diff] [blame] | 9548 | TARGET SUBSYSTEM |
| 9549 | M: Nicholas A. Bellinger <nab@linux-iscsi.org> |
| 9550 | L: linux-scsi@vger.kernel.org |
Nicholas Bellinger | b9f5edc | 2011-07-27 20:21:15 +0000 | [diff] [blame] | 9551 | L: target-devel@vger.kernel.org |
Nicholas Bellinger | 86cfa7f | 2011-05-23 14:10:32 -0700 | [diff] [blame] | 9552 | W: http://www.linux-iscsi.org |
Joe Perches | cf015e9 | 2014-02-25 15:01:47 -0800 | [diff] [blame] | 9553 | W: http://groups.google.com/group/linux-iscsi-target-dev |
Nicholas Bellinger | 452cf32 | 2013-05-11 16:27:56 -0700 | [diff] [blame] | 9554 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
Nicholas Bellinger | 86cfa7f | 2011-05-23 14:10:32 -0700 | [diff] [blame] | 9555 | S: Supported |
| 9556 | F: drivers/target/ |
| 9557 | F: include/target/ |
| 9558 | F: Documentation/target/ |
| 9559 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 9560 | TASKSTATS STATISTICS INTERFACE |
Balbir Singh | 185e595 | 2011-06-15 15:08:30 -0700 | [diff] [blame] | 9561 | M: Balbir Singh <bsingharora@gmail.com> |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 9562 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9563 | F: Documentation/accounting/taskstats* |
| 9564 | F: include/linux/taskstats* |
| 9565 | F: kernel/taskstats.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 9566 | |
Stephen Hemminger | 781b456a | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 9567 | TC CLASSIFIER |
jamal | f935f3f | 2012-05-24 02:45:02 +0000 | [diff] [blame] | 9568 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
Stephen Hemminger | 781b456a | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 9569 | L: netdev@vger.kernel.org |
| 9570 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9571 | F: include/net/pkt_cls.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 9572 | F: include/uapi/linux/pkt_cls.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9573 | F: net/sched/ |
Stephen Hemminger | 781b456a | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 9574 | |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 9575 | TCP LOW PRIORITY MODULE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9576 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
| 9577 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 9578 | W: http://tcp-lp-mod.sourceforge.net/ |
| 9579 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9580 | F: net/ipv4/tcp_lp.c |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 9581 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 9582 | TDA10071 MEDIA DRIVER |
| 9583 | M: Antti Palosaari <crope@iki.fi> |
| 9584 | L: linux-media@vger.kernel.org |
| 9585 | W: http://linuxtv.org/ |
| 9586 | W: http://palosaari.fi/linux/ |
| 9587 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9588 | T: git git://linuxtv.org/anttip/media_tree.git |
| 9589 | S: Maintained |
| 9590 | F: drivers/media/dvb-frontends/tda10071* |
| 9591 | |
| 9592 | TDA18212 MEDIA DRIVER |
| 9593 | M: Antti Palosaari <crope@iki.fi> |
| 9594 | L: linux-media@vger.kernel.org |
| 9595 | W: http://linuxtv.org/ |
| 9596 | W: http://palosaari.fi/linux/ |
| 9597 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9598 | T: git git://linuxtv.org/anttip/media_tree.git |
| 9599 | S: Maintained |
| 9600 | F: drivers/media/tuners/tda18212* |
| 9601 | |
| 9602 | TDA18218 MEDIA DRIVER |
| 9603 | M: Antti Palosaari <crope@iki.fi> |
| 9604 | L: linux-media@vger.kernel.org |
| 9605 | W: http://linuxtv.org/ |
| 9606 | W: http://palosaari.fi/linux/ |
| 9607 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9608 | T: git git://linuxtv.org/anttip/media_tree.git |
| 9609 | S: Maintained |
| 9610 | F: drivers/media/tuners/tda18218* |
| 9611 | |
Michael Krufky | 3b2f6ab | 2012-10-02 00:55:32 -0300 | [diff] [blame] | 9612 | TDA18271 MEDIA DRIVER |
| 9613 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 9614 | L: linux-media@vger.kernel.org |
| 9615 | W: http://linuxtv.org/ |
| 9616 | W: http://github.com/mkrufky |
| 9617 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9618 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 9619 | S: Maintained |
| 9620 | F: drivers/media/tuners/tda18271* |
| 9621 | |
Michael Krufky | e48307a | 2012-10-02 00:56:33 -0300 | [diff] [blame] | 9622 | TDA827x MEDIA DRIVER |
| 9623 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 9624 | L: linux-media@vger.kernel.org |
| 9625 | W: http://linuxtv.org/ |
| 9626 | W: http://github.com/mkrufky |
| 9627 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9628 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 9629 | S: Maintained |
| 9630 | F: drivers/media/tuners/tda8290.* |
| 9631 | |
Michael Krufky | 66cf921 | 2012-10-02 00:56:28 -0300 | [diff] [blame] | 9632 | TDA8290 MEDIA DRIVER |
| 9633 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 9634 | L: linux-media@vger.kernel.org |
| 9635 | W: http://linuxtv.org/ |
| 9636 | W: http://github.com/mkrufky |
| 9637 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9638 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 9639 | S: Maintained |
| 9640 | F: drivers/media/tuners/tda8290.* |
| 9641 | |
Hans Verkuil | 4b9fba3 | 2012-11-23 10:02:05 -0300 | [diff] [blame] | 9642 | TDA9840 MEDIA DRIVER |
| 9643 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 9644 | L: linux-media@vger.kernel.org |
| 9645 | T: git git://linuxtv.org/media_tree.git |
| 9646 | W: http://linuxtv.org |
| 9647 | S: Maintained |
| 9648 | F: drivers/media/i2c/tda9840* |
| 9649 | |
Mauro Carvalho Chehab | 2cb654f | 2012-11-02 12:09:00 -0200 | [diff] [blame] | 9650 | TEA5761 TUNER DRIVER |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 9651 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | 2cb654f | 2012-11-02 12:09:00 -0200 | [diff] [blame] | 9652 | L: linux-media@vger.kernel.org |
| 9653 | W: http://linuxtv.org |
| 9654 | T: git git://linuxtv.org/media_tree.git |
| 9655 | S: Odd fixes |
| 9656 | F: drivers/media/tuners/tea5761.* |
| 9657 | |
| 9658 | TEA5767 TUNER DRIVER |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 9659 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | 2cb654f | 2012-11-02 12:09:00 -0200 | [diff] [blame] | 9660 | L: linux-media@vger.kernel.org |
| 9661 | W: http://linuxtv.org |
| 9662 | T: git git://linuxtv.org/media_tree.git |
| 9663 | S: Maintained |
| 9664 | F: drivers/media/tuners/tea5767.* |
| 9665 | |
Hans Verkuil | 4b9fba3 | 2012-11-23 10:02:05 -0300 | [diff] [blame] | 9666 | TEA6415C MEDIA DRIVER |
| 9667 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 9668 | L: linux-media@vger.kernel.org |
| 9669 | T: git git://linuxtv.org/media_tree.git |
| 9670 | W: http://linuxtv.org |
| 9671 | S: Maintained |
| 9672 | F: drivers/media/i2c/tea6415c* |
| 9673 | |
| 9674 | TEA6420 MEDIA DRIVER |
| 9675 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 9676 | L: linux-media@vger.kernel.org |
| 9677 | T: git git://linuxtv.org/media_tree.git |
| 9678 | W: http://linuxtv.org |
| 9679 | S: Maintained |
| 9680 | F: drivers/media/i2c/tea6420* |
| 9681 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 9682 | TEAM DRIVER |
Jiri Pirko | dca9ab9 | 2013-02-15 23:55:05 +0000 | [diff] [blame] | 9683 | M: Jiri Pirko <jiri@resnulli.us> |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 9684 | L: netdev@vger.kernel.org |
| 9685 | S: Supported |
| 9686 | F: drivers/net/team/ |
| 9687 | F: include/linux/if_team.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 9688 | F: include/uapi/linux/if_team.h |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 9689 | |
Vivien Didelot | 7d02912 | 2013-01-04 16:18:14 -0500 | [diff] [blame] | 9690 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
| 9691 | M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com> |
| 9692 | S: Maintained |
| 9693 | F: arch/x86/platform/ts5500/ |
| 9694 | |
Sean Young | 40ad4a3 | 2012-11-19 10:32:53 -0300 | [diff] [blame] | 9695 | TECHNOTREND USB IR RECEIVER |
| 9696 | M: Sean Young <sean@mess.org> |
| 9697 | L: linux-media@vger.kernel.org |
| 9698 | S: Maintained |
| 9699 | F: drivers/media/rc/ttusbir.c |
| 9700 | |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 9701 | TEGRA ARCHITECTURE SUPPORT |
Stephen Warren | 243d58e | 2012-03-05 17:58:36 -0700 | [diff] [blame] | 9702 | M: Stephen Warren <swarren@wwwdotorg.org> |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 9703 | M: Thierry Reding <thierry.reding@gmail.com> |
Stephen Warren | 554077c | 2014-10-03 09:50:32 -0600 | [diff] [blame] | 9704 | M: Alexandre Courbot <gnurou@gmail.com> |
Erik Gilling | 84b9414 | 2010-06-09 15:35:53 -0700 | [diff] [blame] | 9705 | L: linux-tegra@vger.kernel.org |
Olof Johansson | fd117cd | 2012-03-18 10:44:11 -0700 | [diff] [blame] | 9706 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
Andreas Färber | b779b88 | 2014-07-28 12:06:26 -0600 | [diff] [blame] | 9707 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
Erik Gilling | 84b9414 | 2010-06-09 15:35:53 -0700 | [diff] [blame] | 9708 | S: Supported |
Stephen Warren | bbbe96e | 2013-04-29 16:17:23 -0700 | [diff] [blame] | 9709 | N: [^a-z]tegra |
Erik Gilling | 84b9414 | 2010-06-09 15:35:53 -0700 | [diff] [blame] | 9710 | |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 9711 | TEGRA CLOCK DRIVER |
| 9712 | M: Peter De Schrijver <pdeschrijver@nvidia.com> |
| 9713 | M: Prashant Gaikwad <pgaikwad@nvidia.com> |
| 9714 | S: Supported |
| 9715 | F: drivers/clk/tegra/ |
| 9716 | |
| 9717 | TEGRA DMA DRIVER |
| 9718 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 9719 | S: Supported |
| 9720 | F: drivers/dma/tegra20-apb-dma.c |
| 9721 | |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 9722 | TEGRA I2C DRIVER |
| 9723 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 9724 | S: Supported |
| 9725 | F: drivers/i2c/busses/i2c-tegra.c |
| 9726 | |
| 9727 | TEGRA IOMMU DRIVERS |
| 9728 | M: Hiroshi Doyu <hdoyu@nvidia.com> |
| 9729 | S: Supported |
| 9730 | F: drivers/iommu/tegra* |
| 9731 | |
| 9732 | TEGRA KBC DRIVER |
| 9733 | M: Rakesh Iyer <riyer@nvidia.com> |
| 9734 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 9735 | S: Supported |
| 9736 | F: drivers/input/keyboard/tegra-kbc.c |
| 9737 | |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 9738 | TEGRA PWM DRIVER |
| 9739 | M: Thierry Reding <thierry.reding@gmail.com> |
| 9740 | S: Supported |
| 9741 | F: drivers/pwm/pwm-tegra.c |
| 9742 | |
| 9743 | TEGRA SERIAL DRIVER |
| 9744 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 9745 | S: Supported |
| 9746 | F: drivers/tty/serial/serial-tegra.c |
| 9747 | |
| 9748 | TEGRA SPI DRIVER |
| 9749 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 9750 | S: Supported |
| 9751 | F: drivers/spi/spi-tegra* |
| 9752 | |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 9753 | TEHUTI ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9754 | M: Andy Gospodarek <andy@greyhouse.net> |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 9755 | L: netdev@vger.kernel.org |
| 9756 | S: Supported |
Jeff Kirsher | ef7f542 | 2011-05-15 21:46:41 -0700 | [diff] [blame] | 9757 | F: drivers/net/ethernet/tehuti/* |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 9758 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 9759 | Telecom Clock Driver for MCPL0010 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9760 | M: Mark Gross <mark.gross@intel.com> |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 9761 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9762 | F: drivers/char/tlclk.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 9763 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 9764 | TENSILICA XTENSA PORT (xtensa) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9765 | M: Chris Zankel <chris@zankel.net> |
Chris Zankel | f959ed2 | 2012-10-03 15:02:19 -0700 | [diff] [blame] | 9766 | M: Max Filippov <jcmvbkbc@gmail.com> |
| 9767 | L: linux-xtensa@linux-xtensa.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 9768 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9769 | F: arch/xtensa/ |
Max Filippov | 3dc9985 | 2014-04-03 14:48:48 -0700 | [diff] [blame] | 9770 | F: drivers/irqchip/irq-xtensa-* |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 9771 | |
Hans Verkuil | 5313ba6 | 2013-12-13 09:00:38 -0300 | [diff] [blame] | 9772 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
| 9773 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 9774 | L: linux-media@vger.kernel.org |
| 9775 | T: git git://linuxtv.org/media_tree.git |
| 9776 | W: http://linuxtv.org |
| 9777 | S: Maintained |
| 9778 | F: drivers/media/radio/radio-raremono.c |
| 9779 | |
Zhang Rui | d3fb695 | 2012-11-15 08:58:27 +0800 | [diff] [blame] | 9780 | THERMAL |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 9781 | M: Zhang Rui <rui.zhang@intel.com> |
Lee Jones | f14d1c2 | 2014-05-30 11:03:28 +0100 | [diff] [blame] | 9782 | M: Eduardo Valentin <edubezval@gmail.com> |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 9783 | L: linux-pm@vger.kernel.org |
| 9784 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git |
| 9785 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git |
| 9786 | Q: https://patchwork.kernel.org/project/linux-pm/list/ |
| 9787 | S: Supported |
| 9788 | F: drivers/thermal/ |
| 9789 | F: include/linux/thermal.h |
Florian Fainelli | af6c9f1 | 2014-11-19 18:11:00 -0800 | [diff] [blame] | 9790 | F: include/uapi/linux/thermal.h |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 9791 | F: include/linux/cpu_cooling.h |
| 9792 | F: Documentation/devicetree/bindings/thermal/ |
Zhang Rui | d3fb695 | 2012-11-15 08:58:27 +0800 | [diff] [blame] | 9793 | |
Vivien Didelot | 30ba2fb | 2013-01-22 12:01:21 -0500 | [diff] [blame] | 9794 | THINGM BLINK(1) USB RGB LED DRIVER |
| 9795 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> |
| 9796 | S: Maintained |
| 9797 | F: drivers/hid/hid-thingm.c |
| 9798 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 9799 | THINKPAD ACPI EXTRAS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9800 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 9801 | L: ibm-acpi-devel@lists.sourceforge.net |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 9802 | L: platform-driver-x86@vger.kernel.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 9803 | W: http://ibm-acpi.sourceforge.net |
| 9804 | W: http://thinkwiki.org/wiki/Ibm-acpi |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 9805 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 9806 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9807 | F: drivers/platform/x86/thinkpad_acpi.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 9808 | |
Eduardo Valentin | 1b46f2a | 2013-03-15 09:00:34 -0400 | [diff] [blame] | 9809 | TI BANDGAP AND THERMAL DRIVER |
Lee Jones | f14d1c2 | 2014-05-30 11:03:28 +0100 | [diff] [blame] | 9810 | M: Eduardo Valentin <edubezval@gmail.com> |
Eduardo Valentin | 1b46f2a | 2013-03-15 09:00:34 -0400 | [diff] [blame] | 9811 | L: linux-pm@vger.kernel.org |
Nishanth Menon | 531ff13 | 2015-01-03 13:13:30 -0600 | [diff] [blame] | 9812 | L: linux-omap@vger.kernel.org |
Eduardo Valentin | 5a723e8 | 2015-01-05 17:48:13 -0400 | [diff] [blame] | 9813 | S: Maintained |
Eduardo Valentin | 794b2e2 | 2013-05-15 15:46:01 +0000 | [diff] [blame] | 9814 | F: drivers/thermal/ti-soc-thermal/ |
Eduardo Valentin | 1b46f2a | 2013-03-15 09:00:34 -0400 | [diff] [blame] | 9815 | |
Max Filippov | 0c7665c | 2015-01-12 10:20:46 +0300 | [diff] [blame] | 9816 | TI CDCE706 CLOCK DRIVER |
| 9817 | M: Max Filippov <jcmvbkbc@gmail.com> |
| 9818 | S: Maintained |
| 9819 | F: drivers/clk/clk-cdce706.c |
| 9820 | |
Tero Kristo | 49b6a5e | 2014-07-02 17:03:50 +0300 | [diff] [blame] | 9821 | TI CLOCK DRIVER |
| 9822 | M: Tero Kristo <t-kristo@ti.com> |
| 9823 | L: linux-omap@vger.kernel.org |
| 9824 | S: Maintained |
| 9825 | F: drivers/clk/ti/ |
| 9826 | F: include/linux/clk/ti.h |
| 9827 | |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 9828 | TI FLASH MEDIA INTERFACE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9829 | M: Alex Dubov <oakad@yahoo.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 9830 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9831 | F: drivers/misc/tifm* |
| 9832 | F: drivers/mmc/host/tifm_sd.c |
| 9833 | F: include/linux/tifm.h |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 9834 | |
Santosh Shilimkar | e0c5240 | 2014-07-10 11:30:08 -0400 | [diff] [blame] | 9835 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 9836 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Santosh Shilimkar | e0c5240 | 2014-07-10 11:30:08 -0400 | [diff] [blame] | 9837 | L: linux-kernel@vger.kernel.org |
| 9838 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 9839 | S: Maintained |
| 9840 | F: drivers/soc/ti/* |
| 9841 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
| 9842 | |
| 9843 | |
M R Swami Reddy | 152ad44 | 2012-04-02 20:02:31 +0530 | [diff] [blame] | 9844 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
| 9845 | M: M R Swami Reddy <mr.swami.reddy@ti.com> |
M R Swami Reddy | d392dea | 2012-06-07 18:37:54 +0530 | [diff] [blame] | 9846 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
M R Swami Reddy | 152ad44 | 2012-04-02 20:02:31 +0530 | [diff] [blame] | 9847 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 9848 | S: Maintained |
| 9849 | F: sound/soc/codecs/lm49453* |
M R Swami Reddy | d392dea | 2012-06-07 18:37:54 +0530 | [diff] [blame] | 9850 | F: sound/soc/codecs/isabelle* |
M R Swami Reddy | 152ad44 | 2012-04-02 20:02:31 +0530 | [diff] [blame] | 9851 | |
Kim, Milo | 0edd807 | 2012-12-17 16:01:17 -0800 | [diff] [blame] | 9852 | TI LP855x BACKLIGHT DRIVER |
| 9853 | M: Milo Kim <milo.kim@ti.com> |
| 9854 | S: Maintained |
| 9855 | F: Documentation/backlight/lp855x-driver.txt |
| 9856 | F: drivers/video/backlight/lp855x_bl.c |
| 9857 | F: include/linux/platform_data/lp855x.h |
| 9858 | |
Kim, Milo | faf13f6 | 2012-12-10 05:27:03 +0000 | [diff] [blame] | 9859 | TI LP8727 CHARGER DRIVER |
| 9860 | M: Milo Kim <milo.kim@ti.com> |
| 9861 | S: Maintained |
| 9862 | F: drivers/power/lp8727_charger.c |
| 9863 | F: include/linux/platform_data/lp8727.h |
| 9864 | |
Kim, Milo | 22f1229 | 2012-12-10 05:27:55 +0000 | [diff] [blame] | 9865 | TI LP8788 MFD DRIVER |
| 9866 | M: Milo Kim <milo.kim@ti.com> |
| 9867 | S: Maintained |
| 9868 | F: drivers/iio/adc/lp8788_adc.c |
| 9869 | F: drivers/leds/leds-lp8788.c |
| 9870 | F: drivers/mfd/lp8788*.c |
| 9871 | F: drivers/power/lp8788-charger.c |
| 9872 | F: drivers/regulator/lp8788-*.c |
| 9873 | F: include/linux/mfd/lp8788*.h |
| 9874 | |
Karicheri, Muralidharan | 84640e2 | 2015-01-15 19:12:50 -0500 | [diff] [blame] | 9875 | TI NETCP ETHERNET DRIVER |
| 9876 | M: Wingman Kwok <w-kwok2@ti.com> |
| 9877 | M: Murali Karicheri <m-karicheri2@ti.com> |
| 9878 | L: netdev@vger.kernel.org |
| 9879 | S: Maintained |
| 9880 | F: drivers/net/ethernet/ti/netcp* |
| 9881 | |
Peter Ujfalusi | dd5e8e6 | 2009-06-25 13:26:09 +0300 | [diff] [blame] | 9882 | TI TWL4030 SERIES SOC CODEC DRIVER |
Peter Ujfalusi | 3be79d1 | 2011-05-02 14:16:29 +0300 | [diff] [blame] | 9883 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
Peter Ujfalusi | dd5e8e6 | 2009-06-25 13:26:09 +0300 | [diff] [blame] | 9884 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 9885 | S: Maintained |
| 9886 | F: sound/soc/codecs/twl4030* |
| 9887 | |
Luciano Coelho | 9092101 | 2011-11-20 21:40:41 +0200 | [diff] [blame] | 9888 | TI WILINK WIRELESS DRIVERS |
Luciano Coelho | 9092101 | 2011-11-20 21:40:41 +0200 | [diff] [blame] | 9889 | L: linux-wireless@vger.kernel.org |
| 9890 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx |
| 9891 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 |
| 9892 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git |
Luciano Coelho | 22d072f | 2013-12-09 22:28:32 +0200 | [diff] [blame] | 9893 | S: Orphan |
Luciano Coelho | 9092101 | 2011-11-20 21:40:41 +0200 | [diff] [blame] | 9894 | F: drivers/net/wireless/ti/ |
| 9895 | F: include/linux/wl12xx.h |
| 9896 | |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 9897 | TIPC NETWORK LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9898 | M: Jon Maloy <jon.maloy@ericsson.com> |
Jon Paul Maloy | 115403d | 2015-03-09 14:44:13 -0400 | [diff] [blame] | 9899 | M: Ying Xue <ying.xue@windriver.com> |
Allan Stephens | 633d2bd | 2011-03-13 15:44:07 -0500 | [diff] [blame] | 9900 | L: netdev@vger.kernel.org (core kernel code) |
| 9901 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 9902 | W: http://tipc.sourceforge.net/ |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 9903 | S: Maintained |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 9904 | F: include/uapi/linux/tipc*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9905 | F: net/tipc/ |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 9906 | |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 9907 | TILE ARCHITECTURE |
Chris Metcalf | c47b15c | 2014-11-13 09:41:58 -0500 | [diff] [blame] | 9908 | M: Chris Metcalf <cmetcalf@ezchip.com> |
Chris Metcalf | 740e143 | 2015-02-13 13:16:49 -0500 | [diff] [blame] | 9909 | W: http://www.ezchip.com/scm/ |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 9910 | S: Supported |
| 9911 | F: arch/tile/ |
Chris Metcalf | 6b94060 | 2013-08-07 10:45:01 -0400 | [diff] [blame] | 9912 | F: drivers/char/tile-srom.c |
Chris Metcalf | 5c77075 | 2011-03-01 13:01:49 -0500 | [diff] [blame] | 9913 | F: drivers/edac/tile_edac.c |
Chris Metcalf | 6b94060 | 2013-08-07 10:45:01 -0400 | [diff] [blame] | 9914 | F: drivers/net/ethernet/tile/ |
| 9915 | F: drivers/rtc/rtc-tile.c |
| 9916 | F: drivers/tty/hvc/hvc_tile.c |
Chris Metcalf | b5c6c1a | 2013-08-12 14:11:44 -0400 | [diff] [blame] | 9917 | F: drivers/tty/serial/tilegx.c |
Chris Metcalf | 6b94060 | 2013-08-07 10:45:01 -0400 | [diff] [blame] | 9918 | F: drivers/usb/host/*-tilegx.c |
| 9919 | F: include/linux/usb/tilegx.h |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 9920 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9921 | TLAN NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9922 | M: Samuel Chessman <chessman@tux.org> |
Gabriel Craciunescu | 88c07dd | 2007-11-22 19:43:36 +0800 | [diff] [blame] | 9923 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9924 | W: http://sourceforge.net/projects/tlan/ |
| 9925 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9926 | F: Documentation/networking/tlan.txt |
Jeff Kirsher | b544dba | 2011-06-14 12:56:50 -0700 | [diff] [blame] | 9927 | F: drivers/net/ethernet/ti/tlan.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9928 | |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 9929 | TOMOYO SECURITY MODULE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9930 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
| 9931 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> |
Tetsuo Handa | d03a5d8 | 2010-12-19 12:54:22 +0900 | [diff] [blame] | 9932 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
| 9933 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 9934 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
| 9935 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) |
| 9936 | W: http://tomoyo.sourceforge.jp/ |
Tetsuo Handa | 843d183 | 2011-09-14 17:03:19 +0900 | [diff] [blame] | 9937 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 9938 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9939 | F: security/tomoyo/ |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 9940 | |
Herton Ronaldo Krzesinski | 9caeb53 | 2009-09-14 21:11:21 -0300 | [diff] [blame] | 9941 | TOPSTAR LAPTOP EXTRAS DRIVER |
Herton Ronaldo Krzesinski | 9f0939b | 2011-02-24 15:18:07 -0300 | [diff] [blame] | 9942 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 9943 | L: platform-driver-x86@vger.kernel.org |
Herton Ronaldo Krzesinski | 9caeb53 | 2009-09-14 21:11:21 -0300 | [diff] [blame] | 9944 | S: Maintained |
| 9945 | F: drivers/platform/x86/topstar-laptop.c |
| 9946 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9947 | TOSHIBA ACPI EXTRAS DRIVER |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 9948 | L: platform-driver-x86@vger.kernel.org |
Johannes Berg | 1506553 | 2009-03-30 12:02:35 +0200 | [diff] [blame] | 9949 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9950 | F: drivers/platform/x86/toshiba_acpi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9951 | |
| 9952 | TOSHIBA SMM DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9953 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9954 | L: tlinux-users@tce.toshiba-dme.co.jp |
| 9955 | W: http://www.buzzard.org.uk/toshiba/ |
| 9956 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9957 | F: drivers/char/toshiba.c |
| 9958 | F: include/linux/toshiba.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 9959 | F: include/uapi/linux/toshiba.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9960 | |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 9961 | TMIO MMC DRIVER |
Ulf Hansson | 252f29a | 2014-05-08 11:16:13 +0200 | [diff] [blame] | 9962 | M: Ian Molton <ian.molton@codethink.co.uk> |
Guennadi Liakhovetski | d1057c4 | 2011-07-17 22:04:07 +0200 | [diff] [blame] | 9963 | L: linux-mmc@vger.kernel.org |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 9964 | S: Maintained |
Guennadi Liakhovetski | d1057c4 | 2011-07-17 22:04:07 +0200 | [diff] [blame] | 9965 | F: drivers/mmc/host/tmio_mmc* |
| 9966 | F: drivers/mmc/host/sh_mobile_sdhi.c |
| 9967 | F: include/linux/mmc/tmio.h |
| 9968 | F: include/linux/mmc/sh_mobile_sdhi.h |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 9969 | |
Guenter Roeck | 917cc4e | 2013-05-19 20:44:27 -0700 | [diff] [blame] | 9970 | TMP401 HARDWARE MONITOR DRIVER |
| 9971 | M: Guenter Roeck <linux@roeck-us.net> |
| 9972 | L: lm-sensors@lm-sensors.org |
| 9973 | S: Maintained |
| 9974 | F: Documentation/hwmon/tmp401 |
| 9975 | F: drivers/hwmon/tmp401.c |
| 9976 | |
Hugh Dickins | 98f3260 | 2009-05-21 20:33:58 +0100 | [diff] [blame] | 9977 | TMPFS (SHMEM FILESYSTEM) |
Hugh Dickins | bfcc6e2 | 2010-05-14 19:40:35 -0700 | [diff] [blame] | 9978 | M: Hugh Dickins <hughd@google.com> |
Hugh Dickins | 98f3260 | 2009-05-21 20:33:58 +0100 | [diff] [blame] | 9979 | L: linux-mm@kvack.org |
| 9980 | S: Maintained |
| 9981 | F: include/linux/shmem_fs.h |
| 9982 | F: mm/shmem.c |
| 9983 | |
Mauro Carvalho Chehab | 45f95b5 | 2012-11-02 11:41:01 -0200 | [diff] [blame] | 9984 | TM6000 VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 9985 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | 45f95b5 | 2012-11-02 11:41:01 -0200 | [diff] [blame] | 9986 | L: linux-media@vger.kernel.org |
| 9987 | W: http://linuxtv.org |
| 9988 | T: git git://linuxtv.org/media_tree.git |
| 9989 | S: Odd fixes |
| 9990 | F: drivers/media/usb/tm6000/ |
| 9991 | |
Hans Verkuil | c65fde1 | 2014-08-10 05:16:39 -0300 | [diff] [blame] | 9992 | TW68 VIDEO4LINUX DRIVER |
| 9993 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 9994 | L: linux-media@vger.kernel.org |
| 9995 | T: git git://linuxtv.org/media_tree.git |
| 9996 | W: http://linuxtv.org |
| 9997 | S: Odd Fixes |
| 9998 | F: drivers/media/pci/tw68/ |
| 9999 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 10000 | TPM DEVICE DRIVER |
Peter Huewe | 901486b | 2013-10-22 19:28:30 +0200 | [diff] [blame] | 10001 | M: Peter Huewe <peterhuewe@gmx.de> |
Rajiv Andrade | cbb2d5e | 2012-04-24 11:19:58 -0300 | [diff] [blame] | 10002 | M: Marcel Selhorst <tpmdd@selhorst.net> |
Peter Huewe | ce93b4b | 2015-03-15 01:05:31 +0100 | [diff] [blame] | 10003 | R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
Peter Huewe | 383dec1 | 2013-10-30 20:54:45 +0100 | [diff] [blame] | 10004 | W: http://tpmdd.sourceforge.net |
Rajiv Andrade | 63a10df | 2008-10-15 22:04:36 -0700 | [diff] [blame] | 10005 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
Peter Huewe | f78c81b | 2015-01-17 15:17:51 +0100 | [diff] [blame] | 10006 | Q: git git://github.com/PeterHuewe/linux-tpmdd.git |
| 10007 | T: https://github.com/PeterHuewe/linux-tpmdd |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 10008 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10009 | F: drivers/char/tpm/ |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 10010 | |
Ashley Lai | 1a0f1b2 | 2014-12-04 21:01:51 -0600 | [diff] [blame] | 10011 | TPM IBM_VTPM DEVICE DRIVER |
| 10012 | M: Ashley Lai <ashleydlai@gmail.com> |
| 10013 | W: http://tpmdd.sourceforge.net |
| 10014 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 10015 | S: Maintained |
| 10016 | F: drivers/char/tpm/tpm_ibmvtpm* |
| 10017 | |
Joe Perches | d6f005a | 2009-10-26 16:49:40 -0700 | [diff] [blame] | 10018 | TRACING |
| 10019 | M: Steven Rostedt <rostedt@goodmis.org> |
Joe Perches | d6f005a | 2009-10-26 16:49:40 -0700 | [diff] [blame] | 10020 | M: Ingo Molnar <mingo@redhat.com> |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 10021 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
Joe Perches | d6f005a | 2009-10-26 16:49:40 -0700 | [diff] [blame] | 10022 | S: Maintained |
| 10023 | F: Documentation/trace/ftrace.txt |
| 10024 | F: arch/*/*/*/ftrace.h |
| 10025 | F: arch/*/kernel/ftrace.c |
| 10026 | F: include/*/ftrace.h |
| 10027 | F: include/linux/trace*.h |
| 10028 | F: include/trace/ |
| 10029 | F: kernel/trace/ |
Masami Hiramatsu | 6e68e6c | 2014-09-22 23:42:50 +0000 | [diff] [blame] | 10030 | F: tools/testing/selftests/ftrace/ |
Joe Perches | d6f005a | 2009-10-26 16:49:40 -0700 | [diff] [blame] | 10031 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10032 | TRIVIAL PATCHES |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10033 | M: Jiri Kosina <trivial@kernel.org> |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 10034 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10035 | S: Maintained |
Joe Perches | 86ef925 | 2011-03-31 00:19:19 +0200 | [diff] [blame] | 10036 | K: ^Subject:.*(?i)trivial |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10037 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 10038 | TTY LAYER |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 10039 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Jiri Slaby | 25e6c11 | 2012-11-19 20:11:43 +0100 | [diff] [blame] | 10040 | M: Jiri Slaby <jslaby@suse.cz> |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 10041 | S: Supported |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 10042 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
Lucas Kannebley Tavares | 8dd5d2f | 2012-01-09 17:39:24 -0200 | [diff] [blame] | 10043 | F: drivers/tty/ |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 10044 | F: drivers/tty/serial/serial_core.c |
Alan Cox | e328877 | 2009-07-07 16:39:54 +0100 | [diff] [blame] | 10045 | F: include/linux/serial_core.h |
| 10046 | F: include/linux/serial.h |
| 10047 | F: include/linux/tty.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10048 | F: include/uapi/linux/serial_core.h |
| 10049 | F: include/uapi/linux/serial.h |
| 10050 | F: include/uapi/linux/tty.h |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 10051 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 10052 | TUA9001 MEDIA DRIVER |
| 10053 | M: Antti Palosaari <crope@iki.fi> |
| 10054 | L: linux-media@vger.kernel.org |
| 10055 | W: http://linuxtv.org/ |
| 10056 | W: http://palosaari.fi/linux/ |
| 10057 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 10058 | T: git git://linuxtv.org/anttip/media_tree.git |
| 10059 | S: Maintained |
| 10060 | F: drivers/media/tuners/tua9001* |
| 10061 | |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 10062 | TULIP NETWORK DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10063 | M: Grant Grundler <grundler@parisc-linux.org> |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 10064 | L: netdev@vger.kernel.org |
| 10065 | S: Maintained |
Joe Perches | 0f04e2a | 2012-01-10 15:08:56 -0800 | [diff] [blame] | 10066 | F: drivers/net/ethernet/dec/tulip/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10067 | |
| 10068 | TUN/TAP driver |
Jiri Slaby | ba57b6f | 2012-11-30 07:05:40 +0000 | [diff] [blame] | 10069 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10070 | W: http://vtun.sourceforge.net/tun |
| 10071 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10072 | F: Documentation/networking/tuntap.txt |
| 10073 | F: arch/um/os-Linux/drivers/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10074 | |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 10075 | TURBOCHANNEL SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10076 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
Ralf Baechle | c406339 | 2014-04-03 13:29:06 +0200 | [diff] [blame] | 10077 | M: Ralf Baechle <ralf@linux-mips.org> |
| 10078 | L: linux-mips@linux-mips.org |
| 10079 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 10080 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10081 | F: drivers/tc/ |
| 10082 | F: include/linux/tc.h |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 10083 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10084 | U14-34F SCSI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10085 | M: Dario Ballabio <ballabio_dario@emc.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10086 | L: linux-scsi@vger.kernel.org |
| 10087 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10088 | F: drivers/scsi/u14-34f.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10089 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10090 | UBI FILE SYSTEM (UBIFS) |
Artem Bityutskiy | 949cb62 | 2009-10-20 10:21:45 +0300 | [diff] [blame] | 10091 | M: Artem Bityutskiy <dedekind1@gmail.com> |
Artem Bityutskiy | cc8f9b9 | 2011-07-22 10:55:50 +0300 | [diff] [blame] | 10092 | M: Adrian Hunter <adrian.hunter@intel.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10093 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | e2966cb | 2008-10-25 18:54:04 +0300 | [diff] [blame] | 10094 | T: git git://git.infradead.org/ubifs-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10095 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
| 10096 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10097 | F: Documentation/filesystems/ubifs.txt |
| 10098 | F: fs/ubifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10099 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 10100 | UCLINUX (AND M68KNOMMU) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10101 | M: Greg Ungerer <gerg@uclinux.org> |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 10102 | W: http://www.uclinux.org/ |
| 10103 | L: uclinux-dev@uclinux.org (subscribers-only) |
| 10104 | S: Maintained |
Joe Perches | 61bc02b | 2011-04-14 15:22:04 -0700 | [diff] [blame] | 10105 | F: arch/m68k/*/*_no.* |
| 10106 | F: arch/m68k/include/asm/*_no.* |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 10107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10108 | UDF FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10109 | M: Jan Kara <jack@suse.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10110 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10111 | F: Documentation/filesystems/udf.txt |
| 10112 | F: fs/udf/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10113 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 10114 | UFS FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10115 | M: Evgeniy Dushistov <dushistov@mail.ru> |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 10116 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10117 | F: Documentation/filesystems/ufs.txt |
| 10118 | F: fs/ufs/ |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 10119 | |
David Herrmann | 0a09d3a | 2012-06-10 15:16:28 +0200 | [diff] [blame] | 10120 | UHID USERSPACE HID IO DRIVER: |
| 10121 | M: David Herrmann <dh.herrmann@googlemail.com> |
| 10122 | L: linux-input@vger.kernel.org |
| 10123 | S: Maintained |
| 10124 | F: drivers/hid/uhid.c |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10125 | F: include/uapi/linux/uhid.h |
David Herrmann | 0a09d3a | 2012-06-10 15:16:28 +0200 | [diff] [blame] | 10126 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 10127 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 10128 | L: linux-usb@vger.kernel.org |
David Vrabel | 10c6c9c | 2010-10-25 14:05:36 +0100 | [diff] [blame] | 10129 | S: Orphan |
David Vrabel | 355ffe6 | 2009-12-22 13:13:28 +0000 | [diff] [blame] | 10130 | F: drivers/uwb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10131 | F: include/linux/uwb.h |
| 10132 | F: include/linux/uwb/ |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 10133 | |
GuanXuetao | b31d827 | 2011-01-16 00:35:49 +0800 | [diff] [blame] | 10134 | UNICORE32 ARCHITECTURE: |
| 10135 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> |
| 10136 | W: http://mprc.pku.edu.cn/~guanxuetao/linux |
| 10137 | S: Maintained |
Guan Xuetao | ceebf4d | 2014-05-27 07:53:10 +0800 | [diff] [blame] | 10138 | T: git git://github.com/gxt/linux.git |
GuanXuetao | b31d827 | 2011-01-16 00:35:49 +0800 | [diff] [blame] | 10139 | F: arch/unicore32/ |
| 10140 | |
Tony Finch | d8379ab | 2009-11-27 15:50:30 +0000 | [diff] [blame] | 10141 | UNIFDEF |
| 10142 | M: Tony Finch <dot@dotat.at> |
| 10143 | W: http://dotat.at/prog/unifdef |
| 10144 | S: Maintained |
| 10145 | F: scripts/unifdef.c |
| 10146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10147 | UNIFORM CDROM DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10148 | M: Jens Axboe <axboe@kernel.dk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10149 | W: http://www.kernel.dk |
| 10150 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10151 | F: Documentation/cdrom/ |
| 10152 | F: drivers/cdrom/cdrom.c |
| 10153 | F: include/linux/cdrom.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10154 | F: include/uapi/linux/cdrom.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10155 | |
Benjamin Romer | 56df012 | 2014-03-07 13:02:21 -0600 | [diff] [blame] | 10156 | UNISYS S-PAR DRIVERS |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 10157 | M: Benjamin Romer <benjamin.romer@unisys.com> |
| 10158 | M: David Kershner <david.kershner@unisys.com> |
| 10159 | L: sparmaintainer@unisys.com (Unisys internal) |
| 10160 | S: Supported |
| 10161 | F: drivers/staging/unisys/ |
Benjamin Romer | 56df012 | 2014-03-07 13:02:21 -0600 | [diff] [blame] | 10162 | |
Vinayak Holikatti | 9941fa6 | 2012-04-20 14:11:50 +0530 | [diff] [blame] | 10163 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
| 10164 | M: Vinayak Holikatti <vinholikatti@gmail.com> |
Vinayak Holikatti | 9941fa6 | 2012-04-20 14:11:50 +0530 | [diff] [blame] | 10165 | L: linux-scsi@vger.kernel.org |
| 10166 | S: Supported |
| 10167 | F: Documentation/scsi/ufs.txt |
| 10168 | F: drivers/scsi/ufs/ |
| 10169 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10170 | UNSORTED BLOCK IMAGES (UBI) |
Artem Bityutskiy | 949cb62 | 2009-10-20 10:21:45 +0300 | [diff] [blame] | 10171 | M: Artem Bityutskiy <dedekind1@gmail.com> |
Richard Weinberger | 346be9b | 2015-01-28 12:28:24 +0100 | [diff] [blame] | 10172 | M: Richard Weinberger <richard@nod.at> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10173 | W: http://www.linux-mtd.infradead.org/ |
| 10174 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | b6b44e0 | 2014-01-02 16:43:51 +0200 | [diff] [blame] | 10175 | T: git git://git.infradead.org/ubifs-2.6.git |
Richard Weinberger | 346be9b | 2015-01-28 12:28:24 +0100 | [diff] [blame] | 10176 | S: Supported |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 10177 | F: drivers/mtd/ubi/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10178 | F: include/linux/mtd/ubi.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10179 | F: include/uapi/mtd/ubi-user.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10181 | USB ACM DRIVER |
Oliver Neukum | 61eee9a | 2012-08-01 14:32:55 +0200 | [diff] [blame] | 10182 | M: Oliver Neukum <oliver@neukum.org> |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 10183 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10184 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10185 | F: Documentation/usb/acm.txt |
| 10186 | F: drivers/usb/class/cdc-acm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10187 | |
Pontus Fuchs | b7d572e | 2012-10-23 20:33:57 +0200 | [diff] [blame] | 10188 | USB AR5523 WIRELESS DRIVER |
| 10189 | M: Pontus Fuchs <pontus.fuchs@gmail.com> |
| 10190 | L: linux-wireless@vger.kernel.org |
| 10191 | S: Maintained |
| 10192 | F: drivers/net/wireless/ath/ar5523/ |
| 10193 | |
Matthew Wilcox | 115bb1f | 2010-10-07 13:05:23 +0200 | [diff] [blame] | 10194 | USB ATTACHED SCSI |
Hans de Goede | f50a496 | 2013-10-28 10:48:04 +0000 | [diff] [blame] | 10195 | M: Hans de Goede <hdegoede@redhat.com> |
Gerd Hoffmann | 8eae0fb | 2013-01-25 14:52:09 +0100 | [diff] [blame] | 10196 | M: Gerd Hoffmann <kraxel@redhat.com> |
Matthew Wilcox | 115bb1f | 2010-10-07 13:05:23 +0200 | [diff] [blame] | 10197 | L: linux-usb@vger.kernel.org |
| 10198 | L: linux-scsi@vger.kernel.org |
Gerd Hoffmann | 8eae0fb | 2013-01-25 14:52:09 +0100 | [diff] [blame] | 10199 | S: Maintained |
Matthew Wilcox | 115bb1f | 2010-10-07 13:05:23 +0200 | [diff] [blame] | 10200 | F: drivers/usb/storage/uas.c |
| 10201 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10202 | USB CDC ETHERNET DRIVER |
Oliver Neukum | 61eee9a | 2012-08-01 14:32:55 +0200 | [diff] [blame] | 10203 | M: Oliver Neukum <oliver@neukum.org> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10204 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10205 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10206 | F: drivers/net/usb/cdc_*.c |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10207 | F: include/uapi/linux/usb/cdc.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10208 | |
Keith Packard | 66e3e59 | 2015-03-19 20:36:49 -0700 | [diff] [blame] | 10209 | USB CHAOSKEY DRIVER |
| 10210 | M: Keith Packard <keithp@keithp.com> |
| 10211 | L: linux-usb@vger.kernel.org |
| 10212 | S: Maintained |
| 10213 | F: drivers/usb/misc/chaoskey.c |
| 10214 | |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 10215 | USB CYPRESS C67X00 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10216 | M: Peter Korsgaard <jacmet@sunsite.dk> |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 10217 | L: linux-usb@vger.kernel.org |
| 10218 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10219 | F: drivers/usb/c67x00/ |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 10220 | |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 10221 | USB DAVICOM DM9601 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10222 | M: Peter Korsgaard <jacmet@sunsite.dk> |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 10223 | L: netdev@vger.kernel.org |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 10224 | W: http://www.linux-usb.org/usbnet |
| 10225 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10226 | F: drivers/net/usb/dm9601.c |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 10227 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 10228 | USB DIAMOND RIO500 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10229 | M: Cesar Miquel <miquel@df.uba.ar> |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 10230 | L: rio500-users@lists.sourceforge.net |
| 10231 | W: http://rio500.sourceforge.net |
| 10232 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10233 | F: drivers/usb/misc/rio500* |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 10234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10235 | USB EHCI DRIVER |
Alan Stern | 578333a | 2011-06-15 16:32:46 -0400 | [diff] [blame] | 10236 | M: Alan Stern <stern@rowland.harvard.edu> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10237 | L: linux-usb@vger.kernel.org |
Alan Stern | 578333a | 2011-06-15 16:32:46 -0400 | [diff] [blame] | 10238 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10239 | F: Documentation/usb/ehci.txt |
| 10240 | F: drivers/usb/host/ehci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10241 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 10242 | USB GADGET/PERIPHERAL SUBSYSTEM |
Felipe Balbi | d6d0f66 | 2011-06-08 19:16:28 +0300 | [diff] [blame] | 10243 | M: Felipe Balbi <balbi@ti.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10244 | L: linux-usb@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 10245 | W: http://www.linux-usb.org/gadget |
Felipe Balbi | d6d0f66 | 2011-06-08 19:16:28 +0300 | [diff] [blame] | 10246 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
| 10247 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10248 | F: drivers/usb/gadget/ |
| 10249 | F: include/linux/usb/gadget* |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 10250 | |
Jiri Kosina | 2dea64b | 2007-07-11 12:12:11 +0200 | [diff] [blame] | 10251 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10252 | M: Jiri Kosina <jkosina@suse.cz> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10253 | L: linux-usb@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 10254 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10255 | S: Maintained |
Joe Perches | c2f0197 | 2011-06-01 10:59:13 -0700 | [diff] [blame] | 10256 | F: Documentation/hid/hiddev.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10257 | F: drivers/hid/usbhid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10258 | |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 10259 | USB ISP116X DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10260 | M: Olav Kongas <ok@artecdesign.ee> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10261 | L: linux-usb@vger.kernel.org |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 10262 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10263 | F: drivers/usb/host/isp116x* |
| 10264 | F: include/linux/usb/isp116x.h |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 10265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10266 | USB MASS STORAGE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10267 | M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10268 | L: linux-usb@vger.kernel.org |
Matthew Dharm | 8836aeb | 2005-12-04 22:03:47 -0800 | [diff] [blame] | 10269 | L: usb-storage@lists.one-eyed-alien.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10270 | S: Maintained |
| 10271 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10272 | F: drivers/usb/storage/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10273 | |
Clemens Ladisch | af39917 | 2011-01-10 16:32:54 +0100 | [diff] [blame] | 10274 | USB MIDI DRIVER |
| 10275 | M: Clemens Ladisch <clemens@ladisch.de> |
| 10276 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 10277 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 10278 | S: Maintained |
| 10279 | F: sound/usb/midi.* |
| 10280 | |
Joe Perches | 444ce9d | 2013-08-01 21:03:32 -0700 | [diff] [blame] | 10281 | USB NETWORKING DRIVERS |
| 10282 | L: linux-usb@vger.kernel.org |
| 10283 | S: Odd Fixes |
| 10284 | F: drivers/net/usb/ |
| 10285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10286 | USB OHCI DRIVER |
Alan Stern | 578333a | 2011-06-15 16:32:46 -0400 | [diff] [blame] | 10287 | M: Alan Stern <stern@rowland.harvard.edu> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10288 | L: linux-usb@vger.kernel.org |
Alan Stern | 578333a | 2011-06-15 16:32:46 -0400 | [diff] [blame] | 10289 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10290 | F: Documentation/usb/ohci.txt |
| 10291 | F: drivers/usb/host/ohci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10292 | |
Peter Chen | 963ffa3 | 2015-02-15 12:22:59 +0800 | [diff] [blame] | 10293 | USB OTG FSM (Finite State Machine) |
| 10294 | M: Peter Chen <Peter.Chen@freescale.com> |
Peter Chen | 8373856 | 2015-03-23 19:57:36 +0800 | [diff] [blame] | 10295 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
Peter Chen | 963ffa3 | 2015-02-15 12:22:59 +0800 | [diff] [blame] | 10296 | L: linux-usb@vger.kernel.org |
| 10297 | S: Maintained |
| 10298 | F: drivers/usb/common/usb-otg-fsm.c |
| 10299 | |
Valentina Manea | 563da3a | 2014-08-20 07:31:02 +0300 | [diff] [blame] | 10300 | USB OVER IP DRIVER |
| 10301 | M: Valentina Manea <valentina.manea.m@gmail.com> |
| 10302 | M: Shuah Khan <shuah.kh@samsung.com> |
| 10303 | L: linux-usb@vger.kernel.org |
| 10304 | S: Maintained |
| 10305 | F: drivers/usb/usbip/ |
| 10306 | F: tools/usb/usbip/ |
| 10307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10308 | USB PEGASUS DRIVER |
Petko Manolov | a16b945 | 2013-04-29 16:17:25 -0700 | [diff] [blame] | 10309 | M: Petko Manolov <petkan@nucleusys.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10310 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 10311 | L: netdev@vger.kernel.org |
Petko Manolov | 052e312 | 2013-11-15 11:51:54 +0200 | [diff] [blame] | 10312 | T: git git://github.com/petkan/pegasus.git |
| 10313 | W: https://github.com/petkan/pegasus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10314 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10315 | F: drivers/net/usb/pegasus.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10316 | |
Felipe Balbi | d3ad558 | 2012-05-21 16:24:49 +0300 | [diff] [blame] | 10317 | USB PHY LAYER |
| 10318 | M: Felipe Balbi <balbi@ti.com> |
| 10319 | L: linux-usb@vger.kernel.org |
| 10320 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
| 10321 | S: Maintained |
| 10322 | F: drivers/usb/phy/ |
Felipe Balbi | d3ad558 | 2012-05-21 16:24:49 +0300 | [diff] [blame] | 10323 | |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 10324 | USB PRINTER DRIVER (usblp) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10325 | M: Pete Zaitcev <zaitcev@redhat.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10326 | L: linux-usb@vger.kernel.org |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 10327 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10328 | F: drivers/usb/class/usblp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10329 | |
| 10330 | USB RTL8150 DRIVER |
Petko Manolov | a16b945 | 2013-04-29 16:17:25 -0700 | [diff] [blame] | 10331 | M: Petko Manolov <petkan@nucleusys.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10332 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 10333 | L: netdev@vger.kernel.org |
Petko Manolov | 052e312 | 2013-11-15 11:51:54 +0200 | [diff] [blame] | 10334 | T: git git://github.com/petkan/rtl8150.git |
| 10335 | W: https://github.com/petkan/rtl8150 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10336 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10337 | F: drivers/net/usb/rtl8150.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10338 | |
Greg KH | f896b79 | 2013-10-30 11:07:31 -0700 | [diff] [blame] | 10339 | USB SERIAL SUBSYSTEM |
Johan Hovold | 6608569 | 2014-06-23 12:33:15 +0200 | [diff] [blame] | 10340 | M: Johan Hovold <johan@kernel.org> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10341 | L: linux-usb@vger.kernel.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 10342 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10343 | F: Documentation/usb/usb-serial.txt |
Greg KH | f896b79 | 2013-10-30 11:07:31 -0700 | [diff] [blame] | 10344 | F: drivers/usb/serial/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10345 | F: include/linux/usb/serial.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10346 | |
Steve Glendinning | b3f0db1 | 2012-08-15 21:53:38 +0000 | [diff] [blame] | 10347 | USB SMSC75XX ETHERNET DRIVER |
| 10348 | M: Steve Glendinning <steve.glendinning@shawell.net> |
| 10349 | L: netdev@vger.kernel.org |
| 10350 | S: Maintained |
| 10351 | F: drivers/net/usb/smsc75xx.* |
| 10352 | |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 10353 | USB SMSC95XX ETHERNET DRIVER |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 10354 | M: Steve Glendinning <steve.glendinning@shawell.net> |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 10355 | L: netdev@vger.kernel.org |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 10356 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10357 | F: drivers/net/usb/smsc95xx.* |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 10358 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10359 | USB SUBSYSTEM |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 10360 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10361 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10362 | W: http://www.linux-usb.org |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 10363 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10364 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10365 | F: Documentation/usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10366 | F: drivers/usb/ |
| 10367 | F: include/linux/usb.h |
| 10368 | F: include/linux/usb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10369 | |
| 10370 | USB UHCI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10371 | M: Alan Stern <stern@rowland.harvard.edu> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10372 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10373 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10374 | F: drivers/usb/host/uhci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10375 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 10376 | USB "USBNET" DRIVER FRAMEWORK |
Oliver Neukum | 686f13b | 2011-04-29 14:15:53 +0200 | [diff] [blame] | 10377 | M: Oliver Neukum <oneukum@suse.de> |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 10378 | L: netdev@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 10379 | W: http://www.linux-usb.org/usbnet |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10380 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10381 | F: drivers/net/usb/usbnet.c |
| 10382 | F: include/linux/usb/usbnet.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10383 | |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 10384 | USB VIDEO CLASS |
Joe Perches | c53ac07 | 2010-08-09 17:20:51 -0700 | [diff] [blame] | 10385 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
Laurent Pinchart | 616bd4e | 2012-04-02 06:11:09 -0300 | [diff] [blame] | 10386 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 10387 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 10388 | T: git git://linuxtv.org/media_tree.git |
Laurent Pinchart | 57c6d2e | 2010-04-30 10:48:51 -0300 | [diff] [blame] | 10389 | W: http://www.ideasonboard.org/uvc/ |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 10390 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 10391 | F: drivers/media/usb/uvc/ |
Mauro Carvalho Chehab | 6c0f035 | 2012-11-02 11:56:03 -0200 | [diff] [blame] | 10392 | F: include/uapi/linux/uvcvideo.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10393 | |
Hans Verkuil | b60b9c4 | 2012-11-23 07:54:42 -0300 | [diff] [blame] | 10394 | USB VISION DRIVER |
| 10395 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 10396 | L: linux-media@vger.kernel.org |
| 10397 | T: git git://linuxtv.org/media_tree.git |
| 10398 | W: http://linuxtv.org |
| 10399 | S: Odd Fixes |
| 10400 | F: drivers/media/usb/usbvision/ |
| 10401 | |
Laurent Pinchart | 8282da4 | 2012-10-04 02:32:42 +0200 | [diff] [blame] | 10402 | USB WEBCAM GADGET |
| 10403 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 10404 | L: linux-usb@vger.kernel.org |
| 10405 | S: Maintained |
Andrzej Pietrasiewicz | 3a83c16 | 2014-09-09 02:02:09 +0300 | [diff] [blame] | 10406 | F: drivers/usb/gadget/function/*uvc* |
Joe Perches | faf2e1d | 2014-08-08 14:26:18 -0700 | [diff] [blame] | 10407 | F: drivers/usb/gadget/legacy/webcam.c |
Laurent Pinchart | 8282da4 | 2012-10-04 02:32:42 +0200 | [diff] [blame] | 10408 | |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 10409 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
Jussi Kivilinna | e6146c5 | 2013-03-07 22:33:38 +0200 | [diff] [blame] | 10410 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 10411 | L: linux-wireless@vger.kernel.org |
| 10412 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10413 | F: drivers/net/wireless/rndis_wlan.c |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 10414 | |
Sarah Sharp | eb6bab1 | 2009-04-29 19:07:13 -0700 | [diff] [blame] | 10415 | USB XHCI DRIVER |
Sarah Sharp | 03d8505 | 2014-03-20 16:20:56 -0700 | [diff] [blame] | 10416 | M: Mathias Nyman <mathias.nyman@intel.com> |
Sarah Sharp | eb6bab1 | 2009-04-29 19:07:13 -0700 | [diff] [blame] | 10417 | L: linux-usb@vger.kernel.org |
| 10418 | S: Supported |
Sarah Sharp | 36d0344 | 2009-12-01 10:37:07 -0800 | [diff] [blame] | 10419 | F: drivers/usb/host/xhci* |
| 10420 | F: drivers/usb/host/pci-quirks* |
Sarah Sharp | eb6bab1 | 2009-04-29 19:07:13 -0700 | [diff] [blame] | 10421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10422 | USB ZD1201 DRIVER |
John W. Linville | 4086b9c | 2010-07-22 14:41:08 -0400 | [diff] [blame] | 10423 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10424 | W: http://linux-lc100020.sourceforge.net |
John W. Linville | 4086b9c | 2010-07-22 14:41:08 -0400 | [diff] [blame] | 10425 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10426 | F: drivers/net/wireless/zd1201.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10427 | |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 10428 | USB ZR364XX DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10429 | M: Antoine Jacquet <royale@zerezo.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 10430 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 10431 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 10432 | T: git git://linuxtv.org/media_tree.git |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 10433 | W: http://royale.zerezo.com/zr364xx/ |
| 10434 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10435 | F: Documentation/video4linux/zr364xx.txt |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 10436 | F: drivers/media/usb/zr364xx/ |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 10437 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 10438 | USER-MODE LINUX (UML) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10439 | M: Jeff Dike <jdike@addtoit.com> |
Richard Weinberger | b15194b | 2011-03-26 20:48:57 +0100 | [diff] [blame] | 10440 | M: Richard Weinberger <richard@nod.at> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10441 | L: user-mode-linux-devel@lists.sourceforge.net |
| 10442 | L: user-mode-linux-user@lists.sourceforge.net |
| 10443 | W: http://user-mode-linux.sourceforge.net |
| 10444 | S: Maintained |
Rob Landley | 6151658 | 2011-05-06 09:27:36 -0700 | [diff] [blame] | 10445 | F: Documentation/virtual/uml/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10446 | F: arch/um/ |
Richard Weinberger | b070989 | 2012-08-02 01:00:47 +0200 | [diff] [blame] | 10447 | F: arch/x86/um/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10448 | F: fs/hostfs/ |
| 10449 | F: fs/hppfs/ |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 10450 | |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 10451 | USERSPACE I/O (UIO) |
Hans J. Koch | 6a534c9 | 2011-04-14 15:22:16 -0700 | [diff] [blame] | 10452 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 10453 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 10454 | S: Maintained |
Mandeep Sandhu | 3d3fecb | 2015-01-10 19:15:45 -0800 | [diff] [blame] | 10455 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10456 | F: Documentation/DocBook/uio-howto.tmpl |
| 10457 | F: drivers/uio/ |
| 10458 | F: include/linux/uio*.h |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 10459 | |
Karel Zak | 256cccb | 2012-06-01 10:13:09 +0200 | [diff] [blame] | 10460 | UTIL-LINUX PACKAGE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10461 | M: Karel Zak <kzak@redhat.com> |
Karel Zak | 256cccb | 2012-06-01 10:13:09 +0200 | [diff] [blame] | 10462 | L: util-linux@vger.kernel.org |
| 10463 | W: http://en.wikipedia.org/wiki/Util-linux |
| 10464 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git |
Karel Zak | f899b0a | 2008-05-23 13:04:21 -0700 | [diff] [blame] | 10465 | S: Maintained |
| 10466 | |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 10467 | UVESAFB DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10468 | M: Michal Januszewski <spock@gentoo.org> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 10469 | L: linux-fbdev@vger.kernel.org |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 10470 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
| 10471 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10472 | F: Documentation/fb/uvesafb.txt |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 10473 | F: drivers/video/fbdev/uvesafb.* |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 10474 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 10475 | VFAT/FAT/MSDOS FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10476 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10477 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10478 | F: Documentation/filesystems/vfat.txt |
| 10479 | F: fs/fat/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10480 | |
Alex Williamson | cba3345 | 2012-07-31 08:16:22 -0600 | [diff] [blame] | 10481 | VFIO DRIVER |
| 10482 | M: Alex Williamson <alex.williamson@redhat.com> |
| 10483 | L: kvm@vger.kernel.org |
| 10484 | S: Maintained |
| 10485 | F: Documentation/vfio.txt |
| 10486 | F: drivers/vfio/ |
| 10487 | F: include/linux/vfio.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10488 | F: include/uapi/linux/vfio.h |
Alex Williamson | cba3345 | 2012-07-31 08:16:22 -0600 | [diff] [blame] | 10489 | |
Pawel Osciak | 9e6f343 | 2011-06-15 15:08:32 -0700 | [diff] [blame] | 10490 | VIDEOBUF2 FRAMEWORK |
| 10491 | M: Pawel Osciak <pawel@osciak.com> |
| 10492 | M: Marek Szyprowski <m.szyprowski@samsung.com> |
Marek Szyprowski | e76e470 | 2011-06-02 04:52:07 -0300 | [diff] [blame] | 10493 | M: Kyungmin Park <kyungmin.park@samsung.com> |
Pawel Osciak | 9e6f343 | 2011-06-15 15:08:32 -0700 | [diff] [blame] | 10494 | L: linux-media@vger.kernel.org |
| 10495 | S: Maintained |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 10496 | F: drivers/media/v4l2-core/videobuf2-* |
Pawel Osciak | 9e6f343 | 2011-06-15 15:08:32 -0700 | [diff] [blame] | 10497 | F: include/media/videobuf2-* |
| 10498 | |
Amit Shah | 9a82446 | 2010-03-23 18:23:09 +0530 | [diff] [blame] | 10499 | VIRTIO CONSOLE DRIVER |
| 10500 | M: Amit Shah <amit.shah@redhat.com> |
| 10501 | L: virtualization@lists.linux-foundation.org |
| 10502 | S: Maintained |
| 10503 | F: drivers/char/virtio_console.c |
| 10504 | F: include/linux/virtio_console.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10505 | F: include/uapi/linux/virtio_console.h |
Amit Shah | 9a82446 | 2010-03-23 18:23:09 +0530 | [diff] [blame] | 10506 | |
Michael S. Tsirkin | 2426ec8 | 2011-01-31 16:46:20 +1030 | [diff] [blame] | 10507 | VIRTIO CORE, NET AND BLOCK DRIVERS |
| 10508 | M: Rusty Russell <rusty@rustcorp.com.au> |
| 10509 | M: "Michael S. Tsirkin" <mst@redhat.com> |
| 10510 | L: virtualization@lists.linux-foundation.org |
| 10511 | S: Maintained |
| 10512 | F: drivers/virtio/ |
Michael S. Tsirkin | c893c8d | 2013-07-08 11:31:13 +0930 | [diff] [blame] | 10513 | F: tools/virtio/ |
Michael S. Tsirkin | 2426ec8 | 2011-01-31 16:46:20 +1030 | [diff] [blame] | 10514 | F: drivers/net/virtio_net.c |
| 10515 | F: drivers/block/virtio_blk.c |
| 10516 | F: include/linux/virtio_*.h |
Amos Kong | 916cdab | 2013-04-02 16:42:02 +1030 | [diff] [blame] | 10517 | F: include/uapi/linux/virtio_*.h |
Michael S. Tsirkin | 2426ec8 | 2011-01-31 16:46:20 +1030 | [diff] [blame] | 10518 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 10519 | VIRTIO HOST (VHOST) |
| 10520 | M: "Michael S. Tsirkin" <mst@redhat.com> |
| 10521 | L: kvm@vger.kernel.org |
Michael Witten | c996d8b | 2010-11-15 19:55:34 +0000 | [diff] [blame] | 10522 | L: virtualization@lists.linux-foundation.org |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 10523 | L: netdev@vger.kernel.org |
| 10524 | S: Maintained |
| 10525 | F: drivers/vhost/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10526 | F: include/uapi/linux/vhost.h |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 10527 | |
Gerd Hoffmann | 271c865 | 2015-03-27 12:46:12 +1030 | [diff] [blame] | 10528 | VIRTIO INPUT DRIVER |
| 10529 | M: Gerd Hoffmann <kraxel@redhat.com> |
| 10530 | S: Maintained |
| 10531 | F: drivers/virtio/virtio_input.c |
| 10532 | F: include/uapi/linux/virtio_input.h |
| 10533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10534 | VIA RHINE NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10535 | M: Roger Luethi <rl@hellgate.ch> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10536 | S: Maintained |
Jeff Kirsher | f2148a4 | 2011-05-20 20:43:09 -0700 | [diff] [blame] | 10537 | F: drivers/net/ethernet/via/via-rhine.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10538 | |
Harald Welte | f0bf7f6 | 2009-06-17 20:22:39 +0200 | [diff] [blame] | 10539 | VIA SD/MMC CARD CONTROLLER DRIVER |
Bruce Chang | 558bbb2 | 2011-01-13 15:45:37 -0800 | [diff] [blame] | 10540 | M: Bruce Chang <brucechang@via.com.tw> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10541 | M: Harald Welte <HaraldWelte@viatech.com> |
Harald Welte | f0bf7f6 | 2009-06-17 20:22:39 +0200 | [diff] [blame] | 10542 | S: Maintained |
| 10543 | F: drivers/mmc/host/via-sdmmc.c |
| 10544 | |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 10545 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
Florian Tobias Schandinat | c7babeb | 2010-05-20 14:06:57 +0000 | [diff] [blame] | 10546 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 10547 | L: linux-fbdev@vger.kernel.org |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 10548 | S: Maintained |
Florian Tobias Schandinat | c7babeb | 2010-05-20 14:06:57 +0000 | [diff] [blame] | 10549 | F: include/linux/via-core.h |
| 10550 | F: include/linux/via-gpio.h |
| 10551 | F: include/linux/via_i2c.h |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 10552 | F: drivers/video/fbdev/via/ |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 10553 | |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 10554 | VIA VELOCITY NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10555 | M: Francois Romieu <romieu@fr.zoreil.com> |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 10556 | L: netdev@vger.kernel.org |
| 10557 | S: Maintained |
Jeff Kirsher | f2148a4 | 2011-05-20 20:43:09 -0700 | [diff] [blame] | 10558 | F: drivers/net/ethernet/via/via-velocity.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10559 | |
Hans Verkuil | 77911fd | 2014-12-10 04:22:37 -0300 | [diff] [blame] | 10560 | VIVID VIRTUAL VIDEO DRIVER |
Hans Verkuil | 0b7bc1f | 2012-11-23 08:21:50 -0300 | [diff] [blame] | 10561 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 10562 | L: linux-media@vger.kernel.org |
| 10563 | T: git git://linuxtv.org/media_tree.git |
| 10564 | W: http://linuxtv.org |
| 10565 | S: Maintained |
Hans Verkuil | 77911fd | 2014-12-10 04:22:37 -0300 | [diff] [blame] | 10566 | F: drivers/media/platform/vivid/* |
Hans Verkuil | 0b7bc1f | 2012-11-23 08:21:50 -0300 | [diff] [blame] | 10567 | |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 10568 | VLAN (802.1Q) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10569 | M: Patrick McHardy <kaber@trash.net> |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 10570 | L: netdev@vger.kernel.org |
| 10571 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10572 | F: drivers/net/macvlan.c |
| 10573 | F: include/linux/if_*vlan.h |
| 10574 | F: net/8021q/ |
Patrick McHardy | be7f827 | 2007-10-23 20:26:36 -0700 | [diff] [blame] | 10575 | |
Florian Fainelli | 55e331c | 2009-06-16 15:33:53 -0700 | [diff] [blame] | 10576 | VLYNQ BUS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10577 | M: Florian Fainelli <florian@openwrt.org> |
Lennert Buytenhek | 8578d7a | 2011-01-12 16:59:51 -0800 | [diff] [blame] | 10578 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
Florian Fainelli | 55e331c | 2009-06-16 15:33:53 -0700 | [diff] [blame] | 10579 | S: Maintained |
| 10580 | F: drivers/vlynq/vlynq.c |
| 10581 | F: include/linux/vlynq.h |
| 10582 | |
Martyn Welch | 390beae | 2012-05-03 17:52:36 +0100 | [diff] [blame] | 10583 | VME SUBSYSTEM |
| 10584 | M: Martyn Welch <martyn.welch@ge.com> |
Manohar Vanga | 1bd289d | 2012-06-14 15:57:01 +0200 | [diff] [blame] | 10585 | M: Manohar Vanga <manohar.vanga@gmail.com> |
Martyn Welch | 390beae | 2012-05-03 17:52:36 +0100 | [diff] [blame] | 10586 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 10587 | L: devel@driverdev.osuosl.org |
| 10588 | S: Maintained |
| 10589 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
| 10590 | F: Documentation/vme_api.txt |
| 10591 | F: drivers/staging/vme/ |
| 10592 | F: drivers/vme/ |
| 10593 | F: include/linux/vme* |
| 10594 | |
Alok Kataria | 4488e09 | 2013-09-04 14:23:41 +0530 | [diff] [blame] | 10595 | VMWARE HYPERVISOR INTERFACE |
| 10596 | M: Alok Kataria <akataria@vmware.com> |
| 10597 | L: virtualization@lists.linux-foundation.org |
| 10598 | S: Supported |
| 10599 | F: arch/x86/kernel/cpu/vmware.c |
| 10600 | |
Dmitry Torokhov | 73b35d0 | 2014-06-20 10:14:58 -0700 | [diff] [blame] | 10601 | VMWARE BALLOON DRIVER |
| 10602 | M: Xavier Deguillard <xdeguillard@vmware.com> |
| 10603 | M: Philip Moltmann <moltmann@vmware.com> |
| 10604 | M: "VMware, Inc." <pv-drivers@vmware.com> |
| 10605 | L: linux-kernel@vger.kernel.org |
| 10606 | S: Maintained |
| 10607 | F: drivers/misc/vmw_balloon.c |
| 10608 | |
Thomas Hellstrom | 8b8be51 | 2015-04-14 10:06:38 -0700 | [diff] [blame] | 10609 | VMWARE VMMOUSE SUBDRIVER |
| 10610 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> |
| 10611 | M: "VMware, Inc." <pv-drivers@vmware.com> |
| 10612 | L: linux-input@vger.kernel.org |
| 10613 | S: Maintained |
| 10614 | F: drivers/input/mouse/vmmouse.c |
| 10615 | F: drivers/input/mouse/vmmouse.h |
| 10616 | |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 10617 | VMWARE VMXNET3 ETHERNET DRIVER |
Joe Perches | 65c8bb5 | 2009-11-11 14:26:12 -0800 | [diff] [blame] | 10618 | M: Shreyas Bhatewara <sbhatewara@vmware.com> |
| 10619 | M: "VMware, Inc." <pv-drivers@vmware.com> |
| 10620 | L: netdev@vger.kernel.org |
| 10621 | S: Maintained |
| 10622 | F: drivers/net/vmxnet3/ |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 10623 | |
Alok Kataria | 851b164 | 2009-10-13 14:51:05 -0700 | [diff] [blame] | 10624 | VMware PVSCSI driver |
Alok Kataria | f2d7e40 | 2011-11-10 20:04:03 -0800 | [diff] [blame] | 10625 | M: Arvind Kumar <arvindkumar@vmware.com> |
Alok Kataria | 851b164 | 2009-10-13 14:51:05 -0700 | [diff] [blame] | 10626 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
| 10627 | L: linux-scsi@vger.kernel.org |
| 10628 | S: Maintained |
| 10629 | F: drivers/scsi/vmw_pvscsi.c |
| 10630 | F: drivers/scsi/vmw_pvscsi.h |
| 10631 | |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 10632 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
Axel Lin | 88dd75a | 2013-03-25 16:49:51 +0800 | [diff] [blame] | 10633 | M: Liam Girdwood <lgirdwood@gmail.com> |
Mark Brown | b02e48f | 2013-04-12 11:39:57 +0100 | [diff] [blame] | 10634 | M: Mark Brown <broonie@kernel.org> |
Mark Brown | 5cdeb2c | 2014-08-16 12:31:11 +0100 | [diff] [blame] | 10635 | L: linux-kernel@vger.kernel.org |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 10636 | W: http://opensource.wolfsonmicro.com/node/15 |
Liam Girdwood | 1dd68f0 | 2009-02-02 21:43:31 +0000 | [diff] [blame] | 10637 | W: http://www.slimlogic.co.uk/?p=48 |
Sachin Kamat | 6febb5a | 2013-07-04 12:08:50 +0530 | [diff] [blame] | 10638 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 10639 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10640 | F: drivers/regulator/ |
| 10641 | F: include/linux/regulator/ |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 10642 | |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 10643 | VT1211 HARDWARE MONITOR DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10644 | M: Juerg Haefliger <juergh@gmail.com> |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 10645 | L: lm-sensors@lm-sensors.org |
| 10646 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10647 | F: Documentation/hwmon/vt1211 |
| 10648 | F: drivers/hwmon/vt1211.c |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 10649 | |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 10650 | VT8231 HARDWARE MONITOR DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10651 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 10652 | L: lm-sensors@lm-sensors.org |
| 10653 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10654 | F: drivers/hwmon/vt8231.c |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 10655 | |
Tony Olech | 88095e7 | 2011-05-14 16:48:13 -0400 | [diff] [blame] | 10656 | VUB300 USB to SDIO/SD/MMC bridge chip |
| 10657 | M: Tony Olech <tony.olech@elandigitalsystems.com> |
| 10658 | L: linux-mmc@vger.kernel.org |
| 10659 | L: linux-usb@vger.kernel.org |
| 10660 | S: Supported |
| 10661 | F: drivers/mmc/host/vub300.c |
| 10662 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10663 | W1 DALLAS'S 1-WIRE BUS |
Evgeniy Polyakov | a801876 | 2011-08-25 15:59:06 -0700 | [diff] [blame] | 10664 | M: Evgeniy Polyakov <zbr@ioremap.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10665 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10666 | F: Documentation/w1/ |
| 10667 | F: drivers/w1/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10668 | |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 10669 | W83791D HARDWARE MONITORING DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10670 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 10671 | L: lm-sensors@lm-sensors.org |
Marc Hulsman | 25845c2 | 2008-06-08 10:59:41 -0400 | [diff] [blame] | 10672 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10673 | F: Documentation/hwmon/w83791d |
| 10674 | F: drivers/hwmon/w83791d.c |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 10675 | |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 10676 | W83793 HARDWARE MONITORING DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10677 | M: Rudolf Marek <r.marek@assembler.cz> |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 10678 | L: lm-sensors@lm-sensors.org |
| 10679 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10680 | F: Documentation/hwmon/w83793 |
| 10681 | F: drivers/hwmon/w83793.c |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 10682 | |
Jean Delvare | e3760b4 | 2010-10-28 20:31:49 +0200 | [diff] [blame] | 10683 | W83795 HARDWARE MONITORING DRIVER |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 10684 | M: Jean Delvare <jdelvare@suse.de> |
Jean Delvare | e3760b4 | 2010-10-28 20:31:49 +0200 | [diff] [blame] | 10685 | L: lm-sensors@lm-sensors.org |
| 10686 | S: Maintained |
| 10687 | F: drivers/hwmon/w83795.c |
| 10688 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10689 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10690 | M: Pierre Ossman <pierre@ossman.eu> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10691 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10692 | F: drivers/mmc/host/wbsd.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10693 | |
Hans de Goede | b4e0592 | 2014-07-20 13:35:44 -0700 | [diff] [blame] | 10694 | WACOM PROTOCOL 4 SERIAL TABLETS |
| 10695 | M: Julian Squires <julian@cipht.net> |
| 10696 | M: Hans de Goede <hdegoede@redhat.com> |
| 10697 | L: linux-input@vger.kernel.org |
| 10698 | S: Maintained |
| 10699 | F: drivers/input/tablet/wacom_serial4.c |
| 10700 | |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 10701 | WATCHDOG DEVICE DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10702 | M: Wim Van Sebroeck <wim@iguana.be> |
Wim Van Sebroeck | 230a5ce | 2010-07-29 18:02:51 +0000 | [diff] [blame] | 10703 | L: linux-watchdog@vger.kernel.org |
| 10704 | W: http://www.linux-watchdog.org/ |
Wim Van Sebroeck | f599aaf | 2012-02-28 17:11:05 +0100 | [diff] [blame] | 10705 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 10706 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10707 | F: Documentation/watchdog/ |
| 10708 | F: drivers/watchdog/ |
| 10709 | F: include/linux/watchdog.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10710 | F: include/uapi/linux/watchdog.h |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 10711 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10712 | WD7000 SCSI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10713 | M: Miroslav Zagorac <zaga@fly.cc.fer.hr> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10714 | L: linux-scsi@vger.kernel.org |
| 10715 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10716 | F: drivers/scsi/wd7000.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10717 | |
David Herrmann | b22e00f | 2011-09-06 13:50:40 +0200 | [diff] [blame] | 10718 | WIIMOTE HID DRIVER |
| 10719 | M: David Herrmann <dh.herrmann@googlemail.com> |
| 10720 | L: linux-input@vger.kernel.org |
| 10721 | S: Maintained |
| 10722 | F: drivers/hid/hid-wiimote* |
| 10723 | |
David Härdeman | e258b80 | 2009-09-21 17:04:53 -0700 | [diff] [blame] | 10724 | WINBOND CIR DRIVER |
Joe Perches | 364e9e1 | 2009-10-26 16:49:45 -0700 | [diff] [blame] | 10725 | M: David Härdeman <david@hardeman.nu> |
David Härdeman | e258b80 | 2009-09-21 17:04:53 -0700 | [diff] [blame] | 10726 | S: Maintained |
Joe Perches | 116ab80 | 2011-03-22 16:34:38 -0700 | [diff] [blame] | 10727 | F: drivers/media/rc/winbond-cir.c |
David Härdeman | e258b80 | 2009-09-21 17:04:53 -0700 | [diff] [blame] | 10728 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 10729 | WIMAX STACK |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10730 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 10731 | M: linux-wimax@intel.com |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 10732 | L: wimax@linuxwimax.org (subscribers-only) |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 10733 | S: Supported |
| 10734 | W: http://linuxwimax.org |
Joe Perches | 315987d | 2010-08-09 17:20:50 -0700 | [diff] [blame] | 10735 | F: Documentation/wimax/README.wimax |
Joe Perches | 315987d | 2010-08-09 17:20:50 -0700 | [diff] [blame] | 10736 | F: include/linux/wimax/debug.h |
| 10737 | F: include/net/wimax.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10738 | F: include/uapi/linux/wimax.h |
Joe Perches | 315987d | 2010-08-09 17:20:50 -0700 | [diff] [blame] | 10739 | F: net/wimax/ |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 10740 | |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 10741 | WISTRON LAPTOP BUTTON DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10742 | M: Miloslav Trmac <mitr@volny.cz> |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 10743 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10744 | F: drivers/input/misc/wistron_btns.c |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 10745 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10746 | WL3501 WIRELESS PCMCIA CARD DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10747 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 10748 | L: linux-wireless@vger.kernel.org |
Arnaldo Carvalho de Melo | 926554c | 2007-03-31 12:05:49 -0300 | [diff] [blame] | 10749 | W: http://oops.ghostprotocols.net:81/blog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10750 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10751 | F: drivers/net/wireless/wl3501* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10752 | |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 10753 | WM97XX TOUCHSCREEN DRIVERS |
Mark Brown | d9f1f48 | 2013-06-01 19:31:15 +0100 | [diff] [blame] | 10754 | M: Mark Brown <broonie@kernel.org> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10755 | M: Liam Girdwood <lrg@slimlogic.co.uk> |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 10756 | L: linux-input@vger.kernel.org |
| 10757 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch |
| 10758 | W: http://opensource.wolfsonmicro.com/node/7 |
| 10759 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10760 | F: drivers/input/touchscreen/*wm97* |
| 10761 | F: include/linux/wm97xx.h |
Mark Brown | febf1df | 2008-04-02 00:51:09 -0400 | [diff] [blame] | 10762 | |
Mark Brown | 055bcbc | 2010-08-13 14:18:12 +0100 | [diff] [blame] | 10763 | WOLFSON MICROELECTRONICS DRIVERS |
Mark Brown | fef9516 | 2012-04-04 12:06:24 +0100 | [diff] [blame] | 10764 | L: patches@opensource.wolfsonmicro.com |
Mark Brown | cf8eda3 | 2010-10-05 19:31:40 -0700 | [diff] [blame] | 10765 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
Mark Brown | b75ea16 | 2009-07-02 16:43:08 +0100 | [diff] [blame] | 10766 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
Mark Brown | cf8eda3 | 2010-10-05 19:31:40 -0700 | [diff] [blame] | 10767 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
Mark Brown | b75ea16 | 2009-07-02 16:43:08 +0100 | [diff] [blame] | 10768 | S: Supported |
Joe Perches | 3768f0b | 2009-12-14 18:00:54 -0800 | [diff] [blame] | 10769 | F: Documentation/hwmon/wm83?? |
Mark Brown | af1c538 | 2011-10-14 21:09:43 +0100 | [diff] [blame] | 10770 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
Mark Brown | f05259a | 2012-05-17 10:04:57 +0100 | [diff] [blame] | 10771 | F: drivers/clk/clk-wm83*.c |
Mark Brown | 9c3095988 | 2012-06-23 11:25:43 +0100 | [diff] [blame] | 10772 | F: drivers/extcon/extcon-arizona.c |
Mark Brown | b75ea16 | 2009-07-02 16:43:08 +0100 | [diff] [blame] | 10773 | F: drivers/leds/leds-wm83*.c |
Mark Brown | 25b273b | 2012-06-05 18:13:53 +0100 | [diff] [blame] | 10774 | F: drivers/gpio/gpio-*wm*.c |
Mark Brown | 9c3095988 | 2012-06-23 11:25:43 +0100 | [diff] [blame] | 10775 | F: drivers/gpio/gpio-arizona.c |
Mark Brown | d22b086 | 2012-01-21 13:29:27 -0500 | [diff] [blame] | 10776 | F: drivers/hwmon/wm83??-hwmon.c |
Mark Brown | 59ec6da | 2011-08-19 17:53:12 +0900 | [diff] [blame] | 10777 | F: drivers/input/misc/wm831x-on.c |
| 10778 | F: drivers/input/touchscreen/wm831x-ts.c |
| 10779 | F: drivers/input/touchscreen/wm97*.c |
Mark Brown | 9c3095988 | 2012-06-23 11:25:43 +0100 | [diff] [blame] | 10780 | F: drivers/mfd/arizona* |
| 10781 | F: drivers/mfd/wm*.c |
Mark Brown | b75ea16 | 2009-07-02 16:43:08 +0100 | [diff] [blame] | 10782 | F: drivers/power/wm83*.c |
| 10783 | F: drivers/rtc/rtc-wm83*.c |
| 10784 | F: drivers/regulator/wm8*.c |
Mark Brown | 3860e6c | 2009-09-09 14:46:43 +0100 | [diff] [blame] | 10785 | F: drivers/video/backlight/wm83*_bl.c |
Mark Brown | b75ea16 | 2009-07-02 16:43:08 +0100 | [diff] [blame] | 10786 | F: drivers/watchdog/wm83*_wdt.c |
Mark Brown | 9c3095988 | 2012-06-23 11:25:43 +0100 | [diff] [blame] | 10787 | F: include/linux/mfd/arizona/ |
Mark Brown | 3860e6c | 2009-09-09 14:46:43 +0100 | [diff] [blame] | 10788 | F: include/linux/mfd/wm831x/ |
Mark Brown | b75ea16 | 2009-07-02 16:43:08 +0100 | [diff] [blame] | 10789 | F: include/linux/mfd/wm8350/ |
Joe Perches | 3768f0b | 2009-12-14 18:00:54 -0800 | [diff] [blame] | 10790 | F: include/linux/mfd/wm8400* |
Mark Brown | 59ec6da | 2011-08-19 17:53:12 +0900 | [diff] [blame] | 10791 | F: include/linux/wm97xx.h |
Mark Brown | 055bcbc | 2010-08-13 14:18:12 +0100 | [diff] [blame] | 10792 | F: include/sound/wm????.h |
Mark Brown | 9c3095988 | 2012-06-23 11:25:43 +0100 | [diff] [blame] | 10793 | F: sound/soc/codecs/arizona.? |
Mark Brown | 055bcbc | 2010-08-13 14:18:12 +0100 | [diff] [blame] | 10794 | F: sound/soc/codecs/wm* |
Mark Brown | b75ea16 | 2009-07-02 16:43:08 +0100 | [diff] [blame] | 10795 | |
Tejun Heo | 3e6cd7a | 2010-12-10 17:20:23 +0100 | [diff] [blame] | 10796 | WORKQUEUE |
| 10797 | M: Tejun Heo <tj@kernel.org> |
Tejun Heo | 3e6cd7a | 2010-12-10 17:20:23 +0100 | [diff] [blame] | 10798 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
| 10799 | S: Maintained |
| 10800 | F: include/linux/workqueue.h |
| 10801 | F: kernel/workqueue.c |
| 10802 | F: Documentation/workqueue.txt |
| 10803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10804 | X.25 NETWORK LAYER |
Arnd Bergmann | 8bf2805 | 2009-12-14 01:53:41 +0000 | [diff] [blame] | 10805 | M: Andrew Hendry <andrew.hendry@gmail.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10806 | L: linux-x25@vger.kernel.org |
Arnd Bergmann | 8bf2805 | 2009-12-14 01:53:41 +0000 | [diff] [blame] | 10807 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10808 | F: Documentation/networking/x25* |
| 10809 | F: include/net/x25* |
| 10810 | F: net/x25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10811 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10812 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10813 | M: Thomas Gleixner <tglx@linutronix.de> |
| 10814 | M: Ingo Molnar <mingo@redhat.com> |
| 10815 | M: "H. Peter Anvin" <hpa@zytor.com> |
H. Peter Anvin | bcde563 | 2009-02-02 21:42:40 -0800 | [diff] [blame] | 10816 | M: x86@kernel.org |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 10817 | L: linux-kernel@vger.kernel.org |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 10818 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10819 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10820 | F: Documentation/x86/ |
| 10821 | F: arch/x86/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10822 | |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 10823 | X86 PLATFORM DRIVERS |
Darren Hart | e181ba1 | 2014-08-27 23:36:06 -0700 | [diff] [blame] | 10824 | M: Darren Hart <dvhart@infradead.org> |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 10825 | L: platform-driver-x86@vger.kernel.org |
Darren Hart | e181ba1 | 2014-08-27 23:36:06 -0700 | [diff] [blame] | 10826 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 10827 | S: Maintained |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 10828 | F: drivers/platform/x86/ |
Matthew Garrett | d094485 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 10829 | |
Ingo Molnar | c1f5c54 | 2011-06-18 22:51:13 +0200 | [diff] [blame] | 10830 | X86 MCE INFRASTRUCTURE |
| 10831 | M: Tony Luck <tony.luck@intel.com> |
Borislav Petkov | 487ba8e | 2012-10-29 18:40:10 +0100 | [diff] [blame] | 10832 | M: Borislav Petkov <bp@alien8.de> |
Ingo Molnar | c1f5c54 | 2011-06-18 22:51:13 +0200 | [diff] [blame] | 10833 | L: linux-edac@vger.kernel.org |
| 10834 | S: Maintained |
| 10835 | F: arch/x86/kernel/cpu/mcheck/* |
| 10836 | |
Andy Lutomirski | f0905c5 | 2014-12-12 16:25:47 -0800 | [diff] [blame] | 10837 | X86 VDSO |
| 10838 | M: Andy Lutomirski <luto@amacapital.net> |
| 10839 | L: linux-kernel@vger.kernel.org |
| 10840 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso |
| 10841 | S: Maintained |
| 10842 | F: arch/x86/vdso/ |
| 10843 | |
Mauro Carvalho Chehab | d6fad50 | 2012-11-02 12:05:07 -0200 | [diff] [blame] | 10844 | XC2028/3028 TUNER DRIVER |
Mauro Carvalho Chehab | 009a541 | 2014-11-21 15:48:27 -0200 | [diff] [blame] | 10845 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
Mauro Carvalho Chehab | d6fad50 | 2012-11-02 12:05:07 -0200 | [diff] [blame] | 10846 | L: linux-media@vger.kernel.org |
| 10847 | W: http://linuxtv.org |
| 10848 | T: git git://linuxtv.org/media_tree.git |
| 10849 | S: Maintained |
| 10850 | F: drivers/media/tuners/tuner-xc2028.* |
| 10851 | |
Ian Campbell | c446808 | 2011-04-27 15:26:46 -0700 | [diff] [blame] | 10852 | XEN HYPERVISOR INTERFACE |
Ian Campbell | c446808 | 2011-04-27 15:26:46 -0700 | [diff] [blame] | 10853 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
Konrad Rzeszutek Wilk | 3eeef8f | 2013-08-05 14:01:49 -0400 | [diff] [blame] | 10854 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
| 10855 | M: David Vrabel <david.vrabel@citrix.com> |
Konrad Rzeszutek Wilk | 11dbb52 | 2013-08-05 13:59:36 -0400 | [diff] [blame] | 10856 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
David Vrabel | ea70ba3 | 2014-01-17 11:51:51 +0000 | [diff] [blame] | 10857 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
Ian Campbell | c446808 | 2011-04-27 15:26:46 -0700 | [diff] [blame] | 10858 | S: Supported |
| 10859 | F: arch/x86/xen/ |
| 10860 | F: drivers/*/xen-*front.c |
| 10861 | F: drivers/xen/ |
| 10862 | F: arch/x86/include/asm/xen/ |
| 10863 | F: include/xen/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10864 | F: include/uapi/xen/ |
Ian Campbell | c446808 | 2011-04-27 15:26:46 -0700 | [diff] [blame] | 10865 | |
Stefano Stabellini | 77bfb47 | 2012-09-14 13:35:15 +0000 | [diff] [blame] | 10866 | XEN HYPERVISOR ARM |
| 10867 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> |
Konrad Rzeszutek Wilk | 11dbb52 | 2013-08-05 13:59:36 -0400 | [diff] [blame] | 10868 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
Stefano Stabellini | 77bfb47 | 2012-09-14 13:35:15 +0000 | [diff] [blame] | 10869 | S: Supported |
| 10870 | F: arch/arm/xen/ |
| 10871 | F: arch/arm/include/asm/xen/ |
| 10872 | |
Stefano Stabellini | b475e83 | 2013-06-04 16:13:23 +0000 | [diff] [blame] | 10873 | XEN HYPERVISOR ARM64 |
| 10874 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> |
Konrad Rzeszutek Wilk | 11dbb52 | 2013-08-05 13:59:36 -0400 | [diff] [blame] | 10875 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
Stefano Stabellini | b475e83 | 2013-06-04 16:13:23 +0000 | [diff] [blame] | 10876 | S: Supported |
| 10877 | F: arch/arm64/xen/ |
| 10878 | F: arch/arm64/include/asm/xen/ |
| 10879 | |
Ian Campbell | 9b57e1a | 2011-04-03 23:12:23 +0000 | [diff] [blame] | 10880 | XEN NETWORK BACKEND DRIVER |
| 10881 | M: Ian Campbell <ian.campbell@citrix.com> |
Wei Liu | 8386040 | 2013-09-26 12:41:53 +0100 | [diff] [blame] | 10882 | M: Wei Liu <wei.liu2@citrix.com> |
Konrad Rzeszutek Wilk | 11dbb52 | 2013-08-05 13:59:36 -0400 | [diff] [blame] | 10883 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
Ian Campbell | 9b57e1a | 2011-04-03 23:12:23 +0000 | [diff] [blame] | 10884 | L: netdev@vger.kernel.org |
| 10885 | S: Supported |
| 10886 | F: drivers/net/xen-netback/* |
| 10887 | |
Konrad Rzeszutek Wilk | c5f8e29 | 2010-10-04 13:32:26 -0400 | [diff] [blame] | 10888 | XEN PCI SUBSYSTEM |
| 10889 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
Konrad Rzeszutek Wilk | 11dbb52 | 2013-08-05 13:59:36 -0400 | [diff] [blame] | 10890 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 10891 | S: Supported |
Konrad Rzeszutek Wilk | c5f8e29 | 2010-10-04 13:32:26 -0400 | [diff] [blame] | 10892 | F: arch/x86/pci/*xen* |
| 10893 | F: drivers/pci/*xen* |
| 10894 | |
Konrad Rzeszutek Wilk | a2c5ae6 | 2014-06-27 10:10:45 -0400 | [diff] [blame] | 10895 | XEN BLOCK SUBSYSTEM |
| 10896 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
Roger Pau Monne | bcadb69 | 2015-01-23 17:14:29 +0100 | [diff] [blame] | 10897 | M: Roger Pau Monné <roger.pau@citrix.com> |
Konrad Rzeszutek Wilk | a2c5ae6 | 2014-06-27 10:10:45 -0400 | [diff] [blame] | 10898 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
| 10899 | S: Supported |
| 10900 | F: drivers/block/xen-blkback/* |
| 10901 | F: drivers/block/xen* |
| 10902 | |
Juergen Gross | 15d0360 | 2014-08-28 06:44:13 +0200 | [diff] [blame] | 10903 | XEN PVSCSI DRIVERS |
| 10904 | M: Juergen Gross <jgross@suse.com> |
| 10905 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
| 10906 | L: linux-scsi@vger.kernel.org |
| 10907 | S: Supported |
| 10908 | F: drivers/scsi/xen-scsifront.c |
| 10909 | F: drivers/xen/xen-scsiback.c |
| 10910 | F: include/xen/interface/io/vscsiif.h |
| 10911 | |
Konrad Rzeszutek Wilk | c5f8e29 | 2010-10-04 13:32:26 -0400 | [diff] [blame] | 10912 | XEN SWIOTLB SUBSYSTEM |
| 10913 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
Konrad Rzeszutek Wilk | 11dbb52 | 2013-08-05 13:59:36 -0400 | [diff] [blame] | 10914 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
Konrad Rzeszutek Wilk | c5f8e29 | 2010-10-04 13:32:26 -0400 | [diff] [blame] | 10915 | S: Supported |
| 10916 | F: arch/x86/xen/*swiotlb* |
| 10917 | F: drivers/xen/*swiotlb* |
| 10918 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10919 | XFS FILESYSTEM |
| 10920 | P: Silicon Graphics Inc |
Namjae Jeon | 809625c | 2013-12-08 23:33:50 +0900 | [diff] [blame] | 10921 | M: Dave Chinner <david@fromorbit.com> |
Ben Myers | 18caa67 | 2012-04-12 17:05:05 +0000 | [diff] [blame] | 10922 | M: xfs@oss.sgi.com |
Nathan Scott | d7ede1a | 2006-06-13 16:28:11 +1000 | [diff] [blame] | 10923 | L: xfs@oss.sgi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10924 | W: http://oss.sgi.com/projects/xfs |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 10925 | T: git git://oss.sgi.com/xfs/xfs.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10926 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10927 | F: Documentation/filesystems/xfs.txt |
| 10928 | F: fs/xfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10929 | |
danborkmann@iogearbox.net | 8a3b7a2 | 2012-01-19 00:39:31 +0000 | [diff] [blame] | 10930 | XILINX AXI ETHERNET DRIVER |
Michal Simek | 59a54f3 | 2012-04-12 01:11:12 +0000 | [diff] [blame] | 10931 | M: Anirudha Sarangi <anirudh@xilinx.com> |
| 10932 | M: John Linn <John.Linn@xilinx.com> |
danborkmann@iogearbox.net | 8a3b7a2 | 2012-01-19 00:39:31 +0000 | [diff] [blame] | 10933 | S: Maintained |
| 10934 | F: drivers/net/ethernet/xilinx/xilinx_axienet* |
| 10935 | |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 10936 | XILINX UARTLITE SERIAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10937 | M: Peter Korsgaard <jacmet@sunsite.dk> |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 10938 | L: linux-serial@vger.kernel.org |
| 10939 | S: Maintained |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 10940 | F: drivers/tty/serial/uartlite.c |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 10941 | |
Laurent Pinchart | df33051 | 2013-05-15 11:36:19 -0300 | [diff] [blame] | 10942 | XILINX VIDEO IP CORES |
| 10943 | M: Hyun Kwon <hyun.kwon@xilinx.com> |
| 10944 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 10945 | L: linux-media@vger.kernel.org |
| 10946 | T: git git://linuxtv.org/media_tree.git |
| 10947 | S: Supported |
| 10948 | F: Documentation/devicetree/bindings/media/xilinx/ |
| 10949 | F: drivers/media/platform/xilinx/ |
Laurent Pinchart | a5562f6 | 2013-05-15 11:36:56 -0300 | [diff] [blame] | 10950 | F: include/uapi/linux/xilinx-v4l2-controls.h |
Laurent Pinchart | df33051 | 2013-05-15 11:36:19 -0300 | [diff] [blame] | 10951 | |
Eli Billauer | 7431694 | 2014-09-09 09:38:01 +0300 | [diff] [blame] | 10952 | XILLYBUS DRIVER |
| 10953 | M: Eli Billauer <eli.billauer@gmail.com> |
| 10954 | L: linux-kernel@vger.kernel.org |
| 10955 | S: Supported |
| 10956 | F: drivers/char/xillybus/ |
| 10957 | |
Max Filippov | f620e4b | 2014-03-12 21:55:26 +0400 | [diff] [blame] | 10958 | XTENSA XTFPGA PLATFORM SUPPORT |
| 10959 | M: Max Filippov <jcmvbkbc@gmail.com> |
| 10960 | L: linux-xtensa@linux-xtensa.org |
| 10961 | S: Maintained |
| 10962 | F: drivers/spi/spi-xtensa-xtfpga.c |
Max Filippov | 57b7068 | 2014-12-26 20:19:38 +0300 | [diff] [blame] | 10963 | F: sound/soc/xtensa/xtfpga-i2s.c |
Max Filippov | f620e4b | 2014-03-12 21:55:26 +0400 | [diff] [blame] | 10964 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10965 | YAM DRIVER FOR AX.25 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10966 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10967 | L: linux-hams@vger.kernel.org |
| 10968 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10969 | F: drivers/net/hamradio/yam* |
| 10970 | F: include/linux/yam.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10971 | |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 10972 | YEALINK PHONE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10973 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 10974 | L: usbb2k-api-dev@nongnu.org |
| 10975 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10976 | F: Documentation/input/yealink.txt |
| 10977 | F: drivers/input/misc/yealink.* |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 10978 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10979 | Z8530 DRIVER FOR AX.25 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10980 | M: Joerg Reuter <jreuter@yaina.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10981 | W: http://yaina.de/jreuter/ |
| 10982 | W: http://www.qsl.net/dl1bke/ |
| 10983 | L: linux-hams@vger.kernel.org |
| 10984 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10985 | F: Documentation/networking/z8530drv.txt |
| 10986 | F: drivers/net/hamradio/*scc.c |
| 10987 | F: drivers/net/hamradio/z8530.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10988 | |
Seth Jennings | 0cf31ec | 2013-07-08 16:00:05 -0700 | [diff] [blame] | 10989 | ZBUD COMPRESSED PAGE ALLOCATOR |
Seth Jennings | 0e3b7e5 | 2014-05-06 12:50:02 -0700 | [diff] [blame] | 10990 | M: Seth Jennings <sjennings@variantweb.net> |
Seth Jennings | 0cf31ec | 2013-07-08 16:00:05 -0700 | [diff] [blame] | 10991 | L: linux-mm@kvack.org |
| 10992 | S: Maintained |
| 10993 | F: mm/zbud.c |
| 10994 | F: include/linux/zbud.h |
| 10995 | |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 10996 | ZD1211RW WIRELESS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10997 | M: Daniel Drake <dsd@gentoo.org> |
| 10998 | M: Ulrich Kunitz <kune@deine-taler.de> |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 10999 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 11000 | L: linux-wireless@vger.kernel.org |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 11001 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
| 11002 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11003 | F: drivers/net/wireless/zd1211rw/ |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 11004 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11005 | ZR36067 VIDEO FOR LINUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11006 | L: mjpeg-users@lists.sourceforge.net |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 11007 | L: linux-media@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11008 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
Joe Perches | cea8321 | 2014-03-03 15:38:38 -0800 | [diff] [blame] | 11009 | T: hg http://linuxtv.org/hg/v4l-dvb |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 11010 | S: Odd Fixes |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 11011 | F: drivers/media/pci/zoran/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11012 | |
Minchan Kim | 6920f2c | 2014-01-30 15:45:56 -0800 | [diff] [blame] | 11013 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
| 11014 | M: Minchan Kim <minchan@kernel.org> |
| 11015 | M: Nitin Gupta <ngupta@vflare.org> |
| 11016 | L: linux-kernel@vger.kernel.org |
| 11017 | S: Maintained |
| 11018 | F: drivers/block/zram/ |
| 11019 | F: Documentation/blockdev/zram.txt |
| 11020 | |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 11021 | ZS DECSTATION Z85C30 SERIAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11022 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 11023 | S: Maintained |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 11024 | F: drivers/tty/serial/zs.* |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 11025 | |
Minchan Kim | eae70d0 | 2014-01-30 15:45:57 -0800 | [diff] [blame] | 11026 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
| 11027 | M: Minchan Kim <minchan@kernel.org> |
| 11028 | M: Nitin Gupta <ngupta@vflare.org> |
| 11029 | L: linux-mm@kvack.org |
| 11030 | S: Maintained |
| 11031 | F: mm/zsmalloc.c |
| 11032 | F: include/linux/zsmalloc.h |
Minchan Kim | d02be50 | 2015-04-15 16:15:46 -0700 | [diff] [blame] | 11033 | F: Documentation/vm/zsmalloc.txt |
Minchan Kim | eae70d0 | 2014-01-30 15:45:57 -0800 | [diff] [blame] | 11034 | |
Seth Jennings | 0cf31ec | 2013-07-08 16:00:05 -0700 | [diff] [blame] | 11035 | ZSWAP COMPRESSED SWAP CACHING |
Seth Jennings | 0e3b7e5 | 2014-05-06 12:50:02 -0700 | [diff] [blame] | 11036 | M: Seth Jennings <sjennings@variantweb.net> |
Seth Jennings | 0cf31ec | 2013-07-08 16:00:05 -0700 | [diff] [blame] | 11037 | L: linux-mm@kvack.org |
| 11038 | S: Maintained |
| 11039 | F: mm/zswap.c |
| 11040 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11041 | THE REST |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11042 | M: Linus Torvalds <torvalds@linux-foundation.org> |
Joe Perches | 34d03cc | 2009-06-16 15:34:06 -0700 | [diff] [blame] | 11043 | L: linux-kernel@vger.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 11044 | Q: http://patchwork.kernel.org/project/LKML/list/ |
Tracey Dent | d16adea | 2011-08-11 02:59:00 -0400 | [diff] [blame] | 11045 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11046 | S: Buried alive in reporters |
Joe Perches | 34d03cc | 2009-06-16 15:34:06 -0700 | [diff] [blame] | 11047 | F: * |
| 11048 | F: */ |