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