1 | |
2 | |
3 | List of maintainers and how to submit kernel changes |
4 | |
5 | Please try to follow the guidelines below. This will make things |
6 | easier on the maintainers. Not all of these guidelines matter for every |
7 | trivial patch so apply some common sense. |
8 | |
9 | 1. Always _test_ your changes, however small, on at least 4 or |
10 | 5 people, preferably many more. |
11 | |
12 | 2. Try to release a few ALPHA test versions to the net. Announce |
13 | them onto the kernel channel and await results. This is especially |
14 | important for device drivers, because often that's the only way |
15 | you will find things like the fact version 3 firmware needs |
16 | a magic fix you didn't know about, or some clown changed the |
17 | chips on a board and not its name. (Don't laugh! Look at the |
18 | SMC etherpower for that.) |
19 | |
20 | 3. Make sure your changes compile correctly in multiple |
21 | configurations. In particular check that changes work both as a |
22 | module and built into the kernel. |
23 | |
24 | 4. When you are happy with a change make it generally available for |
25 | testing and await feedback. |
26 | |
27 | 5. Make a patch available to the relevant maintainer in the list. Use |
28 | 'diff -u' to make the patch easy to merge. Be prepared to get your |
29 | changes sent back with seemingly silly requests about formatting |
30 | and variable names. These aren't as silly as they seem. One |
31 | job the maintainers (and especially Linus) do is to keep things |
32 | looking the same. Sometimes this means that the clever hack in |
33 | your driver to get around a problem actually needs to become a |
34 | generalized kernel feature ready for next time. |
35 | |
36 | PLEASE check your patch with the automated style checker |
37 | (scripts/checkpatch.pl) to catch trival style violations. |
38 | See Documentation/CodingStyle for guidance here. |
39 | |
40 | PLEASE CC: the maintainers and mailing lists that are generated |
41 | by scripts/get_maintainer.pl. The results returned by the |
42 | script will be best if you have git installed and are making |
43 | your changes in a branch derived from Linus' latest git tree. |
44 | See Documentation/SubmittingPatches for details. |
45 | |
46 | PLEASE try to include any credit lines you want added with the |
47 | patch. It avoids people being missed off by mistake and makes |
48 | it easier to know who wants adding and who doesn't. |
49 | |
50 | PLEASE document known bugs. If it doesn't work for everything |
51 | or does something very odd once a month document it. |
52 | |
53 | PLEASE remember that submissions must be made under the terms |
54 | of the OSDL certificate of contribution and should include a |
55 | Signed-off-by: line. The current version of this "Developer's |
56 | Certificate of Origin" (DCO) is listed in the file |
57 | Documentation/SubmittingPatches. |
58 | |
59 | 6. Make sure you have the right to send any changes you make. If you |
60 | do changes at work you may find your employer owns the patch |
61 | not you. |
62 | |
63 | 7. When sending security related changes or reports to a maintainer |
64 | please Cc: security@kernel.org, especially if the maintainer |
65 | does not respond. |
66 | |
67 | 8. Happy hacking. |
68 | |
69 | Descriptions of section entries: |
70 | |
71 | P: Person (obsolete) |
72 | M: Mail patches to: FullName <address@domain> |
73 | L: Mailing list that is relevant to this area |
74 | W: Web-page with status/info |
75 | Q: Patchwork web based patch tracking system site |
76 | T: SCM tree type and location. |
77 | Type is one of: git, hg, quilt, stgit, topgit |
78 | S: Status, one of the following: |
79 | Supported: Someone is actually paid to look after this. |
80 | Maintained: Someone actually looks after it. |
81 | Odd Fixes: It has a maintainer but they don't have time to do |
82 | much other than throw the odd patch in. See below.. |
83 | Orphan: No current maintainer [but maybe you could take the |
84 | role as you write your new code]. |
85 | Obsolete: Old code. Something tagged obsolete generally means |
86 | it has been replaced by a better system and you |
87 | should be using that. |
88 | F: Files and directories with wildcard patterns. |
89 | A trailing slash includes all files and subdirectory files. |
90 | F: drivers/net/ all files in and below drivers/net |
91 | F: drivers/net/* all files in drivers/net, but not below |
92 | F: */net/* all files in "any top level directory"/net |
93 | One pattern per line. Multiple F: lines acceptable. |
94 | N: Files and directories with regex patterns. |
95 | N: [^a-z]tegra all files whose path contains the word tegra |
96 | One pattern per line. Multiple N: lines acceptable. |
97 | scripts/get_maintainer.pl has different behavior for files that |
98 | match F: pattern and matches of N: patterns. By default, |
99 | get_maintainer will not look at git log history when an F: pattern |
100 | match occurs. When an N: match occurs, git log history is used |
101 | to also notify the people that have git commit signatures. |
102 | X: Files and directories that are NOT maintained, same rules as F: |
103 | Files exclusions are tested before file matches. |
104 | Can be useful for excluding a specific subdirectory, for instance: |
105 | F: net/ |
106 | X: net/ipv6/ |
107 | matches all files in and below net excluding net/ipv6/ |
108 | K: Keyword perl extended regex pattern to match content in a |
109 | patch or file. For instance: |
110 | K: of_get_profile |
111 | matches patches or files that contain "of_get_profile" |
112 | K: \b(printk|pr_(info|err))\b |
113 | matches patches or files that contain one or more of the words |
114 | printk, pr_info or pr_err |
115 | One regex pattern per line. Multiple K: lines acceptable. |
116 | |
117 | Note: For the hard of thinking, this list is meant to remain in alphabetical |
118 | order. If you could add yourselves to it in alphabetical order that would be |
119 | so much easier [Ed] |
120 | |
121 | Maintainers List (try to look for most precise areas first) |
122 | |
123 | ----------------------------------- |
124 | |
125 | 3C59X NETWORK DRIVER |
126 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
127 | L: netdev@vger.kernel.org |
128 | S: Maintained |
129 | F: Documentation/networking/vortex.txt |
130 | F: drivers/net/ethernet/3com/3c59x.c |
131 | |
132 | 3CR990 NETWORK DRIVER |
133 | M: David Dillow <dave@thedillows.org> |
134 | L: netdev@vger.kernel.org |
135 | S: Maintained |
136 | F: drivers/net/ethernet/3com/typhoon* |
137 | |
138 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
139 | M: Adam Radford <linuxraid@lsi.com> |
140 | L: linux-scsi@vger.kernel.org |
141 | W: http://www.lsi.com |
142 | S: Supported |
143 | F: drivers/scsi/3w-* |
144 | |
145 | 53C700 AND 53C700-66 SCSI DRIVER |
146 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
147 | L: linux-scsi@vger.kernel.org |
148 | S: Maintained |
149 | F: drivers/scsi/53c700* |
150 | |
151 | 6PACK NETWORK DRIVER FOR AX.25 |
152 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
153 | L: linux-hams@vger.kernel.org |
154 | S: Maintained |
155 | F: drivers/net/hamradio/6pack.c |
156 | |
157 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
158 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
159 | L: netdev@vger.kernel.org |
160 | S: Maintained |
161 | F: drivers/net/ethernet/realtek/r8169.c |
162 | |
163 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER |
164 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
165 | L: linux-serial@vger.kernel.org |
166 | W: http://serial.sourceforge.net |
167 | S: Maintained |
168 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
169 | F: drivers/tty/serial/8250* |
170 | F: include/linux/serial_8250.h |
171 | |
172 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] |
173 | L: netdev@vger.kernel.org |
174 | S: Orphan / Obsolete |
175 | F: drivers/net/ethernet/8390/ |
176 | |
177 | 9P FILE SYSTEM |
178 | M: Eric Van Hensbergen <ericvh@gmail.com> |
179 | M: Ron Minnich <rminnich@sandia.gov> |
180 | M: Latchesar Ionkov <lucho@ionkov.net> |
181 | L: v9fs-developer@lists.sourceforge.net |
182 | W: http://swik.net/v9fs |
183 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
184 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
185 | S: Maintained |
186 | F: Documentation/filesystems/9p.txt |
187 | F: fs/9p/ |
188 | F: net/9p/ |
189 | F: include/net/9p/ |
190 | F: include/uapi/linux/virtio_9p.h |
191 | F: include/trace/events/9p.h |
192 | |
193 | |
194 | A8293 MEDIA DRIVER |
195 | M: Antti Palosaari <crope@iki.fi> |
196 | L: linux-media@vger.kernel.org |
197 | W: http://linuxtv.org/ |
198 | W: http://palosaari.fi/linux/ |
199 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
200 | T: git git://linuxtv.org/anttip/media_tree.git |
201 | S: Maintained |
202 | F: drivers/media/dvb-frontends/a8293* |
203 | |
204 | AACRAID SCSI RAID DRIVER |
205 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
206 | L: linux-scsi@vger.kernel.org |
207 | W: http://www.adaptec.com/ |
208 | S: Supported |
209 | F: Documentation/scsi/aacraid.txt |
210 | F: drivers/scsi/aacraid/ |
211 | |
212 | ABI/API |
213 | L: linux-api@vger.kernel.org |
214 | F: Documentation/ABI/ |
215 | F: include/linux/syscalls.h |
216 | F: include/uapi/ |
217 | F: kernel/sys_ni.c |
218 | |
219 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
220 | M: Hans de Goede <hdegoede@redhat.com> |
221 | L: lm-sensors@lm-sensors.org |
222 | S: Maintained |
223 | F: drivers/hwmon/abituguru.c |
224 | |
225 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
226 | M: Alistair John Strachan <alistair@devzero.co.uk> |
227 | L: lm-sensors@lm-sensors.org |
228 | S: Maintained |
229 | F: drivers/hwmon/abituguru3.c |
230 | |
231 | ACENIC DRIVER |
232 | M: Jes Sorensen <jes@trained-monkey.org> |
233 | L: linux-acenic@sunsite.dk |
234 | S: Maintained |
235 | F: drivers/net/ethernet/alteon/acenic* |
236 | |
237 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
238 | M: Peter Feuerer <peter@piie.net> |
239 | L: platform-driver-x86@vger.kernel.org |
240 | W: http://piie.net/?section=acerhdf |
241 | S: Maintained |
242 | F: drivers/platform/x86/acerhdf.c |
243 | |
244 | ACER WMI LAPTOP EXTRAS |
245 | M: "Lee, Chun-Yi" <jlee@suse.com> |
246 | L: platform-driver-x86@vger.kernel.org |
247 | S: Maintained |
248 | F: drivers/platform/x86/acer-wmi.c |
249 | |
250 | ACPI |
251 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
252 | M: Len Brown <lenb@kernel.org> |
253 | L: linux-acpi@vger.kernel.org |
254 | W: https://01.org/linux-acpi |
255 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ |
256 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm |
257 | S: Supported |
258 | F: drivers/acpi/ |
259 | F: drivers/pnp/pnpacpi/ |
260 | F: include/linux/acpi.h |
261 | F: include/acpi/ |
262 | F: Documentation/acpi |
263 | F: Documentation/ABI/testing/sysfs-bus-acpi |
264 | F: drivers/pci/*acpi* |
265 | F: drivers/pci/*/*acpi* |
266 | F: drivers/pci/*/*/*acpi* |
267 | F: tools/power/acpi |
268 | |
269 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
270 | M: Robert Moore <robert.moore@intel.com> |
271 | M: Lv Zheng <lv.zheng@intel.com> |
272 | M: Rafael J. Wysocki <rafael.j.wysocki@intel.com> |
273 | L: linux-acpi@vger.kernel.org |
274 | L: devel@acpica.org |
275 | W: https://acpica.org/ |
276 | W: https://github.com/acpica/acpica/ |
277 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ |
278 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm |
279 | S: Supported |
280 | F: drivers/acpi/acpica/ |
281 | F: include/acpi/ |
282 | F: tools/power/acpi/ |
283 | |
284 | ACPI FAN DRIVER |
285 | M: Zhang Rui <rui.zhang@intel.com> |
286 | L: linux-acpi@vger.kernel.org |
287 | W: https://01.org/linux-acpi |
288 | S: Supported |
289 | F: drivers/acpi/fan.c |
290 | |
291 | ACPI THERMAL DRIVER |
292 | M: Zhang Rui <rui.zhang@intel.com> |
293 | L: linux-acpi@vger.kernel.org |
294 | W: https://01.org/linux-acpi |
295 | S: Supported |
296 | F: drivers/acpi/*thermal* |
297 | |
298 | ACPI VIDEO DRIVER |
299 | M: Zhang Rui <rui.zhang@intel.com> |
300 | L: linux-acpi@vger.kernel.org |
301 | W: https://01.org/linux-acpi |
302 | S: Supported |
303 | F: drivers/acpi/video.c |
304 | |
305 | ACPI WMI DRIVER |
306 | L: platform-driver-x86@vger.kernel.org |
307 | S: Orphan |
308 | F: drivers/platform/x86/wmi.c |
309 | |
310 | AD1889 ALSA SOUND DRIVER |
311 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
312 | W: http://wiki.parisc-linux.org/AD1889 |
313 | L: linux-parisc@vger.kernel.org |
314 | S: Maintained |
315 | F: sound/pci/ad1889.* |
316 | |
317 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
318 | M: Michael Hennerich <michael.hennerich@analog.com> |
319 | W: http://wiki.analog.com/AD5254 |
320 | W: http://ez.analog.com/community/linux-device-drivers |
321 | S: Supported |
322 | F: drivers/misc/ad525x_dpot.c |
323 | |
324 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) |
325 | M: Michael Hennerich <michael.hennerich@analog.com> |
326 | W: http://wiki.analog.com/AD5398 |
327 | W: http://ez.analog.com/community/linux-device-drivers |
328 | S: Supported |
329 | F: drivers/regulator/ad5398.c |
330 | |
331 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) |
332 | M: Michael Hennerich <michael.hennerich@analog.com> |
333 | W: http://wiki.analog.com/AD7142 |
334 | W: http://ez.analog.com/community/linux-device-drivers |
335 | S: Supported |
336 | F: drivers/input/misc/ad714x.c |
337 | |
338 | AD7877 TOUCHSCREEN DRIVER |
339 | M: Michael Hennerich <michael.hennerich@analog.com> |
340 | W: http://wiki.analog.com/AD7877 |
341 | W: http://ez.analog.com/community/linux-device-drivers |
342 | S: Supported |
343 | F: drivers/input/touchscreen/ad7877.c |
344 | |
345 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) |
346 | M: Michael Hennerich <michael.hennerich@analog.com> |
347 | W: http://wiki.analog.com/AD7879 |
348 | W: http://ez.analog.com/community/linux-device-drivers |
349 | S: Supported |
350 | F: drivers/input/touchscreen/ad7879.c |
351 | |
352 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
353 | M: Jiri Kosina <jkosina@suse.cz> |
354 | S: Maintained |
355 | |
356 | ADM1025 HARDWARE MONITOR DRIVER |
357 | M: Jean Delvare <jdelvare@suse.de> |
358 | L: lm-sensors@lm-sensors.org |
359 | S: Maintained |
360 | F: Documentation/hwmon/adm1025 |
361 | F: drivers/hwmon/adm1025.c |
362 | |
363 | ADM1029 HARDWARE MONITOR DRIVER |
364 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
365 | L: lm-sensors@lm-sensors.org |
366 | S: Maintained |
367 | F: drivers/hwmon/adm1029.c |
368 | |
369 | ADM8211 WIRELESS DRIVER |
370 | L: linux-wireless@vger.kernel.org |
371 | W: http://wireless.kernel.org/ |
372 | S: Orphan |
373 | F: drivers/net/wireless/adm8211.* |
374 | |
375 | ADP1653 FLASH CONTROLLER DRIVER |
376 | M: Sakari Ailus <sakari.ailus@iki.fi> |
377 | L: linux-media@vger.kernel.org |
378 | S: Maintained |
379 | F: drivers/media/i2c/adp1653.c |
380 | F: include/media/adp1653.h |
381 | |
382 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
383 | M: Michael Hennerich <michael.hennerich@analog.com> |
384 | W: http://wiki.analog.com/ADP5520 |
385 | W: http://ez.analog.com/community/linux-device-drivers |
386 | S: Supported |
387 | F: drivers/mfd/adp5520.c |
388 | F: drivers/video/backlight/adp5520_bl.c |
389 | F: drivers/leds/leds-adp5520.c |
390 | F: drivers/gpio/gpio-adp5520.c |
391 | F: drivers/input/keyboard/adp5520-keys.c |
392 | |
393 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) |
394 | M: Michael Hennerich <michael.hennerich@analog.com> |
395 | W: http://wiki.analog.com/ADP5588 |
396 | W: http://ez.analog.com/community/linux-device-drivers |
397 | S: Supported |
398 | F: drivers/input/keyboard/adp5588-keys.c |
399 | F: drivers/gpio/gpio-adp5588.c |
400 | |
401 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) |
402 | M: Michael Hennerich <michael.hennerich@analog.com> |
403 | W: http://wiki.analog.com/ADP8860 |
404 | W: http://ez.analog.com/community/linux-device-drivers |
405 | S: Supported |
406 | F: drivers/video/backlight/adp8860_bl.c |
407 | |
408 | ADS1015 HARDWARE MONITOR DRIVER |
409 | M: Dirk Eibach <eibach@gdsys.de> |
410 | L: lm-sensors@lm-sensors.org |
411 | S: Maintained |
412 | F: Documentation/hwmon/ads1015 |
413 | F: drivers/hwmon/ads1015.c |
414 | F: include/linux/i2c/ads1015.h |
415 | |
416 | ADT746X FAN DRIVER |
417 | M: Colin Leroy <colin@colino.net> |
418 | S: Maintained |
419 | F: drivers/macintosh/therm_adt746x.c |
420 | |
421 | ADT7475 HARDWARE MONITOR DRIVER |
422 | M: Jean Delvare <jdelvare@suse.de> |
423 | L: lm-sensors@lm-sensors.org |
424 | S: Maintained |
425 | F: Documentation/hwmon/adt7475 |
426 | F: drivers/hwmon/adt7475.c |
427 | |
428 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
429 | M: Michael Hennerich <michael.hennerich@analog.com> |
430 | W: http://wiki.analog.com/ADXL345 |
431 | W: http://ez.analog.com/community/linux-device-drivers |
432 | S: Supported |
433 | F: drivers/input/misc/adxl34x.c |
434 | |
435 | ADVANSYS SCSI DRIVER |
436 | M: Matthew Wilcox <matthew@wil.cx> |
437 | L: linux-scsi@vger.kernel.org |
438 | S: Maintained |
439 | F: Documentation/scsi/advansys.txt |
440 | F: drivers/scsi/advansys.c |
441 | |
442 | AEDSP16 DRIVER |
443 | M: Riccardo Facchetti <fizban@tin.it> |
444 | S: Maintained |
445 | F: sound/oss/aedsp16.c |
446 | |
447 | AF9013 MEDIA DRIVER |
448 | M: Antti Palosaari <crope@iki.fi> |
449 | L: linux-media@vger.kernel.org |
450 | W: http://linuxtv.org/ |
451 | W: http://palosaari.fi/linux/ |
452 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
453 | T: git git://linuxtv.org/anttip/media_tree.git |
454 | S: Maintained |
455 | F: drivers/media/dvb-frontends/af9013* |
456 | |
457 | AF9033 MEDIA DRIVER |
458 | M: Antti Palosaari <crope@iki.fi> |
459 | L: linux-media@vger.kernel.org |
460 | W: http://linuxtv.org/ |
461 | W: http://palosaari.fi/linux/ |
462 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
463 | T: git git://linuxtv.org/anttip/media_tree.git |
464 | S: Maintained |
465 | F: drivers/media/dvb-frontends/af9033* |
466 | |
467 | AFFS FILE SYSTEM |
468 | L: linux-fsdevel@vger.kernel.org |
469 | S: Orphan |
470 | F: Documentation/filesystems/affs.txt |
471 | F: fs/affs/ |
472 | |
473 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
474 | M: David Howells <dhowells@redhat.com> |
475 | L: linux-afs@lists.infradead.org |
476 | S: Supported |
477 | F: fs/afs/ |
478 | F: include/net/af_rxrpc.h |
479 | F: net/rxrpc/af_rxrpc.c |
480 | |
481 | AGPGART DRIVER |
482 | M: David Airlie <airlied@linux.ie> |
483 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
484 | S: Maintained |
485 | F: drivers/char/agp/ |
486 | F: include/linux/agp* |
487 | F: include/uapi/linux/agp* |
488 | |
489 | AHA152X SCSI DRIVER |
490 | M: "Juergen E. Fischer" <fischer@norbit.de> |
491 | L: linux-scsi@vger.kernel.org |
492 | S: Maintained |
493 | F: drivers/scsi/aha152x* |
494 | F: drivers/scsi/pcmcia/aha152x* |
495 | |
496 | AIC7XXX / AIC79XX SCSI DRIVER |
497 | M: Hannes Reinecke <hare@suse.de> |
498 | L: linux-scsi@vger.kernel.org |
499 | S: Maintained |
500 | F: drivers/scsi/aic7xxx/ |
501 | |
502 | AIMSLAB FM RADIO RECEIVER DRIVER |
503 | M: Hans Verkuil <hverkuil@xs4all.nl> |
504 | L: linux-media@vger.kernel.org |
505 | T: git git://linuxtv.org/media_tree.git |
506 | W: http://linuxtv.org |
507 | S: Maintained |
508 | F: drivers/media/radio/radio-aimslab* |
509 | |
510 | AIO |
511 | M: Benjamin LaHaise <bcrl@kvack.org> |
512 | L: linux-aio@kvack.org |
513 | S: Supported |
514 | F: fs/aio.c |
515 | F: include/linux/*aio*.h |
516 | |
517 | ALCATEL SPEEDTOUCH USB DRIVER |
518 | M: Duncan Sands <duncan.sands@free.fr> |
519 | L: linux-usb@vger.kernel.org |
520 | W: http://www.linux-usb.org/SpeedTouch/ |
521 | S: Maintained |
522 | F: drivers/usb/atm/speedtch.c |
523 | F: drivers/usb/atm/usbatm.c |
524 | |
525 | ALCHEMY AU1XX0 MMC DRIVER |
526 | M: Manuel Lauss <manuel.lauss@gmail.com> |
527 | S: Maintained |
528 | F: drivers/mmc/host/au1xmmc.c |
529 | |
530 | ALI1563 I2C DRIVER |
531 | M: Rudolf Marek <r.marek@assembler.cz> |
532 | L: linux-i2c@vger.kernel.org |
533 | S: Maintained |
534 | F: Documentation/i2c/busses/i2c-ali1563 |
535 | F: drivers/i2c/busses/i2c-ali1563.c |
536 | |
537 | ALPHA PORT |
538 | M: Richard Henderson <rth@twiddle.net> |
539 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
540 | M: Matt Turner <mattst88@gmail.com> |
541 | S: Odd Fixes |
542 | L: linux-alpha@vger.kernel.org |
543 | F: arch/alpha/ |
544 | |
545 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
546 | M: Vince Bridgers <vbridgers2013@gmail.com> |
547 | L: netdev@vger.kernel.org |
548 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
549 | S: Maintained |
550 | F: drivers/net/ethernet/altera/ |
551 | |
552 | ALTERA UART/JTAG UART SERIAL DRIVERS |
553 | M: Tobias Klauser <tklauser@distanz.ch> |
554 | L: linux-serial@vger.kernel.org |
555 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
556 | S: Maintained |
557 | F: drivers/tty/serial/altera_uart.c |
558 | F: drivers/tty/serial/altera_jtaguart.c |
559 | F: include/linux/altera_uart.h |
560 | F: include/linux/altera_jtaguart.h |
561 | |
562 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
563 | M: Tom Lendacky <thomas.lendacky@amd.com> |
564 | L: linux-crypto@vger.kernel.org |
565 | S: Supported |
566 | F: drivers/crypto/ccp/ |
567 | F: include/linux/ccp.h |
568 | |
569 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
570 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
571 | L: lm-sensors@lm-sensors.org |
572 | S: Maintained |
573 | F: Documentation/hwmon/fam15h_power |
574 | F: drivers/hwmon/fam15h_power.c |
575 | |
576 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
577 | M: Thomas Dahlmann <dahlmann.thomas@arcor.de> |
578 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
579 | S: Supported |
580 | F: drivers/usb/gadget/amd5536udc.* |
581 | |
582 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
583 | P: Andres Salomon <dilinger@queued.net> |
584 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
585 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
586 | S: Supported |
587 | F: drivers/char/hw_random/geode-rng.c |
588 | F: drivers/crypto/geode* |
589 | F: drivers/video/geode/ |
590 | F: arch/x86/include/asm/geode.h |
591 | |
592 | AMD IOMMU (AMD-VI) |
593 | M: Joerg Roedel <joro@8bytes.org> |
594 | L: iommu@lists.linux-foundation.org |
595 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
596 | S: Maintained |
597 | F: drivers/iommu/amd_iommu*.[ch] |
598 | F: include/linux/amd-iommu.h |
599 | |
600 | AMD MICROCODE UPDATE SUPPORT |
601 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
602 | L: amd64-microcode@amd64.org |
603 | S: Maintained |
604 | F: arch/x86/kernel/microcode_amd.c |
605 | |
606 | AMD XGBE DRIVER |
607 | M: Tom Lendacky <thomas.lendacky@amd.com> |
608 | L: netdev@vger.kernel.org |
609 | S: Supported |
610 | F: drivers/net/ethernet/amd/xgbe/ |
611 | F: drivers/net/phy/amd-xgbe-phy.c |
612 | |
613 | AMS (Apple Motion Sensor) DRIVER |
614 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
615 | S: Supported |
616 | F: drivers/macintosh/ams/ |
617 | |
618 | AMSO1100 RNIC DRIVER |
619 | M: Tom Tucker <tom@opengridcomputing.com> |
620 | M: Steve Wise <swise@opengridcomputing.com> |
621 | L: linux-rdma@vger.kernel.org |
622 | S: Maintained |
623 | F: drivers/infiniband/hw/amso1100/ |
624 | |
625 | ANALOG DEVICES INC AD9389B DRIVER |
626 | M: Hans Verkuil <hans.verkuil@cisco.com> |
627 | L: linux-media@vger.kernel.org |
628 | S: Maintained |
629 | F: drivers/media/i2c/ad9389b* |
630 | |
631 | ANALOG DEVICES INC ADV7511 DRIVER |
632 | M: Hans Verkuil <hans.verkuil@cisco.com> |
633 | L: linux-media@vger.kernel.org |
634 | S: Maintained |
635 | F: drivers/media/i2c/adv7511* |
636 | |
637 | ANALOG DEVICES INC ADV7604 DRIVER |
638 | M: Hans Verkuil <hans.verkuil@cisco.com> |
639 | L: linux-media@vger.kernel.org |
640 | S: Maintained |
641 | F: drivers/media/i2c/adv7604* |
642 | |
643 | ANALOG DEVICES INC ADV7842 DRIVER |
644 | M: Hans Verkuil <hans.verkuil@cisco.com> |
645 | L: linux-media@vger.kernel.org |
646 | S: Maintained |
647 | F: drivers/media/i2c/adv7842* |
648 | |
649 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
650 | M: Lars-Peter Clausen <lars@metafoo.de> |
651 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
652 | W: http://wiki.analog.com/ |
653 | W: http://ez.analog.com/community/linux-device-drivers |
654 | S: Supported |
655 | F: sound/soc/codecs/adau* |
656 | F: sound/soc/codecs/adav* |
657 | F: sound/soc/codecs/ad1* |
658 | F: sound/soc/codecs/ad7* |
659 | F: sound/soc/codecs/ssm* |
660 | F: sound/soc/codecs/sigmadsp.* |
661 | |
662 | ANALOG DEVICES INC ASOC DRIVERS |
663 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
664 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
665 | W: http://blackfin.uclinux.org/ |
666 | S: Supported |
667 | F: sound/soc/blackfin/* |
668 | |
669 | AOA (Apple Onboard Audio) ALSA DRIVER |
670 | M: Johannes Berg <johannes@sipsolutions.net> |
671 | L: linuxppc-dev@lists.ozlabs.org |
672 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
673 | S: Maintained |
674 | F: sound/aoa/ |
675 | |
676 | APM DRIVER |
677 | M: Jiri Kosina <jkosina@suse.cz> |
678 | S: Odd fixes |
679 | F: arch/x86/kernel/apm_32.c |
680 | F: include/linux/apm_bios.h |
681 | F: include/uapi/linux/apm_bios.h |
682 | F: drivers/char/apm-emulation.c |
683 | |
684 | APPLE BCM5974 MULTITOUCH DRIVER |
685 | M: Henrik Rydberg <rydberg@euromail.se> |
686 | L: linux-input@vger.kernel.org |
687 | S: Maintained |
688 | F: drivers/input/mouse/bcm5974.c |
689 | |
690 | APPLE SMC DRIVER |
691 | M: Henrik Rydberg <rydberg@euromail.se> |
692 | L: lm-sensors@lm-sensors.org |
693 | S: Maintained |
694 | F: drivers/hwmon/applesmc.c |
695 | |
696 | APPLETALK NETWORK LAYER |
697 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
698 | S: Maintained |
699 | F: drivers/net/appletalk/ |
700 | F: net/appletalk/ |
701 | |
702 | APTINA CAMERA SENSOR PLL |
703 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> |
704 | L: linux-media@vger.kernel.org |
705 | S: Maintained |
706 | F: drivers/media/i2c/aptina-pll.* |
707 | |
708 | ARASAN COMPACT FLASH PATA CONTROLLER |
709 | M: Viresh Kumar <viresh.linux@gmail.com> |
710 | L: linux-ide@vger.kernel.org |
711 | S: Maintained |
712 | F: include/linux/pata_arasan_cf_data.h |
713 | F: drivers/ata/pata_arasan_cf.c |
714 | |
715 | ARC FRAMEBUFFER DRIVER |
716 | M: Jaya Kumar <jayalk@intworks.biz> |
717 | S: Maintained |
718 | F: drivers/video/arcfb.c |
719 | F: drivers/video/fb_defio.c |
720 | |
721 | ARM MFM AND FLOPPY DRIVERS |
722 | M: Ian Molton <spyro@f2s.com> |
723 | S: Maintained |
724 | F: arch/arm/lib/floppydma.S |
725 | F: arch/arm/include/asm/floppy.h |
726 | |
727 | ARM PMU PROFILING AND DEBUGGING |
728 | M: Will Deacon <will.deacon@arm.com> |
729 | S: Maintained |
730 | F: arch/arm/kernel/perf_event* |
731 | F: arch/arm/oprofile/common.c |
732 | F: arch/arm/include/asm/pmu.h |
733 | F: arch/arm/kernel/hw_breakpoint.c |
734 | F: arch/arm/include/asm/hw_breakpoint.h |
735 | |
736 | ARM PORT |
737 | M: Russell King <linux@arm.linux.org.uk> |
738 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
739 | W: http://www.arm.linux.org.uk/ |
740 | S: Maintained |
741 | F: arch/arm/ |
742 | |
743 | ARM SUB-ARCHITECTURES |
744 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
745 | S: Maintained |
746 | F: arch/arm/mach-*/ |
747 | F: arch/arm/plat-*/ |
748 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git |
749 | |
750 | ARM PRIMECELL AACI PL041 DRIVER |
751 | M: Russell King <linux@arm.linux.org.uk> |
752 | S: Maintained |
753 | F: sound/arm/aaci.* |
754 | |
755 | ARM PRIMECELL CLCD PL110 DRIVER |
756 | M: Russell King <linux@arm.linux.org.uk> |
757 | S: Maintained |
758 | F: drivers/video/amba-clcd.* |
759 | |
760 | ARM PRIMECELL KMI PL050 DRIVER |
761 | M: Russell King <linux@arm.linux.org.uk> |
762 | S: Maintained |
763 | F: drivers/input/serio/ambakmi.* |
764 | F: include/linux/amba/kmi.h |
765 | |
766 | ARM PRIMECELL MMCI PL180/1 DRIVER |
767 | M: Russell King <linux@arm.linux.org.uk> |
768 | S: Maintained |
769 | F: drivers/mmc/host/mmci.* |
770 | F: include/linux/amba/mmci.h |
771 | |
772 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
773 | M: Russell King <linux@arm.linux.org.uk> |
774 | S: Maintained |
775 | F: drivers/tty/serial/amba-pl01*.c |
776 | F: include/linux/amba/serial.h |
777 | |
778 | ARM PRIMECELL BUS SUPPORT |
779 | M: Russell King <linux@arm.linux.org.uk> |
780 | S: Maintained |
781 | F: drivers/amba/ |
782 | F: include/linux/amba/bus.h |
783 | |
784 | ARM/ADS SPHERE MACHINE SUPPORT |
785 | M: Lennert Buytenhek <kernel@wantstofly.org> |
786 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
787 | S: Maintained |
788 | |
789 | ARM/AFEB9260 MACHINE SUPPORT |
790 | M: Sergey Lapin <slapin@ossfans.org> |
791 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
792 | S: Maintained |
793 | |
794 | ARM/AJECO 1ARM MACHINE SUPPORT |
795 | M: Lennert Buytenhek <kernel@wantstofly.org> |
796 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
797 | S: Maintained |
798 | |
799 | ARM/Allwinner A1X SoC support |
800 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
801 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
802 | S: Maintained |
803 | N: sun[x4567]i |
804 | |
805 | ARM/Allwinner SoC Clock Support |
806 | M: Emilio LĂ³pez <emilio@elopez.com.ar> |
807 | S: Maintained |
808 | F: drivers/clk/sunxi/ |
809 | |
810 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
811 | M: Andrew Victor <linux@maxim.org.za> |
812 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
813 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
814 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
815 | W: http://maxim.org.za/at91_26.html |
816 | W: http://www.linux4sam.org |
817 | S: Supported |
818 | F: arch/arm/mach-at91/ |
819 | F: arch/arm/boot/dts/at91*.dts |
820 | F: arch/arm/boot/dts/at91*.dtsi |
821 | F: arch/arm/boot/dts/sama*.dts |
822 | F: arch/arm/boot/dts/sama*.dtsi |
823 | |
824 | ARM/ATMEL AT91 Clock Support |
825 | M: Boris Brezillon <boris.brezillon@free-electrons.com> |
826 | S: Maintained |
827 | F: drivers/clk/at91 |
828 | |
829 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
830 | M: Rob Herring <robh@kernel.org> |
831 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
832 | S: Maintained |
833 | F: arch/arm/mach-highbank/ |
834 | |
835 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
836 | M: Anton Vorontsov <anton@enomsg.org> |
837 | S: Maintained |
838 | F: arch/arm/mach-cns3xxx/ |
839 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git |
840 | |
841 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
842 | M: Alexander Shiyan <shc_work@mail.ru> |
843 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
844 | S: Odd Fixes |
845 | N: clps711x |
846 | |
847 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
848 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
849 | M: Ryan Mallon <rmallon@gmail.com> |
850 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
851 | S: Maintained |
852 | F: arch/arm/mach-ep93xx/ |
853 | F: arch/arm/mach-ep93xx/include/mach/ |
854 | |
855 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT |
856 | M: Lennert Buytenhek <kernel@wantstofly.org> |
857 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
858 | S: Maintained |
859 | |
860 | ARM/CLKDEV SUPPORT |
861 | M: Russell King <linux@arm.linux.org.uk> |
862 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
863 | S: Maintained |
864 | F: arch/arm/include/asm/clkdev.h |
865 | F: drivers/clk/clkdev.c |
866 | |
867 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
868 | M: Mike Rapoport <mike@compulab.co.il> |
869 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
870 | S: Maintained |
871 | |
872 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
873 | M: Hubert Feurstein <hubert.feurstein@contec.at> |
874 | S: Maintained |
875 | F: arch/arm/mach-ep93xx/micro9.c |
876 | |
877 | ARM/CORGI MACHINE SUPPORT |
878 | M: Richard Purdie <rpurdie@rpsys.net> |
879 | S: Maintained |
880 | |
881 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
882 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
883 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
884 | T: git git://git.berlios.de/gemini-board |
885 | S: Maintained |
886 | F: arch/arm/mach-gemini/ |
887 | |
888 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
889 | M: Barry Song <baohua@kernel.org> |
890 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
891 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
892 | S: Maintained |
893 | F: arch/arm/mach-prima2/ |
894 | F: drivers/clk/clk-prima2.c |
895 | F: drivers/clocksource/timer-prima2.c |
896 | F: drivers/clocksource/timer-marco.c |
897 | N: [^a-z]sirf |
898 | |
899 | ARM/EBSA110 MACHINE SUPPORT |
900 | M: Russell King <linux@arm.linux.org.uk> |
901 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
902 | W: http://www.arm.linux.org.uk/ |
903 | S: Maintained |
904 | F: arch/arm/mach-ebsa110/ |
905 | F: drivers/net/ethernet/amd/am79c961a.* |
906 | |
907 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
908 | M: Uwe Kleine-König <kernel@pengutronix.de> |
909 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
910 | S: Maintained |
911 | N: efm32 |
912 | |
913 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
914 | M: Daniel Ribeiro <drwyrm@gmail.com> |
915 | M: Stefan Schmidt <stefan@openezx.org> |
916 | M: Harald Welte <laforge@openezx.org> |
917 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
918 | W: http://www.openezx.org/ |
919 | S: Maintained |
920 | T: topgit git://git.openezx.org/openezx.git |
921 | F: arch/arm/mach-pxa/ezx.c |
922 | |
923 | ARM/FARADAY FA526 PORT |
924 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
925 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
926 | S: Maintained |
927 | T: git git://git.berlios.de/gemini-board |
928 | F: arch/arm/mm/*-fa* |
929 | |
930 | ARM/FOOTBRIDGE ARCHITECTURE |
931 | M: Russell King <linux@arm.linux.org.uk> |
932 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
933 | W: http://www.arm.linux.org.uk/ |
934 | S: Maintained |
935 | F: arch/arm/include/asm/hardware/dec21285.h |
936 | F: arch/arm/mach-footbridge/ |
937 | |
938 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
939 | M: Shawn Guo <shawn.guo@freescale.com> |
940 | M: Sascha Hauer <kernel@pengutronix.de> |
941 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
942 | S: Maintained |
943 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
944 | F: arch/arm/mach-imx/ |
945 | F: arch/arm/mach-mxs/ |
946 | F: arch/arm/boot/dts/imx* |
947 | F: arch/arm/configs/imx*_defconfig |
948 | |
949 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
950 | M: Lennert Buytenhek <kernel@wantstofly.org> |
951 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
952 | S: Maintained |
953 | |
954 | ARM/GUMSTIX MACHINE SUPPORT |
955 | M: Steve Sakoman <sakoman@gmail.com> |
956 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
957 | S: Maintained |
958 | |
959 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
960 | M: Philipp Zabel <philipp.zabel@gmail.com> |
961 | M: Paul Parsons <lost.distance@yahoo.com> |
962 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
963 | S: Maintained |
964 | F: arch/arm/mach-pxa/hx4700.c |
965 | F: arch/arm/mach-pxa/include/mach/hx4700.h |
966 | F: sound/soc/pxa/hx4700.c |
967 | |
968 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
969 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
970 | W: www.jlime.com |
971 | S: Maintained |
972 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
973 | F: arch/arm/mach-sa1100/jornada720.c |
974 | F: arch/arm/mach-sa1100/include/mach/jornada720.h |
975 | |
976 | ARM/IGEP MACHINE SUPPORT |
977 | M: Enric Balletbo i Serra <eballetbo@gmail.com> |
978 | M: Javier Martinez Canillas <javier@dowhile0.org> |
979 | L: linux-omap@vger.kernel.org |
980 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
981 | S: Maintained |
982 | F: arch/arm/boot/dts/omap3-igep* |
983 | |
984 | ARM/INCOME PXA270 SUPPORT |
985 | M: Marek Vasut <marek.vasut@gmail.com> |
986 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
987 | S: Maintained |
988 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
989 | |
990 | ARM/INTEL IOP32X ARM ARCHITECTURE |
991 | M: Lennert Buytenhek <kernel@wantstofly.org> |
992 | M: Dan Williams <dan.j.williams@intel.com> |
993 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
994 | S: Maintained |
995 | |
996 | ARM/INTEL IOP33X ARM ARCHITECTURE |
997 | M: Dan Williams <dan.j.williams@intel.com> |
998 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
999 | S: Maintained |
1000 | |
1001 | ARM/INTEL IOP13XX ARM ARCHITECTURE |
1002 | M: Lennert Buytenhek <kernel@wantstofly.org> |
1003 | M: Dan Williams <dan.j.williams@intel.com> |
1004 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1005 | S: Maintained |
1006 | |
1007 | ARM/INTEL IQ81342EX MACHINE SUPPORT |
1008 | M: Lennert Buytenhek <kernel@wantstofly.org> |
1009 | M: Dan Williams <dan.j.williams@intel.com> |
1010 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1011 | S: Maintained |
1012 | |
1013 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
1014 | M: Lennert Buytenhek <kernel@wantstofly.org> |
1015 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1016 | S: Maintained |
1017 | |
1018 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1019 | M: Imre Kaloz <kaloz@openwrt.org> |
1020 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1021 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1022 | S: Maintained |
1023 | F: arch/arm/mach-ixp4xx/ |
1024 | |
1025 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
1026 | M: Jonathan Cameron <jic23@cam.ac.uk> |
1027 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1028 | S: Maintained |
1029 | F: arch/arm/mach-pxa/stargate2.c |
1030 | F: drivers/pcmcia/pxa2xx_stargate2.c |
1031 | |
1032 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
1033 | M: Lennert Buytenhek <kernel@wantstofly.org> |
1034 | M: Dan Williams <dan.j.williams@intel.com> |
1035 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1036 | S: Maintained |
1037 | |
1038 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT |
1039 | M: Lennert Buytenhek <kernel@wantstofly.org> |
1040 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1041 | S: Maintained |
1042 | |
1043 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
1044 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> |
1045 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1046 | S: Maintained |
1047 | F: arch/arm/mach-keystone/ |
1048 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1049 | |
1050 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
1051 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> |
1052 | L: linux-kernel@vger.kernel.org |
1053 | S: Maintained |
1054 | F: drivers/clk/keystone/ |
1055 | |
1056 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE |
1057 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> |
1058 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1059 | L: linux-kernel@vger.kernel.org |
1060 | S: Maintained |
1061 | F: drivers/clocksource/timer-keystone.c |
1062 | |
1063 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER |
1064 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> |
1065 | L: linux-kernel@vger.kernel.org |
1066 | S: Maintained |
1067 | F: drivers/power/reset/keystone-reset.c |
1068 | |
1069 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS |
1070 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> |
1071 | L: linux-kernel@vger.kernel.org |
1072 | S: Maintained |
1073 | F: drivers/memory/*emif* |
1074 | |
1075 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
1076 | M: Lennert Buytenhek <kernel@wantstofly.org> |
1077 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1078 | S: Maintained |
1079 | |
1080 | ARM/MAGICIAN MACHINE SUPPORT |
1081 | M: Philipp Zabel <philipp.zabel@gmail.com> |
1082 | S: Maintained |
1083 | |
1084 | ARM/Marvell Armada 370 and Armada XP SOC support |
1085 | M: Jason Cooper <jason@lakedaemon.net> |
1086 | M: Andrew Lunn <andrew@lunn.ch> |
1087 | M: Gregory Clement <gregory.clement@free-electrons.com> |
1088 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
1089 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1090 | S: Maintained |
1091 | F: arch/arm/mach-mvebu/ |
1092 | |
1093 | ARM/Marvell Berlin SoC support |
1094 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
1095 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1096 | S: Maintained |
1097 | F: arch/arm/mach-berlin/ |
1098 | |
1099 | ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support |
1100 | M: Jason Cooper <jason@lakedaemon.net> |
1101 | M: Andrew Lunn <andrew@lunn.ch> |
1102 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
1103 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1104 | S: Maintained |
1105 | F: arch/arm/mach-dove/ |
1106 | F: arch/arm/mach-kirkwood/ |
1107 | F: arch/arm/mach-mv78xx0/ |
1108 | F: arch/arm/mach-orion5x/ |
1109 | F: arch/arm/plat-orion/ |
1110 | |
1111 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1112 | M: Alexander Clouter <alex@digriz.org.uk> |
1113 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1114 | W: http://www.digriz.org.uk/ts78xx/kernel |
1115 | S: Maintained |
1116 | F: arch/arm/mach-orion5x/ts78xx-* |
1117 | |
1118 | ARM/MICREL KS8695 ARCHITECTURE |
1119 | M: Greg Ungerer <gerg@uclinux.org> |
1120 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1121 | F: arch/arm/mach-ks8695/ |
1122 | S: Odd Fixes |
1123 | |
1124 | ARM/MIOA701 MACHINE SUPPORT |
1125 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
1126 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1127 | F: arch/arm/mach-pxa/mioa701.c |
1128 | S: Maintained |
1129 | |
1130 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
1131 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
1132 | S: Maintained |
1133 | |
1134 | ARM/NOMADIK ARCHITECTURE |
1135 | M: Alessandro Rubini <rubini@unipv.it> |
1136 | M: Linus Walleij <linus.walleij@linaro.org> |
1137 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1138 | S: Maintained |
1139 | F: arch/arm/mach-nomadik/ |
1140 | F: drivers/i2c/busses/i2c-nomadik.c |
1141 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
1142 | |
1143 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
1144 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
1145 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1146 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner |
1147 | S: Supported |
1148 | |
1149 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1150 | M: David Brown <davidb@codeaurora.org> |
1151 | M: Daniel Walker <dwalker@fifo99.com> |
1152 | M: Bryan Huntsman <bryanh@codeaurora.org> |
1153 | L: linux-arm-msm@vger.kernel.org |
1154 | F: arch/arm/mach-msm/ |
1155 | F: drivers/video/msm/ |
1156 | F: drivers/mmc/host/msm_sdcc.c |
1157 | F: drivers/mmc/host/msm_sdcc.h |
1158 | F: drivers/tty/serial/msm_serial.h |
1159 | F: drivers/tty/serial/msm_serial.c |
1160 | F: drivers/*/pm8???-* |
1161 | F: drivers/mfd/ssbi/ |
1162 | F: include/linux/mfd/pm8xxx/ |
1163 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
1164 | S: Maintained |
1165 | |
1166 | ARM/TOSA MACHINE SUPPORT |
1167 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1168 | M: Dirk Opfer <dirk@opfer-online.de> |
1169 | S: Maintained |
1170 | |
1171 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
1172 | M: Marek Vasut <marek.vasut@gmail.com> |
1173 | L: linux-arm-kernel@lists.infradead.org |
1174 | W: http://hackndev.com |
1175 | S: Maintained |
1176 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1177 | F: arch/arm/mach-pxa/palmtx.c |
1178 | F: arch/arm/mach-pxa/include/mach/palmt5.h |
1179 | F: arch/arm/mach-pxa/palmt5.c |
1180 | F: arch/arm/mach-pxa/include/mach/palmld.h |
1181 | F: arch/arm/mach-pxa/palmld.c |
1182 | F: arch/arm/mach-pxa/include/mach/palmte2.h |
1183 | F: arch/arm/mach-pxa/palmte2.c |
1184 | F: arch/arm/mach-pxa/include/mach/palmtc.h |
1185 | F: arch/arm/mach-pxa/palmtc.c |
1186 | |
1187 | ARM/PALM TREO SUPPORT |
1188 | M: Tomas Cech <sleep_walker@suse.cz> |
1189 | L: linux-arm-kernel@lists.infradead.org |
1190 | W: http://hackndev.com |
1191 | S: Maintained |
1192 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1193 | F: arch/arm/mach-pxa/palmtreo.c |
1194 | |
1195 | ARM/PALMZ72 SUPPORT |
1196 | M: Sergey Lapin <slapin@ossfans.org> |
1197 | L: linux-arm-kernel@lists.infradead.org |
1198 | W: http://hackndev.com |
1199 | S: Maintained |
1200 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1201 | F: arch/arm/mach-pxa/palmz72.c |
1202 | |
1203 | ARM/PLEB SUPPORT |
1204 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1205 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1206 | S: Maintained |
1207 | |
1208 | ARM/PT DIGITAL BOARD PORT |
1209 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
1210 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1211 | W: http://www.arm.linux.org.uk/ |
1212 | S: Maintained |
1213 | |
1214 | ARM/QUALCOMM SUPPORT |
1215 | M: Kumar Gala <galak@codeaurora.org> |
1216 | M: David Brown <davidb@codeaurora.org> |
1217 | L: linux-arm-msm@vger.kernel.org |
1218 | S: Maintained |
1219 | F: arch/arm/mach-qcom/ |
1220 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git |
1221 | |
1222 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
1223 | M: Lennert Buytenhek <kernel@wantstofly.org> |
1224 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1225 | S: Maintained |
1226 | |
1227 | ARM/RISCPC ARCHITECTURE |
1228 | M: Russell King <linux@arm.linux.org.uk> |
1229 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1230 | W: http://www.arm.linux.org.uk/ |
1231 | S: Maintained |
1232 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1233 | F: arch/arm/include/asm/hardware/ioc.h |
1234 | F: arch/arm/include/asm/hardware/iomd.h |
1235 | F: arch/arm/include/asm/hardware/memc.h |
1236 | F: arch/arm/mach-rpc/ |
1237 | F: drivers/net/ethernet/8390/etherh.c |
1238 | F: drivers/net/ethernet/i825xx/ether1* |
1239 | F: drivers/net/ethernet/seeq/ether3* |
1240 | F: drivers/scsi/arm/ |
1241 | |
1242 | ARM/Rockchip SoC support |
1243 | M: Heiko Stuebner <heiko@sntech.de> |
1244 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1245 | S: Maintained |
1246 | F: arch/arm/mach-rockchip/ |
1247 | F: drivers/*/*rockchip* |
1248 | |
1249 | ARM/SAMSUNG ARM ARCHITECTURES |
1250 | M: Ben Dooks <ben-linux@fluff.org> |
1251 | M: Kukjin Kim <kgene.kim@samsung.com> |
1252 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1253 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
1254 | W: http://www.fluff.org/ben/linux/ |
1255 | S: Maintained |
1256 | F: arch/arm/boot/dts/s3c* |
1257 | F: arch/arm/boot/dts/exynos* |
1258 | F: arch/arm/plat-samsung/ |
1259 | F: arch/arm/mach-s3c24*/ |
1260 | F: arch/arm/mach-s3c64xx/ |
1261 | F: drivers/*/*s3c2410* |
1262 | F: drivers/*/*/*s3c2410* |
1263 | F: drivers/spi/spi-s3c* |
1264 | F: sound/soc/samsung/* |
1265 | |
1266 | ARM/S5P EXYNOS ARM ARCHITECTURES |
1267 | M: Kukjin Kim <kgene.kim@samsung.com> |
1268 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1269 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
1270 | S: Maintained |
1271 | F: arch/arm/mach-s5p*/ |
1272 | F: arch/arm/mach-exynos*/ |
1273 | N: exynos |
1274 | |
1275 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1276 | M: Kyungmin Park <kyungmin.park@samsung.com> |
1277 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1278 | S: Maintained |
1279 | F: arch/arm/mach-s5pv210/mach-aquila.c |
1280 | F: arch/arm/mach-s5pv210/mach-goni.c |
1281 | |
1282 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1283 | M: Kyungmin Park <kyungmin.park@samsung.com> |
1284 | M: Kamil Debski <k.debski@samsung.com> |
1285 | L: linux-arm-kernel@lists.infradead.org |
1286 | L: linux-media@vger.kernel.org |
1287 | S: Maintained |
1288 | F: drivers/media/platform/s5p-g2d/ |
1289 | |
1290 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1291 | M: Kyungmin Park <kyungmin.park@samsung.com> |
1292 | M: Kamil Debski <k.debski@samsung.com> |
1293 | M: Jeongtae Park <jtp.park@samsung.com> |
1294 | L: linux-arm-kernel@lists.infradead.org |
1295 | L: linux-media@vger.kernel.org |
1296 | S: Maintained |
1297 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
1298 | F: drivers/media/platform/s5p-mfc/ |
1299 | |
1300 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT |
1301 | M: Kyungmin Park <kyungmin.park@samsung.com> |
1302 | M: Tomasz Stanislawski <t.stanislaws@samsung.com> |
1303 | L: linux-arm-kernel@lists.infradead.org |
1304 | L: linux-media@vger.kernel.org |
1305 | S: Maintained |
1306 | F: drivers/media/platform/s5p-tv/ |
1307 | |
1308 | ARM/SHMOBILE ARM ARCHITECTURE |
1309 | M: Simon Horman <horms@verge.net.au> |
1310 | M: Magnus Damm <magnus.damm@gmail.com> |
1311 | L: linux-sh@vger.kernel.org |
1312 | W: http://oss.renesas.com |
1313 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
1314 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
1315 | S: Supported |
1316 | F: arch/arm/boot/dts/emev2* |
1317 | F: arch/arm/boot/dts/r7s* |
1318 | F: arch/arm/boot/dts/r8a* |
1319 | F: arch/arm/boot/dts/sh* |
1320 | F: arch/arm/configs/ape6evm_defconfig |
1321 | F: arch/arm/configs/armadillo800eva_defconfig |
1322 | F: arch/arm/configs/bockw_defconfig |
1323 | F: arch/arm/configs/genmai_defconfig |
1324 | F: arch/arm/configs/koelsch_defconfig |
1325 | F: arch/arm/configs/kzm9g_defconfig |
1326 | F: arch/arm/configs/lager_defconfig |
1327 | F: arch/arm/configs/mackerel_defconfig |
1328 | F: arch/arm/configs/marzen_defconfig |
1329 | F: arch/arm/configs/shmobile_defconfig |
1330 | F: arch/arm/mach-shmobile/ |
1331 | F: drivers/sh/ |
1332 | |
1333 | ARM/SOCFPGA ARCHITECTURE |
1334 | M: Dinh Nguyen <dinguyen@altera.com> |
1335 | S: Maintained |
1336 | F: arch/arm/mach-socfpga/ |
1337 | |
1338 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT |
1339 | M: Dinh Nguyen <dinguyen@altera.com> |
1340 | S: Maintained |
1341 | F: drivers/clk/socfpga/ |
1342 | |
1343 | ARM/STI ARCHITECTURE |
1344 | M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com> |
1345 | M: Maxime Coquelin <maxime.coquelin@st.com> |
1346 | M: Patrice Chotard <patrice.chotard@st.com> |
1347 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1348 | L: kernel@stlinux.com |
1349 | W: http://www.stlinux.com |
1350 | S: Maintained |
1351 | F: arch/arm/mach-sti/ |
1352 | F: arch/arm/boot/dts/sti* |
1353 | F: drivers/clocksource/arm_global_timer.c |
1354 | F: drivers/reset/sti/ |
1355 | F: drivers/pinctrl/pinctrl-st.c |
1356 | F: drivers/media/rc/st_rc.c |
1357 | F: drivers/i2c/busses/i2c-st.c |
1358 | F: drivers/tty/serial/st-asc.c |
1359 | |
1360 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
1361 | M: Lennert Buytenhek <kernel@wantstofly.org> |
1362 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1363 | S: Maintained |
1364 | |
1365 | ARM/TETON BGA MACHINE SUPPORT |
1366 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1367 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1368 | S: Maintained |
1369 | |
1370 | ARM/THECUS N2100 MACHINE SUPPORT |
1371 | M: Lennert Buytenhek <kernel@wantstofly.org> |
1372 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1373 | S: Maintained |
1374 | |
1375 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
1376 | M: Wan ZongShun <mcuos.com@gmail.com> |
1377 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1378 | W: http://www.mcuos.com |
1379 | S: Maintained |
1380 | F: arch/arm/mach-w90x900/ |
1381 | F: drivers/input/keyboard/w90p910_keypad.c |
1382 | F: drivers/input/touchscreen/w90p910_ts.c |
1383 | F: drivers/watchdog/nuc900_wdt.c |
1384 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
1385 | F: drivers/mtd/nand/nuc900_nand.c |
1386 | F: drivers/rtc/rtc-nuc900.c |
1387 | F: drivers/spi/spi-nuc900.c |
1388 | F: drivers/usb/host/ehci-w90x900.c |
1389 | F: drivers/video/nuc900fb.c |
1390 | |
1391 | ARM/U300 MACHINE SUPPORT |
1392 | M: Linus Walleij <linus.walleij@linaro.org> |
1393 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1394 | S: Supported |
1395 | F: arch/arm/mach-u300/ |
1396 | F: drivers/clocksource/timer-u300.c |
1397 | F: drivers/i2c/busses/i2c-stu300.c |
1398 | F: drivers/rtc/rtc-coh901331.c |
1399 | F: drivers/watchdog/coh901327_wdt.c |
1400 | F: drivers/dma/coh901318* |
1401 | F: drivers/mfd/ab3100* |
1402 | F: drivers/rtc/rtc-ab3100.c |
1403 | F: drivers/rtc/rtc-coh901331.c |
1404 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
1405 | |
1406 | ARM/Ux500 ARM ARCHITECTURE |
1407 | M: Linus Walleij <linus.walleij@linaro.org> |
1408 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1409 | S: Maintained |
1410 | F: arch/arm/mach-ux500/ |
1411 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
1412 | F: drivers/dma/ste_dma40* |
1413 | F: drivers/hwspinlock/u8500_hsem.c |
1414 | F: drivers/mfd/abx500* |
1415 | F: drivers/mfd/ab8500* |
1416 | F: drivers/mfd/dbx500* |
1417 | F: drivers/mfd/db8500* |
1418 | F: drivers/pinctrl/pinctrl-nomadik* |
1419 | F: drivers/rtc/rtc-ab8500.c |
1420 | F: drivers/rtc/rtc-pl031.c |
1421 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
1422 | |
1423 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1424 | M: Ulf Hansson <ulf.hansson@linaro.org> |
1425 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1426 | T: git git://git.linaro.org/people/ulfh/clk.git |
1427 | S: Maintained |
1428 | F: drivers/clk/ux500/ |
1429 | F: include/linux/platform_data/clk-ux500.h |
1430 | |
1431 | ARM/VFP SUPPORT |
1432 | M: Russell King <linux@arm.linux.org.uk> |
1433 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1434 | W: http://www.arm.linux.org.uk/ |
1435 | S: Maintained |
1436 | F: arch/arm/vfp/ |
1437 | |
1438 | ARM/VOIPAC PXA270 SUPPORT |
1439 | M: Marek Vasut <marek.vasut@gmail.com> |
1440 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1441 | S: Maintained |
1442 | F: arch/arm/mach-pxa/vpac270.c |
1443 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
1444 | |
1445 | ARM/VT8500 ARM ARCHITECTURE |
1446 | M: Tony Prisk <linux@prisktech.co.nz> |
1447 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1448 | S: Maintained |
1449 | F: arch/arm/mach-vt8500/ |
1450 | F: drivers/clocksource/vt8500_timer.c |
1451 | F: drivers/i2c/busses/i2c-wmt.c |
1452 | F: drivers/mmc/host/wmt-sdmmc.c |
1453 | F: drivers/pwm/pwm-vt8500.c |
1454 | F: drivers/rtc/rtc-vt8500.c |
1455 | F: drivers/tty/serial/vt8500_serial.c |
1456 | F: drivers/usb/host/ehci-platform.c |
1457 | F: drivers/usb/host/uhci-platform.c |
1458 | F: drivers/video/vt8500lcdfb.* |
1459 | F: drivers/video/wm8505fb* |
1460 | F: drivers/video/wmt_ge_rops.* |
1461 | |
1462 | ARM/ZIPIT Z2 SUPPORT |
1463 | M: Marek Vasut <marek.vasut@gmail.com> |
1464 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1465 | S: Maintained |
1466 | F: arch/arm/mach-pxa/z2.c |
1467 | F: arch/arm/mach-pxa/include/mach/z2.h |
1468 | |
1469 | ARM/ZYNQ ARCHITECTURE |
1470 | M: Michal Simek <michal.simek@xilinx.com> |
1471 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1472 | W: http://wiki.xilinx.com |
1473 | T: git git://git.xilinx.com/linux-xlnx.git |
1474 | S: Supported |
1475 | F: arch/arm/mach-zynq/ |
1476 | F: drivers/cpuidle/cpuidle-zynq.c |
1477 | N: zynq |
1478 | N: xilinx |
1479 | F: drivers/clocksource/cadence_ttc_timer.c |
1480 | F: drivers/i2c/busses/i2c-cadence.c |
1481 | F: drivers/mmc/host/sdhci-of-arasan.c |
1482 | |
1483 | ARM SMMU DRIVER |
1484 | M: Will Deacon <will.deacon@arm.com> |
1485 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1486 | S: Maintained |
1487 | F: drivers/iommu/arm-smmu.c |
1488 | |
1489 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1490 | M: Catalin Marinas <catalin.marinas@arm.com> |
1491 | M: Will Deacon <will.deacon@arm.com> |
1492 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1493 | S: Maintained |
1494 | F: arch/arm64/ |
1495 | F: Documentation/arm64/ |
1496 | |
1497 | AS3645A LED FLASH CONTROLLER DRIVER |
1498 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
1499 | L: linux-media@vger.kernel.org |
1500 | T: git git://linuxtv.org/media_tree.git |
1501 | S: Maintained |
1502 | F: drivers/media/i2c/as3645a.c |
1503 | F: include/media/as3645a.h |
1504 | |
1505 | ASC7621 HARDWARE MONITOR DRIVER |
1506 | M: George Joseph <george.joseph@fairview5.com> |
1507 | L: lm-sensors@lm-sensors.org |
1508 | S: Maintained |
1509 | F: Documentation/hwmon/asc7621 |
1510 | F: drivers/hwmon/asc7621.c |
1511 | |
1512 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
1513 | M: Corentin Chary <corentin.chary@gmail.com> |
1514 | L: acpi4asus-user@lists.sourceforge.net |
1515 | L: platform-driver-x86@vger.kernel.org |
1516 | W: http://acpi4asus.sf.net |
1517 | S: Maintained |
1518 | F: drivers/platform/x86/asus*.c |
1519 | F: drivers/platform/x86/eeepc*.c |
1520 | |
1521 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
1522 | M: Dan Williams <dan.j.williams@intel.com> |
1523 | W: http://sourceforge.net/projects/xscaleiop |
1524 | S: Maintained |
1525 | F: Documentation/crypto/async-tx-api.txt |
1526 | F: crypto/async_tx/ |
1527 | F: drivers/dma/ |
1528 | F: include/linux/dmaengine.h |
1529 | F: include/linux/async_tx.h |
1530 | |
1531 | AT24 EEPROM DRIVER |
1532 | M: Wolfram Sang <wsa@the-dreams.de> |
1533 | L: linux-i2c@vger.kernel.org |
1534 | S: Maintained |
1535 | F: drivers/misc/eeprom/at24.c |
1536 | F: include/linux/platform_data/at24.h |
1537 | |
1538 | ATA OVER ETHERNET (AOE) DRIVER |
1539 | M: "Ed L. Cashin" <ecashin@coraid.com> |
1540 | W: http://support.coraid.com/support/linux |
1541 | S: Supported |
1542 | F: Documentation/aoe/ |
1543 | F: drivers/block/aoe/ |
1544 | |
1545 | ATHEROS ATH GENERIC UTILITIES |
1546 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
1547 | L: linux-wireless@vger.kernel.org |
1548 | S: Supported |
1549 | F: drivers/net/wireless/ath/* |
1550 | |
1551 | ATHEROS ATH5K WIRELESS DRIVER |
1552 | M: Jiri Slaby <jirislaby@gmail.com> |
1553 | M: Nick Kossifidis <mickflemm@gmail.com> |
1554 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
1555 | L: linux-wireless@vger.kernel.org |
1556 | L: ath5k-devel@lists.ath5k.org |
1557 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
1558 | S: Maintained |
1559 | F: drivers/net/wireless/ath/ath5k/ |
1560 | |
1561 | ATHEROS ATH6KL WIRELESS DRIVER |
1562 | M: Kalle Valo <kvalo@qca.qualcomm.com> |
1563 | L: linux-wireless@vger.kernel.org |
1564 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl |
1565 | T: git git://github.com/kvalo/ath.git |
1566 | S: Supported |
1567 | F: drivers/net/wireless/ath/ath6kl/ |
1568 | |
1569 | WILOCITY WIL6210 WIRELESS DRIVER |
1570 | M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> |
1571 | L: linux-wireless@vger.kernel.org |
1572 | L: wil6210@qca.qualcomm.com |
1573 | S: Supported |
1574 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 |
1575 | F: drivers/net/wireless/ath/wil6210/ |
1576 | |
1577 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1578 | M: Christian Lamparter <chunkeey@googlemail.com> |
1579 | L: linux-wireless@vger.kernel.org |
1580 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 |
1581 | S: Maintained |
1582 | F: drivers/net/wireless/ath/carl9170/ |
1583 | |
1584 | ATK0110 HWMON DRIVER |
1585 | M: Luca Tettamanti <kronos.it@gmail.com> |
1586 | L: lm-sensors@lm-sensors.org |
1587 | S: Maintained |
1588 | F: drivers/hwmon/asus_atk0110.c |
1589 | |
1590 | ATI_REMOTE2 DRIVER |
1591 | M: Ville Syrjala <syrjala@sci.fi> |
1592 | S: Maintained |
1593 | F: drivers/input/misc/ati_remote2.c |
1594 | |
1595 | ATLX ETHERNET DRIVERS |
1596 | M: Jay Cliburn <jcliburn@gmail.com> |
1597 | M: Chris Snook <chris.snook@gmail.com> |
1598 | L: netdev@vger.kernel.org |
1599 | W: http://sourceforge.net/projects/atl1 |
1600 | W: http://atl1.sourceforge.net |
1601 | S: Maintained |
1602 | F: drivers/net/ethernet/atheros/ |
1603 | |
1604 | ATM |
1605 | M: Chas Williams <chas@cmf.nrl.navy.mil> |
1606 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
1607 | L: netdev@vger.kernel.org |
1608 | W: http://linux-atm.sourceforge.net |
1609 | S: Maintained |
1610 | F: drivers/atm/ |
1611 | F: include/linux/atm* |
1612 | F: include/uapi/linux/atm* |
1613 | |
1614 | ATMEL AT91 / AT32 MCI DRIVER |
1615 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
1616 | S: Maintained |
1617 | F: drivers/mmc/host/atmel-mci.c |
1618 | F: drivers/mmc/host/atmel-mci-regs.h |
1619 | |
1620 | ATMEL AT91 / AT32 SERIAL DRIVER |
1621 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1622 | S: Supported |
1623 | F: drivers/tty/serial/atmel_serial.c |
1624 | |
1625 | ATMEL DMA DRIVER |
1626 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1627 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1628 | S: Supported |
1629 | F: drivers/dma/at_hdmac.c |
1630 | F: drivers/dma/at_hdmac_regs.h |
1631 | F: include/linux/platform_data/dma-atmel.h |
1632 | |
1633 | ATMEL I2C DRIVER |
1634 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
1635 | L: linux-i2c@vger.kernel.org |
1636 | S: Supported |
1637 | F: drivers/i2c/busses/i2c-at91.c |
1638 | |
1639 | ATMEL ISI DRIVER |
1640 | M: Josh Wu <josh.wu@atmel.com> |
1641 | L: linux-media@vger.kernel.org |
1642 | S: Supported |
1643 | F: drivers/media/platform/soc_camera/atmel-isi.c |
1644 | F: include/media/atmel-isi.h |
1645 | |
1646 | ATMEL LCDFB DRIVER |
1647 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1648 | L: linux-fbdev@vger.kernel.org |
1649 | S: Maintained |
1650 | F: drivers/video/atmel_lcdfb.c |
1651 | F: include/video/atmel_lcdc.h |
1652 | |
1653 | ATMEL MACB ETHERNET DRIVER |
1654 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1655 | S: Supported |
1656 | F: drivers/net/ethernet/cadence/ |
1657 | |
1658 | ATMEL SPI DRIVER |
1659 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1660 | S: Supported |
1661 | F: drivers/spi/spi-atmel.* |
1662 | |
1663 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1664 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1665 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1666 | S: Supported |
1667 | F: drivers/misc/atmel_tclib.c |
1668 | F: drivers/clocksource/tcb_clksrc.c |
1669 | |
1670 | ATMEL USBA UDC DRIVER |
1671 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1672 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1673 | S: Supported |
1674 | F: drivers/usb/gadget/atmel_usba_udc.* |
1675 | |
1676 | ATMEL WIRELESS DRIVER |
1677 | M: Simon Kelley <simon@thekelleys.org.uk> |
1678 | L: linux-wireless@vger.kernel.org |
1679 | W: http://www.thekelleys.org.uk/atmel |
1680 | W: http://atmelwlandriver.sourceforge.net/ |
1681 | S: Maintained |
1682 | F: drivers/net/wireless/atmel* |
1683 | |
1684 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
1685 | M: Bradley Grove <linuxdrivers@attotech.com> |
1686 | L: linux-scsi@vger.kernel.org |
1687 | W: http://www.attotech.com |
1688 | S: Supported |
1689 | F: drivers/scsi/esas2r |
1690 | |
1691 | AUDIT SUBSYSTEM |
1692 | M: Eric Paris <eparis@redhat.com> |
1693 | L: linux-audit@redhat.com (subscribers-only) |
1694 | W: http://people.redhat.com/sgrubb/audit/ |
1695 | T: git git://git.infradead.org/users/eparis/audit.git |
1696 | S: Maintained |
1697 | F: include/linux/audit.h |
1698 | F: include/uapi/linux/audit.h |
1699 | F: kernel/audit* |
1700 | |
1701 | AUXILIARY DISPLAY DRIVERS |
1702 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
1703 | W: http://miguelojeda.es/auxdisplay.htm |
1704 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
1705 | S: Maintained |
1706 | F: drivers/auxdisplay/ |
1707 | F: include/linux/cfag12864b.h |
1708 | |
1709 | AVR32 ARCHITECTURE |
1710 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1711 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> |
1712 | W: http://www.atmel.com/products/AVR32/ |
1713 | W: http://mirror.egtvedt.no/avr32linux.org/ |
1714 | W: http://avrfreaks.net/ |
1715 | S: Maintained |
1716 | F: arch/avr32/ |
1717 | |
1718 | AVR32/AT32AP MACHINE SUPPORT |
1719 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1720 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> |
1721 | S: Maintained |
1722 | F: arch/avr32/mach-at32ap/ |
1723 | |
1724 | AX.25 NETWORK LAYER |
1725 | M: Ralf Baechle <ralf@linux-mips.org> |
1726 | L: linux-hams@vger.kernel.org |
1727 | W: http://www.linux-ax25.org/ |
1728 | S: Maintained |
1729 | F: include/uapi/linux/ax25.h |
1730 | F: include/net/ax25.h |
1731 | F: net/ax25/ |
1732 | |
1733 | AZ6007 DVB DRIVER |
1734 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
1735 | L: linux-media@vger.kernel.org |
1736 | W: http://linuxtv.org |
1737 | T: git git://linuxtv.org/media_tree.git |
1738 | S: Maintained |
1739 | F: drivers/media/usb/dvb-usb-v2/az6007.c |
1740 | |
1741 | AZTECH FM RADIO RECEIVER DRIVER |
1742 | M: Hans Verkuil <hverkuil@xs4all.nl> |
1743 | L: linux-media@vger.kernel.org |
1744 | T: git git://linuxtv.org/media_tree.git |
1745 | W: http://linuxtv.org |
1746 | S: Maintained |
1747 | F: drivers/media/radio/radio-aztech* |
1748 | |
1749 | B43 WIRELESS DRIVER |
1750 | M: Stefano Brivio <stefano.brivio@polimi.it> |
1751 | L: linux-wireless@vger.kernel.org |
1752 | L: b43-dev@lists.infradead.org |
1753 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
1754 | S: Maintained |
1755 | F: drivers/net/wireless/b43/ |
1756 | |
1757 | B43LEGACY WIRELESS DRIVER |
1758 | M: Larry Finger <Larry.Finger@lwfinger.net> |
1759 | M: Stefano Brivio <stefano.brivio@polimi.it> |
1760 | L: linux-wireless@vger.kernel.org |
1761 | L: b43-dev@lists.infradead.org |
1762 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
1763 | S: Maintained |
1764 | F: drivers/net/wireless/b43legacy/ |
1765 | |
1766 | BACKLIGHT CLASS/SUBSYSTEM |
1767 | M: Jingoo Han <jg1.han@samsung.com> |
1768 | M: Bryan Wu <cooloney@gmail.com> |
1769 | M: Lee Jones <lee.jones@linaro.org> |
1770 | S: Maintained |
1771 | F: drivers/video/backlight/ |
1772 | F: include/linux/backlight.h |
1773 | |
1774 | BATMAN ADVANCED |
1775 | M: Marek Lindner <mareklindner@neomailbox.ch> |
1776 | M: Simon Wunderlich <sw@simonwunderlich.de> |
1777 | M: Antonio Quartulli <antonio@meshcoding.com> |
1778 | L: b.a.t.m.a.n@lists.open-mesh.org |
1779 | W: http://www.open-mesh.org/ |
1780 | S: Maintained |
1781 | F: net/batman-adv/ |
1782 | |
1783 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
1784 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
1785 | L: linux-hams@vger.kernel.org |
1786 | W: http://www.baycom.org/~tom/ham/ham.html |
1787 | S: Maintained |
1788 | F: drivers/net/hamradio/baycom* |
1789 | |
1790 | BCACHE (BLOCK LAYER CACHE) |
1791 | M: Kent Overstreet <kmo@daterainc.com> |
1792 | L: linux-bcache@vger.kernel.org |
1793 | W: http://bcache.evilpiepirate.org |
1794 | S: Maintained: |
1795 | F: drivers/md/bcache/ |
1796 | |
1797 | BEFS FILE SYSTEM |
1798 | S: Orphan |
1799 | F: Documentation/filesystems/befs.txt |
1800 | F: fs/befs/ |
1801 | |
1802 | BFS FILE SYSTEM |
1803 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
1804 | S: Maintained |
1805 | F: Documentation/filesystems/bfs.txt |
1806 | F: fs/bfs/ |
1807 | F: include/uapi/linux/bfs_fs.h |
1808 | |
1809 | BLACKFIN ARCHITECTURE |
1810 | M: Steven Miao <realmz6@gmail.com> |
1811 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1812 | T: git git://git.code.sf.net/p/adi-linux/code |
1813 | W: http://blackfin.uclinux.org |
1814 | S: Supported |
1815 | F: arch/blackfin/ |
1816 | |
1817 | BLACKFIN EMAC DRIVER |
1818 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1819 | W: http://blackfin.uclinux.org |
1820 | S: Supported |
1821 | F: drivers/net/ethernet/adi/ |
1822 | |
1823 | BLACKFIN RTC DRIVER |
1824 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1825 | W: http://blackfin.uclinux.org |
1826 | S: Supported |
1827 | F: drivers/rtc/rtc-bfin.c |
1828 | |
1829 | BLACKFIN SDH DRIVER |
1830 | M: Sonic Zhang <sonic.zhang@analog.com> |
1831 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1832 | W: http://blackfin.uclinux.org |
1833 | S: Supported |
1834 | F: drivers/mmc/host/bfin_sdh.c |
1835 | |
1836 | BLACKFIN SERIAL DRIVER |
1837 | M: Sonic Zhang <sonic.zhang@analog.com> |
1838 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1839 | W: http://blackfin.uclinux.org |
1840 | S: Supported |
1841 | F: drivers/tty/serial/bfin_uart.c |
1842 | |
1843 | BLACKFIN WATCHDOG DRIVER |
1844 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1845 | W: http://blackfin.uclinux.org |
1846 | S: Supported |
1847 | F: drivers/watchdog/bfin_wdt.c |
1848 | |
1849 | BLACKFIN I2C TWI DRIVER |
1850 | M: Sonic Zhang <sonic.zhang@analog.com> |
1851 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1852 | W: http://blackfin.uclinux.org/ |
1853 | S: Supported |
1854 | F: drivers/i2c/busses/i2c-bfin-twi.c |
1855 | |
1856 | BLACKFIN MEDIA DRIVER |
1857 | M: Scott Jiang <scott.jiang.linux@gmail.com> |
1858 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1859 | W: http://blackfin.uclinux.org/ |
1860 | S: Supported |
1861 | F: drivers/media/platform/blackfin/ |
1862 | F: drivers/media/i2c/adv7183* |
1863 | F: drivers/media/i2c/vs6624* |
1864 | |
1865 | BLINKM RGB LED DRIVER |
1866 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> |
1867 | S: Maintained |
1868 | F: drivers/leds/leds-blinkm.c |
1869 | |
1870 | BLOCK LAYER |
1871 | M: Jens Axboe <axboe@kernel.dk> |
1872 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1873 | S: Maintained |
1874 | F: block/ |
1875 | |
1876 | BLOCK2MTD DRIVER |
1877 | M: Joern Engel <joern@lazybastard.org> |
1878 | L: linux-mtd@lists.infradead.org |
1879 | S: Maintained |
1880 | F: drivers/mtd/devices/block2mtd.c |
1881 | |
1882 | BLUETOOTH DRIVERS |
1883 | M: Marcel Holtmann <marcel@holtmann.org> |
1884 | M: Gustavo Padovan <gustavo@padovan.org> |
1885 | M: Johan Hedberg <johan.hedberg@gmail.com> |
1886 | L: linux-bluetooth@vger.kernel.org |
1887 | W: http://www.bluez.org/ |
1888 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1889 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git |
1890 | S: Maintained |
1891 | F: drivers/bluetooth/ |
1892 | |
1893 | BLUETOOTH SUBSYSTEM |
1894 | M: Marcel Holtmann <marcel@holtmann.org> |
1895 | M: Gustavo Padovan <gustavo@padovan.org> |
1896 | M: Johan Hedberg <johan.hedberg@gmail.com> |
1897 | L: linux-bluetooth@vger.kernel.org |
1898 | W: http://www.bluez.org/ |
1899 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1900 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git |
1901 | S: Maintained |
1902 | F: net/bluetooth/ |
1903 | F: include/net/bluetooth/ |
1904 | |
1905 | BONDING DRIVER |
1906 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
1907 | M: Veaceslav Falico <vfalico@gmail.com> |
1908 | M: Andy Gospodarek <andy@greyhouse.net> |
1909 | L: netdev@vger.kernel.org |
1910 | W: http://sourceforge.net/projects/bonding/ |
1911 | S: Supported |
1912 | F: drivers/net/bonding/ |
1913 | F: include/uapi/linux/if_bonding.h |
1914 | |
1915 | BROADCOM B44 10/100 ETHERNET DRIVER |
1916 | M: Gary Zambrano <zambrano@broadcom.com> |
1917 | L: netdev@vger.kernel.org |
1918 | S: Supported |
1919 | F: drivers/net/ethernet/broadcom/b44.* |
1920 | |
1921 | BROADCOM GENET ETHERNET DRIVER |
1922 | M: Florian Fainelli <f.fainelli@gmail.com> |
1923 | L: netdev@vger.kernel.org |
1924 | S: Supported |
1925 | F: drivers/net/ethernet/broadcom/genet/ |
1926 | |
1927 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
1928 | M: Michael Chan <mchan@broadcom.com> |
1929 | L: netdev@vger.kernel.org |
1930 | S: Supported |
1931 | F: drivers/net/ethernet/broadcom/bnx2.* |
1932 | F: drivers/net/ethernet/broadcom/bnx2_* |
1933 | |
1934 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
1935 | M: Ariel Elior <ariel.elior@qlogic.com> |
1936 | L: netdev@vger.kernel.org |
1937 | S: Supported |
1938 | F: drivers/net/ethernet/broadcom/bnx2x/ |
1939 | |
1940 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
1941 | M: Christian Daudt <bcm@fixthebug.org> |
1942 | M: Matt Porter <mporter@linaro.org> |
1943 | L: bcm-kernel-feedback-list@broadcom.com |
1944 | T: git git://github.com/broadcom/mach-bcm |
1945 | S: Maintained |
1946 | F: arch/arm/mach-bcm/ |
1947 | F: arch/arm/boot/dts/bcm113* |
1948 | F: arch/arm/boot/dts/bcm216* |
1949 | F: arch/arm/boot/dts/bcm281* |
1950 | F: arch/arm/configs/bcm_defconfig |
1951 | F: drivers/mmc/host/sdhci_bcm_kona.c |
1952 | F: drivers/clocksource/bcm_kona_timer.c |
1953 | |
1954 | BROADCOM BCM2835 ARM ARCHICTURE |
1955 | M: Stephen Warren <swarren@wwwdotorg.org> |
1956 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) |
1957 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git |
1958 | S: Maintained |
1959 | F: arch/arm/mach-bcm/board_bcm2835.c |
1960 | F: arch/arm/boot/dts/bcm2835* |
1961 | F: arch/arm/configs/bcm2835_defconfig |
1962 | F: drivers/*/*bcm2835* |
1963 | |
1964 | BROADCOM BCM5301X ARM ARCHICTURE |
1965 | M: Hauke Mehrtens <hauke@hauke-m.de> |
1966 | L: linux-arm-kernel@lists.infradead.org |
1967 | S: Maintained |
1968 | F: arch/arm/mach-bcm/bcm_5301x.c |
1969 | F: arch/arm/boot/dts/bcm5301x.dtsi |
1970 | F: arch/arm/boot/dts/bcm470* |
1971 | |
1972 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
1973 | M: Nithin Nayak Sujir <nsujir@broadcom.com> |
1974 | M: Michael Chan <mchan@broadcom.com> |
1975 | L: netdev@vger.kernel.org |
1976 | S: Supported |
1977 | F: drivers/net/ethernet/broadcom/tg3.* |
1978 | |
1979 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
1980 | M: Brett Rudley <brudley@broadcom.com> |
1981 | M: Arend van Spriel <arend@broadcom.com> |
1982 | M: Franky (Zhenhui) Lin <frankyl@broadcom.com> |
1983 | M: Hante Meuleman <meuleman@broadcom.com> |
1984 | L: linux-wireless@vger.kernel.org |
1985 | L: brcm80211-dev-list@broadcom.com |
1986 | S: Supported |
1987 | F: drivers/net/wireless/brcm80211/ |
1988 | |
1989 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
1990 | M: Eddie Wai <eddie.wai@broadcom.com> |
1991 | L: linux-scsi@vger.kernel.org |
1992 | S: Supported |
1993 | F: drivers/scsi/bnx2fc/ |
1994 | |
1995 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
1996 | M: Eddie Wai <eddie.wai@broadcom.com> |
1997 | L: linux-scsi@vger.kernel.org |
1998 | S: Supported |
1999 | F: drivers/scsi/bnx2i/ |
2000 | |
2001 | BROADCOM KONA GPIO DRIVER |
2002 | M: Markus Mayer <markus.mayer@linaro.org> |
2003 | L: bcm-kernel-feedback-list@broadcom.com |
2004 | S: Supported |
2005 | F: drivers/gpio/gpio-bcm-kona.c |
2006 | F: Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt |
2007 | |
2008 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2009 | M: Rafał Miłecki <zajec5@gmail.com> |
2010 | L: linux-wireless@vger.kernel.org |
2011 | S: Maintained |
2012 | F: drivers/bcma/ |
2013 | F: include/linux/bcma/ |
2014 | |
2015 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2016 | M: Florian Fainelli <f.fainelli@gmail.com> |
2017 | L: netdev@vger.kernel.org |
2018 | S: Supported |
2019 | F: drivers/net/ethernet/broadcom/bcmsysport.* |
2020 | |
2021 | BROCADE BFA FC SCSI DRIVER |
2022 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
2023 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> |
2024 | L: linux-scsi@vger.kernel.org |
2025 | S: Supported |
2026 | F: drivers/scsi/bfa/ |
2027 | |
2028 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
2029 | M: Rasesh Mody <rmody@brocade.com> |
2030 | L: netdev@vger.kernel.org |
2031 | S: Supported |
2032 | F: drivers/net/ethernet/brocade/bna/ |
2033 | |
2034 | BSG (block layer generic sg v4 driver) |
2035 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
2036 | L: linux-scsi@vger.kernel.org |
2037 | S: Supported |
2038 | F: block/bsg.c |
2039 | F: include/linux/bsg.h |
2040 | F: include/uapi/linux/bsg.h |
2041 | |
2042 | BT87X AUDIO DRIVER |
2043 | M: Clemens Ladisch <clemens@ladisch.de> |
2044 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
2045 | T: git git://git.alsa-project.org/alsa-kernel.git |
2046 | S: Maintained |
2047 | F: Documentation/sound/alsa/Bt87x.txt |
2048 | F: sound/pci/bt87x.c |
2049 | |
2050 | BT8XXGPIO DRIVER |
2051 | M: Michael Buesch <m@bues.ch> |
2052 | W: http://bu3sch.de/btgpio.php |
2053 | S: Maintained |
2054 | F: drivers/gpio/gpio-bt8xx.c |
2055 | |
2056 | BTRFS FILE SYSTEM |
2057 | M: Chris Mason <clm@fb.com> |
2058 | M: Josef Bacik <jbacik@fb.com> |
2059 | L: linux-btrfs@vger.kernel.org |
2060 | W: http://btrfs.wiki.kernel.org/ |
2061 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
2062 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
2063 | S: Maintained |
2064 | F: Documentation/filesystems/btrfs.txt |
2065 | F: fs/btrfs/ |
2066 | |
2067 | BTTV VIDEO4LINUX DRIVER |
2068 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
2069 | L: linux-media@vger.kernel.org |
2070 | W: http://linuxtv.org |
2071 | T: git git://linuxtv.org/media_tree.git |
2072 | S: Odd fixes |
2073 | F: Documentation/video4linux/bttv/ |
2074 | F: drivers/media/pci/bt8xx/bttv* |
2075 | |
2076 | BUSLOGIC SCSI DRIVER |
2077 | M: Khalid Aziz <khalid@gonehiking.org> |
2078 | L: linux-scsi@vger.kernel.org |
2079 | S: Maintained |
2080 | F: drivers/scsi/BusLogic.* |
2081 | F: drivers/scsi/FlashPoint.* |
2082 | |
2083 | C-MEDIA CMI8788 DRIVER |
2084 | M: Clemens Ladisch <clemens@ladisch.de> |
2085 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
2086 | T: git git://git.alsa-project.org/alsa-kernel.git |
2087 | S: Maintained |
2088 | F: sound/pci/oxygen/ |
2089 | |
2090 | C6X ARCHITECTURE |
2091 | M: Mark Salter <msalter@redhat.com> |
2092 | M: Aurelien Jacquiot <a-jacquiot@ti.com> |
2093 | L: linux-c6x-dev@linux-c6x.org |
2094 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page |
2095 | S: Maintained |
2096 | F: arch/c6x/ |
2097 | |
2098 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
2099 | M: David Howells <dhowells@redhat.com> |
2100 | L: linux-cachefs@redhat.com |
2101 | S: Supported |
2102 | F: Documentation/filesystems/caching/cachefiles.txt |
2103 | F: fs/cachefiles/ |
2104 | |
2105 | CADET FM/AM RADIO RECEIVER DRIVER |
2106 | M: Hans Verkuil <hverkuil@xs4all.nl> |
2107 | L: linux-media@vger.kernel.org |
2108 | T: git git://linuxtv.org/media_tree.git |
2109 | W: http://linuxtv.org |
2110 | S: Maintained |
2111 | F: drivers/media/radio/radio-cadet* |
2112 | |
2113 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
2114 | M: Jonathan Corbet <corbet@lwn.net> |
2115 | L: linux-media@vger.kernel.org |
2116 | T: git git://linuxtv.org/media_tree.git |
2117 | S: Maintained |
2118 | F: Documentation/video4linux/cafe_ccic |
2119 | F: drivers/media/platform/marvell-ccic/ |
2120 | |
2121 | CAIF NETWORK LAYER |
2122 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
2123 | L: netdev@vger.kernel.org |
2124 | S: Supported |
2125 | F: Documentation/networking/caif/ |
2126 | F: drivers/net/caif/ |
2127 | F: include/uapi/linux/caif/ |
2128 | F: include/net/caif/ |
2129 | F: net/caif/ |
2130 | |
2131 | CALGARY x86-64 IOMMU |
2132 | M: Muli Ben-Yehuda <muli@il.ibm.com> |
2133 | M: "Jon D. Mason" <jdmason@kudzu.us> |
2134 | L: discuss@x86-64.org |
2135 | S: Maintained |
2136 | F: arch/x86/kernel/pci-calgary_64.c |
2137 | F: arch/x86/kernel/tce_64.c |
2138 | F: arch/x86/include/asm/calgary.h |
2139 | F: arch/x86/include/asm/tce.h |
2140 | |
2141 | CAN NETWORK LAYER |
2142 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
2143 | L: linux-can@vger.kernel.org |
2144 | W: http://gitorious.org/linux-can |
2145 | T: git git://gitorious.org/linux-can/linux-can-next.git |
2146 | S: Maintained |
2147 | F: Documentation/networking/can.txt |
2148 | F: net/can/ |
2149 | F: include/linux/can/core.h |
2150 | F: include/uapi/linux/can.h |
2151 | F: include/uapi/linux/can/bcm.h |
2152 | F: include/uapi/linux/can/raw.h |
2153 | F: include/uapi/linux/can/gw.h |
2154 | |
2155 | CAN NETWORK DRIVERS |
2156 | M: Wolfgang Grandegger <wg@grandegger.com> |
2157 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
2158 | L: linux-can@vger.kernel.org |
2159 | W: http://gitorious.org/linux-can |
2160 | T: git git://gitorious.org/linux-can/linux-can-next.git |
2161 | S: Maintained |
2162 | F: drivers/net/can/ |
2163 | F: include/linux/can/dev.h |
2164 | F: include/linux/can/platform/ |
2165 | F: include/uapi/linux/can/error.h |
2166 | F: include/uapi/linux/can/netlink.h |
2167 | |
2168 | CAPABILITIES |
2169 | M: Serge Hallyn <serge.hallyn@canonical.com> |
2170 | L: linux-security-module@vger.kernel.org |
2171 | S: Supported |
2172 | F: include/linux/capability.h |
2173 | F: include/uapi/linux/capability.h |
2174 | F: security/capability.c |
2175 | F: security/commoncap.c |
2176 | F: kernel/capability.c |
2177 | |
2178 | CELL BROADBAND ENGINE ARCHITECTURE |
2179 | M: Arnd Bergmann <arnd@arndb.de> |
2180 | L: linuxppc-dev@lists.ozlabs.org |
2181 | L: cbe-oss-dev@lists.ozlabs.org |
2182 | W: http://www.ibm.com/developerworks/power/cell/ |
2183 | S: Supported |
2184 | F: arch/powerpc/include/asm/cell*.h |
2185 | F: arch/powerpc/include/asm/spu*.h |
2186 | F: arch/powerpc/include/uapi/asm/spu*.h |
2187 | F: arch/powerpc/oprofile/*cell* |
2188 | F: arch/powerpc/platforms/cell/ |
2189 | |
2190 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
2191 | M: Sage Weil <sage@inktank.com> |
2192 | L: ceph-devel@vger.kernel.org |
2193 | W: http://ceph.com/ |
2194 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
2195 | S: Supported |
2196 | F: Documentation/filesystems/ceph.txt |
2197 | F: fs/ceph/ |
2198 | F: net/ceph/ |
2199 | F: include/linux/ceph/ |
2200 | F: include/linux/crush/ |
2201 | |
2202 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
2203 | L: linux-usb@vger.kernel.org |
2204 | S: Orphan |
2205 | F: Documentation/usb/WUSB-Design-overview.txt |
2206 | F: Documentation/usb/wusb-cbaf |
2207 | F: drivers/usb/host/hwa-hc.c |
2208 | F: drivers/usb/host/whci/ |
2209 | F: drivers/usb/wusbcore/ |
2210 | F: include/linux/usb/wusb* |
2211 | |
2212 | CFAG12864B LCD DRIVER |
2213 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
2214 | W: http://miguelojeda.es/auxdisplay.htm |
2215 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
2216 | S: Maintained |
2217 | F: drivers/auxdisplay/cfag12864b.c |
2218 | F: include/linux/cfag12864b.h |
2219 | |
2220 | CFAG12864BFB LCD FRAMEBUFFER DRIVER |
2221 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
2222 | W: http://miguelojeda.es/auxdisplay.htm |
2223 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
2224 | S: Maintained |
2225 | F: drivers/auxdisplay/cfag12864bfb.c |
2226 | F: include/linux/cfag12864b.h |
2227 | |
2228 | CFG80211 and NL80211 |
2229 | M: Johannes Berg <johannes@sipsolutions.net> |
2230 | L: linux-wireless@vger.kernel.org |
2231 | W: http://wireless.kernel.org/ |
2232 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
2233 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git |
2234 | S: Maintained |
2235 | F: include/uapi/linux/nl80211.h |
2236 | F: include/net/cfg80211.h |
2237 | F: net/wireless/* |
2238 | X: net/wireless/wext* |
2239 | |
2240 | CHAR and MISC DRIVERS |
2241 | M: Arnd Bergmann <arnd@arndb.de> |
2242 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
2243 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
2244 | S: Supported |
2245 | F: drivers/char/* |
2246 | F: drivers/misc/* |
2247 | F: include/linux/miscdevice.h |
2248 | |
2249 | CHECKPATCH |
2250 | M: Andy Whitcroft <apw@canonical.com> |
2251 | M: Joe Perches <joe@perches.com> |
2252 | S: Maintained |
2253 | F: scripts/checkpatch.pl |
2254 | |
2255 | CHINESE DOCUMENTATION |
2256 | M: Harry Wei <harryxiyou@gmail.com> |
2257 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
2258 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
2259 | S: Maintained |
2260 | F: Documentation/zh_CN/ |
2261 | |
2262 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
2263 | M: Peter Chen <Peter.Chen@freescale.com> |
2264 | T: git git://github.com/hzpeterchen/linux-usb.git |
2265 | L: linux-usb@vger.kernel.org |
2266 | S: Maintained |
2267 | F: drivers/usb/chipidea/ |
2268 | |
2269 | CHROME HARDWARE PLATFORM SUPPORT |
2270 | M: Olof Johansson <olof@lixom.net> |
2271 | S: Maintained |
2272 | F: drivers/platform/chrome/ |
2273 | |
2274 | CISCO VIC ETHERNET NIC DRIVER |
2275 | M: Christian Benvenuti <benve@cisco.com> |
2276 | M: Sujith Sankar <ssujith@cisco.com> |
2277 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
2278 | M: Neel Patel <neepatel@cisco.com> |
2279 | S: Supported |
2280 | F: drivers/net/ethernet/cisco/enic/ |
2281 | |
2282 | CISCO VIC LOW LATENCY NIC DRIVER |
2283 | M: Upinder Malhi <umalhi@cisco.com> |
2284 | S: Supported |
2285 | F: drivers/infiniband/hw/usnic |
2286 | |
2287 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
2288 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2289 | L: netdev@vger.kernel.org |
2290 | S: Maintained |
2291 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2292 | |
2293 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
2294 | M: Lennert Buytenhek <kernel@wantstofly.org> |
2295 | L: linux-usb@vger.kernel.org |
2296 | S: Maintained |
2297 | F: drivers/usb/host/ohci-ep93xx.c |
2298 | |
2299 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
2300 | M: Brian Austin <brian.austin@cirrus.com> |
2301 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> |
2302 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
2303 | S: Maintained |
2304 | F: sound/soc/codecs/cs* |
2305 | |
2306 | CLEANCACHE API |
2307 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
2308 | L: linux-kernel@vger.kernel.org |
2309 | S: Maintained |
2310 | F: mm/cleancache.c |
2311 | F: include/linux/cleancache.h |
2312 | |
2313 | CLK API |
2314 | M: Russell King <linux@arm.linux.org.uk> |
2315 | S: Maintained |
2316 | F: include/linux/clk.h |
2317 | |
2318 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2319 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
2320 | M: Thomas Gleixner <tglx@linutronix.de> |
2321 | L: linux-kernel@vger.kernel.org |
2322 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
2323 | S: Supported |
2324 | F: drivers/clocksource |
2325 | |
2326 | CISCO FCOE HBA DRIVER |
2327 | M: Hiral Patel <hiralpat@cisco.com> |
2328 | M: Suma Ramars <sramars@cisco.com> |
2329 | M: Brian Uchino <buchino@cisco.com> |
2330 | L: linux-scsi@vger.kernel.org |
2331 | S: Supported |
2332 | F: drivers/scsi/fnic/ |
2333 | |
2334 | CMPC ACPI DRIVER |
2335 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> |
2336 | M: Daniel Oliveira Nascimento <don@syst.com.br> |
2337 | L: platform-driver-x86@vger.kernel.org |
2338 | S: Supported |
2339 | F: drivers/platform/x86/classmate-laptop.c |
2340 | |
2341 | COCCINELLE/Semantic Patches (SmPL) |
2342 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
2343 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
2344 | M: Nicolas Palix <nicolas.palix@imag.fr> |
2345 | M: Michal Marek <mmarek@suse.cz> |
2346 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
2347 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
2348 | W: http://coccinelle.lip6.fr/ |
2349 | S: Supported |
2350 | F: Documentation/coccinelle.txt |
2351 | F: scripts/coccinelle/ |
2352 | F: scripts/coccicheck |
2353 | |
2354 | CODA FILE SYSTEM |
2355 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
2356 | M: coda@cs.cmu.edu |
2357 | L: codalist@coda.cs.cmu.edu |
2358 | W: http://www.coda.cs.cmu.edu/ |
2359 | S: Maintained |
2360 | F: Documentation/filesystems/coda.txt |
2361 | F: fs/coda/ |
2362 | F: include/linux/coda*.h |
2363 | F: include/uapi/linux/coda*.h |
2364 | |
2365 | COMMON CLK FRAMEWORK |
2366 | M: Mike Turquette <mturquette@linaro.org> |
2367 | L: linux-kernel@vger.kernel.org |
2368 | T: git git://git.linaro.org/people/mturquette/linux.git |
2369 | S: Maintained |
2370 | F: drivers/clk/ |
2371 | X: drivers/clk/clkdev.c |
2372 | F: include/linux/clk-pr* |
2373 | F: include/linux/clk/ |
2374 | |
2375 | COMMON INTERNET FILE SYSTEM (CIFS) |
2376 | M: Steve French <sfrench@samba.org> |
2377 | L: linux-cifs@vger.kernel.org |
2378 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
2379 | W: http://linux-cifs.samba.org/ |
2380 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
2381 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
2382 | S: Supported |
2383 | F: Documentation/filesystems/cifs.txt |
2384 | F: fs/cifs/ |
2385 | |
2386 | COMPACTPCI HOTPLUG CORE |
2387 | M: Scott Murray <scott@spiteful.org> |
2388 | L: linux-pci@vger.kernel.org |
2389 | S: Maintained |
2390 | F: drivers/pci/hotplug/cpci_hotplug* |
2391 | |
2392 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER |
2393 | M: Scott Murray <scott@spiteful.org> |
2394 | L: linux-pci@vger.kernel.org |
2395 | S: Maintained |
2396 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
2397 | |
2398 | COMPACTPCI HOTPLUG GENERIC DRIVER |
2399 | M: Scott Murray <scott@spiteful.org> |
2400 | L: linux-pci@vger.kernel.org |
2401 | S: Maintained |
2402 | F: drivers/pci/hotplug/cpcihp_generic.c |
2403 | |
2404 | COMPAL LAPTOP SUPPORT |
2405 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
2406 | L: platform-driver-x86@vger.kernel.org |
2407 | S: Maintained |
2408 | F: drivers/platform/x86/compal-laptop.c |
2409 | |
2410 | CONEXANT ACCESSRUNNER USB DRIVER |
2411 | M: Simon Arlott <cxacru@fire.lp0.eu> |
2412 | L: accessrunner-general@lists.sourceforge.net |
2413 | W: http://accessrunner.sourceforge.net/ |
2414 | S: Maintained |
2415 | F: drivers/usb/atm/cxacru.c |
2416 | |
2417 | CONFIGFS |
2418 | M: Joel Becker <jlbec@evilplan.org> |
2419 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git |
2420 | S: Supported |
2421 | F: fs/configfs/ |
2422 | F: include/linux/configfs.h |
2423 | |
2424 | CONNECTOR |
2425 | M: Evgeniy Polyakov <zbr@ioremap.net> |
2426 | L: netdev@vger.kernel.org |
2427 | S: Maintained |
2428 | F: drivers/connector/ |
2429 | |
2430 | CONTROL GROUP (CGROUP) |
2431 | M: Tejun Heo <tj@kernel.org> |
2432 | M: Li Zefan <lizefan@huawei.com> |
2433 | L: cgroups@vger.kernel.org |
2434 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
2435 | S: Maintained |
2436 | F: Documentation/cgroups/ |
2437 | F: include/linux/cgroup* |
2438 | F: kernel/cgroup* |
2439 | |
2440 | CONTROL GROUP - CPUSET |
2441 | M: Li Zefan <lizefan@huawei.com> |
2442 | L: cgroups@vger.kernel.org |
2443 | W: http://www.bullopensource.org/cpuset/ |
2444 | W: http://oss.sgi.com/projects/cpusets/ |
2445 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
2446 | S: Maintained |
2447 | F: Documentation/cgroups/cpusets.txt |
2448 | F: include/linux/cpuset.h |
2449 | F: kernel/cpuset.c |
2450 | |
2451 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) |
2452 | M: Johannes Weiner <hannes@cmpxchg.org> |
2453 | M: Michal Hocko <mhocko@suse.cz> |
2454 | L: cgroups@vger.kernel.org |
2455 | L: linux-mm@kvack.org |
2456 | S: Maintained |
2457 | F: mm/memcontrol.c |
2458 | F: mm/page_cgroup.c |
2459 | |
2460 | CORETEMP HARDWARE MONITORING DRIVER |
2461 | M: Fenghua Yu <fenghua.yu@intel.com> |
2462 | L: lm-sensors@lm-sensors.org |
2463 | S: Maintained |
2464 | F: Documentation/hwmon/coretemp |
2465 | F: drivers/hwmon/coretemp.c |
2466 | |
2467 | COSA/SRP SYNC SERIAL DRIVER |
2468 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
2469 | W: http://www.fi.muni.cz/~kas/cosa/ |
2470 | S: Maintained |
2471 | F: drivers/net/wan/cosa* |
2472 | |
2473 | CPMAC ETHERNET DRIVER |
2474 | M: Florian Fainelli <florian@openwrt.org> |
2475 | L: netdev@vger.kernel.org |
2476 | S: Maintained |
2477 | F: drivers/net/ethernet/ti/cpmac.c |
2478 | |
2479 | CPU FREQUENCY DRIVERS |
2480 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
2481 | M: Viresh Kumar <viresh.kumar@linaro.org> |
2482 | L: linux-pm@vger.kernel.org |
2483 | S: Maintained |
2484 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2485 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) |
2486 | F: drivers/cpufreq/ |
2487 | F: include/linux/cpufreq.h |
2488 | |
2489 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2490 | M: Viresh Kumar <viresh.kumar@linaro.org> |
2491 | M: Sudeep Holla <sudeep.holla@arm.com> |
2492 | L: linux-pm@vger.kernel.org |
2493 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php |
2494 | S: Maintained |
2495 | F: drivers/cpufreq/arm_big_little.h |
2496 | F: drivers/cpufreq/arm_big_little.c |
2497 | F: drivers/cpufreq/arm_big_little_dt.c |
2498 | |
2499 | CPUIDLE DRIVER - ARM BIG LITTLE |
2500 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
2501 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
2502 | L: linux-pm@vger.kernel.org |
2503 | L: linux-arm-kernel@lists.infradead.org |
2504 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2505 | S: Maintained |
2506 | F: drivers/cpuidle/cpuidle-big_little.c |
2507 | |
2508 | CPUIDLE DRIVERS |
2509 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
2510 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
2511 | L: linux-pm@vger.kernel.org |
2512 | S: Maintained |
2513 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2514 | F: drivers/cpuidle/* |
2515 | F: include/linux/cpuidle.h |
2516 | |
2517 | CPUID/MSR DRIVER |
2518 | M: "H. Peter Anvin" <hpa@zytor.com> |
2519 | S: Maintained |
2520 | F: arch/x86/kernel/cpuid.c |
2521 | F: arch/x86/kernel/msr.c |
2522 | |
2523 | CPU POWER MONITORING SUBSYSTEM |
2524 | M: Dominik Brodowski <linux@dominikbrodowski.net> |
2525 | M: Thomas Renninger <trenn@suse.de> |
2526 | S: Maintained |
2527 | F: tools/power/cpupower/ |
2528 | |
2529 | CRAMFS FILESYSTEM |
2530 | W: http://sourceforge.net/projects/cramfs/ |
2531 | S: Orphan / Obsolete |
2532 | F: Documentation/filesystems/cramfs.txt |
2533 | F: fs/cramfs/ |
2534 | |
2535 | CRIS PORT |
2536 | M: Mikael Starvik <starvik@axis.com> |
2537 | M: Jesper Nilsson <jesper.nilsson@axis.com> |
2538 | L: linux-cris-kernel@axis.com |
2539 | W: http://developer.axis.com |
2540 | S: Maintained |
2541 | F: arch/cris/ |
2542 | F: drivers/tty/serial/crisv10.* |
2543 | |
2544 | CRYPTO API |
2545 | M: Herbert Xu <herbert@gondor.apana.org.au> |
2546 | M: "David S. Miller" <davem@davemloft.net> |
2547 | L: linux-crypto@vger.kernel.org |
2548 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
2549 | S: Maintained |
2550 | F: Documentation/crypto/ |
2551 | F: arch/*/crypto/ |
2552 | F: crypto/ |
2553 | F: drivers/crypto/ |
2554 | F: include/crypto/ |
2555 | |
2556 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
2557 | M: Neil Horman <nhorman@tuxdriver.com> |
2558 | L: linux-crypto@vger.kernel.org |
2559 | S: Maintained |
2560 | F: crypto/ansi_cprng.c |
2561 | F: crypto/rng.c |
2562 | |
2563 | CS5535 Audio ALSA driver |
2564 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
2565 | S: Maintained |
2566 | F: sound/pci/cs5535audio/ |
2567 | |
2568 | CW1200 WLAN driver |
2569 | M: Solomon Peachy <pizza@shaftnet.org> |
2570 | S: Maintained |
2571 | F: drivers/net/wireless/cw1200/ |
2572 | |
2573 | CX18 VIDEO4LINUX DRIVER |
2574 | M: Andy Walls <awalls@md.metrocast.net> |
2575 | L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) |
2576 | L: linux-media@vger.kernel.org |
2577 | T: git git://linuxtv.org/media_tree.git |
2578 | W: http://linuxtv.org |
2579 | W: http://www.ivtvdriver.org/index.php/Cx18 |
2580 | S: Maintained |
2581 | F: Documentation/video4linux/cx18.txt |
2582 | F: drivers/media/pci/cx18/ |
2583 | F: include/uapi/linux/ivtv* |
2584 | |
2585 | CX2341X MPEG ENCODER HELPER MODULE |
2586 | M: Hans Verkuil <hverkuil@xs4all.nl> |
2587 | L: linux-media@vger.kernel.org |
2588 | T: git git://linuxtv.org/media_tree.git |
2589 | W: http://linuxtv.org |
2590 | S: Maintained |
2591 | F: drivers/media/common/cx2341x* |
2592 | F: include/media/cx2341x* |
2593 | |
2594 | CX88 VIDEO4LINUX DRIVER |
2595 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
2596 | L: linux-media@vger.kernel.org |
2597 | W: http://linuxtv.org |
2598 | T: git git://linuxtv.org/media_tree.git |
2599 | S: Odd fixes |
2600 | F: Documentation/video4linux/cx88/ |
2601 | F: drivers/media/pci/cx88/ |
2602 | |
2603 | CXD2820R MEDIA DRIVER |
2604 | M: Antti Palosaari <crope@iki.fi> |
2605 | L: linux-media@vger.kernel.org |
2606 | W: http://linuxtv.org/ |
2607 | W: http://palosaari.fi/linux/ |
2608 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
2609 | T: git git://linuxtv.org/anttip/media_tree.git |
2610 | S: Maintained |
2611 | F: drivers/media/dvb-frontends/cxd2820r* |
2612 | |
2613 | CXGB3 ETHERNET DRIVER (CXGB3) |
2614 | M: Santosh Raspatur <santosh@chelsio.com> |
2615 | L: netdev@vger.kernel.org |
2616 | W: http://www.chelsio.com |
2617 | S: Supported |
2618 | F: drivers/net/ethernet/chelsio/cxgb3/ |
2619 | |
2620 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
2621 | M: Steve Wise <swise@chelsio.com> |
2622 | L: linux-rdma@vger.kernel.org |
2623 | W: http://www.openfabrics.org |
2624 | S: Supported |
2625 | F: drivers/infiniband/hw/cxgb3/ |
2626 | |
2627 | CXGB4 ETHERNET DRIVER (CXGB4) |
2628 | M: Hariprasad S <hariprasad@chelsio.com> |
2629 | L: netdev@vger.kernel.org |
2630 | W: http://www.chelsio.com |
2631 | S: Supported |
2632 | F: drivers/net/ethernet/chelsio/cxgb4/ |
2633 | |
2634 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
2635 | M: Steve Wise <swise@chelsio.com> |
2636 | L: linux-rdma@vger.kernel.org |
2637 | W: http://www.openfabrics.org |
2638 | S: Supported |
2639 | F: drivers/infiniband/hw/cxgb4/ |
2640 | |
2641 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2642 | M: Casey Leedom <leedom@chelsio.com> |
2643 | L: netdev@vger.kernel.org |
2644 | W: http://www.chelsio.com |
2645 | S: Supported |
2646 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
2647 | |
2648 | STMMAC ETHERNET DRIVER |
2649 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> |
2650 | L: netdev@vger.kernel.org |
2651 | W: http://www.stlinux.com |
2652 | S: Supported |
2653 | F: drivers/net/ethernet/stmicro/stmmac/ |
2654 | |
2655 | CYBERPRO FB DRIVER |
2656 | M: Russell King <linux@arm.linux.org.uk> |
2657 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2658 | W: http://www.arm.linux.org.uk/ |
2659 | S: Maintained |
2660 | F: drivers/video/cyber2000fb.* |
2661 | |
2662 | CYCLADES ASYNC MUX DRIVER |
2663 | W: http://www.cyclades.com/ |
2664 | S: Orphan |
2665 | F: drivers/tty/cyclades.c |
2666 | F: include/linux/cyclades.h |
2667 | F: include/uapi/linux/cyclades.h |
2668 | |
2669 | CYCLADES PC300 DRIVER |
2670 | W: http://www.cyclades.com/ |
2671 | S: Orphan |
2672 | F: drivers/net/wan/pc300* |
2673 | |
2674 | CYPRESS_FIRMWARE MEDIA DRIVER |
2675 | M: Antti Palosaari <crope@iki.fi> |
2676 | L: linux-media@vger.kernel.org |
2677 | W: http://linuxtv.org/ |
2678 | W: http://palosaari.fi/linux/ |
2679 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
2680 | T: git git://linuxtv.org/anttip/media_tree.git |
2681 | S: Maintained |
2682 | F: drivers/media/common/cypress_firmware* |
2683 | |
2684 | CYTTSP TOUCHSCREEN DRIVER |
2685 | M: Ferruh Yigit <fery@cypress.com> |
2686 | L: linux-input@vger.kernel.org |
2687 | S: Supported |
2688 | F: drivers/input/touchscreen/cyttsp* |
2689 | F: include/linux/input/cyttsp.h |
2690 | |
2691 | DAMA SLAVE for AX.25 |
2692 | M: Joerg Reuter <jreuter@yaina.de> |
2693 | W: http://yaina.de/jreuter/ |
2694 | W: http://www.qsl.net/dl1bke/ |
2695 | L: linux-hams@vger.kernel.org |
2696 | S: Maintained |
2697 | F: net/ax25/af_ax25.c |
2698 | F: net/ax25/ax25_dev.c |
2699 | F: net/ax25/ax25_ds_* |
2700 | F: net/ax25/ax25_in.c |
2701 | F: net/ax25/ax25_out.c |
2702 | F: net/ax25/ax25_timer.c |
2703 | F: net/ax25/sysctl_net_ax25.c |
2704 | |
2705 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
2706 | L: netdev@vger.kernel.org |
2707 | S: Orphan |
2708 | F: Documentation/networking/dmfe.txt |
2709 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
2710 | |
2711 | DC390/AM53C974 SCSI driver |
2712 | M: Kurt Garloff <garloff@suse.de> |
2713 | W: http://www.garloff.de/kurt/linux/dc390/ |
2714 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
2715 | S: Maintained |
2716 | F: drivers/scsi/tmscsim.* |
2717 | |
2718 | DC395x SCSI driver |
2719 | M: Oliver Neukum <oliver@neukum.org> |
2720 | M: Ali Akcaagac <aliakc@web.de> |
2721 | M: Jamie Lenehan <lenehan@twibble.org> |
2722 | L: dc395x@twibble.org |
2723 | W: http://twibble.org/dist/dc395x/ |
2724 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ |
2725 | S: Maintained |
2726 | F: Documentation/scsi/dc395x.txt |
2727 | F: drivers/scsi/dc395x.* |
2728 | |
2729 | DCCP PROTOCOL |
2730 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
2731 | L: dccp@vger.kernel.org |
2732 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
2733 | S: Maintained |
2734 | F: include/linux/dccp.h |
2735 | F: include/uapi/linux/dccp.h |
2736 | F: include/linux/tfrc.h |
2737 | F: net/dccp/ |
2738 | |
2739 | DECnet NETWORK LAYER |
2740 | W: http://linux-decnet.sourceforge.net |
2741 | L: linux-decnet-user@lists.sourceforge.net |
2742 | S: Orphan |
2743 | F: Documentation/networking/decnet.txt |
2744 | F: net/decnet/ |
2745 | |
2746 | DECSTATION PLATFORM SUPPORT |
2747 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
2748 | L: linux-mips@linux-mips.org |
2749 | W: http://www.linux-mips.org/wiki/DECstation |
2750 | S: Maintained |
2751 | F: arch/mips/dec/ |
2752 | F: arch/mips/include/asm/dec/ |
2753 | F: arch/mips/include/asm/mach-dec/ |
2754 | |
2755 | DEFXX FDDI NETWORK DRIVER |
2756 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
2757 | S: Maintained |
2758 | F: drivers/net/fddi/defxx.* |
2759 | |
2760 | DELL LAPTOP DRIVER |
2761 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
2762 | L: platform-driver-x86@vger.kernel.org |
2763 | S: Maintained |
2764 | F: drivers/platform/x86/dell-laptop.c |
2765 | |
2766 | DELL LAPTOP SMM DRIVER |
2767 | M: Guenter Roeck <linux@roeck-us.net> |
2768 | F: drivers/char/i8k.c |
2769 | F: include/uapi/linux/i8k.h |
2770 | |
2771 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
2772 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
2773 | S: Maintained |
2774 | F: Documentation/dcdbas.txt |
2775 | F: drivers/firmware/dcdbas.* |
2776 | |
2777 | DELL WMI EXTRAS DRIVER |
2778 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
2779 | S: Maintained |
2780 | F: drivers/platform/x86/dell-wmi.c |
2781 | |
2782 | DESIGNWARE USB2 DRD IP DRIVER |
2783 | M: Paul Zimmerman <paulz@synopsys.com> |
2784 | L: linux-usb@vger.kernel.org |
2785 | S: Maintained |
2786 | F: drivers/usb/dwc2/ |
2787 | |
2788 | DESIGNWARE USB3 DRD IP DRIVER |
2789 | M: Felipe Balbi <balbi@ti.com> |
2790 | L: linux-usb@vger.kernel.org |
2791 | L: linux-omap@vger.kernel.org |
2792 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
2793 | S: Maintained |
2794 | F: drivers/usb/dwc3/ |
2795 | |
2796 | DEVICE FREQUENCY (DEVFREQ) |
2797 | M: MyungJoo Ham <myungjoo.ham@samsung.com> |
2798 | M: Kyungmin Park <kyungmin.park@samsung.com> |
2799 | L: linux-pm@vger.kernel.org |
2800 | S: Maintained |
2801 | F: drivers/devfreq/ |
2802 | |
2803 | DEVICE NUMBER REGISTRY |
2804 | M: Torben Mathiasen <device@lanana.org> |
2805 | W: http://lanana.org/docs/device-list/index.html |
2806 | S: Maintained |
2807 | |
2808 | DEVICE-MAPPER (LVM) |
2809 | M: Alasdair Kergon <agk@redhat.com> |
2810 | M: Mike Snitzer <snitzer@redhat.com> |
2811 | M: dm-devel@redhat.com |
2812 | L: dm-devel@redhat.com |
2813 | W: http://sources.redhat.com/dm |
2814 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
2815 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
2816 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
2817 | S: Maintained |
2818 | F: Documentation/device-mapper/ |
2819 | F: drivers/md/dm* |
2820 | F: drivers/md/persistent-data/ |
2821 | F: include/linux/device-mapper.h |
2822 | F: include/linux/dm-*.h |
2823 | F: include/uapi/linux/dm-*.h |
2824 | |
2825 | DIALOG SEMICONDUCTOR DRIVERS |
2826 | M: Support Opensource <support.opensource@diasemi.com> |
2827 | W: http://www.dialog-semiconductor.com/products |
2828 | S: Supported |
2829 | F: Documentation/hwmon/da90?? |
2830 | F: drivers/gpio/gpio-da90??.c |
2831 | F: drivers/hwmon/da90??-hwmon.c |
2832 | F: drivers/input/misc/da90??_onkey.c |
2833 | F: drivers/input/touchscreen/da9052_tsi.c |
2834 | F: drivers/leds/leds-da90??.c |
2835 | F: drivers/mfd/da903x.c |
2836 | F: drivers/mfd/da90??-*.c |
2837 | F: drivers/power/da9052-battery.c |
2838 | F: drivers/regulator/da903x.c |
2839 | F: drivers/regulator/da9???-regulator.[ch] |
2840 | F: drivers/rtc/rtc-da90??.c |
2841 | F: drivers/video/backlight/da90??_bl.c |
2842 | F: drivers/watchdog/da90??_wdt.c |
2843 | F: include/linux/mfd/da903x.h |
2844 | F: include/linux/mfd/da9052/ |
2845 | F: include/linux/mfd/da9055/ |
2846 | F: include/linux/mfd/da9063/ |
2847 | F: include/sound/da[79]*.h |
2848 | F: sound/soc/codecs/da[79]*.[ch] |
2849 | |
2850 | DIGI NEO AND CLASSIC PCI PRODUCTS |
2851 | M: Lidza Louina <lidza.louina@gmail.com> |
2852 | M: Mark Hounschell <markh@compro.net> |
2853 | L: driverdev-devel@linuxdriverproject.org |
2854 | S: Maintained |
2855 | F: drivers/staging/dgnc/ |
2856 | |
2857 | DIGI EPCA PCI PRODUCTS |
2858 | M: Lidza Louina <lidza.louina@gmail.com> |
2859 | M: Mark Hounschell <markh@compro.net> |
2860 | L: driverdev-devel@linuxdriverproject.org |
2861 | S: Maintained |
2862 | F: drivers/staging/dgap/ |
2863 | |
2864 | DIOLAN U2C-12 I2C DRIVER |
2865 | M: Guenter Roeck <linux@roeck-us.net> |
2866 | L: linux-i2c@vger.kernel.org |
2867 | S: Maintained |
2868 | F: drivers/i2c/busses/i2c-diolan-u2c.c |
2869 | |
2870 | DIRECTORY NOTIFICATION (DNOTIFY) |
2871 | M: Eric Paris <eparis@parisplace.org> |
2872 | S: Maintained |
2873 | F: Documentation/filesystems/dnotify.txt |
2874 | F: fs/notify/dnotify/ |
2875 | F: include/linux/dnotify.h |
2876 | |
2877 | DISK GEOMETRY AND PARTITION HANDLING |
2878 | M: Andries Brouwer <aeb@cwi.nl> |
2879 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2880 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html |
2881 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html |
2882 | S: Maintained |
2883 | |
2884 | DISKQUOTA |
2885 | M: Jan Kara <jack@suse.cz> |
2886 | S: Maintained |
2887 | F: Documentation/filesystems/quota.txt |
2888 | F: fs/quota/ |
2889 | F: include/linux/quota*.h |
2890 | F: include/uapi/linux/quota*.h |
2891 | |
2892 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2893 | M: Bernie Thompson <bernie@plugable.com> |
2894 | L: linux-fbdev@vger.kernel.org |
2895 | S: Maintained |
2896 | W: http://plugable.com/category/projects/udlfb/ |
2897 | F: drivers/video/udlfb.c |
2898 | F: include/video/udlfb.h |
2899 | F: Documentation/fb/udlfb.txt |
2900 | |
2901 | DISTRIBUTED LOCK MANAGER (DLM) |
2902 | M: Christine Caulfield <ccaulfie@redhat.com> |
2903 | M: David Teigland <teigland@redhat.com> |
2904 | L: cluster-devel@redhat.com |
2905 | W: http://sources.redhat.com/cluster/ |
2906 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
2907 | S: Supported |
2908 | F: fs/dlm/ |
2909 | |
2910 | DMA BUFFER SHARING FRAMEWORK |
2911 | M: Sumit Semwal <sumit.semwal@linaro.org> |
2912 | S: Maintained |
2913 | L: linux-media@vger.kernel.org |
2914 | L: dri-devel@lists.freedesktop.org |
2915 | L: linaro-mm-sig@lists.linaro.org |
2916 | F: drivers/base/dma-buf* |
2917 | F: include/linux/dma-buf* |
2918 | F: Documentation/dma-buf-sharing.txt |
2919 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git |
2920 | |
2921 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
2922 | M: Vinod Koul <vinod.koul@intel.com> |
2923 | M: Dan Williams <dan.j.williams@intel.com> |
2924 | L: dmaengine@vger.kernel.org |
2925 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ |
2926 | S: Supported |
2927 | F: drivers/dma/ |
2928 | F: include/linux/dma* |
2929 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2930 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) |
2931 | |
2932 | DME1737 HARDWARE MONITOR DRIVER |
2933 | M: Juerg Haefliger <juergh@gmail.com> |
2934 | L: lm-sensors@lm-sensors.org |
2935 | S: Maintained |
2936 | F: Documentation/hwmon/dme1737 |
2937 | F: drivers/hwmon/dme1737.c |
2938 | |
2939 | DOCKING STATION DRIVER |
2940 | M: Shaohua Li <shaohua.li@intel.com> |
2941 | L: linux-acpi@vger.kernel.org |
2942 | S: Supported |
2943 | F: drivers/acpi/dock.c |
2944 | |
2945 | DOCUMENTATION |
2946 | M: Randy Dunlap <rdunlap@infradead.org> |
2947 | L: linux-doc@vger.kernel.org |
2948 | T: quilt http://www.infradead.org/~rdunlap/Doc/patches/ |
2949 | S: Maintained |
2950 | F: Documentation/ |
2951 | X: Documentation/ABI/ |
2952 | X: Documentation/devicetree/ |
2953 | X: Documentation/[a-z][a-z]_[A-Z][A-Z]/ |
2954 | |
2955 | DOUBLETALK DRIVER |
2956 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
2957 | L: blinux-list@redhat.com |
2958 | S: Maintained |
2959 | F: drivers/char/dtlk.c |
2960 | F: include/linux/dtlk.h |
2961 | |
2962 | DPT_I2O SCSI RAID DRIVER |
2963 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
2964 | L: linux-scsi@vger.kernel.org |
2965 | W: http://www.adaptec.com/ |
2966 | S: Maintained |
2967 | F: drivers/scsi/dpt* |
2968 | F: drivers/scsi/dpt/ |
2969 | |
2970 | DRBD DRIVER |
2971 | P: Philipp Reisner |
2972 | P: Lars Ellenberg |
2973 | M: drbd-dev@lists.linbit.com |
2974 | L: drbd-user@lists.linbit.com |
2975 | W: http://www.drbd.org |
2976 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd |
2977 | T: git git://git.drbd.org/drbd-8.3.git |
2978 | S: Supported |
2979 | F: drivers/block/drbd/ |
2980 | F: lib/lru_cache.c |
2981 | F: Documentation/blockdev/drbd/ |
2982 | |
2983 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
2984 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
2985 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
2986 | S: Supported |
2987 | F: Documentation/kobject.txt |
2988 | F: drivers/base/ |
2989 | F: fs/sysfs/ |
2990 | F: fs/debugfs/ |
2991 | F: include/linux/kobj* |
2992 | F: include/linux/debugfs.h |
2993 | F: lib/kobj* |
2994 | |
2995 | DRM DRIVERS |
2996 | M: David Airlie <airlied@linux.ie> |
2997 | L: dri-devel@lists.freedesktop.org |
2998 | T: git git://people.freedesktop.org/~airlied/linux |
2999 | S: Maintained |
3000 | F: drivers/gpu/drm/ |
3001 | F: drivers/gpu/vga/ |
3002 | F: include/drm/ |
3003 | F: include/uapi/drm/ |
3004 | |
3005 | RADEON DRM DRIVERS |
3006 | M: Alex Deucher <alexander.deucher@amd.com> |
3007 | M: Christian König <christian.koenig@amd.com> |
3008 | L: dri-devel@lists.freedesktop.org |
3009 | T: git git://people.freedesktop.org/~agd5f/linux |
3010 | S: Supported |
3011 | F: drivers/gpu/drm/radeon/ |
3012 | F: include/drm/radeon* |
3013 | F: include/uapi/drm/radeon* |
3014 | |
3015 | DRM PANEL DRIVERS |
3016 | M: Thierry Reding <thierry.reding@gmail.com> |
3017 | L: dri-devel@lists.freedesktop.org |
3018 | T: git git://anongit.freedesktop.org/tegra/linux.git |
3019 | S: Maintained |
3020 | F: drivers/gpu/drm/drm_panel.c |
3021 | F: drivers/gpu/drm/panel/ |
3022 | F: include/drm/drm_panel.h |
3023 | F: Documentation/devicetree/bindings/panel/ |
3024 | |
3025 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
3026 | M: Daniel Vetter <daniel.vetter@ffwll.ch> |
3027 | M: Jani Nikula <jani.nikula@linux.intel.com> |
3028 | L: intel-gfx@lists.freedesktop.org |
3029 | L: dri-devel@lists.freedesktop.org |
3030 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
3031 | T: git git://anongit.freedesktop.org/drm-intel |
3032 | S: Supported |
3033 | F: drivers/gpu/drm/i915/ |
3034 | F: include/drm/i915* |
3035 | F: include/uapi/drm/i915* |
3036 | |
3037 | DRM DRIVERS FOR EXYNOS |
3038 | M: Inki Dae <inki.dae@samsung.com> |
3039 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
3040 | M: Seung-Woo Kim <sw0312.kim@samsung.com> |
3041 | M: Kyungmin Park <kyungmin.park@samsung.com> |
3042 | L: dri-devel@lists.freedesktop.org |
3043 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
3044 | S: Supported |
3045 | F: drivers/gpu/drm/exynos/ |
3046 | F: include/drm/exynos* |
3047 | F: include/uapi/drm/exynos* |
3048 | |
3049 | DRM DRIVERS FOR NVIDIA TEGRA |
3050 | M: Thierry Reding <thierry.reding@gmail.com> |
3051 | M: Terje Bergström <tbergstrom@nvidia.com> |
3052 | L: dri-devel@lists.freedesktop.org |
3053 | L: linux-tegra@vger.kernel.org |
3054 | T: git git://anongit.freedesktop.org/tegra/linux.git |
3055 | S: Supported |
3056 | F: drivers/gpu/drm/tegra/ |
3057 | F: drivers/gpu/host1x/ |
3058 | F: include/linux/host1x.h |
3059 | F: include/uapi/drm/tegra_drm.h |
3060 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
3061 | |
3062 | DSBR100 USB FM RADIO DRIVER |
3063 | M: Alexey Klimov <klimov.linux@gmail.com> |
3064 | L: linux-media@vger.kernel.org |
3065 | T: git git://linuxtv.org/media_tree.git |
3066 | S: Maintained |
3067 | F: drivers/media/radio/dsbr100.c |
3068 | |
3069 | DSCC4 DRIVER |
3070 | M: Francois Romieu <romieu@fr.zoreil.com> |
3071 | L: netdev@vger.kernel.org |
3072 | S: Maintained |
3073 | F: drivers/net/wan/dscc4.c |
3074 | |
3075 | DVB_USB_AF9015 MEDIA DRIVER |
3076 | M: Antti Palosaari <crope@iki.fi> |
3077 | L: linux-media@vger.kernel.org |
3078 | W: http://linuxtv.org/ |
3079 | W: http://palosaari.fi/linux/ |
3080 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3081 | T: git git://linuxtv.org/anttip/media_tree.git |
3082 | S: Maintained |
3083 | F: drivers/media/usb/dvb-usb-v2/af9015* |
3084 | |
3085 | DVB_USB_AF9035 MEDIA DRIVER |
3086 | M: Antti Palosaari <crope@iki.fi> |
3087 | L: linux-media@vger.kernel.org |
3088 | W: http://linuxtv.org/ |
3089 | W: http://palosaari.fi/linux/ |
3090 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3091 | T: git git://linuxtv.org/anttip/media_tree.git |
3092 | S: Maintained |
3093 | F: drivers/media/usb/dvb-usb-v2/af9035* |
3094 | |
3095 | DVB_USB_ANYSEE MEDIA DRIVER |
3096 | M: Antti Palosaari <crope@iki.fi> |
3097 | L: linux-media@vger.kernel.org |
3098 | W: http://linuxtv.org/ |
3099 | W: http://palosaari.fi/linux/ |
3100 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3101 | T: git git://linuxtv.org/anttip/media_tree.git |
3102 | S: Maintained |
3103 | F: drivers/media/usb/dvb-usb-v2/anysee* |
3104 | |
3105 | DVB_USB_AU6610 MEDIA DRIVER |
3106 | M: Antti Palosaari <crope@iki.fi> |
3107 | L: linux-media@vger.kernel.org |
3108 | W: http://linuxtv.org/ |
3109 | W: http://palosaari.fi/linux/ |
3110 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3111 | T: git git://linuxtv.org/anttip/media_tree.git |
3112 | S: Maintained |
3113 | F: drivers/media/usb/dvb-usb-v2/au6610* |
3114 | |
3115 | DVB_USB_CE6230 MEDIA DRIVER |
3116 | M: Antti Palosaari <crope@iki.fi> |
3117 | L: linux-media@vger.kernel.org |
3118 | W: http://linuxtv.org/ |
3119 | W: http://palosaari.fi/linux/ |
3120 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3121 | T: git git://linuxtv.org/anttip/media_tree.git |
3122 | S: Maintained |
3123 | F: drivers/media/usb/dvb-usb-v2/ce6230* |
3124 | |
3125 | DVB_USB_CXUSB MEDIA DRIVER |
3126 | M: Michael Krufky <mkrufky@linuxtv.org> |
3127 | L: linux-media@vger.kernel.org |
3128 | W: http://linuxtv.org/ |
3129 | W: http://github.com/mkrufky |
3130 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3131 | T: git git://linuxtv.org/media_tree.git |
3132 | S: Maintained |
3133 | F: drivers/media/usb/dvb-usb/cxusb* |
3134 | |
3135 | DVB_USB_EC168 MEDIA DRIVER |
3136 | M: Antti Palosaari <crope@iki.fi> |
3137 | L: linux-media@vger.kernel.org |
3138 | W: http://linuxtv.org/ |
3139 | W: http://palosaari.fi/linux/ |
3140 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3141 | T: git git://linuxtv.org/anttip/media_tree.git |
3142 | S: Maintained |
3143 | F: drivers/media/usb/dvb-usb-v2/ec168* |
3144 | |
3145 | DVB_USB_GL861 MEDIA DRIVER |
3146 | M: Antti Palosaari <crope@iki.fi> |
3147 | L: linux-media@vger.kernel.org |
3148 | W: http://linuxtv.org/ |
3149 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3150 | T: git git://linuxtv.org/anttip/media_tree.git |
3151 | S: Maintained |
3152 | F: drivers/media/usb/dvb-usb-v2/gl861* |
3153 | |
3154 | DVB_USB_MXL111SF MEDIA DRIVER |
3155 | M: Michael Krufky <mkrufky@linuxtv.org> |
3156 | L: linux-media@vger.kernel.org |
3157 | W: http://linuxtv.org/ |
3158 | W: http://github.com/mkrufky |
3159 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3160 | T: git git://linuxtv.org/mkrufky/mxl111sf.git |
3161 | S: Maintained |
3162 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* |
3163 | |
3164 | DVB_USB_RTL28XXU MEDIA DRIVER |
3165 | M: Antti Palosaari <crope@iki.fi> |
3166 | L: linux-media@vger.kernel.org |
3167 | W: http://linuxtv.org/ |
3168 | W: http://palosaari.fi/linux/ |
3169 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3170 | T: git git://linuxtv.org/anttip/media_tree.git |
3171 | S: Maintained |
3172 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* |
3173 | |
3174 | DVB_USB_V2 MEDIA DRIVER |
3175 | M: Antti Palosaari <crope@iki.fi> |
3176 | L: linux-media@vger.kernel.org |
3177 | W: http://linuxtv.org/ |
3178 | W: http://palosaari.fi/linux/ |
3179 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3180 | T: git git://linuxtv.org/anttip/media_tree.git |
3181 | S: Maintained |
3182 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* |
3183 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c |
3184 | |
3185 | DYNAMIC DEBUG |
3186 | M: Jason Baron <jbaron@akamai.com> |
3187 | S: Maintained |
3188 | F: lib/dynamic_debug.c |
3189 | F: include/linux/dynamic_debug.h |
3190 | |
3191 | DZ DECSTATION DZ11 SERIAL DRIVER |
3192 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
3193 | S: Maintained |
3194 | F: drivers/tty/serial/dz.* |
3195 | |
3196 | E4000 MEDIA DRIVER |
3197 | M: Antti Palosaari <crope@iki.fi> |
3198 | L: linux-media@vger.kernel.org |
3199 | W: http://linuxtv.org/ |
3200 | W: http://palosaari.fi/linux/ |
3201 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3202 | T: git git://linuxtv.org/anttip/media_tree.git |
3203 | S: Maintained |
3204 | F: drivers/media/tuners/e4000* |
3205 | |
3206 | EATA-DMA SCSI DRIVER |
3207 | M: Michael Neuffer <mike@i-Connect.Net> |
3208 | L: linux-eata@i-connect.net |
3209 | L: linux-scsi@vger.kernel.org |
3210 | S: Maintained |
3211 | F: drivers/scsi/eata* |
3212 | |
3213 | EATA ISA/EISA/PCI SCSI DRIVER |
3214 | M: Dario Ballabio <ballabio_dario@emc.com> |
3215 | L: linux-scsi@vger.kernel.org |
3216 | S: Maintained |
3217 | F: drivers/scsi/eata.c |
3218 | |
3219 | EATA-PIO SCSI DRIVER |
3220 | M: Michael Neuffer <mike@i-Connect.Net> |
3221 | L: linux-eata@i-connect.net |
3222 | L: linux-scsi@vger.kernel.org |
3223 | S: Maintained |
3224 | F: drivers/scsi/eata_pio.* |
3225 | |
3226 | EC100 MEDIA DRIVER |
3227 | M: Antti Palosaari <crope@iki.fi> |
3228 | L: linux-media@vger.kernel.org |
3229 | W: http://linuxtv.org/ |
3230 | W: http://palosaari.fi/linux/ |
3231 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3232 | T: git git://linuxtv.org/anttip/media_tree.git |
3233 | S: Maintained |
3234 | F: drivers/media/dvb-frontends/ec100* |
3235 | |
3236 | ECRYPT FILE SYSTEM |
3237 | M: Tyler Hicks <tyhicks@canonical.com> |
3238 | L: ecryptfs@vger.kernel.org |
3239 | W: http://ecryptfs.org |
3240 | W: https://launchpad.net/ecryptfs |
3241 | S: Supported |
3242 | F: Documentation/filesystems/ecryptfs.txt |
3243 | F: fs/ecryptfs/ |
3244 | |
3245 | EDAC-CORE |
3246 | M: Doug Thompson <dougthompson@xmission.com> |
3247 | M: Borislav Petkov <bp@alien8.de> |
3248 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
3249 | L: linux-edac@vger.kernel.org |
3250 | W: bluesmoke.sourceforge.net |
3251 | S: Supported |
3252 | F: Documentation/edac.txt |
3253 | F: drivers/edac/ |
3254 | F: include/linux/edac.h |
3255 | |
3256 | EDAC-AMD64 |
3257 | M: Doug Thompson <dougthompson@xmission.com> |
3258 | M: Borislav Petkov <bp@alien8.de> |
3259 | L: linux-edac@vger.kernel.org |
3260 | W: bluesmoke.sourceforge.net |
3261 | S: Maintained |
3262 | F: drivers/edac/amd64_edac* |
3263 | |
3264 | EDAC-CALXEDA |
3265 | M: Doug Thompson <dougthompson@xmission.com> |
3266 | M: Robert Richter <rric@kernel.org> |
3267 | L: linux-edac@vger.kernel.org |
3268 | W: bluesmoke.sourceforge.net |
3269 | S: Maintained |
3270 | F: drivers/edac/highbank* |
3271 | |
3272 | EDAC-CAVIUM |
3273 | M: Ralf Baechle <ralf@linux-mips.org> |
3274 | M: David Daney <david.daney@cavium.com> |
3275 | L: linux-edac@vger.kernel.org |
3276 | L: linux-mips@linux-mips.org |
3277 | W: bluesmoke.sourceforge.net |
3278 | S: Supported |
3279 | F: drivers/edac/octeon_edac* |
3280 | |
3281 | EDAC-E752X |
3282 | M: Mark Gross <mark.gross@intel.com> |
3283 | M: Doug Thompson <dougthompson@xmission.com> |
3284 | L: linux-edac@vger.kernel.org |
3285 | W: bluesmoke.sourceforge.net |
3286 | S: Maintained |
3287 | F: drivers/edac/e752x_edac.c |
3288 | |
3289 | EDAC-E7XXX |
3290 | M: Doug Thompson <dougthompson@xmission.com> |
3291 | L: linux-edac@vger.kernel.org |
3292 | W: bluesmoke.sourceforge.net |
3293 | S: Maintained |
3294 | F: drivers/edac/e7xxx_edac.c |
3295 | |
3296 | EDAC-GHES |
3297 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
3298 | L: linux-edac@vger.kernel.org |
3299 | W: bluesmoke.sourceforge.net |
3300 | S: Maintained |
3301 | F: drivers/edac/ghes_edac.c |
3302 | |
3303 | EDAC-I82443BXGX |
3304 | M: Tim Small <tim@buttersideup.com> |
3305 | L: linux-edac@vger.kernel.org |
3306 | W: bluesmoke.sourceforge.net |
3307 | S: Maintained |
3308 | F: drivers/edac/i82443bxgx_edac.c |
3309 | |
3310 | EDAC-I3000 |
3311 | M: Jason Uhlenkott <juhlenko@akamai.com> |
3312 | L: linux-edac@vger.kernel.org |
3313 | W: bluesmoke.sourceforge.net |
3314 | S: Maintained |
3315 | F: drivers/edac/i3000_edac.c |
3316 | |
3317 | EDAC-I5000 |
3318 | M: Doug Thompson <dougthompson@xmission.com> |
3319 | L: linux-edac@vger.kernel.org |
3320 | W: bluesmoke.sourceforge.net |
3321 | S: Maintained |
3322 | F: drivers/edac/i5000_edac.c |
3323 | |
3324 | EDAC-I5400 |
3325 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
3326 | L: linux-edac@vger.kernel.org |
3327 | W: bluesmoke.sourceforge.net |
3328 | S: Maintained |
3329 | F: drivers/edac/i5400_edac.c |
3330 | |
3331 | EDAC-I7300 |
3332 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
3333 | L: linux-edac@vger.kernel.org |
3334 | W: bluesmoke.sourceforge.net |
3335 | S: Maintained |
3336 | F: drivers/edac/i7300_edac.c |
3337 | |
3338 | EDAC-I7CORE |
3339 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
3340 | L: linux-edac@vger.kernel.org |
3341 | W: bluesmoke.sourceforge.net |
3342 | S: Maintained |
3343 | F: drivers/edac/i7core_edac.c |
3344 | |
3345 | EDAC-I82975X |
3346 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
3347 | M: "Arvind R." <arvino55@gmail.com> |
3348 | L: linux-edac@vger.kernel.org |
3349 | W: bluesmoke.sourceforge.net |
3350 | S: Maintained |
3351 | F: drivers/edac/i82975x_edac.c |
3352 | |
3353 | EDAC-MPC85XX |
3354 | M: Johannes Thumshirn <johannes.thumshirn@men.de> |
3355 | L: linux-edac@vger.kernel.org |
3356 | W: bluesmoke.sourceforge.net |
3357 | S: Maintained |
3358 | F: drivers/edac/mpc85xx_edac.[ch] |
3359 | |
3360 | EDAC-PASEMI |
3361 | M: Egor Martovetsky <egor@pasemi.com> |
3362 | L: linux-edac@vger.kernel.org |
3363 | W: bluesmoke.sourceforge.net |
3364 | S: Maintained |
3365 | F: drivers/edac/pasemi_edac.c |
3366 | |
3367 | EDAC-R82600 |
3368 | M: Tim Small <tim@buttersideup.com> |
3369 | L: linux-edac@vger.kernel.org |
3370 | W: bluesmoke.sourceforge.net |
3371 | S: Maintained |
3372 | F: drivers/edac/r82600_edac.c |
3373 | |
3374 | EDAC-SBRIDGE |
3375 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
3376 | L: linux-edac@vger.kernel.org |
3377 | W: bluesmoke.sourceforge.net |
3378 | S: Maintained |
3379 | F: drivers/edac/sb_edac.c |
3380 | |
3381 | EDIROL UA-101/UA-1000 DRIVER |
3382 | M: Clemens Ladisch <clemens@ladisch.de> |
3383 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3384 | T: git git://git.alsa-project.org/alsa-kernel.git |
3385 | S: Maintained |
3386 | F: sound/usb/misc/ua101.c |
3387 | |
3388 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3389 | M: Matt Fleming <matt.fleming@intel.com> |
3390 | L: linux-efi@vger.kernel.org |
3391 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
3392 | S: Maintained |
3393 | F: Documentation/x86/efi-stub.txt |
3394 | F: arch/ia64/kernel/efi.c |
3395 | F: arch/x86/boot/compressed/eboot.[ch] |
3396 | F: arch/x86/include/asm/efi.h |
3397 | F: arch/x86/platform/efi/* |
3398 | F: drivers/firmware/efi/* |
3399 | F: include/linux/efi*.h |
3400 | |
3401 | EFI VARIABLE FILESYSTEM |
3402 | M: Matthew Garrett <matthew.garrett@nebula.com> |
3403 | M: Jeremy Kerr <jk@ozlabs.org> |
3404 | M: Matt Fleming <matt.fleming@intel.com> |
3405 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
3406 | L: linux-efi@vger.kernel.org |
3407 | S: Maintained |
3408 | F: fs/efivarfs/ |
3409 | |
3410 | EFIFB FRAMEBUFFER DRIVER |
3411 | L: linux-fbdev@vger.kernel.org |
3412 | M: Peter Jones <pjones@redhat.com> |
3413 | S: Maintained |
3414 | F: drivers/video/efifb.c |
3415 | |
3416 | EFS FILESYSTEM |
3417 | W: http://aeschi.ch.eu.org/efs/ |
3418 | S: Orphan |
3419 | F: fs/efs/ |
3420 | |
3421 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
3422 | M: Hoang-Nam Nguyen <hnguyen@de.ibm.com> |
3423 | M: Christoph Raisch <raisch@de.ibm.com> |
3424 | L: linux-rdma@vger.kernel.org |
3425 | S: Supported |
3426 | F: drivers/infiniband/hw/ehca/ |
3427 | |
3428 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
3429 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
3430 | L: netdev@vger.kernel.org |
3431 | S: Maintained |
3432 | F: drivers/net/ethernet/ibm/ehea/ |
3433 | |
3434 | EM28XX VIDEO4LINUX DRIVER |
3435 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
3436 | L: linux-media@vger.kernel.org |
3437 | W: http://linuxtv.org |
3438 | T: git git://linuxtv.org/media_tree.git |
3439 | S: Maintained |
3440 | F: drivers/media/usb/em28xx/ |
3441 | |
3442 | EMBEDDED LINUX |
3443 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
3444 | M: Matt Mackall <mpm@selenic.com> |
3445 | M: David Woodhouse <dwmw2@infradead.org> |
3446 | L: linux-embedded@vger.kernel.org |
3447 | S: Maintained |
3448 | |
3449 | EMULEX LPFC FC SCSI DRIVER |
3450 | M: James Smart <james.smart@emulex.com> |
3451 | L: linux-scsi@vger.kernel.org |
3452 | W: http://sourceforge.net/projects/lpfcxxxx |
3453 | S: Supported |
3454 | F: drivers/scsi/lpfc/ |
3455 | |
3456 | ENE CB710 FLASH CARD READER DRIVER |
3457 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
3458 | S: Maintained |
3459 | F: drivers/misc/cb710/ |
3460 | F: drivers/mmc/host/cb710-mmc.* |
3461 | F: include/linux/cb710.h |
3462 | |
3463 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3464 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
3465 | S: Maintained |
3466 | F: drivers/media/rc/ene_ir.* |
3467 | |
3468 | ENHANCED ERROR HANDLING (EEH) |
3469 | M: Gavin Shan <shangw@linux.vnet.ibm.com> |
3470 | L: linuxppc-dev@lists.ozlabs.org |
3471 | S: Supported |
3472 | F: Documentation/powerpc/eeh-pci-error-recovery.txt |
3473 | F: arch/powerpc/kernel/eeh*.c |
3474 | |
3475 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
3476 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
3477 | S: Maintained |
3478 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
3479 | F: drivers/video/s1d13xxxfb.c |
3480 | F: include/video/s1d13xxxfb.h |
3481 | |
3482 | ETHERNET BRIDGE |
3483 | M: Stephen Hemminger <stephen@networkplumber.org> |
3484 | L: bridge@lists.linux-foundation.org |
3485 | L: netdev@vger.kernel.org |
3486 | W: http://www.linuxfoundation.org/en/Net:Bridge |
3487 | S: Maintained |
3488 | F: include/linux/netfilter_bridge/ |
3489 | F: net/bridge/ |
3490 | |
3491 | ETHERNET PHY LIBRARY |
3492 | M: Florian Fainelli <f.fainelli@gmail.com> |
3493 | L: netdev@vger.kernel.org |
3494 | S: Maintained |
3495 | F: include/linux/phy.h |
3496 | F: include/linux/phy_fixed.h |
3497 | F: drivers/net/phy/ |
3498 | F: Documentation/networking/phy.txt |
3499 | F: drivers/of/of_mdio.c |
3500 | F: drivers/of/of_net.c |
3501 | |
3502 | EXT2 FILE SYSTEM |
3503 | M: Jan Kara <jack@suse.cz> |
3504 | L: linux-ext4@vger.kernel.org |
3505 | S: Maintained |
3506 | F: Documentation/filesystems/ext2.txt |
3507 | F: fs/ext2/ |
3508 | F: include/linux/ext2* |
3509 | |
3510 | EXT3 FILE SYSTEM |
3511 | M: Jan Kara <jack@suse.cz> |
3512 | M: Andrew Morton <akpm@linux-foundation.org> |
3513 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
3514 | L: linux-ext4@vger.kernel.org |
3515 | S: Maintained |
3516 | F: Documentation/filesystems/ext3.txt |
3517 | F: fs/ext3/ |
3518 | |
3519 | EXT4 FILE SYSTEM |
3520 | M: "Theodore Ts'o" <tytso@mit.edu> |
3521 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
3522 | L: linux-ext4@vger.kernel.org |
3523 | W: http://ext4.wiki.kernel.org |
3524 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
3525 | S: Maintained |
3526 | F: Documentation/filesystems/ext4.txt |
3527 | F: fs/ext4/ |
3528 | |
3529 | Extended Verification Module (EVM) |
3530 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
3531 | L: linux-ima-devel@lists.sourceforge.net |
3532 | L: linux-security-module@vger.kernel.org |
3533 | S: Supported |
3534 | F: security/integrity/evm/ |
3535 | |
3536 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3537 | M: MyungJoo Ham <myungjoo.ham@samsung.com> |
3538 | M: Chanwoo Choi <cw00.choi@samsung.com> |
3539 | L: linux-kernel@vger.kernel.org |
3540 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
3541 | S: Maintained |
3542 | F: drivers/extcon/ |
3543 | F: Documentation/extcon/ |
3544 | |
3545 | EXYNOS DP DRIVER |
3546 | M: Jingoo Han <jg1.han@samsung.com> |
3547 | L: dri-devel@lists.freedesktop.org |
3548 | S: Maintained |
3549 | F: drivers/gpu/drm/exynos/exynos_dp* |
3550 | |
3551 | EXYNOS MIPI DISPLAY DRIVERS |
3552 | M: Inki Dae <inki.dae@samsung.com> |
3553 | M: Donghwa Lee <dh09.lee@samsung.com> |
3554 | M: Kyungmin Park <kyungmin.park@samsung.com> |
3555 | L: linux-fbdev@vger.kernel.org |
3556 | S: Maintained |
3557 | F: drivers/video/exynos/exynos_mipi* |
3558 | F: include/video/exynos_mipi* |
3559 | |
3560 | F71805F HARDWARE MONITORING DRIVER |
3561 | M: Jean Delvare <jdelvare@suse.de> |
3562 | L: lm-sensors@lm-sensors.org |
3563 | S: Maintained |
3564 | F: Documentation/hwmon/f71805f |
3565 | F: drivers/hwmon/f71805f.c |
3566 | |
3567 | FC0011 TUNER DRIVER |
3568 | M: Michael Buesch <m@bues.ch> |
3569 | L: linux-media@vger.kernel.org |
3570 | S: Maintained |
3571 | F: drivers/media/tuners/fc0011.h |
3572 | F: drivers/media/tuners/fc0011.c |
3573 | |
3574 | FC2580 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/tuners/fc2580* |
3583 | |
3584 | FANOTIFY |
3585 | M: Eric Paris <eparis@redhat.com> |
3586 | S: Maintained |
3587 | F: fs/notify/fanotify/ |
3588 | F: include/linux/fanotify.h |
3589 | F: include/uapi/linux/fanotify.h |
3590 | |
3591 | FARSYNC SYNCHRONOUS DRIVER |
3592 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
3593 | W: http://www.farsite.co.uk/ |
3594 | S: Supported |
3595 | F: drivers/net/wan/farsync.* |
3596 | |
3597 | FAULT INJECTION SUPPORT |
3598 | M: Akinobu Mita <akinobu.mita@gmail.com> |
3599 | S: Supported |
3600 | F: Documentation/fault-injection/ |
3601 | F: lib/fault-inject.c |
3602 | |
3603 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3604 | M: Robert Love <robert.w.love@intel.com> |
3605 | L: fcoe-devel@open-fcoe.org |
3606 | W: www.Open-FCoE.org |
3607 | S: Supported |
3608 | F: drivers/scsi/libfc/ |
3609 | F: drivers/scsi/fcoe/ |
3610 | F: include/scsi/fc/ |
3611 | F: include/scsi/libfc.h |
3612 | F: include/scsi/libfcoe.h |
3613 | F: include/uapi/scsi/fc/ |
3614 | |
3615 | FILE LOCKING (flock() and fcntl()/lockf()) |
3616 | M: Jeff Layton <jlayton@poochiereds.net> |
3617 | M: J. Bruce Fields <bfields@fieldses.org> |
3618 | L: linux-fsdevel@vger.kernel.org |
3619 | S: Maintained |
3620 | F: include/linux/fcntl.h |
3621 | F: include/linux/fs.h |
3622 | F: include/uapi/linux/fcntl.h |
3623 | F: include/uapi/linux/fs.h |
3624 | F: fs/fcntl.c |
3625 | F: fs/locks.c |
3626 | |
3627 | FILESYSTEMS (VFS and infrastructure) |
3628 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
3629 | L: linux-fsdevel@vger.kernel.org |
3630 | S: Maintained |
3631 | F: fs/* |
3632 | |
3633 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
3634 | M: Riku Voipio <riku.voipio@iki.fi> |
3635 | L: lm-sensors@lm-sensors.org |
3636 | S: Maintained |
3637 | F: drivers/hwmon/f75375s.c |
3638 | F: include/linux/f75375s.h |
3639 | |
3640 | FIREWIRE AUDIO DRIVERS |
3641 | M: Clemens Ladisch <clemens@ladisch.de> |
3642 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3643 | T: git git://git.alsa-project.org/alsa-kernel.git |
3644 | S: Maintained |
3645 | F: sound/firewire/ |
3646 | |
3647 | FIREWIRE MEDIA DRIVERS (firedtv) |
3648 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
3649 | L: linux-media@vger.kernel.org |
3650 | L: linux1394-devel@lists.sourceforge.net |
3651 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git |
3652 | S: Maintained |
3653 | F: drivers/media/firewire/ |
3654 | |
3655 | FIREWIRE SBP-2 TARGET |
3656 | M: Chris Boot <bootc@bootc.net> |
3657 | L: linux-scsi@vger.kernel.org |
3658 | L: target-devel@vger.kernel.org |
3659 | L: linux1394-devel@lists.sourceforge.net |
3660 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master |
3661 | S: Maintained |
3662 | F: drivers/target/sbp/ |
3663 | |
3664 | FIREWIRE SUBSYSTEM |
3665 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
3666 | L: linux1394-devel@lists.sourceforge.net |
3667 | W: http://ieee1394.wiki.kernel.org/ |
3668 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
3669 | S: Maintained |
3670 | F: drivers/firewire/ |
3671 | F: include/linux/firewire.h |
3672 | F: include/uapi/linux/firewire*.h |
3673 | F: tools/firewire/ |
3674 | |
3675 | FIRMWARE LOADER (request_firmware) |
3676 | M: Ming Lei <ming.lei@canonical.com> |
3677 | L: linux-kernel@vger.kernel.org |
3678 | S: Maintained |
3679 | F: Documentation/firmware_class/ |
3680 | F: drivers/base/firmware*.c |
3681 | F: include/linux/firmware.h |
3682 | |
3683 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
3684 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
3685 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> |
3686 | S: Maintained |
3687 | F: drivers/block/rsxx/ |
3688 | |
3689 | FLOPPY DRIVER |
3690 | M: Jiri Kosina <jkosina@suse.cz> |
3691 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git |
3692 | S: Odd fixes |
3693 | F: drivers/block/floppy.c |
3694 | |
3695 | FMC SUBSYSTEM |
3696 | M: Alessandro Rubini <rubini@gnudd.com> |
3697 | W: http://www.ohwr.org/projects/fmc-bus |
3698 | S: Supported |
3699 | F: drivers/fmc/ |
3700 | F: include/linux/fmc*.h |
3701 | F: include/linux/ipmi-fru.h |
3702 | K: fmc_d.*register |
3703 | |
3704 | FPU EMULATOR |
3705 | M: Bill Metzenthen <billm@melbpc.org.au> |
3706 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
3707 | S: Maintained |
3708 | F: arch/x86/math-emu/ |
3709 | |
3710 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) |
3711 | L: netdev@vger.kernel.org |
3712 | S: Orphan |
3713 | F: drivers/net/wan/dlci.c |
3714 | F: drivers/net/wan/sdla.c |
3715 | |
3716 | FRAMEBUFFER LAYER |
3717 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
3718 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
3719 | L: linux-fbdev@vger.kernel.org |
3720 | W: http://linux-fbdev.sourceforge.net/ |
3721 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
3722 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
3723 | S: Maintained |
3724 | F: Documentation/fb/ |
3725 | F: Documentation/devicetree/bindings/fb/ |
3726 | F: drivers/video/ |
3727 | F: include/video/ |
3728 | F: include/linux/fb.h |
3729 | F: include/uapi/video/ |
3730 | F: include/uapi/linux/fb.h |
3731 | |
3732 | FREESCALE DIU FRAMEBUFFER DRIVER |
3733 | M: Timur Tabi <timur@tabi.org> |
3734 | L: linux-fbdev@vger.kernel.org |
3735 | S: Maintained |
3736 | F: drivers/video/fsl-diu-fb.* |
3737 | |
3738 | FREESCALE DMA DRIVER |
3739 | M: Li Yang <leoli@freescale.com> |
3740 | M: Zhang Wei <zw@zh-kernel.org> |
3741 | L: linuxppc-dev@lists.ozlabs.org |
3742 | S: Maintained |
3743 | F: drivers/dma/fsldma.* |
3744 | |
3745 | FREESCALE I2C CPM DRIVER |
3746 | M: Jochen Friedrich <jochen@scram.de> |
3747 | L: linuxppc-dev@lists.ozlabs.org |
3748 | L: linux-i2c@vger.kernel.org |
3749 | S: Maintained |
3750 | F: drivers/i2c/busses/i2c-cpm.c |
3751 | |
3752 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
3753 | M: Sascha Hauer <kernel@pengutronix.de> |
3754 | L: linux-fbdev@vger.kernel.org |
3755 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3756 | S: Maintained |
3757 | F: include/linux/platform_data/video-imxfb.h |
3758 | F: drivers/video/imxfb.c |
3759 | |
3760 | FREESCALE SOC FS_ENET DRIVER |
3761 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
3762 | M: Vitaly Bordug <vbordug@ru.mvista.com> |
3763 | L: linuxppc-dev@lists.ozlabs.org |
3764 | L: netdev@vger.kernel.org |
3765 | S: Maintained |
3766 | F: drivers/net/ethernet/freescale/fs_enet/ |
3767 | F: include/linux/fs_enet_pd.h |
3768 | |
3769 | FREESCALE QUICC ENGINE LIBRARY |
3770 | L: linuxppc-dev@lists.ozlabs.org |
3771 | S: Orphan |
3772 | F: arch/powerpc/sysdev/qe_lib/ |
3773 | F: arch/powerpc/include/asm/*qe.h |
3774 | |
3775 | FREESCALE USB PERIPHERAL DRIVERS |
3776 | M: Li Yang <leoli@freescale.com> |
3777 | L: linux-usb@vger.kernel.org |
3778 | L: linuxppc-dev@lists.ozlabs.org |
3779 | S: Maintained |
3780 | F: drivers/usb/gadget/fsl* |
3781 | |
3782 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
3783 | M: Li Yang <leoli@freescale.com> |
3784 | L: netdev@vger.kernel.org |
3785 | L: linuxppc-dev@lists.ozlabs.org |
3786 | S: Maintained |
3787 | F: drivers/net/ethernet/freescale/ucc_geth* |
3788 | |
3789 | FREESCALE QUICC ENGINE UCC UART DRIVER |
3790 | M: Timur Tabi <timur@tabi.org> |
3791 | L: linuxppc-dev@lists.ozlabs.org |
3792 | S: Maintained |
3793 | F: drivers/tty/serial/ucc_uart.c |
3794 | |
3795 | FREESCALE SOC SOUND DRIVERS |
3796 | M: Timur Tabi <timur@tabi.org> |
3797 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3798 | L: linuxppc-dev@lists.ozlabs.org |
3799 | S: Maintained |
3800 | F: sound/soc/fsl/fsl* |
3801 | F: sound/soc/fsl/mpc8610_hpcd.c |
3802 | |
3803 | FREEVXFS FILESYSTEM |
3804 | M: Christoph Hellwig <hch@infradead.org> |
3805 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3806 | S: Maintained |
3807 | F: fs/freevxfs/ |
3808 | |
3809 | FREEZER |
3810 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
3811 | M: Pavel Machek <pavel@ucw.cz> |
3812 | L: linux-pm@vger.kernel.org |
3813 | S: Supported |
3814 | F: Documentation/power/freezing-of-tasks.txt |
3815 | F: include/linux/freezer.h |
3816 | F: kernel/freezer.c |
3817 | |
3818 | FRONTSWAP API |
3819 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
3820 | L: linux-kernel@vger.kernel.org |
3821 | S: Maintained |
3822 | F: mm/frontswap.c |
3823 | F: include/linux/frontswap.h |
3824 | |
3825 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
3826 | M: David Howells <dhowells@redhat.com> |
3827 | L: linux-cachefs@redhat.com |
3828 | S: Supported |
3829 | F: Documentation/filesystems/caching/ |
3830 | F: fs/fscache/ |
3831 | F: include/linux/fscache*.h |
3832 | |
3833 | F2FS FILE SYSTEM |
3834 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
3835 | M: Changman Lee <cm224.lee@samsung.com> |
3836 | L: linux-f2fs-devel@lists.sourceforge.net |
3837 | W: http://en.wikipedia.org/wiki/F2FS |
3838 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git |
3839 | S: Maintained |
3840 | F: Documentation/filesystems/f2fs.txt |
3841 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
3842 | F: fs/f2fs/ |
3843 | F: include/linux/f2fs_fs.h |
3844 | |
3845 | FUJITSU FR-V (FRV) PORT |
3846 | M: David Howells <dhowells@redhat.com> |
3847 | S: Maintained |
3848 | F: arch/frv/ |
3849 | |
3850 | FUJITSU LAPTOP EXTRAS |
3851 | M: Jonathan Woithe <jwoithe@just42.net> |
3852 | L: platform-driver-x86@vger.kernel.org |
3853 | S: Maintained |
3854 | F: drivers/platform/x86/fujitsu-laptop.c |
3855 | |
3856 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3857 | M: Kyungmin Park <kyungmin.park@samsung.com> |
3858 | M: Heungjun Kim <riverful.kim@samsung.com> |
3859 | L: linux-media@vger.kernel.org |
3860 | S: Maintained |
3861 | F: drivers/media/i2c/m5mols/ |
3862 | F: include/media/m5mols.h |
3863 | |
3864 | FUJITSU TABLET EXTRAS |
3865 | M: Robert Gerlach <khnz@gmx.de> |
3866 | L: platform-driver-x86@vger.kernel.org |
3867 | S: Maintained |
3868 | F: drivers/platform/x86/fujitsu-tablet.c |
3869 | |
3870 | FUSE: FILESYSTEM IN USERSPACE |
3871 | M: Miklos Szeredi <miklos@szeredi.hu> |
3872 | L: fuse-devel@lists.sourceforge.net |
3873 | W: http://fuse.sourceforge.net/ |
3874 | S: Maintained |
3875 | F: fs/fuse/ |
3876 | F: include/uapi/linux/fuse.h |
3877 | |
3878 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
3879 | M: Rik Faith <faith@cs.unc.edu> |
3880 | L: linux-scsi@vger.kernel.org |
3881 | S: Odd Fixes (e.g., new signatures) |
3882 | F: drivers/scsi/fdomain.* |
3883 | |
3884 | GCOV BASED KERNEL PROFILING |
3885 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> |
3886 | S: Maintained |
3887 | F: kernel/gcov/ |
3888 | F: Documentation/gcov.txt |
3889 | |
3890 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
3891 | M: Achim Leubner <achim_leubner@adaptec.com> |
3892 | L: linux-scsi@vger.kernel.org |
3893 | W: http://www.icp-vortex.com/ |
3894 | S: Supported |
3895 | F: drivers/scsi/gdt* |
3896 | |
3897 | GEMTEK FM RADIO RECEIVER DRIVER |
3898 | M: Hans Verkuil <hverkuil@xs4all.nl> |
3899 | L: linux-media@vger.kernel.org |
3900 | T: git git://linuxtv.org/media_tree.git |
3901 | W: http://linuxtv.org |
3902 | S: Maintained |
3903 | F: drivers/media/radio/radio-gemtek* |
3904 | |
3905 | GENERIC GPIO I2C DRIVER |
3906 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
3907 | S: Supported |
3908 | F: drivers/i2c/busses/i2c-gpio.c |
3909 | F: include/linux/i2c-gpio.h |
3910 | |
3911 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3912 | M: Peter Korsgaard <peter.korsgaard@barco.com> |
3913 | L: linux-i2c@vger.kernel.org |
3914 | S: Supported |
3915 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3916 | F: include/linux/i2c-mux-gpio.h |
3917 | F: Documentation/i2c/muxes/i2c-mux-gpio |
3918 | |
3919 | GENERIC HDLC (WAN) DRIVERS |
3920 | M: Krzysztof Halasa <khc@pm.waw.pl> |
3921 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3922 | S: Maintained |
3923 | F: drivers/net/wan/c101.c |
3924 | F: drivers/net/wan/hd6457* |
3925 | F: drivers/net/wan/hdlc* |
3926 | F: drivers/net/wan/n2.c |
3927 | F: drivers/net/wan/pc300too.c |
3928 | F: drivers/net/wan/pci200syn.c |
3929 | F: drivers/net/wan/wanxl* |
3930 | |
3931 | GENERIC INCLUDE/ASM HEADER FILES |
3932 | M: Arnd Bergmann <arnd@arndb.de> |
3933 | L: linux-arch@vger.kernel.org |
3934 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git |
3935 | S: Maintained |
3936 | F: include/asm-generic/ |
3937 | F: include/uapi/asm-generic/ |
3938 | |
3939 | GENERIC PHY FRAMEWORK |
3940 | M: Kishon Vijay Abraham I <kishon@ti.com> |
3941 | L: linux-kernel@vger.kernel.org |
3942 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git |
3943 | S: Supported |
3944 | F: drivers/phy/ |
3945 | F: include/linux/phy/ |
3946 | |
3947 | GENERIC UIO DRIVER FOR PCI DEVICES |
3948 | M: "Michael S. Tsirkin" <mst@redhat.com> |
3949 | L: kvm@vger.kernel.org |
3950 | S: Supported |
3951 | F: drivers/uio/uio_pci_generic.c |
3952 | |
3953 | GET_MAINTAINER SCRIPT |
3954 | M: Joe Perches <joe@perches.com> |
3955 | S: Maintained |
3956 | F: scripts/get_maintainer.pl |
3957 | |
3958 | GFS2 FILE SYSTEM |
3959 | M: Steven Whitehouse <swhiteho@redhat.com> |
3960 | L: cluster-devel@redhat.com |
3961 | W: http://sources.redhat.com/cluster/ |
3962 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
3963 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git |
3964 | S: Supported |
3965 | F: Documentation/filesystems/gfs2*.txt |
3966 | F: fs/gfs2/ |
3967 | F: include/uapi/linux/gfs2_ondisk.h |
3968 | |
3969 | GIGASET ISDN DRIVERS |
3970 | M: Hansjoerg Lipp <hjlipp@web.de> |
3971 | M: Tilman Schmidt <tilman@imap.cc> |
3972 | L: gigaset307x-common@lists.sourceforge.net |
3973 | W: http://gigaset307x.sourceforge.net/ |
3974 | S: Maintained |
3975 | F: Documentation/isdn/README.gigaset |
3976 | F: drivers/isdn/gigaset/ |
3977 | F: include/uapi/linux/gigaset_dev.h |
3978 | |
3979 | GPIO SUBSYSTEM |
3980 | M: Linus Walleij <linus.walleij@linaro.org> |
3981 | M: Alexandre Courbot <gnurou@gmail.com> |
3982 | L: linux-gpio@vger.kernel.org |
3983 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
3984 | S: Maintained |
3985 | F: Documentation/gpio/ |
3986 | F: drivers/gpio/ |
3987 | F: include/linux/gpio* |
3988 | F: include/asm-generic/gpio.h |
3989 | |
3990 | GRE DEMULTIPLEXER DRIVER |
3991 | M: Dmitry Kozlov <xeb@mail.ru> |
3992 | L: netdev@vger.kernel.org |
3993 | S: Maintained |
3994 | F: net/ipv4/gre_demux.c |
3995 | F: net/ipv4/gre_offload.c |
3996 | F: include/net/gre.h |
3997 | |
3998 | GRETH 10/100/1G Ethernet MAC device driver |
3999 | M: Kristoffer Glembo <kristoffer@gaisler.com> |
4000 | L: netdev@vger.kernel.org |
4001 | S: Maintained |
4002 | F: drivers/net/ethernet/aeroflex/ |
4003 | |
4004 | GSPCA FINEPIX SUBDRIVER |
4005 | M: Frank Zago <frank@zago.net> |
4006 | L: linux-media@vger.kernel.org |
4007 | T: git git://linuxtv.org/media_tree.git |
4008 | S: Maintained |
4009 | F: drivers/media/usb/gspca/finepix.c |
4010 | |
4011 | GSPCA GL860 SUBDRIVER |
4012 | M: Olivier Lorin <o.lorin@laposte.net> |
4013 | L: linux-media@vger.kernel.org |
4014 | T: git git://linuxtv.org/media_tree.git |
4015 | S: Maintained |
4016 | F: drivers/media/usb/gspca/gl860/ |
4017 | |
4018 | GSPCA M5602 SUBDRIVER |
4019 | M: Erik Andren <erik.andren@gmail.com> |
4020 | L: linux-media@vger.kernel.org |
4021 | T: git git://linuxtv.org/media_tree.git |
4022 | S: Maintained |
4023 | F: drivers/media/usb/gspca/m5602/ |
4024 | |
4025 | GSPCA PAC207 SONIXB SUBDRIVER |
4026 | M: Hans de Goede <hdegoede@redhat.com> |
4027 | L: linux-media@vger.kernel.org |
4028 | T: git git://linuxtv.org/media_tree.git |
4029 | S: Maintained |
4030 | F: drivers/media/usb/gspca/pac207.c |
4031 | |
4032 | GSPCA SN9C20X SUBDRIVER |
4033 | M: Brian Johnson <brijohn@gmail.com> |
4034 | L: linux-media@vger.kernel.org |
4035 | T: git git://linuxtv.org/media_tree.git |
4036 | S: Maintained |
4037 | F: drivers/media/usb/gspca/sn9c20x.c |
4038 | |
4039 | GSPCA T613 SUBDRIVER |
4040 | M: Leandro Costantino <lcostantino@gmail.com> |
4041 | L: linux-media@vger.kernel.org |
4042 | T: git git://linuxtv.org/media_tree.git |
4043 | S: Maintained |
4044 | F: drivers/media/usb/gspca/t613.c |
4045 | |
4046 | GSPCA USB WEBCAM DRIVER |
4047 | M: Hans de Goede <hdegoede@redhat.com> |
4048 | L: linux-media@vger.kernel.org |
4049 | T: git git://linuxtv.org/media_tree.git |
4050 | S: Maintained |
4051 | F: drivers/media/usb/gspca/ |
4052 | |
4053 | GUID PARTITION TABLE (GPT) |
4054 | M: Davidlohr Bueso <davidlohr@hp.com> |
4055 | L: linux-efi@vger.kernel.org |
4056 | S: Maintained |
4057 | F: block/partitions/efi.* |
4058 | |
4059 | STK1160 USB VIDEO CAPTURE DRIVER |
4060 | M: Ezequiel Garcia <elezegarcia@gmail.com> |
4061 | L: linux-media@vger.kernel.org |
4062 | T: git git://linuxtv.org/media_tree.git |
4063 | S: Maintained |
4064 | F: drivers/media/usb/stk1160/ |
4065 | |
4066 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
4067 | M: Frank Seidel <frank@f-seidel.de> |
4068 | L: platform-driver-x86@vger.kernel.org |
4069 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ |
4070 | S: Maintained |
4071 | F: drivers/platform/x86/hdaps.c |
4072 | |
4073 | HDPVR USB VIDEO ENCODER DRIVER |
4074 | M: Hans Verkuil <hverkuil@xs4all.nl> |
4075 | L: linux-media@vger.kernel.org |
4076 | T: git git://linuxtv.org/media_tree.git |
4077 | W: http://linuxtv.org |
4078 | S: Odd Fixes |
4079 | F: drivers/media/usb/hdpvr/ |
4080 | |
4081 | HWPOISON MEMORY FAILURE HANDLING |
4082 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
4083 | L: linux-mm@kvack.org |
4084 | S: Maintained |
4085 | F: mm/memory-failure.c |
4086 | F: mm/hwpoison-inject.c |
4087 | |
4088 | HYPERVISOR VIRTUAL CONSOLE DRIVER |
4089 | L: linuxppc-dev@lists.ozlabs.org |
4090 | S: Odd Fixes |
4091 | F: drivers/tty/hvc/ |
4092 | |
4093 | HARDWARE MONITORING |
4094 | M: Jean Delvare <jdelvare@suse.de> |
4095 | M: Guenter Roeck <linux@roeck-us.net> |
4096 | L: lm-sensors@lm-sensors.org |
4097 | W: http://www.lm-sensors.org/ |
4098 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
4099 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
4100 | S: Maintained |
4101 | F: Documentation/hwmon/ |
4102 | F: drivers/hwmon/ |
4103 | F: include/linux/hwmon*.h |
4104 | |
4105 | HARDWARE RANDOM NUMBER GENERATOR CORE |
4106 | M: Matt Mackall <mpm@selenic.com> |
4107 | M: Herbert Xu <herbert@gondor.apana.org.au> |
4108 | S: Odd fixes |
4109 | F: Documentation/hw_random.txt |
4110 | F: drivers/char/hw_random/ |
4111 | F: include/linux/hw_random.h |
4112 | |
4113 | HARDWARE SPINLOCK CORE |
4114 | M: Ohad Ben-Cohen <ohad@wizery.com> |
4115 | S: Maintained |
4116 | F: Documentation/hwspinlock.txt |
4117 | F: drivers/hwspinlock/hwspinlock_* |
4118 | F: include/linux/hwspinlock.h |
4119 | |
4120 | HARMONY SOUND DRIVER |
4121 | L: linux-parisc@vger.kernel.org |
4122 | S: Maintained |
4123 | F: sound/parisc/harmony.* |
4124 | |
4125 | HD29L2 MEDIA DRIVER |
4126 | M: Antti Palosaari <crope@iki.fi> |
4127 | L: linux-media@vger.kernel.org |
4128 | W: http://linuxtv.org/ |
4129 | W: http://palosaari.fi/linux/ |
4130 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
4131 | T: git git://linuxtv.org/anttip/media_tree.git |
4132 | S: Maintained |
4133 | F: drivers/media/dvb-frontends/hd29l2* |
4134 | |
4135 | HEWLETT-PACKARD SMART2 RAID DRIVER |
4136 | M: Chirag Kantharia <chirag.kantharia@hp.com> |
4137 | L: iss_storagedev@hp.com |
4138 | S: Maintained |
4139 | F: Documentation/blockdev/cpqarray.txt |
4140 | F: drivers/block/cpqarray.* |
4141 | |
4142 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
4143 | M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com> |
4144 | L: iss_storagedev@hp.com |
4145 | S: Supported |
4146 | F: Documentation/scsi/hpsa.txt |
4147 | F: drivers/scsi/hpsa*.[ch] |
4148 | F: include/linux/cciss*.h |
4149 | F: include/uapi/linux/cciss*.h |
4150 | |
4151 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
4152 | M: Mike Miller <mike.miller@hp.com> |
4153 | L: iss_storagedev@hp.com |
4154 | S: Supported |
4155 | F: Documentation/blockdev/cciss.txt |
4156 | F: drivers/block/cciss* |
4157 | F: include/linux/cciss_ioctl.h |
4158 | F: include/uapi/linux/cciss_ioctl.h |
4159 | |
4160 | HFS FILESYSTEM |
4161 | L: linux-fsdevel@vger.kernel.org |
4162 | S: Orphan |
4163 | F: Documentation/filesystems/hfs.txt |
4164 | F: fs/hfs/ |
4165 | |
4166 | HFSPLUS FILESYSTEM |
4167 | L: linux-fsdevel@vger.kernel.org |
4168 | S: Orphan |
4169 | F: Documentation/filesystems/hfsplus.txt |
4170 | F: fs/hfsplus/ |
4171 | |
4172 | HGA FRAMEBUFFER DRIVER |
4173 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
4174 | L: linux-nvidia@lists.surfsouth.com |
4175 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml |
4176 | S: Maintained |
4177 | F: drivers/video/hgafb.c |
4178 | |
4179 | HIBERNATION (aka Software Suspend, aka swsusp) |
4180 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
4181 | M: Pavel Machek <pavel@ucw.cz> |
4182 | L: linux-pm@vger.kernel.org |
4183 | S: Supported |
4184 | F: arch/x86/power/ |
4185 | F: drivers/base/power/ |
4186 | F: kernel/power/ |
4187 | F: include/linux/suspend.h |
4188 | F: include/linux/freezer.h |
4189 | F: include/linux/pm.h |
4190 | F: arch/*/include/asm/suspend*.h |
4191 | |
4192 | HID CORE LAYER |
4193 | M: Jiri Kosina <jkosina@suse.cz> |
4194 | L: linux-input@vger.kernel.org |
4195 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4196 | S: Maintained |
4197 | F: drivers/hid/ |
4198 | F: include/linux/hid* |
4199 | F: include/uapi/linux/hid* |
4200 | |
4201 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
4202 | M: Thomas Gleixner <tglx@linutronix.de> |
4203 | L: linux-kernel@vger.kernel.org |
4204 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
4205 | S: Maintained |
4206 | F: Documentation/timers/ |
4207 | F: kernel/hrtimer.c |
4208 | F: kernel/time/clockevents.c |
4209 | F: kernel/time/tick*.* |
4210 | F: kernel/time/timer_*.c |
4211 | F: include/linux/clockchips.h |
4212 | F: include/linux/hrtimer.h |
4213 | |
4214 | HIGH-SPEED SCC DRIVER FOR AX.25 |
4215 | L: linux-hams@vger.kernel.org |
4216 | S: Orphan |
4217 | F: drivers/net/hamradio/dmascc.c |
4218 | F: drivers/net/hamradio/scc.c |
4219 | |
4220 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
4221 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
4222 | W: http://www.highpoint-tech.com |
4223 | S: Supported |
4224 | F: Documentation/scsi/hptiop.txt |
4225 | F: drivers/scsi/hptiop.c |
4226 | |
4227 | HIPPI |
4228 | M: Jes Sorensen <jes@trained-monkey.org> |
4229 | L: linux-hippi@sunsite.dk |
4230 | S: Maintained |
4231 | F: include/linux/hippidevice.h |
4232 | F: include/uapi/linux/if_hippi.h |
4233 | F: net/802/hippi.c |
4234 | F: drivers/net/hippi/ |
4235 | |
4236 | HOST AP DRIVER |
4237 | M: Jouni Malinen <j@w1.fi> |
4238 | L: hostap@shmoo.com (subscribers-only) |
4239 | L: linux-wireless@vger.kernel.org |
4240 | W: http://hostap.epitest.fi/ |
4241 | S: Maintained |
4242 | F: drivers/net/wireless/hostap/ |
4243 | |
4244 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
4245 | L: platform-driver-x86@vger.kernel.org |
4246 | S: Orphan |
4247 | F: drivers/platform/x86/tc1100-wmi.c |
4248 | |
4249 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
4250 | M: Jaroslav Kysela <perex@perex.cz> |
4251 | S: Maintained |
4252 | F: drivers/net/ethernet/hp/hp100.* |
4253 | |
4254 | HPET: High Precision Event Timers driver |
4255 | M: Clemens Ladisch <clemens@ladisch.de> |
4256 | S: Maintained |
4257 | F: Documentation/timers/hpet.txt |
4258 | F: drivers/char/hpet.c |
4259 | F: include/linux/hpet.h |
4260 | F: include/uapi/linux/hpet.h |
4261 | |
4262 | HPET: x86 |
4263 | S: Orphan |
4264 | F: arch/x86/kernel/hpet.c |
4265 | F: arch/x86/include/asm/hpet.h |
4266 | |
4267 | HPFS FILESYSTEM |
4268 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
4269 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
4270 | S: Maintained |
4271 | F: fs/hpfs/ |
4272 | |
4273 | HSI SUBSYSTEM |
4274 | M: Sebastian Reichel <sre@kernel.org> |
4275 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git |
4276 | S: Maintained |
4277 | F: Documentation/ABI/testing/sysfs-bus-hsi |
4278 | F: Documentation/hsi.txt |
4279 | F: drivers/hsi/ |
4280 | F: include/linux/hsi/ |
4281 | F: include/uapi/linux/hsi/ |
4282 | |
4283 | HSO 3G MODEM DRIVER |
4284 | M: Jan Dumon <j.dumon@option.com> |
4285 | W: http://www.pharscape.org |
4286 | S: Maintained |
4287 | F: drivers/net/usb/hso.c |
4288 | |
4289 | HSR NETWORK PROTOCOL |
4290 | M: Arvid Brodin <arvid.brodin@alten.se> |
4291 | L: netdev@vger.kernel.org |
4292 | S: Maintained |
4293 | F: net/hsr/ |
4294 | |
4295 | HTCPEN TOUCHSCREEN DRIVER |
4296 | M: Pau Oliva Fora <pof@eslack.org> |
4297 | L: linux-input@vger.kernel.org |
4298 | S: Maintained |
4299 | F: drivers/input/touchscreen/htcpen.c |
4300 | |
4301 | HUGETLB FILESYSTEM |
4302 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
4303 | S: Maintained |
4304 | F: fs/hugetlbfs/ |
4305 | |
4306 | Hyper-V CORE AND DRIVERS |
4307 | M: K. Y. Srinivasan <kys@microsoft.com> |
4308 | M: Haiyang Zhang <haiyangz@microsoft.com> |
4309 | L: devel@linuxdriverproject.org |
4310 | S: Maintained |
4311 | F: arch/x86/include/asm/mshyperv.h |
4312 | F: arch/x86/include/uapi/asm/hyperv.h |
4313 | F: arch/x86/kernel/cpu/mshyperv.c |
4314 | F: drivers/hid/hid-hyperv.c |
4315 | F: drivers/hv/ |
4316 | F: drivers/input/serio/hyperv-keyboard.c |
4317 | F: drivers/net/hyperv/ |
4318 | F: drivers/scsi/storvsc_drv.c |
4319 | F: drivers/video/hyperv_fb.c |
4320 | F: include/linux/hyperv.h |
4321 | F: tools/hv/ |
4322 | |
4323 | I2C OVER PARALLEL PORT |
4324 | M: Jean Delvare <jdelvare@suse.de> |
4325 | L: linux-i2c@vger.kernel.org |
4326 | S: Maintained |
4327 | F: Documentation/i2c/busses/i2c-parport |
4328 | F: Documentation/i2c/busses/i2c-parport-light |
4329 | F: drivers/i2c/busses/i2c-parport.c |
4330 | F: drivers/i2c/busses/i2c-parport-light.c |
4331 | |
4332 | I2C/SMBUS CONTROLLER DRIVERS FOR PC |
4333 | M: Jean Delvare <jdelvare@suse.de> |
4334 | L: linux-i2c@vger.kernel.org |
4335 | S: Maintained |
4336 | F: Documentation/i2c/busses/i2c-ali1535 |
4337 | F: Documentation/i2c/busses/i2c-ali1563 |
4338 | F: Documentation/i2c/busses/i2c-ali15x3 |
4339 | F: Documentation/i2c/busses/i2c-amd756 |
4340 | F: Documentation/i2c/busses/i2c-amd8111 |
4341 | F: Documentation/i2c/busses/i2c-i801 |
4342 | F: Documentation/i2c/busses/i2c-nforce2 |
4343 | F: Documentation/i2c/busses/i2c-piix4 |
4344 | F: Documentation/i2c/busses/i2c-sis5595 |
4345 | F: Documentation/i2c/busses/i2c-sis630 |
4346 | F: Documentation/i2c/busses/i2c-sis96x |
4347 | F: Documentation/i2c/busses/i2c-via |
4348 | F: Documentation/i2c/busses/i2c-viapro |
4349 | F: drivers/i2c/busses/i2c-ali1535.c |
4350 | F: drivers/i2c/busses/i2c-ali1563.c |
4351 | F: drivers/i2c/busses/i2c-ali15x3.c |
4352 | F: drivers/i2c/busses/i2c-amd756.c |
4353 | F: drivers/i2c/busses/i2c-amd756-s4882.c |
4354 | F: drivers/i2c/busses/i2c-amd8111.c |
4355 | F: drivers/i2c/busses/i2c-i801.c |
4356 | F: drivers/i2c/busses/i2c-isch.c |
4357 | F: drivers/i2c/busses/i2c-nforce2.c |
4358 | F: drivers/i2c/busses/i2c-nforce2-s4985.c |
4359 | F: drivers/i2c/busses/i2c-piix4.c |
4360 | F: drivers/i2c/busses/i2c-sis5595.c |
4361 | F: drivers/i2c/busses/i2c-sis630.c |
4362 | F: drivers/i2c/busses/i2c-sis96x.c |
4363 | F: drivers/i2c/busses/i2c-via.c |
4364 | F: drivers/i2c/busses/i2c-viapro.c |
4365 | |
4366 | I2C/SMBUS ISMT DRIVER |
4367 | M: Seth Heasley <seth.heasley@intel.com> |
4368 | M: Neil Horman <nhorman@tuxdriver.com> |
4369 | L: linux-i2c@vger.kernel.org |
4370 | F: drivers/i2c/busses/i2c-ismt.c |
4371 | F: Documentation/i2c/busses/i2c-ismt |
4372 | |
4373 | I2C/SMBUS STUB DRIVER |
4374 | M: Jean Delvare <jdelvare@suse.de> |
4375 | L: linux-i2c@vger.kernel.org |
4376 | S: Maintained |
4377 | F: drivers/i2c/i2c-stub.c |
4378 | |
4379 | I2C SUBSYSTEM |
4380 | M: Wolfram Sang <wsa@the-dreams.de> |
4381 | L: linux-i2c@vger.kernel.org |
4382 | W: https://i2c.wiki.kernel.org/ |
4383 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ |
4384 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
4385 | S: Maintained |
4386 | F: Documentation/i2c/ |
4387 | F: drivers/i2c/ |
4388 | F: include/linux/i2c.h |
4389 | F: include/linux/i2c-*.h |
4390 | F: include/uapi/linux/i2c.h |
4391 | F: include/uapi/linux/i2c-*.h |
4392 | |
4393 | I2C-TAOS-EVM DRIVER |
4394 | M: Jean Delvare <jdelvare@suse.de> |
4395 | L: linux-i2c@vger.kernel.org |
4396 | S: Maintained |
4397 | F: Documentation/i2c/busses/i2c-taos-evm |
4398 | F: drivers/i2c/busses/i2c-taos-evm.c |
4399 | |
4400 | I2C-TINY-USB DRIVER |
4401 | M: Till Harbaum <till@harbaum.org> |
4402 | L: linux-i2c@vger.kernel.org |
4403 | W: http://www.harbaum.org/till/i2c_tiny_usb |
4404 | S: Maintained |
4405 | F: drivers/i2c/busses/i2c-tiny-usb.c |
4406 | |
4407 | i386 BOOT CODE |
4408 | M: "H. Peter Anvin" <hpa@zytor.com> |
4409 | S: Maintained |
4410 | F: arch/x86/boot/ |
4411 | |
4412 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS |
4413 | M: "H. Peter Anvin" <hpa@zytor.com> |
4414 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
4415 | S: Maintained |
4416 | |
4417 | IA64 (Itanium) PLATFORM |
4418 | M: Tony Luck <tony.luck@intel.com> |
4419 | M: Fenghua Yu <fenghua.yu@intel.com> |
4420 | L: linux-ia64@vger.kernel.org |
4421 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
4422 | S: Maintained |
4423 | F: arch/ia64/ |
4424 | |
4425 | IBM Power in-Nest Crypto Acceleration |
4426 | M: Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com> |
4427 | M: Fionnuala Gunter <fin@linux.vnet.ibm.com> |
4428 | L: linux-crypto@vger.kernel.org |
4429 | S: Supported |
4430 | F: drivers/crypto/nx/ |
4431 | |
4432 | IBM Power 842 compression accelerator |
4433 | M: Nathan Fontenot <nfont@linux.vnet.ibm.com> |
4434 | S: Supported |
4435 | F: drivers/crypto/nx/nx-842.c |
4436 | F: include/linux/nx842.h |
4437 | |
4438 | IBM Power Linux RAID adapter |
4439 | M: Brian King <brking@us.ibm.com> |
4440 | S: Supported |
4441 | F: drivers/scsi/ipr.* |
4442 | |
4443 | IBM Power Virtual Ethernet Device Driver |
4444 | M: Santiago Leon <santil@linux.vnet.ibm.com> |
4445 | L: netdev@vger.kernel.org |
4446 | S: Supported |
4447 | F: drivers/net/ethernet/ibm/ibmveth.* |
4448 | |
4449 | IBM Power Virtual SCSI Device Drivers |
4450 | M: Nathan Fontenot <nfont@linux.vnet.ibm.com> |
4451 | L: linux-scsi@vger.kernel.org |
4452 | S: Supported |
4453 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
4454 | F: drivers/scsi/ibmvscsi/viosrp.h |
4455 | |
4456 | IBM Power Virtual FC Device Drivers |
4457 | M: Brian King <brking@linux.vnet.ibm.com> |
4458 | L: linux-scsi@vger.kernel.org |
4459 | S: Supported |
4460 | F: drivers/scsi/ibmvscsi/ibmvfc* |
4461 | |
4462 | IBM ServeRAID RAID DRIVER |
4463 | P: Jack Hammer |
4464 | M: Dave Jeffery <ipslinux@adaptec.com> |
4465 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
4466 | S: Supported |
4467 | F: drivers/scsi/ips.* |
4468 | |
4469 | ICH LPC AND GPIO DRIVER |
4470 | M: Peter Tyser <ptyser@xes-inc.com> |
4471 | S: Maintained |
4472 | F: drivers/mfd/lpc_ich.c |
4473 | F: drivers/gpio/gpio-ich.c |
4474 | |
4475 | IDE SUBSYSTEM |
4476 | M: "David S. Miller" <davem@davemloft.net> |
4477 | L: linux-ide@vger.kernel.org |
4478 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
4479 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
4480 | S: Maintained |
4481 | F: Documentation/ide/ |
4482 | F: drivers/ide/ |
4483 | F: include/linux/ide.h |
4484 | |
4485 | IDEAPAD LAPTOP EXTRAS DRIVER |
4486 | M: Ike Panhc <ike.pan@canonical.com> |
4487 | L: platform-driver-x86@vger.kernel.org |
4488 | W: http://launchpad.net/ideapad-laptop |
4489 | S: Maintained |
4490 | F: drivers/platform/x86/ideapad-laptop.c |
4491 | |
4492 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
4493 | M: Andrey Moiseev <o2g.org.ru@gmail.com> |
4494 | L: linux-input@vger.kernel.org |
4495 | W: https://github.com/o2genum/ideapad-slidebar |
4496 | S: Maintained |
4497 | F: drivers/input/misc/ideapad_slidebar.c |
4498 | |
4499 | IDE/ATAPI DRIVERS |
4500 | M: Borislav Petkov <bp@alien8.de> |
4501 | L: linux-ide@vger.kernel.org |
4502 | S: Maintained |
4503 | F: Documentation/cdrom/ide-cd |
4504 | F: drivers/ide/ide-cd* |
4505 | |
4506 | IDLE-I7300 |
4507 | M: Andy Henroid <andrew.d.henroid@intel.com> |
4508 | L: linux-pm@vger.kernel.org |
4509 | S: Supported |
4510 | F: drivers/idle/i7300_idle.c |
4511 | |
4512 | IEEE 802.15.4 SUBSYSTEM |
4513 | M: Alexander Aring <alex.aring@gmail.com> |
4514 | L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers) |
4515 | W: http://apps.sourceforge.net/trac/linux-zigbee |
4516 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
4517 | S: Maintained |
4518 | F: net/ieee802154/ |
4519 | F: net/mac802154/ |
4520 | F: drivers/net/ieee802154/ |
4521 | |
4522 | IGUANAWORKS USB IR TRANSCEIVER |
4523 | M: Sean Young <sean@mess.org> |
4524 | L: linux-media@vger.kernel.org |
4525 | S: Maintained |
4526 | F: drivers/media/rc/iguanair.c |
4527 | |
4528 | IIO SUBSYSTEM AND DRIVERS |
4529 | M: Jonathan Cameron <jic23@kernel.org> |
4530 | L: linux-iio@vger.kernel.org |
4531 | S: Maintained |
4532 | F: drivers/iio/ |
4533 | F: drivers/staging/iio/ |
4534 | |
4535 | IKANOS/ADI EAGLE ADSL USB DRIVER |
4536 | M: Matthieu Castet <castet.matthieu@free.fr> |
4537 | M: Stanislaw Gruszka <stf_xl@wp.pl> |
4538 | S: Maintained |
4539 | F: drivers/usb/atm/ueagle-atm.c |
4540 | |
4541 | INA209 HARDWARE MONITOR DRIVER |
4542 | M: Guenter Roeck <linux@roeck-us.net> |
4543 | L: lm-sensors@lm-sensors.org |
4544 | S: Maintained |
4545 | F: Documentation/hwmon/ina209 |
4546 | F: Documentation/devicetree/bindings/i2c/ina209.txt |
4547 | F: drivers/hwmon/ina209.c |
4548 | |
4549 | INA2XX HARDWARE MONITOR DRIVER |
4550 | M: Guenter Roeck <linux@roeck-us.net> |
4551 | L: lm-sensors@lm-sensors.org |
4552 | S: Maintained |
4553 | F: Documentation/hwmon/ina2xx |
4554 | F: drivers/hwmon/ina2xx.c |
4555 | F: include/linux/platform_data/ina2xx.h |
4556 | |
4557 | INDUSTRY PACK SUBSYSTEM (IPACK) |
4558 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> |
4559 | M: Jens Taprogge <jens.taprogge@taprogge.org> |
4560 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
4561 | L: industrypack-devel@lists.sourceforge.net |
4562 | W: http://industrypack.sourceforge.net |
4563 | S: Maintained |
4564 | F: drivers/ipack/ |
4565 | |
4566 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
4567 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
4568 | M: Dmitry Kasatkin <d.kasatkin@samsung.com> |
4569 | L: linux-ima-devel@lists.sourceforge.net |
4570 | L: linux-ima-user@lists.sourceforge.net |
4571 | L: linux-security-module@vger.kernel.org |
4572 | S: Supported |
4573 | F: security/integrity/ima/ |
4574 | |
4575 | IMS TWINTURBO FRAMEBUFFER DRIVER |
4576 | L: linux-fbdev@vger.kernel.org |
4577 | S: Orphan |
4578 | F: drivers/video/imsttfb.c |
4579 | |
4580 | INFINIBAND SUBSYSTEM |
4581 | M: Roland Dreier <roland@kernel.org> |
4582 | M: Sean Hefty <sean.hefty@intel.com> |
4583 | M: Hal Rosenstock <hal.rosenstock@gmail.com> |
4584 | L: linux-rdma@vger.kernel.org |
4585 | W: http://www.openfabrics.org/ |
4586 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
4587 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
4588 | S: Supported |
4589 | F: Documentation/infiniband/ |
4590 | F: drivers/infiniband/ |
4591 | F: include/uapi/linux/if_infiniband.h |
4592 | |
4593 | INOTIFY |
4594 | M: John McCutchan <john@johnmccutchan.com> |
4595 | M: Robert Love <rlove@rlove.org> |
4596 | M: Eric Paris <eparis@parisplace.org> |
4597 | S: Maintained |
4598 | F: Documentation/filesystems/inotify.txt |
4599 | F: fs/notify/inotify/ |
4600 | F: include/linux/inotify.h |
4601 | F: include/uapi/linux/inotify.h |
4602 | |
4603 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
4604 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
4605 | M: Dmitry Torokhov <dtor@mail.ru> |
4606 | L: linux-input@vger.kernel.org |
4607 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
4608 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
4609 | S: Maintained |
4610 | F: drivers/input/ |
4611 | F: include/linux/input.h |
4612 | F: include/uapi/linux/input.h |
4613 | F: include/linux/input/ |
4614 | |
4615 | INPUT MULTITOUCH (MT) PROTOCOL |
4616 | M: Henrik Rydberg <rydberg@euromail.se> |
4617 | L: linux-input@vger.kernel.org |
4618 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
4619 | S: Maintained |
4620 | F: Documentation/input/multi-touch-protocol.txt |
4621 | F: drivers/input/input-mt.c |
4622 | K: \b(ABS|SYN)_MT_ |
4623 | |
4624 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
4625 | M: Intel SCU Linux support <intel-linux-scu@intel.com> |
4626 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
4627 | M: Dave Jiang <dave.jiang@intel.com> |
4628 | L: linux-scsi@vger.kernel.org |
4629 | T: git git://git.code.sf.net/p/intel-sas/isci |
4630 | S: Supported |
4631 | F: drivers/scsi/isci/ |
4632 | |
4633 | INTEL IDLE DRIVER |
4634 | M: Len Brown <lenb@kernel.org> |
4635 | L: linux-pm@vger.kernel.org |
4636 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
4637 | S: Supported |
4638 | F: drivers/idle/intel_idle.c |
4639 | |
4640 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
4641 | M: Maik Broemme <mbroemme@plusserver.de> |
4642 | L: linux-fbdev@vger.kernel.org |
4643 | S: Maintained |
4644 | F: Documentation/fb/intelfb.txt |
4645 | F: drivers/video/intelfb/ |
4646 | |
4647 | INTEL 810/815 FRAMEBUFFER DRIVER |
4648 | M: Antonino Daplas <adaplas@gmail.com> |
4649 | L: linux-fbdev@vger.kernel.org |
4650 | S: Maintained |
4651 | F: drivers/video/i810/ |
4652 | |
4653 | INTEL MENLOW THERMAL DRIVER |
4654 | M: Sujith Thomas <sujith.thomas@intel.com> |
4655 | L: platform-driver-x86@vger.kernel.org |
4656 | W: https://01.org/linux-acpi |
4657 | S: Supported |
4658 | F: drivers/platform/x86/intel_menlow.c |
4659 | |
4660 | INTEL IA32 MICROCODE UPDATE SUPPORT |
4661 | M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk> |
4662 | S: Maintained |
4663 | F: arch/x86/kernel/microcode_core.c |
4664 | F: arch/x86/kernel/microcode_intel.c |
4665 | |
4666 | INTEL I/OAT DMA DRIVER |
4667 | M: Dan Williams <dan.j.williams@intel.com> |
4668 | M: Dave Jiang <dave.jiang@intel.com> |
4669 | L: dmaengine@vger.kernel.org |
4670 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ |
4671 | S: Supported |
4672 | F: drivers/dma/ioat* |
4673 | |
4674 | INTEL IOMMU (VT-d) |
4675 | M: David Woodhouse <dwmw2@infradead.org> |
4676 | L: iommu@lists.linux-foundation.org |
4677 | T: git git://git.infradead.org/iommu-2.6.git |
4678 | S: Supported |
4679 | F: drivers/iommu/intel-iommu.c |
4680 | F: include/linux/intel-iommu.h |
4681 | |
4682 | INTEL IOP-ADMA DMA DRIVER |
4683 | M: Dan Williams <dan.j.williams@intel.com> |
4684 | S: Odd fixes |
4685 | F: drivers/dma/iop-adma.c |
4686 | |
4687 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
4688 | M: Krzysztof Halasa <khc@pm.waw.pl> |
4689 | S: Maintained |
4690 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4691 | F: arch/arm/mach-ixp4xx/include/mach/npe.h |
4692 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c |
4693 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c |
4694 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
4695 | F: drivers/net/wan/ixp4xx_hss.c |
4696 | |
4697 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
4698 | M: Deepak Saxena <dsaxena@plexity.net> |
4699 | S: Maintained |
4700 | F: drivers/char/hw_random/ixp4xx-rng.c |
4701 | |
4702 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf) |
4703 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
4704 | M: Jesse Brandeburg <jesse.brandeburg@intel.com> |
4705 | M: Bruce Allan <bruce.w.allan@intel.com> |
4706 | M: Carolyn Wyborny <carolyn.wyborny@intel.com> |
4707 | M: Don Skidmore <donald.c.skidmore@intel.com> |
4708 | M: Greg Rose <gregory.v.rose@intel.com> |
4709 | M: Alex Duyck <alexander.h.duyck@intel.com> |
4710 | M: John Ronciak <john.ronciak@intel.com> |
4711 | M: Mitch Williams <mitch.a.williams@intel.com> |
4712 | M: Linux NICS <linux.nics@intel.com> |
4713 | L: e1000-devel@lists.sourceforge.net |
4714 | W: http://www.intel.com/support/feedback.htm |
4715 | W: http://e1000.sourceforge.net/ |
4716 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4717 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git |
4718 | S: Supported |
4719 | F: Documentation/networking/e100.txt |
4720 | F: Documentation/networking/e1000.txt |
4721 | F: Documentation/networking/e1000e.txt |
4722 | F: Documentation/networking/igb.txt |
4723 | F: Documentation/networking/igbvf.txt |
4724 | F: Documentation/networking/ixgb.txt |
4725 | F: Documentation/networking/ixgbe.txt |
4726 | F: Documentation/networking/ixgbevf.txt |
4727 | F: Documentation/networking/i40e.txt |
4728 | F: Documentation/networking/i40evf.txt |
4729 | F: drivers/net/ethernet/intel/ |
4730 | F: drivers/net/ethernet/intel/*/ |
4731 | |
4732 | INTEL-MID GPIO DRIVER |
4733 | M: David Cohen <david.a.cohen@linux.intel.com> |
4734 | L: linux-gpio@vger.kernel.org |
4735 | S: Maintained |
4736 | F: drivers/gpio/gpio-intel-mid.c |
4737 | |
4738 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4739 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> |
4740 | L: linux-wireless@vger.kernel.org |
4741 | S: Maintained |
4742 | F: Documentation/networking/README.ipw2100 |
4743 | F: Documentation/networking/README.ipw2200 |
4744 | F: drivers/net/wireless/ipw2x00/ |
4745 | |
4746 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
4747 | M: Richard L Maliszewski <richard.l.maliszewski@intel.com> |
4748 | M: Gang Wei <gang.wei@intel.com> |
4749 | M: Shane Wang <shane.wang@intel.com> |
4750 | L: tboot-devel@lists.sourceforge.net |
4751 | W: http://tboot.sourceforge.net |
4752 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4753 | S: Supported |
4754 | F: Documentation/intel_txt.txt |
4755 | F: include/linux/tboot.h |
4756 | F: arch/x86/kernel/tboot.c |
4757 | |
4758 | INTEL WIRELESS WIMAX CONNECTION 2400 |
4759 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
4760 | M: linux-wimax@intel.com |
4761 | L: wimax@linuxwimax.org (subscribers-only) |
4762 | S: Supported |
4763 | W: http://linuxwimax.org |
4764 | F: Documentation/wimax/README.i2400m |
4765 | F: drivers/net/wimax/i2400m/ |
4766 | F: include/uapi/linux/wimax/i2400m.h |
4767 | |
4768 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4769 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
4770 | L: linux-wireless@vger.kernel.org |
4771 | S: Supported |
4772 | F: drivers/net/wireless/iwlegacy/ |
4773 | |
4774 | INTEL WIRELESS WIFI LINK (iwlwifi) |
4775 | M: Johannes Berg <johannes.berg@intel.com> |
4776 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
4777 | M: Intel Linux Wireless <ilw@linux.intel.com> |
4778 | L: linux-wireless@vger.kernel.org |
4779 | W: http://intellinuxwireless.org |
4780 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
4781 | S: Supported |
4782 | F: drivers/net/wireless/iwlwifi/ |
4783 | |
4784 | INTEL MANAGEMENT ENGINE (mei) |
4785 | M: Tomas Winkler <tomas.winkler@intel.com> |
4786 | L: linux-kernel@vger.kernel.org |
4787 | S: Supported |
4788 | F: include/uapi/linux/mei.h |
4789 | F: drivers/misc/mei/* |
4790 | F: Documentation/misc-devices/mei/* |
4791 | |
4792 | IOC3 ETHERNET DRIVER |
4793 | M: Ralf Baechle <ralf@linux-mips.org> |
4794 | L: linux-mips@linux-mips.org |
4795 | S: Maintained |
4796 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
4797 | |
4798 | IOC3 SERIAL DRIVER |
4799 | M: Pat Gefre <pfg@sgi.com> |
4800 | L: linux-serial@vger.kernel.org |
4801 | S: Maintained |
4802 | F: drivers/tty/serial/ioc3_serial.c |
4803 | |
4804 | IOMMU DRIVERS |
4805 | M: Joerg Roedel <joro@8bytes.org> |
4806 | L: iommu@lists.linux-foundation.org |
4807 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
4808 | S: Maintained |
4809 | F: drivers/iommu/ |
4810 | |
4811 | IP MASQUERADING |
4812 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
4813 | S: Maintained |
4814 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
4815 | |
4816 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
4817 | M: Francois Romieu <romieu@fr.zoreil.com> |
4818 | M: Sorbica Shieh <sorbica@icplus.com.tw> |
4819 | L: netdev@vger.kernel.org |
4820 | S: Maintained |
4821 | F: drivers/net/ethernet/icplus/ipg.* |
4822 | |
4823 | IPATH DRIVER |
4824 | M: Mike Marciniszyn <infinipath@intel.com> |
4825 | L: linux-rdma@vger.kernel.org |
4826 | S: Maintained |
4827 | F: drivers/infiniband/hw/ipath/ |
4828 | |
4829 | IPMI SUBSYSTEM |
4830 | M: Corey Minyard <minyard@acm.org> |
4831 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4832 | W: http://openipmi.sourceforge.net/ |
4833 | S: Supported |
4834 | F: Documentation/IPMI.txt |
4835 | F: drivers/char/ipmi/ |
4836 | F: include/linux/ipmi* |
4837 | F: include/uapi/linux/ipmi* |
4838 | |
4839 | IPS SCSI RAID DRIVER |
4840 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
4841 | L: linux-scsi@vger.kernel.org |
4842 | W: http://www.adaptec.com/ |
4843 | S: Maintained |
4844 | F: drivers/scsi/ips* |
4845 | |
4846 | IPVS |
4847 | M: Wensong Zhang <wensong@linux-vs.org> |
4848 | M: Simon Horman <horms@verge.net.au> |
4849 | M: Julian Anastasov <ja@ssi.bg> |
4850 | L: netdev@vger.kernel.org |
4851 | L: lvs-devel@vger.kernel.org |
4852 | S: Maintained |
4853 | F: Documentation/networking/ipvs-sysctl.txt |
4854 | F: include/net/ip_vs.h |
4855 | F: include/uapi/linux/ip_vs.h |
4856 | F: net/netfilter/ipvs/ |
4857 | |
4858 | IPWIRELESS DRIVER |
4859 | M: Jiri Kosina <jkosina@suse.cz> |
4860 | M: David Sterba <dsterba@suse.cz> |
4861 | S: Odd Fixes |
4862 | F: drivers/tty/ipwireless/ |
4863 | |
4864 | IPX NETWORK LAYER |
4865 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
4866 | L: netdev@vger.kernel.org |
4867 | S: Maintained |
4868 | F: include/net/ipx.h |
4869 | F: include/uapi/linux/ipx.h |
4870 | F: net/ipx/ |
4871 | |
4872 | IRDA SUBSYSTEM |
4873 | M: Samuel Ortiz <samuel@sortiz.org> |
4874 | L: irda-users@lists.sourceforge.net (subscribers-only) |
4875 | L: netdev@vger.kernel.org |
4876 | W: http://irda.sourceforge.net/ |
4877 | S: Maintained |
4878 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
4879 | F: Documentation/networking/irda.txt |
4880 | F: drivers/net/irda/ |
4881 | F: include/net/irda/ |
4882 | F: net/irda/ |
4883 | |
4884 | IRQ SUBSYSTEM |
4885 | M: Thomas Gleixner <tglx@linutronix.de> |
4886 | L: linux-kernel@vger.kernel.org |
4887 | S: Maintained |
4888 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
4889 | F: kernel/irq/ |
4890 | |
4891 | IRQCHIP DRIVERS |
4892 | M: Thomas Gleixner <tglx@linutronix.de> |
4893 | M: Jason Cooper <jason@lakedaemon.net> |
4894 | L: linux-kernel@vger.kernel.org |
4895 | S: Maintained |
4896 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
4897 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core |
4898 | F: drivers/irqchip/ |
4899 | |
4900 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4901 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
4902 | S: Maintained |
4903 | F: Documentation/IRQ-domain.txt |
4904 | F: include/linux/irqdomain.h |
4905 | F: kernel/irq/irqdomain.c |
4906 | |
4907 | ISAPNP |
4908 | M: Jaroslav Kysela <perex@perex.cz> |
4909 | S: Maintained |
4910 | F: Documentation/isapnp.txt |
4911 | F: drivers/pnp/isapnp/ |
4912 | F: include/linux/isapnp.h |
4913 | |
4914 | ISA RADIO MODULE |
4915 | M: Hans Verkuil <hverkuil@xs4all.nl> |
4916 | L: linux-media@vger.kernel.org |
4917 | T: git git://linuxtv.org/media_tree.git |
4918 | W: http://linuxtv.org |
4919 | S: Maintained |
4920 | F: drivers/media/radio/radio-isa* |
4921 | |
4922 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
4923 | M: Peter Jones <pjones@redhat.com> |
4924 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> |
4925 | S: Maintained |
4926 | F: drivers/firmware/iscsi_ibft* |
4927 | |
4928 | ISCSI |
4929 | M: Mike Christie <michaelc@cs.wisc.edu> |
4930 | L: open-iscsi@googlegroups.com |
4931 | W: www.open-iscsi.org |
4932 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
4933 | S: Maintained |
4934 | F: drivers/scsi/*iscsi* |
4935 | F: include/scsi/*iscsi* |
4936 | |
4937 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
4938 | M: Or Gerlitz <ogerlitz@mellanox.com> |
4939 | M: Roi Dayan <roid@mellanox.com> |
4940 | L: linux-rdma@vger.kernel.org |
4941 | S: Supported |
4942 | W: http://www.openfabrics.org |
4943 | W: www.open-iscsi.org |
4944 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
4945 | F: drivers/infiniband/ulp/iser/ |
4946 | |
4947 | ISDN SUBSYSTEM |
4948 | M: Karsten Keil <isdn@linux-pingi.de> |
4949 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
4950 | L: netdev@vger.kernel.org |
4951 | W: http://www.isdn4linux.de |
4952 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
4953 | S: Maintained |
4954 | F: Documentation/isdn/ |
4955 | F: drivers/isdn/ |
4956 | F: include/linux/isdn.h |
4957 | F: include/linux/isdn/ |
4958 | F: include/uapi/linux/isdn.h |
4959 | F: include/uapi/linux/isdn/ |
4960 | |
4961 | ISDN SUBSYSTEM (Eicon active card driver) |
4962 | M: Armin Schindler <mac@melware.de> |
4963 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
4964 | W: http://www.melware.de |
4965 | S: Maintained |
4966 | F: drivers/isdn/hardware/eicon/ |
4967 | |
4968 | IT87 HARDWARE MONITORING DRIVER |
4969 | M: Jean Delvare <jdelvare@suse.de> |
4970 | L: lm-sensors@lm-sensors.org |
4971 | S: Maintained |
4972 | F: Documentation/hwmon/it87 |
4973 | F: drivers/hwmon/it87.c |
4974 | |
4975 | IT913X MEDIA DRIVER |
4976 | M: Antti Palosaari <crope@iki.fi> |
4977 | L: linux-media@vger.kernel.org |
4978 | W: http://linuxtv.org/ |
4979 | W: http://palosaari.fi/linux/ |
4980 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
4981 | T: git git://linuxtv.org/anttip/media_tree.git |
4982 | S: Maintained |
4983 | F: drivers/media/tuners/tuner_it913x* |
4984 | |
4985 | IVTV VIDEO4LINUX DRIVER |
4986 | M: Andy Walls <awalls@md.metrocast.net> |
4987 | L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) |
4988 | L: linux-media@vger.kernel.org |
4989 | T: git git://linuxtv.org/media_tree.git |
4990 | W: http://www.ivtvdriver.org |
4991 | S: Maintained |
4992 | F: Documentation/video4linux/*.ivtv |
4993 | F: drivers/media/pci/ivtv/ |
4994 | F: include/uapi/linux/ivtv* |
4995 | |
4996 | IX2505V MEDIA DRIVER |
4997 | M: Malcolm Priestley <tvboxspy@gmail.com> |
4998 | L: linux-media@vger.kernel.org |
4999 | W: http://linuxtv.org/ |
5000 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
5001 | S: Maintained |
5002 | F: drivers/media/dvb-frontends/ix2505v* |
5003 | |
5004 | JC42.4 TEMPERATURE SENSOR DRIVER |
5005 | M: Guenter Roeck <linux@roeck-us.net> |
5006 | L: lm-sensors@lm-sensors.org |
5007 | S: Maintained |
5008 | F: drivers/hwmon/jc42.c |
5009 | F: Documentation/hwmon/jc42 |
5010 | |
5011 | JFS FILESYSTEM |
5012 | M: Dave Kleikamp <shaggy@kernel.org> |
5013 | L: jfs-discussion@lists.sourceforge.net |
5014 | W: http://jfs.sourceforge.net/ |
5015 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
5016 | S: Maintained |
5017 | F: Documentation/filesystems/jfs.txt |
5018 | F: fs/jfs/ |
5019 | |
5020 | JME NETWORK DRIVER |
5021 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
5022 | L: netdev@vger.kernel.org |
5023 | S: Maintained |
5024 | F: drivers/net/ethernet/jme.* |
5025 | |
5026 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
5027 | M: David Woodhouse <dwmw2@infradead.org> |
5028 | L: linux-mtd@lists.infradead.org |
5029 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html |
5030 | S: Maintained |
5031 | F: fs/jffs2/ |
5032 | F: include/uapi/linux/jffs2.h |
5033 | |
5034 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
5035 | M: Andrew Morton <akpm@linux-foundation.org> |
5036 | M: Jan Kara <jack@suse.cz> |
5037 | L: linux-ext4@vger.kernel.org |
5038 | S: Maintained |
5039 | F: fs/jbd/ |
5040 | F: include/linux/jbd.h |
5041 | |
5042 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) |
5043 | M: "Theodore Ts'o" <tytso@mit.edu> |
5044 | L: linux-ext4@vger.kernel.org |
5045 | S: Maintained |
5046 | F: fs/jbd2/ |
5047 | F: include/linux/jbd2.h |
5048 | |
5049 | JSM Neo PCI based serial card |
5050 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
5051 | L: linux-serial@vger.kernel.org |
5052 | S: Maintained |
5053 | F: drivers/tty/serial/jsm/ |
5054 | |
5055 | K10TEMP HARDWARE MONITORING DRIVER |
5056 | M: Clemens Ladisch <clemens@ladisch.de> |
5057 | L: lm-sensors@lm-sensors.org |
5058 | S: Maintained |
5059 | F: Documentation/hwmon/k10temp |
5060 | F: drivers/hwmon/k10temp.c |
5061 | |
5062 | K8TEMP HARDWARE MONITORING DRIVER |
5063 | M: Rudolf Marek <r.marek@assembler.cz> |
5064 | L: lm-sensors@lm-sensors.org |
5065 | S: Maintained |
5066 | F: Documentation/hwmon/k8temp |
5067 | F: drivers/hwmon/k8temp.c |
5068 | |
5069 | KTAP |
5070 | M: Jovi Zhangwei <jovi.zhangwei@gmail.com> |
5071 | W: http://www.ktap.org |
5072 | L: ktap@freelists.org |
5073 | S: Maintained |
5074 | F: drivers/staging/ktap/ |
5075 | |
5076 | KCONFIG |
5077 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
5078 | L: linux-kbuild@vger.kernel.org |
5079 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5080 | S: Maintained |
5081 | F: Documentation/kbuild/kconfig-language.txt |
5082 | F: scripts/kconfig/ |
5083 | |
5084 | KDUMP |
5085 | M: Vivek Goyal <vgoyal@redhat.com> |
5086 | M: Haren Myneni <hbabu@us.ibm.com> |
5087 | L: kexec@lists.infradead.org |
5088 | W: http://lse.sourceforge.net/kdump/ |
5089 | S: Maintained |
5090 | F: Documentation/kdump/ |
5091 | |
5092 | KEENE FM RADIO TRANSMITTER DRIVER |
5093 | M: Hans Verkuil <hverkuil@xs4all.nl> |
5094 | L: linux-media@vger.kernel.org |
5095 | T: git git://linuxtv.org/media_tree.git |
5096 | W: http://linuxtv.org |
5097 | S: Maintained |
5098 | F: drivers/media/radio/radio-keene* |
5099 | |
5100 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
5101 | M: Ian Kent <raven@themaw.net> |
5102 | L: autofs@vger.kernel.org |
5103 | S: Maintained |
5104 | F: fs/autofs4/ |
5105 | |
5106 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5107 | M: Michal Marek <mmarek@suse.cz> |
5108 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
5109 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes |
5110 | L: linux-kbuild@vger.kernel.org |
5111 | S: Maintained |
5112 | F: Documentation/kbuild/ |
5113 | F: Makefile |
5114 | F: scripts/Makefile.* |
5115 | F: scripts/basic/ |
5116 | F: scripts/mk* |
5117 | F: scripts/package/ |
5118 | |
5119 | KERNEL JANITORS |
5120 | L: kernel-janitors@vger.kernel.org |
5121 | W: http://kernelnewbies.org/KernelJanitors |
5122 | S: Odd Fixes |
5123 | |
5124 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
5125 | M: "J. Bruce Fields" <bfields@fieldses.org> |
5126 | L: linux-nfs@vger.kernel.org |
5127 | W: http://nfs.sourceforge.net/ |
5128 | S: Supported |
5129 | F: fs/nfsd/ |
5130 | F: include/linux/nfsd/ |
5131 | F: include/uapi/linux/nfsd/ |
5132 | F: fs/lockd/ |
5133 | F: fs/nfs_common/ |
5134 | F: net/sunrpc/ |
5135 | F: include/linux/lockd/ |
5136 | F: include/linux/sunrpc/ |
5137 | F: include/uapi/linux/sunrpc/ |
5138 | |
5139 | KERNEL VIRTUAL MACHINE (KVM) |
5140 | M: Gleb Natapov <gleb@kernel.org> |
5141 | M: Paolo Bonzini <pbonzini@redhat.com> |
5142 | L: kvm@vger.kernel.org |
5143 | W: http://www.linux-kvm.org |
5144 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
5145 | S: Supported |
5146 | F: Documentation/*/kvm*.txt |
5147 | F: Documentation/virtual/kvm/ |
5148 | F: arch/*/kvm/ |
5149 | F: arch/*/include/asm/kvm* |
5150 | F: include/linux/kvm* |
5151 | F: include/uapi/linux/kvm* |
5152 | F: virt/kvm/ |
5153 | |
5154 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
5155 | M: Joerg Roedel <joro@8bytes.org> |
5156 | L: kvm@vger.kernel.org |
5157 | W: http://kvm.qumranet.com |
5158 | S: Maintained |
5159 | F: arch/x86/include/asm/svm.h |
5160 | F: arch/x86/kvm/svm.c |
5161 | |
5162 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
5163 | M: Alexander Graf <agraf@suse.de> |
5164 | L: kvm-ppc@vger.kernel.org |
5165 | W: http://kvm.qumranet.com |
5166 | T: git git://github.com/agraf/linux-2.6.git |
5167 | S: Supported |
5168 | F: arch/powerpc/include/asm/kvm* |
5169 | F: arch/powerpc/kvm/ |
5170 | |
5171 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
5172 | M: Xiantao Zhang <xiantao.zhang@intel.com> |
5173 | L: kvm-ia64@vger.kernel.org |
5174 | W: http://kvm.qumranet.com |
5175 | S: Supported |
5176 | F: Documentation/ia64/kvm.txt |
5177 | F: arch/ia64/include/asm/kvm* |
5178 | F: arch/ia64/kvm/ |
5179 | |
5180 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
5181 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
5182 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
5183 | M: linux390@de.ibm.com |
5184 | L: linux-s390@vger.kernel.org |
5185 | W: http://www.ibm.com/developerworks/linux/linux390/ |
5186 | S: Supported |
5187 | F: Documentation/s390/kvm.txt |
5188 | F: arch/s390/include/asm/kvm* |
5189 | F: arch/s390/kvm/ |
5190 | F: drivers/s390/kvm/ |
5191 | |
5192 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
5193 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5194 | M: Marc Zyngier <marc.zyngier@arm.com> |
5195 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
5196 | L: kvmarm@lists.cs.columbia.edu |
5197 | W: http://systems.cs.columbia.edu/projects/kvm-arm |
5198 | S: Supported |
5199 | F: arch/arm/include/uapi/asm/kvm* |
5200 | F: arch/arm/include/asm/kvm* |
5201 | F: arch/arm/kvm/ |
5202 | F: virt/kvm/arm/ |
5203 | F: include/kvm/arm_* |
5204 | |
5205 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5206 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5207 | M: Marc Zyngier <marc.zyngier@arm.com> |
5208 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
5209 | L: kvmarm@lists.cs.columbia.edu |
5210 | S: Maintained |
5211 | F: arch/arm64/include/uapi/asm/kvm* |
5212 | F: arch/arm64/include/asm/kvm* |
5213 | F: arch/arm64/kvm/ |
5214 | |
5215 | KEXEC |
5216 | M: Eric Biederman <ebiederm@xmission.com> |
5217 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
5218 | L: kexec@lists.infradead.org |
5219 | S: Maintained |
5220 | F: include/linux/kexec.h |
5221 | F: include/uapi/linux/kexec.h |
5222 | F: kernel/kexec.c |
5223 | |
5224 | KEYS/KEYRINGS: |
5225 | M: David Howells <dhowells@redhat.com> |
5226 | L: keyrings@linux-nfs.org |
5227 | S: Maintained |
5228 | F: Documentation/security/keys.txt |
5229 | F: include/linux/key.h |
5230 | F: include/linux/key-type.h |
5231 | F: include/keys/ |
5232 | F: security/keys/ |
5233 | |
5234 | KEYS-TRUSTED |
5235 | M: David Safford <safford@us.ibm.com> |
5236 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
5237 | L: linux-security-module@vger.kernel.org |
5238 | L: keyrings@linux-nfs.org |
5239 | S: Supported |
5240 | F: Documentation/security/keys-trusted-encrypted.txt |
5241 | F: include/keys/trusted-type.h |
5242 | F: security/keys/trusted.c |
5243 | F: security/keys/trusted.h |
5244 | |
5245 | KEYS-ENCRYPTED |
5246 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
5247 | M: David Safford <safford@us.ibm.com> |
5248 | L: linux-security-module@vger.kernel.org |
5249 | L: keyrings@linux-nfs.org |
5250 | S: Supported |
5251 | F: Documentation/security/keys-trusted-encrypted.txt |
5252 | F: include/keys/encrypted-type.h |
5253 | F: security/keys/encrypted-keys/ |
5254 | |
5255 | KGDB / KDB /debug_core |
5256 | M: Jason Wessel <jason.wessel@windriver.com> |
5257 | W: http://kgdb.wiki.kernel.org/ |
5258 | L: kgdb-bugreport@lists.sourceforge.net |
5259 | S: Maintained |
5260 | F: Documentation/DocBook/kgdb.tmpl |
5261 | F: drivers/misc/kgdbts.c |
5262 | F: drivers/tty/serial/kgdboc.c |
5263 | F: include/linux/kdb.h |
5264 | F: include/linux/kgdb.h |
5265 | F: kernel/debug/ |
5266 | |
5267 | KMEMCHECK |
5268 | M: Vegard Nossum <vegardno@ifi.uio.no> |
5269 | M: Pekka Enberg <penberg@kernel.org> |
5270 | S: Maintained |
5271 | F: Documentation/kmemcheck.txt |
5272 | F: arch/x86/include/asm/kmemcheck.h |
5273 | F: arch/x86/mm/kmemcheck/ |
5274 | F: include/linux/kmemcheck.h |
5275 | F: mm/kmemcheck.c |
5276 | |
5277 | KMEMLEAK |
5278 | M: Catalin Marinas <catalin.marinas@arm.com> |
5279 | S: Maintained |
5280 | F: Documentation/kmemleak.txt |
5281 | F: include/linux/kmemleak.h |
5282 | F: mm/kmemleak.c |
5283 | F: mm/kmemleak-test.c |
5284 | |
5285 | KPROBES |
5286 | M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> |
5287 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
5288 | M: "David S. Miller" <davem@davemloft.net> |
5289 | M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
5290 | S: Maintained |
5291 | F: Documentation/kprobes.txt |
5292 | F: include/linux/kprobes.h |
5293 | F: kernel/kprobes.c |
5294 | |
5295 | KS0108 LCD CONTROLLER DRIVER |
5296 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
5297 | W: http://miguelojeda.es/auxdisplay.htm |
5298 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
5299 | S: Maintained |
5300 | F: Documentation/auxdisplay/ks0108 |
5301 | F: drivers/auxdisplay/ks0108.c |
5302 | F: include/linux/ks0108.h |
5303 | |
5304 | LAPB module |
5305 | L: linux-x25@vger.kernel.org |
5306 | S: Orphan |
5307 | F: Documentation/networking/lapb-module.txt |
5308 | F: include/*/lapb.h |
5309 | F: net/lapb/ |
5310 | |
5311 | LASI 53c700 driver for PARISC |
5312 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
5313 | L: linux-scsi@vger.kernel.org |
5314 | S: Maintained |
5315 | F: Documentation/scsi/53c700.txt |
5316 | F: drivers/scsi/53c700* |
5317 | |
5318 | LED SUBSYSTEM |
5319 | M: Bryan Wu <cooloney@gmail.com> |
5320 | M: Richard Purdie <rpurdie@rpsys.net> |
5321 | L: linux-leds@vger.kernel.org |
5322 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git |
5323 | S: Maintained |
5324 | F: drivers/leds/ |
5325 | F: include/linux/leds.h |
5326 | |
5327 | LEGACY EEPROM DRIVER |
5328 | M: Jean Delvare <jdelvare@suse.de> |
5329 | S: Maintained |
5330 | F: Documentation/misc-devices/eeprom |
5331 | F: drivers/misc/eeprom/eeprom.c |
5332 | |
5333 | LEGO USB Tower driver |
5334 | M: Juergen Stuber <starblue@users.sourceforge.net> |
5335 | L: legousb-devel@lists.sourceforge.net |
5336 | W: http://legousb.sourceforge.net/ |
5337 | S: Maintained |
5338 | F: drivers/usb/misc/legousbtower.c |
5339 | |
5340 | LG2160 MEDIA DRIVER |
5341 | M: Michael Krufky <mkrufky@linuxtv.org> |
5342 | L: linux-media@vger.kernel.org |
5343 | W: http://linuxtv.org/ |
5344 | W: http://github.com/mkrufky |
5345 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
5346 | T: git git://linuxtv.org/mkrufky/tuners.git |
5347 | S: Maintained |
5348 | F: drivers/media/dvb-frontends/lg2160.* |
5349 | |
5350 | LGDT3305 MEDIA DRIVER |
5351 | M: Michael Krufky <mkrufky@linuxtv.org> |
5352 | L: linux-media@vger.kernel.org |
5353 | W: http://linuxtv.org/ |
5354 | W: http://github.com/mkrufky |
5355 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
5356 | T: git git://linuxtv.org/mkrufky/tuners.git |
5357 | S: Maintained |
5358 | F: drivers/media/dvb-frontends/lgdt3305.* |
5359 | |
5360 | LGUEST |
5361 | M: Rusty Russell <rusty@rustcorp.com.au> |
5362 | L: lguest@lists.ozlabs.org |
5363 | W: http://lguest.ozlabs.org/ |
5364 | S: Odd Fixes |
5365 | F: arch/x86/include/asm/lguest*.h |
5366 | F: arch/x86/lguest/ |
5367 | F: drivers/lguest/ |
5368 | F: include/linux/lguest*.h |
5369 | F: tools/lguest/ |
5370 | |
5371 | LIBLOCKDEP |
5372 | M: Sasha Levin <sasha.levin@oracle.com> |
5373 | S: Maintained |
5374 | F: tools/lib/lockdep/ |
5375 | |
5376 | LINUX FOR IBM pSERIES (RS/6000) |
5377 | M: Paul Mackerras <paulus@au.ibm.com> |
5378 | W: http://www.ibm.com/linux/ltc/projects/ppc |
5379 | S: Supported |
5380 | F: arch/powerpc/boot/rs6000.h |
5381 | |
5382 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
5383 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
5384 | M: Paul Mackerras <paulus@samba.org> |
5385 | W: http://www.penguinppc.org/ |
5386 | L: linuxppc-dev@lists.ozlabs.org |
5387 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
5388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
5389 | S: Supported |
5390 | F: Documentation/powerpc/ |
5391 | F: arch/powerpc/ |
5392 | |
5393 | LINUX FOR POWER MACINTOSH |
5394 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
5395 | W: http://www.penguinppc.org/ |
5396 | L: linuxppc-dev@lists.ozlabs.org |
5397 | S: Maintained |
5398 | F: arch/powerpc/platforms/powermac/ |
5399 | F: drivers/macintosh/ |
5400 | |
5401 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
5402 | M: Anatolij Gustschin <agust@denx.de> |
5403 | L: linuxppc-dev@lists.ozlabs.org |
5404 | T: git git://git.denx.de/linux-2.6-agust.git |
5405 | S: Maintained |
5406 | F: arch/powerpc/platforms/512x/ |
5407 | F: arch/powerpc/platforms/52xx/ |
5408 | |
5409 | LINUX FOR POWERPC EMBEDDED PPC4XX |
5410 | M: Alistair Popple <alistair@popple.id.au> |
5411 | M: Matt Porter <mporter@kernel.crashing.org> |
5412 | W: http://www.penguinppc.org/ |
5413 | L: linuxppc-dev@lists.ozlabs.org |
5414 | S: Maintained |
5415 | F: arch/powerpc/platforms/40x/ |
5416 | F: arch/powerpc/platforms/44x/ |
5417 | |
5418 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
5419 | L: linuxppc-dev@lists.ozlabs.org |
5420 | S: Orphan |
5421 | F: arch/powerpc/*/*virtex* |
5422 | F: arch/powerpc/*/*/*virtex* |
5423 | |
5424 | LINUX FOR POWERPC EMBEDDED PPC8XX |
5425 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
5426 | M: Marcelo Tosatti <marcelo@kvack.org> |
5427 | W: http://www.penguinppc.org/ |
5428 | L: linuxppc-dev@lists.ozlabs.org |
5429 | S: Maintained |
5430 | F: arch/powerpc/platforms/8xx/ |
5431 | |
5432 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
5433 | M: Kumar Gala <galak@kernel.crashing.org> |
5434 | W: http://www.penguinppc.org/ |
5435 | L: linuxppc-dev@lists.ozlabs.org |
5436 | S: Maintained |
5437 | F: arch/powerpc/platforms/83xx/ |
5438 | F: arch/powerpc/platforms/85xx/ |
5439 | |
5440 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
5441 | M: Olof Johansson <olof@lixom.net> |
5442 | L: linuxppc-dev@lists.ozlabs.org |
5443 | S: Maintained |
5444 | F: arch/powerpc/platforms/pasemi/ |
5445 | F: drivers/*/*pasemi* |
5446 | F: drivers/*/*/*pasemi* |
5447 | |
5448 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
5449 | M: Chris Wright <chrisw@sous-sol.org> |
5450 | L: linux-security-module@vger.kernel.org |
5451 | S: Supported |
5452 | |
5453 | LIS3LV02D ACCELEROMETER DRIVER |
5454 | M: Eric Piel <eric.piel@tremplin-utc.net> |
5455 | S: Maintained |
5456 | F: Documentation/misc-devices/lis3lv02d |
5457 | F: drivers/misc/lis3lv02d/ |
5458 | F: drivers/platform/x86/hp_accel.c |
5459 | |
5460 | LLC (802.2) |
5461 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
5462 | S: Maintained |
5463 | F: include/linux/llc.h |
5464 | F: include/uapi/linux/llc.h |
5465 | F: include/net/llc* |
5466 | F: net/llc/ |
5467 | |
5468 | LM73 HARDWARE MONITOR DRIVER |
5469 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> |
5470 | L: lm-sensors@lm-sensors.org |
5471 | S: Maintained |
5472 | F: drivers/hwmon/lm73.c |
5473 | |
5474 | LM78 HARDWARE MONITOR DRIVER |
5475 | M: Jean Delvare <jdelvare@suse.de> |
5476 | L: lm-sensors@lm-sensors.org |
5477 | S: Maintained |
5478 | F: Documentation/hwmon/lm78 |
5479 | F: drivers/hwmon/lm78.c |
5480 | |
5481 | LM83 HARDWARE MONITOR DRIVER |
5482 | M: Jean Delvare <jdelvare@suse.de> |
5483 | L: lm-sensors@lm-sensors.org |
5484 | S: Maintained |
5485 | F: Documentation/hwmon/lm83 |
5486 | F: drivers/hwmon/lm83.c |
5487 | |
5488 | LM90 HARDWARE MONITOR DRIVER |
5489 | M: Jean Delvare <jdelvare@suse.de> |
5490 | L: lm-sensors@lm-sensors.org |
5491 | S: Maintained |
5492 | F: Documentation/hwmon/lm90 |
5493 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
5494 | F: drivers/hwmon/lm90.c |
5495 | |
5496 | LM95234 HARDWARE MONITOR DRIVER |
5497 | M: Guenter Roeck <linux@roeck-us.net> |
5498 | L: lm-sensors@lm-sensors.org |
5499 | S: Maintained |
5500 | F: Documentation/hwmon/lm95234 |
5501 | F: drivers/hwmon/lm95234.c |
5502 | |
5503 | LME2510 MEDIA DRIVER |
5504 | M: Malcolm Priestley <tvboxspy@gmail.com> |
5505 | L: linux-media@vger.kernel.org |
5506 | W: http://linuxtv.org/ |
5507 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
5508 | S: Maintained |
5509 | F: drivers/media/usb/dvb-usb-v2/lmedm04* |
5510 | |
5511 | LOCKDEP AND LOCKSTAT |
5512 | M: Peter Zijlstra <peterz@infradead.org> |
5513 | M: Ingo Molnar <mingo@redhat.com> |
5514 | L: linux-kernel@vger.kernel.org |
5515 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
5516 | S: Maintained |
5517 | F: Documentation/lockdep*.txt |
5518 | F: Documentation/lockstat.txt |
5519 | F: include/linux/lockdep.h |
5520 | F: kernel/locking/ |
5521 | |
5522 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
5523 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
5524 | L: linux-ntfs-dev@lists.sourceforge.net |
5525 | W: http://www.linux-ntfs.org/content/view/19/37/ |
5526 | S: Maintained |
5527 | F: Documentation/ldm.txt |
5528 | F: block/partitions/ldm.* |
5529 | |
5530 | LogFS |
5531 | M: Joern Engel <joern@logfs.org> |
5532 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
5533 | L: logfs@logfs.org |
5534 | W: logfs.org |
5535 | S: Maintained |
5536 | F: fs/logfs/ |
5537 | |
5538 | LPC32XX MACHINE SUPPORT |
5539 | M: Roland Stigge <stigge@antcom.de> |
5540 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
5541 | S: Maintained |
5542 | F: arch/arm/mach-lpc32xx/ |
5543 | |
5544 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
5545 | M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com> |
5546 | M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com> |
5547 | M: Sreekanth Reddy <sreekanth.reddy@avagotech.com> |
5548 | M: Abhijit Mahajan <abhijit.mahajan@avagotech.com> |
5549 | L: MPT-FusionLinux.pdl@avagotech.com |
5550 | L: linux-scsi@vger.kernel.org |
5551 | W: http://www.lsilogic.com/support |
5552 | S: Supported |
5553 | F: drivers/message/fusion/ |
5554 | F: drivers/scsi/mpt2sas/ |
5555 | F: drivers/scsi/mpt3sas/ |
5556 | |
5557 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
5558 | M: Matthew Wilcox <matthew@wil.cx> |
5559 | L: linux-scsi@vger.kernel.org |
5560 | S: Maintained |
5561 | F: drivers/scsi/sym53c8xx_2/ |
5562 | |
5563 | LTC4261 HARDWARE MONITOR DRIVER |
5564 | M: Guenter Roeck <linux@roeck-us.net> |
5565 | L: lm-sensors@lm-sensors.org |
5566 | S: Maintained |
5567 | F: Documentation/hwmon/ltc4261 |
5568 | F: drivers/hwmon/ltc4261.c |
5569 | |
5570 | LTP (Linux Test Project) |
5571 | M: Mike Frysinger <vapier@gentoo.org> |
5572 | M: Cyril Hrubis <chrubis@suse.cz> |
5573 | M: Wanlong Gao <gaowanlong@cn.fujitsu.com> |
5574 | M: Jan Stancek <jstancek@redhat.com> |
5575 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> |
5576 | M: Alexey Kodanev <alexey.kodanev@oracle.com> |
5577 | L: ltp-list@lists.sourceforge.net (subscribers-only) |
5578 | W: http://linux-test-project.github.io/ |
5579 | T: git git://github.com/linux-test-project/ltp.git |
5580 | S: Maintained |
5581 | |
5582 | M32R ARCHITECTURE |
5583 | M: Hirokazu Takata <takata@linux-m32r.org> |
5584 | L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers) |
5585 | L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) |
5586 | W: http://www.linux-m32r.org/ |
5587 | S: Maintained |
5588 | F: arch/m32r/ |
5589 | |
5590 | M68K ARCHITECTURE |
5591 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
5592 | L: linux-m68k@lists.linux-m68k.org |
5593 | W: http://www.linux-m68k.org/ |
5594 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
5595 | S: Maintained |
5596 | F: arch/m68k/ |
5597 | F: drivers/zorro/ |
5598 | |
5599 | M68K ON APPLE MACINTOSH |
5600 | M: Joshua Thompson <funaho@jurai.org> |
5601 | W: http://www.mac.linux-m68k.org/ |
5602 | L: linux-m68k@lists.linux-m68k.org |
5603 | S: Maintained |
5604 | F: arch/m68k/mac/ |
5605 | |
5606 | M68K ON HP9000/300 |
5607 | M: Philip Blundell <philb@gnu.org> |
5608 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
5609 | S: Maintained |
5610 | F: arch/m68k/hp300/ |
5611 | |
5612 | M88DS3103 MEDIA DRIVER |
5613 | M: Antti Palosaari <crope@iki.fi> |
5614 | L: linux-media@vger.kernel.org |
5615 | W: http://linuxtv.org/ |
5616 | W: http://palosaari.fi/linux/ |
5617 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
5618 | T: git git://linuxtv.org/anttip/media_tree.git |
5619 | S: Maintained |
5620 | F: drivers/media/dvb-frontends/m88ds3103* |
5621 | |
5622 | M88RS2000 MEDIA DRIVER |
5623 | M: Malcolm Priestley <tvboxspy@gmail.com> |
5624 | L: linux-media@vger.kernel.org |
5625 | W: http://linuxtv.org/ |
5626 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
5627 | S: Maintained |
5628 | F: drivers/media/dvb-frontends/m88rs2000* |
5629 | |
5630 | M88TS2022 MEDIA DRIVER |
5631 | M: Antti Palosaari <crope@iki.fi> |
5632 | L: linux-media@vger.kernel.org |
5633 | W: http://linuxtv.org/ |
5634 | W: http://palosaari.fi/linux/ |
5635 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
5636 | T: git git://linuxtv.org/anttip/media_tree.git |
5637 | S: Maintained |
5638 | F: drivers/media/tuners/m88ts2022* |
5639 | |
5640 | MA901 MASTERKIT USB FM RADIO DRIVER |
5641 | M: Alexey Klimov <klimov.linux@gmail.com> |
5642 | L: linux-media@vger.kernel.org |
5643 | T: git git://linuxtv.org/media_tree.git |
5644 | S: Maintained |
5645 | F: drivers/media/radio/radio-ma901.c |
5646 | |
5647 | MAC80211 |
5648 | M: Johannes Berg <johannes@sipsolutions.net> |
5649 | L: linux-wireless@vger.kernel.org |
5650 | W: http://wireless.kernel.org/ |
5651 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5652 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git |
5653 | S: Maintained |
5654 | F: Documentation/networking/mac80211-injection.txt |
5655 | F: include/net/mac80211.h |
5656 | F: net/mac80211/ |
5657 | |
5658 | MAC80211 PID RATE CONTROL |
5659 | M: Stefano Brivio <stefano.brivio@polimi.it> |
5660 | M: Mattias Nissler <mattias.nissler@gmx.de> |
5661 | L: linux-wireless@vger.kernel.org |
5662 | W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID |
5663 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5664 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git |
5665 | S: Maintained |
5666 | F: net/mac80211/rc80211_pid* |
5667 | |
5668 | MACVLAN DRIVER |
5669 | M: Patrick McHardy <kaber@trash.net> |
5670 | L: netdev@vger.kernel.org |
5671 | S: Maintained |
5672 | F: drivers/net/macvlan.c |
5673 | F: include/linux/if_macvlan.h |
5674 | |
5675 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
5676 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
5677 | W: http://www.kernel.org/doc/man-pages |
5678 | L: linux-man@vger.kernel.org |
5679 | S: Maintained |
5680 | |
5681 | MARVELL ARMADA DRM SUPPORT |
5682 | M: Russell King <rmk+kernel@arm.linux.org.uk> |
5683 | S: Maintained |
5684 | F: drivers/gpu/drm/armada/ |
5685 | |
5686 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
5687 | M: Mirko Lindner <mlindner@marvell.com> |
5688 | M: Stephen Hemminger <stephen@networkplumber.org> |
5689 | L: netdev@vger.kernel.org |
5690 | S: Maintained |
5691 | F: drivers/net/ethernet/marvell/sk* |
5692 | |
5693 | MARVELL LIBERTAS WIRELESS DRIVER |
5694 | L: libertas-dev@lists.infradead.org |
5695 | S: Orphan |
5696 | F: drivers/net/wireless/libertas/ |
5697 | |
5698 | MARVELL MV643XX ETHERNET DRIVER |
5699 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
5700 | L: netdev@vger.kernel.org |
5701 | S: Maintained |
5702 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
5703 | F: include/linux/mv643xx.h |
5704 | |
5705 | MARVELL MVNETA ETHERNET DRIVER |
5706 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
5707 | L: netdev@vger.kernel.org |
5708 | S: Maintained |
5709 | F: drivers/net/ethernet/marvell/mvneta.* |
5710 | |
5711 | MARVELL MWIFIEX WIRELESS DRIVER |
5712 | M: Bing Zhao <bzhao@marvell.com> |
5713 | L: linux-wireless@vger.kernel.org |
5714 | S: Maintained |
5715 | F: drivers/net/wireless/mwifiex/ |
5716 | |
5717 | MARVELL MWL8K WIRELESS DRIVER |
5718 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
5719 | L: linux-wireless@vger.kernel.org |
5720 | S: Odd Fixes |
5721 | F: drivers/net/wireless/mwl8k.c |
5722 | |
5723 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
5724 | M: Nicolas Pitre <nico@fluxnic.net> |
5725 | S: Odd Fixes |
5726 | F: drivers/mmc/host/mvsdio.* |
5727 | |
5728 | MATROX FRAMEBUFFER DRIVER |
5729 | L: linux-fbdev@vger.kernel.org |
5730 | S: Orphan |
5731 | F: drivers/video/matrox/matroxfb_* |
5732 | F: include/uapi/linux/matroxfb.h |
5733 | |
5734 | MAX16065 HARDWARE MONITOR DRIVER |
5735 | M: Guenter Roeck <linux@roeck-us.net> |
5736 | L: lm-sensors@lm-sensors.org |
5737 | S: Maintained |
5738 | F: Documentation/hwmon/max16065 |
5739 | F: drivers/hwmon/max16065.c |
5740 | |
5741 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
5742 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
5743 | L: lm-sensors@lm-sensors.org |
5744 | S: Maintained |
5745 | F: Documentation/hwmon/max6650 |
5746 | F: drivers/hwmon/max6650.c |
5747 | |
5748 | MAX6697 HARDWARE MONITOR DRIVER |
5749 | M: Guenter Roeck <linux@roeck-us.net> |
5750 | L: lm-sensors@lm-sensors.org |
5751 | S: Maintained |
5752 | F: Documentation/hwmon/max6697 |
5753 | F: Documentation/devicetree/bindings/i2c/max6697.txt |
5754 | F: drivers/hwmon/max6697.c |
5755 | F: include/linux/platform_data/max6697.h |
5756 | |
5757 | MAXIRADIO FM RADIO RECEIVER DRIVER |
5758 | M: Hans Verkuil <hverkuil@xs4all.nl> |
5759 | L: linux-media@vger.kernel.org |
5760 | T: git git://linuxtv.org/media_tree.git |
5761 | W: http://linuxtv.org |
5762 | S: Maintained |
5763 | F: drivers/media/radio/radio-maxiradio* |
5764 | |
5765 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
5766 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
5767 | P: LinuxTV.org Project |
5768 | L: linux-media@vger.kernel.org |
5769 | W: http://linuxtv.org |
5770 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
5771 | T: git git://linuxtv.org/media_tree.git |
5772 | S: Maintained |
5773 | F: Documentation/dvb/ |
5774 | F: Documentation/video4linux/ |
5775 | F: Documentation/DocBook/media/ |
5776 | F: drivers/media/ |
5777 | F: drivers/staging/media/ |
5778 | F: include/media/ |
5779 | F: include/uapi/linux/dvb/ |
5780 | F: include/uapi/linux/videodev2.h |
5781 | F: include/uapi/linux/media.h |
5782 | F: include/uapi/linux/v4l2-* |
5783 | F: include/uapi/linux/meye.h |
5784 | F: include/uapi/linux/ivtv* |
5785 | F: include/uapi/linux/uvcvideo.h |
5786 | |
5787 | MEDIAVISION PRO MOVIE STUDIO DRIVER |
5788 | M: Hans Verkuil <hverkuil@xs4all.nl> |
5789 | L: linux-media@vger.kernel.org |
5790 | T: git git://linuxtv.org/media_tree.git |
5791 | W: http://linuxtv.org |
5792 | S: Odd Fixes |
5793 | F: drivers/media/parport/pms* |
5794 | |
5795 | MEGARAID SCSI DRIVERS |
5796 | M: Neela Syam Kolli <megaraidlinux@lsi.com> |
5797 | L: linux-scsi@vger.kernel.org |
5798 | W: http://megaraid.lsilogic.com |
5799 | S: Maintained |
5800 | F: Documentation/scsi/megaraid.txt |
5801 | F: drivers/scsi/megaraid.* |
5802 | F: drivers/scsi/megaraid/ |
5803 | |
5804 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5805 | M: Amir Vadai <amirv@mellanox.com> |
5806 | L: netdev@vger.kernel.org |
5807 | S: Supported |
5808 | W: http://www.mellanox.com |
5809 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
5810 | F: drivers/net/ethernet/mellanox/mlx4/en_* |
5811 | |
5812 | MEMORY MANAGEMENT |
5813 | L: linux-mm@kvack.org |
5814 | W: http://www.linux-mm.org |
5815 | S: Maintained |
5816 | F: include/linux/mm.h |
5817 | F: include/linux/gfp.h |
5818 | F: include/linux/mmzone.h |
5819 | F: include/linux/memory_hotplug.h |
5820 | F: include/linux/vmalloc.h |
5821 | F: mm/ |
5822 | |
5823 | MEMORY TECHNOLOGY DEVICES (MTD) |
5824 | M: David Woodhouse <dwmw2@infradead.org> |
5825 | M: Brian Norris <computersforpeace@gmail.com> |
5826 | L: linux-mtd@lists.infradead.org |
5827 | W: http://www.linux-mtd.infradead.org/ |
5828 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ |
5829 | T: git git://git.infradead.org/linux-mtd.git |
5830 | S: Maintained |
5831 | F: drivers/mtd/ |
5832 | F: include/linux/mtd/ |
5833 | F: include/uapi/mtd/ |
5834 | |
5835 | MEN A21 WATCHDOG DRIVER |
5836 | M: Johannes Thumshirn <johannes.thumshirn@men.de> |
5837 | L: linux-watchdog@vger.kernel.org |
5838 | S: Supported |
5839 | F: drivers/watchdog/mena21_wdt.c |
5840 | |
5841 | MEN CHAMELEON BUS (mcb) |
5842 | M: Johannes Thumshirn <johannes.thumshirn@men.de> |
5843 | S: Supported |
5844 | F: drivers/mcb/ |
5845 | F: include/linux/mcb.h |
5846 | |
5847 | METAG ARCHITECTURE |
5848 | M: James Hogan <james.hogan@imgtec.com> |
5849 | L: linux-metag@vger.kernel.org |
5850 | S: Supported |
5851 | F: arch/metag/ |
5852 | F: Documentation/metag/ |
5853 | F: Documentation/devicetree/bindings/metag/ |
5854 | F: drivers/clocksource/metag_generic.c |
5855 | F: drivers/irqchip/irq-metag.c |
5856 | F: drivers/irqchip/irq-metag-ext.c |
5857 | F: drivers/tty/metag_da.c |
5858 | F: fs/imgdafs/ |
5859 | |
5860 | MICROBLAZE ARCHITECTURE |
5861 | M: Michal Simek <monstr@monstr.eu> |
5862 | W: http://www.monstr.eu/fdt/ |
5863 | T: git git://git.monstr.eu/linux-2.6-microblaze.git |
5864 | S: Supported |
5865 | F: arch/microblaze/ |
5866 | |
5867 | MICROTEK X6 SCANNER |
5868 | M: Oliver Neukum <oliver@neukum.org> |
5869 | S: Maintained |
5870 | F: drivers/usb/image/microtek.* |
5871 | |
5872 | MIPS |
5873 | M: Ralf Baechle <ralf@linux-mips.org> |
5874 | L: linux-mips@linux-mips.org |
5875 | W: http://www.linux-mips.org/ |
5876 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
5877 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
5878 | S: Supported |
5879 | F: Documentation/mips/ |
5880 | F: arch/mips/ |
5881 | |
5882 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
5883 | M: Hans Verkuil <hverkuil@xs4all.nl> |
5884 | L: linux-media@vger.kernel.org |
5885 | T: git git://linuxtv.org/media_tree.git |
5886 | W: http://linuxtv.org |
5887 | S: Odd Fixes |
5888 | F: drivers/media/radio/radio-miropcm20* |
5889 | |
5890 | Mellanox MLX5 core VPI driver |
5891 | M: Eli Cohen <eli@mellanox.com> |
5892 | L: netdev@vger.kernel.org |
5893 | L: linux-rdma@vger.kernel.org |
5894 | W: http://www.mellanox.com |
5895 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
5896 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
5897 | T: git git://openfabrics.org/~eli/connect-ib.git |
5898 | S: Supported |
5899 | F: drivers/net/ethernet/mellanox/mlx5/core/ |
5900 | F: include/linux/mlx5/ |
5901 | |
5902 | Mellanox MLX5 IB driver |
5903 | M: Eli Cohen <eli@mellanox.com> |
5904 | L: linux-rdma@vger.kernel.org |
5905 | W: http://www.mellanox.com |
5906 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
5907 | T: git git://openfabrics.org/~eli/connect-ib.git |
5908 | S: Supported |
5909 | F: include/linux/mlx5/ |
5910 | F: drivers/infiniband/hw/mlx5/ |
5911 | |
5912 | MODULE SUPPORT |
5913 | M: Rusty Russell <rusty@rustcorp.com.au> |
5914 | S: Maintained |
5915 | F: include/linux/module.h |
5916 | F: kernel/module.c |
5917 | |
5918 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER |
5919 | W: http://popies.net/meye/ |
5920 | S: Orphan |
5921 | F: Documentation/video4linux/meye.txt |
5922 | F: drivers/media/pci/meye/ |
5923 | F: include/uapi/linux/meye.h |
5924 | |
5925 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
5926 | M: Jiri Slaby <jirislaby@gmail.com> |
5927 | S: Maintained |
5928 | F: Documentation/serial/moxa-smartio |
5929 | F: drivers/tty/mxser.* |
5930 | |
5931 | MR800 AVERMEDIA USB FM RADIO DRIVER |
5932 | M: Alexey Klimov <klimov.linux@gmail.com> |
5933 | L: linux-media@vger.kernel.org |
5934 | T: git git://linuxtv.org/media_tree.git |
5935 | S: Maintained |
5936 | F: drivers/media/radio/radio-mr800.c |
5937 | |
5938 | MSI LAPTOP SUPPORT |
5939 | M: "Lee, Chun-Yi" <jlee@suse.com> |
5940 | L: platform-driver-x86@vger.kernel.org |
5941 | S: Maintained |
5942 | F: drivers/platform/x86/msi-laptop.c |
5943 | |
5944 | MSI WMI SUPPORT |
5945 | M: Anisse Astier <anisse@astier.eu> |
5946 | L: platform-driver-x86@vger.kernel.org |
5947 | S: Supported |
5948 | F: drivers/platform/x86/msi-wmi.c |
5949 | |
5950 | MSI001 MEDIA DRIVER |
5951 | M: Antti Palosaari <crope@iki.fi> |
5952 | L: linux-media@vger.kernel.org |
5953 | W: http://linuxtv.org/ |
5954 | W: http://palosaari.fi/linux/ |
5955 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
5956 | T: git git://linuxtv.org/anttip/media_tree.git |
5957 | S: Maintained |
5958 | F: drivers/staging/media/msi3101/msi001* |
5959 | |
5960 | MSI3101 MEDIA DRIVER |
5961 | M: Antti Palosaari <crope@iki.fi> |
5962 | L: linux-media@vger.kernel.org |
5963 | W: http://linuxtv.org/ |
5964 | W: http://palosaari.fi/linux/ |
5965 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
5966 | T: git git://linuxtv.org/anttip/media_tree.git |
5967 | S: Maintained |
5968 | F: drivers/staging/media/msi3101/sdr-msi3101* |
5969 | |
5970 | MT9M032 APTINA SENSOR DRIVER |
5971 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
5972 | L: linux-media@vger.kernel.org |
5973 | T: git git://linuxtv.org/media_tree.git |
5974 | S: Maintained |
5975 | F: drivers/media/i2c/mt9m032.c |
5976 | F: include/media/mt9m032.h |
5977 | |
5978 | MT9P031 APTINA CAMERA SENSOR |
5979 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
5980 | L: linux-media@vger.kernel.org |
5981 | T: git git://linuxtv.org/media_tree.git |
5982 | S: Maintained |
5983 | F: drivers/media/i2c/mt9p031.c |
5984 | F: include/media/mt9p031.h |
5985 | |
5986 | MT9T001 APTINA CAMERA SENSOR |
5987 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
5988 | L: linux-media@vger.kernel.org |
5989 | T: git git://linuxtv.org/media_tree.git |
5990 | S: Maintained |
5991 | F: drivers/media/i2c/mt9t001.c |
5992 | F: include/media/mt9t001.h |
5993 | |
5994 | MT9V032 APTINA CAMERA SENSOR |
5995 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
5996 | L: linux-media@vger.kernel.org |
5997 | T: git git://linuxtv.org/media_tree.git |
5998 | S: Maintained |
5999 | F: drivers/media/i2c/mt9v032.c |
6000 | F: include/media/mt9v032.h |
6001 | |
6002 | MULTIFUNCTION DEVICES (MFD) |
6003 | M: Samuel Ortiz <sameo@linux.intel.com> |
6004 | M: Lee Jones <lee.jones@linaro.org> |
6005 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git |
6006 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git |
6007 | S: Supported |
6008 | F: drivers/mfd/ |
6009 | F: include/linux/mfd/ |
6010 | |
6011 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
6012 | M: Chris Ball <chris@printf.net> |
6013 | M: Ulf Hansson <ulf.hansson@linaro.org> |
6014 | L: linux-mmc@vger.kernel.org |
6015 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
6016 | T: git git://git.linaro.org/people/ulf.hansson/mmc.git |
6017 | S: Maintained |
6018 | F: drivers/mmc/ |
6019 | F: include/linux/mmc/ |
6020 | F: include/uapi/linux/mmc/ |
6021 | |
6022 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
6023 | S: Orphan |
6024 | F: drivers/mmc/host/mmc_spi.c |
6025 | F: include/linux/spi/mmc_spi.h |
6026 | |
6027 | MULTISOUND SOUND DRIVER |
6028 | M: Andrew Veliath <andrewtv@usa.net> |
6029 | S: Maintained |
6030 | F: Documentation/sound/oss/MultiSound |
6031 | F: sound/oss/msnd* |
6032 | |
6033 | MULTITECH MULTIPORT CARD (ISICOM) |
6034 | S: Orphan |
6035 | F: drivers/tty/isicom.c |
6036 | F: include/linux/isicom.h |
6037 | |
6038 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
6039 | M: Felipe Balbi <balbi@ti.com> |
6040 | L: linux-usb@vger.kernel.org |
6041 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
6042 | S: Maintained |
6043 | F: drivers/usb/musb/ |
6044 | |
6045 | MXL5007T MEDIA DRIVER |
6046 | M: Michael Krufky <mkrufky@linuxtv.org> |
6047 | L: linux-media@vger.kernel.org |
6048 | W: http://linuxtv.org/ |
6049 | W: http://github.com/mkrufky |
6050 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
6051 | T: git git://linuxtv.org/mkrufky/tuners.git |
6052 | S: Maintained |
6053 | F: drivers/media/tuners/mxl5007t.* |
6054 | |
6055 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
6056 | M: Hyong-Youb Kim <hykim@myri.com> |
6057 | L: netdev@vger.kernel.org |
6058 | W: https://www.myricom.com/support/downloads/myri10ge.html |
6059 | S: Supported |
6060 | F: drivers/net/ethernet/myricom/myri10ge/ |
6061 | |
6062 | NATSEMI ETHERNET DRIVER (DP8381x) |
6063 | S: Orphan |
6064 | F: drivers/net/ethernet/natsemi/natsemi.c |
6065 | |
6066 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
6067 | M: Daniel Mack <zonque@gmail.com> |
6068 | S: Maintained |
6069 | L: alsa-devel@alsa-project.org |
6070 | W: http://www.native-instruments.com |
6071 | F: sound/usb/caiaq/ |
6072 | |
6073 | NCP FILESYSTEM |
6074 | M: Petr Vandrovec <petr@vandrovec.name> |
6075 | S: Odd Fixes |
6076 | F: fs/ncpfs/ |
6077 | |
6078 | NCR 5380 SCSI DRIVERS |
6079 | M: Finn Thain <fthain@telegraphics.com.au> |
6080 | M: Michael Schmitz <schmitzmic@gmail.com> |
6081 | L: linux-scsi@vger.kernel.org |
6082 | S: Maintained |
6083 | F: Documentation/scsi/g_NCR5380.txt |
6084 | F: drivers/scsi/NCR5380.* |
6085 | F: drivers/scsi/arm/cumana_1.c |
6086 | F: drivers/scsi/arm/oak.c |
6087 | F: drivers/scsi/atari_NCR5380.c |
6088 | F: drivers/scsi/atari_scsi.* |
6089 | F: drivers/scsi/dmx3191d.c |
6090 | F: drivers/scsi/dtc.* |
6091 | F: drivers/scsi/g_NCR5380.* |
6092 | F: drivers/scsi/g_NCR5380_mmio.c |
6093 | F: drivers/scsi/mac_scsi.* |
6094 | F: drivers/scsi/pas16.* |
6095 | F: drivers/scsi/sun3_NCR5380.c |
6096 | F: drivers/scsi/sun3_scsi.* |
6097 | F: drivers/scsi/sun3_scsi_vme.c |
6098 | F: drivers/scsi/t128.* |
6099 | |
6100 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
6101 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
6102 | L: linux-scsi@vger.kernel.org |
6103 | S: Maintained |
6104 | F: drivers/scsi/NCR_D700.* |
6105 | |
6106 | NCT6775 HARDWARE MONITOR DRIVER |
6107 | M: Guenter Roeck <linux@roeck-us.net> |
6108 | L: lm-sensors@lm-sensors.org |
6109 | S: Maintained |
6110 | F: Documentation/hwmon/nct6775 |
6111 | F: drivers/hwmon/nct6775.c |
6112 | |
6113 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
6114 | M: Faisal Latif <faisal.latif@intel.com> |
6115 | L: linux-rdma@vger.kernel.org |
6116 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
6117 | S: Supported |
6118 | F: drivers/infiniband/hw/nes/ |
6119 | |
6120 | NETEM NETWORK EMULATOR |
6121 | M: Stephen Hemminger <stephen@networkplumber.org> |
6122 | L: netem@lists.linux-foundation.org |
6123 | S: Maintained |
6124 | F: net/sched/sch_netem.c |
6125 | |
6126 | NETERION 10GbE DRIVERS (s2io/vxge) |
6127 | M: Jon Mason <jdmason@kudzu.us> |
6128 | L: netdev@vger.kernel.org |
6129 | S: Supported |
6130 | F: Documentation/networking/s2io.txt |
6131 | F: Documentation/networking/vxge.txt |
6132 | F: drivers/net/ethernet/neterion/ |
6133 | |
6134 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
6135 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
6136 | M: Patrick McHardy <kaber@trash.net> |
6137 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
6138 | L: netfilter-devel@vger.kernel.org |
6139 | L: coreteam@netfilter.org |
6140 | W: http://www.netfilter.org/ |
6141 | W: http://www.iptables.org/ |
6142 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
6143 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git |
6144 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git |
6145 | S: Supported |
6146 | F: include/linux/netfilter* |
6147 | F: include/linux/netfilter/ |
6148 | F: include/net/netfilter/ |
6149 | F: include/uapi/linux/netfilter* |
6150 | F: include/uapi/linux/netfilter/ |
6151 | F: net/*/netfilter.c |
6152 | F: net/*/netfilter/ |
6153 | F: net/netfilter/ |
6154 | |
6155 | NETLABEL |
6156 | M: Paul Moore <paul@paul-moore.com> |
6157 | W: http://netlabel.sf.net |
6158 | L: netdev@vger.kernel.org |
6159 | S: Maintained |
6160 | F: Documentation/netlabel/ |
6161 | F: include/net/netlabel.h |
6162 | F: net/netlabel/ |
6163 | |
6164 | NETROM NETWORK LAYER |
6165 | M: Ralf Baechle <ralf@linux-mips.org> |
6166 | L: linux-hams@vger.kernel.org |
6167 | W: http://www.linux-ax25.org/ |
6168 | S: Maintained |
6169 | F: include/net/netrom.h |
6170 | F: include/uapi/linux/netrom.h |
6171 | F: net/netrom/ |
6172 | |
6173 | NETWORK BLOCK DEVICE (NBD) |
6174 | M: Paul Clements <Paul.Clements@steeleye.com> |
6175 | S: Maintained |
6176 | L: nbd-general@lists.sourceforge.net |
6177 | F: Documentation/blockdev/nbd.txt |
6178 | F: drivers/block/nbd.c |
6179 | F: include/linux/nbd.h |
6180 | F: include/uapi/linux/nbd.h |
6181 | |
6182 | NETWORK DROP MONITOR |
6183 | M: Neil Horman <nhorman@tuxdriver.com> |
6184 | L: netdev@vger.kernel.org |
6185 | S: Maintained |
6186 | W: https://fedorahosted.org/dropwatch/ |
6187 | F: net/core/drop_monitor.c |
6188 | |
6189 | NETWORKING [GENERAL] |
6190 | M: "David S. Miller" <davem@davemloft.net> |
6191 | L: netdev@vger.kernel.org |
6192 | W: http://www.linuxfoundation.org/en/Net |
6193 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
6194 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6195 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git |
6196 | S: Maintained |
6197 | F: net/ |
6198 | F: include/net/ |
6199 | F: include/linux/in.h |
6200 | F: include/linux/net.h |
6201 | F: include/linux/netdevice.h |
6202 | F: include/uapi/linux/in.h |
6203 | F: include/uapi/linux/net.h |
6204 | F: include/uapi/linux/netdevice.h |
6205 | F: tools/net/ |
6206 | F: tools/testing/selftests/net/ |
6207 | F: lib/random32.c |
6208 | F: lib/test_bpf.c |
6209 | |
6210 | NETWORKING [IPv4/IPv6] |
6211 | M: "David S. Miller" <davem@davemloft.net> |
6212 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> |
6213 | M: James Morris <jmorris@namei.org> |
6214 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> |
6215 | M: Patrick McHardy <kaber@trash.net> |
6216 | L: netdev@vger.kernel.org |
6217 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6218 | S: Maintained |
6219 | F: net/ipv4/ |
6220 | F: net/ipv6/ |
6221 | F: include/net/ip* |
6222 | F: arch/x86/net/* |
6223 | |
6224 | NETWORKING [IPSEC] |
6225 | M: Steffen Klassert <steffen.klassert@secunet.com> |
6226 | M: Herbert Xu <herbert@gondor.apana.org.au> |
6227 | M: "David S. Miller" <davem@davemloft.net> |
6228 | L: netdev@vger.kernel.org |
6229 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
6230 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git |
6231 | S: Maintained |
6232 | F: net/core/flow.c |
6233 | F: net/xfrm/ |
6234 | F: net/key/ |
6235 | F: net/ipv4/xfrm* |
6236 | F: net/ipv4/esp4.c |
6237 | F: net/ipv4/ah4.c |
6238 | F: net/ipv4/ipcomp.c |
6239 | F: net/ipv4/ip_vti.c |
6240 | F: net/ipv6/xfrm* |
6241 | F: net/ipv6/esp6.c |
6242 | F: net/ipv6/ah6.c |
6243 | F: net/ipv6/ipcomp6.c |
6244 | F: net/ipv6/ip6_vti.c |
6245 | F: include/uapi/linux/xfrm.h |
6246 | F: include/net/xfrm.h |
6247 | |
6248 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
6249 | M: Paul Moore <paul@paul-moore.com> |
6250 | L: netdev@vger.kernel.org |
6251 | S: Maintained |
6252 | |
6253 | NETWORKING [WIRELESS] |
6254 | M: "John W. Linville" <linville@tuxdriver.com> |
6255 | L: linux-wireless@vger.kernel.org |
6256 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
6257 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
6258 | S: Maintained |
6259 | F: net/mac80211/ |
6260 | F: net/rfkill/ |
6261 | F: net/wireless/ |
6262 | F: include/net/ieee80211* |
6263 | F: include/linux/wireless.h |
6264 | F: include/uapi/linux/wireless.h |
6265 | F: include/net/iw_handler.h |
6266 | F: drivers/net/wireless/ |
6267 | |
6268 | NETWORKING DRIVERS |
6269 | L: netdev@vger.kernel.org |
6270 | W: http://www.linuxfoundation.org/en/Net |
6271 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
6272 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6273 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git |
6274 | S: Odd Fixes |
6275 | F: drivers/net/ |
6276 | F: include/linux/if_* |
6277 | F: include/linux/netdevice.h |
6278 | F: include/linux/arcdevice.h |
6279 | F: include/linux/etherdevice.h |
6280 | F: include/linux/fcdevice.h |
6281 | F: include/linux/fddidevice.h |
6282 | F: include/linux/hippidevice.h |
6283 | F: include/linux/inetdevice.h |
6284 | F: include/uapi/linux/if_* |
6285 | F: include/uapi/linux/netdevice.h |
6286 | |
6287 | NETXEN (1/10) GbE SUPPORT |
6288 | M: Manish Chopra <manish.chopra@qlogic.com> |
6289 | M: Sony Chacko <sony.chacko@qlogic.com> |
6290 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> |
6291 | L: netdev@vger.kernel.org |
6292 | W: http://www.qlogic.com |
6293 | S: Supported |
6294 | F: drivers/net/ethernet/qlogic/netxen/ |
6295 | |
6296 | NFC SUBSYSTEM |
6297 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> |
6298 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> |
6299 | M: Samuel Ortiz <sameo@linux.intel.com> |
6300 | L: linux-wireless@vger.kernel.org |
6301 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
6302 | S: Supported |
6303 | F: net/nfc/ |
6304 | F: include/net/nfc/ |
6305 | F: include/uapi/linux/nfc.h |
6306 | F: drivers/nfc/ |
6307 | F: include/linux/platform_data/pn544.h |
6308 | F: Documentation/devicetree/bindings/net/nfc/ |
6309 | |
6310 | NFS, SUNRPC, AND LOCKD CLIENTS |
6311 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
6312 | L: linux-nfs@vger.kernel.org |
6313 | W: http://client.linux-nfs.org |
6314 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
6315 | S: Maintained |
6316 | F: fs/lockd/ |
6317 | F: fs/nfs/ |
6318 | F: fs/nfs_common/ |
6319 | F: net/sunrpc/ |
6320 | F: include/linux/lockd/ |
6321 | F: include/linux/nfs* |
6322 | F: include/linux/sunrpc/ |
6323 | F: include/uapi/linux/nfs* |
6324 | F: include/uapi/linux/sunrpc/ |
6325 | |
6326 | NILFS2 FILESYSTEM |
6327 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
6328 | L: linux-nilfs@vger.kernel.org |
6329 | W: http://nilfs.sourceforge.net/ |
6330 | T: git git://github.com/konis/nilfs2.git |
6331 | S: Supported |
6332 | F: Documentation/filesystems/nilfs2.txt |
6333 | F: fs/nilfs2/ |
6334 | F: include/linux/nilfs2_fs.h |
6335 | |
6336 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
6337 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
6338 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6339 | S: Maintained |
6340 | F: Documentation/scsi/NinjaSCSI.txt |
6341 | F: drivers/scsi/pcmcia/nsp_* |
6342 | |
6343 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER |
6344 | M: GOTO Masanori <gotom@debian.or.jp> |
6345 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
6346 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6347 | S: Maintained |
6348 | F: Documentation/scsi/NinjaSCSI.txt |
6349 | F: drivers/scsi/nsp32* |
6350 | |
6351 | NTB DRIVER |
6352 | M: Jon Mason <jon.mason@intel.com> |
6353 | S: Supported |
6354 | W: https://github.com/jonmason/ntb/wiki |
6355 | T: git git://github.com/jonmason/ntb.git |
6356 | F: drivers/ntb/ |
6357 | F: drivers/net/ntb_netdev.c |
6358 | F: include/linux/ntb.h |
6359 | |
6360 | NTFS FILESYSTEM |
6361 | M: Anton Altaparmakov <anton@tuxera.com> |
6362 | L: linux-ntfs-dev@lists.sourceforge.net |
6363 | W: http://www.tuxera.com/ |
6364 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
6365 | S: Supported |
6366 | F: Documentation/filesystems/ntfs.txt |
6367 | F: fs/ntfs/ |
6368 | |
6369 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
6370 | M: Antonino Daplas <adaplas@gmail.com> |
6371 | L: linux-fbdev@vger.kernel.org |
6372 | S: Maintained |
6373 | F: drivers/video/riva/ |
6374 | F: drivers/video/nvidia/ |
6375 | |
6376 | NVM EXPRESS DRIVER |
6377 | M: Matthew Wilcox <willy@linux.intel.com> |
6378 | L: linux-nvme@lists.infradead.org |
6379 | T: git git://git.infradead.org/users/willy/linux-nvme.git |
6380 | S: Supported |
6381 | F: drivers/block/nvme* |
6382 | F: include/linux/nvme.h |
6383 | |
6384 | NXP TDA998X DRM DRIVER |
6385 | M: Russell King <rmk+kernel@arm.linux.org.uk> |
6386 | S: Supported |
6387 | F: drivers/gpu/drm/i2c/tda998x_drv.c |
6388 | F: include/drm/i2c/tda998x.h |
6389 | |
6390 | OMAP SUPPORT |
6391 | M: Tony Lindgren <tony@atomide.com> |
6392 | L: linux-omap@vger.kernel.org |
6393 | W: http://www.muru.com/linux/omap/ |
6394 | W: http://linux.omap.com/ |
6395 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
6396 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
6397 | S: Maintained |
6398 | F: arch/arm/*omap*/ |
6399 | F: drivers/i2c/busses/i2c-omap.c |
6400 | F: include/linux/i2c-omap.h |
6401 | |
6402 | OMAP DEVICE TREE SUPPORT |
6403 | M: Benoît Cousson <bcousson@baylibre.com> |
6404 | M: Tony Lindgren <tony@atomide.com> |
6405 | L: linux-omap@vger.kernel.org |
6406 | L: devicetree@vger.kernel.org |
6407 | S: Maintained |
6408 | F: arch/arm/boot/dts/*omap* |
6409 | F: arch/arm/boot/dts/*am3* |
6410 | |
6411 | OMAP CLOCK FRAMEWORK SUPPORT |
6412 | M: Paul Walmsley <paul@pwsan.com> |
6413 | L: linux-omap@vger.kernel.org |
6414 | S: Maintained |
6415 | F: arch/arm/*omap*/*clock* |
6416 | |
6417 | OMAP POWER MANAGEMENT SUPPORT |
6418 | M: Kevin Hilman <khilman@deeprootsystems.com> |
6419 | L: linux-omap@vger.kernel.org |
6420 | S: Maintained |
6421 | F: arch/arm/*omap*/*pm* |
6422 | F: drivers/cpufreq/omap-cpufreq.c |
6423 | |
6424 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
6425 | M: Rajendra Nayak <rnayak@ti.com> |
6426 | M: Paul Walmsley <paul@pwsan.com> |
6427 | L: linux-omap@vger.kernel.org |
6428 | S: Maintained |
6429 | F: arch/arm/mach-omap2/prm* |
6430 | |
6431 | OMAP AUDIO SUPPORT |
6432 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
6433 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
6434 | L: alsa-devel@alsa-project.org (subscribers-only) |
6435 | L: linux-omap@vger.kernel.org |
6436 | S: Maintained |
6437 | F: sound/soc/omap/ |
6438 | |
6439 | OMAP FRAMEBUFFER SUPPORT |
6440 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
6441 | L: linux-fbdev@vger.kernel.org |
6442 | L: linux-omap@vger.kernel.org |
6443 | S: Maintained |
6444 | F: drivers/video/omap/ |
6445 | |
6446 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
6447 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
6448 | L: linux-omap@vger.kernel.org |
6449 | L: linux-fbdev@vger.kernel.org |
6450 | S: Maintained |
6451 | F: drivers/video/omap2/ |
6452 | F: Documentation/arm/OMAP/DSS |
6453 | |
6454 | OMAP HARDWARE SPINLOCK SUPPORT |
6455 | M: Ohad Ben-Cohen <ohad@wizery.com> |
6456 | L: linux-omap@vger.kernel.org |
6457 | S: Maintained |
6458 | F: drivers/hwspinlock/omap_hwspinlock.c |
6459 | F: arch/arm/mach-omap2/hwspinlock.c |
6460 | |
6461 | OMAP MMC SUPPORT |
6462 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
6463 | L: linux-omap@vger.kernel.org |
6464 | S: Maintained |
6465 | F: drivers/mmc/host/omap.c |
6466 | |
6467 | OMAP HS MMC SUPPORT |
6468 | M: Balaji T K <balajitk@ti.com> |
6469 | L: linux-mmc@vger.kernel.org |
6470 | L: linux-omap@vger.kernel.org |
6471 | S: Maintained |
6472 | F: drivers/mmc/host/omap_hsmmc.c |
6473 | |
6474 | OMAP RANDOM NUMBER GENERATOR SUPPORT |
6475 | M: Deepak Saxena <dsaxena@plexity.net> |
6476 | S: Maintained |
6477 | F: drivers/char/hw_random/omap-rng.c |
6478 | |
6479 | OMAP HWMOD SUPPORT |
6480 | M: Benoît Cousson <bcousson@baylibre.com> |
6481 | M: Paul Walmsley <paul@pwsan.com> |
6482 | L: linux-omap@vger.kernel.org |
6483 | S: Maintained |
6484 | F: arch/arm/mach-omap2/omap_hwmod.* |
6485 | |
6486 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
6487 | M: Benoît Cousson <bcousson@baylibre.com> |
6488 | L: linux-omap@vger.kernel.org |
6489 | S: Maintained |
6490 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c |
6491 | |
6492 | OMAP IMAGE SIGNAL PROCESSOR (ISP) |
6493 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
6494 | L: linux-media@vger.kernel.org |
6495 | S: Maintained |
6496 | F: drivers/media/platform/omap3isp/ |
6497 | |
6498 | OMAP USB SUPPORT |
6499 | M: Felipe Balbi <balbi@ti.com> |
6500 | L: linux-usb@vger.kernel.org |
6501 | L: linux-omap@vger.kernel.org |
6502 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
6503 | S: Maintained |
6504 | F: drivers/usb/*/*omap* |
6505 | F: arch/arm/*omap*/usb* |
6506 | |
6507 | OMAP GPIO DRIVER |
6508 | M: Javier Martinez Canillas <javier@dowhile0.org> |
6509 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> |
6510 | M: Kevin Hilman <khilman@deeprootsystems.com> |
6511 | L: linux-omap@vger.kernel.org |
6512 | S: Maintained |
6513 | F: drivers/gpio/gpio-omap.c |
6514 | |
6515 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
6516 | M: Mark Jackson <mpfj@newflow.co.uk> |
6517 | L: linux-omap@vger.kernel.org |
6518 | S: Maintained |
6519 | F: arch/arm/boot/dts/am335x-nano.dts |
6520 | |
6521 | OMFS FILESYSTEM |
6522 | M: Bob Copeland <me@bobcopeland.com> |
6523 | L: linux-karma-devel@lists.sourceforge.net |
6524 | S: Maintained |
6525 | F: Documentation/filesystems/omfs.txt |
6526 | F: fs/omfs/ |
6527 | |
6528 | OMNIKEY CARDMAN 4000 DRIVER |
6529 | M: Harald Welte <laforge@gnumonks.org> |
6530 | S: Maintained |
6531 | F: drivers/char/pcmcia/cm4000_cs.c |
6532 | F: include/linux/cm4000_cs.h |
6533 | F: include/uapi/linux/cm4000_cs.h |
6534 | |
6535 | OMNIKEY CARDMAN 4040 DRIVER |
6536 | M: Harald Welte <laforge@gnumonks.org> |
6537 | S: Maintained |
6538 | F: drivers/char/pcmcia/cm4040_cs.* |
6539 | |
6540 | OMNIVISION OV7670 SENSOR DRIVER |
6541 | M: Jonathan Corbet <corbet@lwn.net> |
6542 | L: linux-media@vger.kernel.org |
6543 | T: git git://linuxtv.org/media_tree.git |
6544 | S: Maintained |
6545 | F: drivers/media/i2c/ov7670.c |
6546 | |
6547 | ONENAND FLASH DRIVER |
6548 | M: Kyungmin Park <kyungmin.park@samsung.com> |
6549 | L: linux-mtd@lists.infradead.org |
6550 | S: Maintained |
6551 | F: drivers/mtd/onenand/ |
6552 | F: include/linux/mtd/onenand*.h |
6553 | |
6554 | ONSTREAM SCSI TAPE DRIVER |
6555 | M: Willem Riede <osst@riede.org> |
6556 | L: osst-users@lists.sourceforge.net |
6557 | L: linux-scsi@vger.kernel.org |
6558 | S: Maintained |
6559 | F: Documentation/scsi/osst.txt |
6560 | F: drivers/scsi/osst.* |
6561 | F: drivers/scsi/osst_*.h |
6562 | F: drivers/scsi/st.h |
6563 | |
6564 | OPENCORES I2C BUS DRIVER |
6565 | M: Peter Korsgaard <jacmet@sunsite.dk> |
6566 | L: linux-i2c@vger.kernel.org |
6567 | S: Maintained |
6568 | F: Documentation/i2c/busses/i2c-ocores |
6569 | F: drivers/i2c/busses/i2c-ocores.c |
6570 | |
6571 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
6572 | M: Grant Likely <grant.likely@linaro.org> |
6573 | M: Rob Herring <robh+dt@kernel.org> |
6574 | L: devicetree@vger.kernel.org |
6575 | W: http://fdt.secretlab.ca |
6576 | T: git git://git.secretlab.ca/git/linux-2.6.git |
6577 | S: Maintained |
6578 | F: drivers/of/ |
6579 | F: include/linux/of*.h |
6580 | F: scripts/dtc/ |
6581 | K: of_get_property |
6582 | K: of_match_table |
6583 | |
6584 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
6585 | M: Rob Herring <robh+dt@kernel.org> |
6586 | M: Pawel Moll <pawel.moll@arm.com> |
6587 | M: Mark Rutland <mark.rutland@arm.com> |
6588 | M: Ian Campbell <ijc+devicetree@hellion.org.uk> |
6589 | M: Kumar Gala <galak@codeaurora.org> |
6590 | L: devicetree@vger.kernel.org |
6591 | S: Maintained |
6592 | F: Documentation/devicetree/ |
6593 | F: arch/*/boot/dts/ |
6594 | F: include/dt-bindings/ |
6595 | |
6596 | OPENRISC ARCHITECTURE |
6597 | M: Jonas Bonn <jonas@southpole.se> |
6598 | W: http://openrisc.net |
6599 | L: linux@lists.openrisc.net (moderated for non-subscribers) |
6600 | S: Maintained |
6601 | T: git git://openrisc.net/~jonas/linux |
6602 | F: arch/openrisc/ |
6603 | |
6604 | OPENVSWITCH |
6605 | M: Pravin Shelar <pshelar@nicira.com> |
6606 | L: dev@openvswitch.org |
6607 | W: http://openvswitch.org |
6608 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pshelar/openvswitch.git |
6609 | S: Maintained |
6610 | F: net/openvswitch/ |
6611 | |
6612 | OPL4 DRIVER |
6613 | M: Clemens Ladisch <clemens@ladisch.de> |
6614 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
6615 | T: git git://git.alsa-project.org/alsa-kernel.git |
6616 | S: Maintained |
6617 | F: sound/drivers/opl4/ |
6618 | |
6619 | OPROFILE |
6620 | M: Robert Richter <rric@kernel.org> |
6621 | L: oprofile-list@lists.sf.net |
6622 | S: Maintained |
6623 | F: arch/*/include/asm/oprofile*.h |
6624 | F: arch/*/oprofile/ |
6625 | F: drivers/oprofile/ |
6626 | F: include/linux/oprofile.h |
6627 | |
6628 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
6629 | M: Mark Fasheh <mfasheh@suse.com> |
6630 | M: Joel Becker <jlbec@evilplan.org> |
6631 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
6632 | W: http://oss.oracle.com/projects/ocfs2/ |
6633 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
6634 | S: Supported |
6635 | F: Documentation/filesystems/ocfs2.txt |
6636 | F: Documentation/filesystems/dlmfs.txt |
6637 | F: fs/ocfs2/ |
6638 | |
6639 | ORINOCO DRIVER |
6640 | L: linux-wireless@vger.kernel.org |
6641 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
6642 | W: http://www.nongnu.org/orinoco/ |
6643 | S: Orphan |
6644 | F: drivers/net/wireless/orinoco/ |
6645 | |
6646 | OSD LIBRARY and FILESYSTEM |
6647 | M: Boaz Harrosh <bharrosh@panasas.com> |
6648 | M: Benny Halevy <bhalevy@primarydata.com> |
6649 | L: osd-dev@open-osd.org |
6650 | W: http://open-osd.org |
6651 | T: git git://git.open-osd.org/open-osd.git |
6652 | S: Maintained |
6653 | F: drivers/scsi/osd/ |
6654 | F: include/scsi/osd_* |
6655 | F: fs/exofs/ |
6656 | |
6657 | P54 WIRELESS DRIVER |
6658 | M: Christian Lamparter <chunkeey@googlemail.com> |
6659 | L: linux-wireless@vger.kernel.org |
6660 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
6661 | S: Maintained |
6662 | F: drivers/net/wireless/p54/ |
6663 | |
6664 | PA SEMI ETHERNET DRIVER |
6665 | M: Olof Johansson <olof@lixom.net> |
6666 | L: netdev@vger.kernel.org |
6667 | S: Maintained |
6668 | F: drivers/net/ethernet/pasemi/* |
6669 | |
6670 | PA SEMI SMBUS DRIVER |
6671 | M: Olof Johansson <olof@lixom.net> |
6672 | L: linux-i2c@vger.kernel.org |
6673 | S: Maintained |
6674 | F: drivers/i2c/busses/i2c-pasemi.c |
6675 | |
6676 | PADATA PARALLEL EXECUTION MECHANISM |
6677 | M: Steffen Klassert <steffen.klassert@secunet.com> |
6678 | L: linux-crypto@vger.kernel.org |
6679 | S: Maintained |
6680 | F: kernel/padata.c |
6681 | F: include/linux/padata.h |
6682 | F: Documentation/padata.txt |
6683 | |
6684 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
6685 | M: Harald Welte <laforge@gnumonks.org> |
6686 | L: platform-driver-x86@vger.kernel.org |
6687 | S: Maintained |
6688 | F: drivers/platform/x86/panasonic-laptop.c |
6689 | |
6690 | PANASONIC MN10300/AM33/AM34 PORT |
6691 | M: David Howells <dhowells@redhat.com> |
6692 | M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> |
6693 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
6694 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ |
6695 | S: Maintained |
6696 | F: Documentation/mn10300/ |
6697 | F: arch/mn10300/ |
6698 | |
6699 | PARALLEL PORT SUPPORT |
6700 | L: linux-parport@lists.infradead.org (subscribers-only) |
6701 | S: Orphan |
6702 | F: drivers/parport/ |
6703 | F: include/linux/parport*.h |
6704 | F: drivers/char/ppdev.c |
6705 | F: include/uapi/linux/ppdev.h |
6706 | |
6707 | PARAVIRT_OPS INTERFACE |
6708 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
6709 | M: Chris Wright <chrisw@sous-sol.org> |
6710 | M: Alok Kataria <akataria@vmware.com> |
6711 | M: Rusty Russell <rusty@rustcorp.com.au> |
6712 | L: virtualization@lists.linux-foundation.org |
6713 | S: Supported |
6714 | F: Documentation/ia64/paravirt_ops.txt |
6715 | F: arch/*/kernel/paravirt* |
6716 | F: arch/*/include/asm/paravirt.h |
6717 | |
6718 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
6719 | M: Tim Waugh <tim@cyberelk.net> |
6720 | L: linux-parport@lists.infradead.org (subscribers-only) |
6721 | W: http://www.torque.net/linux-pp.html |
6722 | S: Maintained |
6723 | F: Documentation/blockdev/paride.txt |
6724 | F: drivers/block/paride/ |
6725 | |
6726 | PARISC ARCHITECTURE |
6727 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
6728 | M: Helge Deller <deller@gmx.de> |
6729 | L: linux-parisc@vger.kernel.org |
6730 | W: http://www.parisc-linux.org/ |
6731 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
6732 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
6733 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
6734 | S: Maintained |
6735 | F: arch/parisc/ |
6736 | F: Documentation/parisc/ |
6737 | F: drivers/parisc/ |
6738 | F: drivers/char/agp/parisc-agp.c |
6739 | F: drivers/input/serio/gscps2.c |
6740 | F: drivers/parport/parport_gsc.* |
6741 | F: drivers/tty/serial/8250/8250_gsc.c |
6742 | F: drivers/video/sti* |
6743 | F: drivers/video/console/sti* |
6744 | F: drivers/video/logo/logo_parisc* |
6745 | |
6746 | PC87360 HARDWARE MONITORING DRIVER |
6747 | M: Jim Cromie <jim.cromie@gmail.com> |
6748 | L: lm-sensors@lm-sensors.org |
6749 | S: Maintained |
6750 | F: Documentation/hwmon/pc87360 |
6751 | F: drivers/hwmon/pc87360.c |
6752 | |
6753 | PC8736x GPIO DRIVER |
6754 | M: Jim Cromie <jim.cromie@gmail.com> |
6755 | S: Maintained |
6756 | F: drivers/char/pc8736x_gpio.c |
6757 | |
6758 | PC87427 HARDWARE MONITORING DRIVER |
6759 | M: Jean Delvare <jdelvare@suse.de> |
6760 | L: lm-sensors@lm-sensors.org |
6761 | S: Maintained |
6762 | F: Documentation/hwmon/pc87427 |
6763 | F: drivers/hwmon/pc87427.c |
6764 | |
6765 | PCA9532 LED DRIVER |
6766 | M: Riku Voipio <riku.voipio@iki.fi> |
6767 | S: Maintained |
6768 | F: drivers/leds/leds-pca9532.c |
6769 | F: include/linux/leds-pca9532.h |
6770 | |
6771 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
6772 | M: Guenter Roeck <linux@roeck-us.net> |
6773 | L: linux-i2c@vger.kernel.org |
6774 | S: Maintained |
6775 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
6776 | |
6777 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
6778 | M: Khalid Aziz <khalid@gonehiking.org> |
6779 | S: Maintained |
6780 | F: drivers/firmware/pcdp.* |
6781 | |
6782 | PCI ERROR RECOVERY |
6783 | M: Linas Vepstas <linasvepstas@gmail.com> |
6784 | L: linux-pci@vger.kernel.org |
6785 | S: Supported |
6786 | F: Documentation/PCI/pci-error-recovery.txt |
6787 | |
6788 | PCI SUBSYSTEM |
6789 | M: Bjorn Helgaas <bhelgaas@google.com> |
6790 | L: linux-pci@vger.kernel.org |
6791 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
6792 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
6793 | S: Supported |
6794 | F: Documentation/PCI/ |
6795 | F: drivers/pci/ |
6796 | F: include/linux/pci* |
6797 | F: arch/x86/pci/ |
6798 | F: arch/x86/kernel/quirks.c |
6799 | |
6800 | PCI DRIVER FOR IMX6 |
6801 | M: Richard Zhu <r65037@freescale.com> |
6802 | M: Shawn Guo <shawn.guo@freescale.com> |
6803 | L: linux-pci@vger.kernel.org |
6804 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6805 | S: Maintained |
6806 | F: drivers/pci/host/*imx6* |
6807 | |
6808 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
6809 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
6810 | M: Jason Cooper <jason@lakedaemon.net> |
6811 | L: linux-pci@vger.kernel.org |
6812 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6813 | S: Maintained |
6814 | F: drivers/pci/host/*mvebu* |
6815 | |
6816 | PCI DRIVER FOR NVIDIA TEGRA |
6817 | M: Thierry Reding <thierry.reding@gmail.com> |
6818 | L: linux-tegra@vger.kernel.org |
6819 | L: linux-pci@vger.kernel.org |
6820 | S: Supported |
6821 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt |
6822 | F: drivers/pci/host/pci-tegra.c |
6823 | |
6824 | PCI DRIVER FOR RENESAS R-CAR |
6825 | M: Simon Horman <horms@verge.net.au> |
6826 | L: linux-pci@vger.kernel.org |
6827 | L: linux-sh@vger.kernel.org |
6828 | S: Maintained |
6829 | F: drivers/pci/host/*rcar* |
6830 | |
6831 | PCI DRIVER FOR SAMSUNG EXYNOS |
6832 | M: Jingoo Han <jg1.han@samsung.com> |
6833 | L: linux-pci@vger.kernel.org |
6834 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6835 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
6836 | S: Maintained |
6837 | F: drivers/pci/host/pci-exynos.c |
6838 | |
6839 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
6840 | M: Mohit Kumar <mohit.kumar@st.com> |
6841 | M: Jingoo Han <jg1.han@samsung.com> |
6842 | L: linux-pci@vger.kernel.org |
6843 | S: Maintained |
6844 | F: drivers/pci/host/*designware* |
6845 | |
6846 | PCI DRIVER FOR GENERIC OF HOSTS |
6847 | M: Will Deacon <will.deacon@arm.com> |
6848 | L: linux-pci@vger.kernel.org |
6849 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6850 | S: Maintained |
6851 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt |
6852 | F: drivers/pci/host/pci-host-generic.c |
6853 | |
6854 | PCMCIA SUBSYSTEM |
6855 | P: Linux PCMCIA Team |
6856 | L: linux-pcmcia@lists.infradead.org |
6857 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
6858 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
6859 | S: Maintained |
6860 | F: Documentation/pcmcia/ |
6861 | F: drivers/pcmcia/ |
6862 | F: include/pcmcia/ |
6863 | |
6864 | PCNET32 NETWORK DRIVER |
6865 | M: Don Fry <pcnet32@frontier.com> |
6866 | L: netdev@vger.kernel.org |
6867 | S: Maintained |
6868 | F: drivers/net/ethernet/amd/pcnet32.c |
6869 | |
6870 | PCRYPT PARALLEL CRYPTO ENGINE |
6871 | M: Steffen Klassert <steffen.klassert@secunet.com> |
6872 | L: linux-crypto@vger.kernel.org |
6873 | S: Maintained |
6874 | F: crypto/pcrypt.c |
6875 | F: include/crypto/pcrypt.h |
6876 | |
6877 | PER-CPU MEMORY ALLOCATOR |
6878 | M: Tejun Heo <tj@kernel.org> |
6879 | M: Christoph Lameter <cl@linux-foundation.org> |
6880 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
6881 | S: Maintained |
6882 | F: include/linux/percpu*.h |
6883 | F: mm/percpu*.c |
6884 | F: arch/*/include/asm/percpu.h |
6885 | |
6886 | PER-TASK DELAY ACCOUNTING |
6887 | M: Balbir Singh <bsingharora@gmail.com> |
6888 | S: Maintained |
6889 | F: include/linux/delayacct.h |
6890 | F: kernel/delayacct.c |
6891 | |
6892 | PERFORMANCE EVENTS SUBSYSTEM |
6893 | M: Peter Zijlstra <a.p.zijlstra@chello.nl> |
6894 | M: Paul Mackerras <paulus@samba.org> |
6895 | M: Ingo Molnar <mingo@redhat.com> |
6896 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
6897 | L: linux-kernel@vger.kernel.org |
6898 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6899 | S: Supported |
6900 | F: kernel/events/* |
6901 | F: include/linux/perf_event.h |
6902 | F: include/uapi/linux/perf_event.h |
6903 | F: arch/*/kernel/perf_event*.c |
6904 | F: arch/*/kernel/*/perf_event*.c |
6905 | F: arch/*/kernel/*/*/perf_event*.c |
6906 | F: arch/*/include/asm/perf_event.h |
6907 | F: arch/*/kernel/perf_callchain.c |
6908 | F: tools/perf/ |
6909 | |
6910 | PERSONALITY HANDLING |
6911 | M: Christoph Hellwig <hch@infradead.org> |
6912 | L: linux-abi-devel@lists.sourceforge.net |
6913 | S: Maintained |
6914 | F: include/linux/personality.h |
6915 | F: include/uapi/linux/personality.h |
6916 | |
6917 | PHONET PROTOCOL |
6918 | M: Remi Denis-Courmont <courmisch@gmail.com> |
6919 | S: Supported |
6920 | F: Documentation/networking/phonet.txt |
6921 | F: include/linux/phonet.h |
6922 | F: include/net/phonet/ |
6923 | F: include/uapi/linux/phonet.h |
6924 | F: net/phonet/ |
6925 | |
6926 | PHRAM MTD DRIVER |
6927 | M: Joern Engel <joern@lazybastard.org> |
6928 | L: linux-mtd@lists.infradead.org |
6929 | S: Maintained |
6930 | F: drivers/mtd/devices/phram.c |
6931 | |
6932 | PICOLCD HID DRIVER |
6933 | M: Bruno Prémont <bonbons@linux-vserver.org> |
6934 | L: linux-input@vger.kernel.org |
6935 | S: Maintained |
6936 | F: drivers/hid/hid-picolcd* |
6937 | |
6938 | PICOXCELL SUPPORT |
6939 | M: Jamie Iles <jamie@jamieiles.com> |
6940 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6941 | T: git git://github.com/jamieiles/linux-2.6-ji.git |
6942 | S: Supported |
6943 | F: arch/arm/mach-picoxcell/ |
6944 | F: drivers/*/picoxcell* |
6945 | F: drivers/*/*/picoxcell* |
6946 | |
6947 | PIN CONTROL SUBSYSTEM |
6948 | M: Linus Walleij <linus.walleij@linaro.org> |
6949 | S: Maintained |
6950 | F: drivers/pinctrl/ |
6951 | F: include/linux/pinctrl/ |
6952 | |
6953 | PIN CONTROLLER - ATMEL AT91 |
6954 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
6955 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6956 | S: Maintained |
6957 | F: drivers/pinctrl/pinctrl-at91.c |
6958 | |
6959 | PIN CONTROLLER - RENESAS |
6960 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
6961 | L: linux-sh@vger.kernel.org |
6962 | S: Maintained |
6963 | F: drivers/pinctrl/sh-pfc/ |
6964 | |
6965 | PIN CONTROLLER - SAMSUNG |
6966 | M: Tomasz Figa <t.figa@samsung.com> |
6967 | M: Thomas Abraham <thomas.abraham@linaro.org> |
6968 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6969 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
6970 | S: Maintained |
6971 | F: drivers/pinctrl/pinctrl-exynos.* |
6972 | F: drivers/pinctrl/pinctrl-s3c* |
6973 | F: drivers/pinctrl/pinctrl-samsung.* |
6974 | |
6975 | PIN CONTROLLER - ST SPEAR |
6976 | M: Viresh Kumar <viresh.linux@gmail.com> |
6977 | L: spear-devel@list.st.com |
6978 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6979 | W: http://www.st.com/spear |
6980 | S: Maintained |
6981 | F: drivers/pinctrl/spear/ |
6982 | |
6983 | PKTCDVD DRIVER |
6984 | M: Jiri Kosina <jkosina@suse.cz> |
6985 | S: Maintained |
6986 | F: drivers/block/pktcdvd.c |
6987 | F: include/linux/pktcdvd.h |
6988 | F: include/uapi/linux/pktcdvd.h |
6989 | |
6990 | PKUNITY SOC DRIVERS |
6991 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> |
6992 | W: http://mprc.pku.edu.cn/~guanxuetao/linux |
6993 | S: Maintained |
6994 | T: git git://github.com/gxt/linux.git |
6995 | F: drivers/input/serio/i8042-unicore32io.h |
6996 | F: drivers/i2c/busses/i2c-puv3.c |
6997 | F: drivers/video/fb-puv3.c |
6998 | F: drivers/rtc/rtc-puv3.c |
6999 | |
7000 | PMBUS HARDWARE MONITORING DRIVERS |
7001 | M: Guenter Roeck <linux@roeck-us.net> |
7002 | L: lm-sensors@lm-sensors.org |
7003 | W: http://www.lm-sensors.org/ |
7004 | W: http://www.roeck-us.net/linux/drivers/ |
7005 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
7006 | S: Maintained |
7007 | F: Documentation/hwmon/pmbus |
7008 | F: drivers/hwmon/pmbus/ |
7009 | F: include/linux/i2c/pmbus.h |
7010 | |
7011 | PMC SIERRA MaxRAID DRIVER |
7012 | M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com> |
7013 | L: linux-scsi@vger.kernel.org |
7014 | W: http://www.pmc-sierra.com/ |
7015 | S: Supported |
7016 | F: drivers/scsi/pmcraid.* |
7017 | |
7018 | PMC SIERRA PM8001 DRIVER |
7019 | M: xjtuwjp@gmail.com |
7020 | M: lindar_liu@usish.com |
7021 | L: linux-scsi@vger.kernel.org |
7022 | S: Supported |
7023 | F: drivers/scsi/pm8001/ |
7024 | |
7025 | POSIX CLOCKS and TIMERS |
7026 | M: Thomas Gleixner <tglx@linutronix.de> |
7027 | L: linux-kernel@vger.kernel.org |
7028 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
7029 | S: Supported |
7030 | F: fs/timerfd.c |
7031 | F: include/linux/timer* |
7032 | F: kernel/*timer* |
7033 | |
7034 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
7035 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
7036 | M: David Woodhouse <dwmw2@infradead.org> |
7037 | T: git git://git.infradead.org/battery-2.6.git |
7038 | S: Maintained |
7039 | F: include/linux/power_supply.h |
7040 | F: drivers/power/ |
7041 | |
7042 | PNP SUPPORT |
7043 | M: Rafael J. Wysocki <rafael.j.wysocki@intel.com> |
7044 | S: Maintained |
7045 | F: drivers/pnp/ |
7046 | |
7047 | PNXxxxx I2C DRIVER |
7048 | M: Vitaly Wool <vitalywool@gmail.com> |
7049 | L: linux-i2c@vger.kernel.org |
7050 | S: Maintained |
7051 | F: drivers/i2c/busses/i2c-pnx.c |
7052 | |
7053 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
7054 | M: Paul Mackerras <paulus@samba.org> |
7055 | L: linux-ppp@vger.kernel.org |
7056 | S: Maintained |
7057 | F: drivers/net/ppp/ppp_* |
7058 | |
7059 | PPP OVER ATM (RFC 2364) |
7060 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
7061 | S: Maintained |
7062 | F: net/atm/pppoatm.c |
7063 | F: include/uapi/linux/atmppp.h |
7064 | |
7065 | PPP OVER ETHERNET |
7066 | M: Michal Ostrowski <mostrows@earthlink.net> |
7067 | S: Maintained |
7068 | F: drivers/net/ppp/pppoe.c |
7069 | F: drivers/net/ppp/pppox.c |
7070 | |
7071 | PPP OVER L2TP |
7072 | M: James Chapman <jchapman@katalix.com> |
7073 | S: Maintained |
7074 | F: net/l2tp/l2tp_ppp.c |
7075 | F: include/linux/if_pppol2tp.h |
7076 | F: include/uapi/linux/if_pppol2tp.h |
7077 | |
7078 | PPS SUPPORT |
7079 | M: Rodolfo Giometti <giometti@enneenne.com> |
7080 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
7081 | L: linuxpps@ml.enneenne.com (subscribers-only) |
7082 | S: Maintained |
7083 | F: Documentation/pps/ |
7084 | F: drivers/pps/ |
7085 | F: include/linux/pps*.h |
7086 | |
7087 | PPTP DRIVER |
7088 | M: Dmitry Kozlov <xeb@mail.ru> |
7089 | L: netdev@vger.kernel.org |
7090 | S: Maintained |
7091 | F: drivers/net/ppp/pptp.c |
7092 | W: http://sourceforge.net/projects/accel-pptp |
7093 | |
7094 | PREEMPTIBLE KERNEL |
7095 | M: Robert Love <rml@tech9.net> |
7096 | L: kpreempt-tech@lists.sourceforge.net |
7097 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel |
7098 | S: Supported |
7099 | F: Documentation/preempt-locking.txt |
7100 | F: include/linux/preempt.h |
7101 | |
7102 | PRISM54 WIRELESS DRIVER |
7103 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
7104 | L: linux-wireless@vger.kernel.org |
7105 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
7106 | S: Obsolete |
7107 | F: drivers/net/wireless/prism54/ |
7108 | |
7109 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
7110 | M: Mikael Pettersson <mikpelinux@gmail.com> |
7111 | L: linux-ide@vger.kernel.org |
7112 | S: Maintained |
7113 | F: drivers/ata/sata_promise.* |
7114 | |
7115 | PS3 NETWORK SUPPORT |
7116 | M: Geoff Levand <geoff@infradead.org> |
7117 | L: netdev@vger.kernel.org |
7118 | L: cbe-oss-dev@lists.ozlabs.org |
7119 | S: Maintained |
7120 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
7121 | |
7122 | PS3 PLATFORM SUPPORT |
7123 | M: Geoff Levand <geoff@infradead.org> |
7124 | L: linuxppc-dev@lists.ozlabs.org |
7125 | L: cbe-oss-dev@lists.ozlabs.org |
7126 | S: Maintained |
7127 | F: arch/powerpc/boot/ps3* |
7128 | F: arch/powerpc/include/asm/lv1call.h |
7129 | F: arch/powerpc/include/asm/ps3*.h |
7130 | F: arch/powerpc/platforms/ps3/ |
7131 | F: drivers/*/ps3* |
7132 | F: drivers/ps3/ |
7133 | F: drivers/rtc/rtc-ps3.c |
7134 | F: drivers/usb/host/*ps3.c |
7135 | F: sound/ppc/snd_ps3* |
7136 | |
7137 | PS3VRAM DRIVER |
7138 | M: Jim Paris <jim@jtan.com> |
7139 | L: cbe-oss-dev@lists.ozlabs.org |
7140 | S: Maintained |
7141 | F: drivers/block/ps3vram.c |
7142 | |
7143 | PSTORE FILESYSTEM |
7144 | M: Anton Vorontsov <anton@enomsg.org> |
7145 | M: Colin Cross <ccross@android.com> |
7146 | M: Kees Cook <keescook@chromium.org> |
7147 | M: Tony Luck <tony.luck@intel.com> |
7148 | S: Maintained |
7149 | T: git git://git.infradead.org/users/cbou/linux-pstore.git |
7150 | F: fs/pstore/ |
7151 | F: include/linux/pstore* |
7152 | F: drivers/firmware/efi/efi-pstore.c |
7153 | F: drivers/acpi/apei/erst.c |
7154 | |
7155 | PTP HARDWARE CLOCK SUPPORT |
7156 | M: Richard Cochran <richardcochran@gmail.com> |
7157 | L: netdev@vger.kernel.org |
7158 | S: Maintained |
7159 | W: http://linuxptp.sourceforge.net/ |
7160 | F: Documentation/ABI/testing/sysfs-ptp |
7161 | F: Documentation/ptp/* |
7162 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7163 | F: drivers/net/phy/dp83640* |
7164 | F: drivers/ptp/* |
7165 | F: include/linux/ptp_cl* |
7166 | |
7167 | PTRACE SUPPORT |
7168 | M: Roland McGrath <roland@redhat.com> |
7169 | M: Oleg Nesterov <oleg@redhat.com> |
7170 | S: Maintained |
7171 | F: include/asm-generic/syscall.h |
7172 | F: include/linux/ptrace.h |
7173 | F: include/linux/regset.h |
7174 | F: include/linux/tracehook.h |
7175 | F: include/uapi/linux/ptrace.h |
7176 | F: kernel/ptrace.c |
7177 | |
7178 | PVRUSB2 VIDEO4LINUX DRIVER |
7179 | M: Mike Isely <isely@pobox.com> |
7180 | L: pvrusb2@isely.net (subscribers-only) |
7181 | L: linux-media@vger.kernel.org |
7182 | W: http://www.isely.net/pvrusb2/ |
7183 | T: git git://linuxtv.org/media_tree.git |
7184 | S: Maintained |
7185 | F: Documentation/video4linux/README.pvrusb2 |
7186 | F: drivers/media/usb/pvrusb2/ |
7187 | |
7188 | PWC WEBCAM DRIVER |
7189 | M: Hans de Goede <hdegoede@redhat.com> |
7190 | L: linux-media@vger.kernel.org |
7191 | T: git git://linuxtv.org/media_tree.git |
7192 | S: Maintained |
7193 | F: drivers/media/usb/pwc/* |
7194 | |
7195 | PWM SUBSYSTEM |
7196 | M: Thierry Reding <thierry.reding@gmail.com> |
7197 | L: linux-pwm@vger.kernel.org |
7198 | S: Maintained |
7199 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
7200 | F: Documentation/pwm.txt |
7201 | F: Documentation/devicetree/bindings/pwm/ |
7202 | F: include/linux/pwm.h |
7203 | F: drivers/pwm/ |
7204 | F: drivers/video/backlight/pwm_bl.c |
7205 | F: include/linux/pwm_backlight.h |
7206 | |
7207 | PXA2xx/PXA3xx SUPPORT |
7208 | M: Eric Miao <eric.y.miao@gmail.com> |
7209 | M: Russell King <linux@arm.linux.org.uk> |
7210 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
7211 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7212 | T: git git://github.com/hzhuang1/linux.git |
7213 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git |
7214 | S: Maintained |
7215 | F: arch/arm/mach-pxa/ |
7216 | F: drivers/pcmcia/pxa2xx* |
7217 | F: drivers/spi/spi-pxa2xx* |
7218 | F: drivers/usb/gadget/pxa2* |
7219 | F: include/sound/pxa2xx-lib.h |
7220 | F: sound/arm/pxa* |
7221 | F: sound/soc/pxa/ |
7222 | |
7223 | PXA3xx NAND FLASH DRIVER |
7224 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> |
7225 | L: linux-mtd@lists.infradead.org |
7226 | S: Maintained |
7227 | F: drivers/mtd/nand/pxa3xx-nand.c |
7228 | |
7229 | MMP SUPPORT |
7230 | M: Eric Miao <eric.y.miao@gmail.com> |
7231 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
7232 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7233 | T: git git://github.com/hzhuang1/linux.git |
7234 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git |
7235 | S: Maintained |
7236 | F: arch/arm/mach-mmp/ |
7237 | |
7238 | PXA MMCI DRIVER |
7239 | S: Orphan |
7240 | |
7241 | PXA RTC DRIVER |
7242 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
7243 | L: rtc-linux@googlegroups.com |
7244 | S: Maintained |
7245 | |
7246 | QIB DRIVER |
7247 | M: Mike Marciniszyn <infinipath@intel.com> |
7248 | L: linux-rdma@vger.kernel.org |
7249 | S: Supported |
7250 | F: drivers/infiniband/hw/qib/ |
7251 | |
7252 | QLOGIC QLA1280 SCSI DRIVER |
7253 | M: Michael Reed <mdr@sgi.com> |
7254 | L: linux-scsi@vger.kernel.org |
7255 | S: Maintained |
7256 | F: drivers/scsi/qla1280.[ch] |
7257 | |
7258 | QLOGIC QLA2XXX FC-SCSI DRIVER |
7259 | M: qla2xxx-upstream@qlogic.com |
7260 | L: linux-scsi@vger.kernel.org |
7261 | S: Supported |
7262 | F: Documentation/scsi/LICENSE.qla2xxx |
7263 | F: drivers/scsi/qla2xxx/ |
7264 | |
7265 | QLOGIC QLA4XXX iSCSI DRIVER |
7266 | M: Vikas Chaudhary <vikas.chaudhary@qlogic.com> |
7267 | M: iscsi-driver@qlogic.com |
7268 | L: linux-scsi@vger.kernel.org |
7269 | S: Supported |
7270 | F: Documentation/scsi/LICENSE.qla4xxx |
7271 | F: drivers/scsi/qla4xxx/ |
7272 | |
7273 | QLOGIC QLA3XXX NETWORK DRIVER |
7274 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
7275 | M: Ron Mercer <ron.mercer@qlogic.com> |
7276 | M: linux-driver@qlogic.com |
7277 | L: netdev@vger.kernel.org |
7278 | S: Supported |
7279 | F: Documentation/networking/LICENSE.qla3xxx |
7280 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
7281 | |
7282 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
7283 | M: Shahed Shaikh <shahed.shaikh@qlogic.com> |
7284 | M: Dept-HSGLinuxNICDev@qlogic.com |
7285 | L: netdev@vger.kernel.org |
7286 | S: Supported |
7287 | F: drivers/net/ethernet/qlogic/qlcnic/ |
7288 | |
7289 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
7290 | M: Shahed Shaikh <shahed.shaikh@qlogic.com> |
7291 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
7292 | M: Ron Mercer <ron.mercer@qlogic.com> |
7293 | M: linux-driver@qlogic.com |
7294 | L: netdev@vger.kernel.org |
7295 | S: Supported |
7296 | F: drivers/net/ethernet/qlogic/qlge/ |
7297 | |
7298 | QNX4 FILESYSTEM |
7299 | M: Anders Larsen <al@alarsen.net> |
7300 | W: http://www.alarsen.net/linux/qnx4fs/ |
7301 | S: Maintained |
7302 | F: fs/qnx4/ |
7303 | F: include/uapi/linux/qnx4_fs.h |
7304 | F: include/uapi/linux/qnxtypes.h |
7305 | |
7306 |